Repository: Diyago/ML-DL-scripts Branch: master Commit: e0f4511c7109 Files: 247 Total size: 43.6 MB Directory structure: gitextract_2g5lvqpj/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── custom.md │ └── workflows/ │ └── label.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEEP LEARNING/ │ ├── Autoencoders GANS/ │ │ ├── GAN-for-tabular-data/ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ctgan/ │ │ │ │ ├── README.MD │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── conditional.py │ │ │ │ ├── data.py │ │ │ │ ├── demo.py │ │ │ │ ├── models.py │ │ │ │ ├── sampler.py │ │ │ │ ├── synthesizer.py │ │ │ │ └── transformer.py │ │ │ ├── encoders.py │ │ │ ├── model.py │ │ │ ├── results/ │ │ │ │ └── fit_predict_scores.txt │ │ │ ├── run_experiment.py │ │ │ └── utils.py │ │ └── pytorch/ │ │ ├── CGAN/ │ │ │ └── ConditionalGAN.py │ │ ├── DCGAN/ │ │ │ └── dcgan.py │ │ ├── ProgressiveGAN/ │ │ │ ├── README.md │ │ │ ├── progan_modules.py │ │ │ └── train.py │ │ ├── Semi-supervised GAN/ │ │ │ ├── Datasets.py │ │ │ ├── ImprovedGAN.py │ │ │ ├── Nets.py │ │ │ ├── README.md │ │ │ └── functional.py │ │ └── VAE/ │ │ └── VAR mnist.py │ ├── Google Landmark Retrieval Challenge.py │ ├── Kaggle Avito Demand Prediction Challenge/ │ │ ├── README.MD │ │ ├── image feat. extraction/ │ │ │ ├── avito_deepIQA/ │ │ │ │ └── deepIQA/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── evaluate.py │ │ │ │ ├── evaluate_back.py │ │ │ │ ├── fr_model.py │ │ │ │ └── nr_model.py │ │ │ ├── neural-image-assessment/ │ │ │ │ ├── README.md │ │ │ │ ├── evaluate_inception_resnet.py │ │ │ │ ├── evaluate_mobilenet.py │ │ │ │ ├── evaluate_nasnet.py │ │ │ │ └── utils/ │ │ │ │ ├── check_dataset.py │ │ │ │ ├── data_loader.py │ │ │ │ ├── nasnet.py │ │ │ │ └── score_utils.py │ │ │ └── nn_image_features.py │ │ ├── stem to SVD.py │ │ └── text embeddings.py │ ├── NLP/ │ │ ├── Kaggle Quora Insincere Questions Classification/ │ │ │ ├── 3rd-place.py │ │ │ ├── README.MD │ │ │ └── fix misspellings.py │ │ ├── LSTM RNN/ │ │ │ ├── Next Chars pytorch/ │ │ │ │ ├── Char level RNN/ │ │ │ │ │ └── data/ │ │ │ │ │ └── anna.txt │ │ │ │ └── project-tv-script-generation/ │ │ │ │ ├── data/ │ │ │ │ │ └── Seinfeld_Scripts.txt │ │ │ │ ├── helper.py │ │ │ │ └── problem_unittests.py │ │ │ └── Sentiment pytorch/ │ │ │ ├── labels.txt │ │ │ └── reviews.txt │ │ ├── WSDM - Fake News Classification/ │ │ │ └── Berd generate embeddings/ │ │ │ ├── 0_bert_encode_en_train.py │ │ │ ├── 1_bert_encode_en_test.py │ │ │ ├── 2_bert_encode_ch_train.py │ │ │ ├── 3_bert_encode_ch_test.py │ │ │ └── 4_gen_encoded_dfs.py │ │ ├── elmo EMBEDDINGS/ │ │ │ └── Sentence encode.html │ │ └── text analyses/ │ │ └── Logistic regression with words and char n-grams.py │ ├── Object detection/ │ │ ├── YOLO Object Localization Keras/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── font/ │ │ │ │ ├── FiraMono-Medium.otf │ │ │ │ └── SIL Open Font License.txt │ │ │ ├── model_data/ │ │ │ │ ├── coco_classes.txt │ │ │ │ ├── object_classes.txt │ │ │ │ └── yolo_anchors.txt │ │ │ ├── requirements.txt │ │ │ ├── yad2k/ │ │ │ │ └── utils/ │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ ├── yolo_run.py │ │ │ └── yolo_utils.py │ │ └── keras retinanet/ │ │ └── train.py │ ├── Pytorch from scratch/ │ │ ├── CNN/ │ │ │ └── project-dog-classification/ │ │ │ ├── README.md │ │ │ └── haarcascades/ │ │ │ └── haarcascade_frontalface_alt.xml │ │ ├── MLP/ │ │ │ ├── fc_model.py │ │ │ └── helper.py │ │ ├── TODO/ │ │ │ └── GAN/ │ │ │ ├── cycle-gan/ │ │ │ │ ├── helpers.py │ │ │ │ └── samples_cyclegan/ │ │ │ │ └── samples_dir.txt │ │ │ └── project-face-generation/ │ │ │ └── problem_unittests.py │ │ └── word2vec-embeddings/ │ │ ├── data/ │ │ │ └── download_data.txt │ │ └── utils.py │ └── segmentation/ │ ├── Kaggle TGS Salt Identification Challenge/ │ │ ├── README.MD │ │ ├── v1/ │ │ │ ├── data_loader.py │ │ │ ├── data_process/ │ │ │ │ ├── 10fold/ │ │ │ │ │ └── test.txt │ │ │ │ └── transform.py │ │ │ ├── evaluate.py │ │ │ ├── loss/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bce_losses.py │ │ │ │ ├── cyclic_lr.py │ │ │ │ └── lovasz_losses.py │ │ │ ├── main.py │ │ │ ├── model/ │ │ │ │ ├── __init__.py │ │ │ │ ├── ibnnet.py │ │ │ │ ├── model.py │ │ │ │ └── senet.py │ │ │ └── utils.py │ │ ├── v2/ │ │ │ ├── common_blocks/ │ │ │ │ ├── augmentation.py │ │ │ │ ├── callbacks.py │ │ │ │ ├── loaders.py │ │ │ │ ├── metrics.py │ │ │ │ ├── models.py │ │ │ │ ├── pipelines.py │ │ │ │ ├── pnasnet.py │ │ │ │ ├── postprocessing.py │ │ │ │ ├── preprocessing.py │ │ │ │ ├── resnext.py │ │ │ │ ├── unet_models.py │ │ │ │ └── utils.py │ │ │ ├── configs/ │ │ │ │ └── neptune.yaml │ │ │ ├── modules/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bn.py │ │ │ │ ├── build.py │ │ │ │ ├── build.sh │ │ │ │ ├── functions.py │ │ │ │ ├── misc.py │ │ │ │ ├── residual.py │ │ │ │ ├── src/ │ │ │ │ │ ├── common.h │ │ │ │ │ ├── inplace_abn.cpp │ │ │ │ │ ├── inplace_abn.h │ │ │ │ │ ├── inplace_abn_cpu.cpp │ │ │ │ │ └── inplace_abn_cuda.cu │ │ │ │ └── wider_resnet.py │ │ │ └── results.ods │ │ └── vanilla unet/ │ │ └── utils/ │ │ ├── cyclelr_callback.py │ │ ├── lovasz_losses_tf.py │ │ └── zf_unet_224_model.py │ ├── Segmentation pipeline/ │ │ ├── README.MD │ │ ├── get dataset.py │ │ ├── segmentation pipeline.html │ │ ├── segmentation pipeline.py │ │ └── weights/ │ │ └── .gitkeep │ ├── Severstal-Steel-Defect-Detection-master/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── classification_pytorch_dummy.py │ │ ├── common_blocks/ │ │ │ ├── __init__.py │ │ │ ├── bam.py │ │ │ ├── cbam.py │ │ │ ├── dataloader.py │ │ │ ├── generate_folds.py │ │ │ ├── logger.py │ │ │ ├── losses.py │ │ │ ├── lovasz_losses.py │ │ │ ├── metric.py │ │ │ ├── new_metrics.py │ │ │ ├── optimizers.py │ │ │ ├── training_helper.py │ │ │ └── utils.py │ │ ├── configs/ │ │ │ ├── __init__.py │ │ │ └── train_params.py │ │ ├── inference.py │ │ ├── model_resnet.py │ │ └── train.py │ └── Understanding-Clouds-from-Satellite-Images-master/ │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── augs.py │ ├── callbacks.py │ ├── config.py │ ├── dataset.py │ ├── inference_blend.py │ ├── losses/ │ │ ├── losses.py │ │ └── lovasz_losses.py │ ├── optimizers.py │ ├── predict.py │ ├── schedulers.py │ ├── train.py │ ├── train.sh │ └── utils.py ├── LICENSE ├── README.md ├── _config.yml ├── classification/ │ ├── Kaggle Home Credit Default Risk/ │ │ └── README.MD │ ├── Kaggle Malware Prediction/ │ │ ├── README.MD │ │ ├── kaggle.py │ │ ├── models.py │ │ ├── models_zoo.py │ │ ├── oof_preds_level_1/ │ │ │ └── readme.md │ │ ├── target_encoding.py │ │ ├── test_preds_level_1/ │ │ │ └── readme.md │ │ └── test_preds_level_2/ │ │ └── readme.md │ ├── Kaggle Petfinder/ │ │ ├── 8th-place-solution-code.py │ │ └── README.MD │ └── Kaggle red hat user/ │ └── README.MD ├── deployment/ │ ├── docker flask fit predict/ │ │ ├── Dockerfile │ │ ├── README.MD │ │ ├── docker-compose.yml │ │ ├── hello.py │ │ ├── templates/ │ │ │ └── submit.html │ │ └── train_model.py │ └── ds docker db template/ │ ├── README.md │ ├── docker/ │ │ ├── jupyter/ │ │ │ ├── Dockerfile │ │ │ └── requirements.txt │ │ └── postgres/ │ │ ├── Dockerfile │ │ └── initdb.sql │ └── docker-compose.yml ├── general studies/ │ ├── finetune gbm.md │ ├── finetune xgb.md │ └── get feature importance.py ├── images/ │ └── road-detection ├── recommendations/ │ └── ods_course/ │ ├── README.md │ ├── competition/ │ │ ├── requirements.txt │ │ └── tools.py │ ├── lecture_2/ │ │ └── requirements.txt │ ├── lecture_4/ │ │ ├── Dockerfile │ │ ├── Readme.md │ │ ├── ann/ │ │ │ ├── __init__.py │ │ │ └── recommender.py │ │ ├── config/ │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── config.yaml │ │ ├── main.py │ │ └── pyproject.toml │ └── lecture_5/ │ ├── README.md │ ├── requirements.txt │ └── tools.py ├── regression/ │ └── kaggle santander value prediction/ │ └── README.md └── time series regression/ ├── ARIMA/ │ ├── AR.py │ ├── ARIMA.py │ ├── ARMA.py │ ├── ARMA_IBMstock.py │ └── MA.py ├── Data Files/ │ ├── DJIA_Jan2016_Dec2016.xlsx │ ├── Data Files │ ├── Monthly_CO2_Concentrations.xlsx │ ├── World Bank Mobile Phone Statistics.xlsx │ ├── inflation-consumer-prices-annual.xlsx │ └── mean-daily-temperature-fisher-river.xlsx ├── anomaly detection/ │ ├── README.md │ ├── anomaly-detection-using-facebook-s-prophet.py │ └── sunspots.txt └── autocorelation, mov avg etc/ ├── decomposition.py ├── doubleExponentialSmoothing.py ├── simpleExponentialSmoothing.py └── tripleExponentialSmoothing.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/Bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/Feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/custom.md ================================================ --- name: Custom issue template about: Describe this issue template's purpose here. title: '' labels: '' assignees: '' --- ================================================ FILE: .github/workflows/label.yml ================================================ # This workflow will triage pull requests and apply a label based on the # paths that are modified in the pull request. # # To use this workflow, you will need to set up a .github/labeler.yml # file with configuration. For more information, see: # https://github.com/actions/labeler/blob/master/README.md name: Labeler on: [pull_request] jobs: label: runs-on: ubuntu-latest steps: - uses: actions/labeler@v2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Data files *.csv *.tsv *.json *.parquet *.feather *.pkl *.pickle # ML model artifacts *.h5 *.hdf5 *.onnx *.pt *.pth *.ckpt *.safetensors *.pb saved_model/ checkpoints/ models/ # Distribution / packaging .Python env/ venv/ .venv/ ENV/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg *.rar *.zip *.tar.gz # PyInstaller *.manifest *.spec *.swp *.pyc # Installer logs pip-log.txt pip-delete-this-directory.txt requirements.txt.lock # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *,cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Logs *.log logs/ # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints *.ipynb # IDEs .idea/ .vscode/ *.sublime-project *.sublime-workspace *.iml # OS files .DS_Store Thumbs.db desktop.ini # Environment files .env .env.local *.env.yaml *.env.json # TensorBoard runs/ tensorboard/ # Weights & Biases wandb/ # MLflow mlruns/ mlartifacts/ ================================================ FILE: .pre-commit-config.yaml ================================================ repos: - repo: https://github.com/psf/black rev: 24.1.0 hooks: - id: black language_version: python3.11 ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at diyago@ya.ru. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to ML-DL-scripts Thank you for your interest in contributing! This repository contains Machine Learning and Deep Learning scripts, Kaggle solutions, and educational materials. ## How to Contribute ### Reporting Issues If you find a bug or have a suggestion: 1. Check if the issue already exists 2. Open a new issue with a clear description 3. Include code examples and error messages if applicable ### Submitting Changes 1. Fork the repository 2. Create a feature branch (`git checkout -b feature/your-feature`) 3. Make your changes 4. Ensure code follows the existing style (Black formatter) 5. Commit with clear messages (`git commit -m "Add: description"`) 6. Push to your fork (`git push origin feature/your-feature`) 7. Open a Pull Request ### Code Guidelines - Use Python 3.7+ - Follow PEP 8 style guidelines - Use Black for code formatting - Add docstrings for functions and classes - Include examples where helpful - Keep notebooks clean (clear outputs before committing) ### Project Structure Place new scripts in appropriate folders: - `classification/` – Classification algorithms - `regression/` – Regression models - `clustering/` – Clustering methods - `DEEP LEARNING/` – Neural network implementations - `time series regression/` – Time series analysis - `statistics/` – Statistical tools - `deployment/` – Docker and deployment examples ## Questions? Contact via Telegram: [@ai_tablet](https://t.me/ai_tablet) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at issues. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/README.md ================================================ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) # GANs for tabular data We well know GANs for success in the realistic image generation. However, they can be applied in tabular data generation. We will review and examine some recent papers about tabular GANs in action. Medium post: [GANs for tabular data](https://towardsdatascience.com/review-of-gans-for-tabular-data-a30a2199342) ## Used datasets and expriment design **Task formalization** Let say we have **T_train** and **T_test** (train and test set respectively). We need to train the model on **T_train** and make predictions on **T_test**. However, we will increase the train by generating new data by GAN, somehow similar to **T_test**, without using ground truth labels of it. **Experiment design** Let say we have **T_train** and **T_test** (train and test set respectively). The size of **T_train** is smaller and might have different data distribution. First of all, we train CTGAN on **T_train** with ground truth labels (step 1), then generate additional data **T_synth** (step 2). Secondly, we train boosting in an adversarial way on concatenated **T_train** and **T_synth** (target set to 0) with **T_test** (target set to 1) (steps 3 & 4). The goal is to apply newly trained adversarial boosting to obtain rows more like **T_test**. Note - initial ground truth labels aren't used for adversarial training. As a result, we take top rows from **T_train** and **T_synth** sorted by correspondence to **T_test** (steps 5 & 6), and train new boosting on them and check results on **T_test**. ![Experiment design and workflow](./images/workflow.png?raw=true) **Picture 1.1** Experiment design and workflow Of course for the benchmark purposes we will test ordinal training without these tricks and another original pipeline but without CTGAN (in step 3 we won't use **T_sync**). **Datasets** All datasets came from different domains. They have a different number of observations, number of categorical and numerical features. The objective for all datasets - binary classification. Preprocessing of datasets were simple: removed all time-based columns from datasets. Remaining columns were either categorical or numerical. **Table 1.1** Used datasets | Name | Total points | Train points | Test points | Number of features | Number of categorical features | Short description | | :--- | :---: | :---: | :---: | :---: | :---: | :---: | | [Telecom](https://www.kaggle.com/blastchar/telco-customer-churn) | 7.0k | 4.2k | 2.8k | 20 | 16 | Churn prediction for telecom data | | [Adult](https://www.kaggle.com/wenruliu/adult-income-dataset) | 48.8k | 29.3k | 19.5k | 15 | 8 | Predict if persons' income is bigger 50k | | [Employee](https://www.kaggle.com/c/amazon-employee-access-challenge/data) | 32.7k | 19.6k | 13.1k | 10 | 9 | Predict an employee's access needs, given his/her job role| | [Credit](https://www.kaggle.com/c/home-credit-default-risk/data) | 307.5k | 184.5k | 123k | 121 | 18 | Loan repayment | | [Mortgages](https://www.crowdanalytix.com/contests/propensity-to-fund-mortgages) | 45.6k | 27.4k | 18.2k | 20 | 9 | Predict if house mortgage is founded | | [Taxi](https://www.crowdanalytix.com/contests/mckinsey-big-data-hackathon) | 892.5k | 535.5k | 357k | 8 | 5 | Predict the probability of an offer being accepted by a certain driver | | [Poverty_A](https://www.drivendata.org/competitions/50/worldbank-poverty-prediction/page/99/) | 37.6k | 22.5k | 15.0k | 41 | 38 | Predict whether or not a given household for a given country is poor or not | ## Results To determine the best encoderthe ROC AUC scores of each dataset were scaled (min-max scale) and then averaged results among the dataset. To determine the best validation strategy, I compared the top score of each dataset for each type of validation. **Table 1.2** Different sampling results across the dataset, higher is better (100% - maximum per dataset ROC AUC) | dataset_name | None | gan | sample_original | |:-----------------------|-------------------:|------------------:|------------------------------:| | credit | 0.997 | **0.998** | 0.997 | | employee | **0.986** | 0.966 | 0.972 | | mortgages | 0.984 | 0.964 | **0.988** | | poverty_A | 0.937 | **0.950** | 0.933 | | taxi | 0.966 | 0.938 | **0.987** | | adult | 0.995 | 0.967 | **0.998** | | telecom | **0.995** | 0.868 | 0.992 | **Table 1.3** Different sampling results, higher is better for a mean (ROC AUC), lower is better for std (100% - maximum per dataset ROC AUC) | sample_type | mean | std | |:----------------|---------:|----------:| | None | 0.980 | 0.036 | | gan | 0.969 | 0.06 | | sample_original | **0.981** | **0.032** | **Table 1.4** same_target_prop is equal 1 then the target rate for train and test are different no more than 5%. Higher is better. | sample_type | same_target_prop | prop_test_score | |:----------------|-------------------:|------------------:| | None | 0 | 0.964 | | None | 1 | 0.985 | | gan | 0 | 0.966 | | gan | 1 | 0.945 | | sample_original | 0 | 0.973 | | sample_original | 1 | 0.984 | ## References [1] Jonathan Hui. GAN — What is Generative Adversarial Networks GAN? (2018), medium article [2]Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio. Generative Adversarial Networks (2014). arXiv:1406.2661 [3] Lei Xu LIDS, Kalyan Veeramachaneni. Synthesizing Tabular Data using Generative Adversarial Networks (2018). arXiv:1811.11264v1 [cs.LG] [4] Lei Xu, Maria Skoularidou, Alfredo Cuesta-Infante, Kalyan Veeramachaneni. Modeling Tabular Data using Conditional GAN (2019). arXiv:1907.00503v2 [cs.LG] [5] Denis Vorotyntsev. Benchmarking Categorical Encoders (2019). Medium post [6] Insaf Ashrapov. GAN-for-tabular-data (2020). Github repository. [7] Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila. Analyzing and Improving the Image Quality of StyleGAN (2019) arXiv:1912.04958v2 [cs.CV] ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/README.MD ================================================ REFERENCE (initial code): https://github.com/sdv-dev/CTGAN

“sdv-dev” An open source project from Data to AI Lab at MIT.

[![Development Status](https://img.shields.io/badge/Development%20Status-2%20--%20Pre--Alpha-yellow)](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha) [![PyPI Shield](https://img.shields.io/pypi/v/ctgan.svg)](https://pypi.python.org/pypi/ctgan) [![Travis CI Shield](https://travis-ci.org/sdv-dev/CTGAN.svg?branch=master)](https://travis-ci.org/sdv-dev/CTGAN) [![Downloads](https://pepy.tech/badge/ctgan)](https://pepy.tech/project/ctgan) [![Coverage Status](https://codecov.io/gh/sdv-dev/CTGAN/branch/master/graph/badge.svg)](https://codecov.io/gh/sdv-dev/CTGAN) # CTGAN Implementation of our NeurIPS paper [Modeling Tabular data using Conditional GAN](https://arxiv.org/abs/1907.00503). CTGAN is a GAN-based data synthesizer that can generate synthetic tabular data with high fidelity. * License: [MIT](https://github.com/sdv-dev/CTGAN/blob/master/LICENSE) * Development Status: [Pre-Alpha](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha) * Documentation: https://sdv-dev.github.io/CTGAN * Homepage: https://github.com/sdv-dev/CTGAN ## Overview Based on previous work ([TGAN](https://github.com/sdv-dev/TGAN)) on synthetic data generation, we develop a new model called CTGAN. Several major differences make CTGAN outperform TGAN. - **Preprocessing**: CTGAN uses more sophisticated Variational Gaussian Mixture Model to detect modes of continuous columns. - **Network structure**: TGAN uses LSTM to generate synthetic data column by column. CTGAN uses Fully-connected networks which is more efficient. - **Features to prevent mode collapse**: We design a conditional generator and resample the training data to prevent model collapse on discrete columns. We use WGANGP and PacGAN to stabilize the training of GAN. # Install ## Requirements **CTGAN** has been developed and tested on [Python 3.5, 3.6 and 3.7](https://www.python.org/downloads/) ## Install from PyPI The recommended way to installing **CTGAN** is using [pip](https://pip.pypa.io/en/stable/): ```bash pip install ctgan ``` This will pull and install the latest stable release from [PyPI](https://pypi.org/). If you want to install from source or contribute to the project please read the [Contributing Guide](https://sdv-dev.github.io/CTGAN/contributing.html#get-started). # Data Format **CTGAN** expects the input data to be a table given as either a `numpy.ndarray` or a `pandas.DataFrame` object with two types of columns: * **Continuous Columns**: Columns that contain numerical values and which can take any value. * **Discrete columns**: Columns that only contain a finite number of possible values, wether these are string values or not. This is an example of a table with 4 columns: * A continuous column with float values * A continuous column with integer values * A discrete column with string values * A discrete column with integer values | | A | B | C | D | |---|------|-----|-----|---| | 0 | 0.1 | 100 | 'a' | 1 | | 1 | -1.3 | 28 | 'b' | 2 | | 2 | 0.3 | 14 | 'a' | 2 | | 3 | 1.4 | 87 | 'a' | 3 | | 4 | -0.1 | 69 | 'b' | 2 | **NOTE**: CTGAN does not distinguish between float and integer columns, which means that it will sample float values in all cases. If integer values are required, the outputted float values must be rounded to integers in a later step, outside of CTGAN. # Python Quickstart In this short tutorial we will guide you through a series of steps that will help you getting started with **CTGAN**. ## 1. Model the data ### Step 1: Prepare your data Before being able to use CTGAN you will need to prepare your data as specified above. For this example, we will be loading some data using the `ctgan.load_demo` function. ```python from ctgan import load_demo data = load_demo() ``` This will download a copy of the [Adult Census Dataset](https://archive.ics.uci.edu/ml/datasets/adult) as a dataframe: | age | workclass | fnlwgt | ... | hours-per-week | native-country | income | |-------|------------------|----------|-----|------------------|------------------|----------| | 39 | State-gov | 77516 | ... | 40 | United-States | <=50K | | 50 | Self-emp-not-inc | 83311 | ... | 13 | United-States | <=50K | | 38 | Private | 215646 | ... | 40 | United-States | <=50K | | 53 | Private | 234721 | ... | 40 | United-States | <=50K | | 28 | Private | 338409 | ... | 40 | Cuba | <=50K | | ... | ... | ... | ... | ... | ... | ... | Aside from the table itself, you will need to create a list with the names of the discrete variables. For this example: ```python discrete_columns = [ 'workclass', 'education', 'marital-status', 'occupation', 'relationship', 'race', 'sex', 'native-country', 'income' ] ``` ### Step 2: Fit CTGAN to your data Once you have the data ready, you need to import and create an instance of the `CTGANSynthesizer` class and fit it passing your data and the list of discrete columns. ```python from ctgan import CTGANSynthesizer ctgan = CTGANSynthesizer() ctgan.fit(data, discrete_columns) ``` This process is likely to take a long time to run. If you want to make the process shorter, or longer, you can control the number of training epochs that the model will be performing by adding it to the `fit` call: ```python ctgan.fit(data, discrete_columns, epochs=5) ``` ## 2. Generate synthetic data Once the process has finished, all you need to do is call the `sample` method of your `CTGANSynthesizer` instance indicating the number of rows that you want to generate. ```python samples = ctgan.sample(1000) ``` The output will be a table with the exact same format as the input and filled with the synthetic data generated by the model. | age | workclass | fnlwgt | ... | hours-per-week | native-country | income | |---------|--------------|-----------|-----|------------------|------------------|----------| | 26.3191 | Private | 124079 | ... | 40.1557 | United-States | <=50K | | 39.8558 | Private | 133996 | ... | 40.2507 | United-States | <=50K | | 38.2477 | Self-emp-inc | 135955 | ... | 40.1124 | Ecuador | <=50K | | 29.6468 | Private | 3331.86 | ... | 27.012 | United-States | <=50K | | 20.9853 | Private | 120637 | ... | 40.0238 | United-States | <=50K | | ... | ... | ... | ... | ... | ... | ... | # Join our community 1. If you would like to try more dataset examples, please have a look at the [examples folder]( https://github.com/sdv-dev/CTGAN/tree/master/examples) of the repository. Please contact us if you have a usage example that you would want to share with the community. 2. If you want to contribute to the project code, please head to the [Contributing Guide]( https://sdv-dev.github.io/CTGAN/contributing.html#get-started) for more details about how to do it. 3. If you have any doubts, feature requests or detect an error, please [open an issue on github]( https://github.com/sdv-dev/CTGAN/issues) 4. Also do not forget to check the [project documentation site](https://sdv-dev.github.io/CTGAN/)! # Citing TGAN If you use CTGAN, please cite the following work: - *Lei Xu, Maria Skoularidou, Alfredo Cuesta-Infante, Kalyan Veeramachaneni.* **Modeling Tabular data using Conditional GAN**. NeurIPS, 2019. ```LaTeX @inproceedings{xu2019modeling, title={Modeling Tabular data using Conditional GAN}, author={Xu, Lei and Skoularidou, Maria and Cuesta-Infante, Alfredo and Veeramachaneni, Kalyan}, booktitle={Advances in Neural Information Processing Systems}, year={2019} } ``` # Related Projects Please note that these libraries are external contributions and are not maintained nor supervised by the MIT DAI-Lab team. ## R interface for CTGAN A wrapper around **CTGAN** has been implemented by Kevin Kuo @kevinykuo, bringing the functionalities of **CTGAN** to **R** users. More details can be found in the corresponding repository: https://github.com/kasaai/ctgan ## CTGAN Server CLI A package to easily deploy **CTGAN** onto a remote server. This package is developed by Timothy Pillow @oregonpillow. More details can be found in the corresponding repository: https://github.com/oregonpillow/ctgan-server-cli ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/__init__.py ================================================ # -*- coding: utf-8 -*- """Top-level package for ctgan.""" __author__ = "MIT Data To AI Lab" __email__ = "dailabmit@gmail.com" __version__ = "0.2.1" from ctgan.demo import load_demo from ctgan.synthesizer import CTGANSynthesizer __all__ = ("CTGANSynthesizer", "load_demo") ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/__main__.py ================================================ import argparse from ctgan.data import read_csv, read_tsv, write_tsv from ctgan.synthesizer import CTGANSynthesizer def _parse_args(): parser = argparse.ArgumentParser(description="CTGAN Command Line Interface") parser.add_argument( "-e", "--epochs", default=300, type=int, help="Number of training epochs" ) parser.add_argument( "-t", "--tsv", action="store_true", help="Load data in TSV format instead of CSV", ) parser.add_argument( "--no-header", dest="header", action="store_false", help="The CSV file has no header. Discrete columns will be indices.", ) parser.add_argument("-m", "--metadata", help="Path to the metadata") parser.add_argument( "-d", "--discrete", help="Comma separated list of discrete columns, no whitespaces", ) parser.add_argument( "-n", "--num-samples", type=int, help="Number of rows to sample. Defaults to the training data size", ) parser.add_argument("data", help="Path to training data") parser.add_argument("output", help="Path of the output file") return parser.parse_args() def main(): args = _parse_args() if args.tsv: data, discrete_columns = read_tsv(args.data, args.metadata) else: data, discrete_columns = read_csv( args.data, args.metadata, args.header, args.discrete ) model = CTGANSynthesizer() model.fit(data, discrete_columns, args.epochs) num_samples = args.num_samples or len(data) sampled = model.sample(num_samples) if args.tsv: write_tsv(sampled, args.metadata, args.output) else: sampled.to_csv(args.output, index=False) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/conditional.py ================================================ import numpy as np class ConditionalGenerator(object): def __init__(self, data, output_info, log_frequency): self.model = [] start = 0 skip = False max_interval = 0 counter = 0 for item in output_info: if item[1] == "tanh": start += item[0] skip = True continue elif item[1] == "softmax": if skip: skip = False start += item[0] continue end = start + item[0] max_interval = max(max_interval, end - start) counter += 1 self.model.append(np.argmax(data[:, start:end], axis=-1)) start = end else: assert 0 assert start == data.shape[1] self.interval = [] self.n_col = 0 self.n_opt = 0 skip = False start = 0 self.p = np.zeros((counter, max_interval)) for item in output_info: if item[1] == "tanh": skip = True start += item[0] continue elif item[1] == "softmax": if skip: start += item[0] skip = False continue end = start + item[0] tmp = np.sum(data[:, start:end], axis=0) if log_frequency: tmp = np.log(tmp + 1) tmp = tmp / np.sum(tmp) self.p[self.n_col, : item[0]] = tmp self.interval.append((self.n_opt, item[0])) self.n_opt += item[0] self.n_col += 1 start = end else: assert 0 self.interval = np.asarray(self.interval) def random_choice_prob_index(self, idx): a = self.p[idx] r = np.expand_dims(np.random.rand(a.shape[0]), axis=1) return (a.cumsum(axis=1) > r).argmax(axis=1) def sample(self, batch): if self.n_col == 0: return None batch = batch idx = np.random.choice(np.arange(self.n_col), batch) vec1 = np.zeros((batch, self.n_opt), dtype="float32") mask1 = np.zeros((batch, self.n_col), dtype="float32") mask1[np.arange(batch), idx] = 1 opt1prime = self.random_choice_prob_index(idx) opt1 = self.interval[idx, 0] + opt1prime vec1[np.arange(batch), opt1] = 1 return vec1, mask1, idx, opt1prime def sample_zero(self, batch): if self.n_col == 0: return None vec = np.zeros((batch, self.n_opt), dtype="float32") idx = np.random.choice(np.arange(self.n_col), batch) for i in range(batch): col = idx[i] pick = int(np.random.choice(self.model[col])) vec[i, pick + self.interval[col, 0]] = 1 return vec ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/data.py ================================================ import json import numpy as np import pandas as pd def read_csv(csv_filename, meta_filename=None, header=True, discrete=None): data = pd.read_csv(csv_filename, header="infer" if header else None) if meta_filename: with open(meta_filename) as meta_file: metadata = json.load(meta_file) discrete_columns = [ column["name"] for column in metadata["columns"] if column["type"] != "continuous" ] elif discrete: discrete_columns = discrete.split(",") if not header: discrete_columns = [int(i) for i in discrete_columns] else: discrete_columns = [] return data, discrete_columns def read_tsv(data_filename, meta_filename): with open(meta_filename) as f: column_info = f.readlines() column_info_raw = [ x.replace("{", " ").replace("}", " ").split() for x in column_info ] discrete = [] continuous = [] column_info = [] for idx, item in enumerate(column_info_raw): if item[0] == "C": continuous.append(idx) column_info.append((float(item[1]), float(item[2]))) else: assert item[0] == "D" discrete.append(idx) column_info.append(item[1:]) meta = { "continuous_columns": continuous, "discrete_columns": discrete, "column_info": column_info, } with open(data_filename) as f: lines = f.readlines() data = [] for row in lines: row_raw = row.split() row = [] for idx, col in enumerate(row_raw): if idx in continuous: row.append(col) else: assert idx in discrete row.append(column_info[idx].index(col)) data.append(row) return np.asarray(data, dtype="float32"), meta["discrete_columns"] def write_tsv(data, meta, output_filename): with open(output_filename, "w") as f: for row in data: for idx, col in enumerate(row): if idx in meta["continuous_columns"]: print(col, end=" ", file=f) else: assert idx in meta["discrete_columns"] print(meta["column_info"][idx][int(col)], end=" ", file=f) print(file=f) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/demo.py ================================================ import pandas as pd DEMO_URL = "http://ctgan-data.s3.amazonaws.com/census.csv.gz" def load_demo(): return pd.read_csv(DEMO_URL, compression="gzip") ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/models.py ================================================ import torch from torch.nn import BatchNorm1d, Dropout, LeakyReLU, Linear, Module, ReLU, Sequential class Discriminator(Module): def calc_gradient_penalty( self, real_data, fake_data, device="cpu", pac=10, lambda_=10 ): alpha = torch.rand(real_data.size(0) // pac, 1, 1, device=device) alpha = alpha.repeat(1, pac, real_data.size(1)) alpha = alpha.view(-1, real_data.size(1)) interpolates = alpha * real_data + ((1 - alpha) * fake_data) disc_interpolates = self(interpolates) gradients = torch.autograd.grad( outputs=disc_interpolates, inputs=interpolates, grad_outputs=torch.ones(disc_interpolates.size(), device=device), create_graph=True, retain_graph=True, only_inputs=True, )[0] gradient_penalty = ( (gradients.view(-1, pac * real_data.size(1)).norm(2, dim=1) - 1) ** 2 ).mean() * lambda_ return gradient_penalty def __init__(self, input_dim, dis_dims, pack=10): super(Discriminator, self).__init__() dim = input_dim * pack self.pack = pack self.packdim = dim seq = [] for item in list(dis_dims): seq += [Linear(dim, item), LeakyReLU(0.2), Dropout(0.5)] dim = item seq += [Linear(dim, 1)] self.seq = Sequential(*seq) def forward(self, input): assert input.size()[0] % self.pack == 0 return self.seq(input.view(-1, self.packdim)) class Residual(Module): def __init__(self, i, o): super(Residual, self).__init__() self.fc = Linear(i, o) self.bn = BatchNorm1d(o) self.relu = ReLU() def forward(self, input): out = self.fc(input) out = self.bn(out) out = self.relu(out) return torch.cat([out, input], dim=1) class Generator(Module): def __init__(self, embedding_dim, gen_dims, data_dim): super(Generator, self).__init__() dim = embedding_dim seq = [] for item in list(gen_dims): seq += [Residual(dim, item)] dim += item seq.append(Linear(dim, data_dim)) self.seq = Sequential(*seq) def forward(self, input): data = self.seq(input) return data ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/sampler.py ================================================ import numpy as np class Sampler(object): """docstring for Sampler.""" def __init__(self, data, output_info): super(Sampler, self).__init__() self.data = data self.model = [] self.n = len(data) st = 0 skip = False for item in output_info: if item[1] == "tanh": st += item[0] skip = True elif item[1] == "softmax": if skip: skip = False st += item[0] continue ed = st + item[0] tmp = [] for j in range(item[0]): tmp.append(np.nonzero(data[:, st + j])[0]) self.model.append(tmp) st = ed else: assert 0 assert st == data.shape[1] def sample(self, n, col, opt): if col is None: idx = np.random.choice(np.arange(self.n), n) return self.data[idx] idx = [] for c, o in zip(col, opt): idx.append(np.random.choice(self.model[c][o])) return self.data[idx] ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/synthesizer.py ================================================ import numpy as np import torch from ctgan.conditional import ConditionalGenerator from ctgan.models import Discriminator, Generator from ctgan.sampler import Sampler from ctgan.transformer import DataTransformer from torch import optim from torch.nn import functional class EarlyStopping: """Early stops the training if validation loss doesn't improve after a given patience.""" def __init__(self, patience=7, verbose=False, delta=0): """ Args: patience (int): How long to wait after last time validation loss improved. Default: 7 verbose (bool): If True, prints a message for each validation loss improvement. Default: False delta (float): Minimum change in the monitored quantity to qualify as an improvement. Default: 0 """ self.patience = patience self.verbose = verbose self.counter = 0 self.best_score = None self.early_stop = False self.val_loss_min = np.Inf self.delta = delta def __call__(self, val_loss): score = -val_loss if self.best_score is None: self.best_score = score elif score < self.best_score + self.delta: self.counter += 1 # print(f'EarlyStopping counter: {self.counter} out of {self.patience}') if self.counter >= self.patience: self.early_stop = True else: self.best_score = score self.counter = 0 class CTGANSynthesizer(object): """Conditional Table GAN Synthesizer. This is the core class of the CTGAN project, where the different components are orchestrated together. For more details about the process, please check the [Modeling Tabular data using Conditional GAN](https://arxiv.org/abs/1907.00503) paper. Args: embedding_dim (int): Size of the random sample passed to the Generator. Defaults to 128. gen_dim (tuple or list of ints): Size of the output samples for each one of the Residuals. A Resiudal Layer will be created for each one of the values provided. Defaults to (256, 256). dis_dim (tuple or list of ints): Size of the output samples for each one of the Discriminator Layers. A Linear Layer will be created for each one of the values provided. Defaults to (256, 256). l2scale (float): Wheight Decay for the Adam Optimizer. Defaults to 1e-6. batch_size (int): Number of data samples to process in each step. """ def __init__( self, embedding_dim=128, gen_dim=(256, 256), dis_dim=(256, 256), l2scale=1e-6, batch_size=500, patience=25, ): self.embedding_dim = embedding_dim self.gen_dim = gen_dim self.dis_dim = dis_dim self.patience = patience self.l2scale = l2scale self.batch_size = batch_size self.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") def _apply_activate(self, data): data_t = [] st = 0 for item in self.transformer.output_info: if item[1] == "tanh": ed = st + item[0] data_t.append(torch.tanh(data[:, st:ed])) st = ed elif item[1] == "softmax": ed = st + item[0] data_t.append(functional.gumbel_softmax(data[:, st:ed], tau=0.2)) st = ed else: assert 0 return torch.cat(data_t, dim=1) def _cond_loss(self, data, c, m): loss = [] st = 0 st_c = 0 skip = False for item in self.transformer.output_info: if item[1] == "tanh": st += item[0] skip = True elif item[1] == "softmax": if skip: skip = False st += item[0] continue ed = st + item[0] ed_c = st_c + item[0] tmp = functional.cross_entropy( data[:, st:ed], torch.argmax(c[:, st_c:ed_c], dim=1), reduction="none", ) loss.append(tmp) st = ed st_c = ed_c else: assert 0 loss = torch.stack(loss, dim=1) return (loss * m).sum() / data.size()[0] def fit(self, train_data, discrete_columns=tuple(), epochs=300, log_frequency=True): """Fit the CTGAN Synthesizer models to the training data. Args: train_data (numpy.ndarray or pandas.DataFrame): Training Data. It must be a 2-dimensional numpy array or a pandas.DataFrame. discrete_columns (list-like): List of discrete columns to be used to generate the Conditional Vector. If ``train_data`` is a Numpy array, this list should contain the integer indices of the columns. Otherwise, if it is a ``pandas.DataFrame``, this list should contain the column names. epochs (int): Number of training epochs. Defaults to 300. log_frequency (boolean): Whether to use log frequency of categorical levels in conditional sampling. Defaults to ``True``. """ self.transformer = DataTransformer() self.transformer.fit(train_data, discrete_columns) train_data = self.transformer.transform(train_data) data_sampler = Sampler(train_data, self.transformer.output_info) data_dim = self.transformer.output_dimensions self.cond_generator = ConditionalGenerator( train_data, self.transformer.output_info, log_frequency ) self.generator = Generator( self.embedding_dim + self.cond_generator.n_opt, self.gen_dim, data_dim ).to(self.device) discriminator = Discriminator( data_dim + self.cond_generator.n_opt, self.dis_dim ).to(self.device) optimizerG = optim.Adam( self.generator.parameters(), lr=2e-4, betas=(0.5, 0.9), weight_decay=self.l2scale, ) optimizerD = optim.Adam(discriminator.parameters(), lr=2e-4, betas=(0.5, 0.9)) assert self.batch_size % 2 == 0 mean = torch.zeros(self.batch_size, self.embedding_dim, device=self.device) std = mean + 1 train_losses = [] early_stopping = EarlyStopping(patience=self.patience, verbose=False) steps_per_epoch = max(len(train_data) // self.batch_size, 1) for i in range(epochs): for id_ in range(steps_per_epoch): fakez = torch.normal(mean=mean, std=std) condvec = self.cond_generator.sample(self.batch_size) if condvec is None: c1, m1, col, opt = None, None, None, None real = data_sampler.sample(self.batch_size, col, opt) else: c1, m1, col, opt = condvec c1 = torch.from_numpy(c1).to(self.device) m1 = torch.from_numpy(m1).to(self.device) fakez = torch.cat([fakez, c1], dim=1) perm = np.arange(self.batch_size) np.random.shuffle(perm) real = data_sampler.sample(self.batch_size, col[perm], opt[perm]) c2 = c1[perm] fake = self.generator(fakez) fakeact = self._apply_activate(fake) real = torch.from_numpy(real.astype("float32")).to(self.device) if c1 is not None: fake_cat = torch.cat([fakeact, c1], dim=1) real_cat = torch.cat([real, c2], dim=1) else: real_cat = real fake_cat = fake y_fake = discriminator(fake_cat) y_real = discriminator(real_cat) pen = discriminator.calc_gradient_penalty( real_cat, fake_cat, self.device ) loss_d = -(torch.mean(y_real) - torch.mean(y_fake)) train_losses.append(loss_d.item()) optimizerD.zero_grad() pen.backward(retain_graph=True) loss_d.backward() optimizerD.step() fakez = torch.normal(mean=mean, std=std) condvec = self.cond_generator.sample(self.batch_size) if condvec is None: c1, m1, col, opt = None, None, None, None else: c1, m1, col, opt = condvec c1 = torch.from_numpy(c1).to(self.device) m1 = torch.from_numpy(m1).to(self.device) fakez = torch.cat([fakez, c1], dim=1) fake = self.generator(fakez) fakeact = self._apply_activate(fake) if c1 is not None: y_fake = discriminator(torch.cat([fakeact, c1], dim=1)) else: y_fake = discriminator(fakeact) if condvec is None: cross_entropy = 0 else: cross_entropy = self._cond_loss(fake, c1, m1) loss_g = -torch.mean(y_fake) + cross_entropy train_losses.append(loss_g.item()) optimizerG.zero_grad() loss_g.backward() optimizerG.step() early_stopping(np.average(train_losses)) if early_stopping.early_stop: print("GAN: Early stopping after epochs {}".format(i)) break train_losses = [] # print("Epoch %d, Loss G: %.4f, Loss D: %.4f" % # (i + 1, loss_g.detach().cpu(), loss_d.detach().cpu()), # flush=True) def sample(self, n): """Sample data similar to the training data. Args: n (int): Number of rows to sample. Returns: numpy.ndarray or pandas.DataFrame """ steps = n // self.batch_size + 1 data = [] for i in range(steps): mean = torch.zeros(self.batch_size, self.embedding_dim) std = mean + 1 fakez = torch.normal(mean=mean, std=std).to(self.device) condvec = self.cond_generator.sample_zero(self.batch_size) if condvec is None: pass else: c1 = condvec c1 = torch.from_numpy(c1).to(self.device) fakez = torch.cat([fakez, c1], dim=1) fake = self.generator(fakez) fakeact = self._apply_activate(fake) data.append(fakeact.detach().cpu().numpy()) data = np.concatenate(data, axis=0) data = data[:n] return self.transformer.inverse_transform(data, None) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/ctgan/transformer.py ================================================ import numpy as np import pandas as pd from sklearn.exceptions import ConvergenceWarning from sklearn.mixture import BayesianGaussianMixture from sklearn.preprocessing import OneHotEncoder from sklearn.utils._testing import ignore_warnings class DataTransformer(object): """Data Transformer. Model continuous columns with a BayesianGMM and normalized to a scalar [0, 1] and a vector. Discrete columns are encoded using a scikit-learn OneHotEncoder. Args: n_cluster (int): Number of modes. epsilon (float): Epsilon value. """ def __init__(self, n_clusters=10, epsilon=0.005): self.n_clusters = n_clusters self.epsilon = epsilon @ignore_warnings(category=ConvergenceWarning) def _fit_continuous(self, column, data): gm = BayesianGaussianMixture( self.n_clusters, weight_concentration_prior_type="dirichlet_process", weight_concentration_prior=0.001, n_init=1, ) gm.fit(data) components = gm.weights_ > self.epsilon num_components = components.sum() return { "name": column, "model": gm, "components": components, "output_info": [(1, "tanh"), (num_components, "softmax")], "output_dimensions": 1 + num_components, } def _fit_discrete(self, column, data): ohe = OneHotEncoder(sparse=False) ohe.fit(data) categories = len(ohe.categories_[0]) return { "name": column, "encoder": ohe, "output_info": [(categories, "softmax")], "output_dimensions": categories, } def fit(self, data, discrete_columns=tuple()): self.output_info = [] self.output_dimensions = 0 if not isinstance(data, pd.DataFrame): self.dataframe = False data = pd.DataFrame(data) else: self.dataframe = True self.meta = [] for column in data.columns: column_data = data[[column]].values if column in discrete_columns: meta = self._fit_discrete(column, column_data) else: meta = self._fit_continuous(column, column_data) self.output_info += meta["output_info"] self.output_dimensions += meta["output_dimensions"] self.meta.append(meta) def _transform_continuous(self, column_meta, data): components = column_meta["components"] model = column_meta["model"] means = model.means_.reshape((1, self.n_clusters)) stds = np.sqrt(model.covariances_).reshape((1, self.n_clusters)) features = (data - means) / (4 * stds) probs = model.predict_proba(data) n_opts = components.sum() features = features[:, components] probs = probs[:, components] opt_sel = np.zeros(len(data), dtype="int") for i in range(len(data)): pp = probs[i] + 1e-6 pp = pp / pp.sum() opt_sel[i] = np.random.choice(np.arange(n_opts), p=pp) idx = np.arange((len(features))) features = features[idx, opt_sel].reshape([-1, 1]) features = np.clip(features, -0.99, 0.99) probs_onehot = np.zeros_like(probs) probs_onehot[np.arange(len(probs)), opt_sel] = 1 return [features, probs_onehot] def _transform_discrete(self, column_meta, data): encoder = column_meta["encoder"] return encoder.transform(data) def transform(self, data): if not isinstance(data, pd.DataFrame): data = pd.DataFrame(data) values = [] for meta in self.meta: column_data = data[[meta["name"]]].values if "model" in meta: values += self._transform_continuous(meta, column_data) else: values.append(self._transform_discrete(meta, column_data)) return np.concatenate(values, axis=1).astype(float) def _inverse_transform_continuous(self, meta, data, sigma): model = meta["model"] components = meta["components"] u = data[:, 0] v = data[:, 1:] if sigma is not None: u = np.random.normal(u, sigma) u = np.clip(u, -1, 1) v_t = np.ones((len(data), self.n_clusters)) * -100 v_t[:, components] = v v = v_t means = model.means_.reshape([-1]) stds = np.sqrt(model.covariances_).reshape([-1]) p_argmax = np.argmax(v, axis=1) std_t = stds[p_argmax] mean_t = means[p_argmax] column = u * 4 * std_t + mean_t return column def _inverse_transform_discrete(self, meta, data): encoder = meta["encoder"] return encoder.inverse_transform(data) def inverse_transform(self, data, sigmas): start = 0 output = [] column_names = [] for meta in self.meta: dimensions = meta["output_dimensions"] columns_data = data[:, start : start + dimensions] if "model" in meta: sigma = sigmas[start] if sigmas else None inverted = self._inverse_transform_continuous(meta, columns_data, sigma) else: inverted = self._inverse_transform_discrete(meta, columns_data) output.append(inverted) column_names.append(meta["name"]) start += dimensions output = np.column_stack(output) if self.dataframe: output = pd.DataFrame(output, columns=column_names) return output ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/encoders.py ================================================ from typing import List import numpy as np import pandas as pd from category_encoders.backward_difference import BackwardDifferenceEncoder from category_encoders.cat_boost import CatBoostEncoder from category_encoders.helmert import HelmertEncoder from category_encoders.james_stein import JamesSteinEncoder from category_encoders.leave_one_out import LeaveOneOutEncoder from category_encoders.m_estimate import MEstimateEncoder from category_encoders.one_hot import OneHotEncoder from category_encoders.ordinal import OrdinalEncoder from category_encoders.sum_coding import SumEncoder from category_encoders.target_encoder import TargetEncoder from category_encoders.woe import WOEEncoder from sklearn.model_selection import RepeatedStratifiedKFold def get_single_encoder(encoder_name: str, cat_cols: list): """ Get encoder by its name :param encoder_name: Name of desired encoder :param cat_cols: Cat columns for encoding :return: Categorical encoder """ if encoder_name == "FrequencyEncoder": encoder = FrequencyEncoder(cols=cat_cols) if encoder_name == "WOEEncoder": encoder = WOEEncoder(cols=cat_cols) if encoder_name == "TargetEncoder": encoder = TargetEncoder(cols=cat_cols) if encoder_name == "SumEncoder": encoder = SumEncoder(cols=cat_cols) if encoder_name == "MEstimateEncoder": encoder = MEstimateEncoder(cols=cat_cols) if encoder_name == "LeaveOneOutEncoder": encoder = LeaveOneOutEncoder(cols=cat_cols) if encoder_name == "HelmertEncoder": encoder = HelmertEncoder(cols=cat_cols) if encoder_name == "BackwardDifferenceEncoder": encoder = BackwardDifferenceEncoder(cols=cat_cols) if encoder_name == "JamesSteinEncoder": encoder = JamesSteinEncoder(cols=cat_cols) if encoder_name == "OrdinalEncoder": encoder = OrdinalEncoder(cols=cat_cols) if encoder_name == "CatBoostEncoder": encoder = CatBoostEncoder(cols=cat_cols) if encoder_name == "MEstimateEncoder": encoder = MEstimateEncoder(cols=cat_cols) if encoder_name == "OneHotEncoder": encoder = OneHotEncoder(cols=cat_cols) if encoder is None: raise NotImplementedError("To be implemented") return encoder class DoubleValidationEncoderNumerical: """ Encoder with validation within """ def __init__(self, cols, encoders_names_tuple=()): """ :param cols: Categorical columns :param encoders_names_tuple: Tuple of str with encoders """ self.cols, self.num_cols = cols, None self.encoders_names_tuple = encoders_names_tuple self.n_folds, self.n_repeats = 5, 3 self.model_validation = RepeatedStratifiedKFold( n_splits=self.n_folds, n_repeats=self.n_repeats, random_state=0 ) self.encoders_dict = {} self.storage = None def fit_transform(self, X: pd.DataFrame, y: np.array) -> pd.DataFrame: self.num_cols = [col for col in X.columns if col not in self.cols] self.storage = [] for encoder_name in self.encoders_names_tuple: for n_fold, (train_idx, val_idx) in enumerate( self.model_validation.split(X, y) ): encoder = get_single_encoder(encoder_name, self.cols) X_train, X_val = ( X.loc[train_idx].reset_index(drop=True), X.loc[val_idx].reset_index(drop=True), ) y_train, y_val = y[train_idx], y[val_idx] _ = encoder.fit_transform(X_train, y_train) # transform validation part and get all necessary cols val_t = encoder.transform(X_val) val_t = val_t[ [col for col in val_t.columns if col not in self.num_cols] ].values if encoder_name not in self.encoders_dict.keys(): cols_representation = np.zeros((X.shape[0], val_t.shape[1])) self.encoders_dict[encoder_name] = [encoder] else: self.encoders_dict[encoder_name].append(encoder) cols_representation[val_idx, :] += val_t / self.n_repeats cols_representation = pd.DataFrame(cols_representation) cols_representation.columns = [ f"encoded_{encoder_name}_{i}" for i in range(cols_representation.shape[1]) ] self.storage.append(cols_representation) for df in self.storage: X = pd.concat([X, df], axis=1) X.drop(self.cols, axis=1, inplace=True) return X def transform(self, X: pd.DataFrame) -> pd.DataFrame: self.storage = [] for encoder_name in self.encoders_names_tuple: cols_representation = None for encoder in self.encoders_dict[encoder_name]: test_tr = encoder.transform(X) test_tr = test_tr[ [col for col in test_tr.columns if col not in self.num_cols] ].values if cols_representation is None: cols_representation = np.zeros(test_tr.shape) cols_representation = ( cols_representation + test_tr / self.n_folds / self.n_repeats ) cols_representation = pd.DataFrame(cols_representation) cols_representation.columns = [ f"encoded_{encoder_name}_{i}" for i in range(cols_representation.shape[1]) ] self.storage.append(cols_representation) for df in self.storage: X = pd.concat([X, df], axis=1) X.drop(self.cols, axis=1, inplace=True) return X class MultipleEncoder: """ Multiple encoder for categorical columns """ def __init__(self, cols: List[str], encoders_names_tuple=()): """ :param cols: List of categorical columns :param encoders_names_tuple: Tuple of categorical encoders names. Possible values in tuple are: "FrequencyEncoder", "WOEEncoder", "TargetEncoder", "SumEncoder", "MEstimateEncoder", "LeaveOneOutEncoder", "HelmertEncoder", "BackwardDifferenceEncoder", "JamesSteinEncoder", "OrdinalEncoder""CatBoostEncoder" """ self.cols = cols self.num_cols = None self.encoders_names_tuple = encoders_names_tuple self.encoders_dict = {} # list for storing results of transformation from each encoder self.storage = None def fit_transform(self, X: pd.DataFrame, y: np.array) -> pd.DataFrame: self.num_cols = [col for col in X.columns if col not in self.cols] self.storage = [] for encoder_name in self.encoders_names_tuple: encoder = get_single_encoder(encoder_name=encoder_name, cat_cols=self.cols) cols_representation = encoder.fit_transform(X, y) self.encoders_dict[encoder_name] = encoder cols_representation = cols_representation[ [col for col in cols_representation.columns if col not in self.num_cols] ].values cols_representation = pd.DataFrame(cols_representation) cols_representation.columns = [ f"encoded_{encoder_name}_{i}" for i in range(cols_representation.shape[1]) ] self.storage.append(cols_representation) # concat cat cols representations with initial dataframe for df in self.storage: X = pd.concat([X, df], axis=1) # remove all columns as far as we have their representations X.drop(self.cols, axis=1, inplace=True) return X def transform(self, X) -> pd.DataFrame: self.storage = [] for encoder_name in self.encoders_names_tuple: # get representation of cat columns and form a pd.DataFrame for it cols_representation = self.encoders_dict[encoder_name].transform(X) cols_representation = cols_representation[ [col for col in cols_representation.columns if col not in self.num_cols] ].values cols_representation = pd.DataFrame(cols_representation) cols_representation.columns = [ f"encoded_{encoder_name}_{i}" for i in range(cols_representation.shape[1]) ] self.storage.append(cols_representation) # concat cat cols representations with initial dataframe for df in self.storage: X = pd.concat([X, df], axis=1) # remove all columns as far as we have their representations X.drop(self.cols, axis=1, inplace=True) return X class FrequencyEncoder: def __init__(self, cols): self.cols = cols self.counts_dict = None def fit(self, X: pd.DataFrame, y=None) -> pd.DataFrame: counts_dict = {} for col in self.cols: values, counts = np.unique(X[col], return_counts=True) counts_dict[col] = dict(zip(values, counts)) self.counts_dict = counts_dict def transform(self, X: pd.DataFrame) -> pd.DataFrame: counts_dict_test = {} res = [] for col in self.cols: values, counts = np.unique(X[col], return_counts=True) counts_dict_test[col] = dict(zip(values, counts)) # if value is in "train" keys - replace "test" counts with "train" counts for k in [ key for key in counts_dict_test[col].keys() if key in self.counts_dict[col].keys() ]: counts_dict_test[col][k] = self.counts_dict[col][k] res.append(X[col].map(counts_dict_test[col]).values.reshape(-1, 1)) res = np.hstack(res) X[self.cols] = res return X def fit_transform(self, X: pd.DataFrame, y=None) -> pd.DataFrame: self.fit(X, y) X = self.transform(X) return X if __name__ == "__main__": df = pd.DataFrame({}) df["cat_col"] = [1, 2, 3, 1, 2, 3, 1, 1, 1] df["target"] = [0, 1, 0, 1, 0, 1, 0, 1, 0] # temp = df.copy() enc = CatBoostEncoder(cols=["cat_col"]) print(enc.fit_transform(temp, temp["target"])) # temp = df.copy() enc = MultipleEncoder(cols=["cat_col"], encoders_names_tuple=("CatBoostEncoder",)) print(enc.fit_transform(temp, temp["target"])) # temp = df.copy() enc = DoubleValidationEncoderNumerical( cols=["cat_col"], encoders_names_tuple=("CatBoostEncoder",) ) print(enc.fit_transform(temp, temp["target"])) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/model.py ================================================ import numpy as np import pandas as pd from lightgbm import LGBMClassifier from scipy.stats import rankdata from sklearn.metrics import roc_auc_score from sklearn.model_selection import StratifiedKFold from encoders import MultipleEncoder, DoubleValidationEncoderNumerical class Model: def __init__( self, cat_validation="None", encoders_names=None, cat_cols=None, model_validation=StratifiedKFold(n_splits=5, shuffle=True, random_state=42), model_params=None, ): self.cat_validation = cat_validation self.encoders_names = encoders_names self.cat_cols = cat_cols self.model_validation = model_validation if model_params is None: self.model_params = { "metrics": "AUC", "n_estimators": 5000, "learning_rate": 0.04, "random_state": 42, } else: self.model_params = model_params self.encoders_list = [] self.models_list = [] self.scores_list_train = [] self.scores_list_val = [] self.models_trees = [] def fit(self, X: pd.DataFrame, y: np.array) -> tuple: # process cat cols if self.cat_validation == "None": encoder = MultipleEncoder( cols=self.cat_cols, encoders_names_tuple=self.encoders_names ) X = encoder.fit_transform(X, y) for n_fold, (train_idx, val_idx) in enumerate( self.model_validation.split(X, y) ): X_train, X_val = ( X.iloc[train_idx].reset_index(drop=True), X.iloc[val_idx].reset_index(drop=True), ) y_train, y_val = y.iloc[train_idx], y.iloc[val_idx] if self.cat_validation == "Single": encoder = MultipleEncoder( cols=self.cat_cols, encoders_names_tuple=self.encoders_names ) X_train = encoder.fit_transform(X_train, y_train) X_val = encoder.transform(X_val) if self.cat_validation == "Double": encoder = DoubleValidationEncoderNumerical( cols=self.cat_cols, encoders_names_tuple=self.encoders_names ) X_train = encoder.fit_transform(X_train, y_train) X_val = encoder.transform(X_val) pass self.encoders_list.append(encoder) # check for OrdinalEncoder encoding for col in [col for col in X_train.columns if "OrdinalEncoder" in col]: X_train[col] = X_train[col].astype("category") X_val[col] = X_val[col].astype("category") # fit model model = LGBMClassifier(**self.model_params) model.fit( X_train, y_train, eval_set=[(X_train, y_train), (X_val, y_val)], early_stopping_rounds=50, verbose=False, ) self.models_trees.append(model.best_iteration_) self.models_list.append(model) y_hat = model.predict_proba(X_train)[:, 1] score_train = roc_auc_score(y_train, y_hat) self.scores_list_train.append(score_train) y_hat = model.predict_proba(X_val)[:, 1] score_val = roc_auc_score(y_val, y_hat) self.scores_list_val.append(score_val) mean_score_train = np.mean(self.scores_list_train) mean_score_val = np.mean(self.scores_list_val) avg_num_trees = int(np.mean(self.models_trees)) print(f"Mean score train : {np.round(mean_score_train, 4)}") print(f"Mean score val : {np.round(mean_score_val, 4)}") return mean_score_train, mean_score_val, avg_num_trees def predict(self, X: pd.DataFrame, return_shape=True) -> np.array: y_hat = np.zeros(X.shape[0]) for encoder, model in zip(self.encoders_list, self.models_list): X_test = X.copy() X_test = encoder.transform(X_test) # check for OrdinalEncoder encoding for col in [col for col in X_test.columns if "OrdinalEncoder" in col]: X_test[col] = X_test[col].astype("category") unranked_preds = model.predict_proba(X_test)[:, 1] y_hat += rankdata(unranked_preds) if return_shape: return y_hat, X_test.shape[1] else: return y_hat ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/results/fit_predict_scores.txt ================================================ dataset_name Encoder validation_type sample_type train_shape test_shape mean_target_before_sampling_train mean_target_after_sampling_train mean_target_test num_cat_cols train_score val_score test_score time features_before_encoding features_after_encoding avg_tress_number train_prop_size telecom CatBoostEncoder Single None 140 4226 0.24285714285714285 0.24285714285714285 0.26786559394226217 16 0.9203579209461562 0.7823902288188003 0.7783220858335179 2.6647253036499023 19 19 21 0.05 telecom CatBoostEncoder Single None 281 4226 0.2526690391459075 0.2526690391459075 0.26786559394226217 16 0.9721151837928155 0.8211678004535148 0.7922811962512648 2.913510799407959 19 19 51 0.1 telecom CatBoostEncoder Single None 704 4226 0.25 0.25 0.26786559394226217 16 0.9507839530560027 0.7711436700466351 0.7909773789918251 2.9542291164398193 19 19 28 0.25 telecom CatBoostEncoder Single None 1408 4226 0.2649147727272727 0.2649147727272727 0.26786559394226217 16 0.9473990035520276 0.7625649127388258 0.7941651857807543 3.3633759021759033 19 19 31 0.5 telecom CatBoostEncoder Single None 2112 4226 0.26609848484848486 0.26609848484848486 0.26786559394226217 16 0.9625114751219357 0.796838984951674 0.8173239668251101 3.6398279666900635 19 19 55 0.75 telecom CatBoostEncoder Single gan 147 4226 0.24285714285714285 0.2789115646258503 0.26786559394226217 16 0.935829991087344 0.7108946608946609 0.7348377173647388 2.7197842597961426 19 19 126 0.05 telecom CatBoostEncoder Single gan 309 4226 0.2526690391459075 0.32038834951456313 0.26786559394226217 16 0.9710341320072333 0.8431954887218046 0.7764859205438086 2.84492826461792 19 19 53 0.1 telecom CatBoostEncoder Single gan 880 4226 0.25 0.4 0.26786559394226217 16 0.986566069551656 0.8351047163484049 0.7945499210828664 3.8594696521759033 19 19 106 0.25 telecom CatBoostEncoder Single gan 2112 4226 0.2649147727272727 0.5099431818181818 0.26786559394226217 16 0.9774739758417266 0.7292480245665282 0.670671720713292 3.547983407974243 19 19 63 0.5 telecom CatBoostEncoder Single gan 3696 4226 0.26609848484848486 0.5308441558441559 0.26786559394226217 16 0.9596056401070886 0.579395160858396 0.4839657458525677 4.959321975708008 19 19 205 0.75 telecom CatBoostEncoder Single sample_original 147 4226 0.24285714285714285 0.2789115646258503 0.26786559394226217 16 0.9231801735845855 0.8339375901875903 0.7753863913056389 2.622987985610962 19 19 27 0.05 telecom CatBoostEncoder Single sample_original 309 4226 0.2526690391459075 0.32038834951456313 0.26786559394226217 16 0.9652377185051236 0.8419611528822056 0.7942735398046143 2.9789845943450928 19 19 36 0.1 telecom CatBoostEncoder Single sample_original 880 4226 0.25 0.2840909090909091 0.26786559394226217 16 0.9757579365079365 0.7878412698412698 0.7787949033921804 3.535475969314575 19 19 52 0.25 telecom CatBoostEncoder Single sample_original 2112 4226 0.2649147727272727 0.2689393939393939 0.26786559394226217 16 0.9769307643413366 0.8337605791432761 0.8100511134054057 3.666048288345337 19 19 65 0.5 telecom CatBoostEncoder Single sample_original 3696 4226 0.26609848484848486 0.25703463203463206 0.26786559394226217 16 0.9572892638827744 0.8329185190995373 0.8034537952174617 3.8924672603607178 19 19 57 0.75 adult CatBoostEncoder Single None 976 29306 0.23668032786885246 0.23668032786885246 0.23995086330444276 8 0.9712404721251744 0.847279737255462 0.8868313280568222 2.230457067489624 14 14 46 0.05 adult CatBoostEncoder Single None 1953 29306 0.24270353302611367 0.24270353302611367 0.23995086330444276 8 0.960174625363074 0.8285939436314103 0.8827378219839923 2.432476282119751 14 14 53 0.1 adult CatBoostEncoder Single None 4884 29306 0.23361998361998362 0.23361998361998362 0.23995086330444276 8 0.9482754738723914 0.8366190735101722 0.8784073030913059 2.8655831813812256 14 14 71 0.25 adult CatBoostEncoder Single None 9768 29306 0.23474610974610974 0.23474610974610974 0.23995086330444276 8 0.9206448457558245 0.8782990082565686 0.902996855636946 3.118391275405884 14 14 62 0.5 adult CatBoostEncoder Single None 14652 29306 0.23744198744198744 0.23744198744198744 0.23995086330444276 8 0.9524850648340255 0.8764301580520678 0.9108225945747773 5.403693914413452 14 14 194 0.75 adult CatBoostEncoder Single gan 1024 29306 0.23668032786885246 0.2724609375 0.23995086330444276 8 0.9622633701507809 0.8412385600976204 0.8551866259124772 2.529022455215454 14 14 84 0.05 adult CatBoostEncoder Single gan 2148 29306 0.24270353302611367 0.31145251396648044 0.23995086330444276 8 0.9775502159218641 0.8808715364664044 0.8665231182420047 2.5598251819610596 14 14 65 0.1 adult CatBoostEncoder Single gan 6105 29306 0.23361998361998362 0.3868959868959869 0.23995086330444276 8 0.9643542299126151 0.9215707610412934 0.852855730107893 2.577143430709839 14 14 40 0.25 adult CatBoostEncoder Single gan 14652 29306 0.23474610974610974 0.4224679224679225 0.23995086330444276 8 0.9791659801783968 0.9516803799287248 0.8952397526391495 5.079102039337158 14 14 165 0.5 adult CatBoostEncoder Single gan 25641 29306 0.23744198744198744 0.564057564057564 0.23995086330444276 8 0.9774536571575293 0.9655222496928223 0.8646375819340936 4.192373991012573 14 14 51 0.75 adult CatBoostEncoder Single sample_original 1024 29306 0.23668032786885246 0.2255859375 0.23995086330444276 8 0.9800756039427319 0.8421736597006977 0.8876648999128958 2.370562791824341 14 14 65 0.05 adult CatBoostEncoder Single sample_original 2148 29306 0.24270353302611367 0.2532588454376164 0.23995086330444276 8 0.9861732005759378 0.8412644823955254 0.8810382421160062 2.72615122795105 14 14 87 0.1 adult CatBoostEncoder Single sample_original 6105 29306 0.23361998361998362 0.23095823095823095 0.23995086330444276 8 0.9262703787415312 0.8858975520963149 0.8959786368410068 2.753687858581543 14 14 42 0.25 adult CatBoostEncoder Single sample_original 14652 29306 0.23474610974610974 0.2308899808899809 0.23995086330444276 8 0.9100725384410294 0.8825036397065548 0.8970955438333802 3.8601276874542236 14 14 64 0.5 adult CatBoostEncoder Single sample_original 25641 29306 0.23744198744198744 0.23294723294723294 0.23995086330444276 8 0.9341026630291239 0.8953411238314624 0.912838220265893 6.400696754455566 14 14 184 0.75 employee CatBoostEncoder Single None 655 19662 0.9404580152671755 0.9404580152671755 0.9421218594242702 9 0.8574978229171155 0.6160597205050392 0.5376888159909587 2.1917824745178223 9 9 17 0.05 employee CatBoostEncoder Single None 1310 19662 0.9396946564885497 0.9396946564885497 0.9421218594242702 9 0.903871914678855 0.521004390079326 0.5498886117055574 2.478717803955078 9 9 16 0.1 employee CatBoostEncoder Single None 3276 19662 0.9377289377289377 0.9377289377289377 0.9421218594242702 9 0.8387308459573963 0.5478813781285504 0.541631428415291 2.755147695541382 9 9 13 0.25 employee CatBoostEncoder Single None 6553 19662 0.9410956813673127 0.9410956813673127 0.9421218594242702 9 0.8435260045008717 0.5714672460292307 0.5968346199050565 3.289389133453369 9 9 31 0.5 employee CatBoostEncoder Single None 9830 19662 0.9429298067141404 0.9429298067141404 0.9421218594242702 9 0.7700627326608164 0.5572643636687524 0.6047351433887695 3.9642112255096436 9 9 61 0.75 employee CatBoostEncoder Single gan 687 19662 0.9404580152671755 0.9432314410480349 0.9421218594242702 9 0.9294351017812119 0.5967550472783032 0.5691309502440002 2.377863645553589 9 9 77 0.05 employee CatBoostEncoder Single gan 1441 19662 0.9396946564885497 0.945176960444136 0.9421218594242702 9 0.9171099370426935 0.5328193344645551 0.5059988912877571 2.5225038528442383 9 9 23 0.1 employee CatBoostEncoder Single gan 4095 19662 0.9377289377289377 0.9501831501831501 0.9421218594242702 9 0.8632844864380627 0.5733728644924116 0.5250210717943833 2.941354751586914 9 9 28 0.25 employee CatBoostEncoder Single gan 9829 19662 0.9410956813673127 0.9598127988605148 0.9421218594242702 9 0.7717158950022815 0.6473914752875848 0.5719551731492399 3.41788911819458 9 9 4 0.5 employee CatBoostEncoder Single gan 17202 19662 0.9429298067141404 0.9667480525520288 0.9421218594242702 9 0.8868439406407245 0.7010561954836108 0.6020863211132739 5.74671196937561 9 9 107 0.75 employee CatBoostEncoder Single sample_original 687 19662 0.9404580152671755 0.9432314410480349 0.9421218594242702 9 0.892207108066352 0.5881078030496635 0.5588777101591286 2.3120646476745605 9 9 41 0.05 employee CatBoostEncoder Single sample_original 1441 19662 0.9396946564885497 0.945176960444136 0.9421218594242702 9 0.9105744772730281 0.5817287211358902 0.5083986185783209 2.5556788444519043 9 9 26 0.1 employee CatBoostEncoder Single sample_original 4095 19662 0.9377289377289377 0.9391941391941392 0.9421218594242702 9 0.8347272230137334 0.5749850436180417 0.5445894254316539 2.9585955142974854 9 9 25 0.25 employee CatBoostEncoder Single sample_original 9829 19662 0.9410956813673127 0.9384474514192696 0.9421218594242702 9 0.7861733326006606 0.5720584718432115 0.5704311919102526 3.5040416717529297 9 9 10 0.5 employee CatBoostEncoder Single sample_original 17202 19662 0.9429298067141404 0.9450645273805371 0.9421218594242702 9 0.7690751192353558 0.576197312394728 0.6096386998446702 5.370056629180908 9 9 92 0.75 mortgages CatBoostEncoder Single None 912 27386 0.7763157894736842 0.7763157894736842 0.7893084057547652 9 0.9569518669341814 0.6219996357665105 0.5975373928677262 2.4561352729797363 19 19 30 0.05 mortgages CatBoostEncoder Single None 1825 27386 0.7797260273972603 0.7797260273972603 0.7893084057547652 9 0.9071498432071694 0.6354816393487632 0.6131081933339063 2.498446464538574 19 19 18 0.1 mortgages CatBoostEncoder Single None 4564 27386 0.7865907099035934 0.7865907099035934 0.7893084057547652 9 0.9019594727508462 0.621371441067906 0.6364322892279549 3.0621771812438965 19 19 46 0.25 mortgages CatBoostEncoder Single None 9128 27386 0.7853856266432954 0.7853856266432954 0.7893084057547652 9 0.8534152166259004 0.6354931025050673 0.653587648343162 3.783792734146118 19 19 87 0.5 mortgages CatBoostEncoder Single None 13692 27386 0.7879053461875548 0.7879053461875548 0.7893084057547652 9 0.8472016415045802 0.6562038901988799 0.6753054296066718 4.733774662017822 19 19 94 0.75 mortgages CatBoostEncoder Single gan 957 27386 0.7763157894736842 0.786833855799373 0.7893084057547652 9 0.939659739381808 0.6163126043180961 0.6027468019067974 2.4967386722564697 19 19 46 0.05 mortgages CatBoostEncoder Single gan 2007 27386 0.7797260273972603 0.7997010463378177 0.7893084057547652 9 0.983145339059089 0.6609822699126957 0.619393835941539 2.7110533714294434 19 19 46 0.1 mortgages CatBoostEncoder Single gan 5705 27386 0.7865907099035934 0.8292725679228746 0.7893084057547652 9 0.8963424681896441 0.699274272063823 0.6339991791496639 3.1721582412719727 19 19 45 0.25 mortgages CatBoostEncoder Single gan 13692 27386 0.7853856266432954 0.8569237510955302 0.7893084057547652 9 0.8794340464771435 0.7679436604859984 0.6327580098251888 3.8494341373443604 19 19 36 0.5 mortgages CatBoostEncoder Single gan 23961 27386 0.7879053461875548 0.8616084470598055 0.7893084057547652 9 0.9755118322911003 0.7869008438365362 0.6186028033666571 10.492693901062012 19 19 476 0.75 mortgages CatBoostEncoder Single sample_original 957 27386 0.7763157894736842 0.7575757575757576 0.7893084057547652 9 0.934040660794276 0.6276841366550767 0.575075710976015 2.3680293560028076 19 19 24 0.05 mortgages CatBoostEncoder Single sample_original 2007 27386 0.7797260273972603 0.7747882411559541 0.7893084057547652 9 0.9965417266065618 0.6916640558441202 0.6345660453390325 3.2200515270233154 19 19 113 0.1 mortgages CatBoostEncoder Single sample_original 5705 27386 0.7865907099035934 0.7782646801051709 0.7893084057547652 9 0.9704967751842751 0.7198687818253034 0.6499378028278687 4.217786073684692 19 19 172 0.25 mortgages CatBoostEncoder Single sample_original 13692 27386 0.7853856266432954 0.7884896289804265 0.7893084057547652 9 0.9336765448952681 0.7434918857339071 0.6622976817993476 5.424570322036743 19 19 158 0.5 mortgages CatBoostEncoder Single sample_original 23961 27386 0.7879053461875548 0.791327573974375 0.7893084057547652 9 0.9350927627392593 0.7573637753339764 0.6689071706303952 9.380746364593506 19 19 345 0.75 poverty_A CatBoostEncoder Single None 751 22536 0.5619174434087882 0.5619174434087882 0.5274671636492723 38 0.8859743934446591 0.5620650101532454 0.5401530752584143 7.994302988052368 40 40 79 0.05 poverty_A CatBoostEncoder Single None 1502 22536 0.5679094540612517 0.5679094540612517 0.5274671636492723 38 0.831990567462373 0.5293249059135732 0.5088747165207526 7.762101411819458 40 40 3 0.1 poverty_A CatBoostEncoder Single None 3756 22536 0.5362087326943556 0.5362087326943556 0.5274671636492723 38 0.858324953012095 0.5982342354289758 0.6306323183875759 8.875043392181396 40 40 52 0.25 poverty_A CatBoostEncoder Single None 7512 22536 0.5154419595314164 0.5154419595314164 0.5274671636492723 38 0.7746306123276163 0.5485171975228239 0.5720604833462329 9.434112787246704 40 40 25 0.5 poverty_A CatBoostEncoder Single None 11268 22536 0.5154419595314164 0.5154419595314164 0.5274671636492723 38 0.7783769232796187 0.5372990835640438 0.5539699268307093 11.178505897521973 40 40 87 0.75 poverty_A CatBoostEncoder Single gan 788 22536 0.5619174434087882 0.5824873096446701 0.5274671636492723 38 0.9421522331067809 0.5516229422751163 0.5869937181884348 8.291184902191162 40 40 100 0.05 poverty_A CatBoostEncoder Single gan 1652 22536 0.5679094540612517 0.6071428571428571 0.5274671636492723 38 0.9128941151595166 0.5922561736635842 0.5445247344064106 8.876214265823364 40 40 74 0.1 poverty_A CatBoostEncoder Single gan 4695 22536 0.5362087326943556 0.627689030883919 0.5274671636492723 38 0.891289713449121 0.6112995961809725 0.5787338786848135 9.212333679199219 40 40 41 0.25 poverty_A CatBoostEncoder Single gan 11268 22536 0.5154419595314164 0.6769613063542776 0.5274671636492723 38 0.8806414626978063 0.7688883144925891 0.5688070955325766 10.436711311340332 40 40 42 0.5 poverty_A CatBoostEncoder Single gan 19719 22536 0.5154419595314164 0.7230082661392565 0.5274671636492723 38 0.8759691599411358 0.8052530370215738 0.5569678295071181 13.256612777709961 40 40 10 0.75 poverty_A CatBoostEncoder Single sample_original 788 22536 0.5619174434087882 0.5355329949238579 0.5274671636492723 38 0.9429218068418079 0.527533157654028 0.5362147347976903 8.915942430496216 40 40 135 0.05 poverty_A CatBoostEncoder Single sample_original 1652 22536 0.5679094540612517 0.5163438256658596 0.5274671636492723 38 0.9487247794533682 0.5118483671218681 0.49198515068132703 8.978588819503784 40 40 82 0.1 poverty_A CatBoostEncoder Single sample_original 4695 22536 0.5362087326943556 0.5033013844515442 0.5274671636492723 38 0.8632332457785014 0.5921758366469347 0.6177291359538557 8.948752880096436 40 40 44 0.25 poverty_A CatBoostEncoder Single sample_original 11268 22536 0.5154419595314164 0.5195243166489173 0.5274671636492723 38 0.7676107600906276 0.6234098148367526 0.6841640681225339 11.036270380020142 40 40 68 0.5 poverty_A CatBoostEncoder Single sample_original 19719 22536 0.5154419595314164 0.5316699629798671 0.5274671636492723 38 0.7549028313503439 0.5012396290200846 0.4823346055754006 14.260282754898071 40 40 58 0.75 credit CatBoostEncoder Single None 6150 184507 0.07788617886178861 0.07788617886178861 0.08026253746470324 18 0.9527241954477089 0.7323328624969723 0.7206022513811922 13.163346529006958 120 120 34 0.05 credit CatBoostEncoder Single None 12300 184507 0.07707317073170732 0.07707317073170732 0.08026253746470324 18 0.93940969341188 0.7321126469942714 0.727353023208482 14.704874038696289 120 120 60 0.1 credit CatBoostEncoder Single None 30751 184507 0.08012747552925108 0.08012747552925108 0.08026253746470324 18 0.8619422979468002 0.7307417093245144 0.7347498739187317 18.71873188018799 120 120 66 0.25 credit CatBoostEncoder Single None 61502 184507 0.08012747552925108 0.08012747552925108 0.08026253746470324 18 0.8156249961470617 0.7276302952342422 0.7347198003949358 26.168806552886963 120 120 74 0.5 credit CatBoostEncoder Single None 92253 184507 0.08095129697679208 0.08095129697679208 0.08026253746470324 18 0.8201713878566016 0.7397918520907603 0.7438959238341907 34.938451051712036 120 120 113 0.75 credit CatBoostEncoder Single gan 6457 184507 0.07788617886178861 0.07820969490475453 0.08026253746470324 18 0.9764313232501689 0.7512394460240639 0.7233483986540664 13.694202423095703 120 120 62 0.05 credit CatBoostEncoder Single gan 13530 184507 0.07707317073170732 0.07612712490761271 0.08026253746470324 18 0.9492452184466019 0.7380827184466019 0.7251976787296043 14.91127061843872 120 120 67 0.1 credit CatBoostEncoder Single gan 38438 184507 0.08012747552925108 0.08106561215463864 0.08026253746470324 18 0.9090391347620926 0.754624152577333 0.7350776851368745 22.562947273254395 120 120 124 0.25 credit CatBoostEncoder Single gan 92253 184507 0.08012747552925108 0.08194855451855224 0.08026253746470324 18 0.9420176537916681 0.7938256531874146 0.7389970416524646 53.786041021347046 120 120 433 0.5 credit CatBoostEncoder Single gan 161442 184507 0.08095129697679208 0.08093928469667125 0.08026253746470324 18 0.9773945217063078 0.831071104961706 0.7412463491556259 205.97851586341858 120 120 1701 0.75 credit CatBoostEncoder Single sample_original 6457 184507 0.07788617886178861 0.07882917763667338 0.08026253746470324 18 0.9632578345100518 0.7369329014193641 0.7176956499719532 13.45695972442627 120 120 74 0.05 credit CatBoostEncoder Single sample_original 13530 184507 0.07707317073170732 0.07723577235772358 0.08026253746470324 18 0.9563164074401242 0.7443696071649616 0.7271938929573681 16.719157934188843 120 120 100 0.1 credit CatBoostEncoder Single sample_original 38438 184507 0.08012747552925108 0.08124772360684739 0.08026253746470324 18 0.9243948541074898 0.7622272437440326 0.7365072545915403 25.5328631401062 120 120 198 0.25 credit CatBoostEncoder Single sample_original 92253 184507 0.08012747552925108 0.08205695207743921 0.08026253746470324 18 0.9810895339132031 0.8042303392590467 0.7370427261844282 79.69111585617065 120 120 844 0.5 credit CatBoostEncoder Single sample_original 161442 184507 0.08095129697679208 0.08109413907161706 0.08026253746470324 18 0.9687607131301714 0.8255935205394949 0.742136276798759 141.1157841682434 120 120 1042 0.75 taxi CatBoostEncoder Single None 17851 535535 0.561313091703546 0.561313091703546 0.8227697536108751 5 0.7615306475536557 0.646381333555182 0.5250318412788527 4.8244500160217285 7 7 29 0.05 taxi CatBoostEncoder Single None 35702 535535 0.4692454204246261 0.4692454204246261 0.8227697536108751 5 0.8141689234410135 0.7586013081249271 0.5155964532845364 5.683969020843506 7 7 30 0.1 taxi CatBoostEncoder Single None 89255 535535 0.5131253151083973 0.5131253151083973 0.8227697536108751 5 0.7451712701819895 0.7748186166915605 0.543891241982895 8.106499910354614 7 7 15 0.25 taxi CatBoostEncoder Single None 178511 535535 0.533126810112542 0.533126810112542 0.8227697536108751 5 0.7613935320974424 0.728291886604595 0.5629126746936868 20.373082399368286 7 7 109 0.5 taxi CatBoostEncoder Single None 267766 535535 0.5815226727814584 0.5815226727814584 0.8227697536108751 5 0.719079048652581 0.6419974904886212 0.49650558457388094 20.892715215682983 7 7 48 0.75 taxi CatBoostEncoder Single gan 18743 535535 0.561313091703546 0.5641572853865443 0.8227697536108751 5 0.7598714244280431 0.5914784556920778 0.48656500218380583 5.255659580230713 7 7 29 0.05 taxi CatBoostEncoder Single gan 39272 535535 0.4692454204246261 0.47787227541250765 0.8227697536108751 5 0.8336661476148247 0.7698562281858764 0.4912398915266225 8.154317140579224 7 7 76 0.1 taxi CatBoostEncoder Single gan 111568 535535 0.5131253151083973 0.48767567761365266 0.8227697536108751 5 0.7911678584412571 0.7797101169322348 0.5265006448716775 11.239099025726318 7 7 50 0.25 taxi CatBoostEncoder Single gan 267766 535535 0.533126810112542 0.6559085171380982 0.8227697536108751 5 0.8660098515755502 0.8456732827961997 0.5373428720240516 20.924078226089478 7 7 60 0.5 taxi CatBoostEncoder Single gan 468590 535535 0.5815226727814584 0.6128193089908022 0.8227697536108751 5 0.825626069418726 0.7902174878641041 0.526980184147693 40.348939657211304 7 7 96 0.75 taxi CatBoostEncoder Single sample_original 18743 535535 0.561313091703546 0.5562610041082003 0.8227697536108751 5 0.7675420142171343 0.639305055797575 0.5118678397122456 5.168023109436035 7 7 38 0.05 taxi CatBoostEncoder Single sample_original 39272 535535 0.4692454204246261 0.43649419433693215 0.8227697536108751 5 0.8273389418647688 0.8436326989449704 0.5470727547432738 7.189561367034912 7 7 66 0.1 taxi CatBoostEncoder Single sample_original 111568 535535 0.5131253151083973 0.42115122615803813 0.8227697536108751 5 0.8203346240505904 0.7872740574701714 0.5564292427170119 12.47060513496399 7 7 79 0.25 taxi CatBoostEncoder Single sample_original 267766 535535 0.533126810112542 0.3864232202744187 0.8227697536108751 5 0.7782898628462955 0.7787353721670882 0.5418087488008634 17.32105803489685 7 7 17 0.5 taxi CatBoostEncoder Single sample_original 468590 535535 0.5815226727814584 0.4923237798501889 0.8227697536108751 5 0.7478875643555635 0.7609802109811412 0.5445782397760078 28.39053201675415 7 7 27 0.75 ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/run_experiment.py ================================================ import time import numpy as np import pandas as pd from sklearn.metrics import roc_auc_score from sklearn.model_selection import train_test_split from tqdm import tqdm from model import Model from utils import save_exp_to_file, extend_gan_train, extend_from_original def execute_experiment(dataset_name, encoders_list, validation_type, sample_type=None): dataset_pth = f"./data/{dataset_name}/{dataset_name}.gz" results = {} # load processed dataset data = pd.read_csv(dataset_pth) data.fillna(data.mean(), inplace=True) for train_prop_size in [0.05, 0.1, 0.25, 0.5, 0.75]: # make train-test split cat_cols = [col for col in data.columns if col.startswith("cat")] X_train, X_test, y_train, y_test = train_test_split( data.drop("target", axis=1), data["target"], test_size=0.6, shuffle=False, random_state=42, ) X_test, y_test = X_test.reset_index(drop=True), y_test.reset_index(drop=True) train_size = X_train.shape[0] X_train = X_train.head(int(train_size * train_prop_size)).reset_index(drop=True) y_train = y_train.head(int(train_size * train_prop_size)).reset_index(drop=True) mean_target_before_sampling_train = np.mean(y_train) if train_prop_size == 1: continue elif sample_type == "gan": X_train, y_train = extend_gan_train( X_train, y_train, X_test, cat_cols, epochs=500, gen_x_times=train_prop_size, ) elif sample_type == "sample_original": X_train, y_train = extend_from_original( X_train, y_train, X_test, cat_cols, gen_x_times=train_prop_size ) y_train, y_test = y_train, y_test for encoders_tuple in encoders_list: print( f"\n{encoders_tuple}, {dataset_name}, train size {int(100 * train_prop_size)}%, " f"validation_type {validation_type}, sample_type {sample_type}" ) time_start = time.time() # train models lgb_model = Model( cat_validation=validation_type, encoders_names=encoders_tuple, cat_cols=cat_cols, ) train_score, val_score, avg_num_trees = lgb_model.fit(X_train, y_train) y_hat, test_features = lgb_model.predict(X_test) # check score test_score = roc_auc_score(y_test, y_hat) time_end = time.time() # write and save results results = { "dataset_name": dataset_name, "Encoder": encoders_tuple[0], "validation_type": validation_type, "sample_type": sample_type, "train_shape": X_train.shape[0], "test_shape": X_test.shape[0], "mean_target_before_sampling_train": mean_target_before_sampling_train, "mean_target_after_sampling_train": np.mean(y_train), "mean_target_test": np.mean(y_test), "num_cat_cols": len(cat_cols), "train_score": train_score, "val_score": val_score, "test_score": test_score, "time": time_end - time_start, "features_before_encoding": X_train.shape[1], "features_after_encoding": test_features, "avg_tress_number": avg_num_trees, "train_prop_size": train_prop_size, } save_exp_to_file(dic=results, path=f"./results/fit_predict_scores.txt") if __name__ == "__main__": encoders_list = [("CatBoostEncoder",)] dataset_list = [ "telecom", "adult", "employee", "mortgages", "poverty_A", "credit", "taxi", ] # "kick","kdd_upselling" for dataset_name in tqdm(dataset_list): validation_type = "Single" execute_experiment(dataset_name, encoders_list, validation_type) execute_experiment( dataset_name, encoders_list, validation_type, sample_type="gan" ) execute_experiment( dataset_name, encoders_list, validation_type, sample_type="sample_original" ) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/GAN-for-tabular-data/utils.py ================================================ import gc from typing import List import numpy as np import pandas as pd from ctgan import CTGANSynthesizer from sklearn.model_selection import StratifiedKFold from model import Model def save_dict_to_file(dic: dict, path: str, save_raw=False) -> None: """ Save dict values into txt file :param dic: Dict with values :param path: Path to .txt file :return: None """ f = open(path, "w") if save_raw: f.write(str(dic)) else: for k, v in dic.items(): f.write(str(k)) f.write(str(v)) f.write("\n\n") f.close() def save_exp_to_file(dic: dict, path: str) -> None: """ Save dict values into txt file :param dic: Dict with values :param path: Path to .txt file :return: None """ f = open(path, "a+") keys = dic.keys() vals = [str(val) for val in dic.values()] if f.tell() == 0: header = "\t".join(keys) f.write(header + "\n") row = "\t".join(vals) f.write(row + "\n") f.close() def cat_cols_info( X_train: pd.DataFrame, X_test: pd.DataFrame, cat_cols: List[str] ) -> dict: """ Get the main info about cat columns in dataframe, i.e. num of values, uniqueness :param X_train: Train dataframe :param X_test: Test dataframe :param cat_cols: List of categorical columns :return: Dict with results """ cc_info = {} for col in cat_cols: train_values = set(X_train[col]) number_of_new_test = len(set(X_test[col]) - train_values) fraction_of_new_test = np.mean( X_test[col].apply(lambda v: v not in train_values) ) cc_info[col] = { "num_uniq_train": X_train[col].nunique(), "num_uniq_test": X_test[col].nunique(), "number_of_new_test": number_of_new_test, "fraction_of_new_test": fraction_of_new_test, } return cc_info def adversarial_test(left_df, right_df, cat_cols): """ Trains adversarial model to distinguish train from test :param left_df: dataframe :param right_df: dataframe :param cat_cols: List of categorical columns :return: trained model """ # sample to shuffle the data left_df = left_df.copy().sample(frac=1).reset_index(drop=True) right_df = right_df.copy().sample(frac=1).reset_index(drop=True) left_df = left_df.head(right_df.shape[0]) right_df = right_df.head(left_df.shape[0]) left_df["gt"] = 0 right_df["gt"] = 1 concated = pd.concat([left_df, right_df]) lgb_model = Model( cat_validation="Single", encoders_names=("OrdinalEncoder",), cat_cols=cat_cols, model_validation=StratifiedKFold(n_splits=3, shuffle=True, random_state=42), model_params={ "metrics": "AUC", "max_depth": 2, "max_bin": 100, "n_estimators": 500, "learning_rate": 0.02, "random_state": 42, }, ) train_score, val_score, avg_num_trees = lgb_model.fit( concated.drop("gt", axis=1), concated["gt"] ) print( "ROC AUC adversarial: train %.2f%% val %.2f%%" % (train_score * 100.0, val_score * 100.0) ) return lgb_model def extend_gan_train(x_train, y_train, x_test, cat_cols, gen_x_times=1.2, epochs=300): """ Extends train by generating new data by GAN :param x_train: train dataframe :param y_train: target for train dataframe :param x_test: dataframe :param cat_cols: List of categorical columns :param gen_x_times: Factor for which initial dataframe should be increased :param cat_cols: List of categorical columns :param epochs: Number of epoch max to train the GAN :return: extended train with target """ if gen_x_times == 0: raise ValueError("Passed gen_x_times with value 0!") x_train["target"] = y_train x_test_bigger = int(1.1 * x_test.shape[0] / x_train.shape[0]) ctgan = CTGANSynthesizer() ctgan.fit(x_train, cat_cols, epochs=epochs) generated_df = ctgan.sample((x_test_bigger) * x_train.shape[0]) data_dtype = x_train.dtypes.values for i in range(len(generated_df.columns)): generated_df[generated_df.columns[i]] = generated_df[ generated_df.columns[i] ].astype(data_dtype[i]) generated_df = pd.concat( [ x_train.sample(frac=(x_test_bigger), replace=True, random_state=42), generated_df, ] ).reset_index(drop=True) num_cols = [] for col in x_train.columns: if "num" in col: num_cols.append(col) for num_col in num_cols: min_val = x_test[num_col].quantile(0.02) max_val = x_test[num_col].quantile(0.98) generated_df = generated_df.loc[ (generated_df[num_col] >= min_val) & (generated_df[num_col] <= max_val) ] generated_df = generated_df.reset_index(drop=True) ad_model = adversarial_test(x_test, generated_df.drop("target", axis=1), cat_cols) generated_df["test_similarity"] = ad_model.predict( generated_df.drop("target", axis=1), return_shape=False ) generated_df.sort_values("test_similarity", ascending=False, inplace=True) generated_df = generated_df.head(int(gen_x_times * x_train.shape[0])) x_train = pd.concat( [x_train, generated_df.drop("test_similarity", axis=1)], axis=0 ).reset_index(drop=True) del generated_df gc.collect() return x_train.drop("target", axis=1), x_train["target"] def extend_from_original(x_train, y_train, x_test, cat_cols, gen_x_times=1.2): """ Extends train by generating new data by GAN :param x_train: train dataframe :param y_train: target for train dataframe :param x_test: dataframe :param cat_cols: List of categorical columns :param gen_x_times: Factor for which initial dataframe should be increased :param cat_cols: List of categorical columns :return: extended train with target """ if gen_x_times == 0: raise ValueError("Passed gen_x_times with value 0!") x_train["target"] = y_train x_test_bigger = int(1.1 * x_test.shape[0] / x_train.shape[0]) generated_df = x_train.sample(frac=x_test_bigger, replace=True, random_state=42) num_cols = [] for col in x_train.columns: if "num" in col: num_cols.append(col) for num_col in num_cols: min_val = x_test[num_col].quantile(0.02) max_val = x_test[num_col].quantile(0.98) generated_df = generated_df.loc[ (generated_df[num_col] >= min_val) & (generated_df[num_col] <= max_val) ] generated_df = generated_df.reset_index(drop=True) ad_model = adversarial_test(x_test, generated_df.drop("target", axis=1), cat_cols) generated_df["test_similarity"] = ad_model.predict( generated_df.drop("target", axis=1), return_shape=False ) generated_df.sort_values("test_similarity", ascending=False, inplace=True) generated_df = generated_df.head(int(gen_x_times * x_train.shape[0])) x_train = pd.concat( [x_train, generated_df.drop("test_similarity", axis=1)], axis=0 ).reset_index(drop=True) del generated_df gc.collect() return x_train.drop("target", axis=1), x_train["target"] ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/CGAN/ConditionalGAN.py ================================================ #!/usr/bin/env python # coding: utf-8 # # Implementation of Conditional GANs # Reference: https://arxiv.org/pdf/1411.1784.pdf # https://github.com/Yangyangii/GAN-Tutorial/blob/master/MNIST/Conditional-GAN.ipynb # In[ ]: # Run the comment below only when using Google Colab # !pip install torch torchvision # In[1]: import torch import torchvision import torch.nn as nn import torch.nn.functional as F # In[2]: from torch.utils.data import DataLoader from torchvision import datasets from torchvision import transforms from torchvision.utils import save_image # In[3]: import numpy as np import datetime import os, sys # In[4]: from matplotlib.pyplot import imshow, imsave get_ipython().run_line_magic("matplotlib", "inline") # In[5]: MODEL_NAME = "ConditionalGAN" DEVICE = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") # In[6]: def to_onehot(x, num_classes=10): assert isinstance(x, int) or isinstance( x, (torch.LongTensor, torch.cuda.LongTensor) ) if isinstance(x, int): c = torch.zeros(1, num_classes).long() c[0][x] = 1 else: x = x.cpu() c = torch.LongTensor(x.size(0), num_classes) c.zero_() c.scatter_(1, x, 1) # dim, index, src value return c # In[7]: def get_sample_image(G, n_noise=100): """ save sample 100 images """ img = np.zeros([280, 280]) for j in range(10): c = torch.zeros([10, 10]).to(DEVICE) c[:, j] = 1 z = torch.randn(10, n_noise).to(DEVICE) y_hat = G(z, c).view(10, 28, 28) result = y_hat.cpu().data.numpy() img[j * 28 : (j + 1) * 28] = np.concatenate([x for x in result], axis=-1) return img # In[8]: class Discriminator(nn.Module): """ Simple Discriminator w/ MLP """ def __init__(self, input_size=784, condition_size=10, num_classes=1): super(Discriminator, self).__init__() self.layer = nn.Sequential( nn.Linear(input_size + condition_size, 512), nn.LeakyReLU(0.2), nn.Linear(512, 256), nn.LeakyReLU(0.2), nn.Linear(256, num_classes), nn.Sigmoid(), ) def forward(self, x, c): x, c = x.view(x.size(0), -1), c.view(c.size(0), -1).float() v = torch.cat((x, c), 1) # v: [input, label] concatenated vector y_ = self.layer(v) return y_ # In[9]: class Generator(nn.Module): """ Simple Generator w/ MLP """ def __init__(self, input_size=100, condition_size=10, num_classes=784): super(Generator, self).__init__() self.layer = nn.Sequential( nn.Linear(input_size + condition_size, 128), nn.LeakyReLU(0.2), nn.Linear(128, 256), nn.BatchNorm1d(256), nn.LeakyReLU(0.2), nn.Linear(256, 512), nn.BatchNorm1d(512), nn.LeakyReLU(0.2), nn.Linear(512, 1024), nn.BatchNorm1d(1024), nn.LeakyReLU(0.2), nn.Linear(1024, num_classes), nn.Tanh(), ) def forward(self, x, c): x, c = x.view(x.size(0), -1), c.view(c.size(0), -1).float() v = torch.cat((x, c), 1) # v: [input, label] concatenated vector y_ = self.layer(v) y_ = y_.view(x.size(0), 1, 28, 28) return y_ # In[10]: D = Discriminator().to(DEVICE) G = Generator().to(DEVICE) # In[11]: transform = transforms.Compose( [transforms.ToTensor(), transforms.Normalize(mean=[0.5], std=[0.5])] ) # In[12]: mnist = datasets.MNIST(root="../data/", train=True, transform=transform, download=True) # In[13]: batch_size = 64 condition_size = 10 # In[14]: data_loader = DataLoader( dataset=mnist, batch_size=batch_size, shuffle=True, drop_last=True ) # In[15]: criterion = nn.BCELoss() D_opt = torch.optim.Adam(D.parameters(), lr=0.0002, betas=(0.5, 0.999)) G_opt = torch.optim.Adam(G.parameters(), lr=0.0002, betas=(0.5, 0.999)) # In[16]: max_epoch = 30 # need more than 100 epochs for training generator step = 0 n_critic = 1 # for training more k steps about Discriminator n_noise = 100 # In[17]: D_labels = torch.ones([batch_size, 1]).to(DEVICE) # Discriminator Label to real D_fakes = torch.zeros([batch_size, 1]).to(DEVICE) # Discriminator Label to fake # In[18]: if not os.path.exists("samples"): os.makedirs("samples") # In[19]: for epoch in range(max_epoch): for idx, (images, labels) in enumerate(data_loader): # Training Discriminator x = images.to(DEVICE) y = labels.view(batch_size, 1) y = to_onehot(y).to(DEVICE) x_outputs = D(x, y) D_x_loss = criterion(x_outputs, D_labels) z = torch.randn(batch_size, n_noise).to(DEVICE) z_outputs = D(G(z, y), y) D_z_loss = criterion(z_outputs, D_fakes) D_loss = D_x_loss + D_z_loss D.zero_grad() D_loss.backward() D_opt.step() if step % n_critic == 0: # Training Generator z = torch.randn(batch_size, n_noise).to(DEVICE) z_outputs = D(G(z, y), y) G_loss = criterion(z_outputs, D_labels) G.zero_grad() G_loss.backward() G_opt.step() if step % 500 == 0: print( "Epoch: {}/{}, Step: {}, D Loss: {}, G Loss: {}".format( epoch, max_epoch, step, D_loss.item(), G_loss.item() ) ) if step % 1000 == 0: G.eval() img = get_sample_image(G, n_noise) imsave( "samples/{}_step{}.jpg".format(MODEL_NAME, str(step).zfill(3)), img, cmap="gray", ) G.train() step += 1 # ## Sample # In[22]: # generation to image G.eval() imshow(get_sample_image(G, n_noise), cmap="gray") # In[40]: def save_checkpoint(state, file_name="checkpoint.pth.tar"): torch.save(state, file_name) # In[41]: # Saving params. save_checkpoint( {"epoch": epoch + 1, "state_dict": D.state_dict(), "optimizer": D_opt.state_dict()}, "D_c.pth.tar", ) save_checkpoint( {"epoch": epoch + 1, "state_dict": G.state_dict(), "optimizer": G_opt.state_dict()}, "G_c.pth.tar", ) # In[ ]: ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/DCGAN/dcgan.py ================================================ #!/usr/bin/env python # coding: utf-8 # In[1]: # reference https://pytorch.org/tutorials/beginner/dcgan_faces_tutorial.html from __future__ import print_function #%matplotlib inline import argparse import os import random import torch import torch.nn as nn import torch.nn.parallel import torch.backends.cudnn as cudnn import torch.optim as optim import torch.utils.data import torchvision.datasets as dset import torchvision.transforms as transforms import torchvision.utils as vutils import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation from IPython.display import HTML # Set random seed for reproducibility manualSeed = 999 #manualSeed = random.randint(1, 10000) # use if you want new results print("Random Seed: ", manualSeed) random.seed(manualSeed) torch.manual_seed(manualSeed) # In[16]: os.listdir(dataroot) # In[19]: # Root directory for dataset dataroot = "./data/celeba/" # Number of workers for dataloader workers = 2 # Batch size during training batch_size = 128 # Spatial size of training images. All images will be resized to this # size using a transformer. image_size = 64 # Number of channels in the training images. For color images this is 3 nc = 3 # Size of z latent vector (i.e. size of generator input) nz = 100 # Size of feature maps in generator ngf = 64 # Size of feature maps in discriminator ndf = 64 # Number of training epochs num_epochs = 5 # Learning rate for optimizers lr = 0.0002 # Beta1 hyperparam for Adam optimizers beta1 = 0.5 # Number of GPUs available. Use 0 for CPU mode. ngpu = 1 # In[20]: dataset = dset.ImageFolder(root=dataroot, transform=transforms.Compose([ transforms.Resize(image_size), transforms.CenterCrop(image_size), transforms.ToTensor(), transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)), ])) # Create the dataloader dataloader = torch.utils.data.DataLoader(dataset, batch_size=batch_size, shuffle=True, num_workers=workers) # Decide which device we want to run on device = torch.device("cuda:0" if (torch.cuda.is_available() and ngpu > 0) else "cpu") # Plot some training images real_batch = next(iter(dataloader)) plt.figure(figsize=(8,8)) plt.axis("off") plt.title("Training Images") plt.imshow(np.transpose(vutils.make_grid(real_batch[0].to(device)[:64], padding=2, normalize=True).cpu(),(1,2,0))) # In[21]: # custom weights initialization called on netG and netD def weights_init(m): classname = m.__class__.__name__ if classname.find('Conv') != -1: nn.init.normal_(m.weight.data, 0.0, 0.02) elif classname.find('BatchNorm') != -1: nn.init.normal_(m.weight.data, 1.0, 0.02) nn.init.constant_(m.bias.data, 0) # In[24]: # Generator Code class Generator(nn.Module): def __init__(self, ngpu): super(Generator, self).__init__() self.ngpu = ngpu self.main = nn.Sequential( # input is Z, going into a convolution nn.ConvTranspose2d( nz, ngf * 8, 4, 1, 0, bias=False), nn.BatchNorm2d(ngf * 8), nn.ReLU(True), # state size. (ngf*8) x 4 x 4 nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 4), nn.ReLU(True), # state size. (ngf*4) x 8 x 8 nn.ConvTranspose2d( ngf * 4, ngf * 2, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 2), nn.ReLU(True), # state size. (ngf*2) x 16 x 16 nn.ConvTranspose2d( ngf * 2, ngf, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf), nn.ReLU(True), # state size. (ngf) x 32 x 32 nn.ConvTranspose2d( ngf, nc, 4, 2, 1, bias=False), nn.Tanh() # state size. (nc) x 64 x 64 ) def forward(self, input): return self.main(input) # Create the generator netG = Generator(ngpu).to(device) # Handle multi-gpu if desired if (device.type == 'cuda') and (ngpu > 1): netG = nn.DataParallel(netG, list(range(ngpu))) # Apply the weights_init function to randomly initialize all weights # to mean=0, stdev=0.2. netG.apply(weights_init) # Print the model print(netG) # In[26]: # Discriminator class Discriminator(nn.Module): def __init__(self, ngpu): super(Discriminator, self).__init__() self.ngpu = ngpu self.main = nn.Sequential( # input is (nc) x 64 x 64 nn.Conv2d(nc, ndf, 4, 2, 1, bias=False), nn.LeakyReLU(0.2, inplace=True), # state size. (ndf) x 32 x 32 nn.Conv2d(ndf, ndf * 2, 4, 2, 1, bias=False), nn.BatchNorm2d(ndf * 2), nn.LeakyReLU(0.2, inplace=True), # state size. (ndf*2) x 16 x 16 nn.Conv2d(ndf * 2, ndf * 4, 4, 2, 1, bias=False), nn.BatchNorm2d(ndf * 4), nn.LeakyReLU(0.2, inplace=True), # state size. (ndf*4) x 8 x 8 nn.Conv2d(ndf * 4, ndf * 8, 4, 2, 1, bias=False), nn.BatchNorm2d(ndf * 8), nn.LeakyReLU(0.2, inplace=True), # state size. (ndf*8) x 4 x 4 nn.Conv2d(ndf * 8, 1, 4, 1, 0, bias=False), nn.Sigmoid() ) def forward(self, input): return self.main(input) # Create the Discriminator netD = Discriminator(ngpu).to(device) # Handle multi-gpu if desired if (device.type == 'cuda') and (ngpu > 1): netD = nn.DataParallel(netD, list(range(ngpu))) # Apply the weights_init function to randomly initialize all weights # to mean=0, stdev=0.2. netD.apply(weights_init) # Print the model print(netD) # In[27]: # Initialize BCELoss function criterion = nn.BCELoss() # Create batch of latent vectors that we will use to visualize # the progression of the generator fixed_noise = torch.randn(64, nz, 1, 1, device=device) # Establish convention for real and fake labels during training real_label = 1 fake_label = 0 # Setup Adam optimizers for both G and D optimizerD = optim.Adam(netD.parameters(), lr=lr, betas=(beta1, 0.999)) optimizerG = optim.Adam(netG.parameters(), lr=lr, betas=(beta1, 0.999)) # * Loss_D - discriminator loss calculated as the sum of losses for the all real and all fake batches (log(D(x))+log(D(G(z)))). # * Loss_G - generator loss calculated as log(D(G(z))) # * D(x) - the average output (across the batch) of the discriminator for the all real batch. This should start close to 1 then theoretically converge to 0.5 when G gets better. Think about why this is. # * D(G(z)) - average discriminator outputs for the all fake batch. The first number is before D is updated and the second number is after D is updated. These numbers should start near 0 and converge to 0.5 as G gets better. Think about why this is. # In[28]: # Training Loop # Lists to keep track of progress img_list = [] G_losses = [] D_losses = [] iters = 0 print("Starting Training Loop...") # For each epoch for epoch in range(num_epochs): # For each batch in the dataloader for i, data in enumerate(dataloader, 0): ############################ # (1) Update D network: maximize log(D(x)) + log(1 - D(G(z))) ########################### ## Train with all-real batch netD.zero_grad() # Format batch real_cpu = data[0].to(device) b_size = real_cpu.size(0) label = torch.full((b_size,), real_label, device=device) # Forward pass real batch through D output = netD(real_cpu).view(-1) # Calculate loss on all-real batch errD_real = criterion(output, label) # Calculate gradients for D in backward pass errD_real.backward() D_x = output.mean().item() ## Train with all-fake batch # Generate batch of latent vectors noise = torch.randn(b_size, nz, 1, 1, device=device) # Generate fake image batch with G fake = netG(noise) label.fill_(fake_label) # Classify all fake batch with D output = netD(fake.detach()).view(-1) # Calculate D's loss on the all-fake batch errD_fake = criterion(output, label) # Calculate the gradients for this batch errD_fake.backward() D_G_z1 = output.mean().item() # Add the gradients from the all-real and all-fake batches errD = errD_real + errD_fake # Update D optimizerD.step() ############################ # (2) Update G network: maximize log(D(G(z))) ########################### netG.zero_grad() label.fill_(real_label) # fake labels are real for generator cost # Since we just updated D, perform another forward pass of all-fake batch through D output = netD(fake).view(-1) # Calculate G's loss based on this output errG = criterion(output, label) # Calculate gradients for G errG.backward() D_G_z2 = output.mean().item() # Update G optimizerG.step() # Output training stats if i % 50 == 0: print('[%d/%d][%d/%d]\tLoss_D: %.4f\tLoss_G: %.4f\tD(x): %.4f\tD(G(z)): %.4f / %.4f' % (epoch, num_epochs, i, len(dataloader), errD.item(), errG.item(), D_x, D_G_z1, D_G_z2)) # Save Losses for plotting later G_losses.append(errG.item()) D_losses.append(errD.item()) # Check how the generator is doing by saving G's output on fixed_noise if (iters % 500 == 0) or ((epoch == num_epochs-1) and (i == len(dataloader)-1)): with torch.no_grad(): fake = netG(fixed_noise).detach().cpu() img_list.append(vutils.make_grid(fake, padding=2, normalize=True)) iters += 1 # In[29]: plt.figure(figsize=(10,5)) plt.title("Generator and Discriminator Loss During Training") plt.plot(G_losses,label="G") plt.plot(D_losses,label="D") plt.xlabel("iterations") plt.ylabel("Loss") plt.legend() plt.show() # In[30]: #%%capture fig = plt.figure(figsize=(8,8)) plt.axis("off") ims = [[plt.imshow(np.transpose(i,(1,2,0)), animated=True)] for i in img_list] ani = animation.ArtistAnimation(fig, ims, interval=1000, repeat_delay=1000, blit=True) HTML(ani.to_jshtml()) # In[32]: # Grab a batch of real images from the dataloader real_batch = next(iter(dataloader)) # Plot the real images plt.figure(figsize=(15,15)) plt.subplot(1,2,1) plt.axis("off") plt.title("Real Images") plt.imshow(np.transpose(vutils.make_grid(real_batch[0].to(device)[:64], padding=5, normalize=True).cpu(),(1,2,0))) # Plot the fake images from the last epoch plt.subplot(1,2,2) plt.axis("off") plt.title("Fake Images") plt.imshow(np.transpose(img_list[-1],(1,2,0))) plt.show() # Where to Go Next # We have reached the end of our journey, but there are several places you could go from here. You could: # # Train for longer to see how good the results get # Modify this model to take a different dataset and possibly change the size of the images and the model architecture # Check out some other cool GAN projects here # Create GANs that generate music ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/README.md ================================================ reference code and repo https://github.com/odegeasslbc/Progressive-GAN-pytorch # Progressive-GAN-pytorch A pytorch implementation of Progressive-GAN that is actually works, readable and simple to customize ## Description I simplify the code of training a Progressive-GAN, making it easier to read and customize, for the purpose of research. This implementation is portable with minimal library dependency (only torch and torchvision) and just 2 code modules. In the code, you can easily modeify the training-schema, the loss function, and the network structure, etc. The key contributions in the paper: 1. progressively growing og GAN, 2. minibatch std on Discriminator, 3. pixel-norm on Generator, 4. equalized learning rate; are all implemented. Enjoy the benefit of the progressive-growing infrastructure and port it to your own research and product! ## How to run To start a training, just run: ``` python train.py --path /path/to/image-folder ``` An example with more configuration can be: ``` python train.py --path /path/to/imagefolder --trial_name experiment-1 --z_dim 100 --channel 512 --batch_size 4 --init_step 2 --total_iter 300000 --pixel_norm --tanh ``` For a comprehensive explanation of all the parameters, run: ``` python train.py --help ``` Each new running of the code will create a new folder with the specified trail_name, all the generated images, model checkpoints and loss value loging file will be stored in this new folder. A copy of the codes that you run will also be intimately stored (because you might have modefied them). ## Dataset This code is ready for your own image datasets with the **torchvision.datasets.ImageFolder** module. Place all your images in a way like: ``` |-- |--image 1 |--image 2 ... |-- ... ``` ## Training results This code performs consistently well on various datasets I tested, I just don't bother upload them here. ## Reference 1. *Progressive Growing of GANs for Improved Quality, Stability, and Variation*, **Tero Karras** (NVIDIA), **Timo Aila** (NVIDIA), **Samuli Laine** (NVIDIA), **Jaakko Lehtinen** (NVIDIA and Aalto University) [Paper (NVIDIA research)](http://research.nvidia.com/publication/2017-10_Progressive-Growing-of) 2. This implementation is based on: https://github.com/rosinality/progressive-gan-pytorch ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/progan_modules.py ================================================ import torch from torch import nn from torch.nn import functional as F from math import sqrt class EqualLR: def __init__(self, name): self.name = name def compute_weight(self, module): weight = getattr(module, self.name + "_orig") fan_in = weight.data.size(1) * weight.data[0][0].numel() return weight * sqrt(2 / fan_in) @staticmethod def apply(module, name): fn = EqualLR(name) weight = getattr(module, name) del module._parameters[name] module.register_parameter(name + "_orig", nn.Parameter(weight.data)) module.register_forward_pre_hook(fn) return fn def __call__(self, module, input): weight = self.compute_weight(module) setattr(module, self.name, weight) def equal_lr(module, name="weight"): EqualLR.apply(module, name) return module class PixelNorm(nn.Module): def __init__(self): super().__init__() def forward(self, input): return input / torch.sqrt(torch.mean(input ** 2, dim=1, keepdim=True) + 1e-8) class EqualConv2d(nn.Module): def __init__(self, *args, **kwargs): super().__init__() conv = nn.Conv2d(*args, **kwargs) conv.weight.data.normal_() conv.bias.data.zero_() self.conv = equal_lr(conv) def forward(self, input): return self.conv(input) class EqualConvTranspose2d(nn.Module): ### additional module for OOGAN usage def __init__(self, *args, **kwargs): super().__init__() conv = nn.ConvTranspose2d(*args, **kwargs) conv.weight.data.normal_() conv.bias.data.zero_() self.conv = equal_lr(conv) def forward(self, input): return self.conv(input) class EqualLinear(nn.Module): def __init__(self, in_dim, out_dim): super().__init__() linear = nn.Linear(in_dim, out_dim) linear.weight.data.normal_() linear.bias.data.zero_() self.linear = equal_lr(linear) def forward(self, input): return self.linear(input) class ConvBlock(nn.Module): def __init__( self, in_channel, out_channel, kernel_size, padding, kernel_size2=None, padding2=None, pixel_norm=True, ): super().__init__() pad1 = padding pad2 = padding if padding2 is not None: pad2 = padding2 kernel1 = kernel_size kernel2 = kernel_size if kernel_size2 is not None: kernel2 = kernel_size2 convs = [EqualConv2d(in_channel, out_channel, kernel1, padding=pad1)] if pixel_norm: convs.append(PixelNorm()) convs.append(nn.LeakyReLU(0.1)) convs.append(EqualConv2d(out_channel, out_channel, kernel2, padding=pad2)) if pixel_norm: convs.append(PixelNorm()) convs.append(nn.LeakyReLU(0.1)) self.conv = nn.Sequential(*convs) def forward(self, input): out = self.conv(input) return out def upscale(feat): return F.interpolate(feat, scale_factor=2, mode="bilinear", align_corners=False) class Generator(nn.Module): def __init__(self, input_code_dim=128, in_channel=128, pixel_norm=True, tanh=True): super().__init__() self.input_dim = input_code_dim self.tanh = tanh self.input_layer = nn.Sequential( EqualConvTranspose2d(input_code_dim, in_channel, 4, 1, 0), PixelNorm(), nn.LeakyReLU(0.1), ) self.progression_4 = ConvBlock( in_channel, in_channel, 3, 1, pixel_norm=pixel_norm ) self.progression_8 = ConvBlock( in_channel, in_channel, 3, 1, pixel_norm=pixel_norm ) self.progression_16 = ConvBlock( in_channel, in_channel, 3, 1, pixel_norm=pixel_norm ) self.progression_32 = ConvBlock( in_channel, in_channel, 3, 1, pixel_norm=pixel_norm ) self.progression_64 = ConvBlock( in_channel, in_channel // 2, 3, 1, pixel_norm=pixel_norm ) self.progression_128 = ConvBlock( in_channel // 2, in_channel // 4, 3, 1, pixel_norm=pixel_norm ) self.progression_256 = ConvBlock( in_channel // 4, in_channel // 4, 3, 1, pixel_norm=pixel_norm ) self.to_rgb_8 = EqualConv2d(in_channel, 3, 1) self.to_rgb_16 = EqualConv2d(in_channel, 3, 1) self.to_rgb_32 = EqualConv2d(in_channel, 3, 1) self.to_rgb_64 = EqualConv2d(in_channel // 2, 3, 1) self.to_rgb_128 = EqualConv2d(in_channel // 4, 3, 1) self.to_rgb_256 = EqualConv2d(in_channel // 4, 3, 1) self.max_step = 6 def progress(self, feat, module): out = F.interpolate(feat, scale_factor=2, mode="bilinear", align_corners=False) out = module(out) return out def output(self, feat1, feat2, module1, module2, alpha): if 0 <= alpha < 1: skip_rgb = upscale(module1(feat1)) out = (1 - alpha) * skip_rgb + alpha * module2(feat2) else: out = module2(feat2) if self.tanh: return torch.tanh(out) return out def forward(self, input, step=0, alpha=-1): if step > self.max_step: step = self.max_step out_4 = self.input_layer(input.view(-1, self.input_dim, 1, 1)) out_4 = self.progression_4(out_4) out_8 = self.progress(out_4, self.progression_8) if step == 1: if self.tanh: return torch.tanh(self.to_rgb_8(out_8)) return self.to_rgb_8(out_8) out_16 = self.progress(out_8, self.progression_16) if step == 2: return self.output(out_8, out_16, self.to_rgb_8, self.to_rgb_16, alpha) out_32 = self.progress(out_16, self.progression_32) if step == 3: return self.output(out_16, out_32, self.to_rgb_16, self.to_rgb_32, alpha) out_64 = self.progress(out_32, self.progression_64) if step == 4: return self.output(out_32, out_64, self.to_rgb_32, self.to_rgb_64, alpha) out_128 = self.progress(out_64, self.progression_128) if step == 5: return self.output(out_64, out_128, self.to_rgb_64, self.to_rgb_128, alpha) out_256 = self.progress(out_128, self.progression_256) if step == 6: return self.output( out_128, out_256, self.to_rgb_128, self.to_rgb_256, alpha ) class Discriminator(nn.Module): def __init__(self, feat_dim=128): super().__init__() self.progression = nn.ModuleList( [ ConvBlock(feat_dim // 4, feat_dim // 4, 3, 1), ConvBlock(feat_dim // 4, feat_dim // 2, 3, 1), ConvBlock(feat_dim // 2, feat_dim, 3, 1), ConvBlock(feat_dim, feat_dim, 3, 1), ConvBlock(feat_dim, feat_dim, 3, 1), ConvBlock(feat_dim, feat_dim, 3, 1), ConvBlock(feat_dim + 1, feat_dim, 3, 1, 4, 0), ] ) self.from_rgb = nn.ModuleList( [ EqualConv2d(3, feat_dim // 4, 1), EqualConv2d(3, feat_dim // 4, 1), EqualConv2d(3, feat_dim // 2, 1), EqualConv2d(3, feat_dim, 1), EqualConv2d(3, feat_dim, 1), EqualConv2d(3, feat_dim, 1), EqualConv2d(3, feat_dim, 1), ] ) self.n_layer = len(self.progression) self.linear = EqualLinear(feat_dim, 1) def forward(self, input, step=0, alpha=-1): for i in range(step, -1, -1): index = self.n_layer - i - 1 if i == step: out = self.from_rgb[index](input) if i == 0: out_std = torch.sqrt(out.var(0, unbiased=False) + 1e-8) mean_std = out_std.mean() mean_std = mean_std.expand(out.size(0), 1, 4, 4) out = torch.cat([out, mean_std], 1) out = self.progression[index](out) if i > 0: # out = F.avg_pool2d(out, 2) out = F.interpolate( out, scale_factor=0.5, mode="bilinear", align_corners=False ) if i == step and 0 <= alpha < 1: # skip_rgb = F.avg_pool2d(input, 2) skip_rgb = F.interpolate( input, scale_factor=0.5, mode="bilinear", align_corners=False ) skip_rgb = self.from_rgb[index + 1](skip_rgb) out = (1 - alpha) * skip_rgb + alpha * out out = out.squeeze(2).squeeze(2) # print(input.size(), out.size(), step) out = self.linear(out) return out ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/train.py ================================================ import argparse import numpy as np import random import torch import torch.nn.functional as F from PIL import Image from progan_modules import Generator, Discriminator from torch import nn, optim from torch.autograd import Variable, grad from torch.utils.data import DataLoader from torchvision import datasets, transforms, utils from tqdm import tqdm def accumulate(model1, model2, decay=0.999): par1 = dict(model1.named_parameters()) par2 = dict(model2.named_parameters()) for k in par1.keys(): par1[k].data.mul_(decay).add_(1 - decay, par2[k].data) def imagefolder_loader(path): def loader(transform): data = datasets.ImageFolder(path, transform=transform) data_loader = DataLoader( data, shuffle=True, batch_size=batch_size, num_workers=4 ) return data_loader return loader def sample_data(dataloader, image_size=4): transform = transforms.Compose( [ transforms.Resize(image_size + int(image_size * 0.2) + 1), transforms.RandomCrop(image_size), transforms.RandomHorizontalFlip(), transforms.ToTensor(), transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)), ] ) loader = dataloader(transform) return loader def train(generator, discriminator, init_step, loader, total_iter=600000): step = init_step # can be 1 = 8, 2 = 16, 3 = 32, 4 = 64, 5 = 128, 6 = 128 data_loader = sample_data(loader, 4 * 2 ** step) dataset = iter(data_loader) # total_iter = 600000 total_iter_remain = total_iter - (total_iter // 6) * (step - 1) pbar = tqdm(range(total_iter_remain)) disc_loss_val = 0 gen_loss_val = 0 grad_loss_val = 0 from datetime import datetime import os date_time = datetime.now() post_fix = "%s_%s_%d_%d.txt" % ( trial_name, date_time.date(), date_time.hour, date_time.minute, ) log_folder = "trial_%s_%s_%d_%d" % ( trial_name, date_time.date(), date_time.hour, date_time.minute, ) os.mkdir(log_folder) os.mkdir(log_folder + "/checkpoint") os.mkdir(log_folder + "/sample") config_file_name = os.path.join(log_folder, "train_config_" + post_fix) config_file = open(config_file_name, "w") config_file.write(str(args)) config_file.close() log_file_name = os.path.join(log_folder, "train_log_" + post_fix) log_file = open(log_file_name, "w") log_file.write("g,d,nll,onehot\n") log_file.close() from shutil import copy copy("train.py", log_folder + "/train_%s.py" % post_fix) copy("progan_modules.py", log_folder + "/model_%s.py" % post_fix) alpha = 0 one = torch.tensor(1, dtype=torch.float).to(device) mone = one * -1 iteration = 0 for i in pbar: discriminator.zero_grad() alpha = min(1, (2 / (total_iter // 6)) * iteration) if iteration > total_iter // 6: alpha = 0 iteration = 0 step += 1 if step > 6: alpha = 1 step = 6 data_loader = sample_data(loader, 4 * 2 ** step) dataset = iter(data_loader) try: real_image, label = next(dataset) except (OSError, StopIteration): dataset = iter(data_loader) real_image, label = next(dataset) iteration += 1 ### 1. train Discriminator b_size = real_image.size(0) real_image = real_image.to(device) label = label.to(device) real_predict = discriminator(real_image, step=step, alpha=alpha) real_predict = real_predict.mean() - 0.001 * (real_predict ** 2).mean() real_predict.backward(mone) # sample input data: vector for Generator gen_z = torch.randn(b_size, input_code_size).to(device) fake_image = generator(gen_z, step=step, alpha=alpha) fake_predict = discriminator(fake_image.detach(), step=step, alpha=alpha) fake_predict = fake_predict.mean() fake_predict.backward(one) ### gradient penalty for D eps = torch.rand(b_size, 1, 1, 1).to(device) x_hat = eps * real_image.data + (1 - eps) * fake_image.detach().data x_hat.requires_grad = True hat_predict = discriminator(x_hat, step=step, alpha=alpha) grad_x_hat = grad(outputs=hat_predict.sum(), inputs=x_hat, create_graph=True)[0] grad_penalty = ( (grad_x_hat.view(grad_x_hat.size(0), -1).norm(2, dim=1) - 1) ** 2 ).mean() grad_penalty = 10 * grad_penalty grad_penalty.backward() grad_loss_val += grad_penalty.item() disc_loss_val += (real_predict - fake_predict).item() d_optimizer.step() ### 2. train Generator if (i + 1) % n_critic == 0: generator.zero_grad() discriminator.zero_grad() predict = discriminator(fake_image, step=step, alpha=alpha) loss = -predict.mean() gen_loss_val += loss.item() loss.backward() g_optimizer.step() accumulate(g_running, generator) if (i + 1) % 1000 == 0 or i == 0: with torch.no_grad(): images = g_running( torch.randn(5 * 10, input_code_size).to(device), step=step, alpha=alpha, ).data.cpu() utils.save_image( images, f"{log_folder}/sample/{str(i + 1).zfill(6)}.png", nrow=10, normalize=True, range=(-1, 1), ) if (i + 1) % 10000 == 0 or i == 0: try: torch.save( g_running.state_dict(), f"{log_folder}/checkpoint/{str(i + 1).zfill(6)}_g.model", ) torch.save( discriminator.state_dict(), f"{log_folder}/checkpoint/{str(i + 1).zfill(6)}_d.model", ) except: pass if (i + 1) % 500 == 0: state_msg = ( f"{i + 1}; G: {gen_loss_val / (500 // n_critic):.3f}; D: {disc_loss_val / 500:.3f};" f" Grad: {grad_loss_val / 500:.3f}; Alpha: {alpha:.3f}" ) log_file = open(log_file_name, "a+") new_line = "%.5f,%.5f\n" % ( gen_loss_val / (500 // n_critic), disc_loss_val / 500, ) log_file.write(new_line) log_file.close() disc_loss_val = 0 gen_loss_val = 0 grad_loss_val = 0 print(state_msg) # pbar.set_description(state_msg) if __name__ == "__main__": parser = argparse.ArgumentParser( description="Progressive GAN, during training, the model will learn to generate images from a low resolution, then progressively getting high resolution " ) parser.add_argument( "--path", type=str, help="path of specified dataset, should be a folder that has one or many sub image folders inside", ) parser.add_argument( "--trial_name", type=str, default="test1", help="a brief description of the training trial", ) parser.add_argument( "--gpu_id", type=int, default=0, help="0 is the first gpu, 1 is the second gpu, etc.", ) parser.add_argument( "--lr", type=float, default=0.001, help="learning rate, default is 1e-3, usually dont need to change it, you can try make it bigger, such as 2e-3", ) parser.add_argument( "--z_dim", type=int, default=128, help="the initial latent vector's dimension, can be smaller such as 64, if the dataset is not diverse", ) parser.add_argument( "--channel", type=int, default=128, help="determines how big the model is, smaller value means faster training, but less capacity of the model", ) parser.add_argument( "--batch_size", type=int, default=4, help="how many images to train together at one iteration", ) parser.add_argument( "--n_critic", type=int, default=1, help="train Dhow many times while train G 1 time", ) parser.add_argument( "--init_step", type=int, default=1, help="start from what resolution, 1 means 8x8 resolution, 2 means 16x16 resolution, ..., 6 means 256x256 resolution", ) parser.add_argument( "--total_iter", type=int, default=300000, help="how many iterations to train in total, the value is in assumption that init step is 1", ) parser.add_argument( "--pixel_norm", default=False, action="store_true", help="a normalization method inside the model, you can try use it or not depends on the dataset", ) parser.add_argument( "--tanh", default=False, action="store_true", help="an output non-linearity on the output of Generator, you can try use it or not depends on the dataset", ) args = parser.parse_args() print(str(args)) trial_name = args.trial_name device = torch.device("cuda:%d" % (args.gpu_id)) input_code_size = args.z_dim batch_size = args.batch_size n_critic = args.n_critic generator = Generator( in_channel=args.channel, input_code_dim=input_code_size, pixel_norm=args.pixel_norm, tanh=args.tanh, ).to(device) discriminator = Discriminator(feat_dim=args.channel).to(device) g_running = Generator( in_channel=args.channel, input_code_dim=input_code_size, pixel_norm=args.pixel_norm, tanh=args.tanh, ).to(device) ## you can directly load a pretrained model here generator.load_state_dict( torch.load( "/home/dex/Desktop/ml/ML-DL-scripts/DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/trial_experiment-1_2020-01-08_23_5/checkpoint/010000_g.model" ) ) g_running.load_state_dict( torch.load( "/home/dex/Desktop/ml/ML-DL-scripts/DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/trial_experiment-1_2020-01-08_23_5/checkpoint/010000_g.model" ) ) discriminator.load_state_dict( torch.load( "/home/dex/Desktop/ml/ML-DL-scripts/DEEP LEARNING/Autoencoders GANS/pytorch/ProgressiveGAN/trial_experiment-1_2020-01-08_23_5/checkpoint/010000_d.model" ) ) g_running.train(False) g_optimizer = optim.Adam(generator.parameters(), lr=args.lr, betas=(0.0, 0.99)) d_optimizer = optim.Adam(discriminator.parameters(), lr=args.lr, betas=(0.0, 0.99)) accumulate(g_running, generator, 0) loader = imagefolder_loader(args.path) train(generator, discriminator, args.init_step, loader, args.total_iter) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/Semi-supervised GAN/Datasets.py ================================================ import numpy as np import torch from torch.utils.data import TensorDataset from torchvision import datasets, transforms def MnistLabel(class_num): raw_dataset = datasets.MNIST( "../data", train=True, download=True, transform=transforms.Compose([transforms.ToTensor()]), ) class_tot = [0] * 10 data = [] labels = [] positive_tot = 0 tot = 0 perm = np.random.permutation(raw_dataset.__len__()) for i in range(raw_dataset.__len__()): datum, label = raw_dataset.__getitem__(perm[i]) if class_tot[label] < class_num: data.append(datum.numpy()) labels.append(label) class_tot[label] += 1 tot += 1 if tot >= 10 * class_num: break return TensorDataset( torch.FloatTensor(np.array(data)), torch.LongTensor(np.array(labels)) ) def MnistUnlabel(): raw_dataset = datasets.MNIST( "../data", train=True, download=True, transform=transforms.Compose([transforms.ToTensor()]), ) return raw_dataset def MnistTest(): return datasets.MNIST( "../data", train=False, download=True, transform=transforms.Compose([transforms.ToTensor()]), ) if __name__ == "__main__": print(dir(MnistTest())) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/Semi-supervised GAN/ImprovedGAN.py ================================================ # -*- coding:utf-8 -*- from __future__ import print_function import argparse import numpy as np import os import pdb import sys import tensorboardX import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim from Datasets import * from Nets import Generator, Discriminator from functional import log_sum_exp from torch.autograd import Variable from torch.utils.data import DataLoader, TensorDataset class ImprovedGAN(object): def __init__(self, G, D, labeled, unlabeled, test, args): if os.path.exists(args.savedir): print("Loading model from " + args.savedir) self.G = torch.load(os.path.join(args.savedir, "G.pkl")) self.D = torch.load(os.path.join(args.savedir, "D.pkl")) else: os.makedirs(args.savedir) self.G = G self.D = D torch.save(self.G, os.path.join(args.savedir, "G.pkl")) torch.save(self.D, os.path.join(args.savedir, "D.pkl")) self.writer = tensorboardX.SummaryWriter(log_dir=args.logdir) if args.cuda: self.G.cuda() self.D.cuda() self.labeled = labeled self.unlabeled = unlabeled self.test = test self.Doptim = optim.Adam( self.D.parameters(), lr=args.lr, betas=(args.momentum, 0.999) ) self.Goptim = optim.Adam( self.G.parameters(), lr=args.lr, betas=(args.momentum, 0.999) ) self.args = args def trainD(self, x_label, y, x_unlabel): x_label, x_unlabel, y = ( Variable(x_label), Variable(x_unlabel), Variable(y, requires_grad=False), ) if self.args.cuda: x_label, x_unlabel, y = x_label.cuda(), x_unlabel.cuda(), y.cuda() output_label, output_unlabel, output_fake = ( self.D(x_label, cuda=self.args.cuda), self.D(x_unlabel, cuda=self.args.cuda), self.D( self.G(x_unlabel.size()[0], cuda=self.args.cuda) .view(x_unlabel.size()) .detach(), cuda=self.args.cuda, ), ) logz_label, logz_unlabel, logz_fake = ( log_sum_exp(output_label), log_sum_exp(output_unlabel), log_sum_exp(output_fake), ) # log ∑e^x_i prob_label = torch.gather( output_label, 1, y.unsqueeze(1) ) # log e^x_label = x_label loss_supervised = -torch.mean(prob_label) + torch.mean(logz_label) loss_unsupervised = 0.5 * ( -torch.mean(logz_unlabel) + torch.mean(F.softplus(logz_unlabel)) + torch.mean(F.softplus(logz_fake)) # real_data: log Z/(1+Z) ) # fake_data: log 1/(1+Z) loss = loss_supervised + self.args.unlabel_weight * loss_unsupervised acc = torch.mean((output_label.max(1)[1] == y).float()) self.Doptim.zero_grad() loss.backward() self.Doptim.step() return ( loss_supervised.data.cpu().numpy(), loss_unsupervised.data.cpu().numpy(), acc, ) def trainG(self, x_unlabel): fake = self.G(x_unlabel.size()[0], cuda=self.args.cuda).view(x_unlabel.size()) mom_gen, output_fake = self.D(fake, feature=True, cuda=self.args.cuda) mom_unlabel, _ = self.D(Variable(x_unlabel), feature=True, cuda=self.args.cuda) mom_gen = torch.mean(mom_gen, dim=0) mom_unlabel = torch.mean(mom_unlabel, dim=0) loss_fm = torch.mean((mom_gen - mom_unlabel) ** 2) loss = loss_fm self.Goptim.zero_grad() self.Doptim.zero_grad() loss.backward() self.Goptim.step() return loss.data.cpu().numpy() def train(self): assert self.unlabeled.__len__() > self.labeled.__len__() assert type(self.labeled) == TensorDataset times = int(np.ceil(self.unlabeled.__len__() * 1.0 / self.labeled.__len__())) t1 = self.labeled.tensors[0].clone() t2 = self.labeled.tensors[1].clone() tile_labeled = TensorDataset(t1.repeat(times, 1, 1, 1), t2.repeat(times)) gn = 0 for epoch in range(self.args.epochs): self.G.train() self.D.train() unlabel_loader1 = DataLoader( self.unlabeled, batch_size=self.args.batch_size, shuffle=True, drop_last=True, num_workers=4, ) unlabel_loader2 = DataLoader( self.unlabeled, batch_size=self.args.batch_size, shuffle=True, drop_last=True, num_workers=4, ).__iter__() label_loader = DataLoader( tile_labeled, batch_size=self.args.batch_size, shuffle=True, drop_last=True, num_workers=4, ).__iter__() loss_supervised = loss_unsupervised = loss_gen = accuracy = 0.0 batch_num = 0 for (unlabel1, _label1) in unlabel_loader1: batch_num += 1 unlabel2, _label2 = unlabel_loader2.next() x, y = label_loader.next() if args.cuda: x, y, unlabel1, unlabel2 = ( x.cuda(), y.cuda(), unlabel1.cuda(), unlabel2.cuda(), ) ll, lu, acc = self.trainD(x, y, unlabel1) loss_supervised += ll loss_unsupervised += lu accuracy += acc lg = self.trainG(unlabel2) if epoch > 1 and lg > 1: lg = self.trainG(unlabel2) loss_gen += lg if (batch_num + 1) % self.args.log_interval == 0: print("Training: %d / %d" % (batch_num + 1, len(unlabel_loader1))) gn += 1 with torch.no_grad(): self.writer.add_scalars( "loss", { "loss_supervised": ll, "loss_unsupervised": lu, "loss_gen": lg, }, gn, ) self.writer.add_histogram( "real_feature", self.D(Variable(x), cuda=self.args.cuda, feature=True)[0], gn, ) self.writer.add_histogram( "fake_feature", self.D( self.G(self.args.batch_size, cuda=self.args.cuda), cuda=self.args.cuda, feature=True, )[0], gn, ) self.writer.add_histogram("fc3_bias", self.G.fc3.bias, gn) self.writer.add_histogram( "D_feature_weight", self.D.layers[-1].weight, gn ) self.D.train() self.G.train() loss_supervised /= batch_num loss_unsupervised /= batch_num loss_gen /= batch_num accuracy /= batch_num print( "Iteration %d, loss_supervised = %.4f, loss_unsupervised = %.4f, loss_gen = %.4f train acc = %.4f" % (epoch, loss_supervised, loss_unsupervised, loss_gen, accuracy) ) sys.stdout.flush() if (epoch + 1) % self.args.eval_interval == 0: print("Eval: correct %d / %d" % (self.eval(), self.test.__len__())) torch.save(self.G, os.path.join(args.savedir, "G.pkl")) torch.save(self.D, os.path.join(args.savedir, "D.pkl")) def predict(self, x): with torch.no_grad(): ret = torch.max(self.D(Variable(x), cuda=self.args.cuda), 1)[1].data return ret def eval(self): self.G.eval() self.D.eval() d, l = [], [] for (datum, label) in self.test: d.append(datum) l.append(label) x, y = torch.stack(d), torch.LongTensor(l) if self.args.cuda: x, y = x.cuda(), y.cuda() pred = self.predict(x) return torch.sum(pred == y) def draw(self, batch_size): self.G.eval() return self.G(batch_size, cuda=self.args.cuda) if __name__ == "__main__": parser = argparse.ArgumentParser(description="PyTorch Improved GAN") parser.add_argument( "--batch-size", type=int, default=100, metavar="N", help="input batch size for training (default: 64)", ) parser.add_argument( "--epochs", type=int, default=10, metavar="N", help="number of epochs to train (default: 10)", ) parser.add_argument( "--lr", type=float, default=0.003, metavar="LR", help="learning rate (default: 0.003)", ) parser.add_argument( "--momentum", type=float, default=0.5, metavar="M", help="SGD momentum (default: 0.5)", ) parser.add_argument( "--cuda", action="store_true", default=False, help="CUDA training" ) parser.add_argument( "--seed", type=int, default=1, metavar="S", help="random seed (default: 1)" ) parser.add_argument( "--log-interval", type=int, default=100, metavar="N", help="how many batches to wait before logging training status", ) parser.add_argument( "--eval-interval", type=int, default=1, metavar="N", help="how many epochs to wait before evaling training status", ) parser.add_argument( "--unlabel-weight", type=float, default=1, metavar="N", help="scale factor between labeled and unlabeled data", ) parser.add_argument( "--logdir", type=str, default="./logfile", metavar="LOG_PATH", help="logfile path, tensorboard format", ) parser.add_argument( "--savedir", type=str, default="./models", metavar="SAVE_PATH", help="saving path, pickle format", ) args = parser.parse_args() args.cuda = args.cuda and torch.cuda.is_available() np.random.seed(args.seed) gan = ImprovedGAN( Generator(100), Discriminator(), MnistLabel(10), MnistUnlabel(), MnistTest(), args, ) gan.train() ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/Semi-supervised GAN/Nets.py ================================================ import torch from torch.nn.parameter import Parameter from torch import nn from torch.nn import functional as F from torch.autograd import Variable import pdb from functional import reset_normal_param, LinearWeightNorm class Discriminator(nn.Module): def __init__(self, input_dim=28 ** 2, output_dim=10): super(Discriminator, self).__init__() self.input_dim = input_dim self.layers = torch.nn.ModuleList( [ LinearWeightNorm(input_dim, 1000), LinearWeightNorm(1000, 500), LinearWeightNorm(500, 250), LinearWeightNorm(250, 250), LinearWeightNorm(250, 250), ] ) self.final = LinearWeightNorm(250, output_dim, weight_scale=1) def forward(self, x, feature=False, cuda=False): x = x.view(-1, self.input_dim) noise = torch.randn(x.size()) * 0.3 if self.training else torch.Tensor([0]) if cuda: noise = noise.cuda() x = x + Variable(noise, requires_grad=False) for i in range(len(self.layers)): m = self.layers[i] x_f = F.relu(m(x)) noise = ( torch.randn(x_f.size()) * 0.5 if self.training else torch.Tensor([0]) ) if cuda: noise = noise.cuda() x = x_f + Variable(noise, requires_grad=False) if feature: return x_f, self.final(x) return self.final(x) class Generator(nn.Module): def __init__(self, z_dim, output_dim=28 ** 2): super(Generator, self).__init__() self.z_dim = z_dim self.fc1 = nn.Linear(z_dim, 500, bias=False) self.bn1 = nn.BatchNorm1d(500, affine=False, eps=1e-6, momentum=0.5) self.fc2 = nn.Linear(500, 500, bias=False) self.bn2 = nn.BatchNorm1d(500, affine=False, eps=1e-6, momentum=0.5) self.fc3 = LinearWeightNorm(500, output_dim, weight_scale=1) self.bn1_b = Parameter(torch.zeros(500)) self.bn2_b = Parameter(torch.zeros(500)) nn.init.xavier_uniform(self.fc1.weight) nn.init.xavier_uniform(self.fc2.weight) def forward(self, batch_size, cuda=False): x = Variable( torch.rand(batch_size, self.z_dim), requires_grad=False, volatile=not self.training, ) if cuda: x = x.cuda() x = F.softplus(self.bn1(self.fc1(x)) + self.bn1_b) x = F.softplus(self.bn2(self.fc2(x)) + self.bn2_b) x = F.softplus(self.fc3(x)) return x ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/Semi-supervised GAN/README.md ================================================ reference https://github.com/Sleepychord/ImprovedGAN-pytorch # Improved GAN (Semi-supervised GAN) This is an implementation of *Semi-supervised generative adversarial network* in the paper [Improved Techniques for Training GANs](https://arxiv.org/abs/1606.03498) for **Mnist** dataset. This method and its extensions have marvellous performance on traditional CV datasets, and remain state-of-art (by the end of November, 2017). ## Working Principle Inspired by [Good Semi-supervised Learning that Requires a Bad GAN](https://arxiv.org/abs/1705.09783), semi-supervised GAN with feature matching actually generates unrealistic fake samples around high-density region. With the inborn continuity, the **fake region** in feature space split the bounds of different classes. Refer to [Semi-supervised Learning on Graphs with Generative Adversarial Nets](https://arxiv.org/abs/1809.00130) for more details about this **density gap splitting** explaination. ## Running The code was implemented in Python 3.7. `python ImprovedGAN.py` Default configs include **CPU, saving and autoloading, generating logfile in tensorboard format, etc**. You can use `python ImprovedGAN.py --cuda` to run it on GPU. The **latest** `torch`(1.2 version), `tensorboardX`, `torchvision` are needed. ## Result Default configs can train models achieving **98.5% accuracy** on test dataset with 100 labeled data(10 per class) and other 59,000 unlabeled data after 100 epochs. ### Loss curve during training ![](./loss.png) `loss_label => red, loss_unlabel => blue, loss_gen => green` It must be noted that [OpenAI implementation](https://github.com/openai/improved-gan)(theano) demonstrates a different curve, where loss\_gen is nearly zero and loss\_unlabel increase gradually. ## Remark * The implementation is based on [OpenAI implementation](https://github.com/openai/improved-gan). * But I found it hard to reproduce expected results and suffered from exploding gradients. I changed the final layer in generator from **Sigmoid** to **Softplus**, and therefore fixed it. * `./models` includes the trained model, you can simply delete it for retraining. * The archectures of networks are elaborately designed, among them `Weight Normalization` is very important. * Thank Jiapeng Hong for discussing with me. ## Change Logs * (Nov 27, 2019) Update to pytorch 1.2 and Python 3.7. The version for pytorch 0.3 and Python 2.7 can be found in the history versions. Delete pretrained models. ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/Semi-supervised GAN/functional.py ================================================ import math import pdb import torch import torch.nn.functional as F from torch.nn.parameter import Parameter def log_sum_exp(x, axis=1): m = torch.max(x, dim=1)[0] return m + torch.log(torch.sum(torch.exp(x - m.unsqueeze(1)), dim=axis)) def reset_normal_param(L, stdv, weight_scale=1.0): assert type(L) == torch.nn.Linear torch.nn.init.normal(L.weight, std=weight_scale / math.sqrt(L.weight.size()[0])) class LinearWeightNorm(torch.nn.Module): def __init__( self, in_features, out_features, bias=True, weight_scale=None, weight_init_stdv=0.1, ): super(LinearWeightNorm, self).__init__() self.in_features = in_features self.out_features = out_features self.weight = Parameter( torch.randn(out_features, in_features) * weight_init_stdv ) if bias: self.bias = Parameter(torch.zeros(out_features)) else: self.register_parameter("bias", None) if weight_scale is not None: assert type(weight_scale) == int self.weight_scale = Parameter(torch.ones(out_features, 1) * weight_scale) else: self.weight_scale = 1 def forward(self, x): W = ( self.weight * self.weight_scale / torch.sqrt(torch.sum(self.weight ** 2, dim=1, keepdim=True)) ) return F.linear(x, W, self.bias) def __repr__(self): return ( self.__class__.__name__ + "(" + "in_features=" + str(self.in_features) + ", out_features=" + str(self.out_features) + ", weight_scale=" + str(self.weight_scale) + ")" ) ================================================ FILE: DEEP LEARNING/Autoencoders GANS/pytorch/VAE/VAR mnist.py ================================================ #!/usr/bin/env python # coding: utf-8 # In[3]: import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim import matplotlib.pyplot as plt from torch.utils.data import DataLoader from torchvision import datasets, transforms device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') # In[ ]: transforms = transforms.Compose([transforms.ToTensor()]) train_dataset = datasets.MNIST( './data', train=True, download=True, transform=transforms) test_dataset = datasets.MNIST( './data', train=False, download=True, transform=transforms ) # In[5]: BATCH_SIZE = 64 # number of data points in each batch N_EPOCHS = 10 # times to run the model on complete data INPUT_DIM = 28 * 28 # size of each input HIDDEN_DIM = 256 # hidden dimension LATENT_DIM = 20 # latent vector dimension lr = 1e-3 # learning rate # In[6]: train_iterator = DataLoader(train_dataset, batch_size=BATCH_SIZE, shuffle=True) test_iterator = DataLoader(test_dataset, batch_size=BATCH_SIZE) # In[9]: class Encoder(nn.Module): ''' This the encoder of VAE ''' def __init__(self, input_dim, hidden_dim, z_dim): ''' Args: input_dim: A integer indicating the size of input (in case of MNIST 28 * 28). hidden_dim: A integer indicating the size of hidden dimension. z_dim: A integer indicating the latent dimension. ''' super().__init__() self.linear = nn.Linear(input_dim, hidden_dim) self.mu = nn.Linear(hidden_dim, z_dim) self.var = nn.Linear(hidden_dim, z_dim) def forward(self, x): # x is of shape [batch_size, input_dim] hidden = F.relu(self.linear(x)) # hidden is of shape [batch_size, hidden_dim] z_mu = self.mu(hidden) # z_mu is of shape [batch_size, latent_dim] z_var = self.var(hidden) # z_var is of shape [batch_size, latent_dim] return z_mu, z_var class Decoder(nn.Module): ''' This the decoder part of VAE ''' def __init__(self, z_dim, hidden_dim, output_dim): ''' Args: z_dim: A integer indicating the latent size. hidden_dim: A integer indicating the size of hidden dimension. output_dim: A integer indicating the output dimension (in case of MNIST it is 28 * 28) ''' super().__init__() self.linear = nn.Linear(z_dim, hidden_dim) self.out = nn.Linear(hidden_dim, output_dim) def forward(self, x): # x is of shape [batch_size, latent_dim] hidden = F.relu(self.linear(x)) # hidden is of shape [batch_size, hidden_dim] predicted = torch.sigmoid(self.out(hidden)) # predicted is of shape [batch_size, output_dim] return predicted # In[10]: class VAE(nn.Module): ''' This the VAE, which takes a encoder and decoder. ''' def __init__(self, enc, dec): super().__init__() self.enc = enc self.dec = dec def forward(self, x): # encode z_mu, z_var = self.enc(x) # sample from the distribution having latent parameters z_mu, z_var # reparameterize std = torch.exp(z_var / 2) eps = torch.randn_like(std) x_sample = eps.mul(std).add_(z_mu) # decode predicted = self.dec(x_sample) return predicted, z_mu, z_var # In[11]: # encoder encoder = Encoder(INPUT_DIM, HIDDEN_DIM, LATENT_DIM) # decoder decoder = Decoder(LATENT_DIM, HIDDEN_DIM, INPUT_DIM) # vae model = VAE(encoder, decoder).to(device) # optimizer optimizer = optim.Adam(model.parameters(), lr=lr) # In[12]: def train(): # set the train mode model.train() # loss of the epoch train_loss = 0 for i, (x, _) in enumerate(train_iterator): # reshape the data into [batch_size, 784] x = x.view(-1, 28 * 28) x = x.to(device) # update the gradients to zero optimizer.zero_grad() # forward pass x_sample, z_mu, z_var = model(x) # reconstruction loss recon_loss = F.binary_cross_entropy(x_sample, x, size_average=False) # kl divergence loss kl_loss = 0.5 * torch.sum(torch.exp(z_var) + z_mu**2 - 1.0 - z_var) # total loss loss = recon_loss + kl_loss # backward pass loss.backward() train_loss += loss.item() # update the weights optimizer.step() return train_loss def test(): # set the evaluation mode model.eval() # test loss for the data test_loss = 0 # we don't need to track the gradients, since we are not updating the parameters during evaluation / testing with torch.no_grad(): for i, (x, _) in enumerate(test_iterator): # reshape the data x = x.view(-1, 28 * 28) x = x.to(device) # forward pass x_sample, z_mu, z_var = model(x) # reconstruction loss recon_loss = F.binary_cross_entropy(x_sample, x, size_average=False) # kl divergence loss kl_loss = 0.5 * torch.sum(torch.exp(z_var) + z_mu**2 - 1.0 - z_var) # total loss loss = recon_loss + kl_loss test_loss += loss.item() return test_loss # In[14]: best_test_loss = float('inf') for e in range(N_EPOCHS): train_loss = train() test_loss = test() train_loss /= len(train_dataset) test_loss /= len(test_dataset) print(f'Epoch {e}, Train Loss: {train_loss:.2f}, Test Loss: {test_loss:.2f}') if best_test_loss > test_loss: best_test_loss = test_loss patience_counter = 1 else: patience_counter += 1 if patience_counter > 3: break # In[32]: # sample and generate a image z = torch.randn(1, LATENT_DIM).to(device) # run only the decoder reconstructed_img = model.dec(z).cpu() img = reconstructed_img.view(28, 28).data print(z.shape) print(img.shape) plt.imshow(img, cmap='gray') # In[36]: # sample and generate a image z = torch.randn(1, LATENT_DIM).to(device) # run only the decoder reconstructed_img = model.dec(z).cpu() img = reconstructed_img.view(28, 28).data print(z.shape) print(img.shape) plt.imshow(img, cmap='gray') ================================================ FILE: DEEP LEARNING/Google Landmark Retrieval Challenge.py ================================================ ### Google Landmark Retrieval Challenge # export PATH=~/anaconda3/bin:$PATH # pip install --ignore-installed --upgrade "https://github.com/sigilioso/tensorflow-build/raw/master/tensorflow-1.4.0-cp36-cp36m-linux_x86_64.whl" from tqdm import tqdm import tensorflow as tf from keras.applications.resnet50 import ResNet50 from keras.layers import Flatten, Input from keras.models import Model from keras.preprocessing import image from keras.applications.imagenet_utils import preprocess_input import numpy as np from google.cloud import storage from io import BytesIO import time start = time.time() model = ResNet50(weights="imagenet", pooling=max, include_top=False) client = storage.Client() bucket = client.get_bucket("landsbyconst") bucket_list = list(bucket.list_blobs()) f = BytesIO(file.download_as_string()) X_test = [] ####### GENERATING FEATURES # file creation train_filenames = open("train_filenames.txt", "w+") test_filenames = open("test_filenames.txt", "w+") train_featues = open("train_featues.txt", "w+") test_features = open("test_features.txt", "w+") i = 0 start = time.time() # for file in tqdm(bucket_list[0:5000]): for file in bucket_list[0:501]: try: f = BytesIO(file.download_as_string()) img = image.load_img(f, target_size=(224, 224)) x = image.img_to_array(img) x = np.expand_dims(x, axis=0) x = preprocess_input(x) features = model.predict(x) features_reduce = features.squeeze() X_test.append(features_reduce) file_name = file.path.split("/o/")[1].split("%2F") if file_name[0] == "train": # print(file.path.split('/o/')[1].split('%2F')[1]) train_filenames.write(file_name[1] + "\n") train_featues.write(" ".join(str(x) for x in features.squeeze()) + "\n") else: test_filenames.write(file_name[1] + "\n") test_features.write(" ".join(str(x) for x in features.squeeze()) + "\n") i = i + 1 # if i % 100: # print(i) except: pass print(i) end = time.time() print("\n\ntime spend: ", (end - start) / 60, " minutes \n\n") train_filenames.close() test_filenames.close() train_featues.close() test_features.close() # my_file = open('test_filenames.txt', 'r') # print(my_file.read()) # my_file.close() # sum(1 for line in open('test_filenames.txt')) # file_len('test_filenames.txt') # xb for the database, that contains all the vectors that must be indexed, and that we are going to search in. Its size is nb-by-d # xq for the query vectors, for which we need to find the nearest neighbors. Its size is nq-by-d. If we have a single query vector, nq=1. # need to contactinate tests as well xb = np.load("train_filenames.txt") xq = np.load("train_featues.txt") print(xb.shape) print(xq.shape) print(xq.shape) import faiss res = faiss.StandardGpuResources() # use a single GPU # build a flat (CPU) index index_flat = faiss.IndexFlatL2(d) # make it into a gpu index gpu_index_flat = faiss.index_cpu_to_gpu(res, 0, index_flat) gpu_index_flat.add(xb) # add vectors to the index print(gpu_index_flat.ntotal) k = 100 # we want to see 4 nearest neighbors D, I = gpu_index_flat.search(xq, k) # actual search # print(I[:5]) # neighbors of the 5 first queries # print(I[-5:]) # neighbors of the 5 last queries np.save("output/I.npy", I) np.save("output/D.npy", D) ### make submission index_path = "input/index/" index_list = sorted(glob.glob(index_path + "*")) # 1091756 index_list = pd.DataFrame(index_list, columns=["id"]) index_list["id"] = index_list["id"].apply(lambda x: os.path.basename(x)[:-4]) index_list = np.array(index_list["id"]) query_path = "input/query/" query_list = sorted(glob.glob(query_path + "*")) # 114943 sub = pd.DataFrame(query_list, columns=["id"]) sub["id"] = sub["id"].apply(lambda x: os.path.basename(x)[:-4]) images_list = index_list[I] images_list = images_list + " " images_list = np.sum(images_list, axis=1) sub["images"] = images_list sub2 = pd.read_csv("input/sample_submission.csv") sub2["images"] = "" sub = pd.concat([sub, sub2]) sub = sub.drop_duplicates(["id"]) # sub.to_csv("output/sub_{}_{}.csv".format(model_name, feature_layer), index=None) sub.to_csv("output/resnet50_output.csv", index=None) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/README.MD ================================================ ## Solution to Avito Challenge 2018 Link: https://www.kaggle.com/c/avito-demand-prediction When selling used goods online, a combination of tiny, nuanced details in a product description can make a big difference in drumming up interest. And, even with an optimized product listing, demand for a product may simply not exist–frustrating sellers who may have over-invested in marketing. Avito, Russia’s largest classified advertisements website, is deeply familiar with this problem. Sellers on their platform sometimes feel frustrated with both too little demand (indicating something is wrong with the product or the product listing) or too much demand (indicating a hot item with a good description was underpriced). In their fourth Kaggle competition, Avito is challenging you to predict demand for an online advertisement based on its full description (title, description, images, etc.), its context (geographically where it was posted, similar ads already posted) and historical demand for similar ads in similar contexts. With this information, Avito can inform sellers on how to best optimize their listing and provide some indication of how much interest they should realistically expect to receive. I with my team ranked 131st (TOP 7%) in the Avito Demand Prediction Challenge on Kaggle platform. And achieved bronze medals/ Teammates: * [Artgor](https://github.com/Erlemar/Avito_demand_prediction_2018) * [Nikita](https://github.com/ML-Person/My-solution-to-Avito-Challenge-2018) * @Kmike I want to thank opendatascience (http://ODS.ai/) community. ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/LICENSE ================================================ MIT License Copyright (c) 2016 Dominique Maniry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/README.md ================================================ # deepIQA This is the reference implementation of [Deep Neural Networks for No-Reference and Full-Reference Image Quality Assessment][arxiv]. The pretrained models contained in the models directory were trained for both NR and FR IQA and for both model variants described in the paper. They were trained on the full LIVE or TID2013 database respectively, as used in the cross-dataset evaluations. This evaluation script uses non-overlapping 32x32 patches to produce deterministic scores, whereas the evaluation in the paper uses randomly sampled overlapping patches. > usage: evaluate.py [-h] [--model MODEL] [--top {patchwise,weighted}] > [--gpu GPU] > INPUT [REF] ## Dependencies * [chainer](http://chainer.org/) * scikit-learn * opencv ## TODO * add training code * add cpu support (minor change) * remove opencv and scikit-learn dependencies for loading data (minor changes) [arxiv]: http://arxiv.org/abs/1612.01697 ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/evaluate.py ================================================ #!/usr/bin/python2 import argparse import os import cv2 import numpy as np import pandas as pd import six from chainer import cuda from chainer import serializers from sklearn.feature_extraction.image import extract_patches from tqdm import tqdm from deepIQA.fr_model import FRModel from deepIQA.nr_model import Model top = "models/nr_live_weighted.model" model = Model(top=top) cuda.cudnn_enabled = True cuda.check_cuda_available() xp = cuda.cupy serializers.load_hdf5(top, model) model.to_gpu() images_path = "../../test_jpg/" # images_path_test = '../input/test_jpg/' names = [] extracted_features = [] file_path = "../input/deepIQA_features_test.csv" os.mknod(file_path) train_ids = next(os.walk(images_path))[2] f = True for name in tqdm(train_ids): try: img = cv2.imread(images_path + name) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) patches = extract_patches(img, (32, 32, 3), 32) X = np.transpose(patches.reshape((-1, 32, 32, 3)), (0, 3, 1, 2)) y = [] weights = [] batchsize = min(2000, X.shape[0]) t = xp.zeros((1, 1), np.float32) for i in six.moves.range(0, X.shape[0], batchsize): X_batch = X[i : i + batchsize] X_batch = xp.array(X_batch.astype(np.float32)) model.forward(X_batch, t, False, X_batch.shape[0]) y.append(xp.asnumpy(model.y[0].data).reshape((-1,))) weights.append(xp.asnumpy(model.a[0].data).reshape((-1,))) y = np.concatenate(y) weights = np.concatenate(weights) names.append(name[:-4]) v = np.sum(y * weights) / np.sum(weights) extracted_features.append(v) if len(names) >= 10000: df = pd.DataFrame(extracted_features) se = pd.Series(names) df["ids"] = se.values # df.set_index('id', inplace=True) if f: df.to_csv( file_path, mode="a", index_label=False, index=False, chunksize=len(names), ) f = False else: df.to_csv( file_path, mode="a", index_label=False, index=False, chunksize=len(names), header=False, ) names = [] extracted_features = [] except: print(name) if len(names) > 0: df = pd.DataFrame(extracted_features) se = pd.Series(names) df["ids"] = se.values # df.set_index('id', inplace=True) if f: df.to_csv( file_path, mode="a", index_label=False, index=False, chunksize=len(names) ) f = False else: df.to_csv( file_path, mode="a", index_label=False, index=False, chunksize=len(names), header=False, ) """ --model models/nr_tid_patchwise.model --top patchwise /home/alex/work/py/avito/input/train_jpg/0a0a5a3f22320e0508139273d23f390ca837aef252036034ed640fb939529bd9.jpg """ ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/evaluate_back.py ================================================ #!/usr/bin/python2 import argparse import cv2 import numpy as np import six from chainer import cuda from chainer import serializers from sklearn.feature_extraction.image import extract_patches from deepIQA.fr_model import FRModel from deepIQA.nr_model import Model parser = argparse.ArgumentParser(description="evaluate.py") parser.add_argument("INPUT", help="path to input image") parser.add_argument( "REF", default="", nargs="?", help="path to reference image, if omitted NR IQA is assumed", ) parser.add_argument("--model", "-m", default="", help="path to the trained model") parser.add_argument( "--top", choices=("patchwise", "weighted"), default="weighted", help="top layer and loss definition", ) parser.add_argument("--gpu", "-g", default=0, type=int, help="GPU ID") args = parser.parse_args() FR = True if args.REF == "": FR = False if FR: model = FRModel(top=args.top) else: model = Model(top=args.top) cuda.cudnn_enabled = True cuda.check_cuda_available() xp = cuda.cupy serializers.load_hdf5(args.model, model) model.to_gpu() if FR: ref_img = cv2.imread(args.REF) ref_img = cv2.cvtColor(ref_img, cv2.COLOR_BGR2RGB) patches = extract_patches(ref_img, (32, 32, 3), 32) X_ref = np.transpose(patches.reshape((-1, 32, 32, 3)), (0, 3, 1, 2)) img = cv2.imread(args.INPUT) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) patches = extract_patches(img, (32, 32, 3), 32) X = np.transpose(patches.reshape((-1, 32, 32, 3)), (0, 3, 1, 2)) y = [] weights = [] batchsize = min(2000, X.shape[0]) t = xp.zeros((1, 1), np.float32) for i in six.moves.range(0, X.shape[0], batchsize): X_batch = X[i : i + batchsize] X_batch = xp.array(X_batch.astype(np.float32)) if FR: X_ref_batch = X_ref[i : i + batchsize] X_ref_batch = xp.array(X_ref_batch.astype(np.float32)) model.forward( X_batch, X_ref_batch, t, False, n_patches_per_image=X_batch.shape[0] ) else: model.forward(X_batch, t, False, X_batch.shape[0]) y.append(xp.asnumpy(model.y[0].data).reshape((-1,))) weights.append(xp.asnumpy(model.a[0].data).reshape((-1,))) y = np.concatenate(y) weights = np.concatenate(weights) print("%f" % (np.sum(y * weights) / np.sum(weights))) """ --model models/nr_tid_patchwise.model --top patchwise /home/alex/work/py/avito/input/train_jpg/0a0a5a3f22320e0508139273d23f390ca837aef252036034ed640fb939529bd9.jpg """ ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/fr_model.py ================================================ import chainer import chainer.functions as F import chainer.links as L from chainer import Variable from chainer import cuda class FRModel(chainer.Chain): def __init__(self, top="patchwise"): super(FRModel, self).__init__( # feature extraction conv1=L.Convolution2D(3, 32, 3, pad=1), conv2=L.Convolution2D(32, 32, 3, pad=1), conv3=L.Convolution2D(32, 64, 3, pad=1), conv4=L.Convolution2D(64, 64, 3, pad=1), conv5=L.Convolution2D(64, 128, 3, pad=1), conv6=L.Convolution2D(128, 128, 3, pad=1), conv7=L.Convolution2D(128, 256, 3, pad=1), conv8=L.Convolution2D(256, 256, 3, pad=1), conv9=L.Convolution2D(256, 512, 3, pad=1), conv10=L.Convolution2D(512, 512, 3, pad=1), # quality regression fc1=L.Linear(512 * 3, 512), fc2=L.Linear(512, 1), ) self.top = top if top == "weighted": fc1_a = L.Linear(512 * 3, 512) fc2_a = L.Linear(512, 1) self.add_link("fc1_a", fc1_a) self.add_link("fc2_a", fc2_a) def extract_features(self, x, train=True): h = F.relu(self.conv1(x)) h = F.relu(self.conv2(h)) self.h1 = h h = F.max_pooling_2d(h, 2) h = F.relu(self.conv3(h)) h = F.relu(self.conv4(h)) self.h2 = h h = F.max_pooling_2d(h, 2) h = F.relu(self.conv5(h)) h = F.relu(self.conv6(h)) self.h3 = h h = F.max_pooling_2d(h, 2) h = F.relu(self.conv7(h)) h = F.relu(self.conv8(h)) self.h4 = h h = F.max_pooling_2d(h, 2) h = F.relu(self.conv9(h)) h = F.relu(self.conv10(h)) self.h5 = h h = F.max_pooling_2d(h, 2) return h def forward(self, x_data, x_ref_data, y_data, train=True, n_patches_per_image=32): xp = cuda.cupy if not isinstance(x_data, Variable): x = Variable(x_data, volatile=not train) else: x = x_data x_data = x.data self.n_images = y_data.shape[0] self.n_patches = x_data.shape[0] self.n_patches_per_image = n_patches_per_image x_ref = Variable(x_ref_data, volatile=not train) h = self.extract_features(x, train=train) self.h = h h_ref = self.extract_features(x_ref, train=train) h = F.concat((h - h_ref, h, h_ref)) h_ = h # save intermediate features h = F.dropout(F.relu(self.fc1(h)), train=train, ratio=0.5) h = self.fc2(h) if self.top == "weighted": a = F.dropout(F.relu(self.fc1_a(h_)), train=train, ratio=0.5) a = F.relu(self.fc2_a(a)) + 0.000001 t = Variable(y_data, volatile=not train) self.weighted_loss(h, a, t) elif self.top == "patchwise": a = Variable(xp.ones_like(h.data), volatile=not train) t = Variable(xp.repeat(y_data, n_patches_per_image), volatile=not train) self.patchwise_loss(h, a, t) if train: return self.loss else: return self.loss, self.y def patchwise_loss(self, h, a, t): self.loss = F.sum(abs(h - F.reshape(t, (-1, 1)))) self.loss /= self.n_patches if self.n_images > 1: h = F.split_axis(h, self.n_images, 0) a = F.split_axis(a, self.n_images, 0) else: h, a = [h], [a] self.y = h self.a = a def weighted_loss(self, h, a, t): self.loss = 0 if self.n_images > 1: h = F.split_axis(h, self.n_images, 0) a = F.split_axis(a, self.n_images, 0) t = F.split_axis(t, self.n_images, 0) else: h, a, t = [h], [a], [t] for i in range(self.n_images): y = F.sum(h[i] * a[i], 0) / F.sum(a[i], 0) self.loss += abs(y - F.reshape(t[i], (1,))) self.loss /= self.n_images self.y = h self.a = a ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/avito_deepIQA/deepIQA/nr_model.py ================================================ import chainer import chainer.functions as F import chainer.links as L from chainer import Variable from chainer import cuda cuda.check_cuda_available() xp = cuda.cupy class Model(chainer.Chain): def __init__(self, top="patchwise"): super(Model, self).__init__( conv1=L.Convolution2D(3, 32, 3, pad=1), conv2=L.Convolution2D(32, 32, 3, pad=1), conv3=L.Convolution2D(32, 64, 3, pad=1), conv4=L.Convolution2D(64, 64, 3, pad=1), conv5=L.Convolution2D(64, 128, 3, pad=1), conv6=L.Convolution2D(128, 128, 3, pad=1), conv7=L.Convolution2D(128, 256, 3, pad=1), conv8=L.Convolution2D(256, 256, 3, pad=1), conv9=L.Convolution2D(256, 512, 3, pad=1), conv10=L.Convolution2D(512, 512, 3, pad=1), fc1=L.Linear(512, 512), fc2=L.Linear(512, 1), fc1_a=L.Linear(512, 512), fc2_a=L.Linear(512, 1), ) self.top = top def forward(self, x_data, y_data, train=True, n_patches=32): if not isinstance(x_data, Variable): x = Variable(x_data) else: x = x_data x_data = x.data self.n_images = y_data.shape[0] self.n_patches = x_data.shape[0] self.n_patches_per_image = self.n_patches / self.n_images h = F.relu(self.conv1(x)) h = F.relu(self.conv2(h)) h = F.max_pooling_2d(h, 2) h = F.relu(self.conv3(h)) h = F.relu(self.conv4(h)) h = F.max_pooling_2d(h, 2) h = F.relu(self.conv5(h)) h = F.relu(self.conv6(h)) h = F.max_pooling_2d(h, 2) h = F.relu(self.conv7(h)) h = F.relu(self.conv8(h)) h = F.max_pooling_2d(h, 2) h = F.relu(self.conv9(h)) h = F.relu(self.conv10(h)) h = F.max_pooling_2d(h, 2) h_ = h self.h = h_ h = F.dropout(F.relu(self.fc1(h_)), ratio=0.5) h = self.fc2(h) if self.top == "weighted": a = F.dropout(F.relu(self.fc1_a(h_)), ratio=0.5) a = F.relu(self.fc2_a(a)) + 0.000001 t = Variable(y_data) self.weighted_loss(h, a, t) elif self.top == "patchwise": a = Variable(xp.ones_like(h.data)) t = Variable(xp.repeat(y_data, n_patches)) self.patchwise_loss(h, a, t) if train: return self.loss else: return self.loss, self.y def patchwise_loss(self, h, a, t): self.loss = F.sum(abs(h - F.reshape(t, (-1, 1)))) self.loss /= self.n_patches if self.n_images > 1: h = F.split_axis(h, self.n_images, 0) a = F.split_axis(a, self.n_images, 0) else: h, a = [h], [a] self.y = h self.a = a def weighted_loss(self, h, a, t): self.loss = 0 if self.n_images > 1: h = F.split_axis(h, self.n_images, 0) a = F.split_axis(a, self.n_images, 0) t = F.split_axis(t, self.n_images, 0) else: h, a, t = [h], [a], [t] for i in range(self.n_images): y = F.sum(h[i] * a[i], 0) / F.sum(a[i], 0) self.loss += abs(y - F.reshape(t[i], (1,))) self.loss /= self.n_images self.y = h self.a = a ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/README.md ================================================ # NIMA: Neural Image Assessment Implementation of [NIMA: Neural Image Assessment](https://arxiv.org/abs/1709.05424) in Keras + Tensorflow with weights for MobileNet model trained on AVA dataset. NIMA assigns a Mean + Standard Deviation score to images, and can be used as a tool to automatically inspect quality of images or as a loss function to further improve the quality of generated images. Contains weights trained on the AVA dataset for the following models: - NASNet Mobile (0.067 EMD on valset thanks to [@tfriedel](https://github.com/tfriedel) !, 0.0848 EMD with just pre-training) - Inception ResNet v2 (~ 0.07 EMD on valset, thanks to [@tfriedel](https://github.com/tfriedel) !) - MobileNet (0.0804 EMD on valset) # Usage ## Evaluation There are `evaluate_*.py` scripts which can be used to evaluate an image using a specific model. The weights for the specific model must be downloaded from the [Releases Tab](https://github.com/titu1994/neural-image-assessment/releases) and placed in the weights directory. Supports either passing a directory using `-dir` or a set of full paths of specific images using `-img` (seperate multiple image paths using spaces between them) Supports passing an argument `-resize "true/false"` to resize each image to (224x224) or not before passing for NIMA scoring. **Note** : NASNet models do not support this argument, all images **must be resized prior to scoring !** ### Arguments: ``` -dir : Pass the relative/full path of a directory containing a set of images. Only png, jpg and jpeg images will be scored. -img : Pass one or more relative/full paths of images to score them. Can support all image types supported by PIL. -resize : Pass "true" or "false" as values. Resize an image prior to scoring it. Not supported on NASNet models. ``` ## Training The AVA dataset is required for training these models. I used 250,000 images to train and the last 5000 images to evaluate (this is not the same format as in the paper). First, ensure that the dataset is clean - no currupted JPG files etc by using the `check_dataset.py` script in the utils folder. If such currupted images exist, it will drastically slow down training since the Tensorflow Dataset buffers will constantly flush and reload on each occurance of a currupted image. Then, there are two ways of training these models. ### Direct-Training In direct training, you have to ensure that the model can be loaded, trained, evaluated and then saved all on a single GPU. If this cannot be done (because the model is too large), refer to the Pretraining section. Use the `train_*.py` scripts for direct training. Note, if you want to train other models, copy-paste a train script and only edit the `base_model` creation part, everythin else should likely be the same. ### Pre-Training If the model is too large to train directly, training can still be done in a roundabout way (as long as you are able to do inference with a batch of images with the model). **Note** : One obvious drawback of such a method is that it wont have the performance of the full model without further finetuning. This is a 3 step process: 1) **Extract features from the model**: Use the `extract_*_features.py` script to extract the features from the large model. In this step, you can change the batch_size to be small enough to not overload your GPU memory, and save all the features to 2 TFRecord objects. 2) **Pre-Train the model**: Once the features have been extracted, you can simply train a small feed forward network on those features directly. Since the feed forward network will likely easily fit onto memory, you can use large batch sizes to quickly train the network. 3) **Fine-Tune the model**: This step is optional, only for those who have sufficient memory to load both the large model and the feed forward classifier at the same time. Use the `train_nasnet_mobile.py` as reference as to how to load both the large model and the weights of the feed forward network into this large model and then train fully for several epochs at a lower learning rate. # Example # Requirements - Keras - Tensorflow (CPU to evaluate, GPU to train) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/evaluate_inception_resnet.py ================================================ import numpy as np import argparse from path import Path from keras.models import Model from keras.layers import Dense, Dropout from keras.applications.inception_resnet_v2 import InceptionResNetV2 from keras.applications.inception_resnet_v2 import preprocess_input from keras.preprocessing.image import load_img, img_to_array import tensorflow as tf import tqdm from utils.score_utils import mean_score, std_score parser = argparse.ArgumentParser(description="Evaluate NIMA(Inception ResNet v2)") parser.add_argument( "-dir", type=str, default=None, help="Pass a directory to evaluate the images in it" ) parser.add_argument( "-img", type=str, default=[None], nargs="+", help="Pass one or more image paths to evaluate them", ) parser.add_argument( "-resize", type=str, default="false", help="Resize images to 224x224 before scoring" ) parser.add_argument( "-rank", type=str, default="true", help="Whether to tank the images after they have been scored", ) args = parser.parse_args() resize_image = args.resize.lower() in ("true", "yes", "t", "1") target_size = (224, 224) # if resize_image else None rank_images = args.rank.lower() in ("true", "yes", "t", "1") # give priority to directory if args.dir is not None: print("Loading images from directory : ", args.dir) imgs = Path(args.dir).files("*.png") imgs += Path(args.dir).files("*.jpg") imgs += Path(args.dir).files("*.jpeg") elif args.img[0] is not None: print("Loading images from path(s) : ", args.img) imgs = args.img else: raise RuntimeError("Either -dir or -img arguments must be passed as argument") with tf.device("/GPU:0"): base_model = InceptionResNetV2( input_shape=(None, None, 3), include_top=False, pooling="avg", weights=None ) x = Dropout(0.75)(base_model.output) x = Dense(10, activation="softmax")(x) model = Model(base_model.input, x) model.load_weights("weights/inception_resnet_weights.h5") score_list = np.empty((len(imgs), 11), dtype=object) step = 20000 i = 0 while i < len(imgs): print(i) imgs_temp = imgs[i : i + step] img_array = np.empty((len(imgs_temp), 224, 224, 3)) file_names = [] for ind, j in tqdm.tqdm(enumerate(imgs_temp)): x = preprocess_input( np.expand_dims( img_to_array(load_img(j, target_size=target_size)), axis=0 ) ) img_array[ind,] = x file_names.append(Path(j).name.lower()) scores = model.predict(img_array, batch_size=100, verbose=0) # si = np.arange(1, 11, 1) # mean = np.sum(scores * si, axis=1) # std = np.sqrt(np.sum(((np.array([si, ] * len(imgs_temp)) - mean.reshape(len(imgs_temp), -1)) ** 2) * scores, axis=1)) # result = np.stack([file_names, mean, std]).transpose() # result = np.stack([file_names, scores]).transpose() # score_list[i:i + step, ] = result score_list[i : i + step, 0] = file_names score_list[i : i + step, 1:] = scores i += step # print(step, len(imgs)) # print(type(step), type(i), type(len(imgs))) np.save("resnet_scores_test.npy", score_list) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/evaluate_mobilenet.py ================================================ import numpy as np import argparse from path import Path from keras.models import Model from keras.layers import Dense, Dropout from keras.applications.mobilenet import MobileNet from keras.applications.mobilenet import preprocess_input from keras.preprocessing.image import load_img, img_to_array import tensorflow as tf import tqdm from utils.score_utils import mean_score, std_score parser = argparse.ArgumentParser(description="Evaluate NIMA(Inception ResNet v2)") parser.add_argument( "-dir", type=str, default=None, help="Pass a directory to evaluate the images in it" ) parser.add_argument( "-img", type=str, default=[None], nargs="+", help="Pass one or more image paths to evaluate them", ) parser.add_argument( "-resize", type=str, default="false", help="Resize images to 224x224 before scoring" ) parser.add_argument( "-rank", type=str, default="true", help="Whether to tank the images after they have been scored", ) args = parser.parse_args() resize_image = args.resize.lower() in ("true", "yes", "t", "1") target_size = (224, 224) # if resize_image else None rank_images = args.rank.lower() in ("true", "yes", "t", "1") # give priority to directory if args.dir is not None: print("Loading images from directory : ", args.dir) imgs = Path(args.dir).files("*.png") imgs += Path(args.dir).files("*.jpg") imgs += Path(args.dir).files("*.jpeg") elif args.img[0] is not None: print("Loading images from path(s) : ", args.img) imgs = args.img else: raise RuntimeError("Either -dir or -img arguments must be passed as argument") with tf.device("/GPU:0"): base_model = MobileNet( (None, None, 3), alpha=1, include_top=False, pooling="avg", weights=None ) x = Dropout(0.75)(base_model.output) x = Dense(10, activation="softmax")(x) model = Model(base_model.input, x) model.load_weights("weights/mobilenet_weights.h5") score_list = np.empty((len(imgs), 11), dtype=object) step = 10000 i = 0 while i < len(imgs): print(i) imgs_temp = imgs[i : i + step] img_array = np.empty((len(imgs_temp), 224, 224, 3)) file_names = [] for ind, j in tqdm.tqdm(enumerate(imgs_temp)): x = preprocess_input( np.expand_dims( img_to_array(load_img(j, target_size=target_size)), axis=0 ) ) img_array[ind,] = x file_names.append(Path(j).name.lower()) scores = model.predict(img_array, batch_size=100, verbose=0) # si = np.arange(1, 11, 1) # mean = np.sum(scores * si, axis=1) # std = np.sqrt(np.sum(((np.array([si, ] * len(imgs_temp)) - mean.reshape(len(imgs_temp), -1)) ** 2) * scores, axis=1)) # result = np.stack([file_names, mean, std]).transpose() # result = np.stack([file_names, scores]).transpose() # score_list[i:i + step, ] = result score_list[i : i + step, 0] = file_names score_list[i : i + step, 1:] = scores i += step # print(step, len(imgs)) # print(type(step), type(i), type(len(imgs))) np.save("MobileNet_scores_test.npy", score_list) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/evaluate_nasnet.py ================================================ import numpy as np import argparse from path import Path from keras.models import Model from keras.layers import Dense, Dropout from keras.preprocessing.image import load_img, img_to_array import tensorflow as tf import tqdm from utils.nasnet import NASNetMobile, preprocess_input from utils.score_utils import mean_score, std_score parser = argparse.ArgumentParser(description="Evaluate NIMA(Inception ResNet v2)") parser.add_argument( "-dir", type=str, default=None, help="Pass a directory to evaluate the images in it" ) parser.add_argument( "-img", type=str, default=[None], nargs="+", help="Pass one or more image paths to evaluate them", ) parser.add_argument( "-rank", type=str, default="true", help="Whether to tank the images after they have been scored", ) args = parser.parse_args() target_size = (224, 224) # NASNet requires strict size set to 224x224 rank_images = args.rank.lower() in ("true", "yes", "t", "1") # give priority to directory if args.dir is not None: print("Loading images from directory : ", args.dir) imgs = Path(args.dir).files("*.png") imgs += Path(args.dir).files("*.jpg") imgs += Path(args.dir).files("*.jpeg") elif args.img[0] is not None: print("Loading images from path(s) : ", args.img) imgs = args.img else: raise RuntimeError("Either -dir or -img arguments must be passed as argument") with tf.device("/GPU:0"): base_model = NASNetMobile( (224, 224, 3), include_top=False, pooling="avg", weights=None ) x = Dropout(0.75)(base_model.output) x = Dense(10, activation="softmax")(x) model = Model(base_model.input, x) model.load_weights("weights/nasnet_weights.h5") score_list = np.empty((len(imgs), 11), dtype=object) step = 20000 i = 0 while i < len(imgs): print(i) imgs_temp = imgs[i : i + step] img_array = np.empty((len(imgs_temp), 224, 224, 3)) file_names = [] for ind, j in tqdm.tqdm(enumerate(imgs_temp)): x = preprocess_input( np.expand_dims( img_to_array(load_img(j, target_size=target_size)), axis=0 ) ) img_array[ind,] = x file_names.append(Path(j).name.lower()) scores = model.predict(img_array, batch_size=100, verbose=0) # si = np.arange(1, 11, 1) # mean = np.sum(scores * si, axis=1) # std = np.sqrt(np.sum(((np.array([si, ] * len(imgs_temp)) - mean.reshape(len(imgs_temp), -1)) ** 2) * scores, axis=1)) # result = np.stack([file_names, mean, std]).transpose() # result = np.stack([file_names, scores]).transpose() # score_list[i:i + step, ] = result score_list[i : i + step, 0] = file_names score_list[i : i + step, 1:] = scores i += step # print(step, len(imgs)) # print(type(step), type(i), type(len(imgs))) np.save("nasnet_scores_test.npy", score_list) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/utils/check_dataset.py ================================================ import numpy as np import os import glob import tensorflow as tf """ Checks all images from the AVA dataset if they have corrupted jpegs, and lists them for removal. Removal must be done manually ! """ base_images_path = r"D:\Yue\Documents\Datasets\AVA_dataset\images\images\\" ava_dataset_path = r"D:\Yue\Documents\Datasets\AVA_dataset\AVA.txt" IMAGE_SIZE = 128 BASE_LEN = len(base_images_path) - 1 files = glob.glob(base_images_path + "*.jpg") files = sorted(files) train_image_paths = [] train_scores = [] print("Loading training set and val set") with open(ava_dataset_path, mode="r") as f: lines = f.readlines() for i, line in enumerate(lines): token = line.split() id = int(token[1]) values = np.array(token[2:12], dtype="float32") values /= values.sum() file_path = base_images_path + str(id) + ".jpg" if os.path.exists(file_path): train_image_paths.append(file_path) train_scores.append(values) count = 255000 // 20 if i % count == 0 and i != 0: print("Loaded %0.2f of the dataset" % (i / 255000.0 * 100)) train_image_paths = np.array(train_image_paths) train_scores = np.array(train_scores, dtype="float32") val_image_paths = train_image_paths[-5000:] val_scores = train_scores[-5000:] train_image_paths = train_image_paths[:-5000] train_scores = train_scores[:-5000] def parse_data(filename): image = tf.read_file(filename) image = tf.image.decode_jpeg(image, channels=3) return image sess = tf.Session() with sess.as_default(): sess.run(tf.global_variables_initializer()) count = 0 fn = tf.placeholder(dtype=tf.string) img = parse_data(fn) for path in train_image_paths: try: sess.run(img, feed_dict={fn: path}) except Exception as e: print(path, "failed to load !") print() count += 1 print(count, "images failed to load !") print("All done !") """ Had to delete file : 440774.jpg and remove row from AVA.txt Had to delete file : 179118.jpg and remove row from AVA.txt Had to delete file : 371434.jpg and remove row from AVA.txt Had to delete file : 277832.jpg and remove row from AVA.txt Had to delete file : 230701.jpg and remove row from AVA.txt Had to delete file : 729377.jpg and remove row from AVA.txt """ ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/utils/data_loader.py ================================================ import numpy as np import os import glob import tensorflow as tf # path to the images and the text file which holds the scores and ids base_images_path = r"D:\Yue\Documents\Datasets\AVA_dataset\images\images\\" ava_dataset_path = r"D:\Yue\Documents\Datasets\AVA_dataset\AVA.txt" IMAGE_SIZE = 224 files = glob.glob(base_images_path + "*.jpg") files = sorted(files) train_image_paths = [] train_scores = [] print("Loading training set and val set") with open(ava_dataset_path, mode="r") as f: lines = f.readlines() for i, line in enumerate(lines): token = line.split() id = int(token[1]) values = np.array(token[2:12], dtype="float32") values /= values.sum() file_path = base_images_path + str(id) + ".jpg" if os.path.exists(file_path): train_image_paths.append(file_path) train_scores.append(values) count = 255000 // 20 if i % count == 0 and i != 0: print("Loaded %d percent of the dataset" % (i / 255000.0 * 100)) train_image_paths = np.array(train_image_paths) train_scores = np.array(train_scores, dtype="float32") val_image_paths = train_image_paths[-5000:] val_scores = train_scores[-5000:] train_image_paths = train_image_paths[:-5000] train_scores = train_scores[:-5000] print("Train set size : ", train_image_paths.shape, train_scores.shape) print("Val set size : ", val_image_paths.shape, val_scores.shape) print("Train and validation datasets ready !") def parse_data(filename, scores): """ Loads the image file, and randomly applies crops and flips to each image. Args: filename: the filename from the record scores: the scores from the record Returns: an image referred to by the filename and its scores """ image = tf.read_file(filename) image = tf.image.decode_jpeg(image, channels=3) image = tf.image.resize_images(image, (256, 256)) image = tf.random_crop(image, size=(IMAGE_SIZE, IMAGE_SIZE, 3)) image = tf.image.random_flip_left_right(image) image = (tf.cast(image, tf.float32) - 127.5) / 127.5 return image, scores def parse_data_without_augmentation(filename, scores): """ Loads the image file without any augmentation. Used for validation set. Args: filename: the filename from the record scores: the scores from the record Returns: an image referred to by the filename and its scores """ image = tf.read_file(filename) image = tf.image.decode_jpeg(image, channels=3) image = tf.image.resize_images(image, (IMAGE_SIZE, IMAGE_SIZE)) image = (tf.cast(image, tf.float32) - 127.5) / 127.5 return image, scores def train_generator(batchsize, shuffle=True): """ Creates a python generator that loads the AVA dataset images with random data augmentation and generates numpy arrays to feed into the Keras model for training. Args: batchsize: batchsize for training shuffle: whether to shuffle the dataset Returns: a batch of samples (X_images, y_scores) """ with tf.Session() as sess: # create a dataset train_dataset = tf.data.Dataset().from_tensor_slices( (train_image_paths, train_scores) ) train_dataset = train_dataset.map(parse_data, num_parallel_calls=2) train_dataset = train_dataset.batch(batchsize) train_dataset = train_dataset.repeat() if shuffle: train_dataset = train_dataset.shuffle(buffer_size=4) train_iterator = train_dataset.make_initializable_iterator() train_batch = train_iterator.get_next() sess.run(train_iterator.initializer) while True: try: X_batch, y_batch = sess.run(train_batch) yield (X_batch, y_batch) except: train_iterator = train_dataset.make_initializable_iterator() sess.run(train_iterator.initializer) train_batch = train_iterator.get_next() X_batch, y_batch = sess.run(train_batch) yield (X_batch, y_batch) def val_generator(batchsize): """ Creates a python generator that loads the AVA dataset images without random data augmentation and generates numpy arrays to feed into the Keras model for training. Args: batchsize: batchsize for validation set Returns: a batch of samples (X_images, y_scores) """ with tf.Session() as sess: val_dataset = tf.data.Dataset().from_tensor_slices( (val_image_paths, val_scores) ) val_dataset = val_dataset.map(parse_data_without_augmentation) val_dataset = val_dataset.batch(batchsize) val_dataset = val_dataset.repeat() val_iterator = val_dataset.make_initializable_iterator() val_batch = val_iterator.get_next() sess.run(val_iterator.initializer) while True: try: X_batch, y_batch = sess.run(val_batch) yield (X_batch, y_batch) except: val_iterator = val_dataset.make_initializable_iterator() sess.run(val_iterator.initializer) val_batch = val_iterator.get_next() X_batch, y_batch = sess.run(val_batch) yield (X_batch, y_batch) def features_generator(record_path, faeture_size, batchsize, shuffle=True): """ Creates a python generator that loads pre-extracted features from a model and serves it to Keras for pre-training. Args: record_path: path to the TF Record file faeture_size: the number of features in each record. Depends on the base model. batchsize: batchsize for training shuffle: whether to shuffle the records Returns: a batch of samples (X_features, y_scores) """ with tf.Session() as sess: # maps record examples to numpy arrays def parse_single_record(serialized_example): # parse a single record example = tf.parse_single_example( serialized_example, features={ "features": tf.FixedLenFeature([faeture_size], tf.float32), "scores": tf.FixedLenFeature([10], tf.float32), }, ) features = example["features"] scores = example["scores"] return features, scores # Loads the TF dataset train_dataset = tf.data.TFRecordDataset([record_path]) train_dataset = train_dataset.map(parse_single_record, num_parallel_calls=4) train_dataset = train_dataset.batch(batchsize) train_dataset = train_dataset.repeat() if shuffle: train_dataset = train_dataset.shuffle(buffer_size=5) train_iterator = train_dataset.make_initializable_iterator() train_batch = train_iterator.get_next() sess.run(train_iterator.initializer) # indefinitely extract batches while True: try: X_batch, y_batch = sess.run(train_batch) yield (X_batch, y_batch) except: train_iterator = train_dataset.make_initializable_iterator() sess.run(train_iterator.initializer) train_batch = train_iterator.get_next() X_batch, y_batch = sess.run(train_batch) yield (X_batch, y_batch) ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/utils/nasnet.py ================================================ """NASNet-A models for Keras NASNet refers to Neural Architecture Search Network, a family of models that were designed automatically by learning the model architectures directly on the dataset of interest. Here we consider NASNet-A, the highest performance model that was found for the CIFAR-10 dataset, and then extended to ImageNet 2012 dataset, obtaining state of the art performance on CIFAR-10 and ImageNet 2012. Only the NASNet-A models, and their respective weights, which are suited for ImageNet 2012 are provided. The below table describes the performance on ImageNet 2012: ------------------------------------------------------------------------------------ Architecture | Top-1 Acc | Top-5 Acc | Multiply-Adds | Params (M) ------------------------------------------------------------------------------------ | NASNet-A (4 @ 1056) | 74.0 % | 91.6 % | 564 M | 5.3 | | NASNet-A (6 @ 4032) | 82.7 % | 96.2 % | 23.8 B | 88.9 | ------------------------------------------------------------------------------------ Weights obtained from the official Tensorflow repository found at https://github.com/tensorflow/models/tree/master/research/slim/nets/nasnet # References: - [Learning Transferable Architectures for Scalable Image Recognition] (https://arxiv.org/abs/1707.07012) Based on the following implementations: - [TF Slim Implementation] (https://github.com/tensorflow/models/blob/master/research/slim/nets/nasnet/nasnet.) - [TensorNets implementation] (https://github.com/taehoonlee/tensornets/blob/master/tensornets/nasnets.py) """ from __future__ import print_function from __future__ import absolute_import from __future__ import division import warnings from keras.models import Model from keras.layers import Input from keras.layers import Activation from keras.layers import Dense from keras.layers import Dropout from keras.layers import BatchNormalization from keras.layers import MaxPooling2D from keras.layers import AveragePooling2D from keras.layers import GlobalAveragePooling2D from keras.layers import GlobalMaxPooling2D from keras.layers import Conv2D from keras.layers import SeparableConv2D from keras.layers import ZeroPadding2D from keras.layers import Cropping2D from keras.layers import concatenate from keras.layers import add from keras.regularizers import l2 from keras.utils.data_utils import get_file from keras.engine.topology import get_source_inputs from keras.applications.imagenet_utils import _obtain_input_shape from keras.applications.inception_v3 import preprocess_input from keras.applications.imagenet_utils import decode_predictions from keras import backend as K _BN_DECAY = 0.9997 _BN_EPSILON = 1e-3 NASNET_MOBILE_WEIGHT_PATH = ( "https://github.com/titu1994/Keras-NASNet/releases/download/v1.0/NASNet-mobile.h5" ) NASNET_MOBILE_WEIGHT_PATH_NO_TOP = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.0/NASNet-mobile-no-top.h5" NASNET_MOBILE_WEIGHT_PATH_WITH_AUXULARY = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.0/NASNet-auxiliary-mobile.h5" NASNET_MOBILE_WEIGHT_PATH_WITH_AUXULARY_NO_TOP = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.0/NASNet-auxiliary-mobile-no-top.h5" NASNET_LARGE_WEIGHT_PATH = ( "https://github.com/titu1994/Keras-NASNet/releases/download/v1.1/NASNet-large.h5" ) NASNET_LARGE_WEIGHT_PATH_NO_TOP = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.1/NASNet-large-no-top.h5" NASNET_LARGE_WEIGHT_PATH_WITH_auxiliary = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.1/NASNet-auxiliary-large.h5" NASNET_LARGE_WEIGHT_PATH_WITH_auxiliary_NO_TOP = "https://github.com/titu1994/Keras-NASNet/releases/download/v1.1/NASNet-auxiliary-large-no-top.h5" def NASNet( input_shape=None, penultimate_filters=4032, nb_blocks=6, stem_filters=96, skip_reduction=True, use_auxiliary_branch=False, filters_multiplier=2, dropout=0.5, weight_decay=5e-5, include_top=True, weights=None, input_tensor=None, pooling=None, classes=1000, default_size=None, ): """Instantiates a NASNet architecture. Note that only TensorFlow is supported for now, therefore it only works with the data format `image_data_format='channels_last'` in your Keras config at `~/.keras/keras.json`. # Arguments input_shape: optional shape tuple, only to be specified if `include_top` is False (otherwise the input shape has to be `(331, 331, 3)` for NASNetLarge or `(224, 224, 3)` for NASNetMobile It should have exactly 3 inputs channels, and width and height should be no smaller than 32. E.g. `(224, 224, 3)` would be one valid value. penultimate_filters: number of filters in the penultimate layer. NASNet models use the notation `NASNet (N @ P)`, where: - N is the number of blocks - P is the number of penultimate filters nb_blocks: number of repeated blocks of the NASNet model. NASNet models use the notation `NASNet (N @ P)`, where: - N is the number of blocks - P is the number of penultimate filters stem_filters: number of filters in the initial stem block skip_reduction: Whether to skip the reduction step at the tail end of the network. Set to `False` for CIFAR models. use_auxiliary_branch: Whether to use the auxiliary branch during training or evaluation. filters_multiplier: controls the width of the network. - If `filters_multiplier` < 1.0, proportionally decreases the number of filters in each layer. - If `filters_multiplier` > 1.0, proportionally increases the number of filters in each layer. - If `filters_multiplier` = 1, default number of filters from the paper are used at each layer. dropout: dropout rate weight_decay: l2 regularization weight include_top: whether to include the fully-connected layer at the top of the network. weights: `None` (random initialization) or `imagenet` (ImageNet weights) input_tensor: optional Keras tensor (i.e. output of `layers.Input()`) to use as image input for the model. pooling: Optional pooling mode for feature extraction when `include_top` is `False`. - `None` means that the output of the model will be the 4D tensor output of the last convolutional layer. - `avg` means that global average pooling will be applied to the output of the last convolutional layer, and thus the output of the model will be a 2D tensor. - `max` means that global max pooling will be applied. classes: optional number of classes to classify images into, only to be specified if `include_top` is True, and if no `weights` argument is specified. default_size: specifies the default image size of the model # Returns A Keras model instance. # Raises ValueError: in case of invalid argument for `weights`, or invalid input shape. RuntimeError: If attempting to run this model with a backend that does not support separable convolutions. """ if K.backend() != "tensorflow": raise RuntimeError( "Only Tensorflow backend is currently supported, " "as other backends do not support " "separable convolution." ) if weights not in {"imagenet", None}: raise ValueError( "The `weights` argument should be either " "`None` (random initialization) or `imagenet` " "(pre-training on ImageNet)." ) if weights == "imagenet" and include_top and classes != 1000: raise ValueError( "If using `weights` as ImageNet with `include_top` " "as true, `classes` should be 1000" ) if default_size is None: default_size = 331 # Determine proper input shape and default size. input_shape = _obtain_input_shape( input_shape, default_size=default_size, min_size=32, data_format=K.image_data_format(), require_flatten=include_top, weights=weights, ) if K.image_data_format() != "channels_last": warnings.warn( "The NASNet family of models is only available " 'for the input data format "channels_last" ' "(width, height, channels). " "However your settings specify the default " 'data format "channels_first" (channels, width, height).' ' You should set `image_data_format="channels_last"` ' "in your Keras config located at ~/.keras/keras.json. " "The model being returned right now will expect inputs " 'to follow the "channels_last" data format.' ) K.set_image_data_format("channels_last") old_data_format = "channels_first" else: old_data_format = None if input_tensor is None: img_input = Input(shape=input_shape) else: if not K.is_keras_tensor(input_tensor): img_input = Input(tensor=input_tensor, shape=input_shape) else: img_input = input_tensor assert penultimate_filters % 24 == 0, ( "`penultimate_filters` needs to be divisible " "by 24." ) channel_dim = 1 if K.image_data_format() == "channels_first" else -1 filters = penultimate_filters // 24 if not skip_reduction: x = Conv2D( stem_filters, (3, 3), strides=(2, 2), padding="valid", use_bias=False, name="stem_conv1", kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(img_input) else: x = Conv2D( stem_filters, (3, 3), strides=(1, 1), padding="same", use_bias=False, name="stem_conv1", kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(img_input) x = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="stem_bn1" )(x) p = None if not skip_reduction: # imagenet / mobile mode x, p = _reduction_A( x, p, filters // (filters_multiplier ** 2), weight_decay, id="stem_1" ) x, p = _reduction_A( x, p, filters // filters_multiplier, weight_decay, id="stem_2" ) for i in range(nb_blocks): x, p = _normal_A(x, p, filters, weight_decay, id="%d" % (i)) x, p0 = _reduction_A( x, p, filters * filters_multiplier, weight_decay, id="reduce_%d" % (nb_blocks) ) p = p0 if not skip_reduction else p for i in range(nb_blocks): x, p = _normal_A( x, p, filters * filters_multiplier, weight_decay, id="%d" % (nb_blocks + i + 1), ) auxiliary_x = None if not skip_reduction: # imagenet / mobile mode if use_auxiliary_branch: auxiliary_x = _add_auxiliary_head(x, classes, weight_decay) x, p0 = _reduction_A( x, p, filters * filters_multiplier ** 2, weight_decay, id="reduce_%d" % (2 * nb_blocks), ) if skip_reduction: # CIFAR mode if use_auxiliary_branch: auxiliary_x = _add_auxiliary_head(x, classes, weight_decay) p = p0 if not skip_reduction else p for i in range(nb_blocks): x, p = _normal_A( x, p, filters * filters_multiplier ** 2, weight_decay, id="%d" % (2 * nb_blocks + i + 1), ) x = Activation("relu")(x) if include_top: x = GlobalAveragePooling2D()(x) x = Dropout(dropout)(x) x = Dense( classes, activation="softmax", kernel_regularizer=l2(weight_decay), name="predictions", )(x) else: if pooling == "avg": x = GlobalAveragePooling2D()(x) elif pooling == "max": x = GlobalMaxPooling2D()(x) # Ensure that the model takes into account # any potential predecessors of `input_tensor`. if input_tensor is not None: inputs = get_source_inputs(input_tensor) else: inputs = img_input # Create model. if use_auxiliary_branch: model = Model(inputs, [x, auxiliary_x], name="NASNet_with_auxiliary") else: model = Model(inputs, x, name="NASNet") # load weights if weights == "imagenet": if default_size == 224: # mobile version if include_top: if use_auxiliary_branch: weight_path = NASNET_MOBILE_WEIGHT_PATH_WITH_AUXULARY model_name = "nasnet_mobile_with_aux.h5" else: weight_path = NASNET_MOBILE_WEIGHT_PATH model_name = "nasnet_mobile.h5" else: if use_auxiliary_branch: weight_path = NASNET_MOBILE_WEIGHT_PATH_WITH_AUXULARY_NO_TOP model_name = "nasnet_mobile_with_aux_no_top.h5" else: weight_path = NASNET_MOBILE_WEIGHT_PATH_NO_TOP model_name = "nasnet_mobile_no_top.h5" weights_file = get_file(model_name, weight_path, cache_subdir="models") model.load_weights(weights_file, by_name=True) elif default_size == 331: # large version if include_top: if use_auxiliary_branch: weight_path = NASNET_LARGE_WEIGHT_PATH_WITH_auxiliary model_name = "nasnet_large_with_aux.h5" else: weight_path = NASNET_LARGE_WEIGHT_PATH model_name = "nasnet_large.h5" else: if use_auxiliary_branch: weight_path = NASNET_LARGE_WEIGHT_PATH_WITH_auxiliary_NO_TOP model_name = "nasnet_large_with_aux_no_top.h5" else: weight_path = NASNET_LARGE_WEIGHT_PATH_NO_TOP model_name = "nasnet_large_no_top.h5" weights_file = get_file(model_name, weight_path, cache_subdir="models") model.load_weights(weights_file, by_name=True) else: raise ValueError( "ImageNet weights can only be loaded on NASNetLarge or NASNetMobile" ) if old_data_format: K.set_image_data_format(old_data_format) return model def NASNetLarge( input_shape=(331, 331, 3), dropout=0.5, weight_decay=5e-5, use_auxiliary_branch=False, include_top=True, weights="imagenet", input_tensor=None, pooling=None, classes=1000, ): """Instantiates a NASNet architecture in ImageNet mode. Note that only TensorFlow is supported for now, therefore it only works with the data format `image_data_format='channels_last'` in your Keras config at `~/.keras/keras.json`. # Arguments input_shape: optional shape tuple, only to be specified if `include_top` is False (otherwise the input shape has to be `(331, 331, 3)` for NASNetLarge. It should have exactly 3 inputs channels, and width and height should be no smaller than 32. E.g. `(224, 224, 3)` would be one valid value. use_auxiliary_branch: Whether to use the auxiliary branch during training or evaluation. dropout: dropout rate weight_decay: l2 regularization weight include_top: whether to include the fully-connected layer at the top of the network. weights: `None` (random initialization) or `imagenet` (ImageNet weights) input_tensor: optional Keras tensor (i.e. output of `layers.Input()`) to use as image input for the model. pooling: Optional pooling mode for feature extraction when `include_top` is `False`. - `None` means that the output of the model will be the 4D tensor output of the last convolutional layer. - `avg` means that global average pooling will be applied to the output of the last convolutional layer, and thus the output of the model will be a 2D tensor. - `max` means that global max pooling will be applied. classes: optional number of classes to classify images into, only to be specified if `include_top` is True, and if no `weights` argument is specified. default_size: specifies the default image size of the model # Returns A Keras model instance. # Raises ValueError: in case of invalid argument for `weights`, or invalid input shape. RuntimeError: If attempting to run this model with a backend that does not support separable convolutions. """ global _BN_DECAY, _BN_EPSILON _BN_DECAY = 0.9997 _BN_EPSILON = 1e-3 return NASNet( input_shape, penultimate_filters=4032, nb_blocks=6, stem_filters=96, skip_reduction=False, use_auxiliary_branch=use_auxiliary_branch, filters_multiplier=2, dropout=dropout, weight_decay=weight_decay, include_top=include_top, weights=weights, input_tensor=input_tensor, pooling=pooling, classes=classes, default_size=331, ) def NASNetMobile( input_shape=(224, 224, 3), dropout=0.5, weight_decay=4e-5, use_auxiliary_branch=False, include_top=True, weights="imagenet", input_tensor=None, pooling=None, classes=1000, ): """Instantiates a NASNet architecture in Mobile ImageNet mode. Note that only TensorFlow is supported for now, therefore it only works with the data format `image_data_format='channels_last'` in your Keras config at `~/.keras/keras.json`. # Arguments input_shape: optional shape tuple, only to be specified if `include_top` is False (otherwise the input shape has to be `(224, 224, 3)` for NASNetMobile It should have exactly 3 inputs channels, and width and height should be no smaller than 32. E.g. `(224, 224, 3)` would be one valid value. use_auxiliary_branch: Whether to use the auxiliary branch during training or evaluation. dropout: dropout rate weight_decay: l2 regularization weight include_top: whether to include the fully-connected layer at the top of the network. weights: `None` (random initialization) or `imagenet` (ImageNet weights) input_tensor: optional Keras tensor (i.e. output of `layers.Input()`) to use as image input for the model. pooling: Optional pooling mode for feature extraction when `include_top` is `False`. - `None` means that the output of the model will be the 4D tensor output of the last convolutional layer. - `avg` means that global average pooling will be applied to the output of the last convolutional layer, and thus the output of the model will be a 2D tensor. - `max` means that global max pooling will be applied. classes: optional number of classes to classify images into, only to be specified if `include_top` is True, and if no `weights` argument is specified. default_size: specifies the default image size of the model # Returns A Keras model instance. # Raises ValueError: in case of invalid argument for `weights`, or invalid input shape. RuntimeError: If attempting to run this model with a backend that does not support separable convolutions. """ global _BN_DECAY, _BN_EPSILON _BN_DECAY = 0.9997 _BN_EPSILON = 1e-3 return NASNet( input_shape, penultimate_filters=1056, nb_blocks=4, stem_filters=32, skip_reduction=False, use_auxiliary_branch=use_auxiliary_branch, filters_multiplier=2, dropout=dropout, weight_decay=weight_decay, include_top=include_top, weights=weights, input_tensor=input_tensor, pooling=pooling, classes=classes, default_size=224, ) def NASNetCIFAR( input_shape=(32, 32, 3), dropout=0.0, weight_decay=5e-4, use_auxiliary_branch=False, include_top=True, weights=None, input_tensor=None, pooling=None, classes=10, ): """Instantiates a NASNet architecture in CIFAR mode. Note that only TensorFlow is supported for now, therefore it only works with the data format `image_data_format='channels_last'` in your Keras config at `~/.keras/keras.json`. # Arguments input_shape: optional shape tuple, only to be specified if `include_top` is False (otherwise the input shape has to be `(32, 32, 3)` for NASNetMobile It should have exactly 3 inputs channels, and width and height should be no smaller than 32. E.g. `(32, 32, 3)` would be one valid value. use_auxiliary_branch: Whether to use the auxiliary branch during training or evaluation. dropout: dropout rate weight_decay: l2 regularization weight include_top: whether to include the fully-connected layer at the top of the network. weights: `None` (random initialization) or `imagenet` (ImageNet weights) input_tensor: optional Keras tensor (i.e. output of `layers.Input()`) to use as image input for the model. pooling: Optional pooling mode for feature extraction when `include_top` is `False`. - `None` means that the output of the model will be the 4D tensor output of the last convolutional layer. - `avg` means that global average pooling will be applied to the output of the last convolutional layer, and thus the output of the model will be a 2D tensor. - `max` means that global max pooling will be applied. classes: optional number of classes to classify images into, only to be specified if `include_top` is True, and if no `weights` argument is specified. default_size: specifies the default image size of the model # Returns A Keras model instance. # Raises ValueError: in case of invalid argument for `weights`, or invalid input shape. RuntimeError: If attempting to run this model with a backend that does not support separable convolutions. """ global _BN_DECAY, _BN_EPSILON _BN_DECAY = 0.9 _BN_EPSILON = 1e-5 return NASNet( input_shape, penultimate_filters=768, nb_blocks=6, stem_filters=32, skip_reduction=True, use_auxiliary_branch=use_auxiliary_branch, filters_multiplier=2, dropout=dropout, weight_decay=weight_decay, include_top=include_top, weights=weights, input_tensor=input_tensor, pooling=pooling, classes=classes, default_size=224, ) def _separable_conv_block( ip, filters, kernel_size=(3, 3), strides=(1, 1), weight_decay=5e-5, id=None ): """Adds 2 blocks of [relu-separable conv-batchnorm] # Arguments: ip: input tensor filters: number of output filters per layer kernel_size: kernel size of separable convolutions strides: strided convolution for downsampling weight_decay: l2 regularization weight id: string id # Returns: a Keras tensor """ channel_dim = 1 if K.image_data_format() == "channels_first" else -1 with K.name_scope("separable_conv_block_%s" % id): x = Activation("relu")(ip) x = SeparableConv2D( filters, kernel_size, strides=strides, name="separable_conv_1_%s" % id, padding="same", use_bias=False, kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(x) x = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="separable_conv_1_bn_%s" % (id), )(x) x = Activation("relu")(x) x = SeparableConv2D( filters, kernel_size, name="separable_conv_2_%s" % id, padding="same", use_bias=False, kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(x) x = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="separable_conv_2_bn_%s" % (id), )(x) return x def _adjust_block(p, ip, filters, weight_decay=5e-5, id=None): """ Adjusts the input `p` to match the shape of the `input` or situations where the output number of filters needs to be changed # Arguments: p: input tensor which needs to be modified ip: input tensor whose shape needs to be matched filters: number of output filters to be matched weight_decay: l2 regularization weight id: string id # Returns: an adjusted Keras tensor """ channel_dim = 1 if K.image_data_format() == "channels_first" else -1 img_dim = 2 if K.image_data_format() == "channels_first" else -2 with K.name_scope("adjust_block"): if p is None: p = ip elif p._keras_shape[img_dim] != ip._keras_shape[img_dim]: with K.name_scope("adjust_reduction_block_%s" % id): p = Activation("relu", name="adjust_relu_1_%s" % id)(p) p1 = AveragePooling2D( (1, 1), strides=(2, 2), padding="valid", name="adjust_avg_pool_1_%s" % id, )(p) p1 = Conv2D( filters // 2, (1, 1), padding="same", use_bias=False, kernel_regularizer=l2(weight_decay), name="adjust_conv_1_%s" % id, kernel_initializer="he_normal", )(p1) p2 = ZeroPadding2D(padding=((0, 1), (0, 1)))(p) p2 = Cropping2D(cropping=((1, 0), (1, 0)))(p2) p2 = AveragePooling2D( (1, 1), strides=(2, 2), padding="valid", name="adjust_avg_pool_2_%s" % id, )(p2) p2 = Conv2D( filters // 2, (1, 1), padding="same", use_bias=False, kernel_regularizer=l2(weight_decay), name="adjust_conv_2_%s" % id, kernel_initializer="he_normal", )(p2) p = concatenate([p1, p2], axis=channel_dim) p = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="adjust_bn_%s" % id, )(p) elif p._keras_shape[channel_dim] != filters: with K.name_scope("adjust_projection_block_%s" % id): p = Activation("relu")(p) p = Conv2D( filters, (1, 1), strides=(1, 1), padding="same", name="adjust_conv_projection_%s" % id, use_bias=False, kernel_regularizer=l2(weight_decay), kernel_initializer="he_normal", )(p) p = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="adjust_bn_%s" % id, )(p) return p def _normal_A(ip, p, filters, weight_decay=5e-5, id=None): """Adds a Normal cell for NASNet-A (Fig. 4 in the paper) # Arguments: ip: input tensor `x` p: input tensor `p` filters: number of output filters weight_decay: l2 regularization weight id: string id # Returns: a Keras tensor """ channel_dim = 1 if K.image_data_format() == "channels_first" else -1 with K.name_scope("normal_A_block_%s" % id): p = _adjust_block(p, ip, filters, weight_decay, id) h = Activation("relu")(ip) h = Conv2D( filters, (1, 1), strides=(1, 1), padding="same", name="normal_conv_1_%s" % id, use_bias=False, kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(h) h = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="normal_bn_1_%s" % id, )(h) with K.name_scope("block_1"): x1_1 = _separable_conv_block( h, filters, kernel_size=(5, 5), weight_decay=weight_decay, id="normal_left1_%s" % id, ) x1_2 = _separable_conv_block( p, filters, weight_decay=weight_decay, id="normal_right1_%s" % id ) x1 = add([x1_1, x1_2], name="normal_add_1_%s" % id) with K.name_scope("block_2"): x2_1 = _separable_conv_block( p, filters, (5, 5), weight_decay=weight_decay, id="normal_left2_%s" % id ) x2_2 = _separable_conv_block( p, filters, (3, 3), weight_decay=weight_decay, id="normal_right2_%s" % id, ) x2 = add([x2_1, x2_2], name="normal_add_2_%s" % id) with K.name_scope("block_3"): x3 = AveragePooling2D( (3, 3), strides=(1, 1), padding="same", name="normal_left3_%s" % (id) )(h) x3 = add([x3, p], name="normal_add_3_%s" % id) with K.name_scope("block_4"): x4_1 = AveragePooling2D( (3, 3), strides=(1, 1), padding="same", name="normal_left4_%s" % (id) )(p) x4_2 = AveragePooling2D( (3, 3), strides=(1, 1), padding="same", name="normal_right4_%s" % (id) )(p) x4 = add([x4_1, x4_2], name="normal_add_4_%s" % id) with K.name_scope("block_5"): x5 = _separable_conv_block( h, filters, weight_decay=weight_decay, id="normal_left5_%s" % id ) x5 = add([x5, h], name="normal_add_5_%s" % id) x = concatenate( [p, x1, x2, x3, x4, x5], axis=channel_dim, name="normal_concat_%s" % id ) return x, ip def _reduction_A(ip, p, filters, weight_decay=5e-5, id=None): """Adds a Reduction cell for NASNet-A (Fig. 4 in the paper) # Arguments: ip: input tensor `x` p: input tensor `p` filters: number of output filters weight_decay: l2 regularization weight id: string id # Returns: a Keras tensor """ """""" channel_dim = 1 if K.image_data_format() == "channels_first" else -1 with K.name_scope("reduction_A_block_%s" % id): p = _adjust_block(p, ip, filters, weight_decay, id) h = Activation("relu")(ip) h = Conv2D( filters, (1, 1), strides=(1, 1), padding="same", name="reduction_conv_1_%s" % id, use_bias=False, kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(h) h = BatchNormalization( axis=channel_dim, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="reduction_bn_1_%s" % id, )(h) with K.name_scope("block_1"): x1_1 = _separable_conv_block( h, filters, (5, 5), strides=(2, 2), weight_decay=weight_decay, id="reduction_left1_%s" % id, ) x1_2 = _separable_conv_block( p, filters, (7, 7), strides=(2, 2), weight_decay=weight_decay, id="reduction_1_%s" % id, ) x1 = add([x1_1, x1_2], name="reduction_add_1_%s" % id) with K.name_scope("block_2"): x2_1 = MaxPooling2D( (3, 3), strides=(2, 2), padding="same", name="reduction_left2_%s" % id )(h) x2_2 = _separable_conv_block( p, filters, (7, 7), strides=(2, 2), weight_decay=weight_decay, id="reduction_right2_%s" % id, ) x2 = add([x2_1, x2_2], name="reduction_add_2_%s" % id) with K.name_scope("block_3"): x3_1 = AveragePooling2D( (3, 3), strides=(2, 2), padding="same", name="reduction_left3_%s" % id )(h) x3_2 = _separable_conv_block( p, filters, (5, 5), strides=(2, 2), weight_decay=weight_decay, id="reduction_right3_%s" % id, ) x3 = add([x3_1, x3_2], name="reduction_add3_%s" % id) with K.name_scope("block_4"): x4 = AveragePooling2D( (3, 3), strides=(1, 1), padding="same", name="reduction_left4_%s" % id )(x1) x4 = add([x2, x4]) with K.name_scope("block_5"): x5_1 = _separable_conv_block( x1, filters, (3, 3), weight_decay=weight_decay, id="reduction_left4_%s" % id, ) x5_2 = MaxPooling2D( (3, 3), strides=(2, 2), padding="same", name="reduction_right5_%s" % id )(h) x5 = add([x5_1, x5_2], name="reduction_add4_%s" % id) x = concatenate( [x2, x3, x4, x5], axis=channel_dim, name="reduction_concat_%s" % id ) return x, ip def _add_auxiliary_head(x, classes, weight_decay): """Adds an auxiliary head for training the model From section A.7 "Training of ImageNet models" of the paper, all NASNet models are trained using an auxiliary classifier around 2/3 of the depth of the network, with a loss weight of 0.4 # Arguments x: input tensor classes: number of output classes weight_decay: l2 regularization weight # Returns a keras Tensor """ img_height = 1 if K.image_data_format() == "channels_last" else 2 img_width = 2 if K.image_data_format() == "channels_last" else 3 channel_axis = 1 if K.image_data_format() == "channels_first" else -1 with K.name_scope("auxiliary_branch"): auxiliary_x = Activation("relu")(x) auxiliary_x = AveragePooling2D( (5, 5), strides=(3, 3), padding="valid", name="aux_pool" )(auxiliary_x) auxiliary_x = Conv2D( 128, (1, 1), padding="same", use_bias=False, name="aux_conv_projection", kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), )(auxiliary_x) auxiliary_x = BatchNormalization( axis=channel_axis, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="aux_bn_projection", )(auxiliary_x) auxiliary_x = Activation("relu")(auxiliary_x) auxiliary_x = Conv2D( 768, (auxiliary_x._keras_shape[img_height], auxiliary_x._keras_shape[img_width]), padding="valid", use_bias=False, kernel_initializer="he_normal", kernel_regularizer=l2(weight_decay), name="aux_conv_reduction", )(auxiliary_x) auxiliary_x = BatchNormalization( axis=channel_axis, momentum=_BN_DECAY, epsilon=_BN_EPSILON, name="aux_bn_reduction", )(auxiliary_x) auxiliary_x = Activation("relu")(auxiliary_x) auxiliary_x = GlobalAveragePooling2D()(auxiliary_x) auxiliary_x = Dense( classes, activation="softmax", kernel_regularizer=l2(weight_decay), name="aux_predictions", )(auxiliary_x) return auxiliary_x if __name__ == "__main__": import tensorflow as tf sess = tf.Session() K.set_session(sess) model = NASNetLarge((331, 331, 3)) model.summary() writer = tf.summary.FileWriter("./logs/", graph=K.get_session().graph) writer.close() ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/neural-image-assessment/utils/score_utils.py ================================================ import numpy as np # calculate mean score for AVA dataset def mean_score(scores): si = np.arange(1, 11, 1) mean = np.sum(q * si, axis=1) return mean # calculate standard deviation of scores for AVA dataset def std_score(scores): si = np.arange(1, 11, 1) mean = mean_score(scores) std = np.sqrt(np.sum(((si - mean) ** 2) * scores)) return std ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/image feat. extraction/nn_image_features.py ================================================ # @kmike `s code # image feature extractions import numpy as np import pandas as pd import os from tqdm import tqdm import traceback from functools import partial os.environ["CUDA_VISIBLE_DEVICES"] = "0" # 3 CPU # 2 1060 # 0 1080Ti import tensorflow as tf from keras.backend.tensorflow_backend import set_session config = tf.ConfigProto() config.gpu_options.allow_growth = True set_session(tf.Session(config=config)) from keras.preprocessing import image from keras.applications import ( vgg16, vgg19, resnet50, inception_v3, inception_resnet_v2, xception, mobilenet, densenet, ) import config as cfg import utils @hdd_memory.cache def get_names_paths(images_dir): img_names = sorted(os.listdir(images_dir)) img_paths = [os.path.join(images_dir, name) for name in img_names] img_names = [name.split(".", 1)[0] for name in img_names] return img_paths, img_names def img_generator( img_paths, img_names, target_size, preprocess_func=None, batch_size=128 ): pos = 0 preprocess_func = preprocess_func or (lambda arg: arg) while True: try: names_batch = img_names[pos : pos + batch_size] path_batch = img_paths[pos : pos + batch_size] x = [ image.img_to_array(image.load_img(path, target_size=target_size)) for path in path_batch ] x = np.array(x) x = preprocess_func(x) yield pos, x, names_batch except Exception: traceback.print_exc() finally: pos += batch_size if pos >= len(img_paths): break def get_model_and_data(mode, model_name): if model_name == "vgg16": model = vgg16.VGG16(weights="imagenet", include_top=True) preprocess_func = partial(vgg16.preprocess_input, mode="tf") target_size = (224, 224) elif model_name == "vgg19": model = vgg19.VGG19(weights="imagenet", include_top=True) preprocess_func = partial(vgg19.preprocess_input, mode="tf") target_size = (224, 224) elif model_name == "resnet50": model = resnet50.ResNet50(weights="imagenet", include_top=True) preprocess_func = partial(resnet50.preprocess_input, mode="tf") target_size = (224, 224) elif model_name == "inception_v3": model = inception_v3.InceptionV3(weights="imagenet", include_top=True) preprocess_func = inception_v3.preprocess_input target_size = (299, 299) elif model_name == "inception_resnet_v2": model = inception_resnet_v2.InceptionResNetV2( weights="imagenet", include_top=True ) preprocess_func = inception_resnet_v2.preprocess_input target_size = (299, 299) elif model_name == "xception": model = xception.Xception(weights="imagenet", include_top=True) preprocess_func = xception.preprocess_input target_size = (299, 299) elif model_name == "mobilenet": model = mobilenet.MobileNet(weights="imagenet", include_top=True) preprocess_func = mobilenet.preprocess_input target_size = (224, 224) elif model_name.startswith("densenet"): model_type = int(model_name[len("densenet") :]) if model_type == 121: model = densenet.DenseNet121(weights="imagenet", include_top=True) elif model_type == 169: model = densenet.DenseNet169(weights="imagenet", include_top=True) elif model_type == 201: model = densenet.DenseNet201(weights="imagenet", include_top=True) else: raise ValueError(f"Got incorrect DenseNet model type ({model_type}).") preprocess_func = densenet.preprocess_input target_size = (224, 224) else: raise ValueError(f"Got unknown NN model ({model_name}).") if mode == "train": input_dir = cfg.TRAIN_IMAGES_DIR elif mode == "test": input_dir = cfg.TEST_IMAGES_DIR else: raise ValueError(f"Got unknown proc mode ({mode}).") output_file = cfg.NN_IMAGE_FEATURES[model_name][mode]["memmap"] return model, input_dir, output_file, preprocess_func, target_size def extract_features(model_name="vgg16", batch_size=64): def proc_dataset(mode): # create appropriate model and in/out data paths model, input_dir, output_file, preprocess_func, target_size = get_model_and_data( mode, model_name ) # run image features extraction img_paths, img_names = get_names_paths(input_dir) gen = img_generator( img_paths, img_names, target_size, preprocess_func=preprocess_func, batch_size=batch_size, ) features = np.memmap( output_file, dtype="float32", mode="w+", shape=(len(img_paths), 1000) ) for pos, x_test, names in tqdm(gen, total=len(img_paths) // batch_size + 1): features[pos : pos + batch_size, :] = model.predict(x_test) features.flush() del features proc_dataset("train") proc_dataset("test") def create_features_df(model_name="vgg16", mode="train"): if mode == "train": images_dir_path = cfg.TRAIN_IMAGES_DIR elif mode == "test": images_dir_path = cfg.TEST_IMAGES_DIR else: raise ValueError(f"Got unknown proc mode ({mode}).") features_file = cfg.NN_IMAGE_FEATURES[model_name][mode]["memmap"] df_file = cfg.NN_IMAGE_FEATURES[model_name][mode]["df"] df = pd.DataFrame() img_paths, img_names = get_names_paths(images_dir_path) df["image"] = img_names features = np.memmap( features_file, dtype="float32", mode="r", shape=(df.shape[0], 1000) ) for idx in tqdm(range(1000)): df[f"{model_name}_{idx}"] = features[:, idx] df.to_pickle(df_file, compression="gzip") ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/stem to SVD.py ================================================ #Thanks for the approach https://github.com/ML-Person/My-solution-to-Avito-Challenge-2018 (@nikita) import pandas as pd import numpy as np import gc import os import re import pickle import string from sklearn.model_selection import train_test_split from sklearn.metrics import mean_squared_error from sklearn.preprocessing import LabelEncoder from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer from scipy.sparse import hstack, csr_matrix import lightgbm as lgb # for text data from nltk.stem.snowball import SnowballStemmer from nltk.corpus import stopwords from sklearn.decomposition import TruncatedSVD import matplotlib.pyplot as plt import seaborn as sns sns.set() %matplotlib inline pd.set_option('max_columns', 84) import warnings warnings.filterwarnings('ignore') PATH_TO_DATA = '/Avito' traintrain == pdpd..read_csvread_cs (os.path.join(PATH_TO_DATA, 'train.csv')) test = pd.read_csv(os.path.join(PATH_TO_DATA, 'test.csv')) ''' item_id - Ad id. user_id - User id. region - Ad region. city - Ad city. parent_category_name - Top level ad category as classified by Avito's ad model. category_name - Fine grain ad category as classified by Avito's ad model. param_1 - Optional parameter from Avito's ad model. param_2 - Optional parameter from Avito's ad model. param_3 - Optional parameter from Avito's ad model. title - Ad title. description - Ad description. price - Ad price. item_seq_number - Ad sequential number for user. activation_date - Date ad was placed. user_type - User type. image - Id code of image. Ties to a jpg file in train_jpg. Not every ad has an image. image_top_1 - Avito's classification code for the image. deal_probability - The target variable. This is the likelihood that an ad actually sold something. It's not possible to verify every transaction with certainty, so this column's value can be any float from zero to one. ''' categorical = [ 'image_top_1', 'param_1', 'param_2', 'param_3', 'city', 'region', 'category_name', 'parent_category_name', 'user_type' ] # easy preprocessing text_cols = [ 'title', 'description', 'param_1', 'param_2', 'param_3', 'city', 'region', 'category_name', 'parent_category_name' ] for col in text_cols: for df in [train, test]: df[col] = df[col].str.replace(r"[^А-Яа-яA-Za-z0-9,!?@\'\`\"\_\n]", ' ') df[col].fillna("NA", inplace=True) df[col] = df[col].str.lower() forfor dfdf inin [[traintrain,, testtest]:]: dfdf[['len_description''len_de ] = df['description'].apply(lambda x: len(str(x))) df['num_desc_punct'] = df['description'].apply(lambda x: len([c for c in str(x) if c in string.punctuation])) / df['len_description'] for col in ['description', 'title']: df['num_words_' + col] = df[col].apply(lambda comment: len(comment.split())) df['num_unique_words_' + col] = df[col].apply(lambda comment: len(set(w for w in comment.split()))) # percentage of unique words df['words_vs_unique_title'] = df['num_unique_words_title'] / df['num_words_title'] * 100 df['words_vs_unique_description'] = df['num_unique_words_description'] / df['num_words_description'] * 100 # [DUMP] TRAIN + TEST# [DUMP] train.to_csv(os.path.join(PATH_TO_DATA, 'train_all_features.csv'), index=False, encoding='utf-8') test.to_csv(os.path.join(PATH_TO_DATA, 'test_all_features.csv'), index=False, encoding='utf-8') del train, test gc.collect() train = pd.read_csv(os.path.join(PATH_TO_DATA, 'train.csv')) test = pd.read_csv(os.path.join(PATH_TO_DATA, 'test.csv stemmer = SnowballStemmer("russian", ignore_stopwords=False) train['title_stemm'] = train['title'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) test['title_stemm'] = test['title'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) train['description_stemm'] = train['description'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) test['description_stemm'] = test['description'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) train['text'] = train['param_1'] + " " + train['param_2'] + " " + train['param_3'] + " " + \ train['city'] + " " + train['category_name'] + " " + train['parent_category_name'] test['text'] = test['param_1'] + " " + test['param_2'] + " " + test['param_3'] + " " + \ test['city'] + " " + test['category_name'] + " " + test['parent_category_name'] train['text_stemm'] = train['text'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) test['text_stemm'] = test['text'].apply(lambda string: ' '.join([stemmer.stem(w) for w in string.split()])) for df in [train, test]: df.drop(['title', 'description', 'text'], axis=1, inplace=True) #TF-IDF + SVD # CountVectorizer for 'title' title_tfidf = CountVectorizer(stop_words=stopwords.words('russian'), lowercase=True, token_pattern=r'\w{1,}', ngram_range=(1, 1)) full_tfidf = title_tfidf.fit_transform(train['title_stemm'].values.tolist() + test['title_stemm'].values.tolist()) train_title_tfidf = title_tfidf.transform(train['title_stemm'].values.tolist()) test_title_tfidf = title_tfidf.transform(test['title_stemm'].values.tolist()) ### SVD Components ### n_comp = 10 svd_obj = TruncatedSVD(n_components=n_comp, algorithm='arpack') svd_obj.fit(full_tfidf) train_svd = pd.DataFrame(svd_obj.transform(train_title_tfidf)) test_svd = pd.DataFrame(svd_obj.transform(test_title_tfidf)) train_svd.columns = ['svd_title_'+str(i+1) for i in range(n_comp)] test_svd.columns = ['svd_title_'+str(i+1) for i in range(n_comp)] train_svd['item_id'] = train['item_id'] test_svd['item_id'] = test['item_id'] # Merge and delete train = train.merge(train_svd, on='item_id', how='left') test = test.merge(test_svd, on='item_id', how='left') del full_tfidf, train_svd, test_svd gc.collect() # TF-IDF for 'description' desc_tfidf = TfidfVectorizer(stop_words=stopwords.words('russian'), token_pattern=r'\w{1,}', lowercase=True, ngram_range=(1, 2), norm='l2', smooth_idf=False, max_features=17000) full_tfidf = desc_tfidf.fit_transform(train['description_stemm'].values.tolist() + test['description_stemm'].values.tolist()) train_desc_tfidf = desc_tfidf.transform(train['description_stemm'].values.tolist()) test_desc_tfidf = desc_tfidf.transform(test['description_stemm'].values.tolist()) ### SVD Components ### n_comp = 10 svd_obj = TruncatedSVD(n_components=n_comp, algorithm='arpack') svd_obj.fit(full_tfidf) train_svd = pd.DataFrame(svd_obj.transform(train_desc_tfidf)) test_svd = pd.DataFrame(svd_obj.transform(test_desc_tfidf)) train_svd.columns = ['svd_description_'+str(i+1) for i in range(n_comp)] test_svd.columns = ['svd_description_'+str(i+1) for i in range(n_comp)] train_svd['item_id'] = train['item_id'] test_svd['item_id'] = test['item_id'] # Merge and delete train = train.merge(train_svd, on='item_id', how='left') test = test.merge(test_svd, on='item_id', how='left') del full_tfidf, train_svd, test_svd gc.collect() # [STACKING]# [STACK train_tfidf = csr_matrix(hstack([train_title_tfidf, train_desc_tfidf, train_text_tfidf])) test_tfidf = csr_matrix(hstack([test_title_tfidf, test_desc_tfidf, test_text_tfidf])) del train_title_tfidf, train_desc_tfidf, train_text_tfidf del test_title_tfidf, test_desc_tfidf, test_text_tfidf gc.collect() vocab = np.hstack([ title_tfidf.get_feature_names(), desc_tfidf.get_feature_names(), text_tfidf.get_feature_names() ]) [DUMP] TF-IDF pickle files + vocabulary with open(os.path.join(PATH_TO_DATA, 'train_tfidf.pkl'), 'wb') as train_tfidf_pkl: pickle.dump(train_tfidf, train_tfidf_pkl, protocol=2) with open(os.path.join(PATH_TO_DATA, 'test_tfidf.pkl'), 'wb') as test_tfidf_pkl: pickle.dump(test_tfidf, test_tfidf_pkl, protocol=2) with open(os.path.join(PATH_TO_DATA, 'vocab.pkl'), 'wb') as vocab_pkl: pickle.dump(vocab, vocab_pkl, protocol=2) del train, train_tfidf, test, test_tfidf, vocab gc.collect() ================================================ FILE: DEEP LEARNING/Kaggle Avito Demand Prediction Challenge/text embeddings.py ================================================ # @Kmike `s code # https://github.com/deepmipt/DeepPavlov/blob/a59703de60deda349fc39918a1fc1b242638b7f7/pretrained-vectors.md from tqdm import tqdm import numpy as np # linear algebra import pandas as pd # read embeding def embeding_reading(path): embeddings_index = {} f = open(path) for line in f: values = line.split(" ")[:-1] word = values[0] coefs = np.asarray(values[1:], dtype="float32") embeddings_index[word] = coefs f.close() return embeddings_index def text2features(embeddings_index, text): vec_stack = [] for w in nltk.word_tokenize(text.lower()): v = embeddings_index.get(w, None) if v is not None: vec_stack.append(v) if len(vec_stack) != 0: v_mean = np.mean(vec_stack, axis=0) else: v_mean = np.zeros(300) return v_mean def df_to_embed_features(df, column, embeddings_index): embed_size = 300 X = np.zeros((df.shape[0], embed_size), dtype="float32") for i, text in tqdm(enumerate(df[column])): X[i] = text2features(embeddings_index, text) return X path = "/mnt/nvme/jupyter/avito/embeding/ft_native_300_ru_wiki_lenta_lower_case.vec" embeddings_index = embeding_reading(path) X = df_to_embed_features(test_df, column="title", embeddings_index=embeddings_index) # 2nd aproach @artgor aproach def load_emb(embedding_path, tokenizer, max_features, default=False, embed_size=300): """Load embeddings.""" fasttext_model = FastText.load(embedding_path) word_index = tokenizer.word_index # my pretrained embeddings have different index, so need to add offset. if default: nb_words = min(max_features, len(word_index)) else: nb_words = min(max_features, len(word_index)) + 2 embedding_matrix = np.zeros((nb_words, embed_size)) for word, i in word_index.items(): if i >= max_features: continue try: embedding_vector = fasttext_model[word] except KeyError: embedding_vector = None if embedding_vector is not None: embedding_matrix[i] = embedding_vector return embedding_matrix embedding_matrix = nn_functions.load_emb( "f:/Avito/embeddings/avito_big_150m_sg1.w2v", tokenizer, max_features, embed_size ) ================================================ FILE: DEEP LEARNING/NLP/Kaggle Quora Insincere Questions Classification/3rd-place.py ================================================ from __future__ import absolute_import, division import os import time import numpy as np import pandas as pd import gensim from tqdm import tqdm from nltk.stem import PorterStemmer ps = PorterStemmer() from nltk.stem.lancaster import LancasterStemmer lc = LancasterStemmer() from nltk.stem import SnowballStemmer sb = SnowballStemmer("english") import gc from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.layers import ( Dense, Input, CuDNNLSTM, Embedding, Dropout, Activation, CuDNNGRU, Conv1D, ) from keras.layers import ( Bidirectional, GlobalMaxPool1D, GlobalMaxPooling1D, GlobalAveragePooling1D, ) from keras.layers import Input, Embedding, Dense, Conv2D, MaxPool2D, concatenate from keras.layers import Reshape, Flatten, Concatenate, Dropout, SpatialDropout1D from keras.optimizers import Adam from keras.models import Model from keras import backend as K from keras.engine.topology import Layer from keras import initializers, regularizers, constraints, optimizers, layers import sys from os.path import dirname # sys.path.append(dirname(dirname(__file__))) from keras import initializers from keras.engine import InputSpec, Layer from keras import backend as K import spacy # https://github.com/bfelbo/DeepMoji/blob/master/deepmoji/attlayer.py class AttentionWeightedAverage(Layer): """ Computes a weighted average of the different channels across timesteps. Uses 1 parameter pr. channel to compute the attention value for a single timestep. """ def __init__(self, return_attention=False, **kwargs): self.init = initializers.get("uniform") self.supports_masking = True self.return_attention = return_attention super(AttentionWeightedAverage, self).__init__(**kwargs) def build(self, input_shape): self.input_spec = [InputSpec(ndim=3)] assert len(input_shape) == 3 self.W = self.add_weight( shape=(input_shape[2], 1), name="{}_W".format(self.name), initializer=self.init, ) self.trainable_weights = [self.W] super(AttentionWeightedAverage, self).build(input_shape) def call(self, x, mask=None): # computes a probability distribution over the timesteps # uses 'max trick' for numerical stability # reshape is done to avoid issue with Tensorflow # and 1-dimensional weights logits = K.dot(x, self.W) x_shape = K.shape(x) logits = K.reshape(logits, (x_shape[0], x_shape[1])) ai = K.exp(logits - K.max(logits, axis=-1, keepdims=True)) # masked timesteps have zero weight if mask is not None: mask = K.cast(mask, K.floatx()) ai = ai * mask att_weights = ai / (K.sum(ai, axis=1, keepdims=True) + K.epsilon()) weighted_input = x * K.expand_dims(att_weights) result = K.sum(weighted_input, axis=1) if self.return_attention: return [result, att_weights] return result def get_output_shape_for(self, input_shape): return self.compute_output_shape(input_shape) def compute_output_shape(self, input_shape): output_len = input_shape[2] if self.return_attention: return [(input_shape[0], output_len), (input_shape[0], input_shape[1])] return (input_shape[0], output_len) def compute_mask(self, input, input_mask=None): if isinstance(input_mask, list): return [None] * len(input_mask) else: return None # https://www.kaggle.com/cpmpml/spell-checker-using-word2vec spell_model = gensim.models.KeyedVectors.load_word2vec_format( "../input/embeddings/wiki-news-300d-1M/wiki-news-300d-1M.vec" ) words = spell_model.index2word w_rank = {} for i, word in enumerate(words): w_rank[word] = i WORDS = w_rank # Use fast text as vocabulary def words(text): return re.findall(r"\w+", text.lower()) def P(word): "Probability of `word`." # use inverse of rank as proxy # returns 0 if the word isn't in the dictionary return -WORDS.get(word, 0) def correction(word): "Most probable spelling correction for word." return max(candidates(word), key=P) def candidates(word): "Generate possible spelling corrections for word." return known([word]) or known(edits1(word)) or [word] def known(words): "The subset of `words` that appear in the dictionary of WORDS." return set(w for w in words if w in WORDS) def edits1(word): "All edits that are one edit away from `word`." letters = "abcdefghijklmnopqrstuvwxyz" splits = [(word[:i], word[i:]) for i in range(len(word) + 1)] deletes = [L + R[1:] for L, R in splits if R] transposes = [L + R[1] + R[0] + R[2:] for L, R in splits if len(R) > 1] replaces = [L + c + R[1:] for L, R in splits if R for c in letters] inserts = [L + c + R for L, R in splits for c in letters] return set(deletes + transposes + replaces + inserts) def edits2(word): "All edits that are two edits away from `word`." return (e2 for e1 in edits1(word) for e2 in edits1(e1)) def singlify(word): return "".join( [letter for i, letter in enumerate(word) if i == 0 or letter != word[i - 1]] ) # modified version of # https://www.kaggle.com/sudalairajkumar/a-look-at-different-embeddings # https://www.kaggle.com/danofer/different-embeddings-with-attention-fork # https://www.kaggle.com/shujian/different-embeddings-with-attention-fork-fork def load_glove(word_dict, lemma_dict): EMBEDDING_FILE = "../input/embeddings/glove.840B.300d/glove.840B.300d.txt" def get_coefs(word, *arr): return word, np.asarray(arr, dtype="float32") embeddings_index = dict(get_coefs(*o.split(" ")) for o in open(EMBEDDING_FILE)) embed_size = 300 nb_words = len(word_dict) + 1 embedding_matrix = np.zeros((nb_words, embed_size), dtype=np.float32) unknown_vector = np.zeros((embed_size,), dtype=np.float32) - 1.0 print(unknown_vector[:5]) for key in tqdm(word_dict): word = key embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.lower() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.upper() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.capitalize() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = ps.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lc.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = sb.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lemma_dict[key] embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue if len(key) > 1: word = correction(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue embedding_matrix[word_dict[key]] = unknown_vector return embedding_matrix, nb_words def load_fasttext(word_dict, lemma_dict): EMBEDDING_FILE = "../input/embeddings/wiki-news-300d-1M/wiki-news-300d-1M.vec" def get_coefs(word, *arr): return word, np.asarray(arr, dtype="float32") embeddings_index = dict( get_coefs(*o.split(" ")) for o in open(EMBEDDING_FILE) if len(o) > 100 ) embed_size = 300 nb_words = len(word_dict) + 1 embedding_matrix = np.zeros((nb_words, embed_size), dtype=np.float32) unknown_vector = np.zeros((embed_size,), dtype=np.float32) - 1.0 print(unknown_vector[:5]) for key in tqdm(word_dict): word = key embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.lower() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.upper() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.capitalize() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = ps.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lc.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = sb.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lemma_dict[key] embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue if len(key) > 1: word = correction(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue embedding_matrix[word_dict[key]] = unknown_vector return embedding_matrix, nb_words def load_para(word_dict, lemma_dict): EMBEDDING_FILE = "../input/embeddings/paragram_300_sl999/paragram_300_sl999.txt" def get_coefs(word, *arr): return word, np.asarray(arr, dtype="float32") embeddings_index = dict( get_coefs(*o.split(" ")) for o in open(EMBEDDING_FILE, encoding="utf8", errors="ignore") if len(o) > 100 ) embed_size = 300 nb_words = len(word_dict) + 1 embedding_matrix = np.zeros((nb_words, embed_size), dtype=np.float32) unknown_vector = np.zeros((embed_size,), dtype=np.float32) - 1.0 print(unknown_vector[:5]) for key in tqdm(word_dict): word = key embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.lower() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.upper() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = key.capitalize() embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = ps.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lc.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = sb.stem(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue word = lemma_dict[key] embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue if len(key) > 1: word = correction(key) embedding_vector = embeddings_index.get(word) if embedding_vector is not None: embedding_matrix[word_dict[key]] = embedding_vector continue embedding_matrix[word_dict[key]] = unknown_vector return embedding_matrix, nb_words def build_model(embedding_matrix, nb_words, embedding_size=300): inp = Input(shape=(max_length,)) x = Embedding( nb_words, embedding_size, weights=[embedding_matrix], trainable=False )(inp) x = SpatialDropout1D(0.3)(x) x1 = Bidirectional(CuDNNLSTM(256, return_sequences=True))(x) x2 = Bidirectional(CuDNNGRU(128, return_sequences=True))(x1) max_pool1 = GlobalMaxPooling1D()(x1) max_pool2 = GlobalMaxPooling1D()(x2) conc = Concatenate()([max_pool1, max_pool2]) predictions = Dense(1, activation="sigmoid")(conc) model = Model(inputs=inp, outputs=predictions) adam = optimizers.Adam(lr=learning_rate) model.compile(optimizer=adam, loss="binary_crossentropy", metrics=["accuracy"]) return model start_time = time.time() print("Loading data ...") train = pd.read_csv("../input/train.csv").fillna(" ") test = pd.read_csv("../input/test.csv").fillna(" ") train_text = train["question_text"] test_text = test["question_text"] text_list = pd.concat([train_text, test_text]) y = train["target"].values num_train_data = y.shape[0] print("--- %s seconds ---" % (time.time() - start_time)) start_time = time.time() print("Spacy NLP ...") nlp = spacy.load("en_core_web_lg", disable=["parser", "ner", "tagger"]) nlp.vocab.add_flag( lambda s: s.lower() in spacy.lang.en.stop_words.STOP_WORDS, spacy.attrs.IS_STOP ) word_dict = {} word_index = 1 lemma_dict = {} docs = nlp.pipe(text_list, n_threads=2) word_sequences = [] for doc in tqdm(docs): word_seq = [] for token in doc: if (token.text not in word_dict) and (token.pos_ is not "PUNCT"): word_dict[token.text] = word_index word_index += 1 lemma_dict[token.text] = token.lemma_ if token.pos_ is not "PUNCT": word_seq.append(word_dict[token.text]) word_sequences.append(word_seq) del docs gc.collect() train_word_sequences = word_sequences[:num_train_data] test_word_sequences = word_sequences[num_train_data:] print("--- %s seconds ---" % (time.time() - start_time)) # hyperparameters max_length = 55 embedding_size = 600 learning_rate = 0.001 batch_size = 512 num_epoch = 4 train_word_sequences = pad_sequences( train_word_sequences, maxlen=max_length, padding="post" ) test_word_sequences = pad_sequences( test_word_sequences, maxlen=max_length, padding="post" ) print(train_word_sequences[:1]) print(test_word_sequences[:1]) pred_prob = np.zeros((len(test_word_sequences),), dtype=np.float32) start_time = time.time() print("Loading embedding matrix ...") embedding_matrix_glove, nb_words = load_glove(word_dict, lemma_dict) embedding_matrix_fasttext, nb_words = load_fasttext(word_dict, lemma_dict) embedding_matrix = np.concatenate( (embedding_matrix_glove, embedding_matrix_fasttext), axis=1 ) print("--- %s seconds ---" % (time.time() - start_time)) start_time = time.time() print("Start training ...") model = build_model(embedding_matrix, nb_words, embedding_size) model.fit( train_word_sequences, y, batch_size=batch_size, epochs=num_epoch - 1, verbose=2 ) pred_prob += 0.15 * np.squeeze( model.predict(test_word_sequences, batch_size=batch_size, verbose=2) ) model.fit(train_word_sequences, y, batch_size=batch_size, epochs=1, verbose=2) pred_prob += 0.35 * np.squeeze( model.predict(test_word_sequences, batch_size=batch_size, verbose=2) ) del model, embedding_matrix_fasttext, embedding_matrix gc.collect() K.clear_session() print("--- %s seconds ---" % (time.time() - start_time)) start_time = time.time() print("Loading embedding matrix ...") embedding_matrix_para, nb_words = load_para(word_dict, lemma_dict) embedding_matrix = np.concatenate( (embedding_matrix_glove, embedding_matrix_para), axis=1 ) print("--- %s seconds ---" % (time.time() - start_time)) start_time = time.time() print("Start training ...") model = build_model(embedding_matrix, nb_words, embedding_size) model.fit( train_word_sequences, y, batch_size=batch_size, epochs=num_epoch - 1, verbose=2 ) pred_prob += 0.15 * np.squeeze( model.predict(test_word_sequences, batch_size=batch_size, verbose=2) ) model.fit(train_word_sequences, y, batch_size=batch_size, epochs=1, verbose=2) pred_prob += 0.35 * np.squeeze( model.predict(test_word_sequences, batch_size=batch_size, verbose=2) ) print("--- %s seconds ---" % (time.time() - start_time)) submission = pd.DataFrame.from_dict({"qid": test["qid"]}) submission["prediction"] = (pred_prob > 0.35).astype(int) submission.to_csv("submission.csv", index=False) ================================================ FILE: DEEP LEARNING/NLP/Kaggle Quora Insincere Questions Classification/README.MD ================================================ ## Solution to Quora Insincere Questions Classification Link: https://www.kaggle.com/c/microsoft-malware-prediction The malware industry continues to be a well-organized, well-funded market dedicated to evading traditional security measures. Once a computer is infected by malware, criminals can hurt consumers and enterprises in many ways. With more than one billion enterprise and consumer customers, Microsoft takes this problem very seriously and is deeply invested in improving security. As one part of their overall strategy for doing so, Microsoft is challenging the data science community to develop techniques to predict if a machine will soon be hit with malware. As with their previous, Malware Challenge (2015), Microsoft is providing Kagglers with an unprecedented malware dataset to encourage open-source progress on effective techniques for predicting malware occurrences. Can you help protect more than one billion machines from damage BEFORE it happens? ================================================ FILE: DEEP LEARNING/NLP/Kaggle Quora Insincere Questions Classification/fix misspellings.py ================================================ import io import collections import matplotlib.pyplot as plt import nltk import enchant ​ words = [] with io.open('corpus.txt', 'r', encoding='utf-8') as f: for line in f: line = line.strip() words.extend(line.split()) ​ vocab = collections.Counter(words) vocab.most_common(10) ''' #output [('i', 174639), ('to', 127111), ('my', 84886), ('is', 69504), ('me', 67741), ('the', 63488), ('not', 51194), ('you', 50830), ('for', 47846), ('?', 45599)] ''' list(reversed(vocab.most_common()[-10:])) ''' #output [('酒店在haridwar', 1), ('谢谢', 1), ('谈', 1), ('看不懂', 1), ('的人##', 1), ('现在呢', 1), ('王建', 1), ('火大金一女', 1), ('李雙鈺', 1), ('拜拜', 1)] ''' #learning fasttext # $ fasttext skipgram -input corpus.txt -output model -minCount 1 -minn 3 -maxn 6 -lr 0.01 -dim 100 -ws 3 -epoch 10 -neg 20 from gensim.fasttext import FastText model = FastText.load_fasttext_format('model') print(model.wv.most_similar('recharge', topn=5)) print(model.wv.most_similar('reminder', topn=5)) print(model.wv.most_similar('thanks', topn=5)) ''' #output [('rechargecharge', 0.9973811507225037), ('rechargea', 0.9964320063591003), ('rechargedd', 0.9945225715637207), ('erecharge', 0.9935820698738098), ('rechargw', 0.9932199716567993)] [("reminder'⏰", 0.992865264415741), ('sk-reminder', 0.9927705526351929), ('myreminder', 0.992688775062561), ('reminderw', 0.9921447038650513), ('ofreminder', 0.992128312587738)] [('thanksd', 0.996020495891571), ('thanksll', 0.9954444169998169), ('thankseuy', 0.9953703880310059), ('thankss', 0.9946843385696411), ''' word_to_mistakes = collections.defaultdict(list) nonalphabetic = re.compile(r'[^a-zA-Z]') for word, freq in vocab.items(): if freq < 500 or len(word) <= 3 or nonalphabetic.search(word) is not None: # To keep this task simple, we will not try finding # spelling mistakes for words that occur less than 500 times # or have length less than equal to 3 characters # or have anything other than English alphabets continue # Query the fasttext model for 50 closest neighbors to the word similar_words = model.wv.most_similar(word, topn=50) for similar_word in results: if include_spell_mistake(word, similar_word, similarity_score): word_to_mistakes[word].append(similar_word) enchant_us = enchant.Dict('en_US') spell_mistake_min_frequency = 5 fasttext_min_similarity = 0.96 def include_spell_mistake(word, similar_word, score): """ Check if similar word passes some rules to be considered a spelling mistake Rules: 1. Similarity score should be greater than a threshold 2. Length of the word with spelling error should be greater than 3. 3. spelling mistake must occur at least some N times in the corpus 4. Must not be a correct English word. 5. First character of both correct spelling and wrong spelling should be same. 6. Has edit distance less than 2 """ edit_distance_threshold = 1 if len(word) <= 4 else 2 return (score > fasttext_min_similarity and len(similar_word) > 3 and vocab[similar_word] >= spell_mistake_min_frequency and not enchant_us.check(similar_word) and word[0] == similar_word[0] and nltk.edit_distance(word, similar_word) <= edit_distance_threshold) ''' Some rules are straightforward: Spelling mistake word vector must have high vector similarity with correct word’s vector, Spelling mistake word must occur at least 5 times in our corpus, It must have more than three characters It should not be a legit English word (we use Enchant which has a convenient dictionary check function). ''' #At this point, most of our work is done, let’s check word_to_mistakes: ''' print(list(word_to_mistakes.items())[:10]) [ ('want', ['wann', 'wanto', 'wanr', 'wany']), ('have', ['havea', 'havr']), ('this', ['thiss', 'thise']), ('please', ['pleasee', 'pleasr', 'pleasw', 'pleaseee', 'pleae', 'pleaae']), ('number', ['numbe', 'numbet', 'numbee', 'numbr']), ('call', ['calll']), ('will', ['willl', 'wiill']), ('account', ['aaccount', 'acccount', 'accouny', 'accoun', 'acount', 'accout', 'acoount']), ('match', ['matche', 'matchs', 'matchh', 'matcj', 'matcg', 'matc', 'matcha']), ('recharge', ['rechargr', 'recharg', 'rechage', 'recharege', 'recharje', 'recharhe', 'rechare']) ] ''' #an inverted index for fast lookup: inverted_index = {} for word, mistakes in word_to_mistakes.items(): for mistake in mistakes: if mistake != word: inverted_index[mistake] = word ''' However, this method is not entirely accurate. Very common proper nouns can still slip through the rules and end up being corrected when they shouldn’t be. A manual inspection must still be done once to remove errors. Another drawback is spelling mistakes that never occurred in the corpus will not have a correction in the index. Nevertheless, this was a fun experiment. ''' ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Next Chars pytorch/Char level RNN/data/anna.txt ================================================ Chapter 1 Happy families are all alike; every unhappy family is unhappy in its own way. Everything was in confusion in the Oblonskys' house. The wife had discovered that the husband was carrying on an intrigue with a French girl, who had been a governess in their family, and she had announced to her husband that she could not go on living in the same house with him. This position of affairs had now lasted three days, and not only the husband and wife themselves, but all the members of their family and household, were painfully conscious of it. Every person in the house felt that there was no sense in their living together, and that the stray people brought together by chance in any inn had more in common with one another than they, the members of the family and household of the Oblonskys. The wife did not leave her own room, the husband had not been at home for three days. The children ran wild all over the house; the English governess quarreled with the housekeeper, and wrote to a friend asking her to look out for a new situation for her; the man-cook had walked off the day before just at dinner time; the kitchen-maid, and the coachman had given warning. Three days after the quarrel, Prince Stepan Arkadyevitch Oblonsky--Stiva, as he was called in the fashionable world--woke up at his usual hour, that is, at eight o'clock in the morning, not in his wife's bedroom, but on the leather-covered sofa in his study. He turned over his stout, well-cared-for person on the springy sofa, as though he would sink into a long sleep again; he vigorously embraced the pillow on the other side and buried his face in it; but all at once he jumped up, sat up on the sofa, and opened his eyes. "Yes, yes, how was it now?" he thought, going over his dream. "Now, how was it? To be sure! Alabin was giving a dinner at Darmstadt; no, not Darmstadt, but something American. Yes, but then, Darmstadt was in America. Yes, Alabin was giving a dinner on glass tables, and the tables sang, _Il mio tesoro_--not _Il mio tesoro_ though, but something better, and there were some sort of little decanters on the table, and they were women, too," he remembered. Stepan Arkadyevitch's eyes twinkled gaily, and he pondered with a smile. "Yes, it was nice, very nice. There was a great deal more that was delightful, only there's no putting it into words, or even expressing it in one's thoughts awake." And noticing a gleam of light peeping in beside one of the serge curtains, he cheerfully dropped his feet over the edge of the sofa, and felt about with them for his slippers, a present on his last birthday, worked for him by his wife on gold-colored morocco. And, as he had done every day for the last nine years, he stretched out his hand, without getting up, towards the place where his dressing-gown always hung in his bedroom. And thereupon he suddenly remembered that he was not sleeping in his wife's room, but in his study, and why: the smile vanished from his face, he knitted his brows. "Ah, ah, ah! Oo!..." he muttered, recalling everything that had happened. And again every detail of his quarrel with his wife was present to his imagination, all the hopelessness of his position, and worst of all, his own fault. "Yes, she won't forgive me, and she can't forgive me. And the most awful thing about it is that it's all my fault--all my fault, though I'm not to blame. That's the point of the whole situation," he reflected. "Oh, oh, oh!" he kept repeating in despair, as he remembered the acutely painful sensations caused him by this quarrel. Most unpleasant of all was the first minute when, on coming, happy and good-humored, from the theater, with a huge pear in his hand for his wife, he had not found his wife in the drawing-room, to his surprise had not found her in the study either, and saw her at last in her bedroom with the unlucky letter that revealed everything in her hand. She, his Dolly, forever fussing and worrying over household details, and limited in her ideas, as he considered, was sitting perfectly still with the letter in her hand, looking at him with an expression of horror, despair, and indignation. "What's this? this?" she asked, pointing to the letter. And at this recollection, Stepan Arkadyevitch, as is so often the case, was not so much annoyed at the fact itself as at the way in which he had met his wife's words. There happened to him at that instant what does happen to people when they are unexpectedly caught in something very disgraceful. He did not succeed in adapting his face to the position in which he was placed towards his wife by the discovery of his fault. Instead of being hurt, denying, defending himself, begging forgiveness, instead of remaining indifferent even--anything would have been better than what he did do--his face utterly involuntarily (reflex spinal action, reflected Stepan Arkadyevitch, who was fond of physiology)--utterly involuntarily assumed its habitual, good-humored, and therefore idiotic smile. This idiotic smile he could not forgive himself. Catching sight of that smile, Dolly shuddered as though at physical pain, broke out with her characteristic heat into a flood of cruel words, and rushed out of the room. Since then she had refused to see her husband. "It's that idiotic smile that's to blame for it all," thought Stepan Arkadyevitch. "But what's to be done? What's to be done?" he said to himself in despair, and found no answer. Chapter 2 Stepan Arkadyevitch was a truthful man in his relations with himself. He was incapable of deceiving himself and persuading himself that he repented of his conduct. He could not at this date repent of the fact that he, a handsome, susceptible man of thirty-four, was not in love with his wife, the mother of five living and two dead children, and only a year younger than himself. All he repented of was that he had not succeeded better in hiding it from his wife. But he felt all the difficulty of his position and was sorry for his wife, his children, and himself. Possibly he might have managed to conceal his sins better from his wife if he had anticipated that the knowledge of them would have had such an effect on her. He had never clearly thought out the subject, but he had vaguely conceived that his wife must long ago have suspected him of being unfaithful to her, and shut her eyes to the fact. He had even supposed that she, a worn-out woman no longer young or good-looking, and in no way remarkable or interesting, merely a good mother, ought from a sense of fairness to take an indulgent view. It had turned out quite the other way. "Oh, it's awful! oh dear, oh dear! awful!" Stepan Arkadyevitch kept repeating to himself, and he could think of nothing to be done. "And how well things were going up till now! how well we got on! She was contented and happy in her children; I never interfered with her in anything; I let her manage the children and the house just as she liked. It's true it's bad _her_ having been a governess in our house. That's bad! There's something common, vulgar, in flirting with one's governess. But what a governess!" (He vividly recalled the roguish black eyes of Mlle. Roland and her smile.) "But after all, while she was in the house, I kept myself in hand. And the worst of it all is that she's already ... it seems as if ill-luck would have it so! Oh, oh! But what, what is to be done?" There was no solution, but that universal solution which life gives to all questions, even the most complex and insoluble. That answer is: one must live in the needs of the day--that is, forget oneself. To forget himself in sleep was impossible now, at least till nighttime; he could not go back now to the music sung by the decanter-women; so he must forget himself in the dream of daily life. "Then we shall see," Stepan Arkadyevitch said to himself, and getting up he put on a gray dressing-gown lined with blue silk, tied the tassels in a knot, and, drawing a deep breath of air into his broad, bare chest, he walked to the window with his usual confident step, turning out his feet that carried his full frame so easily. He pulled up the blind and rang the bell loudly. It was at once answered by the appearance of an old friend, his valet, Matvey, carrying his clothes, his boots, and a telegram. Matvey was followed by the barber with all the necessaries for shaving. "Are there any papers from the office?" asked Stepan Arkadyevitch, taking the telegram and seating himself at the looking-glass. "On the table," replied Matvey, glancing with inquiring sympathy at his master; and, after a short pause, he added with a sly smile, "They've sent from the carriage-jobbers." Stepan Arkadyevitch made no reply, he merely glanced at Matvey in the looking-glass. In the glance, in which their eyes met in the looking-glass, it was clear that they understood one another. Stepan Arkadyevitch's eyes asked: "Why do you tell me that? don't you know?" Matvey put his hands in his jacket pockets, thrust out one leg, and gazed silently, good-humoredly, with a faint smile, at his master. "I told them to come on Sunday, and till then not to trouble you or themselves for nothing," he said. He had obviously prepared the sentence beforehand. Stepan Arkadyevitch saw Matvey wanted to make a joke and attract attention to himself. Tearing open the telegram, he read it through, guessing at the words, misspelt as they always are in telegrams, and his face brightened. "Matvey, my sister Anna Arkadyevna will be here tomorrow," he said, checking for a minute the sleek, plump hand of the barber, cutting a pink path through his long, curly whiskers. "Thank God!" said Matvey, showing by this response that he, like his master, realized the significance of this arrival--that is, that Anna Arkadyevna, the sister he was so fond of, might bring about a reconciliation between husband and wife. "Alone, or with her husband?" inquired Matvey. Stepan Arkadyevitch could not answer, as the barber was at work on his upper lip, and he raised one finger. Matvey nodded at the looking-glass. "Alone. Is the room to be got ready upstairs?" "Inform Darya Alexandrovna: where she orders." "Darya Alexandrovna?" Matvey repeated, as though in doubt. "Yes, inform her. Here, take the telegram; give it to her, and then do what she tells you." "You want to try it on," Matvey understood, but he only said, "Yes sir." Stepan Arkadyevitch was already washed and combed and ready to be dressed, when Matvey, stepping deliberately in his creaky boots, came back into the room with the telegram in his hand. The barber had gone. "Darya Alexandrovna told me to inform you that she is going away. Let him do--that is you--do as he likes," he said, laughing only with his eyes, and putting his hands in his pockets, he watched his master with his head on one side. Stepan Arkadyevitch was silent a minute. Then a good-humored and rather pitiful smile showed itself on his handsome face. "Eh, Matvey?" he said, shaking his head. "It's all right, sir; she will come round," said Matvey. "Come round?" "Yes, sir." "Do you think so? Who's there?" asked Stepan Arkadyevitch, hearing the rustle of a woman's dress at the door. "It's I," said a firm, pleasant, woman's voice, and the stern, pockmarked face of Matrona Philimonovna, the nurse, was thrust in at the doorway. "Well, what is it, Matrona?" queried Stepan Arkadyevitch, going up to her at the door. Although Stepan Arkadyevitch was completely in the wrong as regards his wife, and was conscious of this himself, almost every one in the house (even the nurse, Darya Alexandrovna's chief ally) was on his side. "Well, what now?" he asked disconsolately. "Go to her, sir; own your fault again. Maybe God will aid you. She is suffering so, it's sad to see her; and besides, everything in the house is topsy-turvy. You must have pity, sir, on the children. Beg her forgiveness, sir. There's no help for it! One must take the consequences..." "But she won't see me." "You do your part. God is merciful; pray to God, sir, pray to God." "Come, that'll do, you can go," said Stepan Arkadyevitch, blushing suddenly. "Well now, do dress me." He turned to Matvey and threw off his dressing-gown decisively. Matvey was already holding up the shirt like a horse's collar, and, blowing off some invisible speck, he slipped it with obvious pleasure over the well-groomed body of his master. Chapter 3 When he was dressed, Stepan Arkadyevitch sprinkled some scent on himself, pulled down his shirt-cuffs, distributed into his pockets his cigarettes, pocketbook, matches, and watch with its double chain and seals, and shaking out his handkerchief, feeling himself clean, fragrant, healthy, and physically at ease, in spite of his unhappiness, he walked with a slight swing on each leg into the dining-room, where coffee was already waiting for him, and beside the coffee, letters and papers from the office. He read the letters. One was very unpleasant, from a merchant who was buying a forest on his wife's property. To sell this forest was absolutely essential; but at present, until he was reconciled with his wife, the subject could not be discussed. The most unpleasant thing of all was that his pecuniary interests should in this way enter into the question of his reconciliation with his wife. And the idea that he might be led on by his interests, that he might seek a reconciliation with his wife on account of the sale of the forest--that idea hurt him. When he had finished his letters, Stepan Arkadyevitch moved the office-papers close to him, rapidly looked through two pieces of business, made a few notes with a big pencil, and pushing away the papers, turned to his coffee. As he sipped his coffee, he opened a still damp morning paper, and began reading it. Stepan Arkadyevitch took in and read a liberal paper, not an extreme one, but one advocating the views held by the majority. And in spite of the fact that science, art, and politics had no special interest for him, he firmly held those views on all these subjects which were held by the majority and by his paper, and he only changed them when the majority changed them--or, more strictly speaking, he did not change them, but they imperceptibly changed of themselves within him. Stepan Arkadyevitch had not chosen his political opinions or his views; these political opinions and views had come to him of themselves, just as he did not choose the shapes of his hat and coat, but simply took those that were being worn. And for him, living in a certain society--owing to the need, ordinarily developed at years of discretion, for some degree of mental activity--to have views was just as indispensable as to have a hat. If there was a reason for his preferring liberal to conservative views, which were held also by many of his circle, it arose not from his considering liberalism more rational, but from its being in closer accordance with his manner of life. The liberal party said that in Russia everything is wrong, and certainly Stepan Arkadyevitch had many debts and was decidedly short of money. The liberal party said that marriage is an institution quite out of date, and that it needs reconstruction; and family life certainly afforded Stepan Arkadyevitch little gratification, and forced him into lying and hypocrisy, which was so repulsive to his nature. The liberal party said, or rather allowed it to be understood, that religion is only a curb to keep in check the barbarous classes of the people; and Stepan Arkadyevitch could not get through even a short service without his legs aching from standing up, and could never make out what was the object of all the terrible and high-flown language about another world when life might be so very amusing in this world. And with all this, Stepan Arkadyevitch, who liked a joke, was fond of puzzling a plain man by saying that if he prided himself on his origin, he ought not to stop at Rurik and disown the first founder of his family--the monkey. And so Liberalism had become a habit of Stepan Arkadyevitch's, and he liked his newspaper, as he did his cigar after dinner, for the slight fog it diffused in his brain. He read the leading article, in which it was maintained that it was quite senseless in our day to raise an outcry that radicalism was threatening to swallow up all conservative elements, and that the government ought to take measures to crush the revolutionary hydra; that, on the contrary, "in our opinion the danger lies not in that fantastic revolutionary hydra, but in the obstinacy of traditionalism clogging progress," etc., etc. He read another article, too, a financial one, which alluded to Bentham and Mill, and dropped some innuendoes reflecting on the ministry. With his characteristic quickwittedness he caught the drift of each innuendo, divined whence it came, at whom and on what ground it was aimed, and that afforded him, as it always did, a certain satisfaction. But today that satisfaction was embittered by Matrona Philimonovna's advice and the unsatisfactory state of the household. He read, too, that Count Beist was rumored to have left for Wiesbaden, and that one need have no more gray hair, and of the sale of a light carriage, and of a young person seeking a situation; but these items of information did not give him, as usual, a quiet, ironical gratification. Having finished the paper, a second cup of coffee and a roll and butter, he got up, shaking the crumbs of the roll off his waistcoat; and, squaring his broad chest, he smiled joyously: not because there was anything particularly agreeable in his mind--the joyous smile was evoked by a good digestion. But this joyous smile at once recalled everything to him, and he grew thoughtful. Two childish voices (Stepan Arkadyevitch recognized the voices of Grisha, his youngest boy, and Tanya, his eldest girl) were heard outside the door. They were carrying something, and dropped it. "I told you not to sit passengers on the roof," said the little girl in English; "there, pick them up!" "Everything's in confusion," thought Stepan Arkadyevitch; "there are the children running about by themselves." And going to the door, he called them. They threw down the box, that represented a train, and came in to their father. The little girl, her father's favorite, ran up boldly, embraced him, and hung laughingly on his neck, enjoying as she always did the smell of scent that came from his whiskers. At last the little girl kissed his face, which was flushed from his stooping posture and beaming with tenderness, loosed her hands, and was about to run away again; but her father held her back. "How is mamma?" he asked, passing his hand over his daughter's smooth, soft little neck. "Good morning," he said, smiling to the boy, who had come up to greet him. He was conscious that he loved the boy less, and always tried to be fair; but the boy felt it, and did not respond with a smile to his father's chilly smile. "Mamma? She is up," answered the girl. Stepan Arkadyevitch sighed. "That means that she's not slept again all night," he thought. "Well, is she cheerful?" The little girl knew that there was a quarrel between her father and mother, and that her mother could not be cheerful, and that her father must be aware of this, and that he was pretending when he asked about it so lightly. And she blushed for her father. He at once perceived it, and blushed too. "I don't know," she said. "She did not say we must do our lessons, but she said we were to go for a walk with Miss Hoole to grandmamma's." "Well, go, Tanya, my darling. Oh, wait a minute, though," he said, still holding her and stroking her soft little hand. He took off the mantelpiece, where he had put it yesterday, a little box of sweets, and gave her two, picking out her favorites, a chocolate and a fondant. "For Grisha?" said the little girl, pointing to the chocolate. "Yes, yes." And still stroking her little shoulder, he kissed her on the roots of her hair and neck, and let her go. "The carriage is ready," said Matvey; "but there's some one to see you with a petition." "Been here long?" asked Stepan Arkadyevitch. "Half an hour." "How many times have I told you to tell me at once?" "One must let you drink your coffee in peace, at least," said Matvey, in the affectionately gruff tone with which it was impossible to be angry. "Well, show the person up at once," said Oblonsky, frowning with vexation. The petitioner, the widow of a staff captain Kalinin, came with a request impossible and unreasonable; but Stepan Arkadyevitch, as he generally did, made her sit down, heard her to the end attentively without interrupting her, and gave her detailed advice as to how and to whom to apply, and even wrote her, in his large, sprawling, good and legible hand, a confident and fluent little note to a personage who might be of use to her. Having got rid of the staff captain's widow, Stepan Arkadyevitch took his hat and stopped to recollect whether he had forgotten anything. It appeared that he had forgotten nothing except what he wanted to forget--his wife. "Ah, yes!" He bowed his head, and his handsome face assumed a harassed expression. "To go, or not to go!" he said to himself; and an inner voice told him he must not go, that nothing could come of it but falsity; that to amend, to set right their relations was impossible, because it was impossible to make her attractive again and able to inspire love, or to make him an old man, not susceptible to love. Except deceit and lying nothing could come of it now; and deceit and lying were opposed to his nature. "It must be some time, though: it can't go on like this," he said, trying to give himself courage. He squared his chest, took out a cigarette, took two whiffs at it, flung it into a mother-of-pearl ashtray, and with rapid steps walked through the drawing room, and opened the other door into his wife's bedroom. Chapter 4 Darya Alexandrovna, in a dressing jacket, and with her now scanty, once luxuriant and beautiful hair fastened up with hairpins on the nape of her neck, with a sunken, thin face and large, startled eyes, which looked prominent from the thinness of her face, was standing among a litter of all sorts of things scattered all over the room, before an open bureau, from which she was taking something. Hearing her husband's steps, she stopped, looking towards the door, and trying assiduously to give her features a severe and contemptuous expression. She felt she was afraid of him, and afraid of the coming interview. She was just attempting to do what she had attempted to do ten times already in these last three days--to sort out the children's things and her own, so as to take them to her mother's--and again she could not bring herself to do this; but now again, as each time before, she kept saying to herself, "that things cannot go on like this, that she must take some step" to punish him, put him to shame, avenge on him some little part at least of the suffering he had caused her. She still continued to tell herself that she should leave him, but she was conscious that this was impossible; it was impossible because she could not get out of the habit of regarding him as her husband and loving him. Besides this, she realized that if even here in her own house she could hardly manage to look after her five children properly, they would be still worse off where she was going with them all. As it was, even in the course of these three days, the youngest was unwell from being given unwholesome soup, and the others had almost gone without their dinner the day before. She was conscious that it was impossible to go away; but, cheating herself, she went on all the same sorting out her things and pretending she was going. Seeing her husband, she dropped her hands into the drawer of the bureau as though looking for something, and only looked round at him when he had come quite up to her. But her face, to which she tried to give a severe and resolute expression, betrayed bewilderment and suffering. "Dolly!" he said in a subdued and timid voice. He bent his head towards his shoulder and tried to look pitiful and humble, but for all that he was radiant with freshness and health. In a rapid glance she scanned his figure that beamed with health and freshness. "Yes, he is happy and content!" she thought; "while I.... And that disgusting good nature, which every one likes him for and praises--I hate that good nature of his," she thought. Her mouth stiffened, the muscles of the cheek contracted on the right side of her pale, nervous face. "What do you want?" she said in a rapid, deep, unnatural voice. "Dolly!" he repeated, with a quiver in his voice. "Anna is coming today." "Well, what is that to me? I can't see her!" she cried. "But you must, really, Dolly..." "Go away, go away, go away!" she shrieked, not looking at him, as though this shriek were called up by physical pain. Stepan Arkadyevitch could be calm when he thought of his wife, he could hope that she would _come round_, as Matvey expressed it, and could quietly go on reading his paper and drinking his coffee; but when he saw her tortured, suffering face, heard the tone of her voice, submissive to fate and full of despair, there was a catch in his breath and a lump in his throat, and his eyes began to shine with tears. "My God! what have I done? Dolly! For God's sake!.... You know...." He could not go on; there was a sob in his throat. She shut the bureau with a slam, and glanced at him. "Dolly, what can I say?.... One thing: forgive... Remember, cannot nine years of my life atone for an instant...." She dropped her eyes and listened, expecting what he would say, as it were beseeching him in some way or other to make her believe differently. "--instant of passion?" he said, and would have gone on, but at that word, as at a pang of physical pain, her lips stiffened again, and again the muscles of her right cheek worked. "Go away, go out of the room!" she shrieked still more shrilly, "and don't talk to me of your passion and your loathsomeness." She tried to go out, but tottered, and clung to the back of a chair to support herself. His face relaxed, his lips swelled, his eyes were swimming with tears. "Dolly!" he said, sobbing now; "for mercy's sake, think of the children; they are not to blame! I am to blame, and punish me, make me expiate my fault. Anything I can do, I am ready to do anything! I am to blame, no words can express how much I am to blame! But, Dolly, forgive me!" She sat down. He listened to her hard, heavy breathing, and he was unutterably sorry for her. She tried several times to begin to speak, but could not. He waited. "You remember the children, Stiva, to play with them; but I remember them, and know that this means their ruin," she said--obviously one of the phrases she had more than once repeated to herself in the course of the last few days. She had called him "Stiva," and he glanced at her with gratitude, and moved to take her hand, but she drew back from him with aversion. "I think of the children, and for that reason I would do anything in the world to save them, but I don't myself know how to save them. By taking them away from their father, or by leaving them with a vicious father--yes, a vicious father.... Tell me, after what ... has happened, can we live together? Is that possible? Tell me, eh, is it possible?" she repeated, raising her voice, "after my husband, the father of my children, enters into a love affair with his own children's governess?" "But what could I do? what could I do?" he kept saying in a pitiful voice, not knowing what he was saying, as his head sank lower and lower. "You are loathsome to me, repulsive!" she shrieked, getting more and more heated. "Your tears mean nothing! You have never loved me; you have neither heart nor honorable feeling! You are hateful to me, disgusting, a stranger--yes, a complete stranger!" With pain and wrath she uttered the word so terrible to herself--_stranger_. He looked at her, and the fury expressed in her face alarmed and amazed him. He did not understand how his pity for her exasperated her. She saw in him sympathy for her, but not love. "No, she hates me. She will not forgive me," he thought. "It is awful! awful!" he said. At that moment in the next room a child began to cry; probably it had fallen down. Darya Alexandrovna listened, and her face suddenly softened. She seemed to be pulling herself together for a few seconds, as though she did not know where she was, and what she was doing, and getting up rapidly, she moved towards the door. "Well, she loves my child," he thought, noticing the change of her face at the child's cry, "my child: how can she hate me?" "Dolly, one word more," he said, following her. "If you come near me, I will call in the servants, the children! They may all know you are a scoundrel! I am going away at once, and you may live here with your mistress!" And she went out, slamming the door. Stepan Arkadyevitch sighed, wiped his face, and with a subdued tread walked out of the room. "Matvey says she will come round; but how? I don't see the least chance of it. Ah, oh, how horrible it is! And how vulgarly she shouted," he said to himself, remembering her shriek and the words--"scoundrel" and "mistress." "And very likely the maids were listening! Horribly vulgar! horrible!" Stepan Arkadyevitch stood a few seconds alone, wiped his face, squared his chest, and walked out of the room. It was Friday, and in the dining room the German watchmaker was winding up the clock. Stepan Arkadyevitch remembered his joke about this punctual, bald watchmaker, "that the German was wound up for a whole lifetime himself, to wind up watches," and he smiled. Stepan Arkadyevitch was fond of a joke: "And maybe she will come round! That's a good expression, '_come round,_'" he thought. "I must repeat that." "Matvey!" he shouted. "Arrange everything with Darya in the sitting room for Anna Arkadyevna," he said to Matvey when he came in. "Yes, sir." Stepan Arkadyevitch put on his fur coat and went out onto the steps. "You won't dine at home?" said Matvey, seeing him off. "That's as it happens. But here's for the housekeeping," he said, taking ten roubles from his pocketbook. "That'll be enough." "Enough or not enough, we must make it do," said Matvey, slamming the carriage door and stepping back onto the steps. Darya Alexandrovna meanwhile having pacified the child, and knowing from the sound of the carriage that he had gone off, went back again to her bedroom. It was her solitary refuge from the household cares which crowded upon her directly she went out from it. Even now, in the short time she had been in the nursery, the English governess and Matrona Philimonovna had succeeded in putting several questions to her, which did not admit of delay, and which only she could answer: "What were the children to put on for their walk? Should they have any milk? Should not a new cook be sent for?" "Ah, let me alone, let me alone!" she said, and going back to her bedroom she sat down in the same place as she had sat when talking to her husband, clasping tightly her thin hands with the rings that slipped down on her bony fingers, and fell to going over in her memory all the conversation. "He has gone! But has he broken it off with her?" she thought. "Can it be he sees her? Why didn't I ask him! No, no, reconciliation is impossible. Even if we remain in the same house, we are strangers--strangers forever!" She repeated again with special significance the word so dreadful to her. "And how I loved him! my God, how I loved him!.... How I loved him! And now don't I love him? Don't I love him more than before? The most horrible thing is," she began, but did not finish her thought, because Matrona Philimonovna put her head in at the door. "Let us send for my brother," she said; "he can get a dinner anyway, or we shall have the children getting nothing to eat till six again, like yesterday." "Very well, I will come directly and see about it. But did you send for some new milk?" And Darya Alexandrovna plunged into the duties of the day, and drowned her grief in them for a time. Chapter 5 Stepan Arkadyevitch had learned easily at school, thanks to his excellent abilities, but he had been idle and mischievous, and therefore was one of the lowest in his class. But in spite of his habitually dissipated mode of life, his inferior grade in the service, and his comparative youth, he occupied the honorable and lucrative position of president of one of the government boards at Moscow. This post he had received through his sister Anna's husband, Alexey Alexandrovitch Karenin, who held one of the most important positions in the ministry to whose department the Moscow office belonged. But if Karenin had not got his brother-in-law this berth, then through a hundred other personages--brothers, sisters, cousins, uncles, and aunts--Stiva Oblonsky would have received this post, or some other similar one, together with the salary of six thousand absolutely needful for him, as his affairs, in spite of his wife's considerable property, were in an embarrassed condition. Half Moscow and Petersburg were friends and relations of Stepan Arkadyevitch. He was born in the midst of those who had been and are the powerful ones of this world. One-third of the men in the government, the older men, had been friends of his father's, and had known him in petticoats; another third were his intimate chums, and the remainder were friendly acquaintances. Consequently the distributors of earthly blessings in the shape of places, rents, shares, and such, were all his friends, and could not overlook one of their own set; and Oblonsky had no need to make any special exertion to get a lucrative post. He had only not to refuse things, not to show jealousy, not to be quarrelsome or take offense, all of which from his characteristic good nature he never did. It would have struck him as absurd if he had been told that he would not get a position with the salary he required, especially as he expected nothing out of the way; he only wanted what the men of his own age and standing did get, and he was no worse qualified for performing duties of the kind than any other man. Stepan Arkadyevitch was not merely liked by all who knew him for his good humor, but for his bright disposition, and his unquestionable honesty. In him, in his handsome, radiant figure, his sparkling eyes, black hair and eyebrows, and the white and red of his face, there was something which produced a physical effect of kindliness and good humor on the people who met him. "Aha! Stiva! Oblonsky! Here he is!" was almost always said with a smile of delight on meeting him. Even though it happened at times that after a conversation with him it seemed that nothing particularly delightful had happened, the next day, and the next, every one was just as delighted at meeting him again. After filling for three years the post of president of one of the government boards at Moscow, Stepan Arkadyevitch had won the respect, as well as the liking, of his fellow-officials, subordinates, and superiors, and all who had had business with him. The principal qualities in Stepan Arkadyevitch which had gained him this universal respect in the service consisted, in the first place, of his extreme indulgence for others, founded on a consciousness of his own shortcomings; secondly, of his perfect liberalism--not the liberalism he read of in the papers, but the liberalism that was in his blood, in virtue of which he treated all men perfectly equally and exactly the same, whatever their fortune or calling might be; and thirdly--the most important point--his complete indifference to the business in which he was engaged, in consequence of which he was never carried away, and never made mistakes. On reaching the offices of the board, Stepan Arkadyevitch, escorted by a deferential porter with a portfolio, went into his little private room, put on his uniform, and went into the boardroom. The clerks and copyists all rose, greeting him with good-humored deference. Stepan Arkadyevitch moved quickly, as ever, to his place, shook hands with his colleagues, and sat down. He made a joke or two, and talked just as much as was consistent with due decorum, and began work. No one knew better than Stepan Arkadyevitch how to hit on the exact line between freedom, simplicity, and official stiffness necessary for the agreeable conduct of business. A secretary, with the good-humored deference common to every one in Stepan Arkadyevitch's office, came up with papers, and began to speak in the familiar and easy tone which had been introduced by Stepan Arkadyevitch. "We have succeeded in getting the information from the government department of Penza. Here, would you care?...." "You've got them at last?" said Stepan Arkadyevitch, laying his finger on the paper. "Now, gentlemen...." And the sitting of the board began. "If they knew," he thought, bending his head with a significant air as he listened to the report, "what a guilty little boy their president was half an hour ago." And his eyes were laughing during the reading of the report. Till two o'clock the sitting would go on without a break, and at two o'clock there would be an interval and luncheon. It was not yet two, when the large glass doors of the boardroom suddenly opened and someone came in. All the officials sitting on the further side under the portrait of the Tsar and the eagle, delighted at any distraction, looked round at the door; but the doorkeeper standing at the door at once drove out the intruder, and closed the glass door after him. When the case had been read through, Stepan Arkadyevitch got up and stretched, and by way of tribute to the liberalism of the times took out a cigarette in the boardroom and went into his private room. Two of the members of the board, the old veteran in the service, Nikitin, and the _Kammerjunker Grinevitch_, went in with him. "We shall have time to finish after lunch," said Stepan Arkadyevitch. "To be sure we shall!" said Nikitin. "A pretty sharp fellow this Fomin must be," said Grinevitch of one of the persons taking part in the case they were examining. Stepan Arkadyevitch frowned at Grinevitch's words, giving him thereby to understand that it was improper to pass judgment prematurely, and made him no reply. "Who was that came in?" he asked the doorkeeper. "Someone, your excellency, crept in without permission directly my back was turned. He was asking for you. I told him: when the members come out, then...." "Where is he?" "Maybe he's gone into the passage, but here he comes anyway. That is he," said the doorkeeper, pointing to a strongly built, broad-shouldered man with a curly beard, who, without taking off his sheepskin cap, was running lightly and rapidly up the worn steps of the stone staircase. One of the members going down--a lean official with a portfolio--stood out of his way and looked disapprovingly at the legs of the stranger, then glanced inquiringly at Oblonsky. Stepan Arkadyevitch was standing at the top of the stairs. His good-naturedly beaming face above the embroidered collar of his uniform beamed more than ever when he recognized the man coming up. "Why, it's actually you, Levin, at last!" he said with a friendly mocking smile, scanning Levin as he approached. "How is it you have deigned to look me up in this den?" said Stepan Arkadyevitch, and not content with shaking hands, he kissed his friend. "Have you been here long?" "I have just come, and very much wanted to see you," said Levin, looking shyly and at the same time angrily and uneasily around. "Well, let's go into my room," said Stepan Arkadyevitch, who knew his friend's sensitive and irritable shyness, and, taking his arm, he drew him along, as though guiding him through dangers. Stepan Arkadyevitch was on familiar terms with almost all his acquaintances, and called almost all of them by their Christian names: old men of sixty, boys of twenty, actors, ministers, merchants, and adjutant-generals, so that many of his intimate chums were to be found at the extreme ends of the social ladder, and would have been very much surprised to learn that they had, through the medium of Oblonsky, something in common. He was the familiar friend of everyone with whom he took a glass of champagne, and he took a glass of champagne with everyone, and when in consequence he met any of his disreputable chums, as he used in joke to call many of his friends, in the presence of his subordinates, he well knew how, with his characteristic tact, to diminish the disagreeable impression made on them. Levin was not a disreputable chum, but Oblonsky, with his ready tact, felt that Levin fancied he might not care to show his intimacy with him before his subordinates, and so he made haste to take him off into his room. Levin was almost of the same age as Oblonsky; their intimacy did not rest merely on champagne. Levin had been the friend and companion of his early youth. They were fond of one another in spite of the difference of their characters and tastes, as friends are fond of one another who have been together in early youth. But in spite of this, each of them--as is often the way with men who have selected careers of different kinds--though in discussion he would even justify the other's career, in his heart despised it. It seemed to each of them that the life he led himself was the only real life, and the life led by his friend was a mere phantasm. Oblonsky could not restrain a slight mocking smile at the sight of Levin. How often he had seen him come up to Moscow from the country where he was doing something, but what precisely Stepan Arkadyevitch could never quite make out, and indeed he took no interest in the matter. Levin arrived in Moscow always excited and in a hurry, rather ill at ease and irritated by his own want of ease, and for the most part with a perfectly new, unexpected view of things. Stepan Arkadyevitch laughed at this, and liked it. In the same way Levin in his heart despised the town mode of life of his friend, and his official duties, which he laughed at, and regarded as trifling. But the difference was that Oblonsky, as he was doing the same as every one did, laughed complacently and good-humoredly, while Levin laughed without complacency and sometimes angrily. "We have long been expecting you," said Stepan Arkadyevitch, going into his room and letting Levin's hand go as though to show that here all danger was over. "I am very, very glad to see you," he went on. "Well, how are you? Eh? When did you come?" Levin was silent, looking at the unknown faces of Oblonsky's two companions, and especially at the hand of the elegant Grinevitch, which had such long white fingers, such long yellow filbert-shaped nails, and such huge shining studs on the shirt-cuff, that apparently they absorbed all his attention, and allowed him no freedom of thought. Oblonsky noticed this at once, and smiled. "Ah, to be sure, let me introduce you," he said. "My colleagues: Philip Ivanitch Nikitin, Mihail Stanislavitch Grinevitch"--and turning to Levin--"a district councilor, a modern district councilman, a gymnast who lifts thirteen stone with one hand, a cattle-breeder and sportsman, and my friend, Konstantin Dmitrievitch Levin, the brother of Sergey Ivanovitch Koznishev." "Delighted," said the veteran. "I have the honor of knowing your brother, Sergey Ivanovitch," said Grinevitch, holding out his slender hand with its long nails. Levin frowned, shook hands coldly, and at once turned to Oblonsky. Though he had a great respect for his half-brother, an author well known to all Russia, he could not endure it when people treated him not as Konstantin Levin, but as the brother of the celebrated Koznishev. "No, I am no longer a district councilor. I have quarreled with them all, and don't go to the meetings any more," he said, turning to Oblonsky. "You've been quick about it!" said Oblonsky with a smile. "But how? why?" "It's a long story. I will tell you some time," said Levin, but he began telling him at once. "Well, to put it shortly, I was convinced that nothing was really done by the district councils, or ever could be," he began, as though some one had just insulted him. "On one side it's a plaything; they play at being a parliament, and I'm neither young enough nor old enough to find amusement in playthings; and on the other side" (he stammered) "it's a means for the coterie of the district to make money. Formerly they had wardships, courts of justice, now they have the district council--not in the form of bribes, but in the form of unearned salary," he said, as hotly as though someone of those present had opposed his opinion. "Aha! You're in a new phase again, I see--a conservative," said Stepan Arkadyevitch. "However, we can go into that later." "Yes, later. But I wanted to see you," said Levin, looking with hatred at Grinevitch's hand. Stepan Arkadyevitch gave a scarcely perceptible smile. "How was it you used to say you would never wear European dress again?" he said, scanning his new suit, obviously cut by a French tailor. "Ah! I see: a new phase." Levin suddenly blushed, not as grown men blush, slightly, without being themselves aware of it, but as boys blush, feeling that they are ridiculous through their shyness, and consequently ashamed of it and blushing still more, almost to the point of tears. And it was so strange to see this sensible, manly face in such a childish plight, that Oblonsky left off looking at him. "Oh, where shall we meet? You know I want very much to talk to you," said Levin. Oblonsky seemed to ponder. "I'll tell you what: let's go to Gurin's to lunch, and there we can talk. I am free till three." "No," answered Levin, after an instant's thought, "I have got to go on somewhere else." "All right, then, let's dine together." "Dine together? But I have nothing very particular, only a few words to say, and a question I want to ask you, and we can have a talk afterwards." "Well, say the few words, then, at once, and we'll gossip after dinner." "Well, it's this," said Levin; "but it's of no importance, though." His face all at once took an expression of anger from the effort he was making to surmount his shyness. "What are the Shtcherbatskys doing? Everything as it used to be?" he said. Stepan Arkadyevitch, who had long known that Levin was in love with his sister-in-law, Kitty, gave a hardly perceptible smile, and his eyes sparkled merrily. "You said a few words, but I can't answer in a few words, because.... Excuse me a minute..." A secretary came in, with respectful familiarity and the modest consciousness, characteristic of every secretary, of superiority to his chief in the knowledge of their business; he went up to Oblonsky with some papers, and began, under pretense of asking a question, to explain some objection. Stepan Arkadyevitch, without hearing him out, laid his hand genially on the secretary's sleeve. "No, you do as I told you," he said, softening his words with a smile, and with a brief explanation of his view of the matter he turned away from the papers, and said: "So do it that way, if you please, Zahar Nikititch." The secretary retired in confusion. During the consultation with the secretary Levin had completely recovered from his embarrassment. He was standing with his elbows on the back of a chair, and on his face was a look of ironical attention. "I don't understand it, I don't understand it," he said. "What don't you understand?" said Oblonsky, smiling as brightly as ever, and picking up a cigarette. He expected some queer outburst from Levin. "I don't understand what you are doing," said Levin, shrugging his shoulders. "How can you do it seriously?" "Why not?" "Why, because there's nothing in it." "You think so, but we're overwhelmed with work." "On paper. But, there, you've a gift for it," added Levin. "That's to say, you think there's a lack of something in me?" "Perhaps so," said Levin. "But all the same I admire your grandeur, and am proud that I've a friend in such a great person. You've not answered my question, though," he went on, with a desperate effort looking Oblonsky straight in the face. "Oh, that's all very well. You wait a bit, and you'll come to this yourself. It's very nice for you to have over six thousand acres in the Karazinsky district, and such muscles, and the freshness of a girl of twelve; still you'll be one of us one day. Yes, as to your question, there is no change, but it's a pity you've been away so long." "Oh, why so?" Levin queried, panic-stricken. "Oh, nothing," responded Oblonsky. "We'll talk it over. But what's brought you up to town?" "Oh, we'll talk about that, too, later on," said Levin, reddening again up to his ears. "All right. I see," said Stepan Arkadyevitch. "I should ask you to come to us, you know, but my wife's not quite the thing. But I tell you what; if you want to see them, they're sure now to be at the Zoological Gardens from four to five. Kitty skates. You drive along there, and I'll come and fetch you, and we'll go and dine somewhere together." "Capital. So good-bye till then." "Now mind, you'll forget, I know you, or rush off home to the country!" Stepan Arkadyevitch called out laughing. "No, truly!" And Levin went out of the room, only when he was in the doorway remembering that he had forgotten to take leave of Oblonsky's colleagues. "That gentleman must be a man of great energy," said Grinevitch, when Levin had gone away. "Yes, my dear boy," said Stepan Arkadyevitch, nodding his head, "he's a lucky fellow! Over six thousand acres in the Karazinsky district; everything before him; and what youth and vigor! Not like some of us." "You have a great deal to complain of, haven't you, Stepan Arkadyevitch?" "Ah, yes, I'm in a poor way, a bad way," said Stepan Arkadyevitch with a heavy sigh. Chapter 6 When Oblonsky asked Levin what had brought him to town, Levin blushed, and was furious with himself for blushing, because he could not answer, "I have come to make your sister-in-law an offer," though that was precisely what he had come for. The families of the Levins and the Shtcherbatskys were old, noble Moscow families, and had always been on intimate and friendly terms. This intimacy had grown still closer during Levin's student days. He had both prepared for the university with the young Prince Shtcherbatsky, the brother of Kitty and Dolly, and had entered at the same time with him. In those days Levin used often to be in the Shtcherbatskys' house, and he was in love with the Shtcherbatsky household. Strange as it may appear, it was with the household, the family, that Konstantin Levin was in love, especially with the feminine half of the household. Levin did not remember his own mother, and his only sister was older than he was, so that it was in the Shtcherbatskys' house that he saw for the first time that inner life of an old, noble, cultivated, and honorable family of which he had been deprived by the death of his father and mother. All the members of that family, especially the feminine half, were pictured by him, as it were, wrapped about with a mysterious poetical veil, and he not only perceived no defects whatever in them, but under the poetical veil that shrouded them he assumed the existence of the loftiest sentiments and every possible perfection. Why it was the three young ladies had one day to speak French, and the next English; why it was that at certain hours they played by turns on the piano, the sounds of which were audible in their brother's room above, where the students used to work; why they were visited by those professors of French literature, of music, of drawing, of dancing; why at certain hours all the three young ladies, with Mademoiselle Linon, drove in the coach to the Tversky boulevard, dressed in their satin cloaks, Dolly in a long one, Natalia in a half-long one, and Kitty in one so short that her shapely legs in tightly-drawn red stockings were visible to all beholders; why it was they had to walk about the Tversky boulevard escorted by a footman with a gold cockade in his hat--all this and much more that was done in their mysterious world he did not understand, but he was sure that everything that was done there was very good, and he was in love precisely with the mystery of the proceedings. In his student days he had all but been in love with the eldest, Dolly, but she was soon married to Oblonsky. Then he began being in love with the second. He felt, as it were, that he had to be in love with one of the sisters, only he could not quite make out which. But Natalia, too, had hardly made her appearance in the world when she married the diplomat Lvov. Kitty was still a child when Levin left the university. Young Shtcherbatsky went into the navy, was drowned in the Baltic, and Levin's relations with the Shtcherbatskys, in spite of his friendship with Oblonsky, became less intimate. But when early in the winter of this year Levin came to Moscow, after a year in the country, and saw the Shtcherbatskys, he realized which of the three sisters he was indeed destined to love. One would have thought that nothing could be simpler than for him, a man of good family, rather rich than poor, and thirty-two years old, to make the young Princess Shtcherbatskaya an offer of marriage; in all likelihood he would at once have been looked upon as a good match. But Levin was in love, and so it seemed to him that Kitty was so perfect in every respect that she was a creature far above everything earthly; and that he was a creature so low and so earthly that it could not even be conceived that other people and she herself could regard him as worthy of her. After spending two months in Moscow in a state of enchantment, seeing Kitty almost every day in society, into which he went so as to meet her, he abruptly decided that it could not be, and went back to the country. Levin's conviction that it could not be was founded on the idea that in the eyes of her family he was a disadvantageous and worthless match for the charming Kitty, and that Kitty herself could not love him. In her family's eyes he had no ordinary, definite career and position in society, while his contemporaries by this time, when he was thirty-two, were already, one a colonel, and another a professor, another director of a bank and railways, or president of a board like Oblonsky. But he (he knew very well how he must appear to others) was a country gentleman, occupied in breeding cattle, shooting game, and building barns; in other words, a fellow of no ability, who had not turned out well, and who was doing just what, according to the ideas of the world, is done by people fit for nothing else. The mysterious, enchanting Kitty herself could not love such an ugly person as he conceived himself to be, and, above all, such an ordinary, in no way striking person. Moreover, his attitude to Kitty in the past--the attitude of a grown-up person to a child, arising from his friendship with her brother--seemed to him yet another obstacle to love. An ugly, good-natured man, as he considered himself, might, he supposed, be liked as a friend; but to be loved with such a love as that with which he loved Kitty, one would need to be a handsome and, still more, a distinguished man. He had heard that women often did care for ugly and ordinary men, but he did not believe it, for he judged by himself, and he could not himself have loved any but beautiful, mysterious, and exceptional women. But after spending two months alone in the country, he was convinced that this was not one of those passions of which he had had experience in his early youth; that this feeling gave him not an instant's rest; that he could not live without deciding the question, would she or would she not be his wife, and that his despair had arisen only from his own imaginings, that he had no sort of proof that he would be rejected. And he had now come to Moscow with a firm determination to make an offer, and get married if he were accepted. Or ... he could not conceive what would become of him if he were rejected. Chapter 7 On arriving in Moscow by a morning train, Levin had put up at the house of his elder half-brother, Koznishev. After changing his clothes he went down to his brother's study, intending to talk to him at once about the object of his visit, and to ask his advice; but his brother was not alone. With him there was a well-known professor of philosophy, who had come from Harkov expressly to clear up a difference that had arisen between them on a very important philosophical question. The professor was carrying on a hot crusade against materialists. Sergey Koznishev had been following this crusade with interest, and after reading the professor's last article, he had written him a letter stating his objections. He accused the professor of making too great concessions to the materialists. And the professor had promptly appeared to argue the matter out. The point in discussion was the question then in vogue: Is there a line to be drawn between psychological and physiological phenomena in man? and if so, where? Sergey Ivanovitch met his brother with the smile of chilly friendliness he always had for everyone, and introducing him to the professor, went on with the conversation. A little man in spectacles, with a narrow forehead, tore himself from the discussion for an instant to greet Levin, and then went on talking without paying any further attention to him. Levin sat down to wait till the professor should go, but he soon began to get interested in the subject under discussion. Levin had come across the magazine articles about which they were disputing, and had read them, interested in them as a development of the first principles of science, familiar to him as a natural science student at the university. But he had never connected these scientific deductions as to the origin of man as an animal, as to reflex action, biology, and sociology, with those questions as to the meaning of life and death to himself, which had of late been more and more often in his mind. As he listened to his brother's argument with the professor, he noticed that they connected these scientific questions with those spiritual problems, that at times they almost touched on the latter; but every time they were close upon what seemed to him the chief point, they promptly beat a hasty retreat, and plunged again into a sea of subtle distinctions, reservations, quotations, allusions, and appeals to authorities, and it was with difficulty that he understood what they were talking about. "I cannot admit it," said Sergey Ivanovitch, with his habitual clearness, precision of expression, and elegance of phrase. "I cannot in any case agree with Keiss that my whole conception of the external world has been derived from perceptions. The most fundamental idea, the idea of existence, has not been received by me through sensation; indeed, there is no special sense-organ for the transmission of such an idea." "Yes, but they--Wurt, and Knaust, and Pripasov--would answer that your consciousness of existence is derived from the conjunction of all your sensations, that that consciousness of existence is the result of your sensations. Wurt, indeed, says plainly that, assuming there are no sensations, it follows that there is no idea of existence." "I maintain the contrary," began Sergey Ivanovitch. But here it seemed to Levin that just as they were close upon the real point of the matter, they were again retreating, and he made up his mind to put a question to the professor. "According to that, if my senses are annihilated, if my body is dead, I can have no existence of any sort?" he queried. The professor, in annoyance, and, as it were, mental suffering at the interruption, looked round at the strange inquirer, more like a bargeman than a philosopher, and turned his eyes upon Sergey Ivanovitch, as though to ask: What's one to say to him? But Sergey Ivanovitch, who had been talking with far less heat and one-sidedness than the professor, and who had sufficient breadth of mind to answer the professor, and at the same time to comprehend the simple and natural point of view from which the question was put, smiled and said: "That question we have no right to answer as yet." "We have not the requisite data," chimed in the professor, and he went back to his argument. "No," he said; "I would point out the fact that if, as Pripasov directly asserts, perception is based on sensation, then we are bound to distinguish sharply between these two conceptions." Levin listened no more, and simply waited for the professor to go. Chapter 8 When the professor had gone, Sergey Ivanovitch turned to his brother. "Delighted that you've come. For some time, is it? How's your farming getting on?" Levin knew that his elder brother took little interest in farming, and only put the question in deference to him, and so he only told him about the sale of his wheat and money matters. Levin had meant to tell his brother of his determination to get married, and to ask his advice; he had indeed firmly resolved to do so. But after seeing his brother, listening to his conversation with the professor, hearing afterwards the unconsciously patronizing tone in which his brother questioned him about agricultural matters (their mother's property had not been divided, and Levin took charge of both their shares), Levin felt that he could not for some reason begin to talk to him of his intention of marrying. He felt that his brother would not look at it as he would have wished him to. "Well, how is your district council doing?" asked Sergey Ivanovitch, who was greatly interested in these local boards and attached great importance to them. "I really don't know." "What! Why, surely you're a member of the board?" "No, I'm not a member now; I've resigned," answered Levin, "and I no longer attend the meetings." "What a pity!" commented Sergey Ivanovitch, frowning. Levin in self-defense began to describe what took place in the meetings in his district. "That's how it always is!" Sergey Ivanovitch interrupted him. "We Russians are always like that. Perhaps it's our strong point, really, the faculty of seeing our own shortcomings; but we overdo it, we comfort ourselves with irony which we always have on the tip of our tongues. All I say is, give such rights as our local self-government to any other European people--why, the Germans or the English would have worked their way to freedom from them, while we simply turn them into ridicule." "But how can it be helped?" said Levin penitently. "It was my last effort. And I did try with all my soul. I can't. I'm no good at it." "It's not that you're no good at it," said Sergey Ivanovitch; "it is that you don't look at it as you should." "Perhaps not," Levin answered dejectedly. "Oh! do you know brother Nikolay's turned up again?" This brother Nikolay was the elder brother of Konstantin Levin, and half-brother of Sergey Ivanovitch; a man utterly ruined, who had dissipated the greater part of his fortune, was living in the strangest and lowest company, and had quarreled with his brothers. "What did you say?" Levin cried with horror. "How do you know?" "Prokofy saw him in the street." "Here in Moscow? Where is he? Do you know?" Levin got up from his chair, as though on the point of starting off at once. "I am sorry I told you," said Sergey Ivanovitch, shaking his head at his younger brother's excitement. "I sent to find out where he is living, and sent him his IOU to Trubin, which I paid. This is the answer he sent me." And Sergey Ivanovitch took a note from under a paper-weight and handed it to his brother. Levin read in the queer, familiar handwriting: "I humbly beg you to leave me in peace. That's the only favor I ask of my gracious brothers.--Nikolay Levin." Levin read it, and without raising his head stood with the note in his hands opposite Sergey Ivanovitch. There was a struggle in his heart between the desire to forget his unhappy brother for the time, and the consciousness that it would be base to do so. "He obviously wants to offend me," pursued Sergey Ivanovitch; "but he cannot offend me, and I should have wished with all my heart to assist him, but I know it's impossible to do that." "Yes, yes," repeated Levin. "I understand and appreciate your attitude to him; but I shall go and see him." "If you want to, do; but I shouldn't advise it," said Sergey Ivanovitch. "As regards myself, I have no fear of your doing so; he will not make you quarrel with me; but for your own sake, I should say you would do better not to go. You can't do him any good; still, do as you please." "Very likely I can't do any good, but I feel--especially at such a moment--but that's another thing--I feel I could not be at peace." "Well, that I don't understand," said Sergey Ivanovitch. "One thing I do understand," he added; "it's a lesson in humility. I have come to look very differently and more charitably on what is called infamous since brother Nikolay has become what he is ... you know what he did..." "Oh, it's awful, awful!" repeated Levin. After obtaining his brother's address from Sergey Ivanovitch's footman, Levin was on the point of setting off at once to see him, but on second thought he decided to put off his visit till the evening. The first thing to do to set his heart at rest was to accomplish what he had come to Moscow for. From his brother's Levin went to Oblonsky's office, and on getting news of the Shtcherbatskys from him, he drove to the place where he had been told he might find Kitty. Chapter 9 At four o'clock, conscious of his throbbing heart, Levin stepped out of a hired sledge at the Zoological Gardens, and turned along the path to the frozen mounds and the skating ground, knowing that he would certainly find her there, as he had seen the Shtcherbatskys' carriage at the entrance. It was a bright, frosty day. Rows of carriages, sledges, drivers, and policemen were standing in the approach. Crowds of well-dressed people, with hats bright in the sun, swarmed about the entrance and along the well-swept little paths between the little houses adorned with carving in the Russian style. The old curly birches of the gardens, all their twigs laden with snow, looked as though freshly decked in sacred vestments. He walked along the path towards the skating-ground, and kept saying to himself--"You mustn't be excited, you must be calm. What's the matter with you? What do you want? Be quiet, stupid," he conjured his heart. And the more he tried to compose himself, the more breathless he found himself. An acquaintance met him and called him by his name, but Levin did not even recognize him. He went towards the mounds, whence came the clank of the chains of sledges as they slipped down or were dragged up, the rumble of the sliding sledges, and the sounds of merry voices. He walked on a few steps, and the skating-ground lay open before his eyes, and at once, amidst all the skaters, he knew her. He knew she was there by the rapture and the terror that seized on his heart. She was standing talking to a lady at the opposite end of the ground. There was apparently nothing striking either in her dress or her attitude. But for Levin she was as easy to find in that crowd as a rose among nettles. Everything was made bright by her. She was the smile that shed light on all round her. "Is it possible I can go over there on the ice, go up to her?" he thought. The place where she stood seemed to him a holy shrine, unapproachable, and there was one moment when he was almost retreating, so overwhelmed was he with terror. He had to make an effort to master himself, and to remind himself that people of all sorts were moving about her, and that he too might come there to skate. He walked down, for a long while avoiding looking at her as at the sun, but seeing her, as one does the sun, without looking. On that day of the week and at that time of day people of one set, all acquainted with one another, used to meet on the ice. There were crack skaters there, showing off their skill, and learners clinging to chairs with timid, awkward movements, boys, and elderly people skating with hygienic motives. They seemed to Levin an elect band of blissful beings because they were here, near her. All the skaters, it seemed, with perfect self-possession, skated towards her, skated by her, even spoke to her, and were happy, quite apart from her, enjoying the capital ice and the fine weather. Nikolay Shtcherbatsky, Kitty's cousin, in a short jacket and tight trousers, was sitting on a garden seat with his skates on. Seeing Levin, he shouted to him: "Ah, the first skater in Russia! Been here long? First-rate ice--do put your skates on." "I haven't got my skates," Levin answered, marveling at this boldness and ease in her presence, and not for one second losing sight of her, though he did not look at her. He felt as though the sun were coming near him. She was in a corner, and turning out her slender feet in their high boots with obvious timidity, she skated towards him. A boy in Russian dress, desperately waving his arms and bowed down to the ground, overtook her. She skated a little uncertainly; taking her hands out of the little muff that hung on a cord, she held them ready for emergency, and looking towards Levin, whom she had recognized, she smiled at him, and at her own fears. When she had got round the turn, she gave herself a push off with one foot, and skated straight up to Shtcherbatsky. Clutching at his arm, she nodded smiling to Levin. She was more splendid than he had imagined her. When he thought of her, he could call up a vivid picture of her to himself, especially the charm of that little fair head, so freely set on the shapely girlish shoulders, and so full of childish brightness and good humor. The childishness of her expression, together with the delicate beauty of her figure, made up her special charm, and that he fully realized. But what always struck him in her as something unlooked for, was the expression of her eyes, soft, serene, and truthful, and above all, her smile, which always transported Levin to an enchanted world, where he felt himself softened and tender, as he remembered himself in some days of his early childhood. "Have you been here long?" she said, giving him her hand. "Thank you," she added, as he picked up the handkerchief that had fallen out of her muff. "I? I've not long ... yesterday ... I mean today ... I arrived," answered Levin, in his emotion not at once understanding her question. "I was meaning to come and see you," he said; and then, recollecting with what intention he was trying to see her, he was promptly overcome with confusion and blushed. "I didn't know you could skate, and skate so well." She looked at him earnestly, as though wishing to make out the cause of his confusion. "Your praise is worth having. The tradition is kept up here that you are the best of skaters," she said, with her little black-gloved hand brushing a grain of hoarfrost off her muff. "Yes, I used once to skate with passion; I wanted to reach perfection." "You do everything with passion, I think," she said smiling. "I should so like to see how you skate. Put on skates, and let us skate together." "Skate together! Can that be possible?" thought Levin, gazing at her. "I'll put them on directly," he said. And he went off to get skates. "It's a long while since we've seen you here, sir," said the attendant, supporting his foot, and screwing on the heel of the skate. "Except you, there's none of the gentlemen first-rate skaters. Will that be all right?" said he, tightening the strap. "Oh, yes, yes; make haste, please," answered Levin, with difficulty restraining the smile of rapture which would overspread his face. "Yes," he thought, "this now is life, this is happiness! _Together,_ she said; _let us skate together!_ Speak to her now? But that's just why I'm afraid to speak--because I'm happy now, happy in hope, anyway.... And then?.... But I must! I must! I must! Away with weakness!" Levin rose to his feet, took off his overcoat, and scurrying over the rough ice round the hut, came out on the smooth ice and skated without effort, as it were, by simple exercise of will, increasing and slackening speed and turning his course. He approached with timidity, but again her smile reassured him. She gave him her hand, and they set off side by side, going faster and faster, and the more rapidly they moved the more tightly she grasped his hand. "With you I should soon learn; I somehow feel confidence in you," she said to him. "And I have confidence in myself when you are leaning on me," he said, but was at once panic-stricken at what he had said, and blushed. And indeed, no sooner had he uttered these words, when all at once, like the sun going behind a cloud, her face lost all its friendliness, and Levin detected the familiar change in her expression that denoted the working of thought; a crease showed on her smooth brow. "Is there anything troubling you?--though I've no right to ask such a question," he added hurriedly. "Oh, why so?.... No, I have nothing to trouble me," she responded coldly; and she added immediately: "You haven't seen Mlle. Linon, have you?" "Not yet." "Go and speak to her, she likes you so much." "What's wrong? I have offended her. Lord help me!" thought Levin, and he flew towards the old Frenchwoman with the gray ringlets, who was sitting on a bench. Smiling and showing her false teeth, she greeted him as an old friend. "Yes, you see we're growing up," she said to him, glancing towards Kitty, "and growing old. _Tiny bear_ has grown big now!" pursued the Frenchwoman, laughing, and she reminded him of his joke about the three young ladies whom he had compared to the three bears in the English nursery tale. "Do you remember that's what you used to call them?" He remembered absolutely nothing, but she had been laughing at the joke for ten years now, and was fond of it. "Now, go and skate, go and skate. Our Kitty has learned to skate nicely, hasn't she?" When Levin darted up to Kitty her face was no longer stern; her eyes looked at him with the same sincerity and friendliness, but Levin fancied that in her friendliness there was a certain note of deliberate composure. And he felt depressed. After talking a little of her old governess and her peculiarities, she questioned him about his life. "Surely you must be dull in the country in the winter, aren't you?" she said. "No, I'm not dull, I am very busy," he said, feeling that she was holding him in check by her composed tone, which he would not have the force to break through, just as it had been at the beginning of the winter. "Are you going to stay in town long?" Kitty questioned him. "I don't know," he answered, not thinking of what he was saying. The thought that if he were held in check by her tone of quiet friendliness he would end by going back again without deciding anything came into his mind, and he resolved to make a struggle against it. "How is it you don't know?" "I don't know. It depends upon you," he said, and was immediately horror-stricken at his own words. Whether it was that she had heard his words, or that she did not want to hear them, she made a sort of stumble, twice struck out, and hurriedly skated away from him. She skated up to Mlle. Linon, said something to her, and went towards the pavilion where the ladies took off their skates. "My God! what have I done! Merciful God! help me, guide me," said Levin, praying inwardly, and at the same time, feeling a need of violent exercise, he skated about describing inner and outer circles. At that moment one of the young men, the best of the skaters of the day, came out of the coffee-house in his skates, with a cigarette in his mouth. Taking a run, he dashed down the steps in his skates, crashing and bounding up and down. He flew down, and without even changing the position of his hands, skated away over the ice. "Ah, that's a new trick!" said Levin, and he promptly ran up to the top to do this new trick. "Don't break your neck! it needs practice!" Nikolay Shtcherbatsky shouted after him. Levin went to the steps, took a run from above as best he could, and dashed down, preserving his balance in this unwonted movement with his hands. On the last step he stumbled, but barely touching the ice with his hand, with a violent effort recovered himself, and skated off, laughing. "How splendid, how nice he is!" Kitty was thinking at that time, as she came out of the pavilion with Mlle. Linon, and looked towards him with a smile of quiet affection, as though he were a favorite brother. "And can it be my fault, can I have done anything wrong? They talk of flirtation. I know it's not he that I love; but still I am happy with him, and he's so jolly. Only, why did he say that?..." she mused. Catching sight of Kitty going away, and her mother meeting her at the steps, Levin, flushed from his rapid exercise, stood still and pondered a minute. He took off his skates, and overtook the mother and daughter at the entrance of the gardens. "Delighted to see you," said Princess Shtcherbatskaya. "On Thursdays we are home, as always." "Today, then?" "We shall be pleased to see you," the princess said stiffly. This stiffness hurt Kitty, and she could not resist the desire to smooth over her mother's coldness. She turned her head, and with a smile said: "Good-bye till this evening." At that moment Stepan Arkadyevitch, his hat cocked on one side, with beaming face and eyes, strode into the garden like a conquering hero. But as he approached his mother-in-law, he responded in a mournful and crestfallen tone to her inquiries about Dolly's health. After a little subdued and dejected conversation with his mother-in-law, he threw out his chest again, and put his arm in Levin's. "Well, shall we set off?" he asked. "I've been thinking about you all this time, and I'm very, very glad you've come," he said, looking him in the face with a significant air. "Yes, come along," answered Levin in ecstasy, hearing unceasingly the sound of that voice saying, "Good-bye till this evening," and seeing the smile with which it was said. "To the England or the Hermitage?" "I don't mind which." "All right, then, the England," said Stepan Arkadyevitch, selecting that restaurant because he owed more there than at the Hermitage, and consequently considered it mean to avoid it. "Have you got a sledge? That's first-rate, for I sent my carriage home." The friends hardly spoke all the way. Levin was wondering what that change in Kitty's expression had meant, and alternately assuring himself that there was hope, and falling into despair, seeing clearly that his hopes were insane, and yet all the while he felt himself quite another man, utterly unlike what he had been before her smile and those words, "Good-bye till this evening." Stepan Arkadyevitch was absorbed during the drive in composing the menu of the dinner. "You like turbot, don't you?" he said to Levin as they were arriving. "Eh?" responded Levin. "Turbot? Yes, I'm _awfully_ fond of turbot." Chapter 10 When Levin went into the restaurant with Oblonsky, he could not help noticing a certain peculiarity of expression, as it were, a restrained radiance, about the face and whole figure of Stepan Arkadyevitch. Oblonsky took off his overcoat, and with his hat over one ear walked into the dining room, giving directions to the Tatar waiters, who were clustered about him in evening coats, bearing napkins. Bowing to right and left to the people he met, and here as everywhere joyously greeting acquaintances, he went up to the sideboard for a preliminary appetizer of fish and vodka, and said to the painted Frenchwoman decked in ribbons, lace, and ringlets, behind the counter, something so amusing that even that Frenchwoman was moved to genuine laughter. Levin for his part refrained from taking any vodka simply because he felt such a loathing of that Frenchwoman, all made up, it seemed, of false hair, _poudre de riz,_ and _vinaigre de toilette_. He made haste to move away from her, as from a dirty place. His whole soul was filled with memories of Kitty, and there was a smile of triumph and happiness shining in his eyes. "This way, your excellency, please. Your excellency won't be disturbed here," said a particularly pertinacious, white-headed old Tatar with immense hips and coat-tails gaping widely behind. "Walk in, your excellency," he said to Levin; by way of showing his respect to Stepan Arkadyevitch, being attentive to his guest as well. Instantly flinging a fresh cloth over the round table under the bronze chandelier, though it already had a table cloth on it, he pushed up velvet chairs, and came to a standstill before Stepan Arkadyevitch with a napkin and a bill of fare in his hands, awaiting his commands. "If you prefer it, your excellency, a private room will be free directly; Prince Golistin with a lady. Fresh oysters have come in." "Ah! oysters." Stepan Arkadyevitch became thoughtful. "How if we were to change our program, Levin?" he said, keeping his finger on the bill of fare. And his face expressed serious hesitation. "Are the oysters good? Mind now." "They're Flensburg, your excellency. We've no Ostend." "Flensburg will do, but are they fresh?" "Only arrived yesterday." "Well, then, how if we were to begin with oysters, and so change the whole program? Eh?" "It's all the same to me. I should like cabbage soup and porridge better than anything; but of course there's nothing like that here." "_Porridge a la Russe,_ your honor would like?" said the Tatar, bending down to Levin, like a nurse speaking to a child. "No, joking apart, whatever you choose is sure to be good. I've been skating, and I'm hungry. And don't imagine," he added, detecting a look of dissatisfaction on Oblonsky's face, "that I shan't appreciate your choice. I am fond of good things." "I should hope so! After all, it's one of the pleasures of life," said Stepan Arkadyevitch. "Well, then, my friend, you give us two--or better say three--dozen oysters, clear soup with vegetables...." "_Printaniere,_" prompted the Tatar. But Stepan Arkadyevitch apparently did not care to allow him the satisfaction of giving the French names of the dishes. "With vegetables in it, you know. Then turbot with thick sauce, then ... roast beef; and mind it's good. Yes, and capons, perhaps, and then sweets." The Tatar, recollecting that it was Stepan Arkadyevitch's way not to call the dishes by the names in the French bill of fare, did not repeat them after him, but could not resist rehearsing the whole menu to himself according to the bill:--"_Soupe printaniere, turbot, sauce Beaumarchais, poulard a l'estragon, macedoine de fruits_ ... etc.," and then instantly, as though worked by springs, laying down one bound bill of fare, he took up another, the list of wines, and submitted it to Stepan Arkadyevitch. "What shall we drink?" "What you like, only not too much. Champagne," said Levin. "What! to start with? You're right though, I dare say. Do you like the white seal?" "_Cachet blanc,_" prompted the Tatar. "Very well, then, give us that brand with the oysters, and then we'll see." "Yes, sir. And what table wine?" "You can give us Nuits. Oh, no, better the classic Chablis." "Yes, sir. And _your_ cheese, your excellency?" "Oh, yes, Parmesan. Or would you like another?" "No, it's all the same to me," said Levin, unable to suppress a smile. And the Tatar ran off with flying coat-tails, and in five minutes darted in with a dish of opened oysters on mother-of-pearl shells, and a bottle between his fingers. Stepan Arkadyevitch crushed the starchy napkin, tucked it into his waistcoat, and settling his arms comfortably, started on the oysters. "Not bad," he said, stripping the oysters from the pearly shell with a silver fork, and swallowing them one after another. "Not bad," he repeated, turning his dewy, brilliant eyes from Levin to the Tatar. Levin ate the oysters indeed, though white bread and cheese would have pleased him better. But he was admiring Oblonsky. Even the Tatar, uncorking the bottle and pouring the sparkling wine into the delicate glasses, glanced at Stepan Arkadyevitch, and settled his white cravat with a perceptible smile of satisfaction. "You don't care much for oysters, do you?" said Stepan Arkadyevitch, emptying his wine glass, "or you're worried about something. Eh?" He wanted Levin to be in good spirits. But it was not that Levin was not in good spirits; he was ill at ease. With what he had in his soul, he felt sore and uncomfortable in the restaurant, in the midst of private rooms where men were dining with ladies, in all this fuss and bustle; the surroundings of bronzes, looking glasses, gas, and waiters--all of it was offensive to him. He was afraid of sullying what his soul was brimful of. "I? Yes, I am; but besides, all this bothers me," he said. "You can't conceive how queer it all seems to a country person like me, as queer as that gentleman's nails I saw at your place..." "Yes, I saw how much interested you were in poor Grinevitch's nails," said Stepan Arkadyevitch, laughing. "It's too much for me," responded Levin. "Do try, now, and put yourself in my place, take the point of view of a country person. We in the country try to bring our hands into such a state as will be most convenient for working with. So we cut our nails; sometimes we turn up our sleeves. And here people purposely let their nails grow as long as they will, and link on small saucers by way of studs, so that they can do nothing with their hands." Stepan Arkadyevitch smiled gaily. "Oh, yes, that's just a sign that he has no need to do coarse work. His work is with the mind..." "Maybe. But still it's queer to me, just as at this moment it seems queer to me that we country folks try to get our meals over as soon as we can, so as to be ready for our work, while here are we trying to drag out our meal as long as possible, and with that object eating oysters..." "Why, of course," objected Stepan Arkadyevitch. "But that's just the aim of civilization--to make everything a source of enjoyment." "Well, if that's its aim, I'd rather be a savage." "And so you are a savage. All you Levins are savages." Levin sighed. He remembered his brother Nikolay, and felt ashamed and sore, and he scowled; but Oblonsky began speaking of a subject which at once drew his attention. "Oh, I say, are you going tonight to our people, the Shtcherbatskys', I mean?" he said, his eyes sparkling significantly as he pushed away the empty rough shells, and drew the cheese towards him. "Yes, I shall certainly go," replied Levin; "though I fancied the princess was not very warm in her invitation." "What nonsense! That's her manner.... Come, boy, the soup!.... That's her manner--_grande dame,_" said Stepan Arkadyevitch. "I'm coming, too, but I have to go to the Countess Bonina's rehearsal. Come, isn't it true that you're a savage? How do you explain the sudden way in which you vanished from Moscow? The Shtcherbatskys were continually asking me about you, as though I ought to know. The only thing I know is that you always do what no one else does." "Yes," said Levin, slowly and with emotion, "you're right. I am a savage. Only, my savageness is not in having gone away, but in coming now. Now I have come..." "Oh, what a lucky fellow you are!" broke in Stepan Arkadyevitch, looking into Levin's eyes. "Why?" "I know a gallant steed by tokens sure, And by his eyes I know a youth in love," declaimed Stepan Arkadyevitch. "Everything is before you." "Why, is it over for you already?" "No; not over exactly, but the future is yours, and the present is mine, and the present--well, it's not all that it might be." "How so?" "Oh, things go wrong. But I don't want to talk of myself, and besides I can't explain it all," said Stepan Arkadyevitch. "Well, why have you come to Moscow, then?.... Hi! take away!" he called to the Tatar. "You guess?" responded Levin, his eyes like deep wells of light fixed on Stepan Arkadyevitch. "I guess, but I can't be the first to talk about it. You can see by that whether I guess right or wrong," said Stepan Arkadyevitch, gazing at Levin with a subtle smile. "Well, and what have you to say to me?" said Levin in a quivering voice, feeling that all the muscles of his face were quivering too. "How do you look at the question?" Stepan Arkadyevitch slowly emptied his glass of Chablis, never taking his eyes off Levin. "I?" said Stepan Arkadyevitch, "there's nothing I desire so much as that--nothing! It would be the best thing that could be." "But you're not making a mistake? You know what we're speaking of?" said Levin, piercing him with his eyes. "You think it's possible?" "I think it's possible. Why not possible?" "No! do you really think it's possible? No, tell me all you think! Oh, but if ... if refusal's in store for me!... Indeed I feel sure..." "Why should you think that?" said Stepan Arkadyevitch, smiling at his excitement. "It seems so to me sometimes. That will be awful for me, and for her too." "Oh, well, anyway there's nothing awful in it for a girl. Every girl's proud of an offer." "Yes, every girl, but not she." Stepan Arkadyevitch smiled. He so well knew that feeling of Levin's, that for him all the girls in the world were divided into two classes: one class--all the girls in the world except her, and those girls with all sorts of human weaknesses, and very ordinary girls: the other class--she alone, having no weaknesses of any sort and higher than all humanity. "Stay, take some sauce," he said, holding back Levin's hand as it pushed away the sauce. Levin obediently helped himself to sauce, but would not let Stepan Arkadyevitch go on with his dinner. "No, stop a minute, stop a minute," he said. "You must understand that it's a question of life and death for me. I have never spoken to any one of this. And there's no one I could speak of it to, except you. You know we're utterly unlike each other, different tastes and views and everything; but I know you're fond of me and understand me, and that's why I like you awfully. But for God's sake, be quite straightforward with me." "I tell you what I think," said Stepan Arkadyevitch, smiling. "But I'll say more: my wife is a wonderful woman..." Stepan Arkadyevitch sighed, remembering his position with his wife, and, after a moment's silence, resumed--"She has a gift of foreseeing things. She sees right through people; but that's not all; she knows what will come to pass, especially in the way of marriages. She foretold, for instance, that Princess Shahovskaya would marry Brenteln. No one would believe it, but it came to pass. And she's on your side." "How do you mean?" "It's not only that she likes you--she says that Kitty is certain to be your wife." At these words Levin's face suddenly lighted up with a smile, a smile not far from tears of emotion. "She says that!" cried Levin. "I always said she was exquisite, your wife. There, that's enough, enough said about it," he said, getting up from his seat. "All right, but do sit down." But Levin could not sit down. He walked with his firm tread twice up and down the little cage of a room, blinked his eyelids that his tears might not fall, and only then sat down to the table. "You must understand," said he, "it's not love. I've been in love, but it's not that. It's not my feeling, but a sort of force outside me has taken possession of me. I went away, you see, because I made up my mind that it could never be, you understand, as a happiness that does not come on earth; but I've struggled with myself, I see there's no living without it. And it must be settled." "What did you go away for?" "Ah, stop a minute! Ah, the thoughts that come crowding on one! The questions one must ask oneself! Listen. You can't imagine what you've done for me by what you said. I'm so happy that I've become positively hateful; I've forgotten everything. I heard today that my brother Nikolay ... you know, he's here ... I had even forgotten him. It seems to me that he's happy too. It's a sort of madness. But one thing's awful.... Here, you've been married, you know the feeling ... it's awful that we--old--with a past ... not of love, but of sins ... are brought all at once so near to a creature pure and innocent; it's loathsome, and that's why one can't help feeling oneself unworthy." "Oh, well, you've not many sins on your conscience." "Alas! all the same," said Levin, "when with loathing I go over my life, I shudder and curse and bitterly regret it.... Yes." "What would you have? The world's made so," said Stepan Arkadyevitch. "The one comfort is like that prayer, which I always liked: 'Forgive me not according to my unworthiness, but according to Thy lovingkindness.' That's the only way she can forgive me." Chapter 11 Levin emptied his glass, and they were silent for a while. "There's one other thing I ought to tell you. Do you know Vronsky?" Stepan Arkadyevitch asked Levin. "No, I don't. Why do you ask?" "Give us another bottle," Stepan Arkadyevitch directed the Tatar, who was filling up their glasses and fidgeting round them just when he was not wanted. "Why you ought to know Vronsky is that he's one of your rivals." "Who's Vronsky?" said Levin, and his face was suddenly transformed from the look of childlike ecstasy which Oblonsky had just been admiring to an angry and unpleasant expression. "Vronsky is one of the sons of Count Kirill Ivanovitch Vronsky, and one of the finest specimens of the gilded youth of Petersburg. I made his acquaintance in Tver when I was there on official business, and he came there for the levy of recruits. Fearfully rich, handsome, great connections, an aide-de-camp, and with all that a very nice, good-natured fellow. But he's more than simply a good-natured fellow, as I've found out here--he's a cultivated man, too, and very intelligent; he's a man who'll make his mark." Levin scowled and was dumb. "Well, he turned up here soon after you'd gone, and as I can see, he's over head and ears in love with Kitty, and you know that her mother..." "Excuse me, but I know nothing," said Levin, frowning gloomily. And immediately he recollected his brother Nikolay and how hateful he was to have been able to forget him. "You wait a bit, wait a bit," said Stepan Arkadyevitch, smiling and touching his hand. "I've told you what I know, and I repeat that in this delicate and tender matter, as far as one can conjecture, I believe the chances are in your favor." Levin dropped back in his chair; his face was pale. "But I would advise you to settle the thing as soon as may be," pursued Oblonsky, filling up his glass. "No, thanks, I can't drink any more," said Levin, pushing away his glass. "I shall be drunk.... Come, tell me how are you getting on?" he went on, obviously anxious to change the conversation. "One word more: in any case I advise you to settle the question soon. Tonight I don't advise you to speak," said Stepan Arkadyevitch. "Go round tomorrow morning, make an offer in due form, and God bless you..." "Oh, do you still think of coming to me for some shooting? Come next spring, do," said Levin. Now his whole soul was full of remorse that he had begun this conversation with Stepan Arkadyevitch. A feeling such as his was profaned by talk of the rivalry of some Petersburg officer, of the suppositions and the counsels of Stepan Arkadyevitch. Stepan Arkadyevitch smiled. He knew what was passing in Levin's soul. "I'll come some day," he said. "But women, my boy, they're the pivot everything turns upon. Things are in a bad way with me, very bad. And it's all through women. Tell me frankly now," he pursued, picking up a cigar and keeping one hand on his glass; "give me your advice." "Why, what is it?" "I'll tell you. Suppose you're married, you love your wife, but you're fascinated by another woman..." "Excuse me, but I'm absolutely unable to comprehend how ... just as I can't comprehend how I could now, after my dinner, go straight to a baker's shop and steal a roll." Stepan Arkadyevitch's eyes sparkled more than usual. "Why not? A roll will sometimes smell so good one can't resist it." "Himmlisch ist's, wenn ich bezwungen Meine irdische Begier; Aber doch wenn's nich gelungen Hatt' ich auch recht huebsch Plaisir!" As he said this, Stepan Arkadyevitch smiled subtly. Levin, too, could not help smiling. "Yes, but joking apart," resumed Stepan Arkadyevitch, "you must understand that the woman is a sweet, gentle loving creature, poor and lonely, and has sacrificed everything. Now, when the thing's done, don't you see, can one possibly cast her off? Even supposing one parts from her, so as not to break up one's family life, still, can one help feeling for her, setting her on her feet, softening her lot?" "Well, you must excuse me there. You know to me all women are divided into two classes ... at least no ... truer to say: there are women and there are ... I've never seen exquisite fallen beings, and I never shall see them, but such creatures as that painted Frenchwoman at the counter with the ringlets are vermin to my mind, and all fallen women are the same." "But the Magdalen?" "Ah, drop that! Christ would never have said those words if He had known how they would be abused. Of all the Gospel those words are the only ones remembered. However, I'm not saying so much what I think, as what I feel. I have a loathing for fallen women. You're afraid of spiders, and I of these vermin. Most likely you've not made a study of spiders and don't know their character; and so it is with me." "It's very well for you to talk like that; it's very much like that gentleman in Dickens who used to fling all difficult questions over his right shoulder. But to deny the facts is no answer. What's to be done--you tell me that, what's to be done? Your wife gets older, while you're full of life. Before you've time to look round, you feel that you can't love your wife with love, however much you may esteem her. And then all at once love turns up, and you're done for, done for," Stepan Arkadyevitch said with weary despair. Levin half smiled. "Yes, you're done for," resumed Oblonsky. "But what's to be done?" "Don't steal rolls." Stepan Arkadyevitch laughed outright. "Oh, moralist! But you must understand, there are two women; one insists only on her rights, and those rights are your love, which you can't give her; and the other sacrifices everything for you and asks for nothing. What are you to do? How are you to act? There's a fearful tragedy in it." "If you care for my profession of faith as regards that, I'll tell you that I don't believe there was any tragedy about it. And this is why. To my mind, love ... both the sorts of love, which you remember Plato defines in his Banquet, served as the test of men. Some men only understand one sort, and some only the other. And those who only know the non-platonic love have no need to talk of tragedy. In such love there can be no sort of tragedy. 'I'm much obliged for the gratification, my humble respects'--that's all the tragedy. And in platonic love there can be no tragedy, because in that love all is clear and pure, because..." At that instant Levin recollected his own sins and the inner conflict he had lived through. And he added unexpectedly: "But perhaps you are right. Very likely ... I don't know, I don't know." "It's this, don't you see," said Stepan Arkadyevitch, "you're very much all of a piece. That's your strong point and your failing. You have a character that's all of a piece, and you want the whole of life to be of a piece too--but that's not how it is. You despise public official work because you want the reality to be invariably corresponding all the while with the aim--and that's not how it is. You want a man's work, too, always to have a defined aim, and love and family life always to be undivided--and that's not how it is. All the variety, all the charm, all the beauty of life is made up of light and shadow." Levin sighed and made no reply. He was thinking of his own affairs, and did not hear Oblonsky. And suddenly both of them felt that though they were friends, though they had been dining and drinking together, which should have drawn them closer, yet each was thinking only of his own affairs, and they had nothing to do with one another. Oblonsky had more than once experienced this extreme sense of aloofness, instead of intimacy, coming on after dinner, and he knew what to do in such cases. "Bill!" he called, and he went into the next room where he promptly came across an aide-de-camp of his acquaintance and dropped into conversation with him about an actress and her protector. And at once in the conversation with the aide-de-camp Oblonsky had a sense of relaxation and relief after the conversation with Levin, which always put him to too great a mental and spiritual strain. When the Tatar appeared with a bill for twenty-six roubles and odd kopecks, besides a tip for himself, Levin, who would another time have been horrified, like any one from the country, at his share of fourteen roubles, did not notice it, paid, and set off homewards to dress and go to the Shtcherbatskys' there to decide his fate. Chapter 12 The young Princess Kitty Shtcherbatskaya was eighteen. It was the first winter that she had been out in the world. Her success in society had been greater than that of either of her elder sisters, and greater even than her mother had anticipated. To say nothing of the young men who danced at the Moscow balls being almost all in love with Kitty, two serious suitors had already this first winter made their appearance: Levin, and immediately after his departure, Count Vronsky. Levin's appearance at the beginning of the winter, his frequent visits, and evident love for Kitty, had led to the first serious conversations between Kitty's parents as to her future, and to disputes between them. The prince was on Levin's side; he said he wished for nothing better for Kitty. The princess for her part, going round the question in the manner peculiar to women, maintained that Kitty was too young, that Levin had done nothing to prove that he had serious intentions, that Kitty felt no great attraction to him, and other side issues; but she did not state the principal point, which was that she looked for a better match for her daughter, and that Levin was not to her liking, and she did not understand him. When Levin had abruptly departed, the princess was delighted, and said to her husband triumphantly: "You see I was right." When Vronsky appeared on the scene, she was still more delighted, confirmed in her opinion that Kitty was to make not simply a good, but a brilliant match. In the mother's eyes there could be no comparison between Vronsky and Levin. She disliked in Levin his strange and uncompromising opinions and his shyness in society, founded, as she supposed, on his pride and his queer sort of life, as she considered it, absorbed in cattle and peasants. She did not very much like it that he, who was in love with her daughter, had kept coming to the house for six weeks, as though he were waiting for something, inspecting, as though he were afraid he might be doing them too great an honor by making an offer, and did not realize that a man, who continually visits at a house where there is a young unmarried girl, is bound to make his intentions clear. And suddenly, without doing so, he disappeared. "It's as well he's not attractive enough for Kitty to have fallen in love with him," thought the mother. Vronsky satisfied all the mother's desires. Very wealthy, clever, of aristocratic family, on the highroad to a brilliant career in the army and at court, and a fascinating man. Nothing better could be wished for. Vronsky openly flirted with Kitty at balls, danced with her, and came continually to the house, consequently there could be no doubt of the seriousness of his intentions. But, in spite of that, the mother had spent the whole of that winter in a state of terrible anxiety and agitation. Princess Shtcherbatskaya had herself been married thirty years ago, her aunt arranging the match. Her husband, about whom everything was well known before hand, had come, looked at his future bride, and been looked at. The match-making aunt had ascertained and communicated their mutual impression. That impression had been favorable. Afterwards, on a day fixed beforehand, the expected offer was made to her parents, and accepted. All had passed very simply and easily. So it seemed, at least, to the princess. But over her own daughters she had felt how far from simple and easy is the business, apparently so commonplace, of marrying off one's daughters. The panics that had been lived through, the thoughts that had been brooded over, the money that had been wasted, and the disputes with her husband over marrying the two elder girls, Darya and Natalia! Now, since the youngest had come out, she was going through the same terrors, the same doubts, and still more violent quarrels with her husband than she had over the elder girls. The old prince, like all fathers indeed, was exceedingly punctilious on the score of the honor and reputation of his daughters. He was irrationally jealous over his daughters, especially over Kitty, who was his favorite. At every turn he had scenes with the princess for compromising her daughter. The princess had grown accustomed to this already with her other daughters, but now she felt that there was more ground for the prince's touchiness. She saw that of late years much was changed in the manners of society, that a mother's duties had become still more difficult. She saw that girls of Kitty's age formed some sort of clubs, went to some sort of lectures, mixed freely in men's society; drove about the streets alone, many of them did not curtsey, and, what was the most important thing, all the girls were firmly convinced that to choose their husbands was their own affair, and not their parents'. "Marriages aren't made nowadays as they used to be," was thought and said by all these young girls, and even by their elders. But how marriages were made now, the princess could not learn from any one. The French fashion--of the parents arranging their children's future--was not accepted; it was condemned. The English fashion of the complete independence of girls was also not accepted, and not possible in Russian society. The Russian fashion of match-making by the offices of intermediate persons was for some reason considered unseemly; it was ridiculed by every one, and by the princess herself. But how girls were to be married, and how parents were to marry them, no one knew. Everyone with whom the princess had chanced to discuss the matter said the same thing: "Mercy on us, it's high time in our day to cast off all that old-fashioned business. It's the young people have to marry; and not their parents; and so we ought to leave the young people to arrange it as they choose." It was very easy for anyone to say that who had no daughters, but the princess realized that in the process of getting to know each other, her daughter might fall in love, and fall in love with someone who did not care to marry her or who was quite unfit to be her husband. And, however much it was instilled into the princess that in our times young people ought to arrange their lives for themselves, she was unable to believe it, just as she would have been unable to believe that, at any time whatever, the most suitable playthings for children five years old ought to be loaded pistols. And so the princess was more uneasy over Kitty than she had been over her elder sisters. Now she was afraid that Vronsky might confine himself to simply flirting with her daughter. She saw that her daughter was in love with him, but tried to comfort herself with the thought that he was an honorable man, and would not do this. But at the same time she knew how easy it is, with the freedom of manners of today, to turn a girl's head, and how lightly men generally regard such a crime. The week before, Kitty had told her mother of a conversation she had with Vronsky during a mazurka. This conversation had partly reassured the princess; but perfectly at ease she could not be. Vronsky had told Kitty that both he and his brother were so used to obeying their mother that they never made up their minds to any important undertaking without consulting her. "And just now, I am impatiently awaiting my mother's arrival from Petersburg, as peculiarly fortunate," he told her. Kitty had repeated this without attaching any significance to the words. But her mother saw them in a different light. She knew that the old lady was expected from day to day, that she would be pleased at her son's choice, and she felt it strange that he should not make his offer through fear of vexing his mother. However, she was so anxious for the marriage itself, and still more for relief from her fears, that she believed it was so. Bitter as it was for the princess to see the unhappiness of her eldest daughter, Dolly, on the point of leaving her husband, her anxiety over the decision of her youngest daughter's fate engrossed all her feelings. Today, with Levin's reappearance, a fresh source of anxiety arose. She was afraid that her daughter, who had at one time, as she fancied, a feeling for Levin, might, from extreme sense of honor, refuse Vronsky, and that Levin's arrival might generally complicate and delay the affair so near being concluded. "Why, has he been here long?" the princess asked about Levin, as they returned home. "He came today, mamma." "There's one thing I want to say..." began the princess, and from her serious and alert face, Kitty guessed what it would be. "Mamma," she said, flushing hotly and turning quickly to her, "please, please don't say anything about that. I know, I know all about it." She wished for what her mother wished for, but the motives of her mother's wishes wounded her. "I only want to say that to raise hopes..." "Mamma, darling, for goodness' sake, don't talk about it. It's so horrible to talk about it." "I won't," said her mother, seeing the tears in her daughter's eyes; "but one thing, my love; you promised me you would have no secrets from me. You won't?" "Never, mamma, none," answered Kitty, flushing a little, and looking her mother straight in the face, "but there's no use in my telling you anything, and I ... I ... if I wanted to, I don't know what to say or how ... I don't know..." "No, she could not tell an untruth with those eyes," thought the mother, smiling at her agitation and happiness. The princess smiled that what was taking place just now in her soul seemed to the poor child so immense and so important. Chapter 13 After dinner, and till the beginning of the evening, Kitty was feeling a sensation akin to the sensation of a young man before a battle. Her heart throbbed violently, and her thoughts would not rest on anything. She felt that this evening, when they would both meet for the first time, would be a turning point in her life. And she was continually picturing them to herself, at one moment each separately, and then both together. When she mused on the past, she dwelt with pleasure, with tenderness, on the memories of her relations with Levin. The memories of childhood and of Levin's friendship with her dead brother gave a special poetic charm to her relations with him. His love for her, of which she felt certain, was flattering and delightful to her; and it was pleasant for her to think of Levin. In her memories of Vronsky there always entered a certain element of awkwardness, though he was in the highest degree well-bred and at ease, as though there were some false note--not in Vronsky, he was very simple and nice, but in herself, while with Levin she felt perfectly simple and clear. But, on the other hand, directly she thought of the future with Vronsky, there arose before her a perspective of brilliant happiness; with Levin the future seemed misty. When she went upstairs to dress, and looked into the looking-glass, she noticed with joy that it was one of her good days, and that she was in complete possession of all her forces,--she needed this so for what lay before her: she was conscious of external composure and free grace in her movements. At half-past seven she had only just gone down into the drawing room, when the footman announced, "Konstantin Dmitrievitch Levin." The princess was still in her room, and the prince had not come in. "So it is to be," thought Kitty, and all the blood seemed to rush to her heart. She was horrified at her paleness, as she glanced into the looking-glass. At that moment she knew beyond doubt that he had come early on purpose to find her alone and to make her an offer. And only then for the first time the whole thing presented itself in a new, different aspect; only then she realized that the question did not affect her only--with whom she would be happy, and whom she loved--but that she would have that moment to wound a man whom she liked. And to wound him cruelly. What for? Because he, dear fellow, loved her, was in love with her. But there was no help for it, so it must be, so it would have to be. "My God! shall I myself really have to say it to him?" she thought. "Can I tell him I don't love him? That will be a lie. What am I to say to him? That I love someone else? No, that's impossible. I'm going away, I'm going away." She had reached the door, when she heard his step. "No! it's not honest. What have I to be afraid of? I have done nothing wrong. What is to be, will be! I'll tell the truth. And with him one can't be ill at ease. Here he is," she said to herself, seeing his powerful, shy figure, with his shining eyes fixed on her. She looked straight into his face, as though imploring him to spare her, and gave her hand. "It's not time yet; I think I'm too early," he said glancing round the empty drawing room. When he saw that his expectations were realized, that there was nothing to prevent him from speaking, his face became gloomy. "Oh, no," said Kitty, and sat down at the table. "But this was just what I wanted, to find you alone," he began, not sitting down, and not looking at her, so as not to lose courage. "Mamma will be down directly. She was very much tired.... Yesterday..." She talked on, not knowing what her lips were uttering, and not taking her supplicating and caressing eyes off him. He glanced at her; she blushed, and ceased speaking. "I told you I did not know whether I should be here long ... that it depended on you..." She dropped her head lower and lower, not knowing herself what answer she should make to what was coming. "That it depended on you," he repeated. "I meant to say ... I meant to say ... I came for this ... to be my wife!" he brought out, not knowing what he was saying; but feeling that the most terrible thing was said, he stopped short and looked at her... She was breathing heavily, not looking at him. She was feeling ecstasy. Her soul was flooded with happiness. She had never anticipated that the utterance of love would produce such a powerful effect on her. But it lasted only an instant. She remembered Vronsky. She lifted her clear, truthful eyes, and seeing his desperate face, she answered hastily: "That cannot be ... forgive me." A moment ago, and how close she had been to him, of what importance in his life! And how aloof and remote from him she had become now! "It was bound to be so," he said, not looking at her. He bowed, and was meaning to retreat. Chapter 14 But at that very moment the princess came in. There was a look of horror on her face when she saw them alone, and their disturbed faces. Levin bowed to her, and said nothing. Kitty did not speak nor lift her eyes. "Thank God, she has refused him," thought the mother, and her face lighted up with the habitual smile with which she greeted her guests on Thursdays. She sat down and began questioning Levin about his life in the country. He sat down again, waiting for other visitors to arrive, in order to retreat unnoticed. Five minutes later there came in a friend of Kitty's, married the preceding winter, Countess Nordston. She was a thin, sallow, sickly, and nervous woman, with brilliant black eyes. She was fond of Kitty, and her affection for her showed itself, as the affection of married women for girls always does, in the desire to make a match for Kitty after her own ideal of married happiness; she wanted her to marry Vronsky. Levin she had often met at the Shtcherbatskys' early in the winter, and she had always disliked him. Her invariable and favorite pursuit, when they met, consisted in making fun of him. "I do like it when he looks down at me from the height of his grandeur, or breaks off his learned conversation with me because I'm a fool, or is condescending to me. I like that so; to see him condescending! I am so glad he can't bear me," she used to say of him. She was right, for Levin actually could not bear her, and despised her for what she was proud of and regarded as a fine characteristic--her nervousness, her delicate contempt and indifference for everything coarse and earthly. The Countess Nordston and Levin got into that relation with one another not seldom seen in society, when two persons, who remain externally on friendly terms, despise each other to such a degree that they cannot even take each other seriously, and cannot even be offended by each other. The Countess Nordston pounced upon Levin at once. "Ah, Konstantin Dmitrievitch! So you've come back to our corrupt Babylon," she said, giving him her tiny, yellow hand, and recalling what he had chanced to say early in the winter, that Moscow was a Babylon. "Come, is Babylon reformed, or have you degenerated?" she added, glancing with a simper at Kitty. "It's very flattering for me, countess, that you remember my words so well," responded Levin, who had succeeded in recovering his composure, and at once from habit dropped into his tone of joking hostility to the Countess Nordston. "They must certainly make a great impression on you." "Oh, I should think so! I always note them all down. Well, Kitty, have you been skating again?..." And she began talking to Kitty. Awkward as it was for Levin to withdraw now, it would still have been easier for him to perpetrate this awkwardness than to remain all the evening and see Kitty, who glanced at him now and then and avoided his eyes. He was on the point of getting up, when the princess, noticing that he was silent, addressed him. "Shall you be long in Moscow? You're busy with the district council, though, aren't you, and can't be away for long?" "No, princess, I'm no longer a member of the council," he said. "I have come up for a few days." "There's something the matter with him," thought Countess Nordston, glancing at his stern, serious face. "He isn't in his old argumentative mood. But I'll draw him out. I do love making a fool of him before Kitty, and I'll do it." "Konstantin Dmitrievitch," she said to him, "do explain to me, please, what's the meaning of it. You know all about such things. At home in our village of Kaluga all the peasants and all the women have drunk up all they possessed, and now they can't pay us any rent. What's the meaning of that? You always praise the peasants so." At that instant another lady came into the room, and Levin got up. "Excuse me, countess, but I really know nothing about it, and can't tell you anything," he said, and looked round at the officer who came in behind the lady. "That must be Vronsky," thought Levin, and, to be sure of it, glanced at Kitty. She had already had time to look at Vronsky, and looked round at Levin. And simply from the look in her eyes, that grew unconsciously brighter, Levin knew that she loved that man, knew it as surely as if she had told him so in words. But what sort of a man was he? Now, whether for good or for ill, Levin could not choose but remain; he must find out what the man was like whom she loved. There are people who, on meeting a successful rival, no matter in what, are at once disposed to turn their backs on everything good in him, and to see only what is bad. There are people, on the other hand, who desire above all to find in that lucky rival the qualities by which he has outstripped them, and seek with a throbbing ache at heart only what is good. Levin belonged to the second class. But he had no difficulty in finding what was good and attractive in Vronsky. It was apparent at the first glance. Vronsky was a squarely built, dark man, not very tall, with a good-humored, handsome, and exceedingly calm and resolute face. Everything about his face and figure, from his short-cropped black hair and freshly shaven chin down to his loosely fitting, brand-new uniform, was simple and at the same time elegant. Making way for the lady who had come in, Vronsky went up to the princess and then to Kitty. As he approached her, his beautiful eyes shone with a specially tender light, and with a faint, happy, and modestly triumphant smile (so it seemed to Levin), bowing carefully and respectfully over her, he held out his small broad hand to her. Greeting and saying a few words to everyone, he sat down without once glancing at Levin, who had never taken his eyes off him. "Let me introduce you," said the princess, indicating Levin. "Konstantin Dmitrievitch Levin, Count Alexey Kirillovitch Vronsky." Vronsky got up and, looking cordially at Levin, shook hands with him. "I believe I was to have dined with you this winter," he said, smiling his simple and open smile; "but you had unexpectedly left for the country." "Konstantin Dmitrievitch despises and hates town and us townspeople," said Countess Nordston. "My words must make a deep impression on you, since you remember them so well," said Levin, and, suddenly conscious that he had said just the same thing before, he reddened. Vronsky looked at Levin and Countess Nordston, and smiled. "Are you always in the country?" he inquired. "I should think it must be dull in the winter." "It's not dull if one has work to do; besides, one's not dull by oneself," Levin replied abruptly. "I am fond of the country," said Vronsky, noticing, and affecting not to notice, Levin's tone. "But I hope, count, you would not consent to live in the country always," said Countess Nordston. "I don't know; I have never tried for long. I experienced a queer feeling once," he went on. "I never longed so for the country, Russian country, with bast shoes and peasants, as when I was spending a winter with my mother in Nice. Nice itself is dull enough, you know. And indeed, Naples and Sorrento are only pleasant for a short time. And it's just there that Russia comes back to me most vividly, and especially the country. It's as though..." He talked on, addressing both Kitty and Levin, turning his serene, friendly eyes from one to the other, and saying obviously just what came into his head. Noticing that Countess Nordston wanted to say something, he stopped short without finishing what he had begun, and listened attentively to her. The conversation did not flag for an instant, so that the princess, who always kept in reserve, in case a subject should be lacking, two heavy guns--the relative advantages of classical and of modern education, and universal military service--had not to move out either of them, while Countess Nordston had not a chance of chaffing Levin. Levin wanted to, and could not, take part in the general conversation; saying to himself every instant, "Now go," he still did not go, as though waiting for something. The conversation fell upon table-turning and spirits, and Countess Nordston, who believed in spiritualism, began to describe the marvels she had seen. "Ah, countess, you really must take me, for pity's sake do take me to see them! I have never seen anything extraordinary, though I am always on the lookout for it everywhere," said Vronsky, smiling. "Very well, next Saturday," answered Countess Nordston. "But you, Konstantin Dmitrievitch, do you believe in it?" she asked Levin. "Why do you ask me? You know what I shall say." "But I want to hear your opinion." "My opinion," answered Levin, "is only that this table-turning simply proves that educated society--so called--is no higher than the peasants. They believe in the evil eye, and in witchcraft and omens, while we..." "Oh, then you don't believe in it?" "I can't believe in it, countess." "But if I've seen it myself?" "The peasant women too tell us they have seen goblins." "Then you think I tell a lie?" And she laughed a mirthless laugh. "Oh, no, Masha, Konstantin Dmitrievitch said he could not believe in it," said Kitty, blushing for Levin, and Levin saw this, and, still more exasperated, would have answered, but Vronsky with his bright frank smile rushed to the support of the conversation, which was threatening to become disagreeable. "You do not admit the conceivability at all?" he queried. "But why not? We admit the existence of electricity, of which we know nothing. Why should there not be some new force, still unknown to us, which..." "When electricity was discovered," Levin interrupted hurriedly, "it was only the phenomenon that was discovered, and it was unknown from what it proceeded and what were its effects, and ages passed before its applications were conceived. But the spiritualists have begun with tables writing for them, and spirits appearing to them, and have only later started saying that it is an unknown force." Vronsky listened attentively to Levin, as he always did listen, obviously interested in his words. "Yes, but the spiritualists say we don't know at present what this force is, but there is a force, and these are the conditions in which it acts. Let the scientific men find out what the force consists in. No, I don't see why there should not be a new force, if it..." "Why, because with electricity," Levin interrupted again, "every time you rub tar against wool, a recognized phenomenon is manifested, but in this case it does not happen every time, and so it follows it is not a natural phenomenon." Feeling probably that the conversation was taking a tone too serious for a drawing room, Vronsky made no rejoinder, but by way of trying to change the conversation, he smiled brightly, and turned to the ladies. "Do let us try at once, countess," he said; but Levin would finish saying what he thought. "I think," he went on, "that this attempt of the spiritualists to explain their marvels as some sort of new natural force is most futile. They boldly talk of spiritual force, and then try to subject it to material experiment." Every one was waiting for him to finish, and he felt it. "And I think you would be a first-rate medium," said Countess Nordston; "there's something enthusiastic in you." Levin opened his mouth, was about to say something, reddened, and said nothing. "Do let us try table-turning at once, please," said Vronsky. "Princess, will you allow it?" And Vronsky stood up, looking for a little table. Kitty got up to fetch a table, and as she passed, her eyes met Levin's. She felt for him with her whole heart, the more because she was pitying him for suffering of which she was herself the cause. "If you can forgive me, forgive me," said her eyes, "I am so happy." "I hate them all, and you, and myself," his eyes responded, and he took up his hat. But he was not destined to escape. Just as they were arranging themselves round the table, and Levin was on the point of retiring, the old prince came in, and after greeting the ladies, addressed Levin. "Ah!" he began joyously. "Been here long, my boy? I didn't even know you were in town. Very glad to see you." The old prince embraced Levin, and talking to him did not observe Vronsky, who had risen, and was serenely waiting till the prince should turn to him. Kitty felt how distasteful her father's warmth was to Levin after what had happened. She saw, too, how coldly her father responded at last to Vronsky's bow, and how Vronsky looked with amiable perplexity at her father, as though trying and failing to understand how and why anyone could be hostilely disposed towards him, and she flushed. "Prince, let us have Konstantin Dmitrievitch," said Countess Nordston; "we want to try an experiment." "What experiment? Table-turning? Well, you must excuse me, ladies and gentlemen, but to my mind it is better fun to play the ring game," said the old prince, looking at Vronsky, and guessing that it had been his suggestion. "There's some sense in that, anyway." Vronsky looked wonderingly at the prince with his resolute eyes, and, with a faint smile, began immediately talking to Countess Nordston of the great ball that was to come off next week. "I hope you will be there?" he said to Kitty. As soon as the old prince turned away from him, Levin went out unnoticed, and the last impression he carried away with him of that evening was the smiling, happy face of Kitty answering Vronsky's inquiry about the ball. Chapter 15 At the end of the evening Kitty told her mother of her conversation with Levin, and in spite of all the pity she felt for Levin, she was glad at the thought that she had received an _offer_. She had no doubt that she had acted rightly. But after she had gone to bed, for a long while she could not sleep. One impression pursued her relentlessly. It was Levin's face, with his scowling brows, and his kind eyes looking out in dark dejection below them, as he stood listening to her father, and glancing at her and at Vronsky. And she felt so sorry for him that tears came into her eyes. But immediately she thought of the man for whom she had given him up. She vividly recalled his manly, resolute face, his noble self-possession, and the good nature conspicuous in everything towards everyone. She remembered the love for her of the man she loved, and once more all was gladness in her soul, and she lay on the pillow, smiling with happiness. "I'm sorry, I'm sorry; but what could I do? It's not my fault," she said to herself; but an inner voice told her something else. Whether she felt remorse at having won Levin's love, or at having refused him, she did not know. But her happiness was poisoned by doubts. "Lord, have pity on us; Lord, have pity on us; Lord, have pity on us!" she repeated to herself, till she fell asleep. Meanwhile there took place below, in the prince's little library, one of the scenes so often repeated between the parents on account of their favorite daughter. "What? I'll tell you what!" shouted the prince, waving his arms, and at once wrapping his squirrel-lined dressing-gown round him again. "That you've no pride, no dignity; that you're disgracing, ruining your daughter by this vulgar, stupid match-making!" "But, really, for mercy's sake, prince, what have I done?" said the princess, almost crying. She, pleased and happy after her conversation with her daughter, had gone to the prince to say good-night as usual, and though she had no intention of telling him of Levin's offer and Kitty's refusal, still she hinted to her husband that she fancied things were practically settled with Vronsky, and that he would declare himself so soon as his mother arrived. And thereupon, at those words, the prince had all at once flown into a passion, and began to use unseemly language. "What have you done? I'll tell you what. First of all, you're trying to catch an eligible gentleman, and all Moscow will be talking of it, and with good reason. If you have evening parties, invite everyone, don't pick out the possible suitors. Invite all the young bucks. Engage a piano player, and let them dance, and not as you do things nowadays, hunting up good matches. It makes me sick, sick to see it, and you've gone on till you've turned the poor wench's head. Levin's a thousand times the better man. As for this little Petersburg swell, they're turned out by machinery, all on one pattern, and all precious rubbish. But if he were a prince of the blood, my daughter need not run after anyone." "But what have I done?" "Why, you've..." The prince was crying wrathfully. "I know if one were to listen to you," interrupted the princess, "we should never marry our daughter. If it's to be so, we'd better go into the country." "Well, and we had better." "But do wait a minute. Do I try and catch them? I don't try to catch them in the least. A young man, and a very nice one, has fallen in love with her, and she, I fancy..." "Oh, yes, you fancy! And how if she really is in love, and he's no more thinking of marriage than I am!... Oh, that I should live to see it! Ah! spiritualism! Ah! Nice! Ah! the ball!" And the prince, imagining that he was mimicking his wife, made a mincing curtsey at each word. "And this is how we're preparing wretchedness for Kitty; and she's really got the notion into her head..." "But what makes you suppose so?" "I don't suppose; I know. We have eyes for such things, though women-folk haven't. I see a man who has serious intentions, that's Levin: and I see a peacock, like this feather-head, who's only amusing himself." "Oh, well, when once you get an idea into your head!..." "Well, you'll remember my words, but too late, just as with Dolly." "Well, well, we won't talk of it," the princess stopped him, recollecting her unlucky Dolly. "By all means, and good night!" And signing each other with the cross, the husband and wife parted with a kiss, feeling that they each remained of their own opinion. The princess had at first been quite certain that that evening had settled Kitty's future, and that there could be no doubt of Vronsky's intentions, but her husband's words had disturbed her. And returning to her own room, in terror before the unknown future, she, too, like Kitty, repeated several times in her heart, "Lord, have pity; Lord, have pity; Lord, have pity." Chapter 16 Vronsky had never had a real home life. His mother had been in her youth a brilliant society woman, who had had during her married life, and still more afterwards, many love affairs notorious in the whole fashionable world. His father he scarcely remembered, and he had been educated in the Corps of Pages. Leaving the school very young as a brilliant officer, he had at once got into the circle of wealthy Petersburg army men. Although he did go more or less into Petersburg society, his love affairs had always hitherto been outside it. In Moscow he had for the first time felt, after his luxurious and coarse life at Petersburg, all the charm of intimacy with a sweet and innocent girl of his own rank, who cared for him. It never even entered his head that there could be any harm in his relations with Kitty. At balls he danced principally with her. He was a constant visitor at their house. He talked to her as people commonly do talk in society--all sorts of nonsense, but nonsense to which he could not help attaching a special meaning in her case. Although he said nothing to her that he could not have said before everybody, he felt that she was becoming more and more dependent upon him, and the more he felt this, the better he liked it, and the tenderer was his feeling for her. He did not know that his mode of behavior in relation to Kitty had a definite character, that it is courting young girls with no intention of marriage, and that such courting is one of the evil actions common among brilliant young men such as he was. It seemed to him that he was the first who had discovered this pleasure, and he was enjoying his discovery. If he could have heard what her parents were saying that evening, if he could have put himself at the point of view of the family and have heard that Kitty would be unhappy if he did not marry her, he would have been greatly astonished, and would not have believed it. He could not believe that what gave such great and delicate pleasure to him, and above all to her, could be wrong. Still less could he have believed that he ought to marry. Marriage had never presented itself to him as a possibility. He not only disliked family life, but a family, and especially a husband was, in accordance with the views general in the bachelor world in which he lived, conceived as something alien, repellant, and, above all, ridiculous. But though Vronsky had not the least suspicion what the parents were saying, he felt on coming away from the Shtcherbatskys' that the secret spiritual bond which existed between him and Kitty had grown so much stronger that evening that some step must be taken. But what step could and ought to be taken he could not imagine. "What is so exquisite," he thought, as he returned from the Shtcherbatskys', carrying away with him, as he always did, a delicious feeling of purity and freshness, arising partly from the fact that he had not been smoking for a whole evening, and with it a new feeling of tenderness at her love for him--"what is so exquisite is that not a word has been said by me or by her, but we understand each other so well in this unseen language of looks and tones, that this evening more clearly than ever she told me she loves me. And how secretly, simply, and most of all, how trustfully! I feel myself better, purer. I feel that I have a heart, and that there is a great deal of good in me. Those sweet, loving eyes! When she said: 'Indeed I do...' "Well, what then? Oh, nothing. It's good for me, and good for her." And he began wondering where to finish the evening. He passed in review of the places he might go to. "Club? a game of bezique, champagne with Ignatov? No, I'm not going. _Chateau des Fleurs_; there I shall find Oblonsky, songs, the cancan. No, I'm sick of it. That's why I like the Shtcherbatskys', that I'm growing better. I'll go home." He went straight to his room at Dussot's Hotel, ordered supper, and then undressed, and as soon as his head touched the pillow, fell into a sound sleep. Chapter 17 Next day at eleven o'clock in the morning Vronsky drove to the station of the Petersburg railway to meet his mother, and the first person he came across on the great flight of steps was Oblonsky, who was expecting his sister by the same train. "Ah! your excellency!" cried Oblonsky, "whom are you meeting?" "My mother," Vronsky responded, smiling, as everyone did who met Oblonsky. He shook hands with him, and together they ascended the steps. "She is to be here from Petersburg today." "I was looking out for you till two o'clock last night. Where did you go after the Shtcherbatskys'?" "Home," answered Vronsky. "I must own I felt so well content yesterday after the Shtcherbatskys' that I didn't care to go anywhere." "I know a gallant steed by tokens sure, And by his eyes I know a youth in love," declaimed Stepan Arkadyevitch, just as he had done before to Levin. Vronsky smiled with a look that seemed to say that he did not deny it, but he promptly changed the subject. "And whom are you meeting?" he asked. "I? I've come to meet a pretty woman," said Oblonsky. "You don't say so!" "_Honi soit qui mal y pense!_ My sister Anna." "Ah! that's Madame Karenina," said Vronsky. "You know her, no doubt?" "I think I do. Or perhaps not ... I really am not sure," Vronsky answered heedlessly, with a vague recollection of something stiff and tedious evoked by the name Karenina. "But Alexey Alexandrovitch, my celebrated brother-in-law, you surely must know. All the world knows him." "I know him by reputation and by sight. I know that he's clever, learned, religious somewhat.... But you know that's not ... _not in my line,_" said Vronsky in English. "Yes, he's a very remarkable man; rather a conservative, but a splendid man," observed Stepan Arkadyevitch, "a splendid man." "Oh, well, so much the better for him," said Vronsky smiling. "Oh, you've come," he said, addressing a tall old footman of his mother's, standing at the door; "come here." Besides the charm Oblonsky had in general for everyone, Vronsky had felt of late specially drawn to him by the fact that in his imagination he was associated with Kitty. "Well, what do you say? Shall we give a supper on Sunday for the _diva?_" he said to him with a smile, taking his arm. "Of course. I'm collecting subscriptions. Oh, did you make the acquaintance of my friend Levin?" asked Stepan Arkadyevitch. "Yes; but he left rather early." "He's a capital fellow," pursued Oblonsky. "Isn't he?" "I don't know why it is," responded Vronsky, "in all Moscow people--present company of course excepted," he put in jestingly, "there's something uncompromising. They are all on the defensive, lose their tempers, as though they all want to make one feel something..." "Yes, that's true, it is so," said Stepan Arkadyevitch, laughing good-humoredly. "Will the train soon be in?" Vronsky asked a railway official. "The train's signaled," answered the man. The approach of the train was more and more evident by the preparatory bustle in the station, the rush of porters, the movement of policemen and attendants, and people meeting the train. Through the frosty vapor could be seen workmen in short sheepskins and soft felt boots crossing the rails of the curving line. The hiss of the boiler could be heard on the distant rails, and the rumble of something heavy. "No," said Stepan Arkadyevitch, who felt a great inclination to tell Vronsky of Levin's intentions in regard to Kitty. "No, you've not got a true impression of Levin. He's a very nervous man, and is sometimes out of humor, it's true, but then he is often very nice. He's such a true, honest nature, and a heart of gold. But yesterday there were special reasons," pursued Stepan Arkadyevitch, with a meaning smile, totally oblivious of the genuine sympathy he had felt the day before for his friend, and feeling the same sympathy now, only for Vronsky. "Yes, there were reasons why he could not help being either particularly happy or particularly unhappy." Vronsky stood still and asked directly: "How so? Do you mean he made your _belle-soeur_ an offer yesterday?" "Maybe," said Stepan Arkadyevitch. "I fancied something of the sort yesterday. Yes, if he went away early, and was out of humor too, it must mean it.... He's been so long in love, and I'm very sorry for him." "So that's it! I should imagine, though, she might reckon on a better match," said Vronsky, drawing himself up and walking about again, "though I don't know him, of course," he added. "Yes, that is a hateful position! That's why most fellows prefer to have to do with Klaras. If you don't succeed with them it only proves that you've not enough cash, but in this case one's dignity's at stake. But here's the train." The engine had already whistled in the distance. A few instants later the platform was quivering, and with puffs of steam hanging low in the air from the frost, the engine rolled up, with the lever of the middle wheel rhythmically moving up and down, and the stooping figure of the engine-driver covered with frost. Behind the tender, setting the platform more and more slowly swaying, came the luggage van with a dog whining in it. At last the passenger carriages rolled in, oscillating before coming to a standstill. A smart guard jumped out, giving a whistle, and after him one by one the impatient passengers began to get down: an officer of the guards, holding himself erect, and looking severely about him; a nimble little merchant with a satchel, smiling gaily; a peasant with a sack over his shoulder. Vronsky, standing beside Oblonsky, watched the carriages and the passengers, totally oblivious of his mother. What he had just heard about Kitty excited and delighted him. Unconsciously he arched his chest, and his eyes flashed. He felt himself a conqueror. "Countess Vronskaya is in that compartment," said the smart guard, going up to Vronsky. The guard's words roused him, and forced him to think of his mother and his approaching meeting with her. He did not in his heart respect his mother, and without acknowledging it to himself, he did not love her, though in accordance with the ideas of the set in which he lived, and with his own education, he could not have conceived of any behavior to his mother not in the highest degree respectful and obedient, and the more externally obedient and respectful his behavior, the less in his heart he respected and loved her. Chapter 18 Vronsky followed the guard to the carriage, and at the door of the compartment he stopped short to make room for a lady who was getting out. With the insight of a man of the world, from one glance at this lady's appearance Vronsky classified her as belonging to the best society. He begged pardon, and was getting into the carriage, but felt he must glance at her once more; not that she was very beautiful, not on account of the elegance and modest grace which were apparent in her whole figure, but because in the expression of her charming face, as she passed close by him, there was something peculiarly caressing and soft. As he looked round, she too turned her head. Her shining gray eyes, that looked dark from the thick lashes, rested with friendly attention on his face, as though she were recognizing him, and then promptly turned away to the passing crowd, as though seeking someone. In that brief look Vronsky had time to notice the suppressed eagerness which played over her face, and flitted between the brilliant eyes and the faint smile that curved her red lips. It was as though her nature were so brimming over with something that against her will it showed itself now in the flash of her eyes, and now in her smile. Deliberately she shrouded the light in her eyes, but it shone against her will in the faintly perceptible smile. Vronsky stepped into the carriage. His mother, a dried-up old lady with black eyes and ringlets, screwed up her eyes, scanning her son, and smiled slightly with her thin lips. Getting up from the seat and handing her maid a bag, she gave her little wrinkled hand to her son to kiss, and lifting his head from her hand, kissed him on the cheek. "You got my telegram? Quite well? Thank God." "You had a good journey?" said her son, sitting down beside her, and involuntarily listening to a woman's voice outside the door. He knew it was the voice of the lady he had met at the door. "All the same I don't agree with you," said the lady's voice. "It's the Petersburg view, madame." "Not Petersburg, but simply feminine," she responded. "Well, well, allow me to kiss your hand." "Good-bye, Ivan Petrovitch. And could you see if my brother is here, and send him to me?" said the lady in the doorway, and stepped back again into the compartment. "Well, have you found your brother?" said Countess Vronskaya, addressing the lady. Vronsky understood now that this was Madame Karenina. "Your brother is here," he said, standing up. "Excuse me, I did not know you, and, indeed, our acquaintance was so slight," said Vronsky, bowing, "that no doubt you do not remember me." "Oh, no," said she, "I should have known you because your mother and I have been talking, I think, of nothing but you all the way." As she spoke she let the eagerness that would insist on coming out show itself in her smile. "And still no sign of my brother." "Do call him, Alexey," said the old countess. Vronsky stepped out onto the platform and shouted: "Oblonsky! Here!" Madame Karenina, however, did not wait for her brother, but catching sight of him she stepped out with her light, resolute step. And as soon as her brother had reached her, with a gesture that struck Vronsky by its decision and its grace, she flung her left arm around his neck, drew him rapidly to her, and kissed him warmly. Vronsky gazed, never taking his eyes from her, and smiled, he could not have said why. But recollecting that his mother was waiting for him, he went back again into the carriage. "She's very sweet, isn't she?" said the countess of Madame Karenina. "Her husband put her with me, and I was delighted to have her. We've been talking all the way. And so you, I hear ... _vous filez le parfait amour. Tant mieux, mon cher, tant mieux._" "I don't know what you are referring to, maman," he answered coldly. "Come, maman, let us go." Madame Karenina entered the carriage again to say good-bye to the countess. "Well, countess, you have met your son, and I my brother," she said. "And all my gossip is exhausted. I should have nothing more to tell you." "Oh, no," said the countess, taking her hand. "I could go all around the world with you and never be dull. You are one of those delightful women in whose company it's sweet to be silent as well as to talk. Now please don't fret over your son; you can't expect never to be parted." Madame Karenina stood quite still, holding herself very erect, and her eyes were smiling. "Anna Arkadyevna," the countess said in explanation to her son, "has a little son eight years old, I believe, and she has never been parted from him before, and she keeps fretting over leaving him." "Yes, the countess and I have been talking all the time, I of my son and she of hers," said Madame Karenina, and again a smile lighted up her face, a caressing smile intended for him. "I am afraid that you must have been dreadfully bored," he said, promptly catching the ball of coquetry she had flung him. But apparently she did not care to pursue the conversation in that strain, and she turned to the old countess. "Thank you so much. The time has passed so quickly. Good-bye, countess." "Good-bye, my love," answered the countess. "Let me have a kiss of your pretty face. I speak plainly, at my age, and I tell you simply that I've lost my heart to you." Stereotyped as the phrase was, Madame Karenina obviously believed it and was delighted by it. She flushed, bent down slightly, and put her cheek to the countess's lips, drew herself up again, and with the same smile fluttering between her lips and her eyes, she gave her hand to Vronsky. He pressed the little hand she gave him, and was delighted, as though at something special, by the energetic squeeze with which she freely and vigorously shook his hand. She went out with the rapid step which bore her rather fully-developed figure with such strange lightness. "Very charming," said the countess. That was just what her son was thinking. His eyes followed her till her graceful figure was out of sight, and then the smile remained on his face. He saw out of the window how she went up to her brother, put her arm in his, and began telling him something eagerly, obviously something that had nothing to do with him, Vronsky, and at that he felt annoyed. "Well, maman, are you perfectly well?" he repeated, turning to his mother. "Everything has been delightful. Alexander has been very good, and Marie has grown very pretty. She's very interesting." And she began telling him again of what interested her most--the christening of her grandson, for which she had been staying in Petersburg, and the special favor shown her elder son by the Tsar. "Here's Lavrenty," said Vronsky, looking out of the window; "now we can go, if you like." The old butler who had traveled with the countess, came to the carriage to announce that everything was ready, and the countess got up to go. "Come; there's not such a crowd now," said Vronsky. The maid took a handbag and the lap dog, the butler and a porter the other baggage. Vronsky gave his mother his arm; but just as they were getting out of the carriage several men ran suddenly by with panic-stricken faces. The station-master, too, ran by in his extraordinary colored cap. Obviously something unusual had happened. The crowd who had left the train were running back again. "What?... What?... Where?... Flung himself!... Crushed!..." was heard among the crowd. Stepan Arkadyevitch, with his sister on his arm, turned back. They too looked scared, and stopped at the carriage door to avoid the crowd. The ladies got in, while Vronsky and Stepan Arkadyevitch followed the crowd to find out details of the disaster. A guard, either drunk or too much muffled up in the bitter frost, had not heard the train moving back, and had been crushed. Before Vronsky and Oblonsky came back the ladies heard the facts from the butler. Oblonsky and Vronsky had both seen the mutilated corpse. Oblonsky was evidently upset. He frowned and seemed ready to cry. "Ah, how awful! Ah, Anna, if you had seen it! Ah, how awful!" he said. Vronsky did not speak; his handsome face was serious, but perfectly composed. "Oh, if you had seen it, countess," said Stepan Arkadyevitch. "And his wife was there.... It was awful to see her!.... She flung herself on the body. They say he was the only support of an immense family. How awful!" "Couldn't one do anything for her?" said Madame Karenina in an agitated whisper. Vronsky glanced at her, and immediately got out of the carriage. "I'll be back directly, maman," he remarked, turning round in the doorway. When he came back a few minutes later, Stepan Arkadyevitch was already in conversation with the countess about the new singer, while the countess was impatiently looking towards the door, waiting for her son. "Now let us be off," said Vronsky, coming in. They went out together. Vronsky was in front with his mother. Behind walked Madame Karenina with her brother. Just as they were going out of the station the station-master overtook Vronsky. "You gave my assistant two hundred roubles. Would you kindly explain for whose benefit you intend them?" "For the widow," said Vronsky, shrugging his shoulders. "I should have thought there was no need to ask." "You gave that?" cried Oblonsky, behind, and, pressing his sister's hand, he added: "Very nice, very nice! Isn't he a splendid fellow? Good-bye, countess." And he and his sister stood still, looking for her maid. When they went out the Vronsky's carriage had already driven away. People coming in were still talking of what happened. "What a horrible death!" said a gentleman, passing by. "They say he was cut in two pieces." "On the contrary, I think it's the easiest--instantaneous," observed another. "How is it they don't take proper precautions?" said a third. Madame Karenina seated herself in the carriage, and Stepan Arkadyevitch saw with surprise that her lips were quivering, and she was with difficulty restraining her tears. "What is it, Anna?" he asked, when they had driven a few hundred yards. "It's an omen of evil," she said. "What nonsense!" said Stepan Arkadyevitch. "You've come, that's the chief thing. You can't conceive how I'm resting my hopes on you." "Have you known Vronsky long?" she asked. "Yes. You know we're hoping he will marry Kitty." "Yes?" said Anna softly. "Come now, let us talk of you," she added, tossing her head, as though she would physically shake off something superfluous oppressing her. "Let us talk of your affairs. I got your letter, and here I am." "Yes, all my hopes are in you," said Stepan Arkadyevitch. "Well, tell me all about it." And Stepan Arkadyevitch began to tell his story. On reaching home Oblonsky helped his sister out, sighed, pressed her hand, and set off to his office. Chapter 19 When Anna went into the room, Dolly was sitting in the little drawing-room with a white-headed fat little boy, already like his father, giving him a lesson in French reading. As the boy read, he kept twisting and trying to tear off a button that was nearly off his jacket. His mother had several times taken his hand from it, but the fat little hand went back to the button again. His mother pulled the button off and put it in her pocket. "Keep your hands still, Grisha," she said, and she took up her work, a coverlet she had long been making. She always set to work on it at depressed moments, and now she knitted at it nervously, twitching her fingers and counting the stitches. Though she had sent word the day before to her husband that it was nothing to her whether his sister came or not, she had made everything ready for her arrival, and was expecting her sister-in-law with emotion. Dolly was crushed by her sorrow, utterly swallowed up by it. Still she did not forget that Anna, her sister-in-law, was the wife of one of the most important personages in Petersburg, and was a Petersburg _grande dame_. And, thanks to this circumstance, she did not carry out her threat to her husband--that is to say, she remembered that her sister-in-law was coming. "And, after all, Anna is in no wise to blame," thought Dolly. "I know nothing of her except the very best, and I have seen nothing but kindness and affection from her towards myself." It was true that as far as she could recall her impressions at Petersburg at the Karenins', she did not like their household itself; there was something artificial in the whole framework of their family life. "But why should I not receive her? If only she doesn't take it into her head to console me!" thought Dolly. "All consolation and counsel and Christian forgiveness, all that I have thought over a thousand times, and it's all no use." All these days Dolly had been alone with her children. She did not want to talk of her sorrow, but with that sorrow in her heart she could not talk of outside matters. She knew that in one way or another she would tell Anna everything, and she was alternately glad at the thought of speaking freely, and angry at the necessity of speaking of her humiliation with her, his sister, and of hearing her ready-made phrases of good advice and comfort. She had been on the lookout for her, glancing at her watch every minute, and, as so often happens, let slip just that minute when her visitor arrived, so that she did not hear the bell. Catching a sound of skirts and light steps at the door, she looked round, and her care-worn face unconsciously expressed not gladness, but wonder. She got up and embraced her sister-in-law. "What, here already!" she said as she kissed her. "Dolly, how glad I am to see you!" "I am glad, too," said Dolly, faintly smiling, and trying by the expression of Anna's face to find out whether she knew. "Most likely she knows," she thought, noticing the sympathy in Anna's face. "Well, come along, I'll take you to your room," she went on, trying to defer as long as possible the moment of confidences. "Is this Grisha? Heavens, how he's grown!" said Anna; and kissing him, never taking her eyes off Dolly, she stood still and flushed a little. "No, please, let us stay here." She took off her kerchief and her hat, and catching it in a lock of her black hair, which was a mass of curls, she tossed her head and shook her hair down. "You are radiant with health and happiness!" said Dolly, almost with envy. "I?.... Yes," said Anna. "Merciful heavens, Tanya! You're the same age as my Seryozha," she added, addressing the little girl as she ran in. She took her in her arms and kissed her. "Delightful child, delightful! Show me them all." She mentioned them, not only remembering the names, but the years, months, characters, illnesses of all the children, and Dolly could not but appreciate that. "Very well, we will go to them," she said. "It's a pity Vassya's asleep." After seeing the children, they sat down, alone now, in the drawing room, to coffee. Anna took the tray, and then pushed it away from her. "Dolly," she said, "he has told me." Dolly looked coldly at Anna; she was waiting now for phrases of conventional sympathy, but Anna said nothing of the sort. "Dolly, dear," she said, "I don't want to speak for him to you, nor to try to comfort you; that's impossible. But, darling, I'm simply sorry, sorry from my heart for you!" Under the thick lashes of her shining eyes tears suddenly glittered. She moved nearer to her sister-in-law and took her hand in her vigorous little hand. Dolly did not shrink away, but her face did not lose its frigid expression. She said: "To comfort me's impossible. Everything's lost after what has happened, everything's over!" And directly she had said this, her face suddenly softened. Anna lifted the wasted, thin hand of Dolly, kissed it and said: "But, Dolly, what's to be done, what's to be done? How is it best to act in this awful position--that's what you must think of." "All's over, and there's nothing more," said Dolly. "And the worst of all is, you see, that I can't cast him off: there are the children, I am tied. And I can't live with him! it's a torture to me to see him." "Dolly, darling, he has spoken to me, but I want to hear it from you: tell me about it." Dolly looked at her inquiringly. Sympathy and love unfeigned were visible on Anna's face. "Very well," she said all at once. "But I will tell you it from the beginning. You know how I was married. With the education mamma gave us I was more than innocent, I was stupid. I knew nothing. I know they say men tell their wives of their former lives, but Stiva"--she corrected herself--"Stepan Arkadyevitch told me nothing. You'll hardly believe it, but till now I imagined that I was the only woman he had known. So I lived eight years. You must understand that I was so far from suspecting infidelity, I regarded it as impossible, and then--try to imagine it--with such ideas, to find out suddenly all the horror, all the loathsomeness.... You must try and understand me. To be fully convinced of one's happiness, and all at once..." continued Dolly, holding back her sobs, "to get a letter ... his letter to his mistress, my governess. No, it's too awful!" She hastily pulled out her handkerchief and hid her face in it. "I can understand being carried away by feeling," she went on after a brief silence, "but deliberately, slyly deceiving me ... and with whom?... To go on being my husband together with her ... it's awful! You can't understand..." "Oh, yes, I understand! I understand! Dolly, dearest, I do understand," said Anna, pressing her hand. "And do you imagine he realizes all the awfulness of my position?" Dolly resumed. "Not the slightest! He's happy and contented." "Oh, no!" Anna interposed quickly. "He's to be pitied, he's weighed down by remorse..." "Is he capable of remorse?" Dolly interrupted, gazing intently into her sister-in-law's face. "Yes. I know him. I could not look at him without feeling sorry for him. We both know him. He's good-hearted, but he's proud, and now he's so humiliated. What touched me most..." (and here Anna guessed what would touch Dolly most) "he's tortured by two things: that he's ashamed for the children's sake, and that, loving you--yes, yes, loving you beyond everything on earth," she hurriedly interrupted Dolly, who would have answered--"he has hurt you, pierced you to the heart. 'No, no, she cannot forgive me,' he keeps saying." Dolly looked dreamily away beyond her sister-in-law as she listened to her words. "Yes, I can see that his position is awful; it's worse for the guilty than the innocent," she said, "if he feels that all the misery comes from his fault. But how am I to forgive him, how am I to be his wife again after her? For me to live with him now would be torture, just because I love my past love for him..." And sobs cut short her words. But as though of set design, each time she was softened she began to speak again of what exasperated her. "She's young, you see, she's pretty," she went on. "Do you know, Anna, my youth and my beauty are gone, taken by whom? By him and his children. I have worked for him, and all I had has gone in his service, and now of course any fresh, vulgar creature has more charm for him. No doubt they talked of me together, or, worse still, they were silent. Do you understand?" Again her eyes glowed with hatred. "And after that he will tell me.... What! can I believe him? Never! No, everything is over, everything that once made my comfort, the reward of my work, and my sufferings.... Would you believe it, I was teaching Grisha just now: once this was a joy to me, now it is a torture. What have I to strive and toil for? Why are the children here? What's so awful is that all at once my heart's turned, and instead of love and tenderness, I have nothing but hatred for him; yes, hatred. I could kill him." "Darling Dolly, I understand, but don't torture yourself. You are so distressed, so overwrought, that you look at many things mistakenly." Dolly grew calmer, and for two minutes both were silent. "What's to be done? Think for me, Anna, help me. I have thought over everything, and I see nothing." Anna could think of nothing, but her heart responded instantly to each word, to each change of expression of her sister-in-law. "One thing I would say," began Anna. "I am his sister, I know his character, that faculty of forgetting everything, everything" (she waved her hand before her forehead), "that faculty for being completely carried away, but for completely repenting too. He cannot believe it, he cannot comprehend now how he can have acted as he did." "No; he understands, he understood!" Dolly broke in. "But I ... you are forgetting me ... does it make it easier for me?" "Wait a minute. When he told me, I will own I did not realize all the awfulness of your position. I saw nothing but him, and that the family was broken up. I felt sorry for him, but after talking to you, I see it, as a woman, quite differently. I see your agony, and I can't tell you how sorry I am for you! But, Dolly, darling, I fully realize your sufferings, only there is one thing I don't know; I don't know ... I don't know how much love there is still in your heart for him. That you know--whether there is enough for you to be able to forgive him. If there is, forgive him!" "No," Dolly was beginning, but Anna cut her short, kissing her hand once more. "I know more of the world than you do," she said. "I know how men like Stiva look at it. You speak of his talking of you with her. That never happened. Such men are unfaithful, but their home and wife are sacred to them. Somehow or other these women are still looked on with contempt by them, and do not touch on their feeling for their family. They draw a sort of line that can't be crossed between them and their families. I don't understand it, but it is so." "Yes, but he has kissed her..." "Dolly, hush, darling. I saw Stiva when he was in love with you. I remember the time when he came to me and cried, talking of you, and all the poetry and loftiness of his feeling for you, and I know that the longer he has lived with you the loftier you have been in his eyes. You know we have sometimes laughed at him for putting in at every word: 'Dolly's a marvelous woman.' You have always been a divinity for him, and you are that still, and this has not been an infidelity of the heart..." "But if it is repeated?" "It cannot be, as I understand it..." "Yes, but could you forgive it?" "I don't know, I can't judge.... Yes, I can," said Anna, thinking a moment; and grasping the position in her thought and weighing it in her inner balance, she added: "Yes, I can, I can, I can. Yes, I could forgive it. I could not be the same, no; but I could forgive it, and forgive it as though it had never been, never been at all..." "Oh, of course," Dolly interposed quickly, as though saying what she had more than once thought, "else it would not be forgiveness. If one forgives, it must be completely, completely. Come, let us go; I'll take you to your room," she said, getting up, and on the way she embraced Anna. "My dear, how glad I am you came. It has made things better, ever so much better." Chapter 20 The whole of that day Anna spent at home, that's to say at the Oblonskys', and received no one, though some of her acquaintances had already heard of her arrival, and came to call the same day. Anna spent the whole morning with Dolly and the children. She merely sent a brief note to her brother to tell him that he must not fail to dine at home. "Come, God is merciful," she wrote. Oblonsky did dine at home: the conversation was general, and his wife, speaking to him, addressed him as "Stiva," as she had not done before. In the relations of the husband and wife the same estrangement still remained, but there was no talk now of separation, and Stepan Arkadyevitch saw the possibility of explanation and reconciliation. Immediately after dinner Kitty came in. She knew Anna Arkadyevna, but only very slightly, and she came now to her sister's with some trepidation, at the prospect of meeting this fashionable Petersburg lady, whom everyone spoke so highly of. But she made a favorable impression on Anna Arkadyevna--she saw that at once. Anna was unmistakably admiring her loveliness and her youth: before Kitty knew where she was she found herself not merely under Anna's sway, but in love with her, as young girls do fall in love with older and married women. Anna was not like a fashionable lady, nor the mother of a boy of eight years old. In the elasticity of her movements, the freshness and the unflagging eagerness which persisted in her face, and broke out in her smile and her glance, she would rather have passed for a girl of twenty, had it not been for a serious and at times mournful look in her eyes, which struck and attracted Kitty. Kitty felt that Anna was perfectly simple and was concealing nothing, but that she had another higher world of interests inaccessible to her, complex and poetic. After dinner, when Dolly went away to her own room, Anna rose quickly and went up to her brother, who was just lighting a cigar. "Stiva," she said to him, winking gaily, crossing him and glancing towards the door, "go, and God help you." He threw down the cigar, understanding her, and departed through the doorway. When Stepan Arkadyevitch had disappeared, she went back to the sofa where she had been sitting, surrounded by the children. Either because the children saw that their mother was fond of this aunt, or that they felt a special charm in her themselves, the two elder ones, and the younger following their lead, as children so often do, had clung about their new aunt since before dinner, and would not leave her side. And it had become a sort of game among them to sit a close as possible to their aunt, to touch her, hold her little hand, kiss it, play with her ring, or even touch the flounce of her skirt. "Come, come, as we were sitting before," said Anna Arkadyevna, sitting down in her place. And again Grisha poked his little face under her arm, and nestled with his head on her gown, beaming with pride and happiness. "And when is your next ball?" she asked Kitty. "Next week, and a splendid ball. One of those balls where one always enjoys oneself." "Why, are there balls where one always enjoys oneself?" Anna said, with tender irony. "It's strange, but there are. At the Bobrishtchevs' one always enjoys oneself, and at the Nikitins' too, while at the Mezhkovs' it's always dull. Haven't you noticed it?" "No, my dear, for me there are no balls now where one enjoys oneself," said Anna, and Kitty detected in her eyes that mysterious world which was not open to her. "For me there are some less dull and tiresome." "How can _you_ be dull at a ball?" "Why should not _I_ be dull at a ball?" inquired Anna. Kitty perceived that Anna knew what answer would follow. "Because you always look nicer than anyone." Anna had the faculty of blushing. She blushed a little, and said: "In the first place it's never so; and secondly, if it were, what difference would it make to me?" "Are you coming to this ball?" asked Kitty. "I imagine it won't be possible to avoid going. Here, take it," she said to Tanya, who was pulling the loosely-fitting ring off her white, slender-tipped finger. "I shall be so glad if you go. I should so like to see you at a ball." "Anyway, if I do go, I shall comfort myself with the thought that it's a pleasure to you ... Grisha, don't pull my hair. It's untidy enough without that," she said, putting up a straying lock, which Grisha had been playing with. "I imagine you at the ball in lilac." "And why in lilac precisely?" asked Anna, smiling. "Now, children, run along, run along. Do you hear? Miss Hoole is calling you to tea," she said, tearing the children from her, and sending them off to the dining room. "I know why you press me to come to the ball. You expect a great deal of this ball, and you want everyone to be there to take part in it." "How do you know? Yes." "Oh! what a happy time you are at," pursued Anna. "I remember, and I know that blue haze like the mist on the mountains in Switzerland. That mist which covers everything in that blissful time when childhood is just ending, and out of that vast circle, happy and gay, there is a path growing narrower and narrower, and it is delightful and alarming to enter the ballroom, bright and splendid as it is.... Who has not been through it?" Kitty smiled without speaking. "But how did she go through it? How I should like to know all her love story!" thought Kitty, recalling the unromantic appearance of Alexey Alexandrovitch, her husband. "I know something. Stiva told me, and I congratulate you. I liked him so much," Anna continued. "I met Vronsky at the railway station." "Oh, was he there?" asked Kitty, blushing. "What was it Stiva told you?" "Stiva gossiped about it all. And I should be so glad ... I traveled yesterday with Vronsky's mother," she went on; "and his mother talked without a pause of him, he's her favorite. I know mothers are partial, but..." "What did his mother tell you?" "Oh, a great deal! And I know that he's her favorite; still one can see how chivalrous he is.... Well, for instance, she told me that he had wanted to give up all his property to his brother, that he had done something extraordinary when he was quite a child, saved a woman out of the water. He's a hero, in fact," said Anna, smiling and recollecting the two hundred roubles he had given at the station. But she did not tell Kitty about the two hundred roubles. For some reason it was disagreeable to her to think of it. She felt that there was something that had to do with her in it, and something that ought not to have been. "She pressed me very much to go and see her," Anna went on; "and I shall be glad to go to see her tomorrow. Stiva is staying a long while in Dolly's room, thank God," Anna added, changing the subject, and getting up, Kitty fancied, displeased with something. "No, I'm first! No, I!" screamed the children, who had finished tea, running up to their Aunt Anna. "All together," said Anna, and she ran laughing to meet them, and embraced and swung round all the throng of swarming children, shrieking with delight. Chapter 21 Dolly came out of her room to the tea of the grown-up people. Stepan Arkadyevitch did not come out. He must have left his wife's room by the other door. "I am afraid you'll be cold upstairs," observed Dolly, addressing Anna; "I want to move you downstairs, and we shall be nearer." "Oh, please, don't trouble about me," answered Anna, looking intently into Dolly's face, trying to make out whether there had been a reconciliation or not. "It will be lighter for you here," answered her sister-in-law. "I assure you that I sleep everywhere, and always like a marmot." "What's the question?" inquired Stepan Arkadyevitch, coming out of his room and addressing his wife. From his tone both Kitty and Anna knew that a reconciliation had taken place. "I want to move Anna downstairs, but we must hang up blinds. No one knows how to do it; I must see to it myself," answered Dolly addressing him. "God knows whether they are fully reconciled," thought Anna, hearing her tone, cold and composed. "Oh, nonsense, Dolly, always making difficulties," answered her husband. "Come, I'll do it all, if you like..." "Yes, they must be reconciled," thought Anna. "I know how you do everything," answered Dolly. "You tell Matvey to do what can't be done, and go away yourself, leaving him to make a muddle of everything," and her habitual, mocking smile curved the corners of Dolly's lips as she spoke. "Full, full reconciliation, full," thought Anna; "thank God!" and rejoicing that she was the cause of it, she went up to Dolly and kissed her. "Not at all. Why do you always look down on me and Matvey?" said Stepan Arkadyevitch, smiling hardly perceptibly, and addressing his wife. The whole evening Dolly was, as always, a little mocking in her tone to her husband, while Stepan Arkadyevitch was happy and cheerful, but not so as to seem as though, having been forgiven, he had forgotten his offense. At half-past nine o'clock a particularly joyful and pleasant family conversation over the tea-table at the Oblonskys' was broken up by an apparently simple incident. But this simple incident for some reason struck everyone as strange. Talking about common acquaintances in Petersburg, Anna got up quickly. "She is in my album," she said; "and, by the way, I'll show you my Seryozha," she added, with a mother's smile of pride. Towards ten o'clock, when she usually said good-night to her son, and often before going to a ball put him to bed herself, she felt depressed at being so far from him; and whatever she was talking about, she kept coming back in thought to her curly-headed Seryozha. She longed to look at his photograph and talk of him. Seizing the first pretext, she got up, and with her light, resolute step went for her album. The stairs up to her room came out on the landing of the great warm main staircase. Just as she was leaving the drawing room, a ring was heard in the hall. "Who can that be?" said Dolly. "It's early for me to be fetched, and for anyone else it's late," observed Kitty. "Sure to be someone with papers for me," put in Stepan Arkadyevitch. When Anna was passing the top of the staircase, a servant was running up to announce the visitor, while the visitor himself was standing under a lamp. Anna glancing down at once recognized Vronsky, and a strange feeling of pleasure and at the same time of dread of something stirred in her heart. He was standing still, not taking off his coat, pulling something out of his pocket. At the instant when she was just facing the stairs, he raised his eyes, caught sight of her, and into the expression of his face there passed a shade of embarrassment and dismay. With a slight inclination of her head she passed, hearing behind her Stepan Arkadyevitch's loud voice calling him to come up, and the quiet, soft, and composed voice of Vronsky refusing. When Anna returned with the album, he was already gone, and Stepan Arkadyevitch was telling them that he had called to inquire about the dinner they were giving next day to a celebrity who had just arrived. "And nothing would induce him to come up. What a queer fellow he is!" added Stepan Arkadyevitch. Kitty blushed. She thought that she was the only person who knew why he had come, and why he would not come up. "He has been at home," she thought, "and didn't find me, and thought I should be here, but he did not come up because he thought it late, and Anna's here." All of them looked at each other, saying nothing, and began to look at Anna's album. There was nothing either exceptional or strange in a man's calling at half-past nine on a friend to inquire details of a proposed dinner party and not coming in, but it seemed strange to all of them. Above all, it seemed strange and not right to Anna. Chapter 22 The ball was only just beginning as Kitty and her mother walked up the great staircase, flooded with light, and lined with flowers and footmen in powder and red coats. From the rooms came a constant, steady hum, as from a hive, and the rustle of movement; and while on the landing between trees they gave last touches to their hair and dresses before the mirror, they heard from the ballroom the careful, distinct notes of the fiddles of the orchestra beginning the first waltz. A little old man in civilian dress, arranging his gray curls before another mirror, and diffusing an odor of scent, stumbled against them on the stairs, and stood aside, evidently admiring Kitty, whom he did not know. A beardless youth, one of those society youths whom the old Prince Shtcherbatsky called "young bucks," in an exceedingly open waistcoat, straightening his white tie as he went, bowed to them, and after running by, came back to ask Kitty for a quadrille. As the first quadrille had already been given to Vronsky, she had to promise this youth the second. An officer, buttoning his glove, stood aside in the doorway, and stroking his mustache, admired rosy Kitty. Although her dress, her coiffure, and all the preparations for the ball had cost Kitty great trouble and consideration, at this moment she walked into the ballroom in her elaborate tulle dress over a pink slip as easily and simply as though all the rosettes and lace, all the minute details of her attire, had not cost her or her family a moment's attention, as though she had been born in that tulle and lace, with her hair done up high on her head, and a rose and two leaves on the top of it. When, just before entering the ballroom, the princess, her mother, tried to turn right side out of the ribbon of her sash, Kitty had drawn back a little. She felt that everything must be right of itself, and graceful, and nothing could need setting straight. It was one of Kitty's best days. Her dress was not uncomfortable anywhere; her lace berthe did not droop anywhere; her rosettes were not crushed nor torn off; her pink slippers with high, hollowed-out heels did not pinch, but gladdened her feet; and the thick rolls of fair chignon kept up on her head as if they were her own hair. All the three buttons buttoned up without tearing on the long glove that covered her hand without concealing its lines. The black velvet of her locket nestled with special softness round her neck. That velvet was delicious; at home, looking at her neck in the looking glass, Kitty had felt that that velvet was speaking. About all the rest there might be a doubt, but the velvet was delicious. Kitty smiled here too, at the ball, when she glanced at it in the glass. Her bare shoulders and arms gave Kitty a sense of chill marble, a feeling she particularly liked. Her eyes sparkled, and her rosy lips could not keep from smiling from the consciousness of her own attractiveness. She had scarcely entered the ballroom and reached the throng of ladies, all tulle, ribbons, lace, and flowers, waiting to be asked to dance--Kitty was never one of that throng--when she was asked for a waltz, and asked by the best partner, the first star in the hierarchy of the ballroom, a renowned director of dances, a married man, handsome and well-built, Yegorushka Korsunsky. He had only just left the Countess Bonina, with whom he had danced the first half of the waltz, and, scanning his kingdom--that is to say, a few couples who had started dancing--he caught sight of Kitty, entering, and flew up to her with that peculiar, easy amble which is confined to directors of balls. Without even asking her if she cared to dance, he put out his arm to encircle her slender waist. She looked round for someone to give her fan to, and their hostess, smiling to her, took it. "How nice you've come in good time," he said to her, embracing her waist; "such a bad habit to be late." Bending her left hand, she laid it on his shoulder, and her little feet in their pink slippers began swiftly, lightly, and rhythmically moving over the slippery floor in time to the music. "It's a rest to waltz with you," he said to her, as they fell into the first slow steps of the waltz. "It's exquisite--such lightness, precision." He said to her the same thing he said to almost all his partners whom he knew well. She smiled at his praise, and continued to look about the room over his shoulder. She was not like a girl at her first ball, for whom all faces in the ballroom melt into one vision of fairyland. And she was not a girl who had gone the stale round of balls till every face in the ballroom was familiar and tiresome. But she was in the middle stage between these two; she was excited, and at the same time she had sufficient self-possession to be able to observe. In the left corner of the ballroom she saw the cream of society gathered together. There--incredibly naked--was the beauty Lidi, Korsunsky's wife; there was the lady of the house; there shone the bald head of Krivin, always to be found where the best people were. In that direction gazed the young men, not venturing to approach. There, too, she descried Stiva, and there she saw the exquisite figure and head of Anna in a black velvet gown. And _he_ was there. Kitty had not seen him since the evening she refused Levin. With her long-sighted eyes, she knew him at once, and was even aware that he was looking at her. "Another turn, eh? You're not tired?" said Korsunsky, a little out of breath. "No, thank you!" "Where shall I take you?" "Madame Karenina's here, I think ... take me to her." "Wherever you command." And Korsunsky began waltzing with measured steps straight towards the group in the left corner, continually saying, "Pardon, mesdames, pardon, pardon, mesdames"; and steering his course through the sea of lace, tulle, and ribbon, and not disarranging a feather, he turned his partner sharply round, so that her slim ankles, in light transparent stockings, were exposed to view, and her train floated out in fan shape and covered Krivin's knees. Korsunsky bowed, set straight his open shirt front, and gave her his arm to conduct her to Anna Arkadyevna. Kitty, flushed, took her train from Krivin's knees, and, a little giddy, looked round, seeking Anna. Anna was not in lilac, as Kitty had so urgently wished, but in a black, low-cut, velvet gown, showing her full throat and shoulders, that looked as though carved in old ivory, and her rounded arms, with tiny, slender wrists. The whole gown was trimmed with Venetian guipure. On her head, among her black hair--her own, with no false additions--was a little wreath of pansies, and a bouquet of the same in the black ribbon of her sash among white lace. Her coiffure was not striking. All that was noticeable was the little wilful tendrils of her curly hair that would always break free about her neck and temples. Round her well-cut, strong neck was a thread of pearls. Kitty had been seeing Anna every day; she adored her, and had pictured her invariably in lilac. But now seeing her in black, she felt that she had not fully seen her charm. She saw her now as someone quite new and surprising to her. Now she understood that Anna could not have been in lilac, and that her charm was just that she always stood out against her attire, that her dress could never be noticeable on her. And her black dress, with its sumptuous lace, was not noticeable on her; it was only the frame, and all that was seen was she--simple, natural, elegant, and at the same time gay and eager. She was standing holding herself, as always, very erect, and when Kitty drew near the group she was speaking to the master of the house, her head slightly turned towards him. "No, I don't throw stones," she was saying, in answer to something, "though I can't understand it," she went on, shrugging her shoulders, and she turned at once with a soft smile of protection towards Kitty. With a flying, feminine glance she scanned her attire, and made a movement of her head, hardly perceptible, but understood by Kitty, signifying approval of her dress and her looks. "You came into the room dancing," she added. "This is one of my most faithful supporters," said Korsunsky, bowing to Anna Arkadyevna, whom he had not yet seen. "The princess helps to make balls happy and successful. Anna Arkadyevna, a waltz?" he said, bending down to her. "Why, have you met?" inquired their host. "Is there anyone we have not met? My wife and I are like white wolves--everyone knows us," answered Korsunsky. "A waltz, Anna Arkadyevna?" "I don't dance when it's possible not to dance," she said. "But tonight it's impossible," answered Korsunsky. At that instant Vronsky came up. "Well, since it's impossible tonight, let us start," she said, not noticing Vronsky's bow, and she hastily put her hand on Korsunsky's shoulder. "What is she vexed with him about?" thought Kitty, discerning that Anna had intentionally not responded to Vronsky's bow. Vronsky went up to Kitty reminding her of the first quadrille, and expressing his regret that he had not seen her all this time. Kitty gazed in admiration at Anna waltzing, and listened to him. She expected him to ask her for a waltz, but he did not, and she glanced wonderingly at him. He flushed slightly, and hurriedly asked her to waltz, but he had only just put his arm round her waist and taken the first step when the music suddenly stopped. Kitty looked into his face, which was so close to her own, and long afterwards--for several years after--that look, full of love, to which he made no response, cut her to the heart with an agony of shame. "_Pardon! pardon!_ Waltz! waltz!" shouted Korsunsky from the other side of the room, and seizing the first young lady he came across he began dancing himself. Chapter 23 Vronsky and Kitty waltzed several times round the room. After the first waltz Kitty went to her mother, and she had hardly time to say a few words to Countess Nordston when Vronsky came up again for the first quadrille. During the quadrille nothing of any significance was said: there was disjointed talk between them of the Korsunskys, husband and wife, whom he described very amusingly, as delightful children at forty, and of the future town theater; and only once the conversation touched her to the quick, when he asked her about Levin, whether he was here, and added that he liked him so much. But Kitty did not expect much from the quadrille. She looked forward with a thrill at her heart to the mazurka. She fancied that in the mazurka everything must be decided. The fact that he did not during the quadrille ask her for the mazurka did not trouble her. She felt sure she would dance the mazurka with him as she had done at former balls, and refused five young men, saying she was engaged for the mazurka. The whole ball up to the last quadrille was for Kitty an enchanted vision of delightful colors, sounds, and motions. She only sat down when she felt too tired and begged for a rest. But as she was dancing the last quadrille with one of the tiresome young men whom she could not refuse, she chanced to be vis-a-vis with Vronsky and Anna. She had not been near Anna again since the beginning of the evening, and now again she saw her suddenly quite new and surprising. She saw in her the signs of that excitement of success she knew so well in herself; she saw that she was intoxicated with the delighted admiration she was exciting. She knew that feeling and knew its signs, and saw them in Anna; saw the quivering, flashing light in her eyes, and the smile of happiness and excitement unconsciously playing on her lips, and the deliberate grace, precision, and lightness of her movements. "Who?" she asked herself. "All or one?" And not assisting the harassed young man she was dancing with in the conversation, the thread of which he had lost and could not pick up again, she obeyed with external liveliness the peremptory shouts of Korsunsky starting them all into the _grand rond_, and then into the _chaine_, and at the same time she kept watch with a growing pang at her heart. "No, it's not the admiration of the crowd has intoxicated her, but the adoration of one. And that one? can it be he?" Every time he spoke to Anna the joyous light flashed into her eyes, and the smile of happiness curved her red lips. she seemed to make an effort to control herself, to try not to show these signs of delight, but they came out on her face of themselves. "But what of him?" Kitty looked at him and was filled with terror. What was pictured so clearly to Kitty in the mirror of Anna's face she saw in him. What had become of his always self-possessed resolute manner, and the carelessly serene expression of his face? Now every time he turned to her, he bent his head, as though he would have fallen at her feet, and in his eyes there was nothing but humble submission and dread. "I would not offend you," his eyes seemed every time to be saying, "but I want to save myself, and I don't know how." On his face was a look such as Kitty had never seen before. They were speaking of common acquaintances, keeping up the most trivial conversation, but to Kitty it seemed that every word they said was determining their fate and hers. And strange it was that they were actually talking of how absurd Ivan Ivanovitch was with his French, and how the Eletsky girl might have made a better match, yet these words had all the while consequence for them, and they were feeling just as Kitty did. The whole ball, the whole world, everything seemed lost in fog in Kitty's soul. Nothing but the stern discipline of her bringing-up supported her and forced her to do what was expected of her, that is, to dance, to answer questions, to talk, even to smile. But before the mazurka, when they were beginning to rearrange the chairs and a few couples moved out of the smaller rooms into the big room, a moment of despair and horror came for Kitty. She had refused five partners, and now she was not dancing the mazurka. She had not even a hope of being asked for it, because she was so successful in society that the idea would never occur to anyone that she had remained disengaged till now. She would have to tell her mother she felt ill and go home, but she had not the strength to do this. She felt crushed. She went to the furthest end of the little drawing room and sank into a low chair. Her light, transparent skirts rose like a cloud about her slender waist; one bare, thin, soft, girlish arm, hanging listlessly, was lost in the folds of her pink tunic; in the other she held her fan, and with rapid, short strokes fanned her burning face. But while she looked like a butterfly, clinging to a blade of grass, and just about to open its rainbow wings for fresh flight, her heart ached with a horrible despair. "But perhaps I am wrong, perhaps it was not so?" And again she recalled all she had seen. "Kitty, what is it?" said Countess Nordston, stepping noiselessly over the carpet towards her. "I don't understand it." Kitty's lower lip began to quiver; she got up quickly. "Kitty, you're not dancing the mazurka?" "No, no," said Kitty in a voice shaking with tears. "He asked her for the mazurka before me," said Countess Nordston, knowing Kitty would understand who were "he" and "her." "She said: 'Why, aren't you going to dance it with Princess Shtcherbatskaya?'" "Oh, I don't care!" answered Kitty. No one but she herself understood her position; no one knew that she had just refused the man whom perhaps she loved, and refused him because she had put her faith in another. Countess Nordston found Korsunsky, with whom she was to dance the mazurka, and told him to ask Kitty. Kitty danced in the first couple, and luckily for her she had not to talk, because Korsunsky was all the time running about directing the figure. Vronsky and Anna sat almost opposite her. She saw them with her long-sighted eyes, and saw them, too, close by, when they met in the figures, and the more she saw of them the more convinced was she that her unhappiness was complete. She saw that they felt themselves alone in that crowded room. And on Vronsky's face, always so firm and independent, she saw that look that had struck her, of bewilderment and humble submissiveness, like the expression of an intelligent dog when it has done wrong. Anna smiled, and her smile was reflected by him. She grew thoughtful, and he became serious. Some supernatural force drew Kitty's eyes to Anna's face. She was fascinating in her simple black dress, fascinating were her round arms with their bracelets, fascinating was her firm neck with its thread of pearls, fascinating the straying curls of her loose hair, fascinating the graceful, light movements of her little feet and hands, fascinating was that lovely face in its eagerness, but there was something terrible and cruel in her fascination. Kitty admired her more than ever, and more and more acute was her suffering. Kitty felt overwhelmed, and her face showed it. When Vronsky saw her, coming across her in the mazurka, he did not at once recognize her, she was so changed. "Delightful ball!" he said to her, for the sake of saying something. "Yes," she answered. In the middle of the mazurka, repeating a complicated figure, newly invented by Korsunsky, Anna came forward into the center of the circle, chose two gentlemen, and summoned a lady and Kitty. Kitty gazed at her in dismay as she went up. Anna looked at her with drooping eyelids, and smiled, pressing her hand. But, noticing that Kitty only responded to her smile by a look of despair and amazement, she turned away from her, and began gaily talking to the other lady. "Yes, there is something uncanny, devilish and fascinating in her," Kitty said to herself. Anna did not mean to stay to supper, but the master of the house began to press her to do so. "Nonsense, Anna Arkadyevna," said Korsunsky, drawing her bare arm under the sleeve of his dress coat, "I've such an idea for a _cotillion! Un bijou!_" And he moved gradually on, trying to draw her along with him. Their host smiled approvingly. "No, I am not going to stay," answered Anna, smiling, but in spite of her smile, both Korsunsky and the master of the house saw from her resolute tone that she would not stay. "No; why, as it is, I have danced more at your ball in Moscow than I have all the winter in Petersburg," said Anna, looking round at Vronsky, who stood near her. "I must rest a little before my journey." "Are you certainly going tomorrow then?" asked Vronsky. "Yes, I suppose so," answered Anna, as it were wondering at the boldness of his question; but the irrepressible, quivering brilliance of her eyes and her smile set him on fire as she said it. Anna Arkadyevna did not stay to supper, but went home. Chapter 24 "Yes, there is something in me hateful, repulsive," thought Levin, as he came away from the Shtcherbatskys', and walked in the direction of his brother's lodgings. "And I don't get on with other people. Pride, they say. No, I have no pride. If I had any pride, I should not have put myself in such a position." And he pictured to himself Vronsky, happy, good-natured, clever, and self-possessed, certainly never placed in the awful position in which he had been that evening. "Yes, she was bound to choose him. So it had to be, and I cannot complain of anyone or anything. I am myself to blame. What right had I to imagine she would care to join her life to mine? Who am I and what am I? A nobody, not wanted by any one, nor of use to anybody." And he recalled his brother Nikolay, and dwelt with pleasure on the thought of him. "Isn't he right that everything in the world is base and loathsome? And are we fair in our judgment of brother Nikolay? Of course, from the point of view of Prokofy, seeing him in a torn cloak and tipsy, he's a despicable person. But I know him differently. I know his soul, and know that we are like him. And I, instead of going to seek him out, went out to dinner, and came here." Levin walked up to a lamppost, read his brother's address, which was in his pocketbook, and called a sledge. All the long way to his brother's, Levin vividly recalled all the facts familiar to him of his brother Nikolay's life. He remembered how his brother, while at the university, and for a year afterwards, had, in spite of the jeers of his companions, lived like a monk, strictly observing all religious rites, services, and fasts, and avoiding every sort of pleasure, especially women. And afterwards, how he had all at once broken out: he had associated with the most horrible people, and rushed into the most senseless debauchery. He remembered later the scandal over a boy, whom he had taken from the country to bring up, and, in a fit of rage, had so violently beaten that proceedings were brought against him for unlawfully wounding. Then he recalled the scandal with a sharper, to whom he had lost money, and given a promissory note, and against whom he had himself lodged a complaint, asserting that he had cheated him. (This was the money Sergey Ivanovitch had paid.) Then he remembered how he had spent a night in the lockup for disorderly conduct in the street. He remembered the shameful proceedings he had tried to get up against his brother Sergey Ivanovitch, accusing him of not having paid him his share of his mother's fortune, and the last scandal, when he had gone to a western province in an official capacity, and there had got into trouble for assaulting a village elder.... It was all horribly disgusting, yet to Levin it appeared not at all in the same disgusting light as it inevitably would to those who did not know Nikolay, did not know all his story, did not know his heart. Levin remembered that when Nikolay had been in the devout stage, the period of fasts and monks and church services, when he was seeking in religion a support and a curb for his passionate temperament, everyone, far from encouraging him, had jeered at him, and he, too, with the others. They had teased him, called him Noah and Monk; and, when he had broken out, no one had helped him, but everyone had turned away from him with horror and disgust. Levin felt that, in spite of all the ugliness of his life, his brother Nikolay, in his soul, in the very depths of his soul, was no more in the wrong than the people who despised him. He was not to blame for having been born with his unbridled temperament and his somehow limited intelligence. But he had always wanted to be good. "I will tell him everything, without reserve, and I will make him speak without reserve, too, and I'll show him that I love him, and so understand him," Levin resolved to himself, as, towards eleven o'clock, he reached the hotel of which he had the address. "At the top, 12 and 13," the porter answered Levin's inquiry. "At home?" "Sure to be at home." The door of No. 12 was half open, and there came out into the streak of light thick fumes of cheap, poor tobacco, and the sound of a voice, unknown to Levin; but he knew at once that his brother was there; he heard his cough. As he went in the door, the unknown voice was saying: "It all depends with how much judgment and knowledge the thing's done." Konstantin Levin looked in at the door, and saw that the speaker was a young man with an immense shock of hair, wearing a Russian jerkin, and that a pockmarked woman in a woolen gown, without collar or cuffs, was sitting on the sofa. His brother was not to be seen. Konstantin felt a sharp pang at his heart at the thought of the strange company in which his brother spent his life. No one had heard him, and Konstantin, taking off his galoshes, listened to what the gentleman in the jerkin was saying. He was speaking of some enterprise. "Well, the devil flay them, the privileged classes," his brother's voice responded, with a cough. "Masha! get us some supper and some wine if there's any left; or else go and get some." The woman rose, came out from behind the screen, and saw Konstantin. "There's some gentleman, Nikolay Dmitrievitch," she said. "Whom do you want?" said the voice of Nikolay Levin, angrily. "It's I," answered Konstantin Levin, coming forward into the light. "Who's _I_?" Nikolay's voice said again, still more angrily. He could be heard getting up hurriedly, stumbling against something, and Levin saw, facing him in the doorway, the big, scared eyes, and the huge, thin, stooping figure of his brother, so familiar, and yet astonishing in its weirdness and sickliness. He was even thinner than three years before, when Konstantin Levin had seen him last. He was wearing a short coat, and his hands and big bones seemed huger than ever. His hair had grown thinner, the same straight mustaches hid his lips, the same eyes gazed strangely and naively at his visitor. "Ah, Kostya!" he exclaimed suddenly, recognizing his brother, and his eyes lit up with joy. But the same second he looked round at the young man, and gave the nervous jerk of his head and neck that Konstantin knew so well, as if his neckband hurt him; and a quite different expression, wild, suffering, and cruel, rested on his emaciated face. "I wrote to you and Sergey Ivanovitch both that I don't know you and don't want to know you. What is it you want?" He was not at all the same as Konstantin had been fancying him. The worst and most tiresome part of his character, what made all relations with him so difficult, had been forgotten by Konstantin Levin when he thought of him, and now, when he saw his face, and especially that nervous twitching of his head, he remembered it all. "I didn't want to see you for anything," he answered timidly. "I've simply come to see you." His brother's timidity obviously softened Nikolay. His lips twitched. "Oh, so that's it?" he said. "Well, come in; sit down. Like some supper? Masha, bring supper for three. No, stop a minute. Do you know who this is?" he said, addressing his brother, and indicating the gentleman in the jerkin: "This is Mr. Kritsky, my friend from Kiev, a very remarkable man. He's persecuted by the police, of course, because he's not a scoundrel." And he looked round in the way he always did at everyone in the room. Seeing that the woman standing in the doorway was moving to go, he shouted to her, "Wait a minute, I said." And with the inability to express himself, the incoherence that Konstantin knew so well, he began, with another look round at everyone, to tell his brother Kritsky's story: how he had been expelled from the university for starting a benefit society for the poor students and Sunday schools; and how he had afterwards been a teacher in a peasant school, and how he had been driven out of that too, and had afterwards been condemned for something. "You're of the Kiev university?" said Konstantin Levin to Kritsky, to break the awkward silence that followed. "Yes, I was of Kiev," Kritsky replied angrily, his face darkening. "And this woman," Nikolay Levin interrupted him, pointing to her, "is the partner of my life, Marya Nikolaevna. I took her out of a bad house," and he jerked his neck saying this; "but I love her and respect her, and any one who wants to know me," he added, raising his voice and knitting his brows, "I beg to love her and respect her. She's just the same as my wife, just the same. So now you know whom you've to do with. And if you think you're lowering yourself, well, here's the floor, there's the door." And again his eyes traveled inquiringly over all of them. "Why I should be lowering myself, I don't understand." "Then, Masha, tell them to bring supper; three portions, spirits and wine.... No, wait a minute.... No, it doesn't matter.... Go along." Chapter 25 "So you see," pursued Nikolay Levin, painfully wrinkling his forehead and twitching. It was obviously difficult for him to think of what to say and do. "Here, do you see?"... He pointed to some sort of iron bars, fastened together with strings, lying in a corner of the room. "Do you see that? That's the beginning of a new thing we're going into. It's a productive association..." Konstantin scarcely heard him. He looked into his sickly, consumptive face, and he was more and more sorry for him, and he could not force himself to listen to what his brother was telling him about the association. He saw that this association was a mere anchor to save him from self-contempt. Nikolay Levin went on talking: "You know that capital oppresses the laborer. The laborers with us, the peasants, bear all the burden of labor, and are so placed that however much they work they can't escape from their position of beasts of burden. All the profits of labor, on which they might improve their position, and gain leisure for themselves, and after that education, all the surplus values are taken from them by the capitalists. And society's so constituted that the harder they work, the greater the profit of the merchants and landowners, while they stay beasts of burden to the end. And that state of things must be changed," he finished up, and he looked questioningly at his brother. "Yes, of course," said Konstantin, looking at the patch of red that had come out on his brother's projecting cheek bones. "And so we're founding a locksmiths' association, where all the production and profit and the chief instruments of production will be in common." "Where is the association to be?" asked Konstantin Levin. "In the village of Vozdrem, Kazan government." "But why in a village? In the villages, I think, there is plenty of work as it is. Why a locksmiths' association in a village?" "Why? Because the peasants are just as much slaves as they ever were, and that's why you and Sergey Ivanovitch don't like people to try and get them out of their slavery," said Nikolay Levin, exasperated by the objection. Konstantin Levin sighed, looking meanwhile about the cheerless and dirty room. This sigh seemed to exasperate Nikolay still more. "I know your and Sergey Ivanovitch's aristocratic views. I know that he applies all the power of his intellect to justify existing evils." "No; and what do you talk of Sergey Ivanovitch for?" said Levin, smiling. "Sergey Ivanovitch? I'll tell you what for!" Nikolay Levin shrieked suddenly at the name of Sergey Ivanovitch. "I'll tell you what for.... But what's the use of talking? There's only one thing.... What did you come to me for? You look down on this, and you're welcome to,--and go away, in God's name go away!" he shrieked, getting up from his chair. "And go away, and go away!" "I don't look down on it at all," said Konstantin Levin timidly. "I don't even dispute it." At that instant Marya Nikolaevna came back. Nikolay Levin looked round angrily at her. She went quickly to him, and whispered something. "I'm not well; I've grown irritable," said Nikolay Levin, getting calmer and breathing painfully; "and then you talk to me of Sergey Ivanovitch and his article. It's such rubbish, such lying, such self-deception. What can a man write of justice who knows nothing of it? Have you read his article?" he asked Kritsky, sitting down again at the table, and moving back off half of it the scattered cigarettes, so as to clear a space. "I've not read it," Kritsky responded gloomily, obviously not desiring to enter into the conversation. "Why not?" said Nikolay Levin, now turning with exasperation upon Kritsky. "Because I didn't see the use of wasting my time over it." "Oh, but excuse me, how did you know it would be wasting your time? That article's too deep for many people--that's to say it's over their heads. But with me, it's another thing; I see through his ideas, and I know where its weakness lies." Everyone was mute. Kritsky got up deliberately and reached his cap. "Won't you have supper? All right, good-bye! Come round tomorrow with the locksmith." Kritsky had hardly gone out when Nikolay Levin smiled and winked. "He's no good either," he said. "I see, of course..." But at that instant Kritsky, at the door, called him... "What do you want now?" he said, and went out to him in the passage. Left alone with Marya Nikolaevna, Levin turned to her. "Have you been long with my brother?" he said to her. "Yes, more than a year. Nikolay Dmitrievitch's health has become very poor. Nikolay Dmitrievitch drinks a great deal," she said. "That is ... how does he drink?" "Drinks vodka, and it's bad for him." "And a great deal?" whispered Levin. "Yes," she said, looking timidly towards the doorway, where Nikolay Levin had reappeared. "What were you talking about?" he said, knitting his brows, and turning his scared eyes from one to the other. "What was it?" "Oh, nothing," Konstantin answered in confusion. "Oh, if you don't want to say, don't. Only it's no good your talking to her. She's a wench, and you're a gentleman," he said with a jerk of the neck. "You understand everything, I see, and have taken stock of everything, and look with commiseration on my shortcomings," he began again, raising his voice. "Nikolay Dmitrievitch, Nikolay Dmitrievitch," whispered Marya Nikolaevna, again going up to him. "Oh, very well, very well!... But where's the supper? Ah, here it is," he said, seeing a waiter with a tray. "Here, set it here," he added angrily, and promptly seizing the vodka, he poured out a glassful and drank it greedily. "Like a drink?" he turned to his brother, and at once became better humored. "Well, enough of Sergey Ivanovitch. I'm glad to see you, anyway. After all's said and done, we're not strangers. Come, have a drink. Tell me what you're doing," he went on, greedily munching a piece of bread, and pouring out another glassful. "How are you living?" "I live alone in the country, as I used to. I'm busy looking after the land," answered Konstantin, watching with horror the greediness with which his brother ate and drank, and trying to conceal that he noticed it. "Why don't you get married?" "It hasn't happened so," Konstantin answered, reddening a little. "Why not? For me now ... everything's at an end! I've made a mess of my life. But this I've said, and I say still, that if my share had been given me when I needed it, my whole life would have been different." Konstantin made haste to change the conversation. "Do you know your little Vanya's with me, a clerk in the countinghouse at Pokrovskoe." Nikolay jerked his neck, and sank into thought. "Yes, tell me what's going on at Pokrovskoe. Is the house standing still, and the birch trees, and our schoolroom? And Philip the gardener, is he living? How I remember the arbor and the seat! Now mind and don't alter anything in the house, but make haste and get married, and make everything as it used to be again. Then I'll come and see you, if your wife is nice." "But come to me now," said Levin. "How nicely we would arrange it!" "I'd come and see you if I were sure I should not find Sergey Ivanovitch." "You wouldn't find him there. I live quite independently of him." "Yes, but say what you like, you will have to choose between me and him," he said, looking timidly into his brother's face. This timidity touched Konstantin. "If you want to hear my confession of faith on the subject, I tell you that in your quarrel with Sergey Ivanovitch I take neither side. You're both wrong. You're more wrong externally, and he inwardly." "Ah, ah! You see that, you see that!" Nikolay shouted joyfully. "But I personally value friendly relations with you more because..." "Why, why?" Konstantin could not say that he valued it more because Nikolay was unhappy, and needed affection. But Nikolay knew that this was just what he meant to say, and scowling he took up the vodka again. "Enough, Nikolay Dmitrievitch!" said Marya Nikolaevna, stretching out her plump, bare arm towards the decanter. "Let it be! Don't insist! I'll beat you!" he shouted. Marya Nikolaevna smiled a sweet and good-humored smile, which was at once reflected on Nikolay's face, and she took the bottle. "And do you suppose she understands nothing?" said Nikolay. "She understands it all better than any of us. Isn't it true there's something good and sweet in her?" "Were you never before in Moscow?" Konstantin said to her, for the sake of saying something. "Only you mustn't be polite and stiff with her. It frightens her. No one ever spoke to her so but the justices of the peace who tried her for trying to get out of a house of ill-fame. Mercy on us, the senselessness in the world!" he cried suddenly. "These new institutions, these justices of the peace, rural councils, what hideousness it all is!" And he began to enlarge on his encounters with the new institutions. Konstantin Levin heard him, and the disbelief in the sense of all public institutions, which he shared with him, and often expressed, was distasteful to him now from his brother's lips. "In another world we shall understand it all," he said lightly. "In another world! Ah, I don't like that other world! I don't like it," he said, letting his scared eyes rest on his brother's eyes. "Here one would think that to get out of all the baseness and the mess, one's own and other people's, would be a good thing, and yet I'm afraid of death, awfully afraid of death." He shuddered. "But do drink something. Would you like some champagne? Or shall we go somewhere? Let's go to the Gypsies! Do you know I have got so fond of the Gypsies and Russian songs." His speech had begun to falter, and he passed abruptly from one subject to another. Konstantin with the help of Masha persuaded him not to go out anywhere, and got him to bed hopelessly drunk. Masha promised to write to Konstantin in case of need, and to persuade Nikolay Levin to go and stay with his brother. Chapter 26 In the morning Konstantin Levin left Moscow, and towards evening he reached home. On the journey in the train he talked to his neighbors about politics and the new railways, and, just as in Moscow, he was overcome by a sense of confusion of ideas, dissatisfaction with himself, shame of something or other. But when he got out at his own station, when he saw his one-eyed coachman, Ignat, with the collar of his coat turned up; when, in the dim light reflected by the station fires, he saw his own sledge, his own horses with their tails tied up, in their harness trimmed with rings and tassels; when the coachman Ignat, as he put in his luggage, told him the village news, that the contractor had arrived, and that Pava had calved,--he felt that little by little the confusion was clearing up, and the shame and self-dissatisfaction were passing away. He felt this at the mere sight of Ignat and the horses; but when he had put on the sheepskin brought for him, had sat down wrapped up in the sledge, and had driven off pondering on the work that lay before him in the village, and staring at the side-horse, that had been his saddle-horse, past his prime now, but a spirited beast from the Don, he began to see what had happened to him in quite a different light. He felt himself, and did not want to be any one else. All he wanted now was to be better than before. In the first place he resolved that from that day he would give up hoping for any extraordinary happiness, such as marriage must have given him, and consequently he would not so disdain what he really had. Secondly, he would never again let himself give way to low passion, the memory of which had so tortured him when he had been making up his mind to make an offer. Then remembering his brother Nikolay, he resolved to himself that he would never allow himself to forget him, that he would follow him up, and not lose sight of him, so as to be ready to help when things should go ill with him. And that would be soon, he felt. Then, too, his brother's talk of communism, which he had treated so lightly at the time, now made him think. He considered a revolution in economic conditions nonsense. But he always felt the injustice of his own abundance in comparison with the poverty of the peasants, and now he determined that so as to feel quite in the right, though he had worked hard and lived by no means luxuriously before, he would now work still harder, and would allow himself even less luxury. And all this seemed to him so easy a conquest over himself that he spent the whole drive in the pleasantest daydreams. With a resolute feeling of hope in a new, better life, he reached home before nine o'clock at night. The snow of the little quadrangle before the house was lit up by a light in the bedroom windows of his old nurse, Agafea Mihalovna, who performed the duties of housekeeper in his house. She was not yet asleep. Kouzma, waked up by her, came sidling sleepily out onto the steps. A setter bitch, Laska, ran out too, almost upsetting Kouzma, and whining, turned round about Levin's knees, jumping up and longing, but not daring, to put her forepaws on his chest. "You're soon back again, sir," said Agafea Mihalovna. "I got tired of it, Agafea Mihalovna. With friends, one is well; but at home, one is better," he answered, and went into his study. The study was slowly lit up as the candle was brought in. The familiar details came out: the stag's horns, the bookshelves, the looking-glass, the stove with its ventilator, which had long wanted mending, his father's sofa, a large table, on the table an open book, a broken ash tray, a manuscript book with his handwriting. As he saw all this, there came over him for an instant a doubt of the possibility of arranging the new life, of which he had been dreaming on the road. All these traces of his life seemed to clutch him, and to say to him: "No, you're not going to get away from us, and you're not going to be different, but you're going to be the same as you've always been; with doubts, everlasting dissatisfaction with yourself, vain efforts to amend, and falls, and everlasting expectation, of a happiness which you won't get, and which isn't possible for you." This the things said to him, but another voice in his heart was telling him that he must not fall under the sway of the past, and that one can do anything with oneself. And hearing that voice, he went into the corner where stood his two heavy dumbbells, and began brandishing them like a gymnast, trying to restore his confident temper. There was a creak of steps at the door. He hastily put down the dumbbells. The bailiff came in, and said everything, thank God, was doing well; but informed him that the buckwheat in the new drying machine had been a little scorched. This piece of news irritated Levin. The new drying machine had been constructed and partly invented by Levin. The bailiff had always been against the drying machine, and now it was with suppressed triumph that he announced that the buckwheat had been scorched. Levin was firmly convinced that if the buckwheat had been scorched, it was only because the precautions had not been taken, for which he had hundreds of times given orders. He was annoyed, and reprimanded the bailiff. But there had been an important and joyful event: Pava, his best cow, an expensive beast, bought at a show, had calved. "Kouzma, give me my sheepskin. And you tell them to take a lantern. I'll come and look at her," he said to the bailiff. The cowhouse for the more valuable cows was just behind the house. Walking across the yard, passing a snowdrift by the lilac tree, he went into the cowhouse. There was the warm, steamy smell of dung when the frozen door was opened, and the cows, astonished at the unfamiliar light of the lantern, stirred on the fresh straw. He caught a glimpse of the broad, smooth, black and piebald back of Hollandka. Berkoot, the bull, was lying down with his ring in his lip, and seemed about to get up, but thought better of it, and only gave two snorts as they passed by him. Pava, a perfect beauty, huge as a hippopotamus, with her back turned to them, prevented their seeing the calf, as she sniffed her all over. Levin went into the pen, looked Pava over, and lifted the red and spotted calf onto her long, tottering legs. Pava, uneasy, began lowing, but when Levin put the calf close to her she was soothed, and, sighing heavily, began licking her with her rough tongue. The calf, fumbling, poked her nose under her mother's udder, and stiffened her tail out straight. "Here, bring the light, Fyodor, this way," said Levin, examining the calf. "Like the mother! though the color takes after the father; but that's nothing. Very good. Long and broad in the haunch. Vassily Fedorovitch, isn't she splendid?" he said to the bailiff, quite forgiving him for the buckwheat under the influence of his delight in the calf. "How could she fail to be? Oh, Semyon the contractor came the day after you left. You must settle with him, Konstantin Dmitrievitch," said the bailiff. "I did inform you about the machine." This question was enough to take Levin back to all the details of his work on the estate, which was on a large scale, and complicated. He went straight from the cowhouse to the counting house, and after a little conversation with the bailiff and Semyon the contractor, he went back to the house and straight upstairs to the drawing room. Chapter 27 The house was big and old-fashioned, and Levin, though he lived alone, had the whole house heated and used. He knew that this was stupid, he knew that it was positively not right, and contrary to his present new plans, but this house was a whole world to Levin. It was the world in which his father and mother had lived and died. They had lived just the life that to Levin seemed the ideal of perfection, and that he had dreamed of beginning with his wife, his family. Levin scarcely remembered his mother. His conception of her was for him a sacred memory, and his future wife was bound to be in his imagination a repetition of that exquisite, holy ideal of a woman that his mother had been. He was so far from conceiving of love for woman apart from marriage that he positively pictured to himself first the family, and only secondarily the woman who would give him a family. His ideas of marriage were, consequently, quite unlike those of the great majority of his acquaintances, for whom getting married was one of the numerous facts of social life. For Levin it was the chief affair of life, on which its whole happiness turned. And now he had to give up that. When he had gone into the little drawing room, where he always had tea, and had settled himself in his armchair with a book, and Agafea Mihalovna had brought him tea, and with her usual, "Well, I'll stay a while, sir," had taken a chair in the window, he felt that, however strange it might be, he had not parted from his daydreams, and that he could not live without them. Whether with her, or with another, still it would be. He was reading a book, and thinking of what he was reading, and stopping to listen to Agafea Mihalovna, who gossiped away without flagging, and yet with all that, all sorts of pictures of family life and work in the future rose disconnectedly before his imagination. He felt that in the depth of his soul something had been put in its place, settled down, and laid to rest. He heard Agafea Mihalovna talking of how Prohor had forgotten his duty to God, and with the money Levin had given him to buy a horse, had been drinking without stopping, and had beaten his wife till he'd half killed her. He listened, and read his book, and recalled the whole train of ideas suggested by his reading. It was Tyndall's _Treatise on Heat_. He recalled his own criticisms of Tyndall of his complacent satisfaction in the cleverness of his experiments, and for his lack of philosophic insight. And suddenly there floated into his mind the joyful thought: "In two years' time I shall have two Dutch cows; Pava herself will perhaps still be alive, a dozen young daughters of Berkoot and the three others--how lovely!" He took up his book again. "Very good, electricity and heat are the same thing; but is it possible to substitute the one quantity for the other in the equation for the solution of any problem? No. Well, then what of it? The connection between all the forces of nature is felt instinctively.... It's particulary nice if Pava's daughter should be a red-spotted cow, and all the herd will take after her, and the other three, too! Splendid! To go out with my wife and visitors to meet the herd.... My wife says, 'Kostya and I looked after that calf like a child.' 'How can it interest you so much?' says a visitor. 'Everything that interests him, interests me.' But who will she be?" And he remembered what had happened at Moscow.... "Well, there's nothing to be done.... It's not my fault. But now everything shall go on in a new way. It's nonsense to pretend that life won't let one, that the past won't let one. One must struggle to live better, much better."... He raised his head, and fell to dreaming. Old Laska, who had not yet fully digested her delight at his return, and had run out into the yard to bark, came back wagging her tail, and crept up to him, bringing in the scent of fresh air, put her head under his hand, and whined plaintively, asking to be stroked. "There, who'd have thought it?" said Agafea Mihalovna. "The dog now ... why, she understands that her master's come home, and that he's low-spirited." "Why low-spirited?" "Do you suppose I don't see it, sir? It's high time I should know the gentry. Why, I've grown up from a little thing with them. It's nothing, sir, so long as there's health and a clear conscience." Levin looked intently at her, surprised at how well she knew his thought. "Shall I fetch you another cup?" said she, and taking his cup she went out. Laska kept poking her head under his hand. He stroked her, and she promptly curled up at his feet, laying her head on a hindpaw. And in token of all now being well and satisfactory, she opened her mouth a little, smacked her lips, and settling her sticky lips more comfortably about her old teeth, she sank into blissful repose. Levin watched all her movements attentively. "That's what I'll do," he said to himself; "that's what I'll do! Nothing's amiss.... All's well." Chapter 28 After the ball, early next morning, Anna Arkadyevna sent her husband a telegram that she was leaving Moscow the same day. "No, I must go, I must go"; she explained to her sister-in-law the change in her plans in a tone that suggested that she had to remember so many things that there was no enumerating them: "no, it had really better be today!" Stepan Arkadyevitch was not dining at home, but he promised to come and see his sister off at seven o'clock. Kitty, too, did not come, sending a note that she had a headache. Dolly and Anna dined alone with the children and the English governess. Whether it was that the children were fickle, or that they had acute senses, and felt that Anna was quite different that day from what she had been when they had taken such a fancy to her, that she was not now interested in them,--but they had abruptly dropped their play with their aunt, and their love for her, and were quite indifferent that she was going away. Anna was absorbed the whole morning in preparations for her departure. She wrote notes to her Moscow acquaintances, put down her accounts, and packed. Altogether Dolly fancied she was not in a placid state of mind, but in that worried mood, which Dolly knew well with herself, and which does not come without cause, and for the most part covers dissatisfaction with self. After dinner, Anna went up to her room to dress, and Dolly followed her. "How queer you are today!" Dolly said to her. "I? Do you think so? I'm not queer, but I'm nasty. I am like that sometimes. I keep feeling as if I could cry. It's very stupid, but it'll pass off," said Anna quickly, and she bent her flushed face over a tiny bag in which she was packing a nightcap and some cambric handkerchiefs. Her eyes were particularly bright, and were continually swimming with tears. "In the same way I didn't want to leave Petersburg, and now I don't want to go away from here." "You came here and did a good deed," said Dolly, looking intently at her. Anna looked at her with eyes wet with tears. "Don't say that, Dolly. I've done nothing, and could do nothing. I often wonder why people are all in league to spoil me. What have I done, and what could I do? In your heart there was found love enough to forgive..." "If it had not been for you, God knows what would have happened! How happy you are, Anna!" said Dolly. "Everything is clear and good in your heart." "Every heart has its own _skeletons_, as the English say." "You have no sort of _skeleton_, have you? Everything is so clear in you." "I have!" said Anna suddenly, and, unexpectedly after her tears, a sly, ironical smile curved her lips. "Come, he's amusing, anyway, your _skeleton_, and not depressing," said Dolly, smiling. "No, he's depressing. Do you know why I'm going today instead of tomorrow? It's a confession that weighs on me; I want to make it to you," said Anna, letting herself drop definitely into an armchair, and looking straight into Dolly's face. And to her surprise Dolly saw that Anna was blushing up to her ears, up to the curly black ringlets on her neck. "Yes," Anna went on. "Do you know why Kitty didn't come to dinner? She's jealous of me. I have spoiled ... I've been the cause of that ball being a torture to her instead of a pleasure. But truly, truly, it's not my fault, or only my fault a little bit," she said, daintily drawling the words "a little bit." "Oh, how like Stiva you said that!" said Dolly, laughing. Anna was hurt. "Oh no, oh no! I'm not Stiva," she said, knitting her brows. "That's why I'm telling you, just because I could never let myself doubt myself for an instant," said Anna. But at the very moment she was uttering the words, she felt that they were not true. She was not merely doubting herself, she felt emotion at the thought of Vronsky, and was going away sooner than she had meant, simply to avoid meeting him. "Yes, Stiva told me you danced the mazurka with him, and that he..." "You can't imagine how absurdly it all came about. I only meant to be matchmaking, and all at once it turned out quite differently. Possibly against my own will..." She crimsoned and stopped. "Oh, they feel it directly?" said Dolly. "But I should be in despair if there were anything serious in it on his side," Anna interrupted her. "And I am certain it will all be forgotten, and Kitty will leave off hating me." "All the same, Anna, to tell you the truth, I'm not very anxious for this marriage for Kitty. And it's better it should come to nothing, if he, Vronsky, is capable of falling in love with you in a single day." "Oh, heavens, that would be too silly!" said Anna, and again a deep flush of pleasure came out on her face, when she heard the idea, that absorbed her, put into words. "And so here I am going away, having made an enemy of Kitty, whom I liked so much! Ah, how sweet she is! But you'll make it right, Dolly? Eh?" Dolly could scarcely suppress a smile. She loved Anna, but she enjoyed seeing that she too had her weaknesses. "An enemy? That can't be." "I did so want you all to care for me, as I do for you, and now I care for you more than ever," said Anna, with tears in her eyes. "Ah, how silly I am today!" She passed her handkerchief over her face and began dressing. At the very moment of starting Stepan Arkadyevitch arrived, late, rosy and good-humored, smelling of wine and cigars. Anna's emotionalism infected Dolly, and when she embraced her sister-in-law for the last time, she whispered: "Remember, Anna, what you've done for me--I shall never forget. And remember that I love you, and shall always love you as my dearest friend!" "I don't know why," said Anna, kissing her and hiding her tears. "You understood me, and you understand. Good-bye, my darling!" Chapter 29 "Come, it's all over, and thank God!" was the first thought that came to Anna Arkadyevna, when she had said good-bye for the last time to her brother, who had stood blocking up the entrance to the carriage till the third bell rang. She sat down on her lounge beside Annushka, and looked about her in the twilight of the sleeping-carriage. "Thank God! tomorrow I shall see Seryozha and Alexey Alexandrovitch, and my life will go on in the old way, all nice and as usual." Still in the same anxious frame of mind, as she had been all that day, Anna took pleasure in arranging herself for the journey with great care. With her little deft hands she opened and shut her little red bag, took out a cushion, laid it on her knees, and carefully wrapping up her feet, settled herself comfortably. An invalid lady had already lain down to sleep. Two other ladies began talking to Anna, and a stout elderly lady tucked up her feet, and made observations about the heating of the train. Anna answered a few words, but not foreseeing any entertainment from the conversation, she asked Annushka to get a lamp, hooked it onto the arm of her seat, and took from her bag a paper knife and an English novel. At first her reading made no progress. The fuss and bustle were disturbing; then when the train had started, she could not help listening to the noises; then the snow beating on the left window and sticking to the pane, and the sight of the muffled guard passing by, covered with snow on one side, and the conversations about the terrible snowstorm raging outside, distracted her attention. Farther on, it was continually the same again and again: the same shaking and rattling, the same snow on the window, the same rapid transitions from steaming heat to cold, and back again to heat, the same passing glimpses of the same figures in the twilight, and the same voices, and Anna began to read and to understand what she read. Annushka was already dozing, the red bag on her lap, clutched by her broad hands, in gloves, of which one was torn. Anna Arkadyevna read and understood, but it was distasteful to her to read, that is, to follow the reflection of other people's lives. She had too great a desire to live herself. If she read that the heroine of the novel was nursing a sick man, she longed to move with noiseless steps about the room of a sick man; if she read of a member of Parliament making a speech, she longed to be delivering the speech; if she read of how Lady Mary had ridden after the hounds, and had provoked her sister-in-law, and had surprised everyone by her boldness, she too wished to be doing the same. But there was no chance of doing anything; and twisting the smooth paper knife in her little hands, she forced herself to read. The hero of the novel was already almost reaching his English happiness, a baronetcy and an estate, and Anna was feeling a desire to go with him to the estate, when she suddenly felt that _he_ ought to feel ashamed, and that she was ashamed of the same thing. But what had he to be ashamed of? "What have I to be ashamed of?" she asked herself in injured surprise. She laid down the book and sank against the back of the chair, tightly gripping the paper cutter in both hands. There was nothing. She went over all her Moscow recollections. All were good, pleasant. She remembered the ball, remembered Vronsky and his face of slavish adoration, remembered all her conduct with him: there was nothing shameful. And for all that, at the same point in her memories, the feeling of shame was intensified, as though some inner voice, just at the point when she thought of Vronsky, were saying to her, "Warm, very warm, hot." "Well, what is it?" she said to herself resolutely, shifting her seat in the lounge. "What does it mean? Am I afraid to look it straight in the face? Why, what is it? Can it be that between me and this officer boy there exist, or can exist, any other relations than such as are common with every acquaintance?" She laughed contemptuously and took up her book again; but now she was definitely unable to follow what she read. She passed the paper knife over the window pane, then laid its smooth, cool surface to her cheek, and almost laughed aloud at the feeling of delight that all at once without cause came over her. She felt as though her nerves were strings being strained tighter and tighter on some sort of screwing peg. She felt her eyes opening wider and wider, her fingers and toes twitching nervously, something within oppressing her breathing, while all shapes and sounds seemed in the uncertain half-light to strike her with unaccustomed vividness. Moments of doubt were continually coming upon her, when she was uncertain whether the train were going forwards or backwards, or were standing still altogether; whether it were Annushka at her side or a stranger. "What's that on the arm of the chair, a fur cloak or some beast? And what am I myself? Myself or some other woman?" She was afraid of giving way to this delirium. But something drew her towards it, and she could yield to it or resist it at will. She got up to rouse herself, and slipped off her plaid and the cape of her warm dress. For a moment she regained her self-possession, and realized that the thin peasant who had come in wearing a long overcoat, with buttons missing from it, was the stoveheater, that he was looking at the thermometer, that it was the wind and snow bursting in after him at the door; but then everything grew blurred again.... That peasant with the long waist seemed to be gnawing something on the wall, the old lady began stretching her legs the whole length of the carriage, and filling it with a black cloud; then there was a fearful shrieking and banging, as though someone were being torn to pieces; then there was a blinding dazzle of red fire before her eyes and a wall seemed to rise up and hide everything. Anna felt as though she were sinking down. But it was not terrible, but delightful. The voice of a man muffled up and covered with snow shouted something in her ear. She got up and pulled herself together; she realized that they had reached a station and that this was the guard. She asked Annushka to hand her the cape she had taken off and her shawl, put them on and moved towards the door. "Do you wish to get out?" asked Annushka. "Yes, I want a little air. It's very hot in here." And she opened the door. The driving snow and the wind rushed to meet her and struggled with her over the door. But she enjoyed the struggle. She opened the door and went out. The wind seemed as though lying in wait for her; with gleeful whistle it tried to snatch her up and bear her off, but she clung to the cold door post, and holding her skirt got down onto the platform and under the shelter of the carriages. The wind had been powerful on the steps, but on the platform, under the lee of the carriages, there was a lull. With enjoyment she drew deep breaths of the frozen, snowy air, and standing near the carriage looked about the platform and the lighted station. Chapter 30 The raging tempest rushed whistling between the wheels of the carriages, about the scaffolding, and round the corner of the station. The carriages, posts, people, everything that was to be seen was covered with snow on one side, and was getting more and more thickly covered. For a moment there would come a lull in the storm, but then it would swoop down again with such onslaughts that it seemed impossible to stand against it. Meanwhile men ran to and fro, talking merrily together, their steps crackling on the platform as they continually opened and closed the big doors. The bent shadow of a man glided by at her feet, and she heard sounds of a hammer upon iron. "Hand over that telegram!" came an angry voice out of the stormy darkness on the other side. "This way! No. 28!" several different voices shouted again, and muffled figures ran by covered with snow. Two gentlemen with lighted cigarettes passed by her. She drew one more deep breath of the fresh air, and had just put her hand out of her muff to take hold of the door post and get back into the carriage, when another man in a military overcoat, quite close beside her, stepped between her and the flickering light of the lamp post. She looked round, and the same instant recognized Vronsky's face. Putting his hand to the peak of his cap, he bowed to her and asked, Was there anything she wanted? Could he be of any service to her? She gazed rather a long while at him without answering, and, in spite of the shadow in which he was standing, she saw, or fancied she saw, both the expression of his face and his eyes. It was again that expression of reverential ecstasy which had so worked upon her the day before. More than once she had told herself during the past few days, and again only a few moments before, that Vronsky was for her only one of the hundreds of young men, forever exactly the same, that are met everywhere, that she would never allow herself to bestow a thought upon him. But now at the first instant of meeting him, she was seized by a feeling of joyful pride. She had no need to ask why he had come. She knew as certainly as if he had told her that he was here to be where she was. "I didn't know you were going. What are you coming for?" she said, letting fall the hand with which she had grasped the door post. And irrepressible delight and eagerness shone in her face. "What am I coming for?" he repeated, looking straight into her eyes. "You know that I have come to be where you are," he said; "I can't help it." At that moment the wind, as it were, surmounting all obstacles, sent the snow flying from the carriage roofs, and clanked some sheet of iron it had torn off, while the hoarse whistle of the engine roared in front, plaintively and gloomily. All the awfulness of the storm seemed to her more splendid now. He had said what her soul longed to hear, though she feared it with her reason. She made no answer, and in her face he saw conflict. "Forgive me, if you dislike what I said," he said humbly. He had spoken courteously, deferentially, yet so firmly, so stubbornly, that for a long while she could make no answer. "It's wrong, what you say, and I beg you, if you're a good man, to forget what you've said, as I forget it," she said at last. "Not one word, not one gesture of yours shall I, could I, ever forget..." "Enough, enough!" she cried trying assiduously to give a stern expression to her face, into which he was gazing greedily. And clutching at the cold door post, she clambered up the steps and got rapidly into the corridor of the carriage. But in the little corridor she paused, going over in her imagination what had happened. Though she could not recall her own words or his, she realized instinctively that the momentary conversation had brought them fearfully closer; and she was panic-stricken and blissful at it. After standing still a few seconds, she went into the carriage and sat down in her place. The overstrained condition which had tormented her before did not only come back, but was intensified, and reached such a pitch that she was afraid every minute that something would snap within her from the excessive tension. She did not sleep all night. But in that nervous tension, and in the visions that filled her imagination, there was nothing disagreeable or gloomy: on the contrary there was something blissful, glowing, and exhilarating. Towards morning Anna sank into a doze, sitting in her place, and when she waked it was daylight and the train was near Petersburg. At once thoughts of home, of husband and of son, and the details of that day and the following came upon her. At Petersburg, as soon as the train stopped and she got out, the first person that attracted her attention was her husband. "Oh, mercy! why do his ears look like that?" she thought, looking at his frigid and imposing figure, and especially the ears that struck her at the moment as propping up the brim of his round hat. Catching sight of her, he came to meet her, his lips falling into their habitual sarcastic smile, and his big, tired eyes looking straight at her. An unpleasant sensation gripped at her heart when she met his obstinate and weary glance, as though she had expected to see him different. She was especially struck by the feeling of dissatisfaction with herself that she experienced on meeting him. That feeling was an intimate, familiar feeling, like a consciousness of hypocrisy, which she experienced in her relations with her husband. But hitherto she had not taken note of the feeling, now she was clearly and painfully aware of it. "Yes, as you see, your tender spouse, as devoted as the first year after marriage, burned with impatience to see you," he said in his deliberate, high-pitched voice, and in that tone which he almost always took with her, a tone of jeering at anyone who should say in earnest what he said. "Is Seryozha quite well?" she asked. "And is this all the reward," said he, "for my ardor? He's quite well..." Chapter 31 Vronsky had not even tried to sleep all that night. He sat in his armchair, looking straight before him or scanning the people who got in and out. If he had indeed on previous occasions struck and impressed people who did not know him by his air of unhesitating composure, he seemed now more haughty and self-possessed than ever. He looked at people as if they were things. A nervous young man, a clerk in a law court, sitting opposite him, hated him for that look. The young man asked him for a light, and entered into conversation with him, and even pushed against him, to make him feel that he was not a thing, but a person. But Vronsky gazed at him exactly as he did at the lamp, and the young man made a wry face, feeling that he was losing his self-possession under the oppression of this refusal to recognize him as a person. Vronsky saw nothing and no one. He felt himself a king, not because he believed that he had made an impression on Anna--he did not yet believe that,--but because the impression she had made on him gave him happiness and pride. What would come of it all he did not know, he did not even think. He felt that all his forces, hitherto dissipated, wasted, were centered on one thing, and bent with fearful energy on one blissful goal. And he was happy at it. He knew only that he had told her the truth, that he had come where she was, that all the happiness of his life, the only meaning in life for him, now lay in seeing and hearing her. And when he got out of the carriage at Bologova to get some seltzer water, and caught sight of Anna, involuntarily his first word had told her just what he thought. And he was glad he had told her it, that she knew it now and was thinking of it. He did not sleep all night. When he was back in the carriage, he kept unceasingly going over every position in which he had seen her, every word she had uttered, and before his fancy, making his heart faint with emotion, floated pictures of a possible future. When he got out of the train at Petersburg, he felt after his sleepless night as keen and fresh as after a cold bath. He paused near his compartment, waiting for her to get out. "Once more," he said to himself, smiling unconsciously, "once more I shall see her walk, her face; she will say something, turn her head, glance, smile, maybe." But before he caught sight of her, he saw her husband, whom the station-master was deferentially escorting through the crowd. "Ah, yes! The husband." Only now for the first time did Vronsky realize clearly the fact that there was a person attached to her, a husband. He knew that she had a husband, but had hardly believed in his existence, and only now fully believed in him, with his head and shoulders, and his legs clad in black trousers; especially when he saw this husband calmly take her arm with a sense of property. Seeing Alexey Alexandrovitch with his Petersburg face and severely self-confident figure, in his round hat, with his rather prominent spine, he believed in him, and was aware of a disagreeable sensation, such as a man might feel tortured by thirst, who, on reaching a spring, should find a dog, a sheep, or a pig, who has drunk of it and muddied the water. Alexey Alexandrovitch's manner of walking, with a swing of the hips and flat feet, particularly annoyed Vronsky. He could recognize in no one but himself an indubitable right to love her. But she was still the same, and the sight of her affected him the same way, physically reviving him, stirring him, and filling his soul with rapture. He told his German valet, who ran up to him from the second class, to take his things and go on, and he himself went up to her. He saw the first meeting between the husband and wife, and noted with a lover's insight the signs of slight reserve with which she spoke to her husband. "No, she does not love him and cannot love him," he decided to himself. At the moment when he was approaching Anna Arkadyevna he noticed too with joy that she was conscious of his being near, and looked round, and seeing him, turned again to her husband. "Have you passed a good night?" he asked, bowing to her and her husband together, and leaving it up to Alexey Alexandrovitch to accept the bow on his own account, and to recognize it or not, as he might see fit. "Thank you, very good," she answered. Her face looked weary, and there was not that play of eagerness in it, peeping out in her smile and her eyes; but for a single instant, as she glanced at him, there was a flash of something in her eyes, and although the flash died away at once, he was happy for that moment. She glanced at her husband to find out whether he knew Vronsky. Alexey Alexandrovitch looked at Vronsky with displeasure, vaguely recalling who this was. Vronsky's composure and self-confidence here struck, like a scythe against a stone, upon the cold self-confidence of Alexey Alexandrovitch. "Count Vronsky," said Anna. "Ah! We are acquainted, I believe," said Alexey Alexandrovitch indifferently, giving his hand. "You set off with the mother and you return with the son," he said, articulating each syllable, as though each were a separate favor he was bestowing. "You're back from leave, I suppose?" he said, and without waiting for a reply, he turned to his wife in his jesting tone: "Well, were a great many tears shed at Moscow at parting?" By addressing his wife like this he gave Vronsky to understand that he wished to be left alone, and, turning slightly towards him, he touched his hat; but Vronsky turned to Anna Arkadyevna. "I hope I may have the honor of calling on you," he said. Alexey Alexandrovitch glanced with his weary eyes at Vronsky. "Delighted," he said coldly. "On Mondays we're at home. Most fortunate," he said to his wife, dismissing Vronsky altogether, "that I should just have half an hour to meet you, so that I can prove my devotion," he went on in the same jesting tone. "You lay too much stress on your devotion for me to value it much," she responded in the same jesting tone, involuntarily listening to the sound of Vronsky's steps behind them. "But what has it to do with me?" she said to herself, and she began asking her husband how Seryozha had got on without her. "Oh, capitally! Mariette says he has been very good, And ... I must disappoint you ... but he has not missed you as your husband has. But once more _merci,_ my dear, for giving me a day. Our dear _Samovar_ will be delighted." (He used to call the Countess Lidia Ivanovna, well known in society, a samovar, because she was always bubbling over with excitement.) "She has been continually asking after you. And, do you know, if I may venture to advise you, you should go and see her today. You know how she takes everything to heart. Just now, with all her own cares, she's anxious about the Oblonskys being brought together." The Countess Lidia Ivanovna was a friend of her husband's, and the center of that one of the coteries of the Petersburg world with which Anna was, through her husband, in the closest relations. "But you know I wrote to her?" "Still she'll want to hear details. Go and see her, if you're not too tired, my dear. Well, Kondraty will take you in the carriage, while I go to my committee. I shall not be alone at dinner again," Alexey Alexandrovitch went on, no longer in a sarcastic tone. "You wouldn't believe how I've missed..." And with a long pressure of her hand and a meaning smile, he put her in her carriage. Chapter 32 The first person to meet Anna at home was her son. He dashed down the stairs to her, in spite of the governess's call, and with desperate joy shrieked: "Mother! mother!" Running up to her, he hung on her neck. "I told you it was mother!" he shouted to the governess. "I knew!" And her son, like her husband, aroused in Anna a feeling akin to disappointment. She had imagined him better than he was in reality. She had to let herself drop down to the reality to enjoy him as he really was. But even as he was, he was charming, with his fair curls, his blue eyes, and his plump, graceful little legs in tightly pulled-up stockings. Anna experienced almost physical pleasure in the sensation of his nearness, and his caresses, and moral soothing, when she met his simple, confiding, and loving glance, and heard his naive questions. Anna took out the presents Dolly's children had sent him, and told her son what sort of little girl was Tanya at Moscow, and how Tanya could read, and even taught the other children. "Why, am I not so nice as she?" asked Seryozha. "To me you're nicer than anyone in the world." "I know that," said Seryozha, smiling. Anna had not had time to drink her coffee when the Countess Lidia Ivanovna was announced. The Countess Lidia Ivanovna was a tall, stout woman, with an unhealthily sallow face and splendid, pensive black eyes. Anna liked her, but today she seemed to be seeing her for the first time with all her defects. "Well, my dear, so you took the olive branch?" inquired Countess Lidia Ivanovna, as soon as she came into the room. "Yes, it's all over, but it was all much less serious than we had supposed," answered Anna. "My _belle-soeur_ is in general too hasty." But Countess Lidia Ivanovna, though she was interested in everything that did not concern her, had a habit of never listening to what interested her; she interrupted Anna: "Yes, there's plenty of sorrow and evil in the world. I am so worried today." "Oh, why?" asked Anna, trying to suppress a smile. "I'm beginning to be weary of fruitlessly championing the truth, and sometimes I'm quite unhinged by it. The Society of the Little Sisters" (this was a religiously-patriotic, philanthropic institution) "was going splendidly, but with these gentlemen it's impossible to do anything," added Countess Lidia Ivanovna in a tone of ironical submission to destiny. "They pounce on the idea, and distort it, and then work it out so pettily and unworthily. Two or three people, your husband among them, understand all the importance of the thing, but the others simply drag it down. Yesterday Pravdin wrote to me..." Pravdin was a well-known Panslavist abroad, and Countess Lidia Ivanovna described the purport of his letter. Then the countess told her of more disagreements and intrigues against the work of the unification of the churches, and departed in haste, as she had that day to be at the meeting of some society and also at the Slavonic committee. "It was all the same before, of course; but why was it I didn't notice it before?" Anna asked herself. "Or has she been very much irritated today? It's really ludicrous; her object is doing good; she a Christian, yet she's always angry; and she always has enemies, and always enemies in the name of Christianity and doing good." After Countess Lidia Ivanovna another friend came, the wife of a chief secretary, who told her all the news of the town. At three o'clock she too went away, promising to come to dinner. Alexey Alexandrovitch was at the ministry. Anna, left alone, spent the time till dinner in assisting at her son's dinner (he dined apart from his parents) and in putting her things in order, and in reading and answering the notes and letters which had accumulated on her table. The feeling of causeless shame, which she had felt on the journey, and her excitement, too, had completely vanished. In the habitual conditions of her life she felt again resolute and irreproachable. She recalled with wonder her state of mind on the previous day. "What was it? Nothing. Vronsky said something silly, which it was easy to put a stop to, and I answered as I ought to have done. To speak of it to my husband would be unnecessary and out of the question. To speak of it would be to attach importance to what has no importance." She remembered how she had told her husband of what was almost a declaration made her at Petersburg by a young man, one of her husband's subordinates, and how Alexey Alexandrovitch had answered that every woman living in the world was exposed to such incidents, but that he had the fullest confidence in her tact, and could never lower her and himself by jealousy. "So then there's no reason to speak of it? And indeed, thank God, there's nothing to speak of," she told herself. Chapter 33 Alexey Alexandrovitch came back from the meeting of the ministers at four o'clock, but as often happened, he had not time to come in to her. He went into his study to see the people waiting for him with petitions, and to sign some papers brought him by his chief secretary. At dinner time (there were always a few people dining with the Karenins) there arrived an old lady, a cousin of Alexey Alexandrovitch, the chief secretary of the department and his wife, and a young man who had been recommended to Alexey Alexandrovitch for the service. Anna went into the drawing room to receive these guests. Precisely at five o'clock, before the bronze Peter the First clock had struck the fifth stroke, Alexey Alexandrovitch came in, wearing a white tie and evening coat with two stars, as he had to go out directly after dinner. Every minute of Alexey Alexandrovitch's life was portioned out and occupied. And to make time to get through all that lay before him every day, he adhered to the strictest punctuality. "Unhasting and unresting," was his motto. He came into the dining hall, greeted everyone, and hurriedly sat down, smiling to his wife. "Yes, my solitude is over. You wouldn't believe how uncomfortable" (he laid stress on the word _uncomfortable_) "it is to dine alone." At dinner he talked a little to his wife about Moscow matters, and, with a sarcastic smile, asked her after Stepan Arkadyevitch; but the conversation was for the most part general, dealing with Petersburg official and public news. After dinner he spent half an hour with his guests, and again, with a smile, pressed his wife's hand, withdrew, and drove off to the council. Anna did not go out that evening either to the Princess Betsy Tverskaya, who, hearing of her return, had invited her, nor to the theater, where she had a box for that evening. She did not go out principally because the dress she had reckoned upon was not ready. Altogether, Anna, on turning, after the departure of her guests, to the consideration of her attire, was very much annoyed. She was generally a mistress of the art of dressing well without great expense, and before leaving Moscow she had given her dressmaker three dresses to transform. The dresses had to be altered so that they could not be recognized, and they ought to have been ready three days before. It appeared that two dresses had not been done at all, while the other one had not been altered as Anna had intended. The dressmaker came to explain, declaring that it would be better as she had done it, and Anna was so furious that she felt ashamed when she thought of it afterwards. To regain her serenity completely she went into the nursery, and spent the whole evening with her son, put him to bed herself, signed him with the cross, and tucked him up. She was glad she had not gone out anywhere, and had spent the evening so well. She felt so light-hearted and serene, she saw so clearly that all that had seemed to her so important on her railway journey was only one of the common trivial incidents of fashionable life, and that she had no reason to feel ashamed before anyone else or before herself. Anna sat down at the hearth with an English novel and waited for her husband. Exactly at half-past nine she heard his ring, and he came into the room. "Here you are at last!" she observed, holding out her hand to him. He kissed her hand and sat down beside her. "Altogether then, I see your visit was a success," he said to her. "Oh, yes," she said, and she began telling him about everything from the beginning: her journey with Countess Vronskaya, her arrival, the accident at the station. Then she described the pity she had felt, first for her brother, and afterwards for Dolly. "I imagine one cannot exonerate such a man from blame, though he is your brother," said Alexey Alexandrovitch severely. Anna smiled. She knew that he said that simply to show that family considerations could not prevent him from expressing his genuine opinion. She knew that characteristic in her husband, and liked it. "I am glad it has all ended so satisfactorily, and that you are back again," he went on. "Come, what do they say about the new act I have got passed in the council?" Anna had heard nothing of this act, and she felt conscience-stricken at having been able so readily to forget what was to him of such importance. "Here, on the other hand, it has made a great sensation," he said, with a complacent smile. She saw that Alexey Alexandrovitch wanted to tell her something pleasant to him about it, and she brought him by questions to telling it. With the same complacent smile he told her of the ovations he had received in consequence of the act he had passed. "I was very, very glad. It shows that at last a reasonable and steady view of the matter is becoming prevalent among us." Having drunk his second cup of tea with cream, and bread, Alexey Alexandrovitch got up, and was going towards his study. "And you've not been anywhere this evening? You've been dull, I expect?" he said. "Oh, no!" she answered, getting up after him and accompanying him across the room to his study. "What are you reading now?" she asked. "Just now I'm reading Duc de Lille, _Poesie des Enfers,_" he answered. "A very remarkable book." Anna smiled, as people smile at the weaknesses of those they love, and, putting her hand under his, she escorted him to the door of the study. She knew his habit, that had grown into a necessity, of reading in the evening. She knew, too, that in spite of his official duties, which swallowed up almost the whole of his time, he considered it his duty to keep up with everything of note that appeared in the intellectual world. She knew, too, that he was really interested in books dealing with politics, philosophy, and theology, that art was utterly foreign to his nature; but, in spite of this, or rather, in consequence of it, Alexey Alexandrovitch never passed over anything in the world of art, but made it his duty to read everything. She knew that in politics, in philosophy, in theology, Alexey Alexandrovitch often had doubts, and made investigations; but on questions of art and poetry, and, above all, of music, of which he was totally devoid of understanding, he had the most distinct and decided opinions. He was fond of talking about Shakespeare, Raphael, Beethoven, of the significance of new schools of poetry and music, all of which were classified by him with very conspicuous consistency. "Well, God be with you," she said at the door of the study, where a shaded candle and a decanter of water were already put by his armchair. "And I'll write to Moscow." He pressed her hand, and again kissed it. "All the same he's a good man; truthful, good-hearted, and remarkable in his own line," Anna said to herself going back to her room, as though she were defending him to someone who had attacked him and said that one could not love him. "But why is it his ears stick out so strangely? Or has he had his hair cut?" Precisely at twelve o'clock, when Anna was still sitting at her writing table, finishing a letter to Dolly, she heard the sound of measured steps in slippers, and Alexey Alexandrovitch, freshly washed and combed, with a book under his arm, came in to her. "It's time, it's time," said he, with a meaning smile, and he went into their bedroom. "And what right had he to look at him like that?" thought Anna, recalling Vronsky's glance at Alexey Alexandrovitch. Undressing, she went into the bedroom; but her face had none of the eagerness which, during her stay in Moscow, had fairly flashed from her eyes and her smile; on the contrary, now the fire seemed quenched in her, hidden somewhere far away. Chapter 34 When Vronsky went to Moscow from Petersburg, he had left his large set of rooms in Morskaia to his friend and favorite comrade Petritsky. Petritsky was a young lieutenant, not particularly well-connected, and not merely not wealthy, but always hopelessly in debt. Towards evening he was always drunk, and he had often been locked up after all sorts of ludicrous and disgraceful scandals, but he was a favorite both of his comrades and his superior officers. On arriving at twelve o'clock from the station at his flat, Vronsky saw, at the outer door, a hired carriage familiar to him. While still outside his own door, as he rang, he heard masculine laughter, the lisp of a feminine voice, and Petritsky's voice. "If that's one of the villains, don't let him in!" Vronsky told the servant not to announce him, and slipped quietly into the first room. Baroness Shilton, a friend of Petritsky's, with a rosy little face and flaxen hair, resplendent in a lilac satin gown, and filling the whole room, like a canary, with her Parisian chatter, sat at the round table making coffee. Petritsky, in his overcoat, and the cavalry captain Kamerovsky, in full uniform, probably just come from duty, were sitting each side of her. "Bravo! Vronsky!" shouted Petritsky, jumping up, scraping his chair. "Our host himself! Baroness, some coffee for him out of the new coffee pot. Why, we didn't expect you! Hope you're satisfied with the ornament of your study," he said, indicating the baroness. "You know each other, of course?" "I should think so," said Vronsky, with a bright smile, pressing the baroness's little hand. "What next! I'm an old friend." "You're home after a journey," said the baroness, "so I'm flying. Oh, I'll be off this minute, if I'm in the way." "You're home, wherever you are, baroness," said Vronsky. "How do you do, Kamerovsky?" he added, coldly shaking hands with Kamerovsky. "There, you never know how to say such pretty things," said the baroness, turning to Petritsky. "No; what's that for? After dinner I say things quite as good." "After dinner there's no credit in them? Well, then, I'll make you some coffee, so go and wash and get ready," said the baroness, sitting down again, and anxiously turning the screw in the new coffee pot. "Pierre, give me the coffee," she said, addressing Petritsky, whom she called Pierre as a contraction of his surname, making no secret of her relations with him. "I'll put it in." "You'll spoil it!" "No, I won't spoil it! Well, and your wife?" said the baroness suddenly, interrupting Vronsky's conversation with his comrade. "We've been marrying you here. Have you brought your wife?" "No, baroness. I was born a Bohemian, and a Bohemian I shall die." "So much the better, so much the better. Shake hands on it." And the baroness, detaining Vronsky, began telling him, with many jokes, about her last new plans of life, asking his advice. "He persists in refusing to give me a divorce! Well, what am I to do?" (_He_ was her husband.) "Now I want to begin a suit against him. What do you advise? Kamerovsky, look after the coffee; it's boiling over. You see, I'm engrossed with business! I want a lawsuit, because I must have my property. Do you understand the folly of it, that on the pretext of my being unfaithful to him," she said contemptuously, "he wants to get the benefit of my fortune." Vronsky heard with pleasure this light-hearted prattle of a pretty woman, agreed with her, gave her half-joking counsel, and altogether dropped at once into the tone habitual to him in talking to such women. In his Petersburg world all people were divided into utterly opposed classes. One, the lower class, vulgar, stupid, and, above all, ridiculous people, who believe that one husband ought to live with the one wife whom he has lawfully married; that a girl should be innocent, a woman modest, and a man manly, self-controlled, and strong; that one ought to bring up one's children, earn one's bread, and pay one's debts; and various similar absurdities. This was the class of old-fashioned and ridiculous people. But there was another class of people, the real people. To this class they all belonged, and in it the great thing was to be elegant, generous, plucky, gay, to abandon oneself without a blush to every passion, and to laugh at everything else. For the first moment only, Vronsky was startled after the impression of a quite different world that he had brought with him from Moscow. But immediately as though slipping his feet into old slippers, he dropped back into the light-hearted, pleasant world he had always lived in. The coffee was never really made, but spluttered over every one, and boiled away, doing just what was required of it--that is, providing much cause for much noise and laughter, and spoiling a costly rug and the baroness's gown. "Well now, good-bye, or you'll never get washed, and I shall have on my conscience the worst sin a gentleman can commit. So you would advise a knife to his throat?" "To be sure, and manage that your hand may not be far from his lips. He'll kiss your hand, and all will end satisfactorily," answered Vronsky. "So at the Francais!" and, with a rustle of her skirts, she vanished. Kamerovsky got up too, and Vronsky, not waiting for him to go, shook hands and went off to his dressing room. While he was washing, Petritsky described to him in brief outlines his position, as far as it had changed since Vronsky had left Petersburg. No money at all. His father said he wouldn't give him any and pay his debts. His tailor was trying to get him locked up, and another fellow, too, was threatening to get him locked up. The colonel of the regiment had announced that if these scandals did not cease he would have to leave. As for the baroness, he was sick to death of her, especially since she'd taken to offering continually to lend him money. But he had found a girl--he'd show her to Vronsky--a marvel, exquisite, in the strict Oriental style, "genre of the slave Rebecca, don't you know." He'd had a row, too, with Berkoshov, and was going to send seconds to him, but of course it would come to nothing. Altogether everything was supremely amusing and jolly. And, not letting his comrade enter into further details of his position, Petritsky proceeded to tell him all the interesting news. As he listened to Petritsky's familiar stories in the familiar setting of the rooms he had spent the last three years in, Vronsky felt a delightful sense of coming back to the careless Petersburg life that he was used to. "Impossible!" he cried, letting down the pedal of the washing basin in which he had been sousing his healthy red neck. "Impossible!" he cried, at the news that Laura had flung over Fertinghof and had made up to Mileev. "And is he as stupid and pleased as ever? Well, and how's Buzulukov?" "Oh, there is a tale about Buzulukov--simply lovely!" cried Petritsky. "You know his weakness for balls, and he never misses a single court ball. He went to a big ball in a new helmet. Have you seen the new helmets? Very nice, lighter. Well, so he's standing.... No, I say, do listen." "I am listening," answered Vronsky, rubbing himself with a rough towel. "Up comes the Grand Duchess with some ambassador or other, and, as ill-luck would have it, she begins talking to him about the new helmets. The Grand Duchess positively wanted to show the new helmet to the ambassador. They see our friend standing there." (Petritsky mimicked how he was standing with the helmet.) "The Grand Duchess asked him to give her the helmet; he doesn't give it to her. What do you think of that? Well, every one's winking at him, nodding, frowning--give it to her, do! He doesn't give it to her. He's mute as a fish. Only picture it!... Well, the ... what's his name, whatever he was ... tries to take the helmet from him ... he won't give it up!... He pulls it from him, and hands it to the Grand Duchess. 'Here, your Highness,' says he, 'is the new helmet.' She turned the helmet the other side up, And--just picture it!--plop went a pear and sweetmeats out of it, two pounds of sweetmeats!... He'd been storing them up, the darling!" Vronsky burst into roars of laughter. And long afterwards, when he was talking of other things, he broke out into his healthy laugh, showing his strong, close rows of teeth, when he thought of the helmet. Having heard all the news, Vronsky, with the assistance of his valet, got into his uniform, and went off to report himself. He intended, when he had done that, to drive to his brother's and to Betsy's and to pay several visits with a view to beginning to go into that society where he might meet Madame Karenina. As he always did in Petersburg, he left home not meaning to return till late at night. PART TWO Chapter 1 At the end of the winter, in the Shtcherbatskys' house, a consultation was being held, which was to pronounce on the state of Kitty's health and the measures to be taken to restore her failing strength. She had been ill, and as spring came on she grew worse. The family doctor gave her cod liver oil, then iron, then nitrate of silver, but as the first and the second and the third were alike in doing no good, and as his advice when spring came was to go abroad, a celebrated physician was called in. The celebrated physician, a very handsome man, still youngish, asked to examine the patient. He maintained, with peculiar satisfaction, it seemed, that maiden modesty is a mere relic of barbarism, and that nothing could be more natural than for a man still youngish to handle a young girl naked. He thought it natural because he did it every day, and felt and thought, as it seemed to him, no harm as he did it and consequently he considered modesty in the girl not merely as a relic of barbarism, but also as an insult to himself. There was nothing for it but to submit, since, although all the doctors had studied in the same school, had read the same books, and learned the same science, and though some people said this celebrated doctor was a bad doctor, in the princess's household and circle it was for some reason accepted that this celebrated doctor alone had some special knowledge, and that he alone could save Kitty. After a careful examination and sounding of the bewildered patient, dazed with shame, the celebrated doctor, having scrupulously washed his hands, was standing in the drawing room talking to the prince. The prince frowned and coughed, listening to the doctor. As a man who had seen something of life, and neither a fool nor an invalid, he had no faith in medicine, and in his heart was furious at the whole farce, specially as he was perhaps the only one who fully comprehended the cause of Kitty's illness. "Conceited blockhead!" he thought, as he listened to the celebrated doctor's chatter about his daughter's symptoms. The doctor was meantime with difficulty restraining the expression of his contempt for this old gentleman, and with difficulty condescending to the level of his intelligence. He perceived that it was no good talking to the old man, and that the principal person in the house was the mother. Before her he decided to scatter his pearls. At that instant the princess came into the drawing room with the family doctor. The prince withdrew, trying not to show how ridiculous he thought the whole performance. The princess was distracted, and did not know what to do. She felt she had sinned against Kitty. "Well, doctor, decide our fate," said the princess. "Tell me everything." "Is there hope?" she meant to say, but her lips quivered, and she could not utter the question. "Well, doctor?" "Immediately, princess. I will talk it over with my colleague, and then I will have the honor of laying my opinion before you." "So we had better leave you?" "As you please." The princess went out with a sigh. When the doctors were left alone, the family doctor began timidly explaining his opinion, that there was a commencement of tuberculous trouble, but ... and so on. The celebrated doctor listened to him, and in the middle of his sentence looked at his big gold watch. "Yes," said he. "But..." The family doctor respectfully ceased in the middle of his observations. "The commencement of the tuberculous process we are not, as you are aware, able to define; till there are cavities, there is nothing definite. But we may suspect it. And there are indications; malnutrition, nervous excitability, and so on. The question stands thus: in presence of indications of tuberculous process, what is to be done to maintain nutrition?" "But, you know, there are always moral, spiritual causes at the back in these cases," the family doctor permitted himself to interpolate with a subtle smile. "Yes, that's an understood thing," responded the celebrated physician, again glancing at his watch. "Beg pardon, is the Yausky bridge done yet, or shall I have to drive around?" he asked. "Ah! it is. Oh, well, then I can do it in twenty minutes. So we were saying the problem may be put thus: to maintain nutrition and to give tone to the nerves. The one is in close connection with the other, one must attack both sides at once." "And how about a tour abroad?" asked the family doctor. "I've no liking for foreign tours. And take note: if there is an early stage of tuberculous process, of which we cannot be certain, a foreign tour will be of no use. What is wanted is means of improving nutrition, and not for lowering it." And the celebrated doctor expounded his plan of treatment with Soden waters, a remedy obviously prescribed primarily on the ground that they could do no harm. The family doctor listened attentively and respectfully. "But in favor of foreign travel I would urge the change of habits, the removal from conditions calling up reminiscences. And then the mother wishes it," he added. "Ah! Well, in that case, to be sure, let them go. Only, those German quacks are mischievous.... They ought to be persuaded.... Well, let them go then." He glanced once more at his watch. "Oh! time's up already," And he went to the door. The celebrated doctor announced to the princess (a feeling of what was due from him dictated his doing so) that he ought to see the patient once more. "What! another examination!" cried the mother, with horror. "Oh, no, only a few details, princess." "Come this way." And the mother, accompanied by the doctor, went into the drawing room to Kitty. Wasted and flushed, with a peculiar glitter in her eyes, left there by the agony of shame she had been put through, Kitty stood in the middle of the room. When the doctor came in she flushed crimson, and her eyes filled with tears. All her illness and treatment struck her as a thing so stupid, ludicrous even! Doctoring her seemed to her as absurd as putting together the pieces of a broken vase. Her heart was broken. Why would they try to cure her with pills and powders? But she could not grieve her mother, especially as her mother considered herself to blame. "May I trouble you to sit down, princess?" the celebrated doctor said to her. He sat down with a smile, facing her, felt her pulse, and again began asking her tiresome questions. She answered him, and all at once got up, furious. "Excuse me, doctor, but there is really no object in this. This is the third time you've asked me the same thing." The celebrated doctor did not take offense. "Nervous irritability," he said to the princess, when Kitty had left the room. "However, I had finished..." And the doctor began scientifically explaining to the princess, as an exceptionally intelligent woman, the condition of the young princess, and concluded by insisting on the drinking of the waters, which were certainly harmless. At the question: Should they go abroad? the doctor plunged into deep meditation, as though resolving a weighty problem. Finally his decision was pronounced: they were to go abroad, but to put no faith in foreign quacks, and to apply to him in any need. It seemed as though some piece of good fortune had come to pass after the doctor had gone. The mother was much more cheerful when she went back to her daughter, and Kitty pretended to be more cheerful. She had often, almost always, to be pretending now. "Really, I'm quite well, mamma. But if you want to go abroad, let's go!" she said, and trying to appear interested in the proposed tour, she began talking of the preparations for the journey. Chapter 2 Soon after the doctor, Dolly had arrived. She knew that there was to be a consultation that day, and though she was only just up after her confinement (she had another baby, a little girl, born at the end of the winter), though she had trouble and anxiety enough of her own, she had left her tiny baby and a sick child, to come and hear Kitty's fate, which was to be decided that day. "Well, well?" she said, coming into the drawing room, without taking off her hat. "You're all in good spirits. Good news, then?" They tried to tell her what the doctor had said, but it appeared that though the doctor had talked distinctly enough and at great length, it was utterly impossible to report what he had said. The only point of interest was that it was settled they should go abroad. Dolly could not help sighing. Her dearest friend, her sister, was going away. And her life was not a cheerful one. Her relations with Stepan Arkadyevitch after their reconciliation had become humiliating. The union Anna had cemented turned out to be of no solid character, and family harmony was breaking down again at the same point. There had been nothing definite, but Stepan Arkadyevitch was hardly ever at home; money, too, was hardly ever forthcoming, and Dolly was continually tortured by suspicions of infidelity, which she tried to dismiss, dreading the agonies of jealousy she had been through already. The first onslaught of jealousy, once lived through, could never come back again, and even the discovery of infidelities could never now affect her as it had the first time. Such a discovery now would only mean breaking up family habits, and she let herself be deceived, despising him and still more herself, for the weakness. Besides this, the care of her large family was a constant worry to her: first, the nursing of her young baby did not go well, then the nurse had gone away, now one of the children had fallen ill. "Well, how are all of you?" asked her mother. "Ah, mamma, we have plenty of troubles of our own. Lili is ill, and I'm afraid it's scarlatina. I have come here now to hear about Kitty, and then I shall shut myself up entirely, if--God forbid--it should be scarlatina." The old prince too had come in from his study after the doctor's departure, and after presenting his cheek to Dolly, and saying a few words to her, he turned to his wife: "How have you settled it? you're going? Well, and what do you mean to do with me?" "I suppose you had better stay here, Alexander," said his wife. "That's as you like." "Mamma, why shouldn't father come with us?" said Kitty. "It would be nicer for him and for us too." The old prince got up and stroked Kitty's hair. She lifted her head and looked at him with a forced smile. It always seemed to her that he understood her better than anyone in the family, though he did not say much about her. Being the youngest, she was her father's favorite, and she fancied that his love gave him insight. When now her glance met his blue kindly eyes looking intently at her, it seemed to her that he saw right through her, and understood all that was not good that was passing within her. Reddening, she stretched out towards him expecting a kiss, but he only patted her hair and said: "These stupid chignons! There's no getting at the real daughter. One simply strokes the bristles of dead women. Well, Dolinka," he turned to his elder daughter, "what's your young buck about, hey?" "Nothing, father," answered Dolly, understanding that her husband was meant. "He's always out; I scarcely ever see him," she could not resist adding with a sarcastic smile. "Why, hasn't he gone into the country yet--to see about selling that forest?" "No, he's still getting ready for the journey." "Oh, that's it!" said the prince. "And so am I to be getting ready for a journey too? At your service," he said to his wife, sitting down. "And I tell you what, Katia," he went on to his younger daughter, "you must wake up one fine day and say to yourself: Why, I'm quite well, and merry, and going out again with father for an early morning walk in the frost. Hey?" What her father said seemed simple enough, yet at these words Kitty became confused and overcome like a detected criminal. "Yes, he sees it all, he understands it all, and in these words he's telling me that though I'm ashamed, I must get over my shame." She could not pluck up spirit to make any answer. She tried to begin, and all at once burst into tears, and rushed out of the room. "See what comes of your jokes!" the princess pounced down on her husband. "You're always..." she began a string of reproaches. The prince listened to the princess's scolding rather a long while without speaking, but his face was more and more frowning. "She's so much to be pitied, poor child, so much to be pitied, and you don't feel how it hurts her to hear the slightest reference to the cause of it. Ah! to be so mistaken in people!" said the princess, and by the change in her tone both Dolly and the prince knew she was speaking of Vronsky. "I don't know why there aren't laws against such base, dishonorable people." "Ah, I can't bear to hear you!" said the prince gloomily, getting up from his low chair, and seeming anxious to get away, yet stopping in the doorway. "There are laws, madam, and since you've challenged me to it, I'll tell you who's to blame for it all: you and you, you and nobody else. Laws against such young gallants there have always been, and there still are! Yes, if there has been nothing that ought not to have been, old as I am, I'd have called him out to the barrier, the young dandy. Yes, and now you physic her and call in these quacks." The prince apparently had plenty more to say, but as soon as the princess heard his tone she subsided at once, and became penitent, as she always did on serious occasions. "Alexander, Alexander," she whispered, moving to him and beginning to weep. As soon as she began to cry the prince too calmed down. He went up to her. "There, that's enough, that's enough! You're wretched too, I know. It can't be helped. There's no great harm done. God is merciful ... thanks..." he said, not knowing what he was saying, as he responded to the tearful kiss of the princess that he felt on his hand. And the prince went out of the room. Before this, as soon as Kitty went out of the room in tears, Dolly, with her motherly, family instincts, had promptly perceived that here a woman's work lay before her, and she prepared to do it. She took off her hat, and, morally speaking, tucked up her sleeves and prepared for action. While her mother was attacking her father, she tried to restrain her mother, so far as filial reverence would allow. During the prince's outburst she was silent; she felt ashamed for her mother, and tender towards her father for so quickly being kind again. But when her father left them she made ready for what was the chief thing needful--to go to Kitty and console her. "I'd been meaning to tell you something for a long while, mamma: did you know that Levin meant to make Kitty an offer when he was here the last time? He told Stiva so." "Well, what then? I don't understand..." "So did Kitty perhaps refuse him?... She didn't tell you so?" "No, she has said nothing to me either of one or the other; she's too proud. But I know it's all on account of the other." "Yes, but suppose she has refused Levin, and she wouldn't have refused him if it hadn't been for the other, I know. And then, he has deceived her so horribly." It was too terrible for the princess to think how she had sinned against her daughter, and she broke out angrily. "Oh, I really don't understand! Nowadays they will all go their own way, and mothers haven't a word to say in anything, and then..." "Mamma, I'll go up to her." "Well, do. Did I tell you not to?" said her mother. Chapter 3 When she went into Kitty's little room, a pretty, pink little room, full of knick-knacks in _vieux saxe,_ as fresh, and pink, and white, and gay as Kitty herself had been two months ago, Dolly remembered how they had decorated the room the year before together, with what love and gaiety. Her heart turned cold when she saw Kitty sitting on a low chair near the door, her eyes fixed immovably on a corner of the rug. Kitty glanced at her sister, and the cold, rather ill-tempered expression of her face did not change. "I'm just going now, and I shall have to keep in and you won't be able to come to see me," said Dolly, sitting down beside her. "I want to talk to you." "What about?" Kitty asked swiftly, lifting her head in dismay. "What should it be, but your trouble?" "I have no trouble." "Nonsense, Kitty. Do you suppose I could help knowing? I know all about it. And believe me, it's of so little consequence.... We've all been through it." Kitty did not speak, and her face had a stern expression. "He's not worth your grieving over him," pursued Darya Alexandrovna, coming straight to the point. "No, because he has treated me with contempt," said Kitty, in a breaking voice. "Don't talk of it! Please, don't talk of it!" "But who can have told you so? No one has said that. I'm certain he was in love with you, and would still be in love with you, if it hadn't... "Oh, the most awful thing of all for me is this sympathizing!" shrieked Kitty, suddenly flying into a passion. She turned round on her chair, flushed crimson, and rapidly moving her fingers, pinched the clasp of her belt first with one hand and then with the other. Dolly knew this trick her sister had of clenching her hands when she was much excited; she knew, too, that in moments of excitement Kitty was capable of forgetting herself and saying a great deal too much, and Dolly would have soothed her, but it was too late. "What, what is it you want to make me feel, eh?" said Kitty quickly. "That I've been in love with a man who didn't care a straw for me, and that I'm dying of love for him? And this is said to me by my own sister, who imagines that ... that ... that she's sympathizing with me!... I don't want these condolences and humbug!" "Kitty, you're unjust." "Why are you tormenting me?" "But I ... quite the contrary ... I see you're unhappy..." But Kitty in her fury did not hear her. "I've nothing to grieve over and be comforted about. I am too proud ever to allow myself to care for a man who does not love me." "Yes, I don't say so either.... Only one thing. Tell me the truth," said Darya Alexandrovna, taking her by the hand: "tell me, did Levin speak to you?..." The mention of Levin's name seemed to deprive Kitty of the last vestige of self-control. She leaped up from her chair, and flinging her clasp on the ground, she gesticulated rapidly with her hands and said: "Why bring Levin in too? I can't understand what you want to torment me for. I've told you, and I say it again, that I have some pride, and never, _never_ would I do as you're doing--go back to a man who's deceived you, who has cared for another woman. I can't understand it! You may, but I can't!" And saying these words she glanced at her sister, and seeing that Dolly sat silent, her head mournfully bowed, Kitty, instead of running out of the room as she had meant to do, sat down near the door, and hid her face in her handkerchief. The silence lasted for two minutes: Dolly was thinking of herself. That humiliation of which she was always conscious came back to her with a peculiar bitterness when her sister reminded her of it. She had not looked for such cruelty in her sister, and she was angry with her. But suddenly she heard the rustle of a skirt, and with it the sound of heart-rending, smothered sobbing, and felt arms about her neck. Kitty was on her knees before her. "Dolinka, I am so, so wretched!" she whispered penitently. And the sweet face covered with tears hid itself in Darya Alexandrovna's skirt. As though tears were the indispensable oil, without which the machinery of mutual confidence could not run smoothly between the two sisters, the sisters after their tears talked, not of what was uppermost in their minds, but, though they talked of outside matters, they understood each other. Kitty knew that the words she had uttered in anger about her husband's infidelity and her humiliating position had cut her poor sister to the heart, but that she had forgiven her. Dolly for her part knew all she had wanted to find out. She felt certain that her surmises were correct; that Kitty's misery, her inconsolable misery, was due precisely to the fact that Levin had made her an offer and she had refused him, and Vronsky had deceived her, and that she was fully prepared to love Levin and to detest Vronsky. Kitty said not a word of that; she talked of nothing but her spiritual condition. "I have nothing to make me miserable," she said, getting calmer; "but can you understand that everything has become hateful, loathsome, coarse to me, and I myself most of all? You can't imagine what loathsome thoughts I have about everything." "Why, whatever loathsome thoughts can you have?" asked Dolly, smiling. "The most utterly loathsome and coarse: I can't tell you. It's not unhappiness, or low spirits, but much worse. As though everything that was good in me was all hidden away, and nothing was left but the most loathsome. Come, how am I to tell you?" she went on, seeing the puzzled look in her sister's eyes. "Father began saying something to me just now.... It seems to me he thinks all I want is to be married. Mother takes me to a ball: it seems to me she only takes me to get me married off as soon as may be, and be rid of me. I know it's not the truth, but I can't drive away such thoughts. Eligible suitors, as they call them--I can't bear to see them. It seems to me they're taking stock of me and summing me up. In old days to go anywhere in a ball dress was a simple joy to me, I admired myself; now I feel ashamed and awkward. And then! The doctor.... Then..." Kitty hesitated; she wanted to say further that ever since this change had taken place in her, Stepan Arkadyevitch had become insufferably repulsive to her, and that she could not see him without the grossest and most hideous conceptions rising before her imagination. "Oh, well, everything presents itself to me, in the coarsest, most loathsome light," she went on. "That's my illness. Perhaps it will pass off." "But you mustn't think about it." "I can't help it. I'm never happy except with the children at your house." "What a pity you can't be with me!" "Oh, yes, I'm coming. I've had scarlatina, and I'll persuade mamma to let me." Kitty insisted on having her way, and went to stay at her sister's and nursed the children all through the scarlatina, for scarlatina it turned out to be. The two sisters brought all the six children successfully through it, but Kitty was no better in health, and in Lent the Shtcherbatskys went abroad. Chapter 4 The highest Petersburg society is essentially one: in it everyone knows everyone else, everyone even visits everyone else. But this great set has its subdivisions. Anna Arkadyevna Karenina had friends and close ties in three different circles of this highest society. One circle was her husband's government official set, consisting of his colleagues and subordinates, brought together in the most various and capricious manner, and belonging to different social strata. Anna found it difficult now to recall the feeling of almost awe-stricken reverence which she had at first entertained for these persons. Now she knew all of them as people know one another in a country town; she knew their habits and weaknesses, and where the shoe pinched each one of them. She knew their relations with one another and with the head authorities, knew who was for whom, and how each one maintained his position, and where they agreed and disagreed. But the circle of political, masculine interests had never interested her, in spite of countess Lidia Ivanovna's influence, and she avoided it. Another little set with which Anna was in close relations was the one by means of which Alexey Alexandrovitch had made his career. The center of this circle was the Countess Lidia Ivanovna. It was a set made up of elderly, ugly, benevolent, and godly women, and clever, learned, and ambitious men. One of the clever people belonging to the set had called it "the conscience of Petersburg society." Alexey Alexandrovitch had the highest esteem for this circle, and Anna with her special gift for getting on with everyone, had in the early days of her life in Petersburg made friends in this circle also. Now, since her return from Moscow, she had come to feel this set insufferable. It seemed to her that both she and all of them were insincere, and she felt so bored and ill at ease in that world that she went to see the Countess Lidia Ivanovna as little as possible. The third circle with which Anna had ties was preeminently the fashionable world--the world of balls, of dinners, of sumptuous dresses, the world that hung on to the court with one hand, so as to avoid sinking to the level of the demi-monde. For the demi-monde the members of that fashionable world believed that they despised, though their tastes were not merely similar, but in fact identical. Her connection with this circle was kept up through Princess Betsy Tverskaya, her cousin's wife, who had an income of a hundred and twenty thousand roubles, and who had taken a great fancy to Anna ever since she first came out, showed her much attention, and drew her into her set, making fun of Countess Lidia Ivanovna's coterie. "When I'm old and ugly I'll be the same," Betsy used to say; "but for a pretty young woman like you it's early days for that house of charity." Anna had at first avoided as far as she could Princess Tverskaya's world, because it necessitated an expenditure beyond her means, and besides in her heart she preferred the first circle. But since her visit to Moscow she had done quite the contrary. She avoided her serious-minded friends, and went out into the fashionable world. There she met Vronsky, and experienced an agitating joy at those meetings. She met Vronsky specially often at Betsy's for Betsy was a Vronsky by birth and his cousin. Vronsky was everywhere where he had any chance of meeting Anna, and speaking to her, when he could, of his love. She gave him no encouragement, but every time she met him there surged up in her heart that same feeling of quickened life that had come upon her that day in the railway carriage when she saw him for the first time. She was conscious herself that her delight sparkled in her eyes and curved her lips into a smile, and she could not quench the expression of this delight. At first Anna sincerely believed that she was displeased with him for daring to pursue her. Soon after her return from Moscow, on arriving at a _soiree_ where she had expected to meet him, and not finding him there, she realized distinctly from the rush of disappointment that she had been deceiving herself, and that this pursuit was not merely not distasteful to her, but that it made the whole interest of her life. A celebrated singer was singing for the second time, and all the fashionable world was in the theater. Vronsky, seeing his cousin from his stall in the front row, did not wait till the entr'acte, but went to her box. "Why didn't you come to dinner?" she said to him. "I marvel at the second sight of lovers," she added with a smile, so that no one but he could hear; "_she wasn't there_. But come after the opera." Vronsky looked inquiringly at her. She nodded. He thanked her by a smile, and sat down beside her. "But how I remember your jeers!" continued Princess Betsy, who took a peculiar pleasure in following up this passion to a successful issue. "What's become of all that? You're caught, my dear boy." "That's my one desire, to be caught," answered Vronsky, with his serene, good-humored smile. "If I complain of anything it's only that I'm not caught enough, to tell the truth. I begin to lose hope." "Why, whatever hope can you have?" said Betsy, offended on behalf of her friend. "_Entendons nous...._" But in her eyes there were gleams of light that betrayed that she understood perfectly and precisely as he did what hope he might have. "None whatever," said Vronsky, laughing and showing his even rows of teeth. "Excuse me," he added, taking an opera glass out of her hand, and proceeding to scrutinize, over her bare shoulder, the row of boxes facing them. "I'm afraid I'm becoming ridiculous." He was very well aware that he ran no risk of being ridiculous in the eyes of Betsy or any other fashionable people. He was very well aware that in their eyes the position of an unsuccessful lover of a girl, or of any woman free to marry, might be ridiculous. But the position of a man pursuing a married woman, and, regardless of everything, staking his life on drawing her into adultery, has something fine and grand about it, and can never be ridiculous; and so it was with a proud and gay smile under his mustaches that he lowered the opera glass and looked at his cousin. "But why was it you didn't come to dinner?" she said, admiring him. "I must tell you about that. I was busily employed, and doing what, do you suppose? I'll give you a hundred guesses, a thousand ... you'd never guess. I've been reconciling a husband with a man who'd insulted his wife. Yes, really!" "Well, did you succeed?" "Almost." "You really must tell me about it," she said, getting up. "Come to me in the next _entr'acte._" "I can't; I'm going to the French theater." "From Nilsson?" Betsy queried in horror, though she could not herself have distinguished Nilsson's voice from any chorus girl's. "Can't help it. I've an appointment there, all to do with my mission of peace." "'Blessed are the peacemakers; theirs is the kingdom of heaven,'" said Betsy, vaguely recollecting she had heard some similar saying from someone. "Very well, then, sit down, and tell me what it's all about." And she sat down again. Chapter 5 "This is rather indiscreet, but it's so good it's an awful temptation to tell the story," said Vronsky, looking at her with his laughing eyes. "I'm not going to mention any names." "But I shall guess, so much the better." "Well, listen: two festive young men were driving--" "Officers of your regiment, of course?" "I didn't say they were officers,--two young men who had been lunching." "In other words, drinking." "Possibly. They were driving on their way to dinner with a friend in the most festive state of mind. And they beheld a pretty woman in a hired sledge; she overtakes them, looks round at them, and, so they fancy anyway, nods to them and laughs. They, of course, follow her. They gallop at full speed. To their amazement, the fair one alights at the entrance of the very house to which they were going. The fair one darts upstairs to the top story. They get a glimpse of red lips under a short veil, and exquisite little feet." "You describe it with such feeling that I fancy you must be one of the two." "And after what you said, just now! Well, the young men go in to their comrade's; he was giving a farewell dinner. There they certainly did drink a little too much, as one always does at farewell dinners. And at dinner they inquire who lives at the top in that house. No one knows; only their host's valet, in answer to their inquiry whether any 'young ladies' are living on the top floor, answered that there were a great many of them about there. After dinner the two young men go into their host's study, and write a letter to the unknown fair one. They compose an ardent epistle, a declaration in fact, and they carry the letter upstairs themselves, so as to elucidate whatever might appear not perfectly intelligible in the letter." "Why are you telling me these horrible stories? Well?" "They ring. A maid-servant opens the door, they hand her the letter, and assure the maid that they're both so in love that they'll die on the spot at the door. The maid, stupefied, carries in their messages. All at once a gentleman appears with whiskers like sausages, as red as a lobster, announces that there is no one living in the flat except his wife, and sends them both about their business." "How do you know he had whiskers like sausages, as you say?" "Ah, you shall hear. I've just been to make peace between them." "Well, and what then?" "That's the most interesting part of the story. It appears that it's a happy couple, a government clerk and his lady. The government clerk lodges a complaint, and I became a mediator, and such a mediator!... I assure you Talleyrand couldn't hold a candle to me." "Why, where was the difficulty?" "Ah, you shall hear.... We apologize in due form: we are in despair, we entreat forgiveness for the unfortunate misunderstanding. The government clerk with the sausages begins to melt, but he, too, desires to express his sentiments, and as soon as ever he begins to express them, he begins to get hot and say nasty things, and again I'm obliged to trot out all my diplomatic talents. I allowed that their conduct was bad, but I urged him to take into consideration their heedlessness, their youth; then, too, the young men had only just been lunching together. 'You understand. They regret it deeply, and beg you to overlook their misbehavior.' The government clerk was softened once more. 'I consent, count, and am ready to overlook it; but you perceive that my wife--my wife's a respectable woman--has been exposed to the persecution, and insults, and effrontery of young upstarts, scoundrels....' And you must understand, the young upstarts are present all the while, and I have to keep the peace between them. Again I call out all my diplomacy, and again as soon as the thing was about at an end, our friend the government clerk gets hot and red, and his sausages stand on end with wrath, and once more I launch out into diplomatic wiles." "Ah, he must tell you this story!" said Betsy, laughing, to a lady who came into her box. "He has been making me laugh so." "Well, _bonne chance_!" she added, giving Vronsky one finger of the hand in which she held her fan, and with a shrug of her shoulders she twitched down the bodice of her gown that had worked up, so as to be duly naked as she moved forward towards the footlights into the light of the gas, and the sight of all eyes. Vronsky drove to the French theater, where he really had to see the colonel of his regiment, who never missed a single performance there. He wanted to see him, to report on the result of his mediation, which had occupied and amused him for the last three days. Petritsky, whom he liked, was implicated in the affair, and the other culprit was a capital fellow and first-rate comrade, who had lately joined the regiment, the young Prince Kedrov. And what was most important, the interests of the regiment were involved in it too. Both the young men were in Vronsky's company. The colonel of the regiment was waited upon by the government clerk, Venden, with a complaint against his officers, who had insulted his wife. His young wife, so Venden told the story--he had been married half a year--was at church with her mother, and suddenly overcome by indisposition, arising from her interesting condition, she could not remain standing, she drove home in the first sledge, a smart-looking one, she came across. On the spot the officers set off in pursuit of her; she was alarmed, and feeling still more unwell, ran up the staircase home. Venden himself, on returning from his office, heard a ring at their bell and voices, went out, and seeing the intoxicated officers with a letter, he had turned them out. He asked for exemplary punishment. "Yes, it's all very well," said the colonel to Vronsky, whom he had invited to come and see him. "Petritsky's becoming impossible. Not a week goes by without some scandal. This government clerk won't let it drop, he'll go on with the thing." Vronsky saw all the thanklessness of the business, and that there could be no question of a duel in it, that everything must be done to soften the government clerk, and hush the matter up. The colonel had called in Vronsky just because he knew him to be an honorable and intelligent man, and, more than all, a man who cared for the honor of the regiment. They talked it over, and decided that Petritsky and Kedrov must go with Vronsky to Venden's to apologize. The colonel and Vronsky were both fully aware that Vronsky's name and rank would be sure to contribute greatly to the softening of the injured husband's feelings. And these two influences were not in fact without effect; though the result remained, as Vronsky had described, uncertain. On reaching the French theater, Vronsky retired to the foyer with the colonel, and reported to him his success, or non-success. The colonel, thinking it all over, made up his mind not to pursue the matter further, but then for his own satisfaction proceeded to cross-examine Vronsky about his interview; and it was a long while before he could restrain his laughter, as Vronsky described how the government clerk, after subsiding for a while, would suddenly flare up again, as he recalled the details, and how Vronsky, at the last half word of conciliation, skillfully maneuvered a retreat, shoving Petritsky out before him. "It's a disgraceful story, but killing. Kedrov really can't fight the gentleman! Was he so awfully hot?" he commented, laughing. "But what do you say to Claire today? She's marvelous," he went on, speaking of a new French actress. "However often you see her, every day she's different. It's only the French who can do that." Chapter 6 Princess Betsy drove home from the theater, without waiting for the end of the last act. She had only just time to go into her dressing room, sprinkle her long, pale face with powder, rub it, set her dress to rights, and order tea in the big drawing room, when one after another carriages drove up to her huge house in Bolshaia Morskaia. Her guests stepped out at the wide entrance, and the stout porter, who used to read the newspapers in the mornings behind the glass door, to the edification of the passers-by, noiselessly opened the immense door, letting the visitors pass by him into the house. Almost at the same instant the hostess, with freshly arranged coiffure and freshened face, walked in at one door and her guests at the other door of the drawing room, a large room with dark walls, downy rugs, and a brightly lighted table, gleaming with the light of candles, white cloth, silver samovar, and transparent china tea things. The hostess sat down at the table and took off her gloves. Chairs were set with the aid of footmen, moving almost imperceptibly about the room; the party settled itself, divided into two groups: one round the samovar near the hostess, the other at the opposite end of the drawing room, round the handsome wife of an ambassador, in black velvet, with sharply defined black eyebrows. In both groups conversation wavered, as it always does, for the first few minutes, broken up by meetings, greetings, offers of tea, and as it were, feeling about for something to rest upon. "She's exceptionally good as an actress; one can see she's studied Kaulbach," said a diplomatic attache in the group round the ambassador's wife. "Did you notice how she fell down?..." "Oh, please, don't let us talk about Nilsson! No one can possibly say anything new about her," said a fat, red-faced, flaxen-headed lady, without eyebrows and chignon, wearing an old silk dress. This was Princess Myakaya, noted for her simplicity and the roughness of her manners, and nicknamed _enfant terrible_. Princess Myakaya, sitting in the middle between the two groups, and listening to both, took part in the conversation first of one and then of the other. "Three people have used that very phrase about Kaulbach to me today already, just as though they had made a compact about it. And I can't see why they liked that remark so." The conversation was cut short by this observation, and a new subject had to be thought of again. "Do tell me something amusing but not spiteful," said the ambassador's wife, a great proficient in the art of that elegant conversation called by the English, _small talk_. She addressed the attache, who was at a loss now what to begin upon. "They say that that's a difficult task, that nothing's amusing that isn't spiteful," he began with a smile. "But I'll try. Get me a subject. It all lies in the subject. If a subject's given me, it's easy to spin something round it. I often think that the celebrated talkers of the last century would have found it difficult to talk cleverly now. Everything clever is so stale..." "That has been said long ago," the ambassador's wife interrupted him, laughing. The conversation began amiably, but just because it was too amiable, it came to a stop again. They had to have recourse to the sure, never-failing topic--gossip. "Don't you think there's something Louis Quinze about Tushkevitch?" he said, glancing towards a handsome, fair-haired young man, standing at the table. "Oh, yes! He's in the same style as the drawing room and that's why it is he's so often here." This conversation was maintained, since it rested on allusions to what could not be talked of in that room--that is to say, of the relations of Tushkevitch with their hostess. Round the samovar and the hostess the conversation had been meanwhile vacillating in just the same way between three inevitable topics: the latest piece of public news, the theater, and scandal. It, too, came finally to rest on the last topic, that is, ill-natured gossip. "Have you heard the Maltishtcheva woman--the mother, not the daughter--has ordered a costume in _diable rose_ color?" "Nonsense! No, that's too lovely!" "I wonder that with her sense--for she's not a fool, you know--that she doesn't see how funny she is." Everyone had something to say in censure or ridicule of the luckless Madame Maltishtcheva, and the conversation crackled merrily, like a burning faggot-stack. The husband of Princess Betsy, a good-natured fat man, an ardent collector of engravings, hearing that his wife had visitors, came into the drawing room before going to his club. Stepping noiselessly over the thick rugs, he went up to Princess Myakaya. "How did you like Nilsson?" he asked. "Oh, how can you steal upon anyone like that! How you startled me!" she responded. "Please don't talk to me about the opera; you know nothing about music. I'd better meet you on your own ground, and talk about your majolica and engravings. Come now, what treasure have you been buying lately at the old curiosity shops?" "Would you like me to show you? But you don't understand such things." "Oh, do show me! I've been learning about them at those--what's their names?... the bankers ... they've some splendid engravings. They showed them to us." "Why, have you been at the Schuetzburgs?" asked the hostess from the samovar. "Yes, _ma chere_. They asked my husband and me to dinner, and told us the sauce at that dinner cost a hundred pounds," Princess Myakaya said, speaking loudly, and conscious everyone was listening; "and very nasty sauce it was, some green mess. We had to ask them, and I made them sauce for eighteen pence, and everybody was very much pleased with it. I can't run to hundred-pound sauces." "She's unique!" said the lady of the house. "Marvelous!" said someone. The sensation produced by Princess Myakaya's speeches was always unique, and the secret of the sensation she produced lay in the fact that though she spoke not always appropriately, as now, she said simple things with some sense in them. In the society in which she lived such plain statements produced the effect of the wittiest epigram. Princess Myakaya could never see why it had that effect, but she knew it had, and took advantage of it. As everyone had been listening while Princess Myakaya spoke, and so the conversation around the ambassador's wife had dropped, Princess Betsy tried to bring the whole party together, and turned to the ambassador's wife. "Will you really not have tea? You should come over here by us." "No, we're very happy here," the ambassador's wife responded with a smile, and she went on with the conversation that had been begun. It was a very agreeable conversation. They were criticizing the Karenins, husband and wife. "Anna is quite changed since her stay in Moscow. There's something strange about her," said her friend. "The great change is that she brought back with her the shadow of Alexey Vronsky," said the ambassador's wife. "Well, what of it? There's a fable of Grimm's about a man without a shadow, a man who's lost his shadow. And that's his punishment for something. I never could understand how it was a punishment. But a woman must dislike being without a shadow." "Yes, but women with a shadow usually come to a bad end," said Anna's friend. "Bad luck to your tongue!" said Princess Myakaya suddenly. "Madame Karenina's a splendid woman. I don't like her husband, but I like her very much." "Why don't you like her husband? He's such a remarkable man," said the ambassador's wife. "My husband says there are few statesmen like him in Europe." "And my husband tells me just the same, but I don't believe it," said Princess Myakaya. "If our husbands didn't talk to us, we should see the facts as they are. Alexey Alexandrovitch, to my thinking, is simply a fool. I say it in a whisper ... but doesn't it really make everything clear? Before, when I was told to consider him clever, I kept looking for his ability, and thought myself a fool for not seeing it; but directly I said, _he's a fool,_ though only in a whisper, everything's explained, isn't it?" "How spiteful you are today!" "Not a bit. I'd no other way out of it. One of the two had to be a fool. And, well, you know one can't say that of oneself." "'No one is satisfied with his fortune, and everyone is satisfied with his wit.'" The attache repeated the French saying. "That's just it, just it," Princess Myakaya turned to him. "But the point is that I won't abandon Anna to your mercies. She's so nice, so charming. How can she help it if they're all in love with her, and follow her about like shadows?" "Oh, I had no idea of blaming her for it," Anna's friend said in self-defense. "If no one follows us about like a shadow, that's no proof that we've any right to blame her." And having duly disposed of Anna's friend, the Princess Myakaya got up, and together with the ambassador's wife, joined the group at the table, where the conversation was dealing with the king of Prussia. "What wicked gossip were you talking over there?" asked Betsy. "About the Karenins. The princess gave us a sketch of Alexey Alexandrovitch," said the ambassador's wife with a smile, as she sat down at the table. "Pity we didn't hear it!" said Princess Betsy, glancing towards the door. "Ah, here you are at last!" she said, turning with a smile to Vronsky, as he came in. Vronsky was not merely acquainted with all the persons whom he was meeting here; he saw them all every day; and so he came in with the quiet manner with which one enters a room full of people from whom one has only just parted. "Where do I come from?" he said, in answer to a question from the ambassador's wife. "Well, there's no help for it, I must confess. From the _opera bouffe_. I do believe I've seen it a hundred times, and always with fresh enjoyment. It's exquisite! I know it's disgraceful, but I go to sleep at the opera, and I sit out the _opera bouffe_ to the last minute, and enjoy it. This evening..." He mentioned a French actress, and was going to tell something about her; but the ambassador's wife, with playful horror, cut him short. "Please don't tell us about that horror." "All right, I won't especially as everyone knows those horrors." "And we should all go to see them if it were accepted as the correct thing, like the opera," chimed in Princess Myakaya. Chapter 7 Steps were heard at the door, and Princess Betsy, knowing it was Madame Karenina, glanced at Vronsky. He was looking towards the door, and his face wore a strange new expression. Joyfully, intently, and at the same time timidly, he gazed at the approaching figure, and slowly he rose to his feet. Anna walked into the drawing room. Holding herself extremely erect, as always, looking straight before her, and moving with her swift, resolute, and light step, that distinguished her from all other society women, she crossed the short space to her hostess, shook hands with her, smiled, and with the same smile looked around at Vronsky. Vronsky bowed low and pushed a chair up for her. She acknowledged this only by a slight nod, flushed a little, and frowned. But immediately, while rapidly greeting her acquaintances, and shaking the hands proffered to her, she addressed Princess Betsy: "I have been at Countess Lidia's, and meant to have come here earlier, but I stayed on. Sir John was there. He's very interesting." "Oh, that's this missionary?" "Yes; he told us about the life in India, most interesting things." The conversation, interrupted by her coming in, flickered up again like the light of a lamp being blown out. "Sir John! Yes, Sir John; I've seen him. He speaks well. The Vlassieva girl's quite in love with him." "And is it true the younger Vlassieva girl's to marry Topov?" "Yes, they say it's quite a settled thing." "I wonder at the parents! They say it's a marriage for love." "For love? What antediluvian notions you have! Can one talk of love in these days?" said the ambassador's wife. "What's to be done? It's a foolish old fashion that's kept up still," said Vronsky. "So much the worse for those who keep up the fashion. The only happy marriages I know are marriages of prudence." "Yes, but then how often the happiness of these prudent marriages flies away like dust just because that passion turns up that they have refused to recognize," said Vronsky. "But by marriages of prudence we mean those in which both parties have sown their wild oats already. That's like scarlatina--one has to go through it and get it over." "Then they ought to find out how to vaccinate for love, like smallpox." "I was in love in my young days with a deacon," said the Princess Myakaya. "I don't know that it did me any good." "No; I imagine, joking apart, that to know love, one must make mistakes and then correct them," said Princess Betsy. "Even after marriage?" said the ambassador's wife playfully. "'It's never too late to mend.'" The attache repeated the English proverb. "Just so," Betsy agreed; "one must make mistakes and correct them. What do you think about it?" she turned to Anna, who, with a faintly perceptible resolute smile on her lips, was listening in silence to the conversation. "I think," said Anna, playing with the glove she had taken off, "I think ... of so many men, so many minds, certainly so many hearts, so many kinds of love." Vronsky was gazing at Anna, and with a fainting heart waiting for what she would say. He sighed as after a danger escaped when she uttered these words. Anna suddenly turned to him. "Oh, I have had a letter from Moscow. They write me that Kitty Shtcherbatskaya's very ill." "Really?" said Vronsky, knitting his brows. Anna looked sternly at him. "That doesn't interest you?" "On the contrary, it does, very much. What was it exactly they told you, if I may know?" he questioned. Anna got up and went to Betsy. "Give me a cup of tea," she said, standing at her table. While Betsy was pouring out the tea, Vronsky went up to Anna. "What is it they write to you?" he repeated. "I often think men have no understanding of what's not honorable though they're always talking of it," said Anna, without answering him. "I've wanted to tell you so a long while," she added, and moving a few steps away, she sat down at a table in a corner covered with albums. "I don't quite understand the meaning of your words," he said, handing her the cup. She glanced towards the sofa beside her, and he instantly sat down. "Yes, I have been wanting to tell you," she said, not looking at him. "You behaved wrongly, very wrongly." "Do you suppose I don't know that I've acted wrongly? But who was the cause of my doing so?" "What do you say that to me for?" she said, glancing severely at him. "You know what for," he answered boldly and joyfully, meeting her glance and not dropping his eyes. Not he, but she, was confused. "That only shows you have no heart," she said. But her eyes said that she knew he had a heart, and that was why she was afraid of him. "What you spoke of just now was a mistake, and not love." "Remember that I have forbidden you to utter that word, that hateful word," said Anna, with a shudder. But at once she felt that by that very word "forbidden" she had shown that she acknowledged certain rights over him, and by that very fact was encouraging him to speak of love. "I have long meant to tell you this," she went on, looking resolutely into his eyes, and hot all over from the burning flush on her cheeks. "I've come on purpose this evening, knowing I should meet you. I have come to tell you that this must end. I have never blushed before anyone, and you force me to feel to blame for something." He looked at her and was struck by a new spiritual beauty in her face. "What do you wish of me?" he said simply and seriously. "I want you to go to Moscow and ask for Kitty's forgiveness," she said. "You don't wish that?" he said. He saw she was saying what she forced herself to say, not what she wanted to say. "If you love me, as you say," she whispered, "do so that I may be at peace." His face grew radiant. "Don't you know that you're all my life to me? But I know no peace, and I can't give it to you; all myself--and love ... yes. I can't think of you and myself apart. You and I are one to me. And I see no chance before us of peace for me or for you. I see a chance of despair, of wretchedness ... or I see a chance of bliss, what bliss!... Can it be there's no chance of it?" he murmured with his lips; but she heard. She strained every effort of her mind to say what ought to be said. But instead of that she let her eyes rest on him, full of love, and made no answer. "It's come!" he thought in ecstasy. "When I was beginning to despair, and it seemed there would be no end--it's come! She loves me! She owns it!" "Then do this for me: never say such things to me, and let us be friends," she said in words; but her eyes spoke quite differently. "Friends we shall never be, you know that yourself. Whether we shall be the happiest or the wretchedest of people--that's in your hands." She would have said something, but he interrupted her. "I ask one thing only: I ask for the right to hope, to suffer as I do. But if even that cannot be, command me to disappear, and I disappear. You shall not see me if my presence is distasteful to you." "I don't want to drive you away." "Only don't change anything, leave everything as it is," he said in a shaky voice. "Here's your husband." At that instant Alexey Alexandrovitch did in fact walk into the room with his calm, awkward gait. Glancing at his wife and Vronsky, he went up to the lady of the house, and sitting down for a cup of tea, began talking in his deliberate, always audible voice, in his habitual tone of banter, ridiculing someone. "Your Rambouillet is in full conclave," he said, looking round at all the party; "the graces and the muses." But Princess Betsy could not endure that tone of his--"sneering," as she called it, using the English word, and like a skillful hostess she at once brought him into a serious conversation on the subject of universal conscription. Alexey Alexandrovitch was immediately interested in the subject, and began seriously defending the new imperial decree against Princess Betsy, who had attacked it. Vronsky and Anna still sat at the little table. "This is getting indecorous," whispered one lady, with an expressive glance at Madame Karenina, Vronsky, and her husband. "What did I tell you?" said Anna's friend. But not only those ladies, almost everyone in the room, even the Princess Myakaya and Betsy herself, looked several times in the direction of the two who had withdrawn from the general circle, as though that were a disturbing fact. Alexey Alexandrovitch was the only person who did not once look in that direction, and was not diverted from the interesting discussion he had entered upon. Noticing the disagreeable impression that was being made on everyone, Princess Betsy slipped someone else into her place to listen to Alexey Alexandrovitch, and went up to Anna. "I'm always amazed at the clearness and precision of your husband's language," she said. "The most transcendental ideas seem to be within my grasp when he's speaking." "Oh, yes!" said Anna, radiant with a smile of happiness, and not understanding a word of what Betsy had said. She crossed over to the big table and took part in the general conversation. Alexey Alexandrovitch, after staying half an hour, went up to his wife and suggested that they should go home together. But she answered, not looking at him, that she was staying to supper. Alexey Alexandrovitch made his bows and withdrew. The fat old Tatar, Madame Karenina's coachman, was with difficulty holding one of her pair of grays, chilled with the cold and rearing at the entrance. A footman stood opening the carriage door. The hall porter stood holding open the great door of the house. Anna Arkadyevna, with her quick little hand, was unfastening the lace of her sleeve, caught in the hook of her fur cloak, and with bent head listening to the words Vronsky murmured as he escorted her down. "You've said nothing, of course, and I ask nothing," he was saying; "but you know that friendship's not what I want: that there's only one happiness in life for me, that word that you dislike so ... yes, love!..." "Love," she repeated slowly, in an inner voice, and suddenly, at the very instant she unhooked the lace, she added, "Why I don't like the word is that it means too much to me, far more than you can understand," and she glanced into his face. "_Au revoir!_" She gave him her hand, and with her rapid, springy step she passed by the porter and vanished into the carriage. Her glance, the touch of her hand, set him aflame. He kissed the palm of his hand where she had touched it, and went home, happy in the sense that he had got nearer to the attainment of his aims that evening than during the last two months. Chapter 8 Alexey Alexandrovitch had seen nothing striking or improper in the fact that his wife was sitting with Vronsky at a table apart, in eager conversation with him about something. But he noticed that to the rest of the party this appeared something striking and improper, and for that reason it seemed to him too to be improper. He made up his mind that he must speak of it to his wife. On reaching home Alexey Alexandrovitch went to his study, as he usually did, seated himself in his low chair, opened a book on the Papacy at the place where he had laid the paper-knife in it, and read till one o'clock, just as he usually did. But from time to time he rubbed his high forehead and shook his head, as though to drive away something. At his usual time he got up and made his toilet for the night. Anna Arkadyevna had not yet come in. With a book under his arm he went upstairs. But this evening, instead of his usual thoughts and meditations upon official details, his thoughts were absorbed by his wife and something disagreeable connected with her. Contrary to his usual habit, he did not get into bed, but fell to walking up and down the rooms with his hands clasped behind his back. He could not go to bed, feeling that it was absolutely needful for him first to think thoroughly over the position that had just arisen. When Alexey Alexandrovitch had made up his mind that he must talk to his wife about it, it had seemed a very easy and simple matter. But now, when he began to think over the question that had just presented itself, it seemed to him very complicated and difficult. Alexey Alexandrovitch was not jealous. Jealousy according to his notions was an insult to one's wife, and one ought to have confidence in one's wife. Why one ought to have confidence--that is to say, complete conviction that his young wife would always love him--he did not ask himself. But he had no experience of lack of confidence, because he had confidence in her, and told himself that he ought to have it. Now, though his conviction that jealousy was a shameful feeling and that one ought to feel confidence, had not broken down, he felt that he was standing face to face with something illogical and irrational, and did not know what was to be done. Alexey Alexandrovitch was standing face to face with life, with the possibility of his wife's loving someone other than himself, and this seemed to him very irrational and incomprehensible because it was life itself. All his life Alexey Alexandrovitch had lived and worked in official spheres, having to do with the reflection of life. And every time he had stumbled against life itself he had shrunk away from it. Now he experienced a feeling akin to that of a man who, while calmly crossing a precipice by a bridge, should suddenly discover that the bridge is broken, and that there is a chasm below. That chasm was life itself, the bridge that artificial life in which Alexey Alexandrovitch had lived. For the first time the question presented itself to him of the possibility of his wife's loving someone else, and he was horrified at it. He did not undress, but walked up and down with his regular tread over the resounding parquet of the dining room, where one lamp was burning, over the carpet of the dark drawing room, in which the light was reflected on the big new portrait of himself hanging over the sofa, and across her boudoir, where two candles burned, lighting up the portraits of her parents and woman friends, and the pretty knick-knacks of her writing table, that he knew so well. He walked across her boudoir to the bedroom door, and turned back again. At each turn in his walk, especially at the parquet of the lighted dining room, he halted and said to himself, "Yes, this I must decide and put a stop to; I must express my view of it and my decision." And he turned back again. "But express what--what decision?" he said to himself in the drawing room, and he found no reply. "But after all," he asked himself before turning into the boudoir, "what has occurred? Nothing. She was talking a long while with him. But what of that? Surely women in society can talk to whom they please. And then, jealousy means lowering both myself and her," he told himself as he went into her boudoir; but this dictum, which had always had such weight with him before, had now no weight and no meaning at all. And from the bedroom door he turned back again; but as he entered the dark drawing room some inner voice told him that it was not so, and that if others noticed it that showed that there was something. And he said to himself again in the dining room, "Yes, I must decide and put a stop to it, and express my view of it..." And again at the turn in the drawing room he asked himself, "Decide how?" And again he asked himself, "What had occurred?" and answered, "Nothing," and recollected that jealousy was a feeling insulting to his wife; but again in the drawing room he was convinced that something had happened. His thoughts, like his body, went round a complete circle, without coming upon anything new. He noticed this, rubbed his forehead, and sat down in her boudoir. There, looking at her table, with the malachite blotting case lying at the top and an unfinished letter, his thoughts suddenly changed. He began to think of her, of what she was thinking and feeling. For the first time he pictured vividly to himself her personal life, her ideas, her desires, and the idea that she could and should have a separate life of her own seemed to him so alarming that he made haste to dispel it. It was the chasm which he was afraid to peep into. To put himself in thought and feeling in another person's place was a spiritual exercise not natural to Alexey Alexandrovitch. He looked on this spiritual exercise as a harmful and dangerous abuse of the fancy. "And the worst of it all," thought he, "is that just now, at the very moment when my great work is approaching completion" (he was thinking of the project he was bringing forward at the time), "when I stand in need of all my mental peace and all my energies, just now this stupid worry should fall foul of me. But what's to be done? I'm not one of those men who submit to uneasiness and worry without having the force of character to face them. "I must think it over, come to a decision, and put it out of my mind," he said aloud. "The question of her feelings, of what has passed and may be passing in her soul, that's not my affair; that's the affair of her conscience, and falls under the head of religion," he said to himself, feeling consolation in the sense that he had found to which division of regulating principles this new circumstance could be properly referred. "And so," Alexey Alexandrovitch said to himself, "questions as to her feelings, and so on, are questions for her conscience, with which I can have nothing to do. My duty is clearly defined. As the head of the family, I am a person bound in duty to guide her, and consequently, in part the person responsible; I am bound to point out the danger I perceive, to warn her, even to use my authority. I ought to speak plainly to her." And everything that he would say tonight to his wife took clear shape in Alexey Alexandrovitch's head. Thinking over what he would say, he somewhat regretted that he should have to use his time and mental powers for domestic consumption, with so little to show for it, but, in spite of that, the form and contents of the speech before him shaped itself as clearly and distinctly in his head as a ministerial report. "I must say and express fully the following points: first, exposition of the value to be attached to public opinion and to decorum; secondly, exposition of religious significance of marriage; thirdly, if need be, reference to the calamity possibly ensuing to our son; fourthly, reference to the unhappiness likely to result to herself." And, interlacing his fingers, Alexey Alexandrovitch stretched them, and the joints of the fingers cracked. This trick, a bad habit, the cracking of his fingers, always soothed him, and gave precision to his thoughts, so needful to him at this juncture. There was the sound of a carriage driving up to the front door. Alexey Alexandrovitch halted in the middle of the room. A woman's step was heard mounting the stairs. Alexey Alexandrovitch, ready for his speech, stood compressing his crossed fingers, waiting to see if the crack would not come again. One joint cracked. Already, from the sound of light steps on the stairs, he was aware that she was close, and though he was satisfied with his speech, he felt frightened of the explanation confronting him... Chapter 9 Anna came in with hanging head, playing with the tassels of her hood. Her face was brilliant and glowing; but this glow was not one of brightness; it suggested the fearful glow of a conflagration in the midst of a dark night. On seeing her husband, Anna raised her head and smiled, as though she had just waked up. "You're not in bed? What a wonder!" she said, letting fall her hood, and without stopping, she went on into the dressing room. "It's late, Alexey Alexandrovitch," she said, when she had gone through the doorway. "Anna, it's necessary for me to have a talk with you." "With me?" she said, wonderingly. She came out from behind the door of the dressing room, and looked at him. "Why, what is it? What about?" she asked, sitting down. "Well, let's talk, if it's so necessary. But it would be better to get to sleep." Anna said what came to her lips, and marveled, hearing herself, at her own capacity for lying. How simple and natural were her words, and how likely that she was simply sleepy! She felt herself clad in an impenetrable armor of falsehood. She felt that some unseen force had come to her aid and was supporting her. "Anna, I must warn you," he began. "Warn me?" she said. "Of what?" She looked at him so simply, so brightly, that anyone who did not know her as her husband knew her could not have noticed anything unnatural, either in the sound or the sense of her words. But to him, knowing her, knowing that whenever he went to bed five minutes later than usual, she noticed it, and asked him the reason; to him, knowing that every joy, every pleasure and pain that she felt she communicated to him at once; to him, now to see that she did not care to notice his state of mind, that she did not care to say a word about herself, meant a great deal. He saw that the inmost recesses of her soul, that had always hitherto lain open before him, were closed against him. More than that, he saw from her tone that she was not even perturbed at that, but as it were said straight out to him: "Yes, it's shut up, and so it must be, and will be in future." Now he experienced a feeling such as a man might have, returning home and finding his own house locked up. "But perhaps the key may yet be found," thought Alexey Alexandrovitch. "I want to warn you," he said in a low voice, "that through thoughtlessness and lack of caution you may cause yourself to be talked about in society. Your too animated conversation this evening with Count Vronsky" (he enunciated the name firmly and with deliberate emphasis) "attracted attention." He talked and looked at her laughing eyes, which frightened him now with their impenetrable look, and, as he talked, he felt all the uselessness and idleness of his words. "You're always like that," she answered, as though completely misapprehending him, and of all he had said only taking in the last phrase. "One time you don't like my being dull, and another time you don't like my being lively. I wasn't dull. Does that offend you?" Alexey Alexandrovitch shivered, and bent his hands to make the joints crack. "Oh, please, don't do that, I do so dislike it," she said. "Anna, is this you?" said Alexey Alexandrovitch, quietly making an effort over himself, and restraining the motion of his fingers. "But what is it all about?" she said, with such genuine and droll wonder. "What do you want of me?" Alexey Alexandrovitch paused, and rubbed his forehead and his eyes. He saw that instead of doing as he had intended--that is to say, warning his wife against a mistake in the eyes of the world--he had unconsciously become agitated over what was the affair of her conscience, and was struggling against the barrier he fancied between them. "This is what I meant to say to you," he went on coldly and composedly, "and I beg you to listen to it. I consider jealousy, as you know, a humiliating and degrading feeling, and I shall never allow myself to be influenced by it; but there are certain rules of decorum which cannot be disregarded with impunity. This evening it was not I observed it, but judging by the impression made on the company, everyone observed that your conduct and deportment were not altogether what could be desired." "I positively don't understand," said Anna, shrugging her shoulders--"He doesn't care," she thought. "But other people noticed it, and that's what upsets him."--"You're not well, Alexey Alexandrovitch," she added, and she got up, and would have gone towards the door; but he moved forward as though he would stop her. His face was ugly and forbidding, as Anna had never seen him. She stopped, and bending her head back and on one side, began with her rapid hand taking out her hairpins. "Well, I'm listening to what's to come," she said, calmly and ironically; "and indeed I listen with interest, for I should like to understand what's the matter." She spoke, and marveled at the confident, calm, and natural tone in which she was speaking, and the choice of the words she used. "To enter into all the details of your feelings I have no right, and besides, I regard that as useless and even harmful," began Alexey Alexandrovitch. "Ferreting in one's soul, one often ferrets out something that might have lain there unnoticed. Your feelings are an affair of your own conscience; but I am in duty bound to you, to myself, and to God, to point out to you your duties. Our life has been joined, not by man, but by God. That union can only be severed by a crime, and a crime of that nature brings its own chastisement." "I don't understand a word. And, oh dear! how sleepy I am, unluckily," she said, rapidly passing her hand through her hair, feeling for the remaining hairpins. "Anna, for God's sake don't speak like that!" he said gently. "Perhaps I am mistaken, but believe me, what I say, I say as much for myself as for you. I am your husband, and I love you." For an instant her face fell, and the mocking gleam in her eyes died away; but the word _love_ threw her into revolt again. She thought: "Love? Can he love? If he hadn't heard there was such a thing as love, he would never have used the word. He doesn't even know what love is." "Alexey Alexandrovitch, really I don't understand," she said. "Define what it is you find..." "Pardon, let me say all I have to say. I love you. But I am not speaking of myself; the most important persons in this matter are our son and yourself. It may very well be, I repeat, that my words seem to you utterly unnecessary and out of place; it may be that they are called forth by my mistaken impression. In that case, I beg you to forgive me. But if you are conscious yourself of even the smallest foundation for them, then I beg you to think a little, and if your heart prompts you, to speak out to me..." Alexey Alexandrovitch was unconsciously saying something utterly unlike what he had prepared. "I have nothing to say. And besides," she said hurriedly, with difficulty repressing a smile, "it's really time to be in bed." Alexey Alexandrovitch sighed, and, without saying more, went into the bedroom. When she came into the bedroom, he was already in bed. His lips were sternly compressed, and his eyes looked away from her. Anna got into her bed, and lay expecting every minute that he would begin to speak to her again. She both feared his speaking and wished for it. But he was silent. She waited for a long while without moving, and had forgotten about him. She thought of that other; she pictured him, and felt how her heart was flooded with emotion and guilty delight at the thought of him. Suddenly she heard an even, tranquil snore. For the first instant Alexey Alexandrovitch seemed, as it were, appalled at his own snoring, and ceased; but after an interval of two breathings the snore sounded again, with a new tranquil rhythm. "It's late, it's late," she whispered with a smile. A long while she lay, not moving, with open eyes, whose brilliance she almost fancied she could herself see in the darkness. Chapter 10 From that time a new life began for Alexey Alexandrovitch and for his wife. Nothing special happened. Anna went out into society, as she had always done, was particularly often at Princess Betsy's, and met Vronsky everywhere. Alexey Alexandrovitch saw this, but could do nothing. All his efforts to draw her into open discussion she confronted with a barrier which he could not penetrate, made up of a sort of amused perplexity. Outwardly everything was the same, but their inner relations were completely changed. Alexey Alexandrovitch, a man of great power in the world of politics, felt himself helpless in this. Like an ox with head bent, submissively he awaited the blow which he felt was lifted over him. Every time he began to think about it, he felt that he must try once more, that by kindness, tenderness, and persuasion there was still hope of saving her, of bringing her back to herself, and every day he made ready to talk to her. But every time he began talking to her, he felt that the spirit of evil and deceit, which had taken possession of her, had possession of him too, and he talked to her in a tone quite unlike that in which he had meant to talk. Involuntarily he talked to her in his habitual tone of jeering at anyone who should say what he was saying. And in that tone it was impossible to say what needed to be said to her. Chapter 11 That which for Vronsky had been almost a whole year the one absorbing desire of his life, replacing all his old desires; that which for Anna had been an impossible, terrible, and even for that reason more entrancing dream of bliss, that desire had been fulfilled. He stood before her, pale, his lower jaw quivering, and besought her to be calm, not knowing how or why. "Anna! Anna!" he said with a choking voice, "Anna, for pity's sake!..." But the louder he spoke, the lower she dropped her once proud and gay, now shame-stricken head, and she bowed down and sank from the sofa where she was sitting, down on the floor, at his feet; she would have fallen on the carpet if he had not held her. "My God! Forgive me!" she said, sobbing, pressing his hands to her bosom. She felt so sinful, so guilty, that nothing was left her but to humiliate herself and beg forgiveness; and as now there was no one in her life but him, to him she addressed her prayer for forgiveness. Looking at him, she had a physical sense of her humiliation, and she could say nothing more. He felt what a murderer must feel, when he sees the body he has robbed of life. That body, robbed by him of life, was their love, the first stage of their love. There was something awful and revolting in the memory of what had been bought at this fearful price of shame. Shame at their spiritual nakedness crushed her and infected him. But in spite of all the murderer's horror before the body of his victim, he must hack it to pieces, hide the body, must use what he has gained by his murder. And with fury, as it were with passion, the murderer falls on the body, and drags it and hacks at it; so he covered her face and shoulders with kisses. She held his hand, and did not stir. "Yes, these kisses--that is what has been bought by this shame. Yes, and one hand, which will always be mine--the hand of my accomplice." She lifted up that hand and kissed it. He sank on his knees and tried to see her face; but she hid it, and said nothing. At last, as though making an effort over herself, she got up and pushed him away. Her face was still as beautiful, but it was only the more pitiful for that. "All is over," she said; "I have nothing but you. Remember that." "I can never forget what is my whole life. For one instant of this happiness..." "Happiness!" she said with horror and loathing and her horror unconsciously infected him. "For pity's sake, not a word, not a word more." She rose quickly and moved away from him. "Not a word more," she repeated, and with a look of chill despair, incomprehensible to him, she parted from him. She felt that at that moment she could not put into words the sense of shame, of rapture, and of horror at this stepping into a new life, and she did not want to speak of it, to vulgarize this feeling by inappropriate words. But later too, and the next day and the third day, she still found no words in which she could express the complexity of her feelings; indeed, she could not even find thoughts in which she could clearly think out all that was in her soul. She said to herself: "No, just now I can't think of it, later on, when I am calmer." But this calm for thought never came; every time the thought rose of what she had done and what would happen to her, and what she ought to do, a horror came over her and she drove those thoughts away. "Later, later," she said--"when I am calmer." But in dreams, when she had no control over her thoughts, her position presented itself to her in all its hideous nakedness. One dream haunted her almost every night. She dreamed that both were her husbands at once, that both were lavishing caresses on her. Alexey Alexandrovitch was weeping, kissing her hands, and saying, "How happy we are now!" And Alexey Vronsky was there too, and he too was her husband. And she was marveling that it had once seemed impossible to her, was explaining to them, laughing, that this was ever so much simpler, and that now both of them were happy and contented. But this dream weighed on her like a nightmare, and she awoke from it in terror. Chapter 12 In the early days after his return from Moscow, whenever Levin shuddered and grew red, remembering the disgrace of his rejection, he said to himself: "This was just how I used to shudder and blush, thinking myself utterly lost, when I was plucked in physics and did not get my remove; and how I thought myself utterly ruined after I had mismanaged that affair of my sister's that was entrusted to me. And yet, now that years have passed, I recall it and wonder that it could distress me so much. It will be the same thing too with this trouble. Time will go by and I shall not mind about this either." But three months had passed and he had not left off minding about it; and it was as painful for him to think of it as it had been those first days. He could not be at peace because after dreaming so long of family life, and feeling himself so ripe for it, he was still not married, and was further than ever from marriage. He was painfully conscious himself, as were all about him, that at his years it is not well for man to be alone. He remembered how before starting for Moscow he had once said to his cowman Nikolay, a simple-hearted peasant, whom he liked talking to: "Well, Nikolay! I mean to get married," and how Nikolay had promptly answered, as of a matter on which there could be no possible doubt: "And high time too, Konstantin Demitrievitch." But marriage had now become further off than ever. The place was taken, and whenever he tried to imagine any of the girls he knew in that place, he felt that it was utterly impossible. Moreover, the recollection of the rejection and the part he had played in the affair tortured him with shame. However often he told himself that he was in no wise to blame in it, that recollection, like other humiliating reminiscences of a similar kind, made him twinge and blush. There had been in his past, as in every man's, actions, recognized by him as bad, for which his conscience ought to have tormented him; but the memory of these evil actions was far from causing him so much suffering as those trivial but humiliating reminiscences. These wounds never healed. And with these memories was now ranged his rejection and the pitiful position in which he must have appeared to others that evening. But time and work did their part. Bitter memories were more and more covered up by the incidents--paltry in his eyes, but really important--of his country life. Every week he thought less often of Kitty. He was impatiently looking forward to the news that she was married, or just going to be married, hoping that such news would, like having a tooth out, completely cure him. Meanwhile spring came on, beautiful and kindly, without the delays and treacheries of spring,--one of those rare springs in which plants, beasts, and man rejoice alike. This lovely spring roused Levin still more, and strengthened him in his resolution of renouncing all his past and building up his lonely life firmly and independently. Though many of the plans with which he had returned to the country had not been carried out, still his most important resolution--that of purity--had been kept by him. He was free from that shame, which had usually harassed him after a fall; and he could look everyone straight in the face. In February he had received a letter from Marya Nikolaevna telling him that his brother Nikolay's health was getting worse, but that he would not take advice, and in consequence of this letter Levin went to Moscow to his brother's and succeeded in persuading him to see a doctor and to go to a watering-place abroad. He succeeded so well in persuading his brother, and in lending him money for the journey without irritating him, that he was satisfied with himself in that matter. In addition to his farming, which called for special attention in spring, and in addition to reading, Levin had begun that winter a work on agriculture, the plan of which turned on taking into account the character of the laborer on the land as one of the unalterable data of the question, like the climate and the soil, and consequently deducing all the principles of scientific culture, not simply from the data of soil and climate, but from the data of soil, climate, and a certain unalterable character of the laborer. Thus, in spite of his solitude, or in consequence of his solitude, his life was exceedingly full. Only rarely he suffered from an unsatisfied desire to communicate his stray ideas to someone besides Agafea Mihalovna. With her indeed he not infrequently fell into discussion upon physics, the theory of agriculture, and especially philosophy; philosophy was Agafea Mihalovna's favorite subject. Spring was slow in unfolding. For the last few weeks it had been steadily fine frosty weather. In the daytime it thawed in the sun, but at night there were even seven degrees of frost. There was such a frozen surface on the snow that they drove the wagons anywhere off the roads. Easter came in the snow. Then all of a sudden, on Easter Monday, a warm wind sprang up, storm clouds swooped down, and for three days and three nights the warm, driving rain fell in streams. On Thursday the wind dropped, and a thick gray fog brooded over the land as though hiding the mysteries of the transformations that were being wrought in nature. Behind the fog there was the flowing of water, the cracking and floating of ice, the swift rush of turbid, foaming torrents; and on the following Monday, in the evening, the fog parted, the storm clouds split up into little curling crests of cloud, the sky cleared, and the real spring had come. In the morning the sun rose brilliant and quickly wore away the thin layer of ice that covered the water, and all the warm air was quivering with the steam that rose up from the quickened earth. The old grass looked greener, and the young grass thrust up its tiny blades; the buds of the guelder-rose and of the currant and the sticky birch-buds were swollen with sap, and an exploring bee was humming about the golden blossoms that studded the willow. Larks trilled unseen above the velvety green fields and the ice-covered stubble-land; peewits wailed over the low lands and marshes flooded by the pools; cranes and wild geese flew high across the sky uttering their spring calls. The cattle, bald in patches where the new hair had not grown yet, lowed in the pastures; the bowlegged lambs frisked round their bleating mothers. Nimble children ran about the drying paths, covered with the prints of bare feet. There was a merry chatter of peasant women over their linen at the pond, and the ring of axes in the yard, where the peasants were repairing ploughs and harrows. The real spring had come. Chapter 13 Levin put on his big boots, and, for the first time, a cloth jacket, instead of his fur cloak, and went out to look after his farm, stepping over streams of water that flashed in the sunshine and dazzled his eyes, and treading one minute on ice and the next into sticky mud. Spring is the time of plans and projects. And, as he came out into the farmyard, Levin, like a tree in spring that knows not what form will be taken by the young shoots and twigs imprisoned in its swelling buds, hardly knew what undertakings he was going to begin upon now in the farm work that was so dear to him. But he felt that he was full of the most splendid plans and projects. First of all he went to the cattle. The cows had been let out into their paddock, and their smooth sides were already shining with their new, sleek, spring coats; they basked in the sunshine and lowed to go to the meadow. Levin gazed admiringly at the cows he knew so intimately to the minutest detail of their condition, and gave orders for them to be driven out into the meadow, and the calves to be let into the paddock. The herdsman ran gaily to get ready for the meadow. The cowherd girls, picking up their petticoats, ran splashing through the mud with bare legs, still white, not yet brown from the sun, waving brush wood in their hands, chasing the calves that frolicked in the mirth of spring. After admiring the young ones of that year, who were particularly fine--the early calves were the size of a peasant's cow, and Pava's daughter, at three months old, was as big as a yearling--Levin gave orders for a trough to be brought out and for them to be fed in the paddock. But it appeared that as the paddock had not been used during the winter, the hurdles made in the autumn for it were broken. He sent for the carpenter, who, according to his orders, ought to have been at work at the thrashing machine. But it appeared that the carpenter was repairing the harrows, which ought to have been repaired before Lent. This was very annoying to Levin. It was annoying to come upon that everlasting slovenliness in the farm work against which he had been striving with all his might for so many years. The hurdles, as he ascertained, being not wanted in winter, had been carried to the cart-horses' stable; and there broken, as they were of light construction, only meant for feeding calves. Moreover, it was apparent also that the harrows and all the agricultural implements, which he had directed to be looked over and repaired in the winter, for which very purpose he had hired three carpenters, had not been put into repair, and the harrows were being repaired when they ought to have been harrowing the field. Levin sent for his bailiff, but immediately went off himself to look for him. The bailiff, beaming all over, like everyone that day, in a sheepskin bordered with astrachan, came out of the barn, twisting a bit of straw in his hands. "Why isn't the carpenter at the thrashing machine?" "Oh, I meant to tell you yesterday, the harrows want repairing. Here it's time they got to work in the fields." "But what were they doing in the winter, then?" "But what did you want the carpenter for?" "Where are the hurdles for the calves' paddock?" "I ordered them to be got ready. What would you have with those peasants!" said the bailiff, with a wave of his hand. "It's not those peasants but this bailiff!" said Levin, getting angry. "Why, what do I keep you for?" he cried. But, bethinking himself that this would not help matters, he stopped short in the middle of a sentence, and merely sighed. "Well, what do you say? Can sowing begin?" he asked, after a pause. "Behind Turkin tomorrow or the next day they might begin." "And the clover?" "I've sent Vassily and Mishka; they're sowing. Only I don't know if they'll manage to get through; it's so slushy." "How many acres?" "About fifteen." "Why not sow all?" cried Levin. That they were only sowing the clover on fifteen acres, not on all the forty-five, was still more annoying to him. Clover, as he knew, both from books and from his own experience, never did well except when it was sown as early as possible, almost in the snow. And yet Levin could never get this done. "There's no one to send. What would you have with such a set of peasants? Three haven't turned up. And there's Semyon..." "Well, you should have taken some men from the thatching." "And so I have, as it is." "Where are the peasants, then?" "Five are making compote" (which meant compost), "four are shifting the oats for fear of a touch of mildew, Konstantin Dmitrievitch." Levin knew very well that "a touch of mildew" meant that his English seed oats were already ruined. Again they had not done as he had ordered. "Why, but I told you during Lent to put in pipes," he cried. "Don't put yourself out; we shall get it all done in time." Levin waved his hand angrily, went into the granary to glance at the oats, and then to the stable. The oats were not yet spoiled. But the peasants were carrying the oats in spades when they might simply let them slide down into the lower granary; and arranging for this to be done, and taking two workmen from there for sowing clover, Levin got over his vexation with the bailiff. Indeed, it was such a lovely day that one could not be angry. "Ignat!" he called to the coachman, who, with his sleeves tucked up, was washing the carriage wheels, "saddle me..." "Which, sir?" "Well, let it be Kolpik." "Yes, sir." While they were saddling his horse, Levin again called up the bailiff, who was hanging about in sight, to make it up with him, and began talking to him about the spring operations before them, and his plans for the farm. The wagons were to begin carting manure earlier, so as to get all done before the early mowing. And the ploughing of the further land to go on without a break so as to let it ripen lying fallow. And the mowing to be all done by hired labor, not on half-profits. The bailiff listened attentively, and obviously made an effort to approve of his employer's projects. But still he had that look Levin knew so well that always irritated him, a look of hopelessness and despondency. That look said: "That's all very well, but as God wills." Nothing mortified Levin so much as that tone. But it was the tone common to all the bailiffs he had ever had. They had all taken up that attitude to his plans, and so now he was not angered by it, but mortified, and felt all the more roused to struggle against this, as it seemed, elemental force continually ranged against him, for which he could find no other expression than "as God wills." "If we can manage it, Konstantin Dmitrievitch," said the bailiff. "Why ever shouldn't you manage it?" "We positively must have another fifteen laborers. And they don't turn up. There were some here today asking seventy roubles for the summer." Levin was silent. Again he was brought face to face with that opposing force. He knew that however much they tried, they could not hire more than forty--thirty-seven perhaps or thirty-eight--laborers for a reasonable sum. Some forty had been taken on, and there were no more. But still he could not help struggling against it. "Send to Sury, to Tchefirovka; if they don't come we must look for them." "Oh, I'll send, to be sure," said Vassily Fedorovitch despondently. "But there are the horses, too, they're not good for much." "We'll get some more. I know, of course," Levin added laughing, "you always want to do with as little and as poor quality as possible; but this year I'm not going to let you have things your own way. I'll see to everything myself." "Why, I don't think you take much rest as it is. It cheers us up to work under the master's eye..." "So they're sowing clover behind the Birch Dale? I'll go and have a look at them," he said, getting on to the little bay cob, Kolpik, who was led up by the coachman. "You can't get across the streams, Konstantin Dmitrievitch," the coachman shouted. "All right, I'll go by the forest." And Levin rode through the slush of the farmyard to the gate and out into the open country, his good little horse, after his long inactivity, stepping out gallantly, snorting over the pools, and asking, as it were, for guidance. If Levin had felt happy before in the cattle pens and farmyard, he felt happier yet in the open country. Swaying rhythmically with the ambling paces of his good little cob, drinking in the warm yet fresh scent of the snow and the air, as he rode through his forest over the crumbling, wasted snow, still left in parts, and covered with dissolving tracks, he rejoiced over every tree, with the moss reviving on its bark and the buds swelling on its shoots. When he came out of the forest, in the immense plain before him, his grass fields stretched in an unbroken carpet of green, without one bare place or swamp, only spotted here and there in the hollows with patches of melting snow. He was not put out of temper even by the sight of the peasants' horses and colts trampling down his young grass (he told a peasant he met to drive them out), nor by the sarcastic and stupid reply of the peasant Ipat, whom he met on the way, and asked, "Well, Ipat, shall we soon be sowing?" "We must get the ploughing done first, Konstantin Dmitrievitch," answered Ipat. The further he rode, the happier he became, and plans for the land rose to his mind each better than the last; to plant all his fields with hedges along the southern borders, so that the snow should not lie under them; to divide them up into six fields of arable and three of pasture and hay; to build a cattle yard at the further end of the estate, and to dig a pond and to construct movable pens for the cattle as a means of manuring the land. And then eight hundred acres of wheat, three hundred of potatoes, and four hundred of clover, and not one acre exhausted. Absorbed in such dreams, carefully keeping his horse by the hedges, so as not to trample his young crops, he rode up to the laborers who had been sent to sow clover. A cart with the seed in it was standing, not at the edge, but in the middle of the crop, and the winter corn had been torn up by the wheels and trampled by the horse. Both the laborers were sitting in the hedge, probably smoking a pipe together. The earth in the cart, with which the seed was mixed, was not crushed to powder, but crusted together or adhering in clods. Seeing the master, the laborer, Vassily, went towards the cart, while Mishka set to work sowing. This was not as it should be, but with the laborers Levin seldom lost his temper. When Vassily came up, Levin told him to lead the horse to the hedge. "It's all right, sir, it'll spring up again," responded Vassily. "Please don't argue," said Levin, "but do as you're told." "Yes, sir," answered Vassily, and he took the horse's head. "What a sowing, Konstantin Dmitrievitch," he said, hesitating; "first rate. Only it's a work to get about! You drag a ton of earth on your shoes." "Why is it you have earth that's not sifted?" said Levin. "Well, we crumble it up," answered Vassily, taking up some seed and rolling the earth in his palms. Vassily was not to blame for their having filled up his cart with unsifted earth, but still it was annoying. Levin had more than once already tried a way he knew for stifling his anger, and turning all that seemed dark right again, and he tried that way now. He watched how Mishka strode along, swinging the huge clods of earth that clung to each foot; and getting off his horse, he took the sieve from Vassily and started sowing himself. "Where did you stop?" Vassily pointed to the mark with his foot, and Levin went forward as best he could, scattering the seed on the land. Walking was as difficult as on a bog, and by the time Levin had ended the row he was in a great heat, and he stopped and gave up the sieve to Vassily. "Well, master, when summer's here, mind you don't scold me for these rows," said Vassily. "Eh?" said Levin cheerily, already feeling the effect of his method. "Why, you'll see in the summer time. It'll look different. Look you where I sowed last spring. How I did work at it! I do my best, Konstantin Dmitrievitch, d'ye see, as I would for my own father. I don't like bad work myself, nor would I let another man do it. What's good for the master's good for us too. To look out yonder now," said Vassily, pointing, "it does one's heart good." "It's a lovely spring, Vassily." "Why, it's a spring such as the old men don't remember the like of. I was up home; an old man up there has sown wheat too, about an acre of it. He was saying you wouldn't know it from rye." "Have you been sowing wheat long?" "Why, sir, it was you taught us the year before last. You gave me two measures. We sold about eight bushels and sowed a rood." "Well, mind you crumble up the clods," said Levin, going towards his horse, "and keep an eye on Mishka. And if there's a good crop you shall have half a rouble for every acre." "Humbly thankful. We are very well content, sir, as it is." Levin got on his horse and rode towards the field where was last year's clover, and the one which was ploughed ready for the spring corn. The crop of clover coming up in the stubble was magnificent. It had survived everything, and stood up vividly green through the broken stalks of last year's wheat. The horse sank in up to the pasterns, and he drew each hoof with a sucking sound out of the half-thawed ground. Over the ploughland riding was utterly impossible; the horse could only keep a foothold where there was ice, and in the thawing furrows he sank deep in at each step. The ploughland was in splendid condition; in a couple of days it would be fit for harrowing and sowing. Everything was capital, everything was cheering. Levin rode back across the streams, hoping the water would have gone down. And he did in fact get across, and startled two ducks. "There must be snipe too," he thought, and just as he reached the turning homewards he met the forest keeper, who confirmed his theory about the snipe. Levin went home at a trot, so as to have time to eat his dinner and get his gun ready for the evening. Chapter 14 As he rode up to the house in the happiest frame of mind, Levin heard the bell ring at the side of the principal entrance of the house. "Yes, that's someone from the railway station," he thought, "just the time to be here from the Moscow train ... Who could it be? What if it's brother Nikolay? He did say: 'Maybe I'll go to the waters, or maybe I'll come down to you.'" He felt dismayed and vexed for the first minute, that his brother Nikolay's presence should come to disturb his happy mood of spring. But he felt ashamed of the feeling, and at once he opened, as it were, the arms of his soul, and with a softened feeling of joy and expectation, now he hoped with all his heart that it was his brother. He pricked up his horse, and riding out from behind the acacias he saw a hired three-horse sledge from the railway station, and a gentleman in a fur coat. It was not his brother. "Oh, if it were only some nice person one could talk to a little!" he thought. "Ah," cried Levin joyfully, flinging up both his hands. "Here's a delightful visitor! Ah, how glad I am to see you!" he shouted, recognizing Stepan Arkadyevitch. "I shall find out for certain whether she's married, or when she's going to be married," he thought. And on that delicious spring day he felt that the thought of her did not hurt him at all. "Well, you didn't expect me, eh?" said Stepan Arkadyevitch, getting out of the sledge, splashed with mud on the bridge of his nose, on his cheek, and on his eyebrows, but radiant with health and good spirits. "I've come to see you in the first place," he said, embracing and kissing him, "to have some stand-shooting second, and to sell the forest at Ergushovo third." "Delightful! What a spring we're having! How ever did you get along in a sledge?" "In a cart it would have been worse still, Konstantin Dmitrievitch," answered the driver, who knew him. "Well, I'm very, very glad to see you," said Levin, with a genuine smile of childlike delight. Levin led his friend to the room set apart for visitors, where Stepan Arkadyevitch's things were carried also--a bag, a gun in a case, a satchel for cigars. Leaving him there to wash and change his clothes, Levin went off to the counting house to speak about the ploughing and clover. Agafea Mihalovna, always very anxious for the credit of the house, met him in the hall with inquiries about dinner. "Do just as you like, only let it be as soon as possible," he said, and went to the bailiff. When he came back, Stepan Arkadyevitch, washed and combed, came out of his room with a beaming smile, and they went upstairs together. "Well, I am glad I managed to get away to you! Now I shall understand what the mysterious business is that you are always absorbed in here. No, really, I envy you. What a house, how nice it all is! So bright, so cheerful!" said Stepan Arkadyevitch, forgetting that it was not always spring and fine weather like that day. "And your nurse is simply charming! A pretty maid in an apron might be even more agreeable, perhaps; but for your severe monastic style it does very well." Stepan Arkadyevitch told him many interesting pieces of news; especially interesting to Levin was the news that his brother, Sergey Ivanovitch, was intending to pay him a visit in the summer. Not one word did Stepan Arkadyevitch say in reference to Kitty and the Shtcherbatskys; he merely gave him greetings from his wife. Levin was grateful to him for his delicacy and was very glad of his visitor. As always happened with him during his solitude, a mass of ideas and feelings had been accumulating within him, which he could not communicate to those about him. And now he poured out upon Stepan Arkadyevitch his poetic joy in the spring, and his failures and plans for the land, and his thoughts and criticisms on the books he had been reading, and the idea of his own book, the basis of which really was, though he was unaware of it himself, a criticism of all the old books on agriculture. Stepan Arkadyevitch, always charming, understanding everything at the slightest reference, was particularly charming on this visit, and Levin noticed in him a special tenderness, as it were, and a new tone of respect that flattered him. The efforts of Agafea Mihalovna and the cook, that the dinner should be particularly good, only ended in the two famished friends attacking the preliminary course, eating a great deal of bread and butter, salt goose and salted mushrooms, and in Levin's finally ordering the soup to be served without the accompaniment of little pies, with which the cook had particularly meant to impress their visitor. But though Stepan Arkadyevitch was accustomed to very different dinners, he thought everything excellent: the herb brandy, and the bread, and the butter, and above all the salt goose and the mushrooms, and the nettle soup, and the chicken in white sauce, and the white Crimean wine--everything was superb and delicious. "Splendid, splendid!" he said, lighting a fat cigar after the roast. "I feel as if, coming to you, I had landed on a peaceful shore after the noise and jolting of a steamer. And so you maintain that the laborer himself is an element to be studied and to regulate the choice of methods in agriculture. Of course, I'm an ignorant outsider; but I should fancy theory and its application will have its influence on the laborer too." "Yes, but wait a bit. I'm not talking of political economy, I'm talking of the science of agriculture. It ought to be like the natural sciences, and to observe given phenomena and the laborer in his economic, ethnographical..." At that instant Agafea Mihalovna came in with jam. "Oh, Agafea Mihalovna," said Stepan Arkadyevitch, kissing the tips of his plump fingers, "what salt goose, what herb brandy!... What do you think, isn't it time to start, Kostya?" he added. Levin looked out of the window at the sun sinking behind the bare tree-tops of the forest. "Yes, it's time," he said. "Kouzma, get ready the trap," and he ran downstairs. Stepan Arkadyevitch, going down, carefully took the canvas cover off his varnished gun case with his own hands, and opening it, began to get ready his expensive new-fashioned gun. Kouzma, who already scented a big tip, never left Stepan Arkadyevitch's side, and put on him both his stockings and boots, a task which Stepan Arkadyevitch readily left him. "Kostya, give orders that if the merchant Ryabinin comes ... I told him to come today, he's to be brought in and to wait for me..." "Why, do you mean to say you're selling the forest to Ryabinin?" "Yes. Do you know him?" "To be sure I do. I have had to do business with him, 'positively and conclusively.'" Stepan Arkadyevitch laughed. "Positively and conclusively" were the merchant's favorite words. "Yes, it's wonderfully funny the way he talks. She knows where her master's going!" he added, patting Laska, who hung about Levin, whining and licking his hands, his boots, and his gun. The trap was already at the steps when they went out. "I told them to bring the trap round; or would you rather walk?" "No, we'd better drive," said Stepan Arkadyevitch, getting into the trap. He sat down, tucked the tiger-skin rug round him, and lighted a cigar. "How is it you don't smoke? A cigar is a sort of thing, not exactly a pleasure, but the crown and outward sign of pleasure. Come, this is life! How splendid it is! This is how I should like to live!" "Why, who prevents you?" said Levin, smiling. "No, you're a lucky man! You've got everything you like. You like horses--and you have them; dogs--you have them; shooting--you have it; farming--you have it." "Perhaps because I rejoice in what I have, and don't fret for what I haven't," said Levin, thinking of Kitty. Stepan Arkadyevitch comprehended, looked at him, but said nothing. Levin was grateful to Oblonsky for noticing, with his never-failing tact, that he dreaded conversation about the Shtcherbatskys, and so saying nothing about them. But now Levin was longing to find out what was tormenting him so, yet he had not the courage to begin. "Come, tell me how things are going with you," said Levin, bethinking himself that it was not nice of him to think only of himself. Stepan Arkadyevitch's eyes sparkled merrily. "You don't admit, I know, that one can be fond of new rolls when one has had one's rations of bread--to your mind it's a crime; but I don't count life as life without love," he said, taking Levin's question his own way. "What am I to do? I'm made that way. And really, one does so little harm to anyone, and gives oneself so much pleasure..." "What! is there something new, then?" queried Levin. "Yes, my boy, there is! There, do you see, you know the type of Ossian's women.... Women, such as one sees in dreams.... Well, these women are sometimes to be met in reality ... and these women are terrible. Woman, don't you know, is such a subject that however much you study it, it's always perfectly new." "Well, then, it would be better not to study it." "No. Some mathematician has said that enjoyment lies in the search for truth, not in the finding it." Levin listened in silence, and in spite of all the efforts he made, he could not in the least enter into the feelings of his friend and understand his sentiments and the charm of studying such women. Chapter 15 The place fixed on for the stand-shooting was not far above a stream in a little aspen copse. On reaching the copse, Levin got out of the trap and led Oblonsky to a corner of a mossy, swampy glade, already quite free from snow. He went back himself to a double birch tree on the other side, and leaning his gun on the fork of a dead lower branch, he took off his full overcoat, fastened his belt again, and worked his arms to see if they were free. Gray old Laska, who had followed them, sat down warily opposite him and pricked up her ears. The sun was setting behind a thick forest, and in the glow of sunset the birch trees, dotted about in the aspen copse, stood out clearly with their hanging twigs, and their buds swollen almost to bursting. From the thickest parts of the copse, where the snow still remained, came the faint sound of narrow winding threads of water running away. Tiny birds twittered, and now and then fluttered from tree to tree. In the pauses of complete stillness there came the rustle of last year's leaves, stirred by the thawing of the earth and the growth of the grass. "Imagine! One can hear and see the grass growing!" Levin said to himself, noticing a wet, slate-colored aspen leaf moving beside a blade of young grass. He stood, listened, and gazed sometimes down at the wet mossy ground, sometimes at Laska listening all alert, sometimes at the sea of bare tree tops that stretched on the slope below him, sometimes at the darkening sky, covered with white streaks of cloud. A hawk flew high over a forest far away with slow sweep of its wings; another flew with exactly the same motion in the same direction and vanished. The birds twittered more and more loudly and busily in the thicket. An owl hooted not far off, and Laska, starting, stepped cautiously a few steps forward, and putting her head on one side, began to listen intently. Beyond the stream was heard the cuckoo. Twice she uttered her usual cuckoo call, and then gave a hoarse, hurried call and broke down. "Imagine! the cuckoo already!" said Stepan Arkadyevitch, coming out from behind a bush. "Yes, I hear it," answered Levin, reluctantly breaking the stillness with his voice, which sounded disagreeable to himself. "Now it's coming!" Stepan Arkadyevitch's figure again went behind the bush, and Levin saw nothing but the bright flash of a match, followed by the red glow and blue smoke of a cigarette. "Tchk! tchk!" came the snapping sound of Stepan Arkadyevitch cocking his gun. "What's that cry?" asked Oblonsky, drawing Levin's attention to a prolonged cry, as though a colt were whinnying in a high voice, in play. "Oh, don't you know it? That's the hare. But enough talking! Listen, it's flying!" almost shrieked Levin, cocking his gun. They heard a shrill whistle in the distance, and in the exact time, so well known to the sportsman, two seconds later--another, a third, and after the third whistle the hoarse, guttural cry could be heard. Levin looked about him to right and to left, and there, just facing him against the dusky blue sky above the confused mass of tender shoots of the aspens, he saw the flying bird. It was flying straight towards him; the guttural cry, like the even tearing of some strong stuff, sounded close to his ear; the long beak and neck of the bird could be seen, and at the very instant when Levin was taking aim, behind the bush where Oblonsky stood, there was a flash of red lightning: the bird dropped like an arrow, and darted upwards again. Again came the red flash and the sound of a blow, and fluttering its wings as though trying to keep up in the air, the bird halted, stopped still an instant, and fell with a heavy splash on the slushy ground. "Can I have missed it?" shouted Stepan Arkadyevitch, who could not see for the smoke. "Here it is!" said Levin, pointing to Laska, who with one ear raised, wagging the end of her shaggy tail, came slowly back as though she would prolong the pleasure, and as it were smiling, brought the dead bird to her master. "Well, I'm glad you were successful," said Levin, who, at the same time, had a sense of envy that he had not succeeded in shooting the snipe. "It was a bad shot from the right barrel," responded Stepan Arkadyevitch, loading his gun. "Sh... it's flying!" The shrill whistles rapidly following one another were heard again. Two snipe, playing and chasing one another, and only whistling, not crying, flew straight at the very heads of the sportsmen. There was the report of four shots, and like swallows the snipe turned swift somersaults in the air and vanished from sight. The stand-shooting was capital. Stepan Arkadyevitch shot two more birds and Levin two, of which one was not found. It began to get dark. Venus, bright and silvery, shone with her soft light low down in the west behind the birch trees, and high up in the east twinkled the red lights of Arcturus. Over his head Levin made out the stars of the Great Bear and lost them again. The snipe had ceased flying; but Levin resolved to stay a little longer, till Venus, which he saw below a branch of birch, should be above it, and the stars of the Great Bear should be perfectly plain. Venus had risen above the branch, and the ear of the Great Bear with its shaft was now all plainly visible against the dark blue sky, yet still he waited. "Isn't it time to go home?" said Stepan Arkadyevitch. It was quite still now in the copse, and not a bird was stirring. "Let's stay a little while," answered Levin. "As you like." They were standing now about fifteen paces from one another. "Stiva!" said Levin unexpectedly; "how is it you don't tell me whether your sister-in-law's married yet, or when she's going to be?" Levin felt so resolute and serene that no answer, he fancied, could affect him. But he had never dreamed of what Stepan Arkadyevitch replied. "She's never thought of being married, and isn't thinking of it; but she's very ill, and the doctors have sent her abroad. They're positively afraid she may not live." "What!" cried Levin. "Very ill? What is wrong with her? How has she...?" While they were saying this, Laska, with ears pricked up, was looking upwards at the sky, and reproachfully at them. "They have chosen a time to talk," she was thinking. "It's on the wing.... Here it is, yes, it is. They'll miss it," thought Laska. But at that very instant both suddenly heard a shrill whistle which, as it were, smote on their ears, and both suddenly seized their guns and two flashes gleamed, and two bangs sounded at the very same instant. The snipe flying high above instantly folded its wings and fell into a thicket, bending down the delicate shoots. "Splendid! Together!" cried Levin, and he ran with Laska into the thicket to look for the snipe. "Oh, yes, what was it that was unpleasant?" he wondered. "Yes, Kitty's ill.... Well, it can't be helped; I'm very sorry," he thought. "She's found it! Isn't she a clever thing?" he said, taking the warm bird from Laska's mouth and packing it into the almost full game bag. "I've got it, Stiva!" he shouted. Chapter 16 On the way home Levin asked all details of Kitty's illness and the Shtcherbatskys' plans, and though he would have been ashamed to admit it, he was pleased at what he heard. He was pleased that there was still hope, and still more pleased that she should be suffering who had made him suffer so much. But when Stepan Arkadyevitch began to speak of the causes of Kitty's illness, and mentioned Vronsky's name, Levin cut him short. "I have no right whatever to know family matters, and, to tell the truth, no interest in them either." Stepan Arkadyevitch smiled hardly perceptibly, catching the instantaneous change he knew so well in Levin's face, which had become as gloomy as it had been bright a minute before. "Have you quite settled about the forest with Ryabinin?" asked Levin. "Yes, it's settled. The price is magnificent; thirty-eight thousand. Eight straight away, and the rest in six years. I've been bothering about it for ever so long. No one would give more." "Then you've as good as given away your forest for nothing," said Levin gloomily. "How do you mean for nothing?" said Stepan Arkadyevitch with a good-humored smile, knowing that nothing would be right in Levin's eyes now. "Because the forest is worth at least a hundred and fifty roubles the acre," answered Levin. "Oh, these farmers!" said Stepan Arkadyevitch playfully. "Your tone of contempt for us poor townsfolk!... But when it comes to business, we do it better than anyone. I assure you I have reckoned it all out," he said, "and the forest is fetching a very good price--so much so that I'm afraid of this fellow's crying off, in fact. You know it's not 'timber,'" said Stepan Arkadyevitch, hoping by this distinction to convince Levin completely of the unfairness of his doubts. "And it won't run to more than twenty-five yards of fagots per acre, and he's giving me at the rate of seventy roubles the acre." Levin smiled contemptuously. "I know," he thought, "that fashion not only in him, but in all city people, who, after being twice in ten years in the country, pick up two or three phrases and use them in season and out of season, firmly persuaded that they know all about it. '_Timber, run to so many yards the acre._' He says those words without understanding them himself." "I wouldn't attempt to teach you what you write about in your office," said he, "and if need arose, I should come to you to ask about it. But you're so positive you know all the lore of the forest. It's difficult. Have you counted the trees?" "How count the trees?" said Stepan Arkadyevitch, laughing, still trying to draw his friend out of his ill-temper. "Count the sands of the sea, number the stars. Some higher power might do it." "Oh, well, the higher power of Ryabinin can. Not a single merchant ever buys a forest without counting the trees, unless they get it given them for nothing, as you're doing now. I know your forest. I go there every year shooting, and your forest's worth a hundred and fifty roubles an acre paid down, while he's giving you sixty by installments. So that in fact you're making him a present of thirty thousand." "Come, don't let your imagination run away with you," said Stepan Arkadyevitch piteously. "Why was it none would give it, then?" "Why, because he has an understanding with the merchants; he's bought them off. I've had to do with all of them; I know them. They're not merchants, you know: they're speculators. He wouldn't look at a bargain that gave him ten, fifteen per cent profit, but holds back to buy a rouble's worth for twenty kopecks." "Well, enough of it! You're out of temper." "Not the least," said Levin gloomily, as they drove up to the house. At the steps there stood a trap tightly covered with iron and leather, with a sleek horse tightly harnessed with broad collar-straps. In the trap sat the chubby, tightly belted clerk who served Ryabinin as coachman. Ryabinin himself was already in the house, and met the friends in the hall. Ryabinin was a tall, thinnish, middle-aged man, with mustache and a projecting clean-shaven chin, and prominent muddy-looking eyes. He was dressed in a long-skirted blue coat, with buttons below the waist at the back, and wore high boots wrinkled over the ankles and straight over the calf, with big galoshes drawn over them. He rubbed his face with his handkerchief, and wrapping round him his coat, which sat extremely well as it was, he greeted them with a smile, holding out his hand to Stepan Arkadyevitch, as though he wanted to catch something. "So here you are," said Stepan Arkadyevitch, giving him his hand. "That's capital." "I did not venture to disregard your excellency's commands, though the road was extremely bad. I positively walked the whole way, but I am here at my time. Konstantin Dmitrievitch, my respects"; he turned to Levin, trying to seize his hand too. But Levin, scowling, made as though he did not notice his hand, and took out the snipe. "Your honors have been diverting yourselves with the chase? What kind of bird may it be, pray?" added Ryabinin, looking contemptuously at the snipe: "a great delicacy, I suppose." And he shook his head disapprovingly, as though he had grave doubts whether this game were worth the candle. "Would you like to go into my study?" Levin said in French to Stepan Arkadyevitch, scowling morosely. "Go into my study; you can talk there." "Quite so, where you please," said Ryabinin with contemptuous dignity, as though wishing to make it felt that others might be in difficulties as to how to behave, but that he could never be in any difficulty about anything. On entering the study Ryabinin looked about, as his habit was, as though seeking the holy picture, but when he had found it, he did not cross himself. He scanned the bookcases and bookshelves, and with the same dubious air with which he had regarded the snipe, he smiled contemptuously and shook his head disapprovingly, as though by no means willing to allow that this game were worth the candle. "Well, have you brought the money?" asked Oblonsky. "Sit down." "Oh, don't trouble about the money. I've come to see you to talk it over." "What is there to talk over? But do sit down." "I don't mind if I do," said Ryabinin, sitting down and leaning his elbows on the back of his chair in a position of the intensest discomfort to himself. "You must knock it down a bit, prince. It would be too bad. The money is ready conclusively to the last farthing. As to paying the money down, there'll be no hitch there." Levin, who had meanwhile been putting his gun away in the cupboard, was just going out of the door, but catching the merchant's words, he stopped. "Why, you've got the forest for nothing as it is," he said. "He came to me too late, or I'd have fixed the price for him." Ryabinin got up, and in silence, with a smile, he looked Levin down and up. "Very close about money is Konstantin Dmitrievitch," he said with a smile, turning to Stepan Arkadyevitch; "there's positively no dealing with him. I was bargaining for some wheat of him, and a pretty price I offered too." "Why should I give you my goods for nothing? I didn't pick it up on the ground, nor steal it either." "Mercy on us! nowadays there's no chance at all of stealing. With the open courts and everything done in style, nowadays there's no question of stealing. We are just talking things over like gentlemen. His excellency's asking too much for the forest. I can't make both ends meet over it. I must ask for a little concession." "But is the thing settled between you or not? If it's settled, it's useless haggling; but if it's not," said Levin, "I'll buy the forest." The smile vanished at once from Ryabinin's face. A hawklike, greedy, cruel expression was left upon it. With rapid, bony fingers he unbuttoned his coat, revealing a shirt, bronze waistcoat buttons, and a watch chain, and quickly pulled out a fat old pocketbook. "Here you are, the forest is mine," he said, crossing himself quickly, and holding out his hand. "Take the money; it's my forest. That's Ryabinin's way of doing business; he doesn't haggle over every half-penny," he added, scowling and waving the pocketbook. "I wouldn't be in a hurry if I were you," said Levin. "Come, really," said Oblonsky in surprise. "I've given my word, you know." Levin went out of the room, slamming the door. Ryabinin looked towards the door and shook his head with a smile. "It's all youthfulness--positively nothing but boyishness. Why, I'm buying it, upon my honor, simply, believe me, for the glory of it, that Ryabinin, and no one else, should have bought the copse of Oblonsky. And as to the profits, why, I must make what God gives. In God's name. If you would kindly sign the title-deed..." Within an hour the merchant, stroking his big overcoat neatly down, and hooking up his jacket, with the agreement in his pocket, seated himself in his tightly covered trap, and drove homewards. "Ugh, these gentlefolks!" he said to the clerk. "They--they're a nice lot!" "That's so," responded the clerk, handing him the reins and buttoning the leather apron. "But I can congratulate you on the purchase, Mihail Ignatitch?" "Well, well..." Chapter 17 Stepan Arkadyevitch went upstairs with his pocket bulging with notes, which the merchant had paid him for three months in advance. The business of the forest was over, the money in his pocket; their shooting had been excellent, and Stepan Arkadyevitch was in the happiest frame of mind, and so he felt specially anxious to dissipate the ill-humor that had come upon Levin. He wanted to finish the day at supper as pleasantly as it had been begun. Levin certainly was out of humor, and in spite of all his desire to be affectionate and cordial to his charming visitor, he could not control his mood. The intoxication of the news that Kitty was not married had gradually begun to work upon him. Kitty was not married, but ill, and ill from love for a man who had slighted her. This slight, as it were, rebounded upon him. Vronsky had slighted her, and she had slighted him, Levin. Consequently Vronsky had the right to despise Levin, and therefore he was his enemy. But all this Levin did not think out. He vaguely felt that there was something in it insulting to him, and he was not angry now at what had disturbed him, but he fell foul of everything that presented itself. The stupid sale of the forest, the fraud practiced upon Oblonsky and concluded in his house, exasperated him. "Well, finished?" he said, meeting Stepan Arkadyevitch upstairs. "Would you like supper?" "Well, I wouldn't say no to it. What an appetite I get in the country! Wonderful! Why didn't you offer Ryabinin something?" "Oh, damn him!" "Still, how you do treat him!" said Oblonsky. "You didn't even shake hands with him. Why not shake hands with him?" "Because I don't shake hands with a waiter, and a waiter's a hundred times better than he is." "What a reactionist you are, really! What about the amalgamation of classes?" said Oblonsky. "Anyone who likes amalgamating is welcome to it, but it sickens me." "You're a regular reactionist, I see." "Really, I have never considered what I am. I am Konstantin Levin, and nothing else." "And Konstantin Levin very much out of temper," said Stepan Arkadyevitch, smiling. "Yes, I am out of temper, and do you know why? Because--excuse me--of your stupid sale..." Stepan Arkadyevitch frowned good-humoredly, like one who feels himself teased and attacked for no fault of his own. "Come, enough about it!" he said. "When did anybody ever sell anything without being told immediately after the sale, 'It was worth much more'? But when one wants to sell, no one will give anything.... No, I see you've a grudge against that unlucky Ryabinin." "Maybe I have. And do you know why? You'll say again that I'm a reactionist, or some other terrible word; but all the same it does annoy and anger me to see on all sides the impoverishing of the nobility to which I belong, and, in spite of the amalgamation of classes, I'm glad to belong. And their impoverishment is not due to extravagance--that would be nothing; living in good style--that's the proper thing for noblemen; it's only the nobles who know how to do it. Now the peasants about us buy land, and I don't mind that. The gentleman does nothing, while the peasant works and supplants the idle man. That's as it ought to be. And I'm very glad for the peasant. But I do mind seeing the process of impoverishment from a sort of--I don't know what to call it--innocence. Here a Polish speculator bought for half its value a magnificent estate from a young lady who lives in Nice. And there a merchant will get three acres of land, worth ten roubles, as security for the loan of one rouble. Here, for no kind of reason, you've made that rascal a present of thirty thousand roubles." "Well, what should I have done? Counted every tree?" "Of course, they must be counted. You didn't count them, but Ryabinin did. Ryabinin's children will have means of livelihood and education, while yours maybe will not!" "Well, you must excuse me, but there's something mean in this counting. We have our business and they have theirs, and they must make their profit. Anyway, the thing's done, and there's an end of it. And here come some poached eggs, my favorite dish. And Agafea Mihalovna will give us that marvelous herb-brandy..." Stepan Arkadyevitch sat down at the table and began joking with Agafea Mihalovna, assuring her that it was long since he had tasted such a dinner and such a supper. "Well, you do praise it, anyway," said Agafea Mihalovna, "but Konstantin Dmitrievitch, give him what you will--a crust of bread--he'll eat it and walk away." Though Levin tried to control himself, he was gloomy and silent. He wanted to put one question to Stepan Arkadyevitch, but he could not bring himself to the point, and could not find the words or the moment in which to put it. Stepan Arkadyevitch had gone down to his room, undressed, again washed, and attired in a nightshirt with goffered frills, he had got into bed, but Levin still lingered in his room, talking of various trifling matters, and not daring to ask what he wanted to know. "How wonderfully they make this soap," he said gazing at a piece of soap he was handling, which Agafea Mihalovna had put ready for the visitor but Oblonsky had not used. "Only look; why, it's a work of art." "Yes, everything's brought to such a pitch of perfection nowadays," said Stepan Arkadyevitch, with a moist and blissful yawn. "The theater, for instance, and the entertainments ... a--a--a!" he yawned. "The electric light everywhere ... a--a--a!" "Yes, the electric light," said Levin. "Yes. Oh, and where's Vronsky now?" he asked suddenly, laying down the soap. "Vronsky?" said Stepan Arkadyevitch, checking his yawn; "he's in Petersburg. He left soon after you did, and he's not once been in Moscow since. And do you know, Kostya, I'll tell you the truth," he went on, leaning his elbow on the table, and propping on his hand his handsome ruddy face, in which his moist, good-natured, sleepy eyes shone like stars. "It's your own fault. You took fright at the sight of your rival. But, as I told you at the time, I couldn't say which had the better chance. Why didn't you fight it out? I told you at the time that...." He yawned inwardly, without opening his mouth. "Does he know, or doesn't he, that I did make an offer?" Levin wondered, gazing at him. "Yes, there's something humbugging, diplomatic in his face," and feeling he was blushing, he looked Stepan Arkadyevitch straight in the face without speaking. "If there was anything on her side at the time, it was nothing but a superficial attraction," pursued Oblonsky. "His being such a perfect aristocrat, don't you know, and his future position in society, had an influence not with her, but with her mother." Levin scowled. The humiliation of his rejection stung him to the heart, as though it were a fresh wound he had only just received. But he was at home, and the walls of home are a support. "Stay, stay," he began, interrupting Oblonsky. "You talk of his being an aristocrat. But allow me to ask what it consists in, that aristocracy of Vronsky or of anybody else, beside which I can be looked down upon? You consider Vronsky an aristocrat, but I don't. A man whose father crawled up from nothing at all by intrigue, and whose mother--God knows whom she wasn't mixed up with.... No, excuse me, but I consider myself aristocratic, and people like me, who can point back in the past to three or four honorable generations of their family, of the highest degree of breeding (talent and intellect, of course that's another matter), and have never curried favor with anyone, never depended on anyone for anything, like my father and my grandfather. And I know many such. You think it mean of me to count the trees in my forest, while you make Ryabinin a present of thirty thousand; but you get rents from your lands and I don't know what, while I don't and so I prize what's come to me from my ancestors or been won by hard work.... We are aristocrats, and not those who can only exist by favor of the powerful of this world, and who can be bought for twopence halfpenny." "Well, but whom are you attacking? I agree with you," said Stepan Arkadyevitch, sincerely and genially; though he was aware that in the class of those who could be bought for twopence halfpenny Levin was reckoning him too. Levin's warmth gave him genuine pleasure. "Whom are you attacking? Though a good deal is not true that you say about Vronsky, but I won't talk about that. I tell you straight out, if I were you, I should go back with me to Moscow, and..." "No; I don't know whether you know it or not, but I don't care. And I tell you--I did make an offer and was rejected, and Katerina Alexandrovna is nothing now to me but a painful and humiliating reminiscence." "What ever for? What nonsense!" "But we won't talk about it. Please forgive me, if I've been nasty," said Levin. Now that he had opened his heart, he became as he had been in the morning. "You're not angry with me, Stiva? Please don't be angry," he said, and smiling, he took his hand. "Of course not; not a bit, and no reason to be. I'm glad we've spoken openly. And do you know, stand-shooting in the morning is unusually good--why not go? I couldn't sleep the night anyway, but I might go straight from shooting to the station." "Capital." Chapter 18 Although all Vronsky's inner life was absorbed in his passion, his external life unalterably and inevitably followed along the old accustomed lines of his social and regimental ties and interests. The interests of his regiment took an important place in Vronsky's life, both because he was fond of the regiment, and because the regiment was fond of him. They were not only fond of Vronsky in his regiment, they respected him too, and were proud of him; proud that this man, with his immense wealth, his brilliant education and abilities, and the path open before him to every kind of success, distinction, and ambition, had disregarded all that, and of all the interests of life had the interests of his regiment and his comrades nearest to his heart. Vronsky was aware of his comrades' view of him, and in addition to his liking for the life, he felt bound to keep up that reputation. It need not be said that he did not speak of his love to any of his comrades, nor did he betray his secret even in the wildest drinking bouts (though indeed he was never so drunk as to lose all control of himself). And he shut up any of his thoughtless comrades who attempted to allude to his connection. But in spite of that, his love was known to all the town; everyone guessed with more or less confidence at his relations with Madame Karenina. The majority of the younger men envied him for just what was the most irksome factor in his love--the exalted position of Karenin, and the consequent publicity of their connection in society. The greater number of the young women, who envied Anna and had long been weary of hearing her called _virtuous_, rejoiced at the fulfillment of their predictions, and were only waiting for a decisive turn in public opinion to fall upon her with all the weight of their scorn. They were already making ready their handfuls of mud to fling at her when the right moment arrived. The greater number of the middle-aged people and certain great personages were displeased at the prospect of the impending scandal in society. Vronsky's mother, on hearing of his connection, was at first pleased at it, because nothing to her mind gave such a finishing touch to a brilliant young man as a _liaison_ in the highest society; she was pleased, too, that Madame Karenina, who had so taken her fancy, and had talked so much of her son, was, after all, just like all other pretty and well-bred women,--at least according to the Countess Vronskaya's ideas. But she had heard of late that her son had refused a position offered him of great importance to his career, simply in order to remain in the regiment, where he could be constantly seeing Madame Karenina. She learned that great personages were displeased with him on this account, and she changed her opinion. She was vexed, too, that from all she could learn of this connection it was not that brilliant, graceful, worldly _liaison_ which she would have welcomed, but a sort of Wertherish, desperate passion, so she was told, which might well lead him into imprudence. She had not seen him since his abrupt departure from Moscow, and she sent her elder son to bid him come to see her. This elder son, too, was displeased with his younger brother. He did not distinguish what sort of love his might be, big or little, passionate or passionless, lasting or passing (he kept a ballet girl himself, though he was the father of a family, so he was lenient in these matters), but he knew that this love affair was viewed with displeasure by those whom it was necessary to please, and therefore he did not approve of his brother's conduct. Besides the service and society, Vronsky had another great interest--horses; he was passionately fond of horses. That year races and a steeplechase had been arranged for the officers. Vronsky had put his name down, bought a thoroughbred English mare, and in spite of his love affair, he was looking forward to the races with intense, though reserved, excitement... These two passions did not interfere with one another. On the contrary, he needed occupation and distraction quite apart from his love, so as to recruit and rest himself from the violent emotions that agitated him. Chapter 19 On the day of the races at Krasnoe Selo, Vronsky had come earlier than usual to eat beefsteak in the common messroom of the regiment. He had no need to be strict with himself, as he had very quickly been brought down to the required light weight; but still he had to avoid gaining flesh, and so he eschewed farinaceous and sweet dishes. He sat with his coat unbuttoned over a white waistcoat, resting both elbows on the table, and while waiting for the steak he had ordered he looked at a French novel that lay open on his plate. He was only looking at the book to avoid conversation with the officers coming in and out; he was thinking. He was thinking of Anna's promise to see him that day after the races. But he had not seen her for three days, and as her husband had just returned from abroad, he did not know whether she would be able to meet him today or not, and he did not know how to find out. He had had his last interview with her at his cousin Betsy's summer villa. He visited the Karenins' summer villa as rarely as possible. Now he wanted to go there, and he pondered the question how to do it. "Of course I shall say Betsy has sent me to ask whether she's coming to the races. Of course, I'll go," he decided, lifting his head from the book. And as he vividly pictured the happiness of seeing her, his face lighted up. "Send to my house, and tell them to have out the carriage and three horses as quick as they can," he said to the servant, who handed him the steak on a hot silver dish, and moving the dish up he began eating. From the billiard room next door came the sound of balls knocking, of talk and laughter. Two officers appeared at the entrance-door: one, a young fellow, with a feeble, delicate face, who had lately joined the regiment from the Corps of Pages; the other, a plump, elderly officer, with a bracelet on his wrist, and little eyes, lost in fat. Vronsky glanced at them, frowned, and looking down at his book as though he had not noticed them, he proceeded to eat and read at the same time. "What? Fortifying yourself for your work?" said the plump officer, sitting down beside him. "As you see," responded Vronsky, knitting his brows, wiping his mouth, and not looking at the officer. "So you're not afraid of getting fat?" said the latter, turning a chair round for the young officer. "What?" said Vronsky angrily, making a wry face of disgust, and showing his even teeth. "You're not afraid of getting fat?" "Waiter, sherry!" said Vronsky, without replying, and moving the book to the other side of him, he went on reading. The plump officer took up the list of wines and turned to the young officer. "You choose what we're to drink," he said, handing him the card, and looking at him. "Rhine wine, please," said the young officer, stealing a timid glance at Vronsky, and trying to pull his scarcely visible mustache. Seeing that Vronsky did not turn round, the young officer got up. "Let's go into the billiard room," he said. The plump officer rose submissively, and they moved towards the door. At that moment there walked into the room the tall and well-built Captain Yashvin. Nodding with an air of lofty contempt to the two officers, he went up to Vronsky. "Ah! here he is!" he cried, bringing his big hand down heavily on his epaulet. Vronsky looked round angrily, but his face lighted up immediately with his characteristic expression of genial and manly serenity. "That's it, Alexey," said the captain, in his loud baritone. "You must just eat a mouthful, now, and drink only one tiny glass." "Oh, I'm not hungry." "There go the inseparables," Yashvin dropped, glancing sarcastically at the two officers who were at that instant leaving the room. And he bent his long legs, swathed in tight riding breeches, and sat down in the chair, too low for him, so that his knees were cramped up in a sharp angle. "Why didn't you turn up at the Red Theater yesterday? Numerova wasn't at all bad. Where were you?" "I was late at the Tverskoys'," said Vronsky. "Ah!" responded Yashvin. Yashvin, a gambler and a rake, a man not merely without moral principles, but of immoral principles, Yashvin was Vronsky's greatest friend in the regiment. Vronsky liked him both for his exceptional physical strength, which he showed for the most part by being able to drink like a fish, and do without sleep without being in the slightest degree affected by it; and for his great strength of character, which he showed in his relations with his comrades and superior officers, commanding both fear and respect, and also at cards, when he would play for tens of thousands and however much he might have drunk, always with such skill and decision that he was reckoned the best player in the English Club. Vronsky respected and liked Yashvin particularly because he felt Yashvin liked him, not for his name and his money, but for himself. And of all men he was the only one with whom Vronsky would have liked to speak of his love. He felt that Yashvin, in spite of his apparent contempt for every sort of feeling, was the only man who could, so he fancied, comprehend the intense passion which now filled his whole life. Moreover, he felt certain that Yashvin, as it was, took no delight in gossip and scandal, and interpreted his feeling rightly, that is to say, knew and believed that this passion was not a jest, not a pastime, but something more serious and important. Vronsky had never spoken to him of his passion, but he was aware that he knew all about it, and that he put the right interpretation on it, and he was glad to see that in his eyes. "Ah! yes," he said, to the announcement that Vronsky had been at the Tverskoys'; and his black eyes shining, he plucked at his left mustache, and began twisting it into his mouth, a bad habit he had. "Well, and what did you do yesterday? Win anything?" asked Vronsky. "Eight thousand. But three don't count; he won't pay up." "Oh, then you can afford to lose over me," said Vronsky, laughing. (Yashvin had bet heavily on Vronsky in the races.) "No chance of my losing. Mahotin's the only one that's risky." And the conversation passed to forecasts of the coming race, the only thing Vronsky could think of just now. "Come along, I've finished," said Vronsky, and getting up he went to the door. Yashvin got up too, stretching his long legs and his long back. "It's too early for me to dine, but I must have a drink. I'll come along directly. Hi, wine!" he shouted, in his rich voice, that always rang out so loudly at drill, and set the windows shaking now. "No, all right," he shouted again immediately after. "You're going home, so I'll go with you." And he walked out with Vronsky. Chapter 20 Vronsky was staying in a roomy, clean, Finnish hut, divided into two by a partition. Petritsky lived with him in camp too. Petritsky was asleep when Vronsky and Yashvin came into the hut. "Get up, don't go on sleeping," said Yashvin, going behind the partition and giving Petritsky, who was lying with ruffled hair and with his nose in the pillow, a prod on the shoulder. Petritsky jumped up suddenly onto his knees and looked round. "Your brother's been here," he said to Vronsky. "He waked me up, damn him, and said he'd look in again." And pulling up the rug he flung himself back on the pillow. "Oh, do shut up, Yashvin!" he said, getting furious with Yashvin, who was pulling the rug off him. "Shut up!" He turned over and opened his eyes. "You'd better tell me what to drink; such a nasty taste in my mouth, that..." "Brandy's better than anything," boomed Yashvin. "Tereshtchenko! brandy for your master and cucumbers," he shouted, obviously taking pleasure in the sound of his own voice. "Brandy, do you think? Eh?" queried Petritsky, blinking and rubbing his eyes. "And you'll drink something? All right then, we'll have a drink together! Vronsky, have a drink?" said Petritsky, getting up and wrapping the tiger-skin rug round him. He went to the door of the partition wall, raised his hands, and hummed in French, "There was a king in Thule." "Vronsky, will you have a drink?" "Go along," said Vronsky, putting on the coat his valet handed to him. "Where are you off to?" asked Yashvin. "Oh, here are your three horses," he added, seeing the carriage drive up. "To the stables, and I've got to see Bryansky, too, about the horses," said Vronsky. Vronsky had as a fact promised to call at Bryansky's, some eight miles from Peterhof, and to bring him some money owing for some horses; and he hoped to have time to get that in too. But his comrades were at once aware that he was not only going there. Petritsky, still humming, winked and made a pout with his lips, as though he would say: "Oh, yes, we know your Bryansky." "Mind you're not late!" was Yashvin's only comment; and to change the conversation: "How's my roan? is he doing all right?" he inquired, looking out of the window at the middle one of the three horses, which he had sold Vronsky. "Stop!" cried Petritsky to Vronsky as he was just going out. "Your brother left a letter and a note for you. Wait a bit; where are they?" Vronsky stopped. "Well, where are they?" "Where are they? That's just the question!" said Petritsky solemnly, moving his forefinger upwards from his nose. "Come, tell me; this is silly!" said Vronsky smiling. "I have not lighted the fire. Here somewhere about." "Come, enough fooling! Where is the letter?" "No, I've forgotten really. Or was it a dream? Wait a bit, wait a bit! But what's the use of getting in a rage. If you'd drunk four bottles yesterday as I did you'd forget where you were lying. Wait a bit, I'll remember!" Petritsky went behind the partition and lay down on his bed. "Wait a bit! This was how I was lying, and this was how he was standing. Yes--yes--yes.... Here it is!"--and Petritsky pulled a letter out from under the mattress, where he had hidden it. Vronsky took the letter and his brother's note. It was the letter he was expecting--from his mother, reproaching him for not having been to see her--and the note was from his brother to say that he must have a little talk with him. Vronsky knew that it was all about the same thing. "What business is it of theirs!" thought Vronsky, and crumpling up the letters he thrust them between the buttons of his coat so as to read them carefully on the road. In the porch of the hut he was met by two officers; one of his regiment and one of another. Vronsky's quarters were always a meeting place for all the officers. "Where are you off to?" "I must go to Peterhof." "Has the mare come from Tsarskoe?" "Yes, but I've not seen her yet." "They say Mahotin's Gladiator's lame." "Nonsense! But however are you going to race in this mud?" said the other. "Here are my saviors!" cried Petritsky, seeing them come in. Before him stood the orderly with a tray of brandy and salted cucumbers. "Here's Yashvin ordering me to drink a pick-me-up." "Well, you did give it to us yesterday," said one of those who had come in; "you didn't let us get a wink of sleep all night." "Oh, didn't we make a pretty finish!" said Petritsky. "Volkov climbed onto the roof and began telling us how sad he was. I said: 'Let's have music, the funeral march!' He fairly dropped asleep on the roof over the funeral march." "Drink it up; you positively must drink the brandy, and then seltzer water and a lot of lemon," said Yashvin, standing over Petritsky like a mother making a child take medicine, "and then a little champagne--just a small bottle." "Come, there's some sense in that. Stop a bit, Vronsky. We'll all have a drink." "No; good-bye all of you. I'm not going to drink today." "Why, are you gaining weight? All right, then we must have it alone. Give us the seltzer water and lemon." "Vronsky!" shouted someone when he was already outside. "Well?" "You'd better get your hair cut, it'll weigh you down, especially at the top." Vronsky was in fact beginning, prematurely, to get a little bald. He laughed gaily, showing his even teeth, and pulling his cap over the thin place, went out and got into his carriage. "To the stables!" he said, and was just pulling out the letters to read them through, but he thought better of it, and put off reading them so as not to distract his attention before looking at the mare. "Later!" Chapter 21 The temporary stable, a wooden shed, had been put up close to the race course, and there his mare was to have been taken the previous day. He had not yet seen her there. During the last few days he had not ridden her out for exercise himself, but had put her in the charge of the trainer, and so now he positively did not know in what condition his mare had arrived yesterday and was today. He had scarcely got out of his carriage when his groom, the so-called "stable boy," recognizing the carriage some way off, called the trainer. A dry-looking Englishman, in high boots and a short jacket, clean-shaven, except for a tuft below his chin, came to meet him, walking with the uncouth gait of jockey, turning his elbows out and swaying from side to side. "Well, how's Frou-Frou?" Vronsky asked in English. "All right, sir," the Englishman's voice responded somewhere in the inside of his throat. "Better not go in," he added, touching his hat. "I've put a muzzle on her, and the mare's fidgety. Better not go in, it'll excite the mare." "No, I'm going in. I want to look at her." "Come along, then," said the Englishman, frowning, and speaking with his mouth shut, and, with swinging elbows, he went on in front with his disjointed gait. They went into the little yard in front of the shed. A stable boy, spruce and smart in his holiday attire, met them with a broom in his hand, and followed them. In the shed there were five horses in their separate stalls, and Vronsky knew that his chief rival, Gladiator, a very tall chestnut horse, had been brought there, and must be standing among them. Even more than his mare, Vronsky longed to see Gladiator, whom he had never seen. But he knew that by the etiquette of the race course it was not merely impossible for him to see the horse, but improper even to ask questions about him. Just as he was passing along the passage, the boy opened the door into the second horse-box on the left, and Vronsky caught a glimpse of a big chestnut horse with white legs. He knew that this was Gladiator, but, with the feeling of a man turning away from the sight of another man's open letter, he turned round and went into Frou-Frou's stall. "The horse is here belonging to Mak... Mak... I never can say the name," said the Englishman, over his shoulder, pointing his big finger and dirty nail towards Gladiator's stall. "Mahotin? Yes, he's my most serious rival," said Vronsky. "If you were riding him," said the Englishman, "I'd bet on you." "Frou-Frou's more nervous; he's stronger," said Vronsky, smiling at the compliment to his riding. "In a steeplechase it all depends on riding and on pluck," said the Englishman. Of pluck--that is, energy and courage--Vronsky did not merely feel that he had enough; what was of far more importance, he was firmly convinced that no one in the world could have more of this "pluck" than he had. "Don't you think I want more thinning down?" "Oh, no," answered the Englishman. "Please, don't speak loud. The mare's fidgety," he added, nodding towards the horse-box, before which they were standing, and from which came the sound of restless stamping in the straw. He opened the door, and Vronsky went into the horse-box, dimly lighted by one little window. In the horse-box stood a dark bay mare, with a muzzle on, picking at the fresh straw with her hoofs. Looking round him in the twilight of the horse-box, Vronsky unconsciously took in once more in a comprehensive glance all the points of his favorite mare. Frou-Frou was a beast of medium size, not altogether free from reproach, from a breeder's point of view. She was small-boned all over; though her chest was extremely prominent in front, it was narrow. Her hind-quarters were a little drooping, and in her fore-legs, and still more in her hind-legs, there was a noticeable curvature. The muscles of both hind- and fore-legs were not very thick; but across her shoulders the mare was exceptionally broad, a peculiarity specially striking now that she was lean from training. The bones of her legs below the knees looked no thicker than a finger from in front, but were extraordinarily thick seen from the side. She looked altogether, except across the shoulders, as it were, pinched in at the sides and pressed out in depth. But she had in the highest degree the quality that makes all defects forgotten: that quality was _blood_, the blood _that tells_, as the English expression has it. The muscles stood up sharply under the network of sinews, covered with the delicate, mobile skin, soft as satin, and they were hard as bone. Her clean-cut head, with prominent, bright, spirited eyes, broadened out at the open nostrils, that showed the red blood in the cartilage within. About all her figure, and especially her head, there was a certain expression of energy, and, at the same time, of softness. She was one of those creatures which seem only not to speak because the mechanism of their mouth does not allow them to. To Vronsky, at any rate, it seemed that she understood all he felt at that moment, looking at her. Directly Vronsky went towards her, she drew in a deep breath, and, turning back her prominent eye till the white looked bloodshot, she started at the approaching figures from the opposite side, shaking her muzzle, and shifting lightly from one leg to the other. "There, you see how fidgety she is," said the Englishman. "There, darling! There!" said Vronsky, going up to the mare and speaking soothingly to her. But the nearer he came, the more excited she grew. Only when he stood by her head, she was suddenly quieter, while the muscles quivered under her soft, delicate coat. Vronsky patted her strong neck, straightened over her sharp withers a stray lock of her mane that had fallen on the other side, and moved his face near her dilated nostrils, transparent as a bat's wing. She drew a loud breath and snorted out through her tense nostrils, started, pricked up her sharp ear, and put out her strong, black lip towards Vronsky, as though she would nip hold of his sleeve. But remembering the muzzle, she shook it and again began restlessly stamping one after the other her shapely legs. "Quiet, darling, quiet!" he said, patting her again over her hind-quarters; and with a glad sense that his mare was in the best possible condition, he went out of the horse-box. The mare's excitement had infected Vronsky. He felt that his heart was throbbing, and that he, too, like the mare, longed to move, to bite; it was both dreadful and delicious. "Well, I rely on you, then," he said to the Englishman; "half-past six on the ground." "All right," said the Englishman. "Oh, where are you going, my lord?" he asked suddenly, using the title "my lord," which he had scarcely ever used before. Vronsky in amazement raised his head, and stared, as he knew how to stare, not into the Englishman's eyes, but at his forehead, astounded at the impertinence of his question. But realizing that in asking this the Englishman had been looking at him not as an employer, but as a jockey, he answered: "I've got to go to Bryansky's; I shall be home within an hour." "How often I'm asked that question today!" he said to himself, and he blushed, a thing which rarely happened to him. The Englishman looked gravely at him; and, as though he, too, knew where Vronsky was going, he added: "The great thing's to keep quiet before a race," said he; "don't get out of temper or upset about anything." "All right," answered Vronsky, smiling; and jumping into his carriage, he told the man to drive to Peterhof. Before he had driven many paces away, the dark clouds that had been threatening rain all day broke, and there was a heavy downpour of rain. "What a pity!" thought Vronsky, putting up the roof of the carriage. "It was muddy before, now it will be a perfect swamp." As he sat in solitude in the closed carriage, he took out his mother's letter and his brother's note, and read them through. Yes, it was the same thing over and over again. Everyone, his mother, his brother, everyone thought fit to interfere in the affairs of his heart. This interference aroused in him a feeling of angry hatred--a feeling he had rarely known before. "What business is it of theirs? Why does everybody feel called upon to concern himself about me? And why do they worry me so? Just because they see that this is something they can't understand. If it were a common, vulgar, worldly intrigue, they would have left me alone. They feel that this is something different, that this is not a mere pastime, that this woman is dearer to me than life. And this is incomprehensible, and that's why it annoys them. Whatever our destiny is or may be, we have made it ourselves, and we do not complain of it," he said, in the word _we_ linking himself with Anna. "No, they must needs teach us how to live. They haven't an idea of what happiness is; they don't know that without our love, for us there is neither happiness nor unhappiness--no life at all," he thought. He was angry with all of them for their interference just because he felt in his soul that they, all these people, were right. He felt that the love that bound him to Anna was not a momentary impulse, which would pass, as worldly intrigues do pass, leaving no other traces in the life of either but pleasant or unpleasant memories. He felt all the torture of his own and her position, all the difficulty there was for them, conspicuous as they were in the eye of all the world, in concealing their love, in lying and deceiving; and in lying, deceiving, feigning, and continually thinking of others, when the passion that united them was so intense that they were both oblivious of everything else but their love. He vividly recalled all the constantly recurring instances of inevitable necessity for lying and deceit, which were so against his natural bent. He recalled particularly vividly the shame he had more than once detected in her at this necessity for lying and deceit. And he experienced the strange feeling that had sometimes come upon him since his secret love for Anna. This was a feeling of loathing for something--whether for Alexey Alexandrovitch, or for himself, or for the whole world, he could not have said. But he always drove away this strange feeling. Now, too, he shook it off and continued the thread of his thoughts. "Yes, she was unhappy before, but proud and at peace; and now she cannot be at peace and feel secure in her dignity, though she does not show it. Yes, we must put an end to it," he decided. And for the first time the idea clearly presented itself that it was essential to put an end to this false position, and the sooner the better. "Throw up everything, she and I, and hide ourselves somewhere alone with our love," he said to himself. Chapter 22 The rain did not last long, and by the time Vronsky arrived, his shaft-horse trotting at full speed and dragging the trace-horses galloping through the mud, with their reins hanging loose, the sun had peeped out again, the roofs of the summer villas and the old limetrees in the gardens on both sides of the principal streets sparkled with wet brilliance, and from the twigs came a pleasant drip and from the roofs rushing streams of water. He thought no more of the shower spoiling the race course, but was rejoicing now that--thanks to the rain--he would be sure to find her at home and alone, as he knew that Alexey Alexandrovitch, who had lately returned from a foreign watering place, had not moved from Petersburg. Hoping to find her alone, Vronsky alighted, as he always did, to avoid attracting attention, before crossing the bridge, and walked to the house. He did not go up the steps to the street door, but went into the court. "Has your master come?" he asked a gardener. "No, sir. The mistress is at home. But will you please go to the front door; there are servants there," the gardener answered. "They'll open the door." "No, I'll go in from the garden." And feeling satisfied that she was alone, and wanting to take her by surprise, since he had not promised to be there today, and she would certainly not expect him to come before the races, he walked, holding his sword and stepping cautiously over the sandy path, bordered with flowers, to the terrace that looked out upon the garden. Vronsky forgot now all that he had thought on the way of the hardships and difficulties of their position. He thought of nothing but that he would see her directly, not in imagination, but living, all of her, as she was in reality. He was just going in, stepping on his whole foot so as not to creak, up the worn steps of the terrace, when he suddenly remembered what he always forgot, and what caused the most torturing side of his relations with her, her son with his questioning--hostile, as he fancied--eyes. This boy was more often than anyone else a check upon their freedom. When he was present, both Vronsky and Anna did not merely avoid speaking of anything that they could not have repeated before everyone; they did not even allow themselves to refer by hints to anything the boy did not understand. They had made no agreement about this, it had settled itself. They would have felt it wounding themselves to deceive the child. In his presence they talked like acquaintances. But in spite of this caution, Vronsky often saw the child's intent, bewildered glance fixed upon him, and a strange shyness, uncertainty, at one time friendliness, at another, coldness and reserve, in the boy's manner to him; as though the child felt that between this man and his mother there existed some important bond, the significance of which he could not understand. As a fact, the boy did feel that he could not understand this relation, and he tried painfully, and was not able to make clear to himself what feeling he ought to have for this man. With a child's keen instinct for every manifestation of feeling, he saw distinctly that his father, his governess, his nurse,--all did not merely dislike Vronsky, but looked on him with horror and aversion, though they never said anything about him, while his mother looked on him as her greatest friend. "What does it mean? Who is he? How ought I to love him? If I don't know, it's my fault; either I'm stupid or a naughty boy," thought the child. And this was what caused his dubious, inquiring, sometimes hostile, expression, and the shyness and uncertainty which Vronsky found so irksome. This child's presence always and infallibly called up in Vronsky that strange feeling of inexplicable loathing which he had experienced of late. This child's presence called up both in Vronsky and in Anna a feeling akin to the feeling of a sailor who sees by the compass that the direction in which he is swiftly moving is far from the right one, but that to arrest his motion is not in his power, that every instant is carrying him further and further away, and that to admit to himself his deviation from the right direction is the same as admitting his certain ruin. This child, with his innocent outlook upon life, was the compass that showed them the point to which they had departed from what they knew, but did not want to know. This time Seryozha was not at home, and she was completely alone. She was sitting on the terrace waiting for the return of her son, who had gone out for his walk and been caught in the rain. She had sent a manservant and a maid out to look for him. Dressed in a white gown, deeply embroidered, she was sitting in a corner of the terrace behind some flowers, and did not hear him. Bending her curly black head, she pressed her forehead against a cool watering pot that stood on the parapet, and both her lovely hands, with the rings he knew so well, clasped the pot. The beauty of her whole figure, her head, her neck, her hands, struck Vronsky every time as something new and unexpected. He stood still, gazing at her in ecstasy. But, directly he would have made a step to come nearer to her, she was aware of his presence, pushed away the watering pot, and turned her flushed face towards him. "What's the matter? You are ill?" he said to her in French, going up to her. He would have run to her, but remembering that there might be spectators, he looked round towards the balcony door, and reddened a little, as he always reddened, feeling that he had to be afraid and be on his guard. "No, I'm quite well," she said, getting up and pressing his outstretched hand tightly. "I did not expect ... thee." "Mercy! what cold hands!" he said. "You startled me," she said. "I'm alone, and expecting Seryozha; he's out for a walk; they'll come in from this side." But, in spite of her efforts to be calm, her lips were quivering. "Forgive me for coming, but I couldn't pass the day without seeing you," he went on, speaking French, as he always did to avoid using the stiff Russian plural form, so impossibly frigid between them, and the dangerously intimate singular. "Forgive you? I'm so glad!" "But you're ill or worried," he went on, not letting go her hands and bending over her. "What were you thinking of?" "Always the same thing," she said, with a smile. She spoke the truth. If ever at any moment she had been asked what she was thinking of, she could have answered truly: of the same thing, of her happiness and her unhappiness. She was thinking, just when he came upon her, of this: why was it, she wondered, that to others, to Betsy (she knew of her secret connection with Tushkevitch) it was all easy, while to her it was such torture? Today this thought gained special poignancy from certain other considerations. She asked him about the races. He answered her questions, and, seeing that she was agitated, trying to calm her, he began telling her in the simplest tone the details of his preparations for the races. "Tell him or not tell him?" she thought, looking into his quiet, affectionate eyes. "He is so happy, so absorbed in his races that he won't understand as he ought, he won't understand all the gravity of this fact to us." "But you haven't told me what you were thinking of when I came in," he said, interrupting his narrative; "please tell me!" She did not answer, and, bending her head a little, she looked inquiringly at him from under her brows, her eyes shining under their long lashes. Her hand shook as it played with a leaf she had picked. He saw it, and his face expressed that utter subjection, that slavish devotion, which had done so much to win her. "I see something has happened. Do you suppose I can be at peace, knowing you have a trouble I am not sharing? Tell me, for God's sake," he repeated imploringly. "Yes, I shan't be able to forgive him if he does not realize all the gravity of it. Better not tell; why put him to the proof?" she thought, still staring at him in the same way, and feeling the hand that held the leaf was trembling more and more. "For God's sake!" he repeated, taking her hand. "Shall I tell you?" "Yes, yes, yes . . ." "I'm with child," she said, softly and deliberately. The leaf in her hand shook more violently, but she did not take her eyes off him, watching how he would take it. He turned white, would have said something, but stopped; he dropped her hand, and his head sank on his breast. "Yes, he realizes all the gravity of it," she thought, and gratefully she pressed his hand. But she was mistaken in thinking he realized the gravity of the fact as she, a woman, realized it. On hearing it, he felt come upon him with tenfold intensity that strange feeling of loathing of someone. But at the same time, he felt that the turning-point he had been longing for had come now; that it was impossible to go on concealing things from her husband, and it was inevitable in one way or another that they should soon put an end to their unnatural position. But, besides that, her emotion physically affected him in the same way. He looked at her with a look of submissive tenderness, kissed her hand, got up, and, in silence, paced up and down the terrace. "Yes," he said, going up to her resolutely. "Neither you nor I have looked on our relations as a passing amusement, and now our fate is sealed. It is absolutely necessary to put an end"--he looked round as he spoke--"to the deception in which we are living." "Put an end? How put an end, Alexey?" she said softly. She was calmer now, and her face lighted up with a tender smile. "Leave your husband and make our life one." "It is one as it is," she answered, scarcely audibly. "Yes, but altogether; altogether." "But how, Alexey, tell me how?" she said in melancholy mockery at the hopelessness of her own position. "Is there any way out of such a position? Am I not the wife of my husband?" "There is a way out of every position. We must take our line," he said. "Anything's better than the position in which you're living. Of course, I see how you torture yourself over everything--the world and your son and your husband." "Oh, not over my husband," she said, with a quiet smile. "I don't know him, I don't think of him. He doesn't exist." "You're not speaking sincerely. I know you. You worry about him too." "Oh, he doesn't even know," she said, and suddenly a hot flush came over her face; her cheeks, her brow, her neck crimsoned, and tears of shame came into her eyes. "But we won't talk of him." Chapter 23 Vronsky had several times already, though not so resolutely as now, tried to bring her to consider their position, and every time he had been confronted by the same superficiality and triviality with which she met his appeal now. It was as though there were something in this which she could not or would not face, as though directly she began to speak of this, she, the real Anna, retreated somehow into herself, and another strange and unaccountable woman came out, whom he did not love, and whom he feared, and who was in opposition to him. But today he was resolved to have it out. "Whether he knows or not," said Vronsky, in his usual quiet and resolute tone, "that's nothing to do with us. We cannot ... you cannot stay like this, especially now." "What's to be done, according to you?" she asked with the same frivolous irony. She who had so feared he would take her condition too lightly was now vexed with him for deducing from it the necessity of taking some step. "Tell him everything, and leave him." "Very well, let us suppose I do that," she said. "Do you know what the result of that would be? I can tell you it all beforehand," and a wicked light gleamed in her eyes, that had been so soft a minute before. "'Eh, you love another man, and have entered into criminal intrigues with him?'" (Mimicking her husband, she threw an emphasis on the word "criminal," as Alexey Alexandrovitch did.) "'I warned you of the results in the religious, the civil, and the domestic relation. You have not listened to me. Now I cannot let you disgrace my name,--'" "and my son," she had meant to say, but about her son she could not jest,--"'disgrace my name, and'--and more in the same style," she added. "In general terms, he'll say in his official manner, and with all distinctness and precision, that he cannot let me go, but will take all measures in his power to prevent scandal. And he will calmly and punctually act in accordance with his words. That's what will happen. He's not a man, but a machine, and a spiteful machine when he's angry," she added, recalling Alexey Alexandrovitch as she spoke, with all the peculiarities of his figure and manner of speaking, and reckoning against him every defect she could find in him, softening nothing for the great wrong she herself was doing him. "But, Anna," said Vronsky, in a soft and persuasive voice, trying to soothe her, "we absolutely must, anyway, tell him, and then be guided by the line he takes." "What, run away?" "And why not run away? I don't see how we can keep on like this. And not for my sake--I see that you suffer." "Yes, run away, and become your mistress," she said angrily. "Anna," he said, with reproachful tenderness. "Yes," she went on, "become your mistress, and complete the ruin of..." Again she would have said "my son," but she could not utter that word. Vronsky could not understand how she, with her strong and truthful nature, could endure this state of deceit, and not long to get out of it. But he did not suspect that the chief cause of it was the word--_son_, which she could not bring herself to pronounce. When she thought of her son, and his future attitude to his mother, who had abandoned his father, she felt such terror at what she had done, that she could not face it; but, like a woman, could only try to comfort herself with lying assurances that everything would remain as it always had been, and that it was possible to forget the fearful question of how it would be with her son. "I beg you, I entreat you," she said suddenly, taking his hand, and speaking in quite a different tone, sincere and tender, "never speak to me of that!" "But, Anna..." "Never. Leave it to me. I know all the baseness, all the horror of my position; but it's not so easy to arrange as you think. And leave it to me, and do what I say. Never speak to me of it. Do you promise me?... No, no, promise!..." "I promise everything, but I can't be at peace, especially after what you have told me. I can't be at peace, when you can't be at peace...." "I?" she repeated. "Yes, I am worried sometimes; but that will pass, if you will never talk about this. When you talk about it--it's only then it worries me." "I don't understand," he said. "I know," she interrupted him, "how hard it is for your truthful nature to lie, and I grieve for you. I often think that you have ruined your whole life for me." "I was just thinking the very same thing," he said; "how could you sacrifice everything for my sake? I can't forgive myself that you're unhappy!" "I unhappy?" she said, coming closer to him, and looking at him with an ecstatic smile of love. "I am like a hungry man who has been given food. He may be cold, and dressed in rags, and ashamed, but he is not unhappy. I unhappy? No, this is my unhappiness...." She could hear the sound of her son's voice coming towards them, and glancing swiftly round the terrace, she got up impulsively. Her eyes glowed with the fire he knew so well; with a rapid movement she raised her lovely hands, covered with rings, took his head, looked a long look into his face, and, putting up her face with smiling, parted lips, swiftly kissed his mouth and both eyes, and pushed him away. She would have gone, but he held her back. "When?" he murmured in a whisper, gazing in ecstasy at her. "Tonight, at one o'clock," she whispered, and, with a heavy sigh, she walked with her light, swift step to meet her son. Seryozha had been caught by the rain in the big garden, and he and his nurse had taken shelter in an arbor. "Well, _au revoir_," she said to Vronsky. "I must soon be getting ready for the races. Betsy promised to fetch me." Vronsky, looking at his watch, went away hurriedly. Chapter 24 When Vronsky looked at his watch on the Karenins' balcony, he was so greatly agitated and lost in his thoughts that he saw the figures on the watch's face, but could not take in what time it was. He came out on to the high road and walked, picking his way carefully through the mud, to his carriage. He was so completely absorbed in his feeling for Anna, that he did not even think what o'clock it was, and whether he had time to go to Bryansky's. He had left him, as often happens, only the external faculty of memory, that points out each step one has to take, one after the other. He went up to his coachman, who was dozing on the box in the shadow, already lengthening, of a thick limetree; he admired the shifting clouds of midges circling over the hot horses, and, waking the coachman, he jumped into the carriage, and told him to drive to Bryansky's. It was only after driving nearly five miles that he had sufficiently recovered himself to look at his watch, and realize that it was half-past five, and he was late. There were several races fixed for that day: the Mounted Guards' race, then the officers' mile-and-a-half race, then the three-mile race, and then the race for which he was entered. He could still be in time for his race, but if he went to Bryansky's he could only just be in time, and he would arrive when the whole of the court would be in their places. That would be a pity. But he had promised Bryansky to come, and so he decided to drive on, telling the coachman not to spare the horses. He reached Bryansky's, spent five minutes there, and galloped back. This rapid drive calmed him. All that was painful in his relations with Anna, all the feeling of indefiniteness left by their conversation, had slipped out of his mind. He was thinking now with pleasure and excitement of the race, of his being anyhow, in time, and now and then the thought of the blissful interview awaiting him that night flashed across his imagination like a flaming light. The excitement of the approaching race gained upon him as he drove further and further into the atmosphere of the races, overtaking carriages driving up from the summer villas or out of Petersburg. At his quarters no one was left at home; all were at the races, and his valet was looking out for him at the gate. While he was changing his clothes, his valet told him that the second race had begun already, that a lot of gentlemen had been to ask for him, and a boy had twice run up from the stables. Dressing without hurry (he never hurried himself, and never lost his self-possession), Vronsky drove to the sheds. From the sheds he could see a perfect sea of carriages, and people on foot, soldiers surrounding the race course, and pavilions swarming with people. The second race was apparently going on, for just as he went into the sheds he heard a bell ringing. Going towards the stable, he met the white-legged chestnut, Mahotin's Gladiator, being led to the race-course in a blue forage horsecloth, with what looked like huge ears edged with blue. "Where's Cord?" he asked the stable-boy. "In the stable, putting on the saddle." In the open horse-box stood Frou-Frou, saddled ready. They were just going to lead her out. "I'm not too late?" "All right! All right!" said the Englishman; "don't upset yourself!" Vronsky once more took in in one glance the exquisite lines of his favorite mare; who was quivering all over, and with an effort he tore himself from the sight of her, and went out of the stable. He went towards the pavilions at the most favorable moment for escaping attention. The mile-and-a-half race was just finishing, and all eyes were fixed on the horse-guard in front and the light hussar behind, urging their horses on with a last effort close to the winning post. From the center and outside of the ring all were crowding to the winning post, and a group of soldiers and officers of the horse-guards were shouting loudly their delight at the expected triumph of their officer and comrade. Vronsky moved into the middle of the crowd unnoticed, almost at the very moment when the bell rang at the finish of the race, and the tall, mudspattered horse-guard who came in first, bending over the saddle, let go the reins of his panting gray horse that looked dark with sweat. The horse, stiffening out its legs, with an effort stopped its rapid course, and the officer of the horse-guards looked round him like a man waking up from a heavy sleep, and just managed to smile. A crowd of friends and outsiders pressed round him. Vronsky intentionally avoided that select crowd of the upper world, which was moving and talking with discreet freedom before the pavilions. He knew that Madame Karenina was there, and Betsy, and his brother's wife, and he purposely did not go near them for fear of something distracting his attention. But he was continually met and stopped by acquaintances, who told him about the previous races, and kept asking him why he was so late. At the time when the racers had to go to the pavilion to receive the prizes, and all attention was directed to that point, Vronsky's elder brother, Alexander, a colonel with heavy fringed epaulets, came up to him. He was not tall, though as broadly built as Alexey, and handsomer and rosier than he; he had a red nose, and an open, drunken-looking face. "Did you get my note?" he said. "There's never any finding you." Alexander Vronsky, in spite of the dissolute life, and in especial the drunken habits, for which he was notorious, was quite one of the court circle. Now, as he talked to his brother of a matter bound to be exceedingly disagreeable to him, knowing that the eyes of many people might be fixed upon him, he kept a smiling countenance, as though he were jesting with his brother about something of little moment. "I got it, and I really can't make out what _you_ are worrying yourself about," said Alexey. "I'm worrying myself because the remark has just been made to me that you weren't here, and that you were seen in Peterhof on Monday." "There are matters which only concern those directly interested in them, and the matter you are so worried about is..." "Yes, but if so, you may as well cut the service...." "I beg you not to meddle, and that's all I have to say." Alexey Vronsky's frowning face turned white, and his prominent lower jaw quivered, which happened rarely with him. Being a man of very warm heart, he was seldom angry; but when he was angry, and when his chin quivered, then, as Alexander Vronsky knew, he was dangerous. Alexander Vronsky smiled gaily. "I only wanted to give you Mother's letter. Answer it, and don't worry about anything just before the race. _Bonne chance,_" he added, smiling and he moved away from him. But after him another friendly greeting brought Vronsky to a standstill. "So you won't recognize your friends! How are you, _mon cher?_" said Stepan Arkadyevitch, as conspicuously brilliant in the midst of all the Petersburg brilliance as he was in Moscow, his face rosy, and his whiskers sleek and glossy. "I came up yesterday, and I'm delighted that I shall see your triumph. When shall we meet?" "Come tomorrow to the messroom," said Vronsky, and squeezing him by the sleeve of his coat, with apologies, he moved away to the center of the race course, where the horses were being led for the great steeplechase. The horses who had run in the last race were being led home, steaming and exhausted, by the stable-boys, and one after another the fresh horses for the coming race made their appearance, for the most part English racers, wearing horsecloths, and looking with their drawn-up bellies like strange, huge birds. On the right was led in Frou-Frou, lean and beautiful, lifting up her elastic, rather long pasterns, as though moved by springs. Not far from her they were taking the rug off the lop-eared Gladiator. The strong, exquisite, perfectly correct lines of the stallion, with his superb hind-quarters and excessively short pasterns almost over his hoofs, attracted Vronsky's attention in spite of himself. He would have gone up to his mare, but he was again detained by an acquaintance. "Oh, there's Karenin!" said the acquaintance with whom he was chatting. "He's looking for his wife, and she's in the middle of the pavilion. Didn't you see her?" "No," answered Vronsky, and without even glancing round towards the pavilion where his friend was pointing out Madame Karenina, he went up to his mare. Vronsky had not had time to look at the saddle, about which he had to give some direction, when the competitors were summoned to the pavilion to receive their numbers and places in the row at starting. Seventeen officers, looking serious and severe, many with pale faces, met together in the pavilion and drew the numbers. Vronsky drew the number seven. The cry was heard: "Mount!" Feeling that with the others riding in the race, he was the center upon which all eyes were fastened, Vronsky walked up to his mare in that state of nervous tension in which he usually became deliberate and composed in his movements. Cord, in honor of the races, had put on his best clothes, a black coat buttoned up, a stiffly starched collar, which propped up his cheeks, a round black hat, and top boots. He was calm and dignified as ever, and was with his own hands holding Frou-Frou by both reins, standing straight in front of her. Frou-Frou was still trembling as though in a fever. Her eye, full of fire, glanced sideways at Vronsky. Vronsky slipped his finger under the saddle-girth. The mare glanced aslant at him, drew up her lip, and twitched her ear. The Englishman puckered up his lips, intending to indicate a smile that anyone should verify his saddling. "Get up; you won't feel so excited." Vronsky looked round for the last time at his rivals. He knew that he would not see them during the race. Two were already riding forward to the point from which they were to start. Galtsin, a friend of Vronsky's and one of his more formidable rivals, was moving round a bay horse that would not let him mount. A little light hussar in tight riding breeches rode off at a gallop, crouched up like a cat on the saddle, in imitation of English jockeys. Prince Kuzovlev sat with a white face on his thoroughbred mare from the Grabovsky stud, while an English groom led her by the bridle. Vronsky and all his comrades knew Kuzovlev and his peculiarity of "weak nerves" and terrible vanity. They knew that he was afraid of everything, afraid of riding a spirited horse. But now, just because it was terrible, because people broke their necks, and there was a doctor standing at each obstacle, and an ambulance with a cross on it, and a sister of mercy, he had made up his mind to take part in the race. Their eyes met, and Vronsky gave him a friendly and encouraging nod. Only one he did not see, his chief rival, Mahotin on Gladiator. "Don't be in a hurry," said Cord to Vronsky, "and remember one thing: don't hold her in at the fences, and don't urge her on; let her go as she likes." "All right, all right," said Vronsky, taking the reins. "If you can, lead the race; but don't lose heart till the last minute, even if you're behind." Before the mare had time to move, Vronsky stepped with an agile, vigorous movement into the steel-toothed stirrup, and lightly and firmly seated himself on the creaking leather of the saddle. Getting his right foot in the stirrup, he smoothed the double reins, as he always did, between his fingers, and Cord let go. As though she did not know which foot to put first, Frou-Frou started, dragging at the reins with her long neck, and as though she were on springs, shaking her rider from side to side. Cord quickened his step, following him. The excited mare, trying to shake off her rider first on one side and then the other, pulled at the reins, and Vronsky tried in vain with voice and hand to soothe her. They were just reaching the dammed-up stream on their way to the starting point. Several of the riders were in front and several behind, when suddenly Vronsky heard the sound of a horse galloping in the mud behind him, and he was overtaken by Mahotin on his white-legged, lop-eared Gladiator. Mahotin smiled, showing his long teeth, but Vronsky looked angrily at him. He did not like him, and regarded him now as his most formidable rival. He was angry with him for galloping past and exciting his mare. Frou-Frou started into a gallop, her left foot forward, made two bounds, and fretting at the tightened reins, passed into a jolting trot, bumping her rider up and down. Cord, too, scowled, and followed Vronsky almost at a trot. Chapter 25 There were seventeen officers in all riding in this race. The race course was a large three-mile ring of the form of an ellipse in front of the pavilion. On this course nine obstacles had been arranged: the stream, a big and solid barrier five feet high, just before the pavilion, a dry ditch, a ditch full of water, a precipitous slope, an Irish barricade (one of the most difficult obstacles, consisting of a mound fenced with brushwood, beyond which was a ditch out of sight for the horses, so that the horse had to clear both obstacles or might be killed); then two more ditches filled with water, and one dry one; and the end of the race was just facing the pavilion. But the race began not in the ring, but two hundred yards away from it, and in that part of the course was the first obstacle, a dammed-up stream, seven feet in breadth, which the racers could leap or wade through as they preferred. Three times they were ranged ready to start, but each time some horse thrust itself out of line, and they had to begin again. The umpire who was starting them, Colonel Sestrin, was beginning to lose his temper, when at last for the fourth time he shouted "Away!" and the racers started. Every eye, every opera glass, was turned on the brightly colored group of riders at the moment they were in line to start. "They're off! They're starting!" was heard on all sides after the hush of expectation. And little groups and solitary figures among the public began running from place to place to get a better view. In the very first minute the close group of horsemen drew out, and it could be seen that they were approaching the stream in twos and threes and one behind another. To the spectators it seemed as though they had all started simultaneously, but to the racers there were seconds of difference that had great value to them. Frou-Frou, excited and over-nervous, had lost the first moment, and several horses had started before her, but before reaching the stream, Vronsky, who was holding in the mare with all his force as she tugged at the bridle, easily overtook three, and there were left in front of him Mahotin's chestnut Gladiator, whose hind-quarters were moving lightly and rhythmically up and down exactly in front of Vronsky, and in front of all, the dainty mare Diana bearing Kuzovlev more dead than alive. For the first instant Vronsky was not master either of himself or his mare. Up to the first obstacle, the stream, he could not guide the motions of his mare. Gladiator and Diana came up to it together and almost at the same instant; simultaneously they rose above the stream and flew across to the other side; Frou-Frou darted after them, as if flying; but at the very moment when Vronsky felt himself in the air, he suddenly saw almost under his mare's hoofs Kuzovlev, who was floundering with Diana on the further side of the stream. (Kuzovlev had let go the reins as he took the leap, and the mare had sent him flying over her head.) Those details Vronsky learned later; at the moment all he saw was that just under him, where Frou-Frou must alight, Diana's legs or head might be in the way. But Frou-Frou drew up her legs and back in the very act of leaping, like a falling cat, and, clearing the other mare, alighted beyond her. "O the darling!" thought Vronsky. After crossing the stream Vronsky had complete control of his mare, and began holding her in, intending to cross the great barrier behind Mahotin, and to try to overtake him in the clear ground of about five hundred yards that followed it. The great barrier stood just in front of the imperial pavilion. The Tsar and the whole court and crowds of people were all gazing at them--at him, and Mahotin a length ahead of him, as they drew near the "devil," as the solid barrier was called. Vronsky was aware of those eyes fastened upon him from all sides, but he saw nothing except the ears and neck of his own mare, the ground racing to meet him, and the back and white legs of Gladiator beating time swiftly before him, and keeping always the same distance ahead. Gladiator rose, with no sound of knocking against anything. With a wave of his short tail he disappeared from Vronsky's sight. "Bravo!" cried a voice. At the same instant, under Vronsky's eyes, right before him flashed the palings of the barrier. Without the slightest change in her action his mare flew over it; the palings vanished, and he heard only a crash behind him. The mare, excited by Gladiator's keeping ahead, had risen too soon before the barrier, and grazed it with her hind hoofs. But her pace never changed, and Vronsky, feeling a spatter of mud in his face, realized that he was once more the same distance from Gladiator. Once more he perceived in front of him the same back and short tail, and again the same swiftly moving white legs that got no further away. At the very moment when Vronsky thought that now was the time to overtake Mahotin, Frou-Frou herself, understanding his thoughts, without any incitement on his part, gained ground considerably, and began getting alongside of Mahotin on the most favorable side, close to the inner cord. Mahotin would not let her pass that side. Vronsky had hardly formed the thought that he could perhaps pass on the outer side, when Frou-Frou shifted her pace and began overtaking him on the other side. Frou-Frou's shoulder, beginning by now to be dark with sweat, was even with Gladiator's back. For a few lengths they moved evenly. But before the obstacle they were approaching, Vronsky began working at the reins, anxious to avoid having to take the outer circle, and swiftly passed Mahotin just upon the declivity. He caught a glimpse of his mud-stained face as he flashed by. He even fancied that he smiled. Vronsky passed Mahotin, but he was immediately aware of him close upon him, and he never ceased hearing the even-thudding hoofs and the rapid and still quite fresh breathing of Gladiator. The next two obstacles, the water course and the barrier, were easily crossed, but Vronsky began to hear the snorting and thud of Gladiator closer upon him. He urged on his mare, and to his delight felt that she easily quickened her pace, and the thud of Gladiator's hoofs was again heard at the same distance away. Vronsky was at the head of the race, just as he wanted to be and as Cord had advised, and now he felt sure of being the winner. His excitement, his delight, and his tenderness for Frou-Frou grew keener and keener. He longed to look round again, but he did not dare do this, and tried to be cool and not to urge on his mare so to keep the same reserve of force in her as he felt that Gladiator still kept. There remained only one obstacle, the most difficult; if he could cross it ahead of the others he would come in first. He was flying towards the Irish barricade, Frou-Frou and he both together saw the barricade in the distance, and both the man and the mare had a moment's hesitation. He saw the uncertainty in the mare's ears and lifted the whip, but at the same time felt that his fears were groundless; the mare knew what was wanted. She quickened her pace and rose smoothly, just as he had fancied she would, and as she left the ground gave herself up to the force of her rush, which carried her far beyond the ditch; and with the same rhythm, without effort, with the same leg forward, Frou-Frou fell back into her pace again. "Bravo, Vronsky!" he heard shouts from a knot of men--he knew they were his friends in the regiment--who were standing at the obstacle. He could not fail to recognize Yashvin's voice though he did not see him. "O my sweet!" he said inwardly to Frou-Frou, as he listened for what was happening behind. "He's cleared it!" he thought, catching the thud of Gladiator's hoofs behind him. There remained only the last ditch, filled with water and five feet wide. Vronsky did not even look at it, but anxious to get in a long way first began sawing away at the reins, lifting the mare's head and letting it go in time with her paces. He felt that the mare was at her very last reserve of strength; not her neck and shoulders merely were wet, but the sweat was standing in drops on her mane, her head, her sharp ears, and her breath came in short, sharp gasps. But he knew that she had strength left more than enough for the remaining five hundred yards. It was only from feeling himself nearer the ground and from the peculiar smoothness of his motion that Vronsky knew how greatly the mare had quickened her pace. She flew over the ditch as though not noticing it. She flew over it like a bird; but at the same instant Vronsky, to his horror, felt that he had failed to keep up with the mare's pace, that he had, he did not know how, made a fearful, unpardonable mistake, in recovering his seat in the saddle. All at once his position had shifted and he knew that something awful had happened. He could not yet make out what had happened, when the white legs of a chestnut horse flashed by close to him, and Mahotin passed at a swift gallop. Vronsky was touching the ground with one foot, and his mare was sinking on that foot. He just had time to free his leg when she fell on one side, gasping painfully, and, making vain efforts to rise with her delicate, soaking neck, she fluttered on the ground at his feet like a shot bird. The clumsy movement made by Vronsky had broken her back. But that he only knew much later. At that moment he knew only that Mahotin had flown swiftly by, while he stood staggering alone on the muddy, motionless ground, and Frou-Frou lay gasping before him, bending her head back and gazing at him with her exquisite eyes. Still unable to realize what had happened, Vronsky tugged at his mare's reins. Again she struggled all over like a fish, and her shoulders setting the saddle heaving, she rose on her front legs but unable to lift her back, she quivered all over and again fell on her side. With a face hideous with passion, his lower jaw trembling, and his cheeks white, Vronsky kicked her with his heel in the stomach and again fell to tugging at the rein. She did not stir, but thrusting her nose into the ground, she simply gazed at her master with her speaking eyes. "A--a--a!" groaned Vronsky, clutching at his head. "Ah! what have I done!" he cried. "The race lost! And my fault! shameful, unpardonable! And the poor darling, ruined mare! Ah! what have I done!" A crowd of men, a doctor and his assistant, the officers of his regiment, ran up to him. To his misery he felt that he was whole and unhurt. The mare had broken her back, and it was decided to shoot her. Vronsky could not answer questions, could not speak to anyone. He turned, and without picking up his cap that had fallen off, walked away from the race course, not knowing where he was going. He felt utterly wretched. For the first time in his life he knew the bitterest sort of misfortune, misfortune beyond remedy, and caused by his own fault. Yashvin overtook him with his cap, and led him home, and half an hour later Vronsky had regained his self-possession. But the memory of that race remained for long in his heart, the cruelest and bitterest memory of his life. Chapter 26 The external relations of Alexey Alexandrovitch and his wife had remained unchanged. The sole difference lay in the fact that he was more busily occupied than ever. As in former years, at the beginning of the spring he had gone to a foreign watering-place for the sake of his health, deranged by the winter's work that every year grew heavier. And just as always he returned in July and at once fell to work as usual with increased energy. As usual, too, his wife had moved for the summer to a villa out of town, while he remained in Petersburg. From the date of their conversation after the party at Princess Tverskaya's he had never spoken again to Anna of his suspicions and his jealousies, and that habitual tone of his bantering mimicry was the most convenient tone possible for his present attitude to his wife. He was a little colder to his wife. He simply seemed to be slightly displeased with her for that first midnight conversation, which she had repelled. In his attitude to her there was a shade of vexation, but nothing more. "You would not be open with me," he seemed to say, mentally addressing her; "so much the worse for you. Now you may beg as you please, but I won't be open with you. So much the worse for you!" he said mentally, like a man who, after vainly attempting to extinguish a fire, should fly in a rage with his vain efforts and say, "Oh, very well then! you shall burn for this!" This man, so subtle and astute in official life, did not realize all the senselessness of such an attitude to his wife. He did not realize it, because it was too terrible to him to realize his actual position, and he shut down and locked and sealed up in his heart that secret place where lay hid his feelings towards his family, that is, his wife and son. He who had been such a careful father, had from the end of that winter become peculiarly frigid to his son, and adopted to him just the same bantering tone he used with his wife. "Aha, young man!" was the greeting with which he met him. Alexey Alexandrovitch asserted and believed that he had never in any previous year had so much official business as that year. But he was not aware that he sought work for himself that year, that this was one of the means for keeping shut that secret place where lay hid his feelings towards his wife and son and his thoughts about them, which became more terrible the longer they lay there. If anyone had had the right to ask Alexey Alexandrovitch what he thought of his wife's behavior, the mild and peaceable Alexey Alexandrovitch would have made no answer, but he would have been greatly angered with any man who should question him on that subject. For this reason there positively came into Alexey Alexandrovitch's face a look of haughtiness and severity whenever anyone inquired after his wife's health. Alexey Alexandrovitch did not want to think at all about his wife's behavior, and he actually succeeded in not thinking about it at all. Alexey Alexandrovitch's permanent summer villa was in Peterhof, and the Countess Lidia Ivanovna used as a rule to spend the summer there, close to Anna, and constantly seeing her. That year Countess Lidia Ivanovna declined to settle in Peterhof, was not once at Anna Arkadyevna's, and in conversation with Alexey Alexandrovitch hinted at the unsuitability of Anna's close intimacy with Betsy and Vronsky. Alexey Alexandrovitch sternly cut her short, roundly declaring his wife to be above suspicion, and from that time began to avoid Countess Lidia Ivanovna. He did not want to see, and did not see, that many people in society cast dubious glances on his wife; he did not want to understand, and did not understand, why his wife had so particularly insisted on staying at Tsarskoe, where Betsy was staying, and not far from the camp of Vronsky's regiment. He did not allow himself to think about it, and he did not think about it; but all the same though he never admitted it to himself, and had no proofs, not even suspicious evidence, in the bottom of his heart he knew beyond all doubt that he was a deceived husband, and he was profoundly miserable about it. How often during those eight years of happy life with his wife Alexey Alexandrovitch had looked at other men's faithless wives and other deceived husbands and asked himself: "How can people descend to that? how is it they don't put an end to such a hideous position?" But now, when the misfortune had come upon himself, he was so far from thinking of putting an end to the position that he would not recognize it at all, would not recognize it just because it was too awful, too unnatural. Since his return from abroad Alexey Alexandrovitch had twice been at their country villa. Once he dined there, another time he spent the evening there with a party of friends, but he had not once stayed the night there, as it had been his habit to do in previous years. The day of the races had been a very busy day for Alexey Alexandrovitch; but when mentally sketching out the day in the morning, he made up his mind to go to their country house to see his wife immediately after dinner, and from there to the races, which all the Court were to witness, and at which he was bound to be present. He was going to see his wife, because he had determined to see her once a week to keep up appearances. And besides, on that day, as it was the fifteenth, he had to give his wife some money for her expenses, according to their usual arrangement. With his habitual control over his thoughts, though he thought all this about his wife, he did not let his thoughts stray further in regard to her. That morning was a very full one for Alexey Alexandrovitch. The evening before, Countess Lidia Ivanovna had sent him a pamphlet by a celebrated traveler in China, who was staying in Petersburg, and with it she enclosed a note begging him to see the traveler himself, as he was an extremely interesting person from various points of view, and likely to be useful. Alexey Alexandrovitch had not had time to read the pamphlet through in the evening, and finished it in the morning. Then people began arriving with petitions, and there came the reports, interviews, appointments, dismissals, apportionment of rewards, pensions, grants, notes, the workaday round, as Alexey Alexandrovitch called it, that always took up so much time. Then there was private business of his own, a visit from the doctor and the steward who managed his property. The steward did not take up much time. He simply gave Alexey Alexandrovitch the money he needed together with a brief statement of the position of his affairs, which was not altogether satisfactory, as it had happened that during that year, owing to increased expenses, more had been paid out than usual, and there was a deficit. But the doctor, a celebrated Petersburg doctor, who was an intimate acquaintance of Alexey Alexandrovitch, took up a great deal of time. Alexey Alexandrovitch had not expected him that day, and was surprised at his visit, and still more so when the doctor questioned him very carefully about his health, listened to his breathing, and tapped at his liver. Alexey Alexandrovitch did not know that his friend Lidia Ivanovna, noticing that he was not as well as usual that year, had begged the doctor to go and examine him. "Do this for my sake," the Countess Lidia Ivanovna had said to him. "I will do it for the sake of Russia, countess," replied the doctor. "A priceless man!" said the Countess Lidia Ivanovna. The doctor was extremely dissatisfied with Alexey Alexandrovitch. He found the liver considerably enlarged, and the digestive powers weakened, while the course of mineral waters had been quite without effect. He prescribed more physical exercise as far as possible, and as far as possible less mental strain, and above all no worry--in other words, just what was as much out of Alexey Alexandrovitch's power as abstaining from breathing. Then he withdrew, leaving in Alexey Alexandrovitch an unpleasant sense that something was wrong with him, and that there was no chance of curing it. As he was coming away, the doctor chanced to meet on the staircase an acquaintance of his, Sludin, who was secretary of Alexey Alexandrovitch's department. They had been comrades at the university, and though they rarely met, they thought highly of each other and were excellent friends, and so there was no one to whom the doctor would have given his opinion of a patient so freely as to Sludin. "How glad I am you've been seeing him!" said Sludin. "He's not well, and I fancy.... Well, what do you think of him?" "I'll tell you," said the doctor, beckoning over Sludin's head to his coachman to bring the carriage round. "It's just this," said the doctor, taking a finger of his kid glove in his white hands and pulling it, "if you don't strain the strings, and then try to break them, you'll find it a difficult job; but strain a string to its very utmost, and the mere weight of one finger on the strained string will snap it. And with his close assiduity, his conscientious devotion to his work, he's strained to the utmost; and there's some outside burden weighing on him, and not a light one," concluded the doctor, raising his eyebrows significantly. "Will you be at the races?" he added, as he sank into his seat in the carriage. "Yes, yes, to be sure; it does waste a lot of time," the doctor responded vaguely to some reply of Sludin's he had not caught. Directly after the doctor, who had taken up so much time, came the celebrated traveler, and Alexey Alexandrovitch, by means of the pamphlet he had only just finished reading and his previous acquaintance with the subject, impressed the traveler by the depth of his knowledge of the subject and the breadth and enlightenment of his view of it. At the same time as the traveler there was announced a provincial marshal of nobility on a visit to Petersburg, with whom Alexey Alexandrovitch had to have some conversation. After his departure, he had to finish the daily routine of business with his secretary, and then he still had to drive round to call on a certain great personage on a matter of grave and serious import. Alexey Alexandrovitch only just managed to be back by five o'clock, his dinner-hour, and after dining with his secretary, he invited him to drive with him to his country villa and to the races. Though he did not acknowledge it to himself, Alexey Alexandrovitch always tried nowadays to secure the presence of a third person in his interviews with his wife. Chapter 27 Anna was upstairs, standing before the looking glass, and, with Annushka's assistance, pinning the last ribbon on her gown when she heard carriage wheels crunching the gravel at the entrance. "It's too early for Betsy," she thought, and glancing out of the window she caught sight of the carriage and the black hat of Alexey Alexandrovitch, and the ears that she knew so well sticking up each side of it. "How unlucky! Can he be going to stay the night?" she wondered, and the thought of all that might come of such a chance struck her as so awful and terrible that, without dwelling on it for a moment, she went down to meet him with a bright and radiant face; and conscious of the presence of that spirit of falsehood and deceit in herself that she had come to know of late, she abandoned herself to that spirit and began talking, hardly knowing what she was saying. "Ah, how nice of you!" she said, giving her husband her hand, and greeting Sludin, who was like one of the family, with a smile. "You're staying the night, I hope?" was the first word the spirit of falsehood prompted her to utter; "and now we'll go together. Only it's a pity I've promised Betsy. She's coming for me." Alexey Alexandrovitch knit his brows at Betsy's name. "Oh, I'm not going to separate the inseparables," he said in his usual bantering tone. "I'm going with Mihail Vassilievitch. I'm ordered exercise by the doctors too. I'll walk, and fancy myself at the springs again." "There's no hurry," said Anna. "Would you like tea?" She rang. "Bring in tea, and tell Seryozha that Alexey Alexandrovitch is here. Well, tell me, how have you been? Mihail Vassilievitch, you've not been to see me before. Look how lovely it is out on the terrace," she said, turning first to one and then to the other. She spoke very simply and naturally, but too much and too fast. She was the more aware of this from noticing in the inquisitive look Mihail Vassilievitch turned on her that he was, as it were, keeping watch on her. Mihail Vassilievitch promptly went out on the terrace. She sat down beside her husband. "You don't look quite well," she said. "Yes," he said; "the doctor's been with me today and wasted an hour of my time. I feel that some one of our friends must have sent him: my health's so precious, it seems." "No; what did he say?" She questioned him about his health and what he had been doing, and tried to persuade him to take a rest and come out to her. All this she said brightly, rapidly, and with a peculiar brilliance in her eyes. But Alexey Alexandrovitch did not now attach any special significance to this tone of hers. He heard only her words and gave them only the direct sense they bore. And he answered simply, though jestingly. There was nothing remarkable in all this conversation, but never after could Anna recall this brief scene without an agonizing pang of shame. Seryozha came in preceded by his governess. If Alexey Alexandrovitch had allowed himself to observe he would have noticed the timid and bewildered eyes with which Seryozha glanced first at his father and then at his mother. But he would not see anything, and he did not see it. "Ah, the young man! He's grown. Really, he's getting quite a man. How are you, young man?" And he gave his hand to the scared child. Seryozha had been shy of his father before, and now, ever since Alexey Alexandrovitch had taken to calling him young man, and since that insoluble question had occurred to him whether Vronsky were a friend or a foe, he avoided his father. He looked round towards his mother as though seeking shelter. It was only with his mother that he was at ease. Meanwhile, Alexey Alexandrovitch was holding his son by the shoulder while he was speaking to the governess, and Seryozha was so miserably uncomfortable that Anna saw he was on the point of tears. Anna, who had flushed a little the instant her son came in, noticing that Seryozha was uncomfortable, got up hurriedly, took Alexey Alexandrovitch's hand from her son's shoulder, and kissing the boy, led him out onto the terrace, and quickly came back. "It's time to start, though," said she, glancing at her watch. "How is it Betsy doesn't come?..." "Yes," said Alexey Alexandrovitch, and getting up, he folded his hands and cracked his fingers. "I've come to bring you some money, too, for nightingales, we know, can't live on fairy tales," he said. "You want it, I expect?" "No, I don't ... yes, I do," she said, not looking at him, and crimsoning to the roots of her hair. "But you'll come back here after the races, I suppose?" "Oh, yes!" answered Alexey Alexandrovitch. "And here's the glory of Peterhof, Princess Tverskaya," he added, looking out of the window at the elegant English carriage with the tiny seats placed extremely high. "What elegance! Charming! Well, let us be starting too, then." Princess Tverskaya did not get out of her carriage, but her groom, in high boots, a cape, and black hat, darted out at the entrance. "I'm going; good-bye!" said Anna, and kissing her son, she went up to Alexey Alexandrovitch and held out her hand to him. "It was ever so nice of you to come." Alexey Alexandrovitch kissed her hand. "Well, _au revoir_, then! You'll come back for some tea; that's delightful!" she said, and went out, gay and radiant. But as soon as she no longer saw him, she was aware of the spot on her hand that his lips had touched, and she shuddered with repulsion. Chapter 28 When Alexey Alexandrovitch reached the race-course, Anna was already sitting in the pavilion beside Betsy, in that pavilion where all the highest society had gathered. She caught sight of her husband in the distance. Two men, her husband and her lover, were the two centers of her existence, and unaided by her external senses she was aware of their nearness. She was aware of her husband approaching a long way off, and she could not help following him in the surging crowd in the midst of which he was moving. She watched his progress towards the pavilion, saw him now responding condescendingly to an ingratiating bow, now exchanging friendly, nonchalant greetings with his equals, now assiduously trying to catch the eye of some great one of this world, and taking off his big round hat that squeezed the tips of his ears. All these ways of his she knew, and all were hateful to her. "Nothing but ambition, nothing but the desire to get on, that's all there is in his soul," she thought; "as for these lofty ideals, love of culture, religion, they are only so many tools for getting on." From his glances towards the ladies' pavilion (he was staring straight at her, but did not distinguish his wife in the sea of muslin, ribbons, feathers, parasols and flowers) she saw that he was looking for her, but she purposely avoided noticing him. "Alexey Alexandrovitch!" Princess Betsy called to him; "I'm sure you don't see your wife: here she is." He smiled his chilly smile. "There's so much splendor here that one's eyes are dazzled," he said, and he went into the pavilion. He smiled to his wife as a man should smile on meeting his wife after only just parting from her, and greeted the princess and other acquaintances, giving to each what was due--that is to say, jesting with the ladies and dealing out friendly greetings among the men. Below, near the pavilion, was standing an adjutant-general of whom Alexey Alexandrovitch had a high opinion, noted for his intelligence and culture. Alexey Alexandrovitch entered into conversation with him. There was an interval between the races, and so nothing hindered conversation. The adjutant-general expressed his disapproval of races. Alexey Alexandrovitch replied defending them. Anna heard his high, measured tones, not losing one word, and every word struck her as false, and stabbed her ears with pain. When the three-mile steeplechase was beginning, she bent forward and gazed with fixed eyes at Vronsky as he went up to his horse and mounted, and at the same time she heard that loathsome, never-ceasing voice of her husband. She was in an agony of terror for Vronsky, but a still greater agony was the never-ceasing, as it seemed to her, stream of her husband's shrill voice with its familiar intonations. "I'm a wicked woman, a lost woman," she thought; "but I don't like lying, I can't endure falsehood, while as for _him_ (her husband) it's the breath of his life--falsehood. He knows all about it, he sees it all; what does he care if he can talk so calmly? If he were to kill me, if he were to kill Vronsky, I might respect him. No, all he wants is falsehood and propriety," Anna said to herself, not considering exactly what it was she wanted of her husband, and how she would have liked to see him behave. She did not understand either that Alexey Alexandrovitch's peculiar loquacity that day, so exasperating to her, was merely the expression of his inward distress and uneasiness. As a child that has been hurt skips about, putting all his muscles into movement to drown the pain, in the same way Alexey Alexandrovitch needed mental exercise to drown the thoughts of his wife that in her presence and in Vronsky's, and with the continual iteration of his name, would force themselves on his attention. And it was as natural for him to talk well and cleverly, as it is natural for a child to skip about. He was saying: "Danger in the races of officers, of cavalry men, is an essential element in the race. If England can point to the most brilliant feats of cavalry in military history, it is simply owing to the fact that she has historically developed this force both in beasts and in men. Sport has, in my opinion, a great value, and as is always the case, we see nothing but what is most superficial." "It's not superficial," said Princess Tverskaya. "One of the officers, they say, has broken two ribs." Alexey Alexandrovitch smiled his smile, which uncovered his teeth, but revealed nothing more. "We'll admit, princess, that that's not superficial," he said, "but internal. But that's not the point," and he turned again to the general with whom he was talking seriously; "we mustn't forget that those who are taking part in the race are military men, who have chosen that career, and one must allow that every calling has its disagreeable side. It forms an integral part of the duties of an officer. Low sports, such as prize-fighting or Spanish bull-fights, are a sign of barbarity. But specialized trials of skill are a sign of development." "No, I shan't come another time; it's too upsetting," said Princess Betsy. "Isn't it, Anna?" "It is upsetting, but one can't tear oneself away," said another lady. "If I'd been a Roman woman I should never have missed a single circus." Anna said nothing, and keeping her opera glass up, gazed always at the same spot. At that moment a tall general walked through the pavilion. Breaking off what he was saying, Alexey Alexandrovitch got up hurriedly, though with dignity, and bowed low to the general. "You're not racing?" the officer asked, chaffing him. "My race is a harder one," Alexey Alexandrovitch responded deferentially. And though the answer meant nothing, the general looked as though he had heard a witty remark from a witty man, and fully relished _la pointe de la sauce_. "There are two aspects," Alexey Alexandrovitch resumed: "those who take part and those who look on; and love for such spectacles is an unmistakable proof of a low degree of development in the spectator, I admit, but..." "Princess, bets!" sounded Stepan Arkadyevitch's voice from below, addressing Betsy. "Who's your favorite?" "Anna and I are for Kuzovlev," replied Betsy. "I'm for Vronsky. A pair of gloves?" "Done!" "But it is a pretty sight, isn't it?" Alexey Alexandrovitch paused while there was talking about him, but he began again directly. "I admit that manly sports do not..." he was continuing. But at that moment the racers started, and all conversation ceased. Alexey Alexandrovitch too was silent, and everyone stood up and turned towards the stream. Alexey Alexandrovitch took no interest in the race, and so he did not watch the racers, but fell listlessly to scanning the spectators with his weary eyes. His eyes rested upon Anna. Her face was white and set. She was obviously seeing nothing and no one but one man. Her hand had convulsively clutched her fan, and she held her breath. He looked at her and hastily turned away, scrutinizing other faces. "But here's this lady too, and others very much moved as well; it's very natural," Alexey Alexandrovitch told himself. He tried not to look at her, but unconsciously his eyes were drawn to her. He examined that face again, trying not to read what was so plainly written on it, and against his own will, with horror read on it what he did not want to know. The first fall--Kuzovlev's, at the stream--agitated everyone, but Alexey Alexandrovitch saw distinctly on Anna's pale, triumphant face that the man she was watching had not fallen. When, after Mahotin and Vronsky had cleared the worst barrier, the next officer had been thrown straight on his head at it and fatally injured, and a shudder of horror passed over the whole public, Alexey Alexandrovitch saw that Anna did not even notice it, and had some difficulty in realizing what they were talking of about her. But more and more often, and with greater persistence, he watched her. Anna, wholly engrossed as she was with the race, became aware of her husband's cold eyes fixed upon her from one side. She glanced round for an instant, looked inquiringly at him, and with a slight frown turned away again. "Ah, I don't care!" she seemed to say to him, and she did not once glance at him again. The race was an unlucky one, and of the seventeen officers who rode in it more than half were thrown and hurt. Towards the end of the race everyone was in a state of agitation, which was intensified by the fact that the Tsar was displeased. Chapter 29 Everyone was loudly expressing disapprobation, everyone was repeating a phrase some one had uttered--"The lions and gladiators will be the next thing," and everyone was feeling horrified; so that when Vronsky fell to the ground, and Anna moaned aloud, there was nothing very out of the way in it. But afterwards a change came over Anna's face which really was beyond decorum. She utterly lost her head. She began fluttering like a caged bird, at one moment would have got up and moved away, at the next turned to Betsy. "Let us go, let us go!" she said. But Betsy did not hear her. She was bending down, talking to a general who had come up to her. Alexey Alexandrovitch went up to Anna and courteously offered her his arm. "Let us go, if you like," he said in French, but Anna was listening to the general and did not notice her husband. "He's broken his leg too, so they say," the general was saying. "This is beyond everything." Without answering her husband, Anna lifted her opera glass and gazed towards the place where Vronsky had fallen; but it was so far off, and there was such a crowd of people about it, that she could make out nothing. She laid down the opera glass, and would have moved away, but at that moment an officer galloped up and made some announcement to the Tsar. Anna craned forward, listening. "Stiva! Stiva!" she cried to her brother. But her brother did not hear her. Again she would have moved away. "Once more I offer you my arm if you want to be going," said Alexey Alexandrovitch, reaching towards her hand. She drew back from him with aversion, and without looking in his face answered: "No, no, let me be, I'll stay." She saw now that from the place of Vronsky's accident an officer was running across the course towards the pavilion. Betsy waved her handkerchief to him. The officer brought the news that the rider was not killed, but the horse had broken its back. On hearing this Anna sat down hurriedly, and hid her face in her fan. Alexey Alexandrovitch saw that she was weeping, and could not control her tears, nor even the sobs that were shaking her bosom. Alexey Alexandrovitch stood so as to screen her, giving her time to recover herself. "For the third time I offer you my arm," he said to her after a little time, turning to her. Anna gazed at him and did not know what to say. Princess Betsy came to her rescue. "No, Alexey Alexandrovitch; I brought Anna and I promised to take her home," put in Betsy. "Excuse me, princess," he said, smiling courteously but looking her very firmly in the face, "but I see that Anna's not very well, and I wish her to come home with me." Anna looked about her in a frightened way, got up submissively, and laid her hand on her husband's arm. "I'll send to him and find out, and let you know," Betsy whispered to her. As they left the pavilion, Alexey Alexandrovitch, as always, talked to those he met, and Anna had, as always, to talk and answer; but she was utterly beside herself, and moved hanging on her husband's arm as though in a dream. "Is he killed or not? Is it true? Will he come or not? Shall I see him today?" she was thinking. She took her seat in her husband's carriage in silence, and in silence drove out of the crowd of carriages. In spite of all he had seen, Alexey Alexandrovitch still did not allow himself to consider his wife's real condition. He merely saw the outward symptoms. He saw that she was behaving unbecomingly, and considered it his duty to tell her so. But it was very difficult for him not to say more, to tell her nothing but that. He opened his mouth to tell her she had behaved unbecomingly, but he could not help saying something utterly different. "What an inclination we all have, though, for these cruel spectacles," he said. "I observe..." "Eh? I don't understand," said Anna contemptuously. He was offended, and at once began to say what he had meant to say. "I am obliged to tell you," he began. "So now we are to have it out," she thought, and she felt frightened. "I am obliged to tell you that your behavior has been unbecoming today," he said to her in French. "In what way has my behavior been unbecoming?" she said aloud, turning her head swiftly and looking him straight in the face, not with the bright expression that seemed covering something, but with a look of determination, under which she concealed with difficulty the dismay she was feeling. "Mind," he said, pointing to the open window opposite the coachman. He got up and pulled up the window. "What did you consider unbecoming?" she repeated. "The despair you were unable to conceal at the accident to one of the riders." He waited for her to answer, but she was silent, looking straight before her. "I have already begged you so to conduct yourself in society that even malicious tongues can find nothing to say against you. There was a time when I spoke of your inward attitude, but I am not speaking of that now. Now I speak only of your external attitude. You have behaved improperly, and I would wish it not to occur again." She did not hear half of what he was saying; she felt panic-stricken before him, and was thinking whether it was true that Vronsky was not killed. Was it of him they were speaking when they said the rider was unhurt, but the horse had broken its back? She merely smiled with a pretense of irony when he finished, and made no reply, because she had not heard what he said. Alexey Alexandrovitch had begun to speak boldly, but as he realized plainly what he was speaking of, the dismay she was feeling infected him too. He saw the smile, and a strange misapprehension came over him. "She is smiling at my suspicions. Yes, she will tell me directly what she told me before; that there is no foundation for my suspicions, that it's absurd." At that moment, when the revelation of everything was hanging over him, there was nothing he expected so much as that she would answer mockingly as before that his suspicions were absurd and utterly groundless. So terrible to him was what he knew that now he was ready to believe anything. But the expression of her face, scared and gloomy, did not now promise even deception. "Possibly I was mistaken," said he. "If so, I beg your pardon." "No, you were not mistaken," she said deliberately, looking desperately into his cold face. "You were not mistaken. I was, and I could not help being in despair. I hear you, but I am thinking of him. I love him, I am his mistress; I can't bear you; I'm afraid of you, and I hate you.... You can do what you like to me." And dropping back into the corner of the carriage, she broke into sobs, hiding her face in her hands. Alexey Alexandrovitch did not stir, and kept looking straight before him. But his whole face suddenly bore the solemn rigidity of the dead, and his expression did not change during the whole time of the drive home. On reaching the house he turned his head to her, still with the same expression. "Very well! But I expect a strict observance of the external forms of propriety till such time"--his voice shook--"as I may take measures to secure my honor and communicate them to you." He got out first and helped her to get out. Before the servants he pressed her hand, took his seat in the carriage, and drove back to Petersburg. Immediately afterwards a footman came from Princess Betsy and brought Anna a note. "I sent to Alexey to find out how he is, and he writes me he is quite well and unhurt, but in despair." "So _he_ will be here," she thought. "What a good thing I told him all!" She glanced at her watch. She had still three hours to wait, and the memories of their last meeting set her blood in flame. "My God, how light it is! It's dreadful, but I do love to see his face, and I do love this fantastic light.... My husband! Oh! yes.... Well, thank God! everything's over with him." Chapter 30 In the little German watering-place to which the Shtcherbatskys had betaken themselves, as in all places indeed where people are gathered together, the usual process, as it were, of the crystallization of society went on, assigning to each member of that society a definite and unalterable place. Just as the particle of water in frost, definitely and unalterably, takes the special form of the crystal of snow, so each new person that arrived at the springs was at once placed in his special place. _Fuerst_ Shtcherbatsky, _sammt Gemahlin und Tochter_, by the apartments they took, and from their name and from the friends they made, were immediately crystallized into a definite place marked out for them. There was visiting the watering-place that year a real German Fuerstin, in consequence of which the crystallizing process went on more vigorously than ever. Princess Shtcherbatskaya wished, above everything, to present her daughter to this German princess, and the day after their arrival she duly performed this rite. Kitty made a low and graceful curtsey in the _very simple_, that is to say, very elegant frock that had been ordered her from Paris. The German princess said, "I hope the roses will soon come back to this pretty little face," and for the Shtcherbatskys certain definite lines of existence were at once laid down from which there was no departing. The Shtcherbatskys made the acquaintance too of the family of an English Lady Somebody, and of a German countess and her son, wounded in the last war, and of a learned Swede, and of M. Canut and his sister. But yet inevitably the Shtcherbatskys were thrown most into the society of a Moscow lady, Marya Yevgenyevna Rtishtcheva and her daughter, whom Kitty disliked, because she had fallen ill, like herself, over a love affair, and a Moscow colonel, whom Kitty had known from childhood, and always seen in uniform and epaulets, and who now, with his little eyes and his open neck and flowered cravat, was uncommonly ridiculous and tedious, because there was no getting rid of him. When all this was so firmly established, Kitty began to be very much bored, especially as the prince went away to Carlsbad and she was left alone with her mother. She took no interest in the people she knew, feeling that nothing fresh would come of them. Her chief mental interest in the watering-place consisted in watching and making theories about the people she did not know. It was characteristic of Kitty that she always imagined everything in people in the most favorable light possible, especially so in those she did not know. And now as she made surmises as to who people were, what were their relations to one another, and what they were like, Kitty endowed them with the most marvelous and noble characters, and found confirmation of her idea in her observations. Of these people the one that attracted her most was a Russian girl who had come to the watering-place with an invalid Russian lady, Madame Stahl, as everyone called her. Madame Stahl belonged to the highest society, but she was so ill that she could not walk, and only on exceptionally fine days made her appearance at the springs in an invalid carriage. But it was not so much from ill-health as from pride--so Princess Shtcherbatskaya interpreted it--that Madame Stahl had not made the acquaintance of anyone among the Russians there. The Russian girl looked after Madame Stahl, and besides that, she was, as Kitty observed, on friendly terms with all the invalids who were seriously ill, and there were many of them at the springs, and looked after them in the most natural way. This Russian girl was not, as Kitty gathered, related to Madame Stahl, nor was she a paid attendant. Madame Stahl called her Varenka, and other people called her "Mademoiselle Varenka." Apart from the interest Kitty took in this girl's relations with Madame Stahl and with other unknown persons, Kitty, as often happened, felt an inexplicable attraction to Mademoiselle Varenka, and was aware when their eyes met that she too liked her. Of Mademoiselle Varenka one would not say that she had passed her first youth, but she was, as it were, a creature without youth; she might have been taken for nineteen or for thirty. If her features were criticized separately, she was handsome rather than plain, in spite of the sickly hue of her face. She would have been a good figure, too, if it had not been for her extreme thinness and the size of her head, which was too large for her medium height. But she was not likely to be attractive to men. She was like a fine flower, already past its bloom and without fragrance, though the petals were still unwithered. Moreover, she would have been unattractive to men also from the lack of just what Kitty had too much of--of the suppressed fire of vitality, and the consciousness of her own attractiveness. She always seemed absorbed in work about which there could be no doubt, and so it seemed she could not take interest in anything outside it. It was just this contrast with her own position that was for Kitty the great attraction of Mademoiselle Varenka. Kitty felt that in her, in her manner of life, she would find an example of what she was now so painfully seeking: interest in life, a dignity in life--apart from the worldly relations of girls with men, which so revolted Kitty, and appeared to her now as a shameful hawking about of goods in search of a purchaser. The more attentively Kitty watched her unknown friend, the more convinced she was this girl was the perfect creature she fancied her, and the more eagerly she wished to make her acquaintance. The two girls used to meet several times a day, and every time they met, Kitty's eyes said: "Who are you? What are you? Are you really the exquisite creature I imagine you to be? But for goodness' sake don't suppose," her eyes added, "that I would force my acquaintance on you, I simply admire you and like you." "I like you too, and you're very, very sweet. And I should like you better still, if I had time," answered the eyes of the unknown girl. Kitty saw indeed, that she was always busy. Either she was taking the children of a Russian family home from the springs, or fetching a shawl for a sick lady, and wrapping her up in it, or trying to interest an irritable invalid, or selecting and buying cakes for tea for someone. Soon after the arrival of the Shtcherbatskys there appeared in the morning crowd at the springs two persons who attracted universal and unfavorable attention. These were a tall man with a stooping figure, and huge hands, in an old coat too short for him, with black, simple, and yet terrible eyes, and a pockmarked, kind-looking woman, very badly and tastelessly dressed. Recognizing these persons as Russians, Kitty had already in her imagination begun constructing a delightful and touching romance about them. But the princess, having ascertained from the visitors' list that this was Nikolay Levin and Marya Nikolaevna, explained to Kitty what a bad man this Levin was, and all her fancies about these two people vanished. Not so much from what her mother told her, as from the fact that it was Konstantin's brother, this pair suddenly seemed to Kitty intensely unpleasant. This Levin, with his continual twitching of his head, aroused in her now an irrepressible feeling of disgust. It seemed to her that his big, terrible eyes, which persistently pursued her, expressed a feeling of hatred and contempt, and she tried to avoid meeting him. Chapter 31 It was a wet day; it had been raining all the morning, and the invalids, with their parasols, had flocked into the arcades. Kitty was walking there with her mother and the Moscow colonel, smart and jaunty in his European coat, bought ready-made at Frankfort. They were walking on one side of the arcade, trying to avoid Levin, who was walking on the other side. Varenka, in her dark dress, in a black hat with a turn-down brim, was walking up and down the whole length of the arcade with a blind Frenchwoman, and, every time she met Kitty, they exchanged friendly glances. "Mamma, couldn't I speak to her?" said Kitty, watching her unknown friend, and noticing that she was going up to the spring, and that they might come there together. "Oh, if you want to so much, I'll find out about her first and make her acquaintance myself," answered her mother. "What do you see in her out of the way? A companion, she must be. If you like, I'll make acquaintance with Madame Stahl; I used to know her _belle-soeur_," added the princess, lifting her head haughtily. Kitty knew that the princess was offended that Madame Stahl had seemed to avoid making her acquaintance. Kitty did not insist. "How wonderfully sweet she is!" she said, gazing at Varenka just as she handed a glass to the Frenchwoman. "Look how natural and sweet it all is." "It's so funny to see your _engouements_," said the princess. "No, we'd better go back," she added, noticing Levin coming towards them with his companion and a German doctor, to whom he was talking very noisily and angrily. They turned to go back, when suddenly they heard, not noisy talk, but shouting. Levin, stopping short, was shouting at the doctor, and the doctor, too, was excited. A crowd gathered about them. The princess and Kitty beat a hasty retreat, while the colonel joined the crowd to find out what was the matter. A few minutes later the colonel overtook them. "What was it?" inquired the princess. "Scandalous and disgraceful!" answered the colonel. "The one thing to be dreaded is meeting Russians abroad. That tall gentleman was abusing the doctor, flinging all sorts of insults at him because he wasn't treating him quite as he liked, and he began waving his stick at him. It's simply a scandal!" "Oh, how unpleasant!" said the princess. "Well, and how did it end?" "Luckily at that point that ... the one in the mushroom hat ... intervened. A Russian lady, I think she is," said the colonel. "Mademoiselle Varenka?" asked Kitty. "Yes, yes. She came to the rescue before anyone; she took the man by the arm and led him away." "There, mamma," said Kitty; "you wonder that I'm enthusiastic about her." The next day, as she watched her unknown friend, Kitty noticed that Mademoiselle Varenka was already on the same terms with Levin and his companion as with her other _proteges_. She went up to them, entered into conversation with them, and served as interpreter for the woman, who could not speak any foreign language. Kitty began to entreat her mother still more urgently to let her make friends with Varenka. And, disagreeable as it was to the princess to seem to take the first step in wishing to make the acquaintance of Madame Stahl, who thought fit to give herself airs, she made inquiries about Varenka, and, having ascertained particulars about her tending to prove that there could be no harm though little good in the acquaintance, she herself approached Varenka and made acquaintance with her. Choosing a time when her daughter had gone to the spring, while Varenka had stopped outside the baker's, the princess went up to her. "Allow me to make your acquaintance," she said, with her dignified smile. "My daughter has lost her heart to you," she said. "Possibly you do not know me. I am..." "That feeling is more than reciprocal, princess," Varenka answered hurriedly. "What a good deed you did yesterday to our poor compatriot!" said the princess. Varenka flushed a little. "I don't remember. I don't think I did anything," she said. "Why, you saved that Levin from disagreeable consequences." "Yes, _sa compagne_ called me, and I tried to pacify him, he's very ill, and was dissatisfied with the doctor. I'm used to looking after such invalids." "Yes, I've heard you live at Mentone with your aunt--I think--Madame Stahl: I used to know her _belle-soeur_." "No, she's not my aunt. I call her mamma, but I am not related to her; I was brought up by her," answered Varenka, flushing a little again. This was so simply said, and so sweet was the truthful and candid expression of her face, that the princess saw why Kitty had taken such a fancy to Varenka. "Well, and what's this Levin going to do?" asked the princess. "He's going away," answered Varenka. At that instant Kitty came up from the spring beaming with delight that her mother had become acquainted with her unknown friend. "Well, see, Kitty, your intense desire to make friends with Mademoiselle. . ." "Varenka," Varenka put in smiling, "that's what everyone calls me." Kitty blushed with pleasure, and slowly, without speaking, pressed her new friend's hand, which did not respond to her pressure, but lay motionless in her hand. The hand did not respond to her pressure, but the face of Mademoiselle Varenka glowed with a soft, glad, though rather mournful smile, that showed large but handsome teeth. "I have long wished for this too," she said. "But you are so busy." "Oh, no, I'm not at all busy," answered Varenka, but at that moment she had to leave her new friends because two little Russian girls, children of an invalid, ran up to her. "Varenka, mamma's calling!" they cried. And Varenka went after them. Chapter 32 The particulars which the princess had learned in regard to Varenka's past and her relations with Madame Stahl were as follows: Madame Stahl, of whom some people said that she had worried her husband out of his life, while others said it was he who had made her wretched by his immoral behavior, had always been a woman of weak health and enthusiastic temperament. When, after her separation from her husband, she gave birth to her only child, the child had died almost immediately, and the family of Madame Stahl, knowing her sensibility, and fearing the news would kill her, had substituted another child, a baby born the same night and in the same house in Petersburg, the daughter of the chief cook of the Imperial Household. This was Varenka. Madame Stahl learned later on that Varenka was not her own child, but she went on bringing her up, especially as very soon afterwards Varenka had not a relation of her own living. Madame Stahl had now been living more than ten years continuously abroad, in the south, never leaving her couch. And some people said that Madame Stahl had made her social position as a philanthropic, highly religious woman; other people said she really was at heart the highly ethical being, living for nothing but the good of her fellow creatures, which she represented herself to be. No one knew what her faith was--Catholic, Protestant, or Orthodox. But one fact was indubitable--she was in amicable relations with the highest dignitaries of all the churches and sects. Varenka lived with her all the while abroad, and everyone who knew Madame Stahl knew and liked Mademoiselle Varenka, as everyone called her. Having learned all these facts, the princess found nothing to object to in her daughter's intimacy with Varenka, more especially as Varenka's breeding and education were of the best--she spoke French and English extremely well--and what was of the most weight, brought a message from Madame Stahl expressing her regret that she was prevented by her ill health from making the acquaintance of the princess. After getting to know Varenka, Kitty became more and more fascinated by her friend, and every day she discovered new virtues in her. The princess, hearing that Varenka had a good voice, asked her to come and sing to them in the evening. "Kitty plays, and we have a piano; not a good one, it's true, but you will give us so much pleasure," said the princess with her affected smile, which Kitty disliked particularly just then, because she noticed that Varenka had no inclination to sing. Varenka came, however, in the evening and brought a roll of music with her. The princess had invited Marya Yevgenyevna and her daughter and the colonel. Varenka seemed quite unaffected by there being persons present she did not know, and she went directly to the piano. She could not accompany herself, but she could sing music at sight very well. Kitty, who played well, accompanied her. "You have an extraordinary talent," the princess said to her after Varenka had sung the first song extremely well. Marya Yevgenyevna and her daughter expressed their thanks and admiration. "Look," said the colonel, looking out of the window, "what an audience has collected to listen to you." There actually was quite a considerable crowd under the windows. "I am very glad it gives you pleasure," Varenka answered simply. Kitty looked with pride at her friend. She was enchanted by her talent, and her voice, and her face, but most of all by her manner, by the way Varenka obviously thought nothing of her singing and was quite unmoved by their praises. She seemed only to be asking: "Am I to sing again, or is that enough?" "If it had been I," thought Kitty, "how proud I should have been! How delighted I should have been to see that crowd under the windows! But she's utterly unmoved by it. Her only motive is to avoid refusing and to please mamma. What is there in her? What is it gives her the power to look down on everything, to be calm independently of everything? How I should like to know it and to learn it of her!" thought Kitty, gazing into her serene face. The princess asked Varenka to sing again, and Varenka sang another song, also smoothly, distinctly, and well, standing erect at the piano and beating time on it with her thin, dark-skinned hand. The next song in the book was an Italian one. Kitty played the opening bars, and looked round at Varenka. "Let's skip that," said Varenka, flushing a little. Kitty let her eyes rest on Varenka's face, with a look of dismay and inquiry. "Very well, the next one," she said hurriedly, turning over the pages, and at once feeling that there was something connected with the song. "No," answered Varenka with a smile, laying her hand on the music, "no, let's have that one." And she sang it just as quietly, as coolly, and as well as the others. When she had finished, they all thanked her again, and went off to tea. Kitty and Varenka went out into the little garden that adjoined the house. "Am I right, that you have some reminiscences connected with that song?" said Kitty. "Don't tell me," she added hastily, "only say if I'm right." "No, why not? I'll tell you simply," said Varenka, and, without waiting for a reply, she went on: "Yes, it brings up memories, once painful ones. I cared for someone once, and I used to sing him that song." Kitty with big, wide-open eyes gazed silently, sympathetically at Varenka. "I cared for him, and he cared for me; but his mother did not wish it, and he married another girl. He's living now not far from us, and I see him sometimes. You didn't think I had a love story too," she said, and there was a faint gleam in her handsome face of that fire which Kitty felt must once have glowed all over her. "I didn't think so? Why, if I were a man, I could never care for anyone else after knowing you. Only I can't understand how he could, to please his mother, forget you and make you unhappy; he had no heart." "Oh, no, he's a very good man, and I'm not unhappy; quite the contrary, I'm very happy. Well, so we shan't be singing any more now," she added, turning towards the house. "How good you are! how good you are!" cried Kitty, and stopping her, she kissed her. "If I could only be even a little like you!" "Why should you be like anyone? You're nice as you are," said Varenka, smiling her gentle, weary smile. "No, I'm not nice at all. Come, tell me.... Stop a minute, let's sit down," said Kitty, making her sit down again beside her. "Tell me, isn't it humiliating to think that a man has disdained your love, that he hasn't cared for it?..." "But he didn't disdain it; I believe he cared for me, but he was a dutiful son..." "Yes, but if it hadn't been on account of his mother, if it had been his own doing?..." said Kitty, feeling she was giving away her secret, and that her face, burning with the flush of shame, had betrayed her already. "In that case he would have done wrong, and I should not have regretted him," answered Varenka, evidently realizing that they were now talking not of her, but of Kitty. "But the humiliation," said Kitty, "the humiliation one can never forget, can never forget," she said, remembering her look at the last ball during the pause in the music. "Where is the humiliation? Why, you did nothing wrong?" "Worse than wrong--shameful." Varenka shook her head and laid her hand on Kitty's hand. "Why, what is there shameful?" she said. "You didn't tell a man, who didn't care for you, that you loved him, did you?" "Of course not; I never said a word, but he knew it. No, no, there are looks, there are ways; I can't forget it, if I live a hundred years." "Why so? I don't understand. The whole point is whether you love him now or not," said Varenka, who called everything by its name. "I hate him; I can't forgive myself." "Why, what for?" "The shame, the humiliation!" "Oh! if everyone were as sensitive as you are!" said Varenka. "There isn't a girl who hasn't been through the same. And it's all so unimportant." "Why, what is important?" said Kitty, looking into her face with inquisitive wonder. "Oh, there's so much that's important," said Varenka, smiling. "Why, what?" "Oh, so much that's more important," answered Varenka, not knowing what to say. But at that instant they heard the princess's voice from the window. "Kitty, it's cold! Either get a shawl, or come indoors." "It really is time to go in!" said Varenka, getting up. "I have to go on to Madame Berthe's; she asked me to." Kitty held her by the hand, and with passionate curiosity and entreaty her eyes asked her: "What is it, what is this of such importance that gives you such tranquillity? You know, tell me!" But Varenka did not even know what Kitty's eyes were asking her. She merely thought that she had to go to see Madame Berthe too that evening, and to make haste home in time for _maman's_ tea at twelve o'clock. She went indoors, collected her music, and saying good-bye to everyone, was about to go. "Allow me to see you home," said the colonel. "Yes, how can you go alone at night like this?" chimed in the princess. "Anyway, I'll send Parasha." Kitty saw that Varenka could hardly restrain a smile at the idea that she needed an escort. "No, I always go about alone and nothing ever happens to me," she said, taking her hat. And kissing Kitty once more, without saying what was important, she stepped out courageously with the music under her arm and vanished into the twilight of the summer night, bearing away with her her secret of what was important and what gave her the calm and dignity so much to be envied. Chapter 33 Kitty made the acquaintance of Madame Stahl too, and this acquaintance, together with her friendship with Varenka, did not merely exercise a great influence on her, it also comforted her in her mental distress. She found this comfort through a completely new world being opened to her by means of this acquaintance, a world having nothing in common with her past, an exalted, noble world, from the height of which she could contemplate her past calmly. It was revealed to her that besides the instinctive life to which Kitty had given herself up hitherto there was a spiritual life. This life was disclosed in religion, but a religion having nothing in common with that one which Kitty had known from childhood, and which found expression in litanies and all-night services at the Widow's Home, where one might meet one's friends, and in learning by heart Slavonic texts with the priest. This was a lofty, mysterious religion connected with a whole series of noble thoughts and feelings, which one could do more than merely believe because one was told to, which one could love. Kitty found all this out not from words. Madame Stahl talked to Kitty as to a charming child that one looks on with pleasure as on the memory of one's youth, and only once she said in passing that in all human sorrows nothing gives comfort but love and faith, and that in the sight of Christ's compassion for us no sorrow is trifling--and immediately talked of other things. But in every gesture of Madame Stahl, in every word, in every heavenly--as Kitty called it--look, and above all in the whole story of her life, which she heard from Varenka, Kitty recognized that something "that was important," of which, till then, she had known nothing. Yet, elevated as Madame Stahl's character was, touching as was her story, and exalted and moving as was her speech, Kitty could not help detecting in her some traits which perplexed her. She noticed that when questioning her about her family, Madame Stahl had smiled contemptuously, which was not in accord with Christian meekness. She noticed, too, that when she had found a Catholic priest with her, Madame Stahl had studiously kept her face in the shadow of the lamp-shade and had smiled in a peculiar way. Trivial as these two observations were, they perplexed her, and she had her doubts as to Madame Stahl. But on the other hand Varenka, alone in the world, without friends or relations, with a melancholy disappointment in the past, desiring nothing, regretting nothing, was just that perfection of which Kitty dared hardly dream. In Varenka she realized that one has but to forget oneself and love others, and one will be calm, happy, and noble. And that was what Kitty longed to be. Seeing now clearly what was _the most important_, Kitty was not satisfied with being enthusiastic over it; she at once gave herself up with her whole soul to the new life that was opening to her. From Varenka's accounts of the doings of Madame Stahl and other people whom she mentioned, Kitty had already constructed the plan of her own future life. She would, like Madame Stahl's niece, Aline, of whom Varenka had talked to her a great deal, seek out those who were in trouble, wherever she might be living, help them as far as she could, give them the Gospel, read the Gospel to the sick, to criminals, to the dying. The idea of reading the Gospel to criminals, as Aline did, particularly fascinated Kitty. But all these were secret dreams, of which Kitty did not talk either to her mother or to Varenka. While awaiting the time for carrying out her plans on a large scale, however, Kitty, even then at the springs, where there were so many people ill and unhappy, readily found a chance for practicing her new principles in imitation of Varenka. At first the princess noticed nothing but that Kitty was much under the influence of her _engouement_, as she called it, for Madame Stahl, and still more for Varenka. She saw that Kitty did not merely imitate Varenka in her conduct, but unconsciously imitated her in her manner of walking, of talking, of blinking her eyes. But later on the princess noticed that, apart from this adoration, some kind of serious spiritual change was taking place in her daughter. The princess saw that in the evenings Kitty read a French testament that Madame Stahl had given her--a thing she had never done before; that she avoided society acquaintances and associated with the sick people who were under Varenka's protection, and especially one poor family, that of a sick painter, Petrov. Kitty was unmistakably proud of playing the part of a sister of mercy in that family. All this was well enough, and the princess had nothing to say against it, especially as Petrov's wife was a perfectly nice sort of woman, and that the German princess, noticing Kitty's devotion, praised her, calling her an angel of consolation. All this would have been very well, if there had been no exaggeration. But the princess saw that her daughter was rushing into extremes, and so indeed she told her. "_Il ne faut jamais rien outrer_," she said to her. Her daughter made her no reply, only in her heart she thought that one could not talk about exaggeration where Christianity was concerned. What exaggeration could there be in the practice of a doctrine wherein one was bidden to turn the other cheek when one was smitten, and give one's cloak if one's coat were taken? But the princess disliked this exaggeration, and disliked even more the fact that she felt her daughter did not care to show her all her heart. Kitty did in fact conceal her new views and feelings from her mother. She concealed them not because she did not respect or did not love her mother, but simply because she was her mother. She would have revealed them to anyone sooner than to her mother. "How is it Anna Pavlovna's not been to see us for so long?" the princess said one day of Madame Petrova. "I've asked her, but she seems put out about something." "No, I've not noticed it, maman," said Kitty, flushing hotly. "Is it long since you went to see them?" "We're meaning to make an expedition to the mountains tomorrow," answered Kitty. "Well, you can go," answered the princess, gazing at her daughter's embarrassed face and trying to guess the cause of her embarrassment. That day Varenka came to dinner and told them that Anna Pavlovna had changed her mind and given up the expedition for the morrow. And the princess noticed again that Kitty reddened. "Kitty, haven't you had some misunderstanding with the Petrovs?" said the princess, when they were left alone. "Why has she given up sending the children and coming to see us?" Kitty answered that nothing had happened between them, and that she could not tell why Anna Pavlovna seemed displeased with her. Kitty answered perfectly truly. She did not know the reason Anna Pavlovna had changed to her, but she guessed it. She guessed at something which she could not tell her mother, which she did not put into words to herself. It was one of those things which one knows but which one can never speak of even to oneself, so terrible and shameful would it be to be mistaken. Again and again she went over in her memory all her relations with the family. She remembered the simple delight expressed on the round, good-humored face of Anna Pavlovna at their meetings; she remembered their secret confabulations about the invalid, their plots to draw him away from the work which was forbidden him, and to get him out-of-doors; the devotion of the youngest boy, who used to call her "my Kitty," and would not go to bed without her. How nice it all was! Then she recalled the thin, terribly thin figure of Petrov, with his long neck, in his brown coat, his scant, curly hair, his questioning blue eyes that were so terrible to Kitty at first, and his painful attempts to seem hearty and lively in her presence. She recalled the efforts she had made at first to overcome the repugnance she felt for him, as for all consumptive people, and the pains it had cost her to think of things to say to him. She recalled the timid, softened look with which he gazed at her, and the strange feeling of compassion and awkwardness, and later of a sense of her own goodness, which she had felt at it. How nice it all was! But all that was at first. Now, a few days ago, everything was suddenly spoiled. Anna Pavlovna had met Kitty with affected cordiality, and had kept continual watch on her and on her husband. Could that touching pleasure he showed when she came near be the cause of Anna Pavlovna's coolness? "Yes," she mused, "there was something unnatural about Anna Pavlovna, and utterly unlike her good nature, when she said angrily the day before yesterday: 'There, he will keep waiting for you; he wouldn't drink his coffee without you, though he's grown so dreadfully weak.'" "Yes, perhaps, too, she didn't like it when I gave him the rug. It was all so simple, but he took it so awkwardly, and was so long thanking me, that I felt awkward too. And then that portrait of me he did so well. And most of all that look of confusion and tenderness! Yes, yes, that's it!" Kitty repeated to herself with horror. "No, it can't be, it oughtn't to be! He's so much to be pitied!" she said to herself directly after. This doubt poisoned the charm of her new life. Chapter 34 Before the end of the course of drinking the waters, Prince Shtcherbatsky, who had gone on from Carlsbad to Baden and Kissingen to Russian friends--to get a breath of Russian air, as he said--came back to his wife and daughter. The views of the prince and of the princess on life abroad were completely opposed. The princess thought everything delightful, and in spite of her established position in Russian society, she tried abroad to be like a European fashionable lady, which she was not--for the simple reason that she was a typical Russian gentlewoman; and so she was affected, which did not altogether suit her. The prince, on the contrary, thought everything foreign detestable, got sick of European life, kept to his Russian habits, and purposely tried to show himself abroad less European than he was in reality. The prince returned thinner, with the skin hanging in loose bags on his cheeks, but in the most cheerful frame of mind. His good humor was even greater when he saw Kitty completely recovered. The news of Kitty's friendship with Madame Stahl and Varenka, and the reports the princess gave him of some kind of change she had noticed in Kitty, troubled the prince and aroused his habitual feeling of jealousy of everything that drew his daughter away from him, and a dread that his daughter might have got out of the reach of his influence into regions inaccessible to him. But these unpleasant matters were all drowned in the sea of kindliness and good humor which was always within him, and more so than ever since his course of Carlsbad waters. The day after his arrival the prince, in his long overcoat, with his Russian wrinkles and baggy cheeks propped up by a starched collar, set off with his daughter to the spring in the greatest good humor. It was a lovely morning: the bright, cheerful houses with their little gardens, the sight of the red-faced, red-armed, beer-drinking German waitresses, working away merrily, did the heart good. But the nearer they got to the springs the oftener they met sick people; and their appearance seemed more pitiable than ever among the everyday conditions of prosperous German life. Kitty was no longer struck by this contrast. The bright sun, the brilliant green of the foliage, the strains of the music were for her the natural setting of all these familiar faces, with their changes to greater emaciation or to convalescence, for which she watched. But to the prince the brightness and gaiety of the June morning, and the sound of the orchestra playing a gay waltz then in fashion, and above all, the appearance of the healthy attendants, seemed something unseemly and monstrous, in conjunction with these slowly moving, dying figures gathered together from all parts of Europe. In spite of his feeling of pride and, as it were, of the return of youth, with his favorite daughter on his arm, he felt awkward, and almost ashamed of his vigorous step and his sturdy, stout limbs. He felt almost like a man not dressed in a crowd. "Present me to your new friends," he said to his daughter, squeezing her hand with his elbow. "I like even your horrid Soden for making you so well again. Only it's melancholy, very melancholy here. Who's that?" Kitty mentioned the names of all the people they met, with some of whom she was acquainted and some not. At the entrance of the garden they met the blind lady, Madame Berthe, with her guide, and the prince was delighted to see the old Frenchwoman's face light up when she heard Kitty's voice. She at once began talking to him with French exaggerated politeness, applauding him for having such a delightful daughter, extolling Kitty to the skies before her face, and calling her a treasure, a pearl, and a consoling angel. "Well, she's the second angel, then," said the prince, smiling. "she calls Mademoiselle Varenka angel number one." "Oh! Mademoiselle Varenka, she's a real angel, allez," Madame Berthe assented. In the arcade they met Varenka herself. She was walking rapidly towards them carrying an elegant red bag. "Here is papa come," Kitty said to her. Varenka made--simply and naturally as she did everything--a movement between a bow and a curtsey, and immediately began talking to the prince, without shyness, naturally, as she talked to everyone. "Of course I know you; I know you very well," the prince said to her with a smile, in which Kitty detected with joy that her father liked her friend. "Where are you off to in such haste?" "Maman's here," she said, turning to Kitty. "She has not slept all night, and the doctor advised her to go out. I'm taking her her work." "So that's angel number one?" said the prince when Varenka had gone on. Kitty saw that her father had meant to make fun of Varenka, but that he could not do it because he liked her. "Come, so we shall see all your friends," he went on, "even Madame Stahl, if she deigns to recognize me." "Why, did you know her, papa?" Kitty asked apprehensively, catching the gleam of irony that kindled in the prince's eyes at the mention of Madame Stahl. "I used to know her husband, and her too a little, before she'd joined the Pietists." "What is a Pietist, papa?" asked Kitty, dismayed to find that what she prized so highly in Madame Stahl had a name. "I don't quite know myself. I only know that she thanks God for everything, for every misfortune, and thanks God too that her husband died. And that's rather droll, as they didn't get on together." "Who's that? What a piteous face!" he asked, noticing a sick man of medium height sitting on a bench, wearing a brown overcoat and white trousers that fell in strange folds about his long, fleshless legs. This man lifted his straw hat, showed his scanty curly hair and high forehead, painfully reddened by the pressure of the hat. "That's Petrov, an artist," answered Kitty, blushing. "And that's his wife," she added, indicating Anna Pavlovna, who, as though on purpose, at the very instant they approached walked away after a child that had run off along a path. "Poor fellow! and what a nice face he has!" said the prince. "Why don't you go up to him? He wanted to speak to you." "Well, let us go, then," said Kitty, turning round resolutely. "How are you feeling today?" she asked Petrov. Petrov got up, leaning on his stick, and looked shyly at the prince. "This is my daughter," said the prince. "Let me introduce myself." The painter bowed and smiled, showing his strangely dazzling white teeth. "We expected you yesterday, princess," he said to Kitty. He staggered as he said this, and then repeated the motion, trying to make it seem as if it had been intentional. "I meant to come, but Varenka said that Anna Pavlovna sent word you were not going." "Not going!" said Petrov, blushing, and immediately beginning to cough, and his eyes sought his wife. "Anita! Anita!" he said loudly, and the swollen veins stood out like cords on his thin white neck. Anna Pavlovna came up. "So you sent word to the princess that we weren't going!" he whispered to her angrily, losing his voice. "Good morning, princess," said Anna Pavlovna, with an assumed smile utterly unlike her former manner. "Very glad to make your acquaintance," she said to the prince. "You've long been expected, prince." "What did you send word to the princess that we weren't going for?" the artist whispered hoarsely once more, still more angrily, obviously exasperated that his voice failed him so that he could not give his words the expression he would have liked to. "Oh, mercy on us! I thought we weren't going," his wife answered crossly. "What, when...." He coughed and waved his hand. The prince took off his hat and moved away with his daughter. "Ah! ah!" he sighed deeply. "Oh, poor things!" "Yes, papa," answered Kitty. "And you must know they've three children, no servant, and scarcely any means. He gets something from the Academy," she went on briskly, trying to drown the distress that the queer change in Anna Pavlovna's manner to her had aroused in her. "Oh, here's Madame Stahl," said Kitty, indicating an invalid carriage, where, propped on pillows, something in gray and blue was lying under a sunshade. This was Madame Stahl. Behind her stood the gloomy, healthy-looking German workman who pushed the carriage. Close by was standing a flaxen-headed Swedish count, whom Kitty knew by name. Several invalids were lingering near the low carriage, staring at the lady as though she were some curiosity. The prince went up to her, and Kitty detected that disconcerting gleam of irony in his eyes. He went up to Madame Stahl, and addressed her with extreme courtesy and affability in that excellent French that so few speak nowadays. "I don't know if you remember me, but I must recall myself to thank you for your kindness to my daughter," he said, taking off his hat and not putting it on again. "Prince Alexander Shtcherbatsky," said Madame Stahl, lifting upon him her heavenly eyes, in which Kitty discerned a look of annoyance. "Delighted! I have taken a great fancy to your daughter." "You are still in weak health?" "Yes; I'm used to it," said Madame Stahl, and she introduced the prince to the Swedish count. "You are scarcely changed at all," the prince said to her. "It's ten or eleven years since I had the honor of seeing you." "Yes; God sends the cross and sends the strength to bear it. Often one wonders what is the goal of this life?... The other side!" she said angrily to Varenka, who had rearranged the rug over her feet not to her satisfaction. "To do good, probably," said the prince with a twinkle in his eye. "That is not for us to judge," said Madame Stahl, perceiving the shade of expression on the prince's face. "So you will send me that book, dear count? I'm very grateful to you," she said to the young Swede. "Ah!" cried the prince, catching sight of the Moscow colonel standing near, and with a bow to Madame Stahl he walked away with his daughter and the Moscow colonel, who joined them. "That's our aristocracy, prince!" the Moscow colonel said with ironical intention. He cherished a grudge against Madame Stahl for not making his acquaintance. "She's just the same," replied the prince. "Did you know her before her illness, prince--that's to say before she took to her bed?" "Yes. She took to her bed before my eyes," said the prince. "They say it's ten years since she has stood on her feet." "She doesn't stand up because her legs are too short. She's a very bad figure." "Papa, it's not possible!" cried Kitty. "That's what wicked tongues say, my darling. And your Varenka catches it too," he added. "Oh, these invalid ladies!" "Oh, no, papa!" Kitty objected warmly. "Varenka worships her. And then she does so much good! Ask anyone! Everyone knows her and Aline Stahl." "Perhaps so," said the prince, squeezing her hand with his elbow; "but it's better when one does good so that you may ask everyone and no one knows." Kitty did not answer, not because she had nothing to say, but because she did not care to reveal her secret thoughts even to her father. But, strange to say, although she had so made up her mind not to be influenced by her father's views, not to let him into her inmost sanctuary, she felt that the heavenly image of Madame Stahl, which she had carried for a whole month in her heart, had vanished, never to return, just as the fantastic figure made up of some clothes thrown down at random vanishes when one sees that it is only some garment lying there. All that was left was a woman with short legs, who lay down because she had a bad figure, and worried patient Varenka for not arranging her rug to her liking. And by no effort of the imagination could Kitty bring back the former Madame Stahl. Chapter 35 The prince communicated his good humor to his own family and his friends, and even to the German landlord in whose rooms the Shtcherbatskys were staying. On coming back with Kitty from the springs, the prince, who had asked the colonel, and Marya Yevgenyevna, and Varenka all to come and have coffee with them, gave orders for a table and chairs to be taken into the garden under the chestnut tree, and lunch to be laid there. The landlord and the servants, too, grew brisker under the influence of his good spirits. They knew his open-handedness; and half an hour later the invalid doctor from Hamburg, who lived on the top floor, looked enviously out of the window at the merry party of healthy Russians assembled under the chestnut tree. In the trembling circles of shadow cast by the leaves, at a table, covered with a white cloth, and set with coffeepot, bread-and-butter, cheese, and cold game, sat the princess in a high cap with lilac ribbons, distributing cups and bread-and-butter. At the other end sat the prince, eating heartily, and talking loudly and merrily. The prince had spread out near him his purchases, carved boxes, and knick-knacks, paper-knives of all sorts, of which he bought a heap at every watering-place, and bestowed them upon everyone, including Lieschen, the servant girl, and the landlord, with whom he jested in his comically bad German, assuring him that it was not the water had cured Kitty, but his splendid cookery, especially his plum soup. The princess laughed at her husband for his Russian ways, but she was more lively and good-humored than she had been all the while she had been at the waters. The colonel smiled, as he always did, at the prince's jokes, but as far as regards Europe, of which he believed himself to be making a careful study, he took the princess's side. The simple-hearted Marya Yevgenyevna simply roared with laughter at everything absurd the prince said, and his jokes made Varenka helpless with feeble but infectious laughter, which was something Kitty had never seen before. Kitty was glad of all this, but she could not be light-hearted. She could not solve the problem her father had unconsciously set her by his goodhumored view of her friends, and of the life that had so attracted her. To this doubt there was joined the change in her relations with the Petrovs, which had been so conspicuously and unpleasantly marked that morning. Everyone was good humored, but Kitty could not feel good humored, and this increased her distress. She felt a feeling such as she had known in childhood, when she had been shut in her room as a punishment, and had heard her sisters' merry laughter outside. "Well, but what did you buy this mass of things for?" said the princess, smiling, and handing her husband a cup of coffee. "One goes for a walk, one looks in a shop, and they ask you to buy. '_Erlaucht, Durchlaucht?_' Directly they say '_Durchlaucht_,' I can't hold out. I lose ten thalers." "It's simply from boredom," said the princess. "Of course it is. Such boredom, my dear, that one doesn't know what to do with oneself." "How can you be bored, prince? There's so much that's interesting now in Germany," said Marya Yevgenyevna. "But I know everything that's interesting: the plum soup I know, and the pea sausages I know. I know everything." "No, you may say what you like, prince, there's the interest of their institutions," said the colonel. "But what is there interesting about it? They're all as pleased as brass halfpence. They've conquered everybody, and why am I to be pleased at that? I haven't conquered anyone; and I'm obliged to take off my own boots, yes, and put them away too; in the morning, get up and dress at once, and go to the dining room to drink bad tea! How different it is at home! You get up in no haste, you get cross, grumble a little, and come round again. You've time to think things over, and no hurry." "But time's money, you forget that," said the colonel. "Time, indeed, that depends! Why, there's time one would give a month of for sixpence, and time you wouldn't give half an hour of for any money. Isn't that so, Katinka? What is it? why are you so depressed?" "I'm not depressed." "Where are you off to? Stay a little longer," he said to Varenka. "I must be going home," said Varenka, getting up, and again she went off into a giggle. When she had recovered, she said good-bye, and went into the house to get her hat. Kitty followed her. Even Varenka struck her as different. She was not worse, but different from what she had fancied her before. "Oh, dear! it's a long while since I've laughed so much!" said Varenka, gathering up her parasol and her bag. "How nice he is, your father!" Kitty did not speak. "When shall I see you again?" asked Varenka. "Mamma meant to go and see the Petrovs. Won't you be there?" said Kitty, to try Varenka. "Yes," answered Varenka. "They're getting ready to go away, so I promised to help them pack." "Well, I'll come too, then." "No, why should you?" "Why not? why not? why not?" said Kitty, opening her eyes wide, and clutching at Varenka's parasol, so as not to let her go. "No, wait a minute; why not?" "Oh, nothing; your father has come, and besides, they will feel awkward at your helping." "No, tell me why you don't want me to be often at the Petrovs'. You don't want me to--why not?" "I didn't say that," said Varenka quietly. "No, please tell me!" "Tell you everything?" asked Varenka. "Everything, everything!" Kitty assented. "Well, there's really nothing of any consequence; only that Mihail Alexeyevitch" (that was the artist's name) "had meant to leave earlier, and now he doesn't want to go away," said Varenka, smiling. "Well, well!" Kitty urged impatiently, looking darkly at Varenka. "Well, and for some reason Anna Pavlovna told him that he didn't want to go because you are here. Of course, that was nonsense; but there was a dispute over it--over you. You know how irritable these sick people are." Kitty, scowling more than ever, kept silent, and Varenka went on speaking alone, trying to soften or soothe her, and seeing a storm coming--she did not know whether of tears or of words. "So you'd better not go.... You understand; you won't be offended?..." "And it serves me right! And it serves me right!" Kitty cried quickly, snatching the parasol out of Varenka's hand, and looking past her friend's face. Varenka felt inclined to smile, looking at her childish fury, but she was afraid of wounding her. "How does it serve you right? I don't understand," she said. "It serves me right, because it was all sham; because it was all done on purpose, and not from the heart. What business had I to interfere with outsiders? And so it's come about that I'm a cause of quarrel, and that I've done what nobody asked me to do. Because it was all a sham! a sham! a sham!..." "A sham! with what object?" said Varenka gently. "Oh, it's so idiotic! so hateful! There was no need whatever for me.... Nothing but sham!" she said, opening and shutting the parasol. "But with what object?" "To seem better to people, to myself, to God; to deceive everyone. No! now I won't descend to that. I'll be bad; but anyway not a liar, a cheat." "But who is a cheat?" said Varenka reproachfully. "You speak as if..." But Kitty was in one of her gusts of fury, and she would not let her finish. "I don't talk about you, not about you at all. You're perfection. Yes, yes, I know you're all perfection; but what am I to do if I'm bad? This would never have been if I weren't bad. So let me be what I am. I won't be a sham. What have I to do with Anna Pavlovna? Let them go their way, and me go mine. I can't be different.... And yet it's not that, it's not that." "What is not that?" asked Varenka in bewilderment. "Everything. I can't act except from the heart, and you act from principle. I liked you simply, but you most likely only wanted to save me, to improve me." "You are unjust," said Varenka. "But I'm not speaking of other people, I'm speaking of myself." "Kitty," they heard her mother's voice, "come here, show papa your necklace." Kitty, with a haughty air, without making peace with her friend, took the necklace in a little box from the table and went to her mother. "What's the matter? Why are you so red?" her mother and father said to her with one voice. "Nothing," she answered. "I'll be back directly," and she ran back. "She's still here," she thought. "What am I to say to her? Oh, dear! what have I done, what have I said? Why was I rude to her? What am I to do? What am I to say to her?" thought Kitty, and she stopped in the doorway. Varenka in her hat and with the parasol in her hands was sitting at the table examining the spring which Kitty had broken. She lifted her head. "Varenka, forgive me, do forgive me," whispered Kitty, going up to her. "I don't remember what I said. I..." "I really didn't mean to hurt you," said Varenka, smiling. Peace was made. But with her father's coming all the world in which she had been living was transformed for Kitty. She did not give up everything she had learned, but she became aware that she had deceived herself in supposing she could be what she wanted to be. Her eyes were, it seemed, opened; she felt all the difficulty of maintaining herself without hypocrisy and self-conceit on the pinnacle to which she had wished to mount. Moreover, she became aware of all the dreariness of the world of sorrow, of sick and dying people, in which she had been living. The efforts she had made to like it seemed to her intolerable, and she felt a longing to get back quickly into the fresh air, to Russia, to Ergushovo, where, as she knew from letters, her sister Dolly had already gone with her children. But her affection for Varenka did not wane. As she said good-bye, Kitty begged her to come to them in Russia. "I'll come when you get married," said Varenka. "I shall never marry." "Well, then, I shall never come." "Well, then, I shall be married simply for that. Mind now, remember your promise," said Kitty. The doctor's prediction was fulfilled. Kitty returned home to Russia cured. She was not so gay and thoughtless as before, but she was serene. Her Moscow troubles had become a memory to her. PART THREE Chapter 1 Sergey Ivanovitch Koznishev wanted a rest from mental work, and instead of going abroad as he usually did, he came towards the end of May to stay in the country with his brother. In his judgment the best sort of life was a country life. He had come now to enjoy such a life at his brother's. Konstantin Levin was very glad to have him, especially as he did not expect his brother Nikolay that summer. But in spite of his affection and respect for Sergey Ivanovitch, Konstantin Levin was uncomfortable with his brother in the country. It made him uncomfortable, and it positively annoyed him to see his brother's attitude to the country. To Konstantin Levin the country was the background of life, that is of pleasures, endeavors, labor. To Sergey Ivanovitch the country meant on one hand rest from work, on the other a valuable antidote to the corrupt influences of town, which he took with satisfaction and a sense of its utility. To Konstantin Levin the country was good first because it afforded a field for labor, of the usefulness of which there could be no doubt. To Sergey Ivanovitch the country was particularly good, because there it was possible and fitting to do nothing. Moreover, Sergey Ivanovitch's attitude to the peasants rather piqued Konstantin. Sergey Ivanovitch used to say that he knew and liked the peasantry, and he often talked to the peasants, which he knew how to do without affectation or condescension, and from every such conversation he would deduce general conclusions in favor of the peasantry and in confirmation of his knowing them. Konstantin Levin did not like such an attitude to the peasants. To Konstantin the peasant was simply the chief partner in their common labor, and in spite of all the respect and the love, almost like that of kinship, he had for the peasant--sucked in probably, as he said himself, with the milk of his peasant nurse--still as a fellow-worker with him, while sometimes enthusiastic over the vigor, gentleness, and justice of these men, he was very often, when their common labors called for other qualities, exasperated with the peasant for his carelessness, lack of method, drunkenness, and lying. If he had been asked whether he liked or didn't like the peasants, Konstantin Levin would have been absolutely at a loss what to reply. He liked and did not like the peasants, just as he liked and did not like men in general. Of course, being a good-hearted man, he liked men rather than he disliked them, and so too with the peasants. But like or dislike "the people" as something apart he could not, not only because he lived with "the people," and all his interests were bound up with theirs, but also because he regarded himself as a part of "the people," did not see any special qualities or failings distinguishing himself and "the people," and could not contrast himself with them. Moreover, although he had lived so long in the closest relations with the peasants, as farmer and arbitrator, and what was more, as adviser (the peasants trusted him, and for thirty miles round they would come to ask his advice), he had no definite views of "the people," and would have been as much at a loss to answer the question whether he knew "the people" as the question whether he liked them. For him to say he knew the peasantry would have been the same as to say he knew men. He was continually watching and getting to know people of all sorts, and among them peasants, whom he regarded as good and interesting people, and he was continually observing new points in them, altering his former views of them and forming new ones. With Sergey Ivanovitch it was quite the contrary. Just as he liked and praised a country life in comparison with the life he did not like, so too he liked the peasantry in contradistinction to the class of men he did not like, and so too he knew the peasantry as something distinct from and opposed to men generally. In his methodical brain there were distinctly formulated certain aspects of peasant life, deduced partly from that life itself, but chiefly from contrast with other modes of life. He never changed his opinion of the peasantry and his sympathetic attitude towards them. In the discussions that arose between the brothers on their views of the peasantry, Sergey Ivanovitch always got the better of his brother, precisely because Sergey Ivanovitch had definite ideas about the peasant--his character, his qualities, and his tastes. Konstantin Levin had no definite and unalterable idea on the subject, and so in their arguments Konstantin was readily convicted of contradicting himself. In Sergey Ivanovitch's eyes his younger brother was a capital fellow, _with his heart in the right place_ (as he expressed it in French), but with a mind which, though fairly quick, was too much influenced by the impressions of the moment, and consequently filled with contradictions. With all the condescension of an elder brother he sometimes explained to him the true import of things, but he derived little satisfaction from arguing with him because he got the better of him too easily. Konstantin Levin regarded his brother as a man of immense intellect and culture, as generous in the highest sense of the word, and possessed of a special faculty for working for the public good. But in the depths of his heart, the older he became, and the more intimately he knew his brother, the more and more frequently the thought struck him that this faculty of working for the public good, of which he felt himself utterly devoid, was possibly not so much a quality as a lack of something--not a lack of good, honest, noble desires and tastes, but a lack of vital force, of what is called heart, of that impulse which drives a man to choose someone out of the innumerable paths of life, and to care only for that one. The better he knew his brother, the more he noticed that Sergey Ivanovitch, and many other people who worked for the public welfare, were not led by an impulse of the heart to care for the public good, but reasoned from intellectual considerations that it was a right thing to take interest in public affairs, and consequently took interest in them. Levin was confirmed in this generalization by observing that his brother did not take questions affecting the public welfare or the question of the immortality of the soul a bit more to heart than he did chess problems, or the ingenious construction of a new machine. Besides this, Konstantin Levin was not at his ease with his brother, because in summer in the country Levin was continually busy with work on the land, and the long summer day was not long enough for him to get through all he had to do, while Sergey Ivanovitch was taking a holiday. But though he was taking a holiday now, that is to say, he was doing no writing, he was so used to intellectual activity that he liked to put into concise and eloquent shape the ideas that occurred to him, and liked to have someone to listen to him. His most usual and natural listener was his brother. And so in spite of the friendliness and directness of their relations, Konstantin felt an awkwardness in leaving him alone. Sergey Ivanovitch liked to stretch himself on the grass in the sun, and to lie so, basking and chatting lazily. "You wouldn't believe," he would say to his brother, "what a pleasure this rural laziness is to me. Not an idea in one's brain, as empty as a drum!" But Konstantin Levin found it dull sitting and listening to him, especially when he knew that while he was away they would be carting dung onto the fields not ploughed ready for it, and heaping it all up anyhow; and would not screw the shares in the ploughs, but would let them come off and then say that the new ploughs were a silly invention, and there was nothing like the old Andreevna plough, and so on. "Come, you've done enough trudging about in the heat," Sergey Ivanovitch would say to him. "No, I must just run round to the counting-house for a minute," Levin would answer, and he would run off to the fields. Chapter 2 Early in June it happened that Agafea Mihalovna, the old nurse and housekeeper, in carrying to the cellar a jar of mushrooms she had just pickled, slipped, fell, and sprained her wrist. The district doctor, a talkative young medical student, who had just finished his studies, came to see her. He examined the wrist, said it was not broken, was delighted at a chance of talking to the celebrated Sergey Ivanovitch Koznishev, and to show his advanced views of things told him all the scandal of the district, complaining of the poor state into which the district council had fallen. Sergey Ivanovitch listened attentively, asked him questions, and, roused by a new listener, he talked fluently, uttered a few keen and weighty observations, respectfully appreciated by the young doctor, and was soon in that eager frame of mind his brother knew so well, which always, with him, followed a brilliant and eager conversation. After the departure of the doctor, he wanted to go with a fishing rod to the river. Sergey Ivanovitch was fond of angling, and was, it seemed, proud of being able to care for such a stupid occupation. Konstantin Levin, whose presence was needed in the plough land and meadows, had come to take his brother in the trap. It was that time of the year, the turning-point of summer, when the crops of the present year are a certainty, when one begins to think of the sowing for next year, and the mowing is at hand; when the rye is all in ear, though its ears are still light, not yet full, and it waves in gray-green billows in the wind; when the green oats, with tufts of yellow grass scattered here and there among it, droop irregularly over the late-sown fields; when the early buckwheat is already out and hiding the ground; when the fallow lands, trodden hard as stone by the cattle, are half ploughed over, with paths left untouched by the plough; when from the dry dung-heaps carted onto the fields there comes at sunset a smell of manure mixed with meadow-sweet, and on the low-lying lands the riverside meadows are a thick sea of grass waiting for the mowing, with blackened heaps of the stalks of sorrel among it. It was the time when there comes a brief pause in the toil of the fields before the beginning of the labors of harvest--every year recurring, every year straining every nerve of the peasants. The crop was a splendid one, and bright, hot summer days had set in with short, dewy nights. The brothers had to drive through the woods to reach the meadows. Sergey Ivanovitch was all the while admiring the beauty of the woods, which were a tangled mass of leaves, pointing out to his brother now an old lime tree on the point of flowering, dark on the shady side, and brightly spotted with yellow stipules, now the young shoots of this year's saplings brilliant with emerald. Konstantin Levin did not like talking and hearing about the beauty of nature. Words for him took away the beauty of what he saw. He assented to what his brother said, but he could not help beginning to think of other things. When they came out of the woods, all his attention was engrossed by the view of the fallow land on the upland, in parts yellow with grass, in parts trampled and checkered with furrows, in parts dotted with ridges of dung, and in parts even ploughed. A string of carts was moving across it. Levin counted the carts, and was pleased that all that were wanted had been brought, and at the sight of the meadows his thoughts passed to the mowing. He always felt something special moving him to the quick at the hay-making. On reaching the meadow Levin stopped the horse. The morning dew was still lying on the thick undergrowth of the grass, and that he might not get his feet wet, Sergey Ivanovitch asked his brother to drive him in the trap up to the willow tree from which the carp was caught. Sorry as Konstantin Levin was to crush down his mowing grass, he drove him into the meadow. The high grass softly turned about the wheels and the horse's legs, leaving its seeds clinging to the wet axles and spokes of the wheels. His brother seated himself under a bush, arranging his tackle, while Levin led the horse away, fastened him up, and walked into the vast gray-green sea of grass unstirred by the wind. The silky grass with its ripe seeds came almost to his waist in the dampest spots. Crossing the meadow, Konstantin Levin came out onto the road, and met an old man with a swollen eye, carrying a skep on his shoulder. "What? taken a stray swarm, Fomitch?" he asked. "No, indeed, Konstantin Dmitrich! All we can do to keep our own! This is the second swarm that has flown away.... Luckily the lads caught them. They were ploughing your field. They unyoked the horses and galloped after them." "Well, what do you say, Fomitch--start mowing or wait a bit?" "Eh, well. Our way's to wait till St. Peter's Day. But you always mow sooner. Well, to be sure, please God, the hay's good. There'll be plenty for the beasts." "What do you think about the weather?" "That's in God's hands. Maybe it will be fine." Levin went up to his brother. Sergey Ivanovitch had caught nothing, but he was not bored, and seemed in the most cheerful frame of mind. Levin saw that, stimulated by his conversation with the doctor, he wanted to talk. Levin, on the other hand, would have liked to get home as soon as possible to give orders about getting together the mowers for next day, and to set at rest his doubts about the mowing, which greatly absorbed him. "Well, let's be going," he said. "Why be in such a hurry? Let's stay a little. But how wet you are! Even though one catches nothing, it's nice. That's the best thing about every part of sport, that one has to do with nature. How exquisite this steely water is!" said Sergey Ivanovitch. "These riverside banks always remind me of the riddle--do you know it? 'The grass says to the water: we quiver and we quiver.'" "I don't know the riddle," answered Levin wearily. Chapter 3 "Do you know, I've been thinking about you," said Sergey Ivanovitch. "It's beyond everything what's being done in the district, according to what this doctor tells me. He's a very intelligent fellow. And as I've told you before, I tell you again: it's not right for you not to go to the meetings, and altogether to keep out of the district business. If decent people won't go into it, of course it's bound to go all wrong. We pay the money, and it all goes in salaries, and there are no schools, nor district nurses, nor midwives, nor drugstores--nothing." "Well, I did try, you know," Levin said slowly and unwillingly. "I can't! and so there's no help for it." "But why can't you? I must own I can't make it out. Indifference, incapacity--I won't admit; surely it's not simply laziness?" "None of those things. I've tried, and I see I can do nothing," said Levin. He had hardly grasped what his brother was saying. Looking towards the plough land across the river, he made out something black, but he could not distinguish whether it was a horse or the bailiff on horseback. "Why is it you can do nothing? You made an attempt and didn't succeed, as you think, and you give in. How can you have so little self-respect?" "Self-respect!" said Levin, stung to the quick by his brother's words; "I don't understand. If they'd told me at college that other people understood the integral calculus, and I didn't, then pride would have come in. But in this case one wants first to be convinced that one has certain qualifications for this sort of business, and especially that all this business is of great importance." "What! do you mean to say it's not of importance?" said Sergey Ivanovitch, stung to the quick too at his brother's considering anything of no importance that interested him, and still more at his obviously paying little attention to what he was saying. "I don't think it important; it does not take hold of me, I can't help it," answered Levin, making out that what he saw was the bailiff, and that the bailiff seemed to be letting the peasants go off the ploughed land. They were turning the plough over. "Can they have finished ploughing?" he wondered. "Come, really though," said the elder brother, with a frown on his handsome, clever face, "there's a limit to everything. It's very well to be original and genuine, and to dislike everything conventional--I know all about that; but really, what you're saying either has no meaning, or it has a very wrong meaning. How can you think it a matter of no importance whether the peasant, whom you love as you assert..." "I never did assert it," thought Konstantin Levin. "... dies without help? The ignorant peasant-women starve the children, and the people stagnate in darkness, and are helpless in the hands of every village clerk, while you have at your disposal a means of helping them, and don't help them because to your mind it's of no importance." And Sergey Ivanovitch put before him the alternative: either you are so undeveloped that you can't see all that you can do, or you won't sacrifice your ease, your vanity, or whatever it is, to do it. Konstantin Levin felt that there was no course open to him but to submit, or to confess to a lack of zeal for the public good. And this mortified him and hurt his feelings. "It's both," he said resolutely: "I don't see that it was possible..." "What! was it impossible, if the money were properly laid out, to provide medical aid?" "Impossible, as it seems to me.... For the three thousand square miles of our district, what with our thaws, and the storms, and the work in the fields, I don't see how it is possible to provide medical aid all over. And besides, I don't believe in medicine." "Oh, well, that's unfair ... I can quote to you thousands of instances.... But the schools, anyway." "Why have schools?" "What do you mean? Can there be two opinions of the advantage of education? If it's a good thing for you, it's a good thing for everyone." Konstantin Levin felt himself morally pinned against a wall, and so he got hot, and unconsciously blurted out the chief cause of his indifference to public business. "Perhaps it may all be very good; but why should I worry myself about establishing dispensaries which I shall never make use of, and schools to which I shall never send my children, to which even the peasants don't want to send their children, and to which I've no very firm faith that they ought to send them?" said he. Sergey Ivanovitch was for a minute surprised at this unexpected view of the subject; but he promptly made a new plan of attack. He was silent for a little, drew out a hook, threw it in again, and turned to his brother smiling. "Come, now.... In the first place, the dispensary is needed. We ourselves sent for the district doctor for Agafea Mihalovna." "Oh, well, but I fancy her wrist will never be straight again." "That remains to be proved.... Next, the peasant who can read and write is as a workman of more use and value to you." "No, you can ask anyone you like," Konstantin Levin answered with decision, "the man that can read and write is much inferior as a workman. And mending the highroads is an impossibility; and as soon as they put up bridges they're stolen." "Still, that's not the point," said Sergey Ivanovitch, frowning. He disliked contradiction, and still more, arguments that were continually skipping from one thing to another, introducing new and disconnected points, so that there was no knowing to which to reply. "Do you admit that education is a benefit for the people?" "Yes, I admit it," said Levin without thinking, and he was conscious immediately that he had said what he did not think. He felt that if he admitted that, it would be proved that he had been talking meaningless rubbish. How it would be proved he could not tell, but he knew that this would inevitably be logically proved to him, and he awaited the proofs. The argument turned out to be far simpler than he had expected. "If you admit that it is a benefit," said Sergey Ivanovitch, "then, as an honest man, you cannot help caring about it and sympathizing with the movement, and so wishing to work for it." "But I still do not admit this movement to be just," said Konstantin Levin, reddening a little. "What! But you said just now..." "That's to say, I don't admit it's being either good or possible." "That you can't tell without making the trial." "Well, supposing that's so," said Levin, though he did not suppose so at all, "supposing that is so, still I don't see, all the same, what I'm to worry myself about it for." "How so?" "No; since we are talking, explain it to me from the philosophical point of view," said Levin. "I can't see where philosophy comes in," said Sergey Ivanovitch, in a tone, Levin fancied, as though he did not admit his brother's right to talk about philosophy. And that irritated Levin. "I'll tell you, then," he said with heat, "I imagine the mainspring of all our actions is, after all, self-interest. Now in the local institutions I, as a nobleman, see nothing that could conduce to my prosperity, and the roads are not better and could not be better; my horses carry me well enough over bad ones. Doctors and dispensaries are no use to me. An arbitrator of disputes is no use to me. I never appeal to him, and never shall appeal to him. The schools are no good to me, but positively harmful, as I told you. For me the district institutions simply mean the liability to pay fourpence halfpenny for every three acres, to drive into the town, sleep with bugs, and listen to all sorts of idiocy and loathsomeness, and self-interest offers me no inducement." "Excuse me," Sergey Ivanovitch interposed with a smile, "self-interest did not induce us to work for the emancipation of the serfs, but we did work for it." "No!" Konstantin Levin broke in with still greater heat; "the emancipation of the serfs was a different matter. There self-interest did come in. One longed to throw off that yoke that crushed us, all decent people among us. But to be a town councilor and discuss how many dustmen are needed, and how chimneys shall be constructed in the town in which I don't live--to serve on a jury and try a peasant who's stolen a flitch of bacon, and listen for six hours at a stretch to all sorts of jabber from the counsel for the defense and the prosecution, and the president cross-examining my old half-witted Alioshka, 'Do you admit, prisoner in the dock, the fact of the removal of the bacon?' 'Eh?'" Konstantin Levin had warmed to his subject, and began mimicking the president and the half-witted Alioshka: it seemed to him that it was all to the point. But Sergey Ivanovitch shrugged his shoulders. "Well, what do you mean to say, then?" "I simply mean to say that those rights that touch me ... my interest, I shall always defend to the best of my ability; that when they made raids on us students, and the police read our letters, I was ready to defend those rights to the utmost, to defend my rights to education and freedom. I can understand compulsory military service, which affects my children, my brothers, and myself, I am ready to deliberate on what concerns me; but deliberating on how to spend forty thousand roubles of district council money, or judging the half-witted Alioshka--I don't understand, and I can't do it." Konstantin Levin spoke as though the floodgates of his speech had burst open. Sergey Ivanovitch smiled. "But tomorrow it'll be your turn to be tried; would it have suited your tastes better to be tried in the old criminal tribunal?" "I'm not going to be tried. I shan't murder anybody, and I've no need of it. Well, I tell you what," he went on, flying off again to a subject quite beside the point, "our district self-government and all the rest of it--it's just like the birch branches we stick in the ground on Trinity Day, for instance, to look like a copse which has grown up of itself in Europe, and I can't gush over these birch branches and believe in them." Sergey Ivanovitch merely shrugged his shoulders, as though to express his wonder how the birch branches had come into their argument at that point, though he did really understand at once what his brother meant. "Excuse me, but you know one really can't argue in that way," he observed. But Konstantin Levin wanted to justify himself for the failing, of which he was conscious, of lack of zeal for the public welfare, and he went on. "I imagine," he said, "that no sort of activity is likely to be lasting if it is not founded on self-interest, that's a universal principle, a philosophical principle," he said, repeating the word "philosophical" with determination, as though wishing to show that he had as much right as any one else to talk of philosophy. Sergey Ivanovitch smiled. "He too has a philosophy of his own at the service of his natural tendencies," he thought. "Come, you'd better let philosophy alone," he said. "The chief problem of the philosophy of all ages consists just in finding the indispensable connection which exists between individual and social interests. But that's not to the point; what is to the point is a correction I must make in your comparison. The birches are not simply stuck in, but some are sown and some are planted, and one must deal carefully with them. It's only those peoples that have an intuitive sense of what's of importance and significance in their institutions, and know how to value them, that have a future before them--it's only those peoples that one can truly call historical." And Sergey Ivanovitch carried the subject into the regions of philosophical history where Konstantin Levin could not follow him, and showed him all the incorrectness of his view. "As for your dislike of it, excuse my saying so, that's simply our Russian sloth and old serf-owner's ways, and I'm convinced that in you it's a temporary error and will pass." Konstantin was silent. He felt himself vanquished on all sides, but he felt at the same time that what he wanted to say was unintelligible to his brother. Only he could not make up his mind whether it was unintelligible because he was not capable of expressing his meaning clearly, or because his brother would not or could not understand him. But he did not pursue the speculation, and without replying, he fell to musing on a quite different and personal matter. Sergey Ivanovitch wound up the last line, untied the horse, and they drove off. Chapter 4 The personal matter that absorbed Levin during his conversation with his brother was this. Once in a previous year he had gone to look at the mowing, and being made very angry by the bailiff he had recourse to his favorite means for regaining his temper,--he took a scythe from a peasant and began mowing. He liked the work so much that he had several times tried his hand at mowing since. He had cut the whole of the meadow in front of his house, and this year ever since the early spring he had cherished a plan for mowing for whole days together with the peasants. Ever since his brother's arrival, he had been in doubt whether to mow or not. He was loath to leave his brother alone all day long, and he was afraid his brother would laugh at him about it. But as he drove into the meadow, and recalled the sensations of mowing, he came near deciding that he would go mowing. After the irritating discussion with his brother, he pondered over this intention again. "I must have physical exercise, or my temper'll certainly be ruined," he thought, and he determined he would go mowing, however awkward he might feel about it with his brother or the peasants. Towards evening Konstantin Levin went to his counting house, gave directions as to the work to be done, and sent about the village to summon the mowers for the morrow, to cut the hay in Kalinov meadow, the largest and best of his grass lands. "And send my scythe, please, to Tit, for him to set it, and bring it round tomorrow. I shall maybe do some mowing myself too," he said, trying not to be embarrassed. The bailiff smiled and said: "Yes, sir." At tea the same evening Levin said to his brother: "I fancy the fine weather will last. Tomorrow I shall start mowing." "I'm so fond of that form of field labor," said Sergey Ivanovitch. "I'm awfully fond of it. I sometimes mow myself with the peasants, and tomorrow I want to try mowing the whole day." Sergey Ivanovitch lifted his head, and looked with interest at his brother. "How do you mean? Just like one of the peasants, all day long?" "Yes, it's very pleasant," said Levin. "It's splendid as exercise, only you'll hardly be able to stand it," said Sergey Ivanovitch, without a shade of irony. "I've tried it. It's hard work at first, but you get into it. I dare say I shall manage to keep it up..." "Really! what an idea! But tell me, how do the peasants look at it? I suppose they laugh in their sleeves at their master's being such a queer fish?" "No, I don't think so; but it's so delightful, and at the same time such hard work, that one has no time to think about it." "But how will you do about dining with them? To send you a bottle of Lafitte and roast turkey out there would be a little awkward." "No, I'll simply come home at the time of their noonday rest." Next morning Konstantin Levin got up earlier than usual, but he was detained giving directions on the farm, and when he reached the mowing grass the mowers were already at their second row. From the uplands he could get a view of the shaded cut part of the meadow below, with its grayish ridges of cut grass, and the black heaps of coats, taken off by the mowers at the place from which they had started cutting. Gradually, as he rode towards the meadow, the peasants came into sight, some in coats, some in their shirts mowing, one behind another in a long string, swinging their scythes differently. He counted forty-two of them. They were mowing slowly over the uneven, low-lying parts of the meadow, where there had been an old dam. Levin recognized some of his own men. Here was old Yermil in a very long white smock, bending forward to swing a scythe; there was a young fellow, Vaska, who had been a coachman of Levin's, taking every row with a wide sweep. Here, too, was Tit, Levin's preceptor in the art of mowing, a thin little peasant. He was in front of all, and cut his wide row without bending, as though playing with the scythe. Levin got off his mare, and fastening her up by the roadside went to meet Tit, who took a second scythe out of a bush and gave it to him. "It's ready, sir; it's like a razor, cuts of itself," said Tit, taking off his cap with a smile and giving him the scythe. Levin took the scythe, and began trying it. As they finished their rows, the mowers, hot and good-humored, came out into the road one after another, and, laughing a little, greeted the master. They all stared at him, but no one made any remark, till a tall old man, with a wrinkled, beardless face, wearing a short sheepskin jacket, came out into the road and accosted him. "Look'ee now, master, once take hold of the rope there's no letting it go!" he said, and Levin heard smothered laughter among the mowers. "I'll try not to let it go," he said, taking his stand behind Tit, and waiting for the time to begin. "Mind'ee," repeated the old man. Tit made room, and Levin started behind him. The grass was short close to the road, and Levin, who had not done any mowing for a long while, and was disconcerted by the eyes fastened upon him, cut badly for the first moments, though he swung his scythe vigorously. Behind him he heard voices: "It's not set right; handle's too high; see how he has to stoop to it," said one. "Press more on the heel," said another. "Never mind, he'll get on all right," the old man resumed. "He's made a start.... You swing it too wide, you'll tire yourself out.... The master, sure, does his best for himself! But see the grass missed out! For such work us fellows would catch it!" The grass became softer, and Levin, listening without answering, followed Tit, trying to do the best he could. They moved a hundred paces. Tit kept moving on, without stopping, not showing the slightest weariness, but Levin was already beginning to be afraid he would not be able to keep it up: he was so tired. He felt as he swung his scythe that he was at the very end of his strength, and was making up his mind to ask Tit to stop. But at that very moment Tit stopped of his own accord, and stooping down picked up some grass, rubbed his scythe, and began whetting it. Levin straightened himself, and drawing a deep breath looked round. Behind him came a peasant, and he too was evidently tired, for he stopped at once without waiting to mow up to Levin, and began whetting his scythe. Tit sharpened his scythe and Levin's, and they went on. The next time it was just the same. Tit moved on with sweep after sweep of his scythe, not stopping nor showing signs of weariness. Levin followed him, trying not to get left behind, and he found it harder and harder: the moment came when he felt he had no strength left, but at that very moment Tit stopped and whetted the scythes. So they mowed the first row. And this long row seemed particularly hard work to Levin; but when the end was reached and Tit, shouldering his scythe, began with deliberate stride returning on the tracks left by his heels in the cut grass, and Levin walked back in the same way over the space he had cut, in spite of the sweat that ran in streams over his face and fell in drops down his nose, and drenched his back as though he had been soaked in water, he felt very happy. What delighted him particularly was that now he knew he would be able to hold out. His pleasure was only disturbed by his row not being well cut. "I will swing less with my arm and more with my whole body," he thought, comparing Tit's row, which looked as if it had been cut with a line, with his own unevenly and irregularly lying grass. The first row, as Levin noticed, Tit had mowed specially quickly, probably wishing to put his master to the test, and the row happened to be a long one. The next rows were easier, but still Levin had to strain every nerve not to drop behind the peasants. He thought of nothing, wished for nothing, but not to be left behind the peasants, and to do his work as well as possible. He heard nothing but the swish of scythes, and saw before him Tit's upright figure mowing away, the crescent-shaped curve of the cut grass, the grass and flower heads slowly and rhythmically falling before the blade of his scythe, and ahead of him the end of the row, where would come the rest. Suddenly, in the midst of his toil, without understanding what it was or whence it came, he felt a pleasant sensation of chill on his hot, moist shoulders. He glanced at the sky in the interval for whetting the scythes. A heavy, lowering storm cloud had blown up, and big raindrops were falling. Some of the peasants went to their coats and put them on; others--just like Levin himself--merely shrugged their shoulders, enjoying the pleasant coolness of it. Another row, and yet another row, followed--long rows and short rows, with good grass and with poor grass. Levin lost all sense of time, and could not have told whether it was late or early now. A change began to come over his work, which gave him immense satisfaction. In the midst of his toil there were moments during which he forgot what he was doing, and it came all easy to him, and at those same moments his row was almost as smooth and well cut as Tit's. But so soon as he recollected what he was doing, and began trying to do better, he was at once conscious of all the difficulty of his task, and the row was badly mown. On finishing yet another row he would have gone back to the top of the meadow again to begin the next, but Tit stopped, and going up to the old man said something in a low voice to him. They both looked at the sun. "What are they talking about, and why doesn't he go back?" thought Levin, not guessing that the peasants had been mowing no less than four hours without stopping, and it was time for their lunch. "Lunch, sir," said the old man. "Is it really time? That's right; lunch, then." Levin gave his scythe to Tit, and together with the peasants, who were crossing the long stretch of mown grass, slightly sprinkled with rain, to get their bread from the heap of coats, he went towards his house. Only then he suddenly awoke to the fact that he had been wrong about the weather and the rain was drenching his hay. "The hay will be spoiled," he said. "Not a bit of it, sir; mow in the rain, and you'll rake in fine weather!" said the old man. Levin untied his horse and rode home to his coffee. Sergey Ivanovitch was only just getting up. When he had drunk his coffee, Levin rode back again to the mowing before Sergey Ivanovitch had had time to dress and come down to the dining room. Chapter 5 After lunch Levin was not in the same place in the string of mowers as before, but stood between the old man who had accosted him jocosely, and now invited him to be his neighbor, and a young peasant, who had only been married in the autumn, and who was mowing this summer for the first time. The old man, holding himself erect, moved in front, with his feet turned out, taking long, regular strides, and with a precise and regular action which seemed to cost him no more effort than swinging one's arms in walking, as though it were in play, he laid down the high, even row of grass. It was as though it were not he but the sharp scythe of itself swishing through the juicy grass. Behind Levin came the lad Mishka. His pretty, boyish face, with a twist of fresh grass bound round his hair, was all working with effort; but whenever anyone looked at him he smiled. He would clearly have died sooner than own it was hard work for him. Levin kept between them. In the very heat of the day the mowing did not seem such hard work to him. The perspiration with which he was drenched cooled him, while the sun, that burned his back, his head, and his arms, bare to the elbow, gave a vigor and dogged energy to his labor; and more and more often now came those moments of unconsciousness, when it was possible not to think what one was doing. The scythe cut of itself. These were happy moments. Still more delightful were the moments when they reached the stream where the rows ended, and the old man rubbed his scythe with the wet, thick grass, rinsed its blade in the fresh water of the stream, ladled out a little in a tin dipper, and offered Levin a drink. "What do you say to my home-brew, eh? Good, eh?" said he, winking. And truly Levin had never drunk any liquor so good as this warm water with green bits floating in it, and a taste of rust from the tin dipper. And immediately after this came the delicious, slow saunter, with his hand on the scythe, during which he could wipe away the streaming sweat, take deep breaths of air, and look about at the long string of mowers and at what was happening around in the forest and the country. The longer Levin mowed, the oftener he felt the moments of unconsciousness in which it seemed not his hands that swung the scythe, but the scythe mowing of itself, a body full of life and consciousness of its own, and as though by magic, without thinking of it, the work turned out regular and well-finished of itself. These were the most blissful moments. It was only hard work when he had to break off the motion, which had become unconscious, and to think; when he had to mow round a hillock or a tuft of sorrel. The old man did this easily. When a hillock came he changed his action, and at one time with the heel, and at another with the tip of his scythe, clipped the hillock round both sides with short strokes. And while he did this he kept looking about and watching what came into his view: at one moment he picked a wild berry and ate it or offered it to Levin, then he flung away a twig with the blade of the scythe, then he looked at a quail's nest, from which the bird flew just under the scythe, or caught a snake that crossed his path, and lifting it on the scythe as though on a fork showed it to Levin and threw it away. For both Levin and the young peasant behind him, such changes of position were difficult. Both of them, repeating over and over again the same strained movement, were in a perfect frenzy of toil, and were incapable of shifting their position and at the same time watching what was before them. Levin did not notice how time was passing. If he had been asked how long he had been working he would have said half an hour--and it was getting on for dinner time. As they were walking back over the cut grass, the old man called Levin's attention to the little girls and boys who were coming from different directions, hardly visible through the long grass, and along the road towards the mowers, carrying sacks of bread dragging at their little hands and pitchers of the sour rye-beer, with cloths wrapped round them. "Look'ee, the little emmets crawling!" he said, pointing to them, and he shaded his eyes with his hand to look at the sun. They mowed two more rows; the old man stopped. "Come, master, dinner time!" he said briskly. And on reaching the stream the mowers moved off across the lines of cut grass towards their pile of coats, where the children who had brought their dinners were sitting waiting for them. The peasants gathered into groups--those further away under a cart, those nearer under a willow bush. Levin sat down by them; he felt disinclined to go away. All constraint with the master had disappeared long ago. The peasants got ready for dinner. Some washed, the young lads bathed in the stream, others made a place comfortable for a rest, untied their sacks of bread, and uncovered the pitchers of rye-beer. The old man crumbled up some bread in a cup, stirred it with the handle of a spoon, poured water on it from the dipper, broke up some more bread, and having seasoned it with salt, he turned to the east to say his prayer. "Come, master, taste my sop," said he, kneeling down before the cup. The sop was so good that Levin gave up the idea of going home. He dined with the old man, and talked to him about his family affairs, taking the keenest interest in them, and told him about his own affairs and all the circumstances that could be of interest to the old man. He felt much nearer to him than to his brother, and could not help smiling at the affection he felt for this man. When the old man got up again, said his prayer, and lay down under a bush, putting some grass under his head for a pillow, Levin did the same, and in spite of the clinging flies that were so persistent in the sunshine, and the midges that tickled his hot face and body, he fell asleep at once and only waked when the sun had passed to the other side of the bush and reached him. The old man had been awake a long while, and was sitting up whetting the scythes of the younger lads. Levin looked about him and hardly recognized the place, everything was so changed. The immense stretch of meadow had been mown and was sparkling with a peculiar fresh brilliance, with its lines of already sweet-smelling grass in the slanting rays of the evening sun. And the bushes about the river had been cut down, and the river itself, not visible before, now gleaming like steel in its bends, and the moving, ascending, peasants, and the sharp wall of grass of the unmown part of the meadow, and the hawks hovering over the stripped meadow--all was perfectly new. Raising himself, Levin began considering how much had been cut and how much more could still be done that day. The work done was exceptionally much for forty-two men. They had cut the whole of the big meadow, which had, in the years of serf labor, taken thirty scythes two days to mow. Only the corners remained to do, where the rows were short. But Levin felt a longing to get as much mowing done that day as possible, and was vexed with the sun sinking so quickly in the sky. He felt no weariness; all he wanted was to get his work done more and more quickly and as much done as possible. "Could you cut Mashkin Upland too?--what do you think?" he said to the old man. "As God wills, the sun's not high. A little vodka for the lads?" At the afternoon rest, when they were sitting down again, and those who smoked had lighted their pipes, the old man told the men that "Mashkin Upland's to be cut--there'll be some vodka." "Why not cut it? Come on, Tit! We'll look sharp! We can eat at night. Come on!" cried voices, and eating up their bread, the mowers went back to work. "Come, lads, keep it up!" said Tit, and ran on ahead almost at a trot. "Get along, get along!" said the old man, hurrying after him and easily overtaking him, "I'll mow you down, look out!" And young and old mowed away, as though they were racing with one another. But however fast they worked, they did not spoil the grass, and the rows were laid just as neatly and exactly. The little piece left uncut in the corner was mown in five minutes. The last of the mowers were just ending their rows while the foremost snatched up their coats onto their shoulders, and crossed the road towards Mashkin Upland. The sun was already sinking into the trees when they went with their jingling dippers into the wooded ravine of Mashkin Upland. The grass was up to their waists in the middle of the hollow, soft, tender, and feathery, spotted here and there among the trees with wild heart's-ease. After a brief consultation--whether to take the rows lengthwise or diagonally--Prohor Yermilin, also a renowned mower, a huge, black-haired peasant, went on ahead. He went up to the top, turned back again and started mowing, and they all proceeded to form in line behind him, going downhill through the hollow and uphill right up to the edge of the forest. The sun sank behind the forest. The dew was falling by now; the mowers were in the sun only on the hillside, but below, where a mist was rising, and on the opposite side, they mowed into the fresh, dewy shade. The work went rapidly. The grass cut with a juicy sound, and was at once laid in high, fragrant rows. The mowers from all sides, brought closer together in the short row, kept urging one another on to the sound of jingling dippers and clanging scythes, and the hiss of the whetstones sharpening them, and good-humored shouts. Levin still kept between the young peasant and the old man. The old man, who had put on his short sheepskin jacket, was just as good-humored, jocose, and free in his movements. Among the trees they were continually cutting with their scythes the so-called "birch mushrooms," swollen fat in the succulent grass. But the old man bent down every time he came across a mushroom, picked it up and put it in his bosom. "Another present for my old woman," he said as he did so. Easy as it was to mow the wet, soft grass, it was hard work going up and down the steep sides of the ravine. But this did not trouble the old man. Swinging his scythe just as ever, and moving his feet in their big, plaited shoes with firm, little steps, he climbed slowly up the steep place, and though his breeches hanging out below his smock, and his whole frame trembled with effort, he did not miss one blade of grass or one mushroom on his way, and kept making jokes with the peasants and Levin. Levin walked after him and often thought he must fall, as he climbed with a scythe up a steep cliff where it would have been hard work to clamber without anything. But he climbed up and did what he had to do. He felt as though some external force were moving him. Chapter 6 Mashkin Upland was mown, the last row finished, the peasants had put on their coats and were gaily trudging home. Levin got on his horse and, parting regretfully from the peasants, rode homewards. On the hillside he looked back; he could not see them in the mist that had risen from the valley; he could only hear rough, good-humored voices, laughter, and the sound of clanking scythes. Sergey Ivanovitch had long ago finished dinner, and was drinking iced lemon and water in his own room, looking through the reviews and papers which he had only just received by post, when Levin rushed into the room, talking merrily, with his wet and matted hair sticking to his forehead, and his back and chest grimed and moist. "We mowed the whole meadow! Oh, it is nice, delicious! And how have you been getting on?" said Levin, completely forgetting the disagreeable conversation of the previous day. "Mercy! what do you look like!" said Sergey Ivanovitch, for the first moment looking round with some dissatisfaction. "And the door, do shut the door!" he cried. "You must have let in a dozen at least." Sergey Ivanovitch could not endure flies, and in his own room he never opened the window except at night, and carefully kept the door shut. "Not one, on my honor. But if I have, I'll catch them. You wouldn't believe what a pleasure it is! How have you spent the day?" "Very well. But have you really been mowing the whole day? I expect you're as hungry as a wolf. Kouzma has got everything ready for you." "No, I don't feel hungry even. I had something to eat there. But I'll go and wash." "Yes, go along, go along, and I'll come to you directly," said Sergey Ivanovitch, shaking his head as he looked at his brother. "Go along, make haste," he added smiling, and gathering up his books, he prepared to go too. He, too, felt suddenly good-humored and disinclined to leave his brother's side. "But what did you do while it was raining?" "Rain? Why, there was scarcely a drop. I'll come directly. So you had a nice day too? That's first-rate." And Levin went off to change his clothes. Five minutes later the brothers met in the dining room. Although it seemed to Levin that he was not hungry, and he sat down to dinner simply so as not to hurt Kouzma's feelings, yet when he began to eat the dinner struck him as extraordinarily good. Sergey Ivanovitch watched him with a smile. "Oh, by the way, there's a letter for you," said he. "Kouzma, bring it down, please. And mind you shut the doors." The letter was from Oblonsky. Levin read it aloud. Oblonsky wrote to him from Petersburg: "I have had a letter from Dolly; she's at Ergushovo, and everything seems going wrong there. Do ride over and see her, please; help her with advice; you know all about it. She will be so glad to see you. She's quite alone, poor thing. My mother-in-law and all of them are still abroad." "That's capital! I will certainly ride over to her," said Levin. "Or we'll go together. She's such a splendid woman, isn't she?" "They're not far from here, then?" "Twenty-five miles. Or perhaps it is thirty. But a capital road. Capital, we'll drive over." "I shall be delighted," said Sergey Ivanovitch, still smiling. The sight of his younger brother's appearance had immediately put him in a good humor. "Well, you have an appetite!" he said, looking at his dark-red, sunburnt face and neck bent over the plate. "Splendid! You can't imagine what an effectual remedy it is for every sort of foolishness. I want to enrich medicine with a new word: _Arbeitskur_." "Well, but you don't need it, I should fancy." "No, but for all sorts of nervous invalids." "Yes, it ought to be tried. I had meant to come to the mowing to look at you, but it was so unbearably hot that I got no further than the forest. I sat there a little, and went on by the forest to the village, met your old nurse, and sounded her as to the peasants' view of you. As far as I can make out, they don't approve of this. She said: 'It's not a gentleman's work.' Altogether, I fancy that in the people's ideas there are very clear and definite notions of certain, as they call it, 'gentlemanly' lines of action. And they don't sanction the gentry's moving outside bounds clearly laid down in their ideas." "Maybe so; but anyway it's a pleasure such as I have never known in my life. And there's no harm in it, you know. Is there?" answered Levin. "I can't help it if they don't like it. Though I do believe it's all right. Eh?" "Altogether," pursued Sergey Ivanovitch, "you're satisfied with your day?" "Quite satisfied. We cut the whole meadow. And such a splendid old man I made friends with there! You can't fancy how delightful he was!" "Well, so you're content with your day. And so am I. First, I solved two chess problems, and one a very pretty one--a pawn opening. I'll show it you. And then--I thought over our conversation yesterday." "Eh! our conversation yesterday?" said Levin, blissfully dropping his eyelids and drawing deep breaths after finishing his dinner, and absolutely incapable of recalling what their conversation yesterday was about. "I think you are partly right. Our difference of opinion amounts to this, that you make the mainspring self-interest, while I suppose that interest in the common weal is bound to exist in every man of a certain degree of advancement. Possibly you are right too, that action founded on material interest would be more desirable. You are altogether, as the French say, too _primesautiere_ a nature; you must have intense, energetic action, or nothing." Levin listened to his brother and did not understand a single word, and did not want to understand. He was only afraid his brother might ask him some question which would make it evident he had not heard. "So that's what I think it is, my dear boy," said Sergey Ivanovitch, touching him on the shoulder. "Yes, of course. But, do you know? I won't stand up for my view," answered Levin, with a guilty, childlike smile. "Whatever was it I was disputing about?" he wondered. "Of course, I'm right, and he's right, and it's all first-rate. Only I must go round to the counting house and see to things." He got up, stretching and smiling. Sergey Ivanovitch smiled too. "If you want to go out, let's go together," he said, disinclined to be parted from his brother, who seemed positively breathing out freshness and energy. "Come, we'll go to the counting house, if you have to go there." "Oh, heavens!" shouted Levin, so loudly that Sergey Ivanovitch was quite frightened. "What, what is the matter?" "How's Agafea Mihalovna's hand?" said Levin, slapping himself on the head. "I'd positively forgotten her even." "It's much better." "Well, anyway I'll run down to her. Before you've time to get your hat on, I'll be back." And he ran downstairs, clattering with his heels like a spring-rattle. Chapter 7 Stephan Arkadyevitch had gone to Petersburg to perform the most natural and essential official duty--so familiar to everyone in the government service, though incomprehensible to outsiders--that duty, but for which one could hardly be in government service, of reminding the ministry of his existence--and having, for the due performance of this rite, taken all the available cash from home, was gaily and agreeably spending his days at the races and in the summer villas. Meanwhile Dolly and the children had moved into the country, to cut down expenses as much as possible. She had gone to Ergushovo, the estate that had been her dowry, and the one where in spring the forest had been sold. It was nearly forty miles from Levin's Pokrovskoe. The big, old house at Ergushovo had been pulled down long ago, and the old prince had had the lodge done up and built on to. Twenty years before, when Dolly was a child, the lodge had been roomy and comfortable, though, like all lodges, it stood sideways to the entrance avenue, and faced the south. But by now this lodge was old and dilapidated. When Stepan Arkadyevitch had gone down in the spring to sell the forest, Dolly had begged him to look over the house and order what repairs might be needed. Stepan Arkadyevitch, like all unfaithful husbands indeed, was very solicitous for his wife's comfort, and he had himself looked over the house, and given instructions about everything that he considered necessary. What he considered necessary was to cover all the furniture with cretonne, to put up curtains, to weed the garden, to make a little bridge on the pond, and to plant flowers. But he forgot many other essential matters, the want of which greatly distressed Darya Alexandrovna later on. In spite of Stepan Arkadyevitch's efforts to be an attentive father and husband, he never could keep in his mind that he had a wife and children. He had bachelor tastes, and it was in accordance with them that he shaped his life. On his return to Moscow he informed his wife with pride that everything was ready, that the house would be a little paradise, and that he advised her most certainly to go. His wife's staying away in the country was very agreeable to Stepan Arkadyevitch from every point of view: it did the children good, it decreased expenses, and it left him more at liberty. Darya Alexandrovna regarded staying in the country for the summer as essential for the children, especially for the little girl, who had not succeeded in regaining her strength after the scarlatina, and also as a means of escaping the petty humiliations, the little bills owing to the wood-merchant, the fishmonger, the shoemaker, which made her miserable. Besides this, she was pleased to go away to the country because she was dreaming of getting her sister Kitty to stay with her there. Kitty was to be back from abroad in the middle of the summer, and bathing had been prescribed for her. Kitty wrote that no prospect was so alluring as to spend the summer with Dolly at Ergushovo, full of childish associations for both of them. The first days of her existence in the country were very hard for Dolly. She used to stay in the country as a child, and the impression she had retained of it was that the country was a refuge from all the unpleasantness of the town, that life there, though not luxurious--Dolly could easily make up her mind to that--was cheap and comfortable; that there was plenty of everything, everything was cheap, everything could be got, and children were happy. But now coming to the country as the head of a family, she perceived that it was all utterly unlike what she had fancied. The day after their arrival there was a heavy fall of rain, and in the night the water came through in the corridor and in the nursery, so that the beds had to be carried into the drawing room. There was no kitchen maid to be found; of the nine cows, it appeared from the words of the cowherd-woman that some were about to calve, others had just calved, others were old, and others again hard-uddered; there was not butter nor milk enough even for the children. There were no eggs. They could get no fowls; old, purplish, stringy cocks were all they had for roasting and boiling. Impossible to get women to scrub the floors--all were potato-hoeing. Driving was out of the question, because one of the horses was restive, and bolted in the shafts. There was no place where they could bathe; the whole of the river-bank was trampled by the cattle and open to the road; even walks were impossible, for the cattle strayed into the garden through a gap in the hedge, and there was one terrible bull, who bellowed, and therefore might be expected to gore somebody. There were no proper cupboards for their clothes; what cupboards there were either would not close at all, or burst open whenever anyone passed by them. There were no pots and pans; there was no copper in the washhouse, nor even an ironing-board in the maids' room. Finding instead of peace and rest all these, from her point of view, fearful calamities, Darya Alexandrovna was at first in despair. She exerted herself to the utmost, felt the hopelessness of the position, and was every instant suppressing the tears that started into her eyes. The bailiff, a retired quartermaster, whom Stepan Arkadyevitch had taken a fancy to and had appointed bailiff on account of his handsome and respectful appearance as a hall-porter, showed no sympathy for Darya Alexandrovna's woes. He said respectfully, "nothing can be done, the peasants are such a wretched lot," and did nothing to help her. The position seemed hopeless. But in the Oblonskys' household, as in all families indeed, there was one inconspicuous but most valuable and useful person, Marya Philimonovna. She soothed her mistress, assured her that everything would _come round_ (it was her expression, and Matvey had borrowed it from her), and without fuss or hurry proceeded to set to work herself. She had immediately made friends with the bailiff's wife, and on the very first day she drank tea with her and the bailiff under the acacias, and reviewed all the circumstances of the position. Very soon Marya Philimonovna had established her club, so to say, under the acacias, and there it was, in this club, consisting of the bailiff's wife, the village elder, and the counting house clerk, that the difficulties of existence were gradually smoothed away, and in a week's time everything actually had come round. The roof was mended, a kitchen maid was found--a crony of the village elder's--hens were bought, the cows began giving milk, the garden hedge was stopped up with stakes, the carpenter made a mangle, hooks were put in the cupboards, and they ceased to burst open spontaneously, and an ironing-board covered with army cloth was placed across from the arm of a chair to the chest of drawers, and there was a smell of flatirons in the maids' room. "Just see, now, and you were quite in despair," said Marya Philimonovna, pointing to the ironing-board. They even rigged up a bathing-shed of straw hurdles. Lily began to bathe, and Darya Alexandrovna began to realize, if only in part, her expectations, if not of a peaceful, at least of a comfortable, life in the country. Peaceful with six children Darya Alexandrovna could not be. One would fall ill, another might easily become so, a third would be without something necessary, a fourth would show symptoms of a bad disposition, and so on. Rare indeed were the brief periods of peace. But these cares and anxieties were for Darya Alexandrovna the sole happiness possible. Had it not been for them, she would have been left alone to brood over her husband who did not love her. And besides, hard though it was for the mother to bear the dread of illness, the illnesses themselves, and the grief of seeing signs of evil propensities in her children--the children themselves were even now repaying her in small joys for her sufferings. Those joys were so small that they passed unnoticed, like gold in sand, and at bad moments she could see nothing but the pain, nothing but sand; but there were good moments too when she saw nothing but the joy, nothing but gold. Now in the solitude of the country, she began to be more and more frequently aware of those joys. Often, looking at them, she would make every possible effort to persuade herself that she was mistaken, that she as a mother was partial to her children. All the same, she could not help saying to herself that she had charming children, all six of them in different ways, but a set of children such as is not often to be met with, and she was happy in them, and proud of them. Chapter 8 Towards the end of May, when everything had been more or less satisfactorily arranged, she received her husband's answer to her complaints of the disorganized state of things in the country. He wrote begging her forgiveness for not having thought of everything before, and promised to come down at the first chance. This chance did not present itself, and till the beginning of June Darya Alexandrovna stayed alone in the country. On the Sunday in St. Peter's week Darya Alexandrovna drove to mass for all her children to take the sacrament. Darya Alexandrovna in her intimate, philosophical talks with her sister, her mother, and her friends very often astonished them by the freedom of her views in regard to religion. She had a strange religion of transmigration of souls all her own, in which she had firm faith, troubling herself little about the dogmas of the Church. But in her family she was strict in carrying out all that was required by the Church--and not merely in order to set an example, but with all her heart in it. The fact that the children had not been at the sacrament for nearly a year worried her extremely, and with the full approval and sympathy of Marya Philimonovna she decided that this should take place now in the summer. For several days before, Darya Alexandrovna was busily deliberating on how to dress all the children. Frocks were made or altered and washed, seams and flounces were let out, buttons were sewn on, and ribbons got ready. One dress, Tanya's, which the English governess had undertaken, cost Darya Alexandrovna much loss of temper. The English governess in altering it had made the seams in the wrong place, had taken up the sleeves too much, and altogether spoilt the dress. It was so narrow on Tanya's shoulders that it was quite painful to look at her. But Marya Philimonovna had the happy thought of putting in gussets, and adding a little shoulder-cape. The dress was set right, but there was nearly a quarrel with the English governess. On the morning, however, all was happily arranged, and towards ten o'clock--the time at which they had asked the priest to wait for them for the mass--the children in their new dresses, with beaming faces, stood on the step before the carriage waiting for their mother. To the carriage, instead of the restive Raven, they had harnessed, thanks to the representations of Marya Philimonovna, the bailiff's horse, Brownie, and Darya Alexandrovna, delayed by anxiety over her own attire, came out and got in, dressed in a white muslin gown. Darya Alexandrovna had done her hair, and dressed with care and excitement. In the old days she had dressed for her own sake to look pretty and be admired. Later on, as she got older, dress became more and more distasteful to her. She saw that she was losing her good looks. But now she began to feel pleasure and interest in dress again. Now she did not dress for her own sake, not for the sake of her own beauty, but simply that as the mother of those exquisite creatures she might not spoil the general effect. And looking at herself for the last time in the looking-glass she was satisfied with herself. She looked nice. Not nice as she would have wished to look nice in old days at a ball, but nice for the object which she now had in view. In the church there was no one but the peasants, the servants and their women-folk. But Darya Alexandrovna saw, or fancied she saw, the sensation produced by her children and her. The children were not only beautiful to look at in their smart little dresses, but they were charming in the way they behaved. Aliosha, it is true, did not stand quite correctly; he kept turning round, trying to look at his little jacket from behind; but all the same he was wonderfully sweet. Tanya behaved like a grownup person, and looked after the little ones. And the smallest, Lily, was bewitching in her naive astonishment at everything, and it was difficult not to smile when, after taking the sacrament, she said in English, "Please, some more." On the way home the children felt that something solemn had happened, and were very sedate. Everything went happily at home too; but at lunch Grisha began whistling, and, what was worse, was disobedient to the English governess, and was forbidden to have any tart. Darya Alexandrovna would not have let things go so far on such a day had she been present; but she had to support the English governess's authority, and she upheld her decision that Grisha should have no tart. This rather spoiled the general good humor. Grisha cried, declaring that Nikolinka had whistled too, and he was not punished, and that he wasn't crying for the tart--he didn't care--but at being unjustly treated. This was really too tragic, and Darya Alexandrovna made up her mind to persuade the English governess to forgive Grisha, and she went to speak to her. But on the way, as she passed the drawing room, she beheld a scene, filling her heart with such pleasure that the tears came into her eyes, and she forgave the delinquent herself. The culprit was sitting at the window in the corner of the drawing room; beside him was standing Tanya with a plate. On the pretext of wanting to give some dinner to her dolls, she had asked the governess's permission to take her share of tart to the nursery, and had taken it instead to her brother. While still weeping over the injustice of his punishment, he was eating the tart, and kept saying through his sobs, "Eat yourself; let's eat it together ... together." Tanya had at first been under the influence of her pity for Grisha, then of a sense of her noble action, and tears were standing in her eyes too; but she did not refuse, and ate her share. On catching sight of their mother they were dismayed, but, looking into her face, they saw they were not doing wrong. They burst out laughing, and, with their mouths full of tart, they began wiping their smiling lips with their hands, and smearing their radiant faces all over with tears and jam. "Mercy! Your new white frock! Tanya! Grisha!" said their mother, trying to save the frock, but with tears in her eyes, smiling a blissful, rapturous smile. The new frocks were taken off, and orders were given for the little girls to have their blouses put on, and the boys their old jackets, and the wagonette to be harnessed; with Brownie, to the bailiff's annoyance, again in the shafts, to drive out for mushroom picking and bathing. A roar of delighted shrieks arose in the nursery, and never ceased till they had set off for the bathing-place. They gathered a whole basketful of mushrooms; even Lily found a birch mushroom. It had always happened before that Miss Hoole found them and pointed them out to her; but this time she found a big one quite of herself, and there was a general scream of delight, "Lily has found a mushroom!" Then they reached the river, put the horses under the birch trees, and went to the bathing-place. The coachman, Terenty, fastened the horses, who kept whisking away the flies, to a tree, and, treading down the grass, lay down in the shade of a birch and smoked his shag, while the never-ceasing shrieks of delight of the children floated across to him from the bathing-place. Though it was hard work to look after all the children and restrain their wild pranks, though it was difficult too to keep in one's head and not mix up all the stockings, little breeches, and shoes for the different legs, and to undo and to do up again all the tapes and buttons, Darya Alexandrovna, who had always liked bathing herself, and believed it to be very good for the children, enjoyed nothing so much as bathing with all the children. To go over all those fat little legs, pulling on their stockings, to take in her arms and dip those little naked bodies, and to hear their screams of delight and alarm, to see the breathless faces with wide-open, scared, and happy eyes of all her splashing cherubs, was a great pleasure to her. When half the children had been dressed, some peasant women in holiday dress, out picking herbs, came up to the bathing-shed and stopped shyly. Marya Philimonovna called one of them and handed her a sheet and a shirt that had dropped into the water for her to dry them, and Darya Alexandrovna began to talk to the women. At first they laughed behind their hands and did not understand her questions, but soon they grew bolder and began to talk, winning Darya Alexandrovna's heart at once by the genuine admiration of the children that they showed. "My, what a beauty! as white as sugar," said one, admiring Tanitchka, and shaking her head; "but thin..." "Yes, she has been ill." "And so they've been bathing you too," said another to the baby. "No; he's only three months old," answered Darya Alexandrovna with pride. "You don't say so!" "And have you any children?" "I've had four; I've two living--a boy and a girl. I weaned her last carnival." "How old is she?" "Why, two years old." "Why did you nurse her so long?" "It's our custom; for three fasts..." And the conversation became most interesting to Darya Alexandrovna. What sort of time did she have? What was the matter with the boy? Where was her husband? Did it often happen? Darya Alexandrovna felt disinclined to leave the peasant women, so interesting to her was their conversation, so completely identical were all their interests. What pleased her most of all was that she saw clearly what all the women admired more than anything was her having so many children, and such fine ones. The peasant women even made Darya Alexandrovna laugh, and offended the English governess, because she was the cause of the laughter she did not understand. One of the younger women kept staring at the Englishwoman, who was dressing after all the rest, and when she put on her third petticoat she could not refrain from the remark, "My, she keeps putting on and putting on, and she'll never have done!" she said, and they all went off into roars. Chapter 9 On the drive home, as Darya Alexandrovna, with all her children round her, their heads still wet from their bath, and a kerchief tied over her own head, was getting near the house, the coachman said, "There's some gentleman coming: the master of Pokrovskoe, I do believe." Darya Alexandrovna peeped out in front, and was delighted when she recognized in the gray hat and gray coat the familiar figure of Levin walking to meet them. She was glad to see him at any time, but at this moment she was specially glad he should see her in all her glory. No one was better able to appreciate her grandeur than Levin. Seeing her, he found himself face to face with one of the pictures of his daydream of family life. "You're like a hen with your chickens, Darya Alexandrovna." "Ah, how glad I am to see you!" she said, holding out her hand to him. "Glad to see me, but you didn't let me know. My brother's staying with me. I got a note from Stiva that you were here." "From Stiva?" Darya Alexandrovna asked with surprise. "Yes; he writes that you are here, and that he thinks you might allow me to be of use to you," said Levin, and as he said it he became suddenly embarrassed, and, stopping abruptly, he walked on in silence by the wagonette, snapping off the buds of the lime trees and nibbling them. He was embarrassed through a sense that Darya Alexandrovna would be annoyed by receiving from an outsider help that should by rights have come from her own husband. Darya Alexandrovna certainly did not like this little way of Stepan Arkadyevitch's of foisting his domestic duties on others. And she was at once aware that Levin was aware of this. It was just for this fineness of perception, for this delicacy, that Darya Alexandrovna liked Levin. "I know, of course," said Levin, "that that simply means that you would like to see me, and I'm exceedingly glad. Though I can fancy that, used to town housekeeping as you are, you must feel in the wilds here, and if there's anything wanted, I'm altogether at your disposal." "Oh, no!" said Dolly. "At first things were rather uncomfortable, but now we've settled everything capitally--thanks to my old nurse," she said, indicating Marya Philimonovna, who, seeing that they were speaking of her, smiled brightly and cordially to Levin. She knew him, and knew that he would be a good match for her young lady, and was very keen to see the matter settled. "Won't you get in, sir, we'll make room this side!" she said to him. "No, I'll walk. Children, who'd like to race the horses with me?" The children knew Levin very little, and could not remember when they had seen him, but they experienced in regard to him none of that strange feeling of shyness and hostility which children so often experience towards hypocritical, grown-up people, and for which they are so often and miserably punished. Hypocrisy in anything whatever may deceive the cleverest and most penetrating man, but the least wide-awake of children recognizes it, and is revolted by it, however ingeniously it may be disguised. Whatever faults Levin had, there was not a trace of hypocrisy in him, and so the children showed him the same friendliness that they saw in their mother's face. On his invitation, the two elder ones at once jumped out to him and ran with him as simply as they would have done with their nurse or Miss Hoole or their mother. Lily, too, began begging to go to him, and her mother handed her to him; he sat her on his shoulder and ran along with her. "Don't be afraid, don't be afraid, Darya Alexandrovna!" he said, smiling good-humoredly to the mother; "there's no chance of my hurting or dropping her." And, looking at his strong, agile, assiduously careful and needlessly wary movements, the mother felt her mind at rest, and smiled gaily and approvingly as she watched him. Here, in the country, with children, and with Darya Alexandrovna, with whom he was in sympathy, Levin was in a mood not infrequent with him, of childlike light-heartedness that she particularly liked in him. As he ran with the children, he taught them gymnastic feats, set Miss Hoole laughing with his queer English accent, and talked to Darya Alexandrovna of his pursuits in the country. After dinner, Darya Alexandrovna, sitting alone with him on the balcony, began to speak of Kitty. "You know, Kitty's coming here, and is going to spend the summer with me." "Really," he said, flushing, and at once, to change the conversation, he said: "Then I'll send you two cows, shall I? If you insist on a bill you shall pay me five roubles a month; but it's really too bad of you." "No, thank you. We can manage very well now." "Oh, well, then, I'll have a look at your cows, and if you'll allow me, I'll give directions about their food. Everything depends on their food." And Levin, to turn the conversation, explained to Darya Alexandrovna the theory of cow-keeping, based on the principle that the cow is simply a machine for the transformation of food into milk, and so on. He talked of this, and passionately longed to hear more of Kitty, and, at the same time, was afraid of hearing it. He dreaded the breaking up of the inward peace he had gained with such effort. "Yes, but still all this has to be looked after, and who is there to look after it?" Darya Alexandrovna responded, without interest. She had by now got her household matters so satisfactorily arranged, thanks to Marya Philimonovna, that she was disinclined to make any change in them; besides, she had no faith in Levin's knowledge of farming. General principles, as to the cow being a machine for the production of milk, she looked on with suspicion. It seemed to her that such principles could only be a hindrance in farm management. It all seemed to her a far simpler matter: all that was needed, as Marya Philimonovna had explained, was to give Brindle and Whitebreast more food and drink, and not to let the cook carry all the kitchen slops to the laundry maid's cow. That was clear. But general propositions as to feeding on meal and on grass were doubtful and obscure. And, what was most important, she wanted to talk about Kitty. Chapter 10 "Kitty writes to me that there's nothing she longs for so much as quiet and solitude," Dolly said after the silence that had followed. "And how is she--better?" Levin asked in agitation. "Thank God, she's quite well again. I never believed her lungs were affected." "Oh, I'm very glad!" said Levin, and Dolly fancied she saw something touching, helpless, in his face as he said this and looked silently into her face. "Let me ask you, Konstantin Dmitrievitch," said Darya Alexandrovna, smiling her kindly and rather mocking smile, "why is it you are angry with Kitty?" "I? I'm not angry with her," said Levin. "Yes, you are angry. Why was it you did not come to see us nor them when you were in Moscow?" "Darya Alexandrovna," he said, blushing up to the roots of his hair, "I wonder really that with your kind heart you don't feel this. How it is you feel no pity for me, if nothing else, when you know..." "What do I know?" "You know I made an offer and that I was refused," said Levin, and all the tenderness he had been feeling for Kitty a minute before was replaced by a feeling of anger for the slight he had suffered. "What makes you suppose I know?" "Because everybody knows it..." "That's just where you are mistaken; I did not know it, though I had guessed it was so." "Well, now you know it." "All I knew was that something had happened that made her dreadfully miserable, and that she begged me never to speak of it. And if she would not tell me, she would certainly not speak of it to anyone else. But what did pass between you? Tell me." "I have told you." "When was it?" "When I was at their house the last time." "Do you know that," said Darya Alexandrovna, "I am awfully, awfully sorry for her. You suffer only from pride...." "Perhaps so," said Levin, "but..." She interrupted him. "But she, poor girl ... I am awfully, awfully sorry for her. Now I see it all." "Well, Darya Alexandrovna, you must excuse me," he said, getting up. "Good-bye, Darya Alexandrovna, till we meet again." "No, wait a minute," she said, clutching him by the sleeve. "Wait a minute, sit down." "Please, please, don't let us talk of this," he said, sitting down, and at the same time feeling rise up and stir within his heart a hope he had believed to be buried. "If I did not like you," she said, and tears came into her eyes; "if I did not know you, as I do know you . . ." The feeling that had seemed dead revived more and more, rose up and took possession of Levin's heart. "Yes, I understand it all now," said Darya Alexandrovna. "You can't understand it; for you men, who are free and make your own choice, it's always clear whom you love. But a girl's in a position of suspense, with all a woman's or maiden's modesty, a girl who sees you men from afar, who takes everything on trust,--a girl may have, and often has, such a feeling that she cannot tell what to say." "Yes, if the heart does not speak..." "No, the heart does speak; but just consider: you men have views about a girl, you come to the house, you make friends, you criticize, you wait to see if you have found what you love, and then, when you are sure you love her, you make an offer...." "Well, that's not quite it." "Anyway you make an offer, when your love is ripe or when the balance has completely turned between the two you are choosing from. But a girl is not asked. She is expected to make her choice, and yet she cannot choose, she can only answer 'yes' or 'no.'" "Yes, to choose between me and Vronsky," thought Levin, and the dead thing that had come to life within him died again, and only weighed on his heart and set it aching. "Darya Alexandrovna," he said, "that's how one chooses a new dress or some purchase or other, not love. The choice has been made, and so much the better.... And there can be no repeating it." "Ah, pride, pride!" said Darya Alexandrovna, as though despising him for the baseness of this feeling in comparison with that other feeling which only women know. "At the time when you made Kitty an offer she was just in a position in which she could not answer. She was in doubt. Doubt between you and Vronsky. Him she was seeing every day, and you she had not seen for a long while. Supposing she had been older ... I, for instance, in her place could have felt no doubt. I always disliked him, and so it has turned out." Levin recalled Kitty's answer. She had said: "_No, that cannot be_..." "Darya Alexandrovna," he said dryly, "I appreciate your confidence in me; I believe you are making a mistake. But whether I am right or wrong, that pride you so despise makes any thought of Katerina Alexandrovna out of the question for me,--you understand, utterly out of the question." "I will only say one thing more: you know that I am speaking of my sister, whom I love as I love my own children. I don't say she cared for you, all I meant to say is that her refusal at that moment proves nothing." "I don't know!" said Levin, jumping up. "If you only knew how you are hurting me. It's just as if a child of yours were dead, and they were to say to you: He would have been like this and like that, and he might have lived, and how happy you would have been in him. But he's dead, dead, dead!..." "How absurd you are!" said Darya Alexandrovna, looking with mournful tenderness at Levin's excitement. "Yes, I see it all more and more clearly," she went on musingly. "So you won't come to see us, then, when Kitty's here?" "No, I shan't come. Of course I won't avoid meeting Katerina Alexandrovna, but as far as I can, I will try to save her the annoyance of my presence." "You are very, very absurd," repeated Darya Alexandrovna, looking with tenderness into his face. "Very well then, let it be as though we had not spoken of this. What have you come for, Tanya?" she said in French to the little girl who had come in. "Where's my spade, mamma?" "I speak French, and you must too." The little girl tried to say it in French, but could not remember the French for spade; the mother prompted her, and then told her in French where to look for the spade. And this made a disagreeable impression on Levin. Everything in Darya Alexandrovna's house and children struck him now as by no means so charming as a little while before. "And what does she talk French with the children for?" he thought; "how unnatural and false it is! And the children feel it so: Learning French and unlearning sincerity," he thought to himself, unaware that Darya Alexandrovna had thought all that over twenty times already, and yet, even at the cost of some loss of sincerity, believed it necessary to teach her children French in that way. "But why are you going? Do stay a little." Levin stayed to tea; but his good-humor had vanished, and he felt ill at ease. After tea he went out into the hall to order his horses to be put in, and, when he came back, he found Darya Alexandrovna greatly disturbed, with a troubled face, and tears in her eyes. While Levin had been outside, an incident had occurred which had utterly shattered all the happiness she had been feeling that day, and her pride in her children. Grisha and Tanya had been fighting over a ball. Darya Alexandrovna, hearing a scream in the nursery, ran in and saw a terrible sight. Tanya was pulling Grisha's hair, while he, with a face hideous with rage, was beating her with his fists wherever he could get at her. Something snapped in Darya Alexandrovna's heart when she saw this. It was as if darkness had swooped down upon her life; she felt that these children of hers, that she was so proud of, were not merely most ordinary, but positively bad, ill-bred children, with coarse, brutal propensities--wicked children. She could not talk or think of anything else, and she could not speak to Levin of her misery. Levin saw she was unhappy and tried to comfort her, saying that it showed nothing bad, that all children fight; but, even as he said it, he was thinking in his heart: "No, I won't be artificial and talk French with my children; but my children won't be like that. All one has to do is not spoil children, not to distort their nature, and they'll be delightful. No, my children won't be like that." He said good-bye and drove away, and she did not try to keep him. Chapter 11 In the middle of July the elder of the village on Levin's sister's estate, about fifteen miles from Pokrovskoe, came to Levin to report on how things were going there and on the hay. The chief source of income on his sister's estate was from the riverside meadows. In former years the hay had been bought by the peasants for twenty roubles the three acres. When Levin took over the management of the estate, he thought on examining the grasslands that they were worth more, and he fixed the price at twenty-five roubles the three acres. The peasants would not give that price, and, as Levin suspected, kept off other purchasers. Then Levin had driven over himself, and arranged to have the grass cut, partly by hired labor, partly at a payment of a certain proportion of the crop. His own peasants put every hindrance they could in the way of this new arrangement, but it was carried out, and the first year the meadows had yielded a profit almost double. The previous year--which was the third year--the peasants had maintained the same opposition to the arrangement, and the hay had been cut on the same system. This year the peasants were doing all the mowing for a third of the hay crop, and the village elder had come now to announce that the hay had been cut, and that, fearing rain, they had invited the counting-house clerk over, had divided the crop in his presence, and had raked together eleven stacks as the owner's share. From the vague answers to his question how much hay had been cut on the principal meadow, from the hurry of the village elder who had made the division, not asking leave, from the whole tone of the peasant, Levin perceived that there was something wrong in the division of the hay, and made up his mind to drive over himself to look into the matter. Arriving for dinner at the village, and leaving his horse at the cottage of an old friend of his, the husband of his brother's wet-nurse, Levin went to see the old man in his bee-house, wanting to find out from him the truth about the hay. Parmenitch, a talkative, comely old man, gave Levin a very warm welcome, showed him all he was doing, told him everything about his bees and the swarms of that year; but gave vague and unwilling answers to Levin's inquiries about the mowing. This confirmed Levin still more in his suspicions. He went to the hay fields and examined the stacks. The haystacks could not possibly contain fifty wagon-loads each, and to convict the peasants Levin ordered the wagons that had carried the hay to be brought up directly, to lift one stack, and carry it into the barn. There turned out to be only thirty-two loads in the stack. In spite of the village elder's assertions about the compressibility of hay, and its having settled down in the stacks, and his swearing that everything had been done in the fear of God, Levin stuck to his point that the hay had been divided without his orders, and that, therefore, he would not accept that hay as fifty loads to a stack. After a prolonged dispute the matter was decided by the peasants taking these eleven stacks, reckoning them as fifty loads each. The arguments and the division of the haycocks lasted the whole afternoon. When the last of the hay had been divided, Levin, intrusting the superintendence of the rest to the counting-house clerk, sat down on a haycock marked off by a stake of willow, and looked admiringly at the meadow swarming with peasants. In front of him, in the bend of the river beyond the marsh, moved a bright-colored line of peasant women, and the scattered hay was being rapidly formed into gray winding rows over the pale green stubble. After the women came the men with pitchforks, and from the gray rows there were growing up broad, high, soft haycocks. To the left, carts were rumbling over the meadow that had been already cleared, and one after another the haycocks vanished, flung up in huge forkfuls, and in their place there were rising heavy cartloads of fragrant hay hanging over the horses' hind-quarters. "What weather for haying! What hay it'll be!" said an old man, squatting down beside Levin. "It's tea, not hay! It's like scattering grain to the ducks, the way they pick it up!" he added, pointing to the growing haycocks. "Since dinnertime they've carried a good half of it." "The last load, eh?" he shouted to a young peasant, who drove by, standing in the front of an empty cart, shaking the cord reins. "The last, dad!" the lad shouted back, pulling in the horse, and, smiling, he looked round at a bright, rosy-checked peasant girl who sat in the cart smiling too, and drove on. "Who's that? Your son?" asked Levin. "My baby," said the old man with a tender smile. "What a fine fellow!" "The lad's all right." "Married already?" "Yes, it's two years last St. Philip's day." "Any children?" "Children indeed! Why, for over a year he was innocent as a babe himself, and bashful too," answered the old man. "Well, the hay! It's as fragrant as tea!" he repeated, wishing to change the subject. Levin looked more attentively at Ivan Parmenov and his wife. They were loading a haycock onto the cart not far from him. Ivan Parmenov was standing on the cart, taking, laying in place, and stamping down the huge bundles of hay, which his pretty young wife deftly handed up to him, at first in armfuls, and then on the pitchfork. The young wife worked easily, merrily, and dexterously. The close-packed hay did not once break away off her fork. First she gathered it together, stuck the fork into it, then with a rapid, supple movement leaned the whole weight of her body on it, and at once with a bend of her back under the red belt she drew herself up, and arching her full bosom under the white smock, with a smart turn swung the fork in her arms, and flung the bundle of hay high onto the cart. Ivan, obviously doing his best to save her every minute of unnecessary labor, made haste, opening his arms to clutch the bundle and lay it in the cart. As she raked together what was left of the hay, the young wife shook off the bits of hay that had fallen on her neck, and straightening the red kerchief that had dropped forward over her white brow, not browned like her face by the sun, she crept under the cart to tie up the load. Ivan directed her how to fasten the cord to the cross-piece, and at something she said he laughed aloud. In the expressions of both faces was to be seen vigorous, young, freshly awakened love. Chapter 12 The load was tied on. Ivan jumped down and took the quiet, sleek horse by the bridle. The young wife flung the rake up on the load, and with a bold step, swinging her arms, she went to join the women, who were forming a ring for the haymakers' dance. Ivan drove off to the road and fell into line with the other loaded carts. The peasant women, with their rakes on their shoulders, gay with bright flowers, and chattering with ringing, merry voices, walked behind the hay cart. One wild untrained female voice broke into a song, and sang it alone through a verse, and then the same verse was taken up and repeated by half a hundred strong healthy voices, of all sorts, coarse and fine, singing in unison. The women, all singing, began to come close to Levin, and he felt as though a storm were swooping down upon him with a thunder of merriment. The storm swooped down, enveloped him and the haycock on which he was lying, and the other haycocks, and the wagon-loads, and the whole meadow and distant fields all seemed to be shaking and singing to the measures of this wild merry song with its shouts and whistles and clapping. Levin felt envious of this health and mirthfulness; he longed to take part in the expression of this joy of life. But he could do nothing, and had to lie and look on and listen. When the peasants, with their singing, had vanished out of sight and hearing, a weary feeling of despondency at his own isolation, his physical inactivity, his alienation from this world, came over Levin. Some of the very peasants who had been most active in wrangling with him over the hay, some whom he had treated with contumely, and who had tried to cheat him, those very peasants had greeted him goodhumoredly, and evidently had not, were incapable of having any feeling of rancor against him, any regret, any recollection even of having tried to deceive him. All that was drowned in a sea of merry common labor. God gave the day, God gave the strength. And the day and the strength were consecrated to labor, and that labor was its own reward. For whom the labor? What would be its fruits? These were idle considerations--beside the point. Often Levin had admired this life, often he had a sense of envy of the men who led this life; but today for the first time, especially under the influence of what he had seen in the attitude of Ivan Parmenov to his young wife, the idea presented itself definitely to his mind that it was in his power to exchange the dreary, artificial, idle, and individualistic life he was leading for this laborious, pure, and socially delightful life. The old man who had been sitting beside him had long ago gone home; the people had all separated. Those who lived near had gone home, while those who came from far were gathered into a group for supper, and to spend the night in the meadow. Levin, unobserved by the peasants, still lay on the haycock, and still looked on and listened and mused. The peasants who remained for the night in the meadow scarcely slept all the short summer night. At first there was the sound of merry talk and laughing all together over the supper, then singing again and laughter. All the long day of toil had left no trace in them but lightness of heart. Before the early dawn all was hushed. Nothing was to be heard but the night sounds of the frogs that never ceased in the marsh, and the horses snorting in the mist that rose over the meadow before the morning. Rousing himself, Levin got up from the haycock, and looking at the stars, he saw that the night was over. "Well, what am I going to do? How am I to set about it?" he said to himself, trying to express to himself all the thoughts and feelings he had passed through in that brief night. All the thoughts and feelings he had passed through fell into three separate trains of thought. One was the renunciation of his old life, of his utterly useless education. This renunciation gave him satisfaction, and was easy and simple. Another series of thoughts and mental images related to the life he longed to live now. The simplicity, the purity, the sanity of this life he felt clearly, and he was convinced he would find in it the content, the peace, and the dignity, of the lack of which he was so miserably conscious. But a third series of ideas turned upon the question how to effect this transition from the old life to the new. And there nothing took clear shape for him. "Have a wife? Have work and the necessity of work? Leave Pokrovskoe? Buy land? Become a member of a peasant community? Marry a peasant girl? How am I to set about it?" he asked himself again, and could not find an answer. "I haven't slept all night, though, and I can't think it out clearly," he said to himself. "I'll work it out later. One thing's certain, this night has decided my fate. All my old dreams of home life were absurd, not the real thing," he told himself. "It's all ever so much simpler and better..." "How beautiful!" he thought, looking at the strange, as it were, mother-of-pearl shell of white fleecy cloudlets resting right over his head in the middle of the sky. "How exquisite it all is in this exquisite night! And when was there time for that cloud-shell to form? Just now I looked at the sky, and there was nothing in it--only two white streaks. Yes, and so imperceptibly too my views of life changed!" He went out of the meadow and walked along the highroad towards the village. A slight wind arose, and the sky looked gray and sullen. The gloomy moment had come that usually precedes the dawn, the full triumph of light over darkness. Shrinking from the cold, Levin walked rapidly, looking at the ground. "What's that? Someone coming," he thought, catching the tinkle of bells, and lifting his head. Forty paces from him a carriage with four horses harnessed abreast was driving towards him along the grassy road on which he was walking. The shaft-horses were tilted against the shafts by the ruts, but the dexterous driver sitting on the box held the shaft over the ruts, so that the wheels ran on the smooth part of the road. This was all Levin noticed, and without wondering who it could be, he gazed absently at the coach. In the coach was an old lady dozing in one corner, and at the window, evidently only just awake, sat a young girl holding in both hands the ribbons of a white cap. With a face full of light and thought, full of a subtle, complex inner life, that was remote from Levin, she was gazing beyond him at the glow of the sunrise. At the very instant when this apparition was vanishing, the truthful eyes glanced at him. She recognized him, and her face lighted up with wondering delight. He could not be mistaken. There were no other eyes like those in the world. There was only one creature in the world that could concentrate for him all the brightness and meaning of life. It was she. It was Kitty. He understood that she was driving to Ergushovo from the railway station. And everything that had been stirring Levin during that sleepless night, all the resolutions he had made, all vanished at once. He recalled with horror his dreams of marrying a peasant girl. There only, in the carriage that had crossed over to the other side of the road, and was rapidly disappearing, there only could he find the solution of the riddle of his life, which had weighed so agonizingly upon him of late. She did not look out again. The sound of the carriage-springs was no longer audible, the bells could scarcely be heard. The barking of dogs showed the carriage had reached the village, and all that was left was the empty fields all round, the village in front, and he himself isolated and apart from it all, wandering lonely along the deserted highroad. He glanced at the sky, expecting to find there the cloud shell he had been admiring and taking as the symbol of the ideas and feelings of that night. There was nothing in the sky in the least like a shell. There, in the remote heights above, a mysterious change had been accomplished. There was no trace of shell, and there was stretched over fully half the sky an even cover of tiny and ever tinier cloudlets. The sky had grown blue and bright; and with the same softness, but with the same remoteness, it met his questioning gaze. "No," he said to himself, "however good that life of simplicity and toil may be, I cannot go back to it. I love _her_." Chapter 13 None but those who were most intimate with Alexey Alexandrovitch knew that, while on the surface the coldest and most reasonable of men, he had one weakness quite opposed to the general trend of his character. Alexey Alexandrovitch could not hear or see a child or woman crying without being moved. The sight of tears threw him into a state of nervous agitation, and he utterly lost all power of reflection. The chief secretary of his department and his private secretary were aware of this, and used to warn women who came with petitions on no account to give way to tears, if they did not want to ruin their chances. "He will get angry, and will not listen to you," they used to say. And as a fact, in such cases the emotional disturbance set up in Alexey Alexandrovitch by the sight of tears found expression in hasty anger. "I can do nothing. Kindly leave the room!" he would commonly cry in such cases. When returning from the races Anna had informed him of her relations with Vronsky, and immediately afterwards had burst into tears, hiding her face in her hands, Alexey Alexandrovitch, for all the fury aroused in him against her, was aware at the same time of a rush of that emotional disturbance always produced in him by tears. Conscious of it, and conscious that any expression of his feelings at that minute would be out of keeping with the position, he tried to suppress every manifestation of life in himself, and so neither stirred nor looked at her. This was what had caused that strange expression of deathlike rigidity in his face which had so impressed Anna. When they reached the house he helped her to get out of the carriage, and making an effort to master himself, took leave of her with his usual urbanity, and uttered that phrase that bound him to nothing; he said that tomorrow he would let her know his decision. His wife's words, confirming his worst suspicions, had sent a cruel pang to the heart of Alexey Alexandrovitch. That pang was intensified by the strange feeling of physical pity for her set up by her tears. But when he was all alone in the carriage Alexey Alexandrovitch, to his surprise and delight, felt complete relief both from this pity and from the doubts and agonies of jealousy. He experienced the sensations of a man who has had a tooth out after suffering long from toothache. After a fearful agony and a sense of something huge, bigger than the head itself, being torn out of his jaw, the sufferer, hardly able to believe in his own good luck, feels all at once that what has so long poisoned his existence and enchained his attention, exists no longer, and that he can live and think again, and take interest in other things besides his tooth. This feeling Alexey Alexandrovitch was experiencing. The agony had been strange and terrible, but now it was over; he felt that he could live again and think of something other than his wife. "No honor, no heart, no religion; a corrupt woman. I always knew it and always saw it, though I tried to deceive myself to spare her," he said to himself. And it actually seemed to him that he always had seen it: he recalled incidents of their past life, in which he had never seen anything wrong before--now these incidents proved clearly that she had always been a corrupt woman. "I made a mistake in linking my life to hers; but there was nothing wrong in my mistake, and so I cannot be unhappy. It's not I that am to blame," he told himself, "but she. But I have nothing to do with her. She does not exist for me..." Everything relating to her and her son, towards whom his sentiments were as much changed as towards her, ceased to interest him. The only thing that interested him now was the question of in what way he could best, with most propriety and comfort for himself, and thus with most justice, extricate himself from the mud with which she had spattered him in her fall, and then proceed along his path of active, honorable, and useful existence. "I cannot be made unhappy by the fact that a contemptible woman has committed a crime. I have only to find the best way out of the difficult position in which she has placed me. And I shall find it," he said to himself, frowning more and more. "I'm not the first nor the last." And to say nothing of historical instances dating from the "Fair Helen" of Menelaus, recently revived in the memory of all, a whole list of contemporary examples of husbands with unfaithful wives in the highest society rose before Alexey Alexandrovitch's imagination. "Daryalov, Poltavsky, Prince Karibanov, Count Paskudin, Dram.... Yes, even Dram, such an honest, capable fellow ... Semyonov, Tchagin, Sigonin," Alexey Alexandrovitch remembered. "Admitting that a certain quite irrational _ridicule_ falls to the lot of these men, yet I never saw anything but a misfortune in it, and always felt sympathy for it," Alexey Alexandrovitch said to himself, though indeed this was not the fact, and he had never felt sympathy for misfortunes of that kind, but the more frequently he had heard of instances of unfaithful wives betraying their husbands, the more highly he had thought of himself. "It is a misfortune which may befall anyone. And this misfortune has befallen me. The only thing to be done is to make the best of the position." And he began passing in review the methods of proceeding of men who had been in the same position that he was in. "Daryalov fought a duel...." The duel had particularly fascinated the thoughts of Alexey Alexandrovitch in his youth, just because he was physically a coward, and was himself well aware of the fact. Alexey Alexandrovitch could not without horror contemplate the idea of a pistol aimed at himself, and had never made use of any weapon in his life. This horror had in his youth set him pondering on dueling, and picturing himself in a position in which he would have to expose his life to danger. Having attained success and an established position in the world, he had long ago forgotten this feeling; but the habitual bent of feeling reasserted itself, and dread of his own cowardice proved even now so strong that Alexey Alexandrovitch spent a long while thinking over the question of dueling in all its aspects, and hugging the idea of a duel, though he was fully aware beforehand that he would never under any circumstances fight one. "There's no doubt our society is still so barbarous (it's not the same in England) that very many"--and among these were those whose opinion Alexey Alexandrovitch particularly valued--"look favorably on the duel; but what result is attained by it? Suppose I call him out," Alexey Alexandrovitch went on to himself, and vividly picturing the night he would spend after the challenge, and the pistol aimed at him, he shuddered, and knew that he never would do it--"suppose I call him out. Suppose I am taught," he went on musing, "to shoot; I press the trigger," he said to himself, closing his eyes, "and it turns out I have killed him," Alexey Alexandrovitch said to himself, and he shook his head as though to dispel such silly ideas. "What sense is there in murdering a man in order to define one's relation to a guilty wife and son? I should still just as much have to decide what I ought to do with her. But what is more probable and what would doubtless occur--I should be killed or wounded. I, the innocent person, should be the victim--killed or wounded. It's even more senseless. But apart from that, a challenge to fight would be an act hardly honest on my side. Don't I know perfectly well that my friends would never allow me to fight a duel--would never allow the life of a statesman, needed by Russia, to be exposed to danger? Knowing perfectly well beforehand that the matter would never come to real danger, it would amount to my simply trying to gain a certain sham reputation by such a challenge. That would be dishonest, that would be false, that would be deceiving myself and others. A duel is quite irrational, and no one expects it of me. My aim is simply to safeguard my reputation, which is essential for the uninterrupted pursuit of my public duties." Official duties, which had always been of great consequence in Alexey Alexandrovitch's eyes, seemed of special importance to his mind at this moment. Considering and rejecting the duel, Alexey Alexandrovitch turned to divorce--another solution selected by several of the husbands he remembered. Passing in mental review all the instances he knew of divorces (there were plenty of them in the very highest society with which he was very familiar), Alexey Alexandrovitch could not find a single example in which the object of divorce was that which he had in view. In all these instances the husband had practically ceded or sold his unfaithful wife, and the very party which, being in fault, had not the right to contract a fresh marriage, had formed counterfeit, pseudo-matrimonial ties with a self-styled husband. In his own case, Alexey Alexandrovitch saw that a legal divorce, that is to say, one in which only the guilty wife would be repudiated, was impossible of attainment. He saw that the complex conditions of the life they led made the coarse proofs of his wife's guilt, required by the law, out of the question; he saw that a certain refinement in that life would not admit of such proofs being brought forward, even if he had them, and that to bring forward such proofs would damage him in the public estimation more than it would her. An attempt at divorce could lead to nothing but a public scandal, which would be a perfect godsend to his enemies for calumny and attacks on his high position in society. His chief object, to define the position with the least amount of disturbance possible, would not be attained by divorce either. Moreover, in the event of divorce, or even of an attempt to obtain a divorce, it was obvious that the wife broke off all relations with the husband and threw in her lot with the lover. And in spite of the complete, as he supposed, contempt and indifference he now felt for his wife, at the bottom of his heart Alexey Alexandrovitch still had one feeling left in regard to her--a disinclination to see her free to throw in her lot with Vronsky, so that her crime would be to her advantage. The mere notion of this so exasperated Alexey Alexandrovitch, that directly it rose to his mind he groaned with inward agony, and got up and changed his place in the carriage, and for a long while after, he sat with scowling brows, wrapping his numbed and bony legs in the fleecy rug. "Apart from formal divorce, One might still do like Karibanov, Paskudin, and that good fellow Dram--that is, separate from one's wife," he went on thinking, when he had regained his composure. But this step too presented the same drawback of public scandal as a divorce, and what was more, a separation, quite as much as a regular divorce, flung his wife into the arms of Vronsky. "No, it's out of the question, out of the question!" he said again, twisting his rug about him again. "I cannot be unhappy, but neither she nor he ought to be happy." The feeling of jealousy, which had tortured him during the period of uncertainty, had passed away at the instant when the tooth had been with agony extracted by his wife's words. But that feeling had been replaced by another, the desire, not merely that she should not be triumphant, but that she should get due punishment for her crime. He did not acknowledge this feeling, but at the bottom of his heart he longed for her to suffer for having destroyed his peace of mind--his honor. And going once again over the conditions inseparable from a duel, a divorce, a separation, and once again rejecting them, Alexey Alexandrovitch felt convinced that there was only one solution,--to keep her with him, concealing what had happened from the world, and using every measure in his power to break off the intrigue, and still more--though this he did not admit to himself--to punish her. "I must inform her of my conclusion, that thinking over the terrible position in which she has placed her family, all other solutions will be worse for both sides than an external _status quo_, and that such I agree to retain, on the strict condition of obedience on her part to my wishes, that is to say, cessation of all intercourse with her lover." When this decision had been finally adopted, another weighty consideration occurred to Alexey Alexandrovitch in support of it. "By such a course only shall I be acting in accordance with the dictates of religion," he told himself. "In adopting this course, I am not casting off a guilty wife, but giving her a chance of amendment; and, indeed, difficult as the task will be to me, I shall devote part of my energies to her reformation and salvation." Though Alexey Alexandrovitch was perfectly aware that he could not exert any moral influence over his wife, that such an attempt at reformation could lead to nothing but falsity; though in passing through these difficult moments he had not once thought of seeking guidance in religion, yet now, when his conclusion corresponded, as it seemed to him, with the requirements of religion, this religious sanction to his decision gave him complete satisfaction, and to some extent restored his peace of mind. He was pleased to think that, even in such an important crisis in life, no one would be able to say that he had not acted in accordance with the principles of that religion whose banner he had always held aloft amid the general coolness and indifference. As he pondered over subsequent developments, Alexey Alexandrovitch did not see, indeed, why his relations with his wife should not remain practically the same as before. No doubt, she could never regain his esteem, but there was not, and there could not be, any sort of reason that his existence should be troubled, and that he should suffer because she was a bad and faithless wife. "Yes, time will pass; time, which arranges all things, and the old relations will be reestablished," Alexey Alexandrovitch told himself; "so far reestablished, that is, that I shall not be sensible of a break in the continuity of my life. She is bound to be unhappy, but I am not to blame, and so I cannot be unhappy." Chapter 14 As he neared Petersburg, Alexey Alexandrovitch not only adhered entirely to his decision, but was even composing in his head the letter he would write to his wife. Going into the porter's room, Alexey Alexandrovitch glanced at the letters and papers brought from his office, and directed that they should be brought to him in his study. "The horses can be taken out and I will see no one," he said in answer to the porter, with a certain pleasure, indicative of his agreeable frame of mind, emphasizing the words, "see no one." In his study Alexey Alexandrovitch walked up and down twice, and stopped at an immense writing-table, on which six candles had already been lighted by the valet who had preceded him. He cracked his knuckles and sat down, sorting out his writing appurtenances. Putting his elbows on the table, he bent his head on one side, thought a minute, and began to write, without pausing for a second. He wrote without using any form of address to her, and wrote in French, making use of the plural "_vous_," which has not the same note of coldness as the corresponding Russian form. "At our last conversation, I notified you of my intention to communicate to you my decision in regard to the subject of that conversation. Having carefully considered everything, I am writing now with the object of fulfilling that promise. My decision is as follows. Whatever your conduct may have been, I do not consider myself justified in breaking the ties in which we are bound by a Higher Power. The family cannot be broken up by a whim, a caprice, or even by the sin of one of the partners in the marriage, and our life must go on as it has done in the past. This is essential for me, for you, and for our son. I am fully persuaded that you have repented and do repent of what has called forth the present letter, and that you will cooperate with me in eradicating the cause of our estrangement, and forgetting the past. In the contrary event, you can conjecture what awaits you and your son. All this I hope to discuss more in detail in a personal interview. As the season is drawing to a close, I would beg you to return to Petersburg as quickly as possible, not later than Tuesday. All necessary preparations shall be made for your arrival here. I beg you to note that I attach particular significance to compliance with this request. A. Karenin "P.S.--I enclose the money which may be needed for your expenses." He read the letter through and felt pleased with it, and especially that he had remembered to enclose money: there was not a harsh word, not a reproach in it, nor was there undue indulgence. Most of all, it was a golden bridge for return. Folding the letter and smoothing it with a massive ivory knife, and putting it in an envelope with the money, he rang the bell with the gratification it always afforded him to use the well arranged appointments of his writing-table. "Give this to the courier to be delivered to Anna Arkadyevna tomorrow at the summer villa," he said, getting up. "Certainly, your excellency; tea to be served in the study?" Alexey Alexandrovitch ordered tea to be brought to the study, and playing with the massive paper-knife, he moved to his easy chair, near which there had been placed ready for him a lamp and the French work on Egyptian hieroglyphics that he had begun. Over the easy chair there hung in a gold frame an oval portrait of Anna, a fine painting by a celebrated artist. Alexey Alexandrovitch glanced at it. The unfathomable eyes gazed ironically and insolently at him. Insufferably insolent and challenging was the effect in Alexey Alexandrovitch's eyes of the black lace about the head, admirably touched in by the painter, the black hair and handsome white hand with one finger lifted, covered with rings. After looking at the portrait for a minute, Alexey Alexandrovitch shuddered so that his lips quivered and he uttered the sound "brrr," and turned away. He made haste to sit down in his easy chair and opened the book. He tried to read, but he could not revive the very vivid interest he had felt before in Egyptian hieroglyphics. He looked at the book and thought of something else. He thought not of his wife, but of a complication that had arisen in his official life, which at the time constituted the chief interest of it. He felt that he had penetrated more deeply than ever before into this intricate affair, and that he had originated a leading idea--he could say it without self-flattery--calculated to clear up the whole business, to strengthen him in his official career, to discomfit his enemies, and thereby to be of the greatest benefit to the government. Directly the servant had set the tea and left the room, Alexey Alexandrovitch got up and went to the writing-table. Moving into the middle of the table a portfolio of papers, with a scarcely perceptible smile of self-satisfaction, he took a pencil from a rack and plunged into the perusal of a complex report relating to the present complication. The complication was of this nature: Alexey Alexandrovitch's characteristic quality as a politician, that special individual qualification that every rising functionary possesses, the qualification that with his unflagging ambition, his reserve, his honesty, and with his self-confidence had made his career, was his contempt for red tape, his cutting down of correspondence, his direct contact, wherever possible, with the living fact, and his economy. It happened that the famous Commission of the 2nd of June had set on foot an inquiry into the irrigation of lands in the Zaraisky province, which fell under Alexey Alexandrovitch's department, and was a glaring example of fruitless expenditure and paper reforms. Alexey Alexandrovitch was aware of the truth of this. The irrigation of these lands in the Zaraisky province had been initiated by the predecessor of Alexey Alexandrovitch's predecessor. And vast sums of money had actually been spent and were still being spent on this business, and utterly unproductively, and the whole business could obviously lead to nothing whatever. Alexey Alexandrovitch had perceived this at once on entering office, and would have liked to lay hands on the Board of Irrigation. But at first, when he did not yet feel secure in his position, he knew it would affect too many interests, and would be injudicious. Later on he had been engrossed in other questions, and had simply forgotten the Board of Irrigation. It went of itself, like all such boards, by the mere force of inertia. (Many people gained their livelihood by the Board of Irrigation, especially one highly conscientious and musical family: all the daughters played on stringed instruments, and Alexey Alexandrovitch knew the family and had stood godfather to one of the elder daughters.) The raising of this question by a hostile department was in Alexey Alexandrovitch's opinion a dishonorable proceeding, seeing that in every department there were things similar and worse, which no one inquired into, for well-known reasons of official etiquette. However, now that the glove had been thrown down to him, he had boldly picked it up and demanded the appointment of a special commission to investigate and verify the working of the Board of Irrigation of the lands in the Zaraisky province. But in compensation he gave no quarter to the enemy either. He demanded the appointment of another special commission to inquire into the question of the Native Tribes Organization Committee. The question of the Native Tribes had been brought up incidentally in the Commission of the 2nd of June, and had been pressed forward actively by Alexey Alexandrovitch as one admitting of no delay on account of the deplorable condition of the native tribes. In the commission this question had been a ground of contention between several departments. The department hostile to Alexey Alexandrovitch proved that the condition of the native tribes was exceedingly flourishing, that the proposed reconstruction might be the ruin of their prosperity, and that if there were anything wrong, it arose mainly from the failure on the part of Alexey Alexandrovitch's department to carry out the measures prescribed by law. Now Alexey Alexandrovitch intended to demand: First, that a new commission should be formed which should be empowered to investigate the condition of the native tribes on the spot; secondly, if it should appear that the condition of the native tribes actually was such as it appeared to be from the official documents in the hands of the committee, that another new scientific commission should be appointed to investigate the deplorable condition of the native tribes from the--(1) political, (2) administrative, (3) economic, (4) ethnographical, (5) material, and (6) religious points of view; thirdly, that evidence should be required from the rival department of the measures that had been taken during the last ten years by that department for averting the disastrous conditions in which the native tribes were now placed; and fourthly and finally, that that department explain why it had, as appeared from the evidence before the committee, from No. 17,015 and 18,038, from December 5, 1863, and June 7, 1864, acted in direct contravention of the intent of the law T... Act 18, and the note to Act 36. A flash of eagerness suffused the face of Alexey Alexandrovitch as he rapidly wrote out a synopsis of these ideas for his own benefit. Having filled a sheet of paper, he got up, rang, and sent a note to the chief secretary of his department to look up certain necessary facts for him. Getting up and walking about the room, he glanced again at the portrait, frowned, and smiled contemptuously. After reading a little more of the book on Egyptian hieroglyphics, and renewing his interest in it, Alexey Alexandrovitch went to bed at eleven o'clock, and recollecting as he lay in bed the incident with his wife, he saw it now in by no means such a gloomy light. Chapter 15 Though Anna had obstinately and with exasperation contradicted Vronsky when he told her their position was impossible, at the bottom of her heart she regarded her own position as false and dishonorable, and she longed with her whole soul to change it. On the way home from the races she had told her husband the truth in a moment of excitement, and in spite of the agony she had suffered in doing so, she was glad of it. After her husband had left her, she told herself that she was glad, that now everything was made clear, and at least there would be no more lying and deception. It seemed to her beyond doubt that her position was now made clear forever. It might be bad, this new position, but it would be clear; there would be no indefiniteness or falsehood about it. The pain she had caused herself and her husband in uttering those words would be rewarded now by everything being made clear, she thought. That evening she saw Vronsky, but she did not tell him of what had passed between her and her husband, though, to make the position definite, it was necessary to tell him. When she woke up next morning the first thing that rose to her mind was what she had said to her husband, and those words seemed to her so awful that she could not conceive now how she could have brought herself to utter those strange, coarse words, and could not imagine what would come of it. But the words were spoken, and Alexey Alexandrovitch had gone away without saying anything. "I saw Vronsky and did not tell him. At the very instant he was going away I would have turned him back and told him, but I changed my mind, because it was strange that I had not told him the first minute. Why was it I wanted to tell him and did not tell him?" And in answer to this question a burning blush of shame spread over her face. She knew what had kept her from it, she knew that she had been ashamed. Her position, which had seemed to her simplified the night before, suddenly struck her now as not only not simple, but as absolutely hopeless. She felt terrified at the disgrace, of which she had not ever thought before. Directly she thought of what her husband would do, the most terrible ideas came to her mind. She had a vision of being turned out of the house, of her shame being proclaimed to all the world. She asked herself where she should go when she was turned out of the house, and she could not find an answer. When she thought of Vronsky, it seemed to her that he did not love her, that he was already beginning to be tired of her, that she could not offer herself to him, and she felt bitter against him for it. It seemed to her that the words that she had spoken to her husband, and had continually repeated in her imagination, she had said to everyone, and everyone had heard them. She could not bring herself to look those of her own household in the face. She could not bring herself to call her maid, and still less go downstairs and see her son and his governess. The maid, who had been listening at her door for a long while, came into her room of her own accord. Anna glanced inquiringly into her face, and blushed with a scared look. The maid begged her pardon for coming in, saying that she had fancied the bell rang. She brought her clothes and a note. The note was from Betsy. Betsy reminded her that Liza Merkalova and Baroness Shtoltz were coming to play croquet with her that morning with their adorers, Kaluzhsky and old Stremov. "Come, if only as a study in morals. I shall expect you," she finished. Anna read the note and heaved a deep sigh. "Nothing, I need nothing," she said to Annushka, who was rearranging the bottles and brushes on the dressing table. "You can go. I'll dress at once and come down. I need nothing." Annushka went out, but Anna did not begin dressing, and sat in the same position, her head and hands hanging listlessly, and every now and then she shivered all over, seemed as though she would make some gesture, utter some word, and sank back into lifelessness again. She repeated continually, "My God! my God!" But neither "God" nor "my" had any meaning to her. The idea of seeking help in her difficulty in religion was as remote from her as seeking help from Alexey Alexandrovitch himself, although she had never had doubts of the faith in which she had been brought up. She knew that the support of religion was possible only upon condition of renouncing what made up for her the whole meaning of life. She was not simply miserable, she began to feel alarm at the new spiritual condition, never experienced before, in which she found herself. She felt as though everything were beginning to be double in her soul, just as objects sometimes appear double to over-tired eyes. She hardly knew at times what it was she feared, and what she hoped for. Whether she feared or desired what had happened, or what was going to happen, and exactly what she longed for, she could not have said. "Ah, what am I doing!" she said to herself, feeling a sudden thrill of pain in both sides of her head. When she came to herself, she saw that she was holding her hair in both hands, each side of her temples, and pulling it. She jumped up, and began walking about. "The coffee is ready, and mademoiselle and Seryozha are waiting," said Annushka, coming back again and finding Anna in the same position. "Seryozha? What about Seryozha?" Anna asked, with sudden eagerness, recollecting her son's existence for the first time that morning. "He's been naughty, I think," answered Annushka with a smile. "In what way?" "Some peaches were lying on the table in the corner room. I think he slipped in and ate one of them on the sly." The recollection of her son suddenly roused Anna from the helpless condition in which she found herself. She recalled the partly sincere, though greatly exaggerated, role of the mother living for her child, which she had taken up of late years, and she felt with joy that in the plight in which she found herself she had a support, quite apart from her relation to her husband or to Vronsky. This support was her son. In whatever position she might be placed, she could not lose her son. Her husband might put her to shame and turn her out, Vronsky might grow cold to her and go on living his own life apart (she thought of him again with bitterness and reproach); she could not leave her son. She had an aim in life. And she must act; act to secure this relation to her son, so that he might not be taken from her. Quickly indeed, as quickly as possible, she must take action before he was taken from her. She must take her son and go away. Here was the one thing she had to do now. She needed consolation. She must be calm, and get out of this insufferable position. The thought of immediate action binding her to her son, of going away somewhere with him, gave her this consolation. She dressed quickly, went downstairs, and with resolute steps walked into the drawing room, where she found, as usual, waiting for her, the coffee, Seryozha, and his governess. Seryozha, all in white, with his back and head bent, was standing at a table under a looking-glass, and with an expression of intense concentration which she knew well, and in which he resembled his father, he was doing something to the flowers he carried. The governess had a particularly severe expression. Seryozha screamed shrilly, as he often did, "Ah, mamma!" and stopped, hesitating whether to go to greet his mother and put down the flowers, or to finish making the wreath and go with the flowers. The governess, after saying good-morning, began a long and detailed account of Seryozha's naughtiness, but Anna did not hear her; she was considering whether she would take her with her or not. "No, I won't take her," she decided. "I'll go alone with my child." "Yes, it's very wrong," said Anna, and taking her son by the shoulder she looked at him, not severely, but with a timid glance that bewildered and delighted the boy, and she kissed him. "Leave him to me," she said to the astonished governess, and not letting go of her son, she sat down at the table, where coffee was set ready for her. "Mamma! I ... I ... didn't..." he said, trying to make out from her expression what was in store for him in regard to the peaches. "Seryozha," she said, as soon as the governess had left the room, "that was wrong, but you'll never do it again, will you?... You love me?" She felt that the tears were coming into her eyes. "Can I help loving him?" she said to herself, looking deeply into his scared and at the same time delighted eyes. "And can he ever join his father in punishing me? Is it possible he will not feel for me?" Tears were already flowing down her face, and to hide them she got up abruptly and almost ran out on to the terrace. After the thunder showers of the last few days, cold, bright weather had set in. The air was cold in the bright sun that filtered through the freshly washed leaves. She shivered, both from the cold and from the inward horror which had clutched her with fresh force in the open air. "Run along, run along to Mariette," she said to Seryozha, who had followed her out, and she began walking up and down on the straw matting of the terrace. "Can it be that they won't forgive me, won't understand how it all couldn't be helped?" she said to herself. Standing still, and looking at the tops of the aspen trees waving in the wind, with their freshly washed, brightly shining leaves in the cold sunshine, she knew that they would not forgive her, that everyone and everything would be merciless to her now as was that sky, that green. And again she felt that everything was split in two in her soul. "I mustn't, mustn't think," she said to herself. "I must get ready. To go where? When? Whom to take with me? Yes, to Moscow by the evening train. Annushka and Seryozha, and only the most necessary things. But first I must write to them both." She went quickly indoors into her boudoir, sat down at the table, and wrote to her husband:--"After what has happened, I cannot remain any longer in your house. I am going away, and taking my son with me. I don't know the law, and so I don't know with which of the parents the son should remain; but I take him with me because I cannot live without him. Be generous, leave him to me." Up to this point she wrote rapidly and naturally, but the appeal to his generosity, a quality she did not recognize in him, and the necessity of winding up the letter with something touching, pulled her up. "Of my fault and my remorse I cannot speak, because..." She stopped again, finding no connection in her ideas. "No," she said to herself, "there's no need of anything," and tearing up the letter, she wrote it again, leaving out the allusion to generosity, and sealed it up. Another letter had to be written to Vronsky. "I have told my husband," she wrote, and she sat a long while unable to write more. It was so coarse, so unfeminine. "And what more am I to write to him?" she said to herself. Again a flush of shame spread over her face; she recalled his composure, and a feeling of anger against him impelled her to tear the sheet with the phrase she had written into tiny bits. "No need of anything," she said to herself, and closing her blotting-case she went upstairs, told the governess and the servants that she was going that day to Moscow, and at once set to work to pack up her things. Chapter 16 All the rooms of the summer villa were full of porters, gardeners, and footmen going to and fro carrying out things. Cupboards and chests were open; twice they had sent to the shop for cord; pieces of newspaper were tossing about on the floor. Two trunks, some bags and strapped-up rugs, had been carried down into the hall. The carriage and two hired cabs were waiting at the steps. Anna, forgetting her inward agitation in the work of packing, was standing at a table in her boudoir, packing her traveling bag, when Annushka called her attention to the rattle of some carriage driving up. Anna looked out of the window and saw Alexey Alexandrovitch's courier on the steps, ringing at the front door bell. "Run and find out what it is," she said, and with a calm sense of being prepared for anything, she sat down in a low chair, folding her hands on her knees. A footman brought in a thick packet directed in Alexey Alexandrovitch's hand. "The courier has orders to wait for an answer," he said. "Very well," she said, and as soon as he had left the room she tore open the letter with trembling fingers. A roll of unfolded notes done up in a wrapper fell out of it. She disengaged the letter and began reading it at the end. "Preparations shall be made for your arrival here ... I attach particular significance to compliance..." she read. She ran on, then back, read it all through, and once more read the letter all through again from the beginning. When she had finished, she felt that she was cold all over, and that a fearful calamity, such as she had not expected, had burst upon her. In the morning she had regretted that she had spoken to her husband, and wished for nothing so much as that those words could be unspoken. And here this letter regarded them as unspoken, and gave her what she had wanted. But now this letter seemed to her more awful than anything she had been able to conceive. "He's right!" she said; "of course, he's always right; he's a Christian, he's generous! Yes, vile, base creature! And no one understands it except me, and no one ever will; and I can't explain it. They say he's so religious, so high-principled, so upright, so clever; but they don't see what I've seen. They don't know how he has crushed my life for eight years, crushed everything that was living in me--he has not once even thought that I'm a live woman who must have love. They don't know how at every step he's humiliated me, and been just as pleased with himself. Haven't I striven, striven with all my strength, to find something to give meaning to my life? Haven't I struggled to love him, to love my son when I could not love my husband? But the time came when I knew that I couldn't cheat myself any longer, that I was alive, that I was not to blame, that God has made me so that I must love and live. And now what does he do? If he'd killed me, if he'd killed him, I could have borne anything, I could have forgiven anything; but, no, he.... How was it I didn't guess what he would do? He's doing just what's characteristic of his mean character. He'll keep himself in the right, while me, in my ruin, he'll drive still lower to worse ruin yet...." She recalled the words from the letter. "You can conjecture what awaits you and your son...." "That's a threat to take away my child, and most likely by their stupid law he can. But I know very well why he says it. He doesn't believe even in my love for my child, or he despises it (just as he always used to ridicule it). He despises that feeling in me, but he knows that I won't abandon my child, that I can't abandon my child, that there could be no life for me without my child, even with him whom I love; but that if I abandoned my child and ran away from him, I should be acting like the most infamous, basest of women. He knows that, and knows that I am incapable of doing that." She recalled another sentence in the letter. "Our life must go on as it has done in the past...." "That life was miserable enough in the old days; it has been awful of late. What will it be now? And he knows all that; he knows that I can't repent that I breathe, that I love; he knows that it can lead to nothing but lying and deceit; but he wants to go on torturing me. I know him; I know that he's at home and is happy in deceit, like a fish swimming in the water. No, I won't give him that happiness. I'll break through the spiderweb of lies in which he wants to catch me, come what may. Anything's better than lying and deceit. "But how? My God! my God! Was ever a woman so miserable as I am?..." "No; I will break through it, I will break through it!" she cried, jumping up and keeping back her tears. And she went to the writing table to write him another letter. But at the bottom of her heart she felt that she was not strong enough to break through anything, that she was not strong enough to get out of her old position, however false and dishonorable it might be. She sat down at the writing table, but instead of writing she clasped her hands on the table, and, laying her head on them, burst into tears, with sobs and heaving breast like a child crying. She was weeping that her dream of her position being made clear and definite had been annihilated forever. She knew beforehand that everything would go on in the old way, and far worse, indeed, than in the old way. She felt that the position in the world that she enjoyed, and that had seemed to her of so little consequence in the morning, that this position was precious to her, that she would not have the strength to exchange it for the shameful position of a woman who has abandoned husband and child to join her lover; that however much she might struggle, she could not be stronger than herself. She would never know freedom in love, but would remain forever a guilty wife, with the menace of detection hanging over her at every instant; deceiving her husband for the sake of a shameful connection with a man living apart and away from her, whose life she could never share. She knew that this was how it would be, and at the same time it was so awful that she could not even conceive what it would end in. And she cried without restraint, as children cry when they are punished. The sound of the footman's steps forced her to rouse herself, and, hiding her face from him, she pretended to be writing. "The courier asks if there's an answer," the footman announced. "An answer? Yes," said Anna. "Let him wait. I'll ring." "What can I write?" she thought. "What can I decide upon alone? What do I know? What do I want? What is there I care for?" Again she felt that her soul was beginning to be split in two. She was terrified again at this feeling, and clutched at the first pretext for doing something which might divert her thoughts from herself. "I ought to see Alexey" (so she called Vronsky in her thoughts); "no one but he can tell me what I ought to do. I'll go to Betsy's, perhaps I shall see him there," she said to herself, completely forgetting that when she had told him the day before that she was not going to Princess Tverskaya's, he had said that in that case he should not go either. She went up to the table, wrote to her husband, "I have received your letter.--A."; and, ringing the bell, gave it to the footman. "We are not going," she said to Annushka, as she came in. "Not going at all?" "No; don't unpack till tomorrow, and let the carriage wait. I'm going to the princess's." "Which dress am I to get ready?" Chapter 17 The croquet party to which the Princess Tverskaya had invited Anna was to consist of two ladies and their adorers. These two ladies were the chief representatives of a select new Petersburg circle, nicknamed, in imitation of some imitation, _les sept merveilles du monde_. These ladies belonged to a circle which, though of the highest society, was utterly hostile to that in which Anna moved. Moreover, Stremov, one of the most influential people in Petersburg, and the elderly admirer of Liza Merkalova, was Alexey Alexandrovitch's enemy in the political world. From all these considerations Anna had not meant to go, and the hints in Princess Tverskaya's note referred to her refusal. But now Anna was eager to go, in the hope of seeing Vronsky. Anna arrived at Princess Tverskaya's earlier than the other guests. At the same moment as she entered, Vronsky's footman, with side-whiskers combed out like a _Kammerjunker_, went in too. He stopped at the door, and, taking off his cap, let her pass. Anna recognized him, and only then recalled that Vronsky had told her the day before that he would not come. Most likely he was sending a note to say so. As she took off her outer garment in the hall, she heard the footman, pronouncing his "r's" even like a _Kammerjunker_, say, "From the count for the princess," and hand the note. She longed to question him as to where his master was. She longed to turn back and send him a letter to come and see her, or to go herself to see him. But neither the first nor the second nor the third course was possible. Already she heard bells ringing to announce her arrival ahead of her, and Princess Tverskaya's footman was standing at the open door waiting for her to go forward into the inner rooms. "The princess is in the garden; they will inform her immediately. Would you be pleased to walk into the garden?" announced another footman in another room. The position of uncertainty, of indecision, was still the same as at home--worse, in fact, since it was impossible to take any step, impossible to see Vronsky, and she had to remain here among outsiders, in company so uncongenial to her present mood. But she was wearing a dress that she knew suited her. She was not alone; all around was that luxurious setting of idleness that she was used to, and she felt less wretched than at home. She was not forced to think what she was to do. Everything would be done of itself. On meeting Betsy coming towards her in a white gown that struck her by its elegance, Anna smiled at her just as she always did. Princess Tverskaya was walking with Tushkevitch and a young lady, a relation, who, to the great joy of her parents in the provinces, was spending the summer with the fashionable princess. There was probably something unusual about Anna, for Betsy noticed it at once. "I slept badly," answered Anna, looking intently at the footman who came to meet them, and, as she supposed, brought Vronsky's note. "How glad I am you've come!" said Betsy. "I'm tired, and was just longing to have some tea before they come. You might go"--she turned to Tushkevitch--"with Masha, and try the croquet ground over there where they've been cutting it. We shall have time to talk a little over tea; we'll have a cozy chat, eh?" she said in English to Anna, with a smile, pressing the hand with which she held a parasol. "Yes, especially as I can't stay very long with you. I'm forced to go on to old Madame Vrede. I've been promising to go for a century," said Anna, to whom lying, alien as it was to her nature, had become not merely simple and natural in society, but a positive source of satisfaction. Why she said this, which she had not thought of a second before, she could not have explained. She had said it simply from the reflection that as Vronsky would not be here, she had better secure her own freedom, and try to see him somehow. But why she had spoken of old Madame Vrede, whom she had to go and see, as she had to see many other people, she could not have explained; and yet, as it afterwards turned out, had she contrived the most cunning devices to meet Vronsky, she could have thought of nothing better. "No. I'm not going to let you go for anything," answered Betsy, looking intently into Anna's face. "Really, if I were not fond of you, I should feel offended. One would think you were afraid my society would compromise you. Tea in the little dining room, please," she said, half closing her eyes, as she always did when addressing the footman. Taking the note from him, she read it. "Alexey's playing us false," she said in French; "he writes that he can't come," she added in a tone as simple and natural as though it could never enter her head that Vronsky could mean anything more to Anna than a game of croquet. Anna knew that Betsy knew everything, but, hearing how she spoke of Vronsky before her, she almost felt persuaded for a minute that she knew nothing. "Ah!" said Anna indifferently, as though not greatly interested in the matter, and she went on smiling: "How can you or your friends compromise anyone?" This playing with words, this hiding of a secret, had a great fascination for Anna, as, indeed, it has for all women. And it was not the necessity of concealment, not the aim with which the concealment was contrived, but the process of concealment itself which attracted her. "I can't be more Catholic than the Pope," she said. "Stremov and Liza Merkalova, why, they're the cream of the cream of society. Besides, they're received everywhere, and _I_"--she laid special stress on the I--"have never been strict and intolerant. It's simply that I haven't the time." "No; you don't care, perhaps, to meet Stremov? Let him and Alexey Alexandrovitch tilt at each other in the committee--that's no affair of ours. But in the world, he's the most amiable man I know, and a devoted croquet player. You shall see. And, in spite of his absurd position as Liza's lovesick swain at his age, you ought to see how he carries off the absurd position. He's very nice. Sappho Shtoltz you don't know? Oh, that's a new type, quite new." Betsy said all this, and, at the same time, from her good-humored, shrewd glance, Anna felt that she partly guessed her plight, and was hatching something for her benefit. They were in the little boudoir. "I must write to Alexey though," and Betsy sat down to the table, scribbled a few lines, and put the note in an envelope. "I'm telling him to come to dinner. I've one lady extra to dinner with me, and no man to take her in. Look what I've said, will that persuade him? Excuse me, I must leave you for a minute. Would you seal it up, please, and send it off?" she said from the door; "I have to give some directions." Without a moment's thought, Anna sat down to the table with Betsy's letter, and, without reading it, wrote below: "It's essential for me to see you. Come to the Vrede garden. I shall be there at six o'clock." She sealed it up, and, Betsy coming back, in her presence handed the note to be taken. At tea, which was brought them on a little tea-table in the cool little drawing room, the cozy chat promised by Princess Tverskaya before the arrival of her visitors really did come off between the two women. They criticized the people they were expecting, and the conversation fell upon Liza Merkalova. "She's very sweet, and I always liked her," said Anna. "You ought to like her. She raves about you. Yesterday she came up to me after the races and was in despair at not finding you. She says you're a real heroine of romance, and that if she were a man she would do all sorts of mad things for your sake. Stremov says she does that as it is." "But do tell me, please, I never could make it out," said Anna, after being silent for some time, speaking in a tone that showed she was not asking an idle question, but that what she was asking was of more importance to her than it should have been; "do tell me, please, what are her relations with Prince Kaluzhsky, Mishka, as he's called? I've met them so little. What does it mean?" Betsy smiled with her eyes, and looked intently at Anna. "It's a new manner," she said. "They've all adopted that manner. They've flung their caps over the windmills. But there are ways and ways of flinging them." "Yes, but what are her relations precisely with Kaluzhsky?" Betsy broke into unexpectedly mirthful and irrepressible laughter, a thing which rarely happened with her. "You're encroaching on Princess Myakaya's special domain now. That's the question of an _enfant terrible_," and Betsy obviously tried to restrain herself, but could not, and went off into peals of that infectious laughter that people laugh who do not laugh often. "You'd better ask them," she brought out, between tears of laughter. "No; you laugh," said Anna, laughing too in spite of herself, "but I never could understand it. I can't understand the husband's role in it." "The husband? Liza Merkalova's husband carries her shawl, and is always ready to be of use. But anything more than that in reality, no one cares to inquire. You know in decent society one doesn't talk or think even of certain details of the toilet. That's how it is with this." "Will you be at Madame Rolandak's fete?" asked Anna, to change the conversation. "I don't think so," answered Betsy, and, without looking at her friend, she began filling the little transparent cups with fragrant tea. Putting a cup before Anna, she took out a cigarette, and, fitting it into a silver holder, she lighted it. "It's like this, you see: I'm in a fortunate position," she began, quite serious now, as she took up her cup. "I understand you, and I understand Liza. Liza now is one of those naive natures that, like children, don't know what's good and what's bad. Anyway, she didn't comprehend it when she was very young. And now she's aware that the lack of comprehension suits her. Now, perhaps, she doesn't know on purpose," said Betsy, with a subtle smile. "But, anyway, it suits her. The very same thing, don't you see, may be looked at tragically, and turned into a misery, or it may be looked at simply and even humorously. Possibly you are inclined to look at things too tragically." "How I should like to know other people just as I know myself!" said Anna, seriously and dreamily. "Am I worse than other people, or better? I think I'm worse." "_Enfant terrible, enfant terrible!_" repeated Betsy. "But here they are." Chapter 18 They heard the sound of steps and a man's voice, then a woman's voice and laughter, and immediately thereafter there walked in the expected guests: Sappho Shtoltz, and a young man beaming with excess of health, the so-called Vaska. It was evident that ample supplies of beefsteak, truffles, and Burgundy never failed to reach him at the fitting hour. Vaska bowed to the two ladies, and glanced at them, but only for one second. He walked after Sappho into the drawing-room, and followed her about as though he were chained to her, keeping his sparkling eyes fixed on her as though he wanted to eat her. Sappho Shtoltz was a blonde beauty with black eyes. She walked with smart little steps in high-heeled shoes, and shook hands with the ladies vigorously like a man. Anna had never met this new star of fashion, and was struck by her beauty, the exaggerated extreme to which her dress was carried, and the boldness of her manners. On her head there was such a superstructure of soft, golden hair--her own and false mixed--that her head was equal in size to the elegantly rounded bust, of which so much was exposed in front. The impulsive abruptness of her movements was such that at every step the lines of her knees and the upper part of her legs were distinctly marked under her dress, and the question involuntarily rose to the mind where in the undulating, piled-up mountain of material at the back the real body of the woman, so small and slender, so naked in front, and so hidden behind and below, really came to an end. Betsy made haste to introduce her to Anna. "Only fancy, we all but ran over two soldiers," she began telling them at once, using her eyes, smiling and twitching away her tail, which she flung back at one stroke all on one side. "I drove here with Vaska.... Ah, to be sure, you don't know each other." And mentioning his surname she introduced the young man, and reddening a little, broke into a ringing laugh at her mistake--that is, at her having called him Vaska to a stranger. Vaska bowed once more to Anna, but he said nothing to her. He addressed Sappho: "You've lost your bet. We got here first. Pay up," said he, smiling. Sappho laughed still more festively. "Not just now," said she. "Oh, all right, I'll have it later." "Very well, very well. Oh, yes." She turned suddenly to Princess Betsy: "I am a nice person ... I positively forgot it ... I've brought you a visitor. And here he comes." The unexpected young visitor, whom Sappho had invited, and whom she had forgotten, was, however, a personage of such consequence that, in spite of his youth, both the ladies rose on his entrance. He was a new admirer of Sappho's. He now dogged her footsteps, like Vaska. Soon after Prince Kaluzhsky arrived, and Liza Merkalova with Stremov. Liza Merkalova was a thin brunette, with an Oriental, languid type of face, and--as everyone used to say--exquisite enigmatic eyes. The tone of her dark dress (Anna immediately observed and appreciated the fact) was in perfect harmony with her style of beauty. Liza was as soft and enervated as Sappho was smart and abrupt. But to Anna's taste Liza was far more attractive. Betsy had said to Anna that she had adopted the pose of an innocent child, but when Anna saw her, she felt that this was not the truth. She really was both innocent and corrupt, but a sweet and passive woman. It is true that her tone was the same as Sappho's; that like Sappho, she had two men, one young and one old, tacked onto her, and devouring her with their eyes. But there was something in her higher than what surrounded her. There was in her the glow of the real diamond among glass imitations. This glow shone out in her exquisite, truly enigmatic eyes. The weary, and at the same time passionate, glance of those eyes, encircled by dark rings, impressed one by its perfect sincerity. Everyone looking into those eyes fancied he knew her wholly, and knowing her, could not but love her. At the sight of Anna, her whole face lighted up at once with a smile of delight. "Ah, how glad I am to see you!" she said, going up to her. "Yesterday at the races all I wanted was to get to you, but you'd gone away. I did so want to see you, yesterday especially. Wasn't it awful?" she said, looking at Anna with eyes that seemed to lay bare all her soul. "Yes; I had no idea it would be so thrilling," said Anna, blushing. The company got up at this moment to go into the garden. "I'm not going," said Liza, smiling and settling herself close to Anna. "You won't go either, will you? Who wants to play croquet?" "Oh, I like it," said Anna. "There, how do you manage never to be bored by things? It's delightful to look at you. You're alive, but I'm bored." "How can you be bored? Why, you live in the liveliest set in Petersburg," said Anna. "Possibly the people who are not of our set are even more bored; but we--I certainly--are not happy, but awfully, awfully bored." Sappho smoking a cigarette went off into the garden with the two young men. Betsy and Stremov remained at the tea-table. "What, bored!" said Betsy. "Sappho says they did enjoy themselves tremendously at your house last night." "Ah, how dreary it all was!" said Liza Merkalova. "We all drove back to my place after the races. And always the same people, always the same. Always the same thing. We lounged about on sofas all the evening. What is there to enjoy in that? No; do tell me how you manage never to be bored?" she said, addressing Anna again. "One has but to look at you and one sees, here's a woman who may be happy or unhappy, but isn't bored. Tell me how you do it?" "I do nothing," answered Anna, blushing at these searching questions. "That's the best way," Stremov put in. Stremov was a man of fifty, partly gray, but still vigorous-looking, very ugly, but with a characteristic and intelligent face. Liza Merkalova was his wife's niece, and he spent all his leisure hours with her. On meeting Anna Karenina, as he was Alexey Alexandrovitch's enemy in the government, he tried, like a shrewd man and a man of the world, to be particularly cordial with her, the wife of his enemy. "'Nothing,'" he put in with a subtle smile, "that's the very best way. I told you long ago," he said, turning to Liza Merkalova, "that if you don't want to be bored, you mustn't think you're going to be bored. It's just as you mustn't be afraid of not being able to fall asleep, if you're afraid of sleeplessness. That's just what Anna Arkadyevna has just said." "I should be very glad if I had said it, for it's not only clever but true," said Anna, smiling. "No, do tell me why it is one can't go to sleep, and one can't help being bored?" "To sleep well one ought to work, and to enjoy oneself one ought to work too." "What am I to work for when my work is no use to anybody? And I can't and won't knowingly make a pretense about it." "You're incorrigible," said Stremov, not looking at her, and he spoke again to Anna. As he rarely met Anna, he could say nothing but commonplaces to her, but he said those commonplaces as to when she was returning to Petersburg, and how fond Countess Lidia Ivanovna was of her, with an expression which suggested that he longed with his whole soul to please her and show his regard for her and even more than that. Tushkevitch came in, announcing that the party were awaiting the other players to begin croquet. "No, don't go away, please don't," pleaded Liza Merkalova, hearing that Anna was going. Stremov joined in her entreaties. "It's too violent a transition," he said, "to go from such company to old Madame Vrede. And besides, you will only give her a chance for talking scandal, while here you arouse none but such different feelings of the highest and most opposite kind," he said to her. Anna pondered for an instant in uncertainty. This shrewd man's flattering words, the naive, childlike affection shown her by Liza Merkalova, and all the social atmosphere she was used to,--it was all so easy, and what was in store for her was so difficult, that she was for a minute in uncertainty whether to remain, whether to put off a little longer the painful moment of explanation. But remembering what was in store for her alone at home, if she did not come to some decision, remembering that gesture--terrible even in memory--when she had clutched her hair in both hands--she said good-bye and went away. Chapter 19 In spite of Vronsky's apparently frivolous life in society, he was a man who hated irregularity. In early youth in the Corps of Pages, he had experienced the humiliation of a refusal, when he had tried, being in difficulties, to borrow money, and since then he had never once put himself in the same position again. In order to keep his affairs in some sort of order, he used about five times a year (more or less frequently, according to circumstances) to shut himself up alone and put all his affairs into definite shape. This he used to call his day of reckoning or _faire la lessive_. On waking up the day after the races, Vronsky put on a white linen coat, and without shaving or taking his bath, he distributed about the table moneys, bills, and letters, and set to work. Petritsky, who knew he was ill-tempered on such occasions, on waking up and seeing his comrade at the writing-table, quietly dressed and went out without getting in his way. Every man who knows to the minutest details all the complexity of the conditions surrounding him, cannot help imagining that the complexity of these conditions, and the difficulty of making them clear, is something exceptional and personal, peculiar to himself, and never supposes that others are surrounded by just as complicated an array of personal affairs as he is. So indeed it seemed to Vronsky. And not without inward pride, and not without reason, he thought that any other man would long ago have been in difficulties, would have been forced to some dishonorable course, if he had found himself in such a difficult position. But Vronsky felt that now especially it was essential for him to clear up and define his position if he were to avoid getting into difficulties. What Vronsky attacked first as being the easiest was his pecuniary position. Writing out on note paper in his minute hand all that he owed, he added up the amount and found that his debts amounted to seventeen thousand and some odd hundreds, which he left out for the sake of clearness. Reckoning up his money and his bank book, he found that he had left one thousand eight hundred roubles, and nothing coming in before the New Year. Reckoning over again his list of debts, Vronsky copied it, dividing it into three classes. In the first class he put the debts which he would have to pay at once, or for which he must in any case have the money ready so that on demand for payment there could not be a moment's delay in paying. Such debts amounted to about four thousand: one thousand five hundred for a horse, and two thousand five hundred as surety for a young comrade, Venovsky, who had lost that sum to a cardsharper in Vronsky's presence. Vronsky had wanted to pay the money at the time (he had that amount then), but Venovsky and Yashvin had insisted that they would pay and not Vronsky, who had not played. That was so far well, but Vronsky knew that in this dirty business, though his only share in it was undertaking by word of mouth to be surety for Venovsky, it was absolutely necessary for him to have the two thousand five hundred roubles so as to be able to fling it at the swindler, and have no more words with him. And so for this first and most important division he must have four thousand roubles. The second class--eight thousand roubles--consisted of less important debts. These were principally accounts owing in connection with his race horses, to the purveyor of oats and hay, the English saddler, and so on. He would have to pay some two thousand roubles on these debts too, in order to be quite free from anxiety. The last class of debts--to shops, to hotels, to his tailor--were such as need not be considered. So that he needed at least six thousand roubles for current expenses, and he only had one thousand eight hundred. For a man with one hundred thousand roubles of revenue, which was what everyone fixed as Vronsky's income, such debts, one would suppose, could hardly be embarrassing; but the fact was that he was far from having one hundred thousand. His father's immense property, which alone yielded a yearly income of two hundred thousand, was left undivided between the brothers. At the time when the elder brother, with a mass of debts, married Princess Varya Tchirkova, the daughter of a Decembrist without any fortune whatever, Alexey had given up to his elder brother almost the whole income from his father's estate, reserving for himself only twenty-five thousand a year from it. Alexey had said at the time to his brother that that sum would be sufficient for him until he married, which he probably never would do. And his brother, who was in command of one of the most expensive regiments, and was only just married, could not decline the gift. His mother, who had her own separate property, had allowed Alexey every year twenty thousand in addition to the twenty-five thousand he had reserved, and Alexey had spent it all. Of late his mother, incensed with him on account of his love affair and his leaving Moscow, had given up sending him the money. And in consequence of this, Vronsky, who had been in the habit of living on the scale of forty-five thousand a year, having only received twenty thousand that year, found himself now in difficulties. To get out of these difficulties, he could not apply to his mother for money. Her last letter, which he had received the day before, had particularly exasperated him by the hints in it that she was quite ready to help him to succeed in the world and in the army, but not to lead a life which was a scandal to all good society. His mother's attempt to buy him stung him to the quick and made him feel colder than ever to her. But he could not draw back from the generous word when it was once uttered, even though he felt now, vaguely foreseeing certain eventualities in his intrigue with Madame Karenina, that this generous word had been spoken thoughtlessly, and that even though he were not married he might need all the hundred thousand of income. But it was impossible to draw back. He had only to recall his brother's wife, to remember how that sweet, delightful Varya sought, at every convenient opportunity, to remind him that she remembered his generosity and appreciated it, to grasp the impossibility of taking back his gift. It was as impossible as beating a woman, stealing, or lying. One thing only could and ought to be done, and Vronsky determined upon it without an instant's hesitation: to borrow money from a money-lender, ten thousand roubles, a proceeding which presented no difficulty, to cut down his expenses generally, and to sell his race horses. Resolving on this, he promptly wrote a note to Rolandak, who had more than once sent to him with offers to buy horses from him. Then he sent for the Englishman and the money-lender, and divided what money he had according to the accounts he intended to pay. Having finished this business, he wrote a cold and cutting answer to his mother. Then he took out of his notebook three notes of Anna's, read them again, burned them, and remembering their conversation on the previous day, he sank into meditation. Chapter 20 Vronsky's life was particularly happy in that he had a code of principles, which defined with unfailing certitude what he ought and what he ought not to do. This code of principles covered only a very small circle of contingencies, but then the principles were never doubtful, and Vronsky, as he never went outside that circle, had never had a moment's hesitation about doing what he ought to do. These principles laid down as invariable rules: that one must pay a cardsharper, but need not pay a tailor; that one must never tell a lie to a man, but one may to a woman; that one must never cheat anyone, but one may a husband; that one must never pardon an insult, but one may give one and so on. These principles were possibly not reasonable and not good, but they were of unfailing certainty, and so long as he adhered to them, Vronsky felt that his heart was at peace and he could hold his head up. Only quite lately in regard to his relations with Anna, Vronsky had begun to feel that his code of principles did not fully cover all possible contingencies, and to foresee in the future difficulties and perplexities for which he could find no guiding clue. His present relation to Anna and to her husband was to his mind clear and simple. It was clearly and precisely defined in the code of principles by which he was guided. She was an honorable woman who had bestowed her love upon him, and he loved her, and therefore she was in his eyes a woman who had a right to the same, or even more, respect than a lawful wife. He would have had his hand chopped off before he would have allowed himself by a word, by a hint, to humiliate her, or even to fall short of the fullest respect a woman could look for. His attitude to society, too, was clear. Everyone might know, might suspect it, but no one might dare to speak of it. If any did so, he was ready to force all who might speak to be silent and to respect the non-existent honor of the woman he loved. His attitude to the husband was the clearest of all. From the moment that Anna loved Vronsky, he had regarded his own right over her as the one thing unassailable. Her husband was simply a superfluous and tiresome person. No doubt he was in a pitiable position, but how could that be helped? The one thing the husband had a right to was to demand satisfaction with a weapon in his hand, and Vronsky was prepared for this at any minute. But of late new inner relations had arisen between him and her, which frightened Vronsky by their indefiniteness. Only the day before she had told him that she was with child. And he felt that this fact and what she expected of him called for something not fully defined in that code of principles by which he had hitherto steered his course in life. And he had been indeed caught unawares, and at the first moment when she spoke to him of her position, his heart had prompted him to beg her to leave her husband. He had said that, but now thinking things over he saw clearly that it would be better to manage to avoid that; and at the same time, as he told himself so, he was afraid whether it was not wrong. "If I told her to leave her husband, that must mean uniting her life with mine; am I prepared for that? How can I take her away now, when I have no money? Supposing I could arrange.... But how can I take her away while I'm in the service? If I say that--I ought to be prepared to do it, that is, I ought to have the money and to retire from the army." And he grew thoughtful. The question whether to retire from the service or not brought him to the other and perhaps the chief though hidden interest of his life, of which none knew but he. Ambition was the old dream of his youth and childhood, a dream which he did not confess even to himself, though it was so strong that now this passion was even doing battle with his love. His first steps in the world and in the service had been successful, but two years before he had made a great mistake. Anxious to show his independence and to advance, he had refused a post that had been offered him, hoping that this refusal would heighten his value; but it turned out that he had been too bold, and he was passed over. And having, whether he liked or not, taken up for himself the position of an independent man, he carried it off with great tact and good sense, behaving as though he bore no grudge against anyone, did not regard himself as injured in any way, and cared for nothing but to be left alone since he was enjoying himself. In reality he had ceased to enjoy himself as long ago as the year before, when he went away to Moscow. He felt that this independent attitude of a man who might have done anything, but cared to do nothing, was already beginning to pall, that many people were beginning to fancy that he was not really capable of anything but being a straightforward, good-natured fellow. His connection with Madame Karenina, by creating so much sensation and attracting general attention, had given him a fresh distinction which soothed his gnawing worm of ambition for a while, but a week before that worm had been roused up again with fresh force. The friend of his childhood, a man of the same set, of the same coterie, his comrade in the Corps of Pages, Serpuhovskoy, who had left school with him and had been his rival in class, in gymnastics, in their scrapes and their dreams of glory, had come back a few days before from Central Asia, where he had gained two steps up in rank, and an order rarely bestowed upon generals so young. As soon as he arrived in Petersburg, people began to talk about him as a newly risen star of the first magnitude. A schoolfellow of Vronsky's and of the same age, he was a general and was expecting a command, which might have influence on the course of political events; while Vronsky, independent and brilliant and beloved by a charming woman though he was, was simply a cavalry captain who was readily allowed to be as independent as ever he liked. "Of course I don't envy Serpuhovskoy and never could envy him; but his advancement shows me that one has only to watch one's opportunity, and the career of a man like me may be very rapidly made. Three years ago he was in just the same position as I am. If I retire, I burn my ships. If I remain in the army, I lose nothing. She said herself she did not wish to change her position. And with her love I cannot feel envious of Serpuhovskoy." And slowly twirling his mustaches, he got up from the table and walked about the room. His eyes shone particularly brightly, and he felt in that confident, calm, and happy frame of mind which always came after he had thoroughly faced his position. Everything was straight and clear, just as after former days of reckoning. He shaved, took a cold bath, dressed and went out. Chapter 21 "We've come to fetch you. Your _lessive_ lasted a good time today," said Petritsky. "Well, is it over?" "It is over," answered Vronsky, smiling with his eyes only, and twirling the tips of his mustaches as circumspectly as though after the perfect order into which his affairs had been brought any over-bold or rapid movement might disturb it. "You're always just as if you'd come out of a bath after it," said Petritsky. "I've come from Gritsky's" (that was what they called the colonel); "they're expecting you." Vronsky, without answering, looked at his comrade, thinking of something else. "Yes; is that music at his place?" he said, listening to the familiar sounds of polkas and waltzes floating across to him. "What's the fete?" "Serpuhovskoy's come." "Aha!" said Vronsky, "why, I didn't know." The smile in his eyes gleamed more brightly than ever. Having once made up his mind that he was happy in his love, that he sacrificed his ambition to it--having anyway taken up this position, Vronsky was incapable of feeling either envious of Serpuhovskoy or hurt with him for not coming first to him when he came to the regiment. Serpuhovskoy was a good friend, and he was delighted he had come. "Ah, I'm very glad!" The colonel, Demin, had taken a large country house. The whole party were in the wide lower balcony. In the courtyard the first objects that met Vronsky's eyes were a band of singers in white linen coats, standing near a barrel of vodka, and the robust, good-humored figure of the colonel surrounded by officers. He had gone out as far as the first step of the balcony and was loudly shouting across the band that played Offenbach's quadrille, waving his arms and giving some orders to a few soldiers standing on one side. A group of soldiers, a quartermaster, and several subalterns came up to the balcony with Vronsky. The colonel returned to the table, went out again onto the steps with a tumbler in his hand, and proposed the toast, "To the health of our former comrade, the gallant general, Prince Serpuhovskoy. Hurrah!" The colonel was followed by Serpuhovskoy, who came out onto the steps smiling, with a glass in his hand. "You always get younger, Bondarenko," he said to the rosy-checked, smart-looking quartermaster standing just before him, still youngish looking though doing his second term of service. It was three years since Vronsky had seen Serpuhovskoy. He looked more robust, had let his whiskers grow, but was still the same graceful creature, whose face and figure were even more striking from their softness and nobility than their beauty. The only change Vronsky detected in him was that subdued, continual radiance of beaming content which settles on the faces of men who are successful and are sure of the recognition of their success by everyone. Vronsky knew that radiant air, and immediately observed it in Serpuhovskoy. As Serpuhovskoy came down the steps he saw Vronsky. A smile of pleasure lighted up his face. He tossed his head upwards and waved the glass in his hand, greeting Vronsky, and showing him by the gesture that he could not come to him before the quartermaster, who stood craning forward his lips ready to be kissed. "Here he is!" shouted the colonel. "Yashvin told me you were in one of your gloomy tempers." Serpuhovskoy kissed the moist, fresh lips of the gallant-looking quartermaster, and wiping his mouth with his handkerchief, went up to Vronsky. "How glad I am!" he said, squeezing his hand and drawing him on one side. "You look after him," the colonel shouted to Yashvin, pointing to Vronsky; and he went down below to the soldiers. "Why weren't you at the races yesterday? I expected to see you there," said Vronsky, scrutinizing Serpuhovskoy. "I did go, but late. I beg your pardon," he added, and he turned to the adjutant: "Please have this divided from me, each man as much as it runs to." And he hurriedly took notes for three hundred roubles from his pocketbook, blushing a little. "Vronsky! Have anything to eat or drink?" asked Yashvin. "Hi, something for the count to eat! Ah, here it is: have a glass!" The fete at the colonel's lasted a long while. There was a great deal of drinking. They tossed Serpuhovskoy in the air and caught him again several times. Then they did the same to the colonel. Then, to the accompaniment of the band, the colonel himself danced with Petritsky. Then the colonel, who began to show signs of feebleness, sat down on a bench in the courtyard and began demonstrating to Yashvin the superiority of Russia over Poland, especially in cavalry attack, and there was a lull in the revelry for a moment. Serpuhovskoy went into the house to the bathroom to wash his hands and found Vronsky there; Vronsky was drenching his head with water. He had taken off his coat and put his sunburnt, hairy neck under the tap, and was rubbing it and his head with his hands. When he had finished, Vronsky sat down by Serpuhovskoy. They both sat down in the bathroom on a lounge, and a conversation began which was very interesting to both of them. "I've always been hearing about you through my wife," said Serpuhovskoy. "I'm glad you've been seeing her pretty often." "She's friendly with Varya, and they're the only women in Petersburg I care about seeing," answered Vronsky, smiling. He smiled because he foresaw the topic the conversation would turn on, and he was glad of it. "The only ones?" Serpuhovskoy queried, smiling. "Yes; and I heard news of you, but not only through your wife," said Vronsky, checking his hint by a stern expression of face. "I was greatly delighted to hear of your success, but not a bit surprised. I expected even more." Serpuhovskoy smiled. Such an opinion of him was obviously agreeable to him, and he did not think it necessary to conceal it. "Well, I on the contrary expected less--I'll own frankly. But I'm glad, very glad. I'm ambitious; that's my weakness, and I confess to it." "Perhaps you wouldn't confess to it if you hadn't been successful," said Vronsky. "I don't suppose so," said Serpuhovskoy, smiling again. "I won't say life wouldn't be worth living without it, but it would be dull. Of course I may be mistaken, but I fancy I have a certain capacity for the line I've chosen, and that power of any sort in my hands, if it is to be, will be better than in the hands of a good many people I know," said Serpuhovskoy, with beaming consciousness of success; "and so the nearer I get to it, the better pleased I am." "Perhaps that is true for you, but not for everyone. I used to think so too, but here I live and think life worth living not only for that." "There it's out! here it comes!" said Serpuhovskoy, laughing. "Ever since I heard about you, about your refusal, I began.... Of course, I approved of what you did. But there are ways of doing everything. And I think your action was good in itself, but you didn't do it quite in the way you ought to have done." "What's done can't be undone, and you know I never go back on what I've done. And besides, I'm very well off." "Very well off--for the time. But you're not satisfied with that. I wouldn't say this to your brother. He's a nice child, like our host here. There he goes!" he added, listening to the roar of "hurrah!"--"and he's happy, but that does not satisfy you." "I didn't say it did satisfy me." "Yes, but that's not the only thing. Such men as you are wanted." "By whom?" "By whom? By society, by Russia. Russia needs men; she needs a party, or else everything goes and will go to the dogs." "How do you mean? Bertenev's party against the Russian communists?" "No," said Serpuhovskoy, frowning with vexation at being suspected of such an absurdity. "_Tout ca est une blague_. That's always been and always will be. There are no communists. But intriguing people have to invent a noxious, dangerous party. It's an old trick. No, what's wanted is a powerful party of independent men like you and me." "But why so?" Vronsky mentioned a few men who were in power. "Why aren't they independent men?" "Simply because they have not, or have not had from birth, an independent fortune; they've not had a name, they've not been close to the sun and center as we have. They can be bought either by money or by favor. And they have to find a support for themselves in inventing a policy. And they bring forward some notion, some policy that they don't believe in, that does harm; and the whole policy is really only a means to a government house and so much income. _Cela n'est pas plus fin que ca_, when you get a peep at their cards. I may be inferior to them, stupider perhaps, though I don't see why I should be inferior to them. But you and I have one important advantage over them for certain, in being more difficult to buy. And such men are more needed than ever." Vronsky listened attentively, but he was not so much interested by the meaning of the words as by the attitude of Serpuhovskoy who was already contemplating a struggle with the existing powers, and already had his likes and dislikes in that higher world, while his own interest in the governing world did not go beyond the interests of his regiment. Vronsky felt, too, how powerful Serpuhovskoy might become through his unmistakable faculty for thinking things out and for taking things in, through his intelligence and gift of words, so rarely met with in the world in which he moved. And, ashamed as he was of the feeling, he felt envious. "Still I haven't the one thing of most importance for that," he answered; "I haven't the desire for power. I had it once, but it's gone." "Excuse me, that's not true," said Serpuhovskoy, smiling. "Yes, it is true, it is true ... now!" Vronsky added, to be truthful. "Yes, it's true now, that's another thing; but that _now_ won't last forever." "Perhaps," answered Vronsky. "You say _perhaps_," Serpuhovskoy went on, as though guessing his thoughts, "but I say _for certain_. And that's what I wanted to see you for. Your action was just what it should have been. I see that, but you ought not to keep it up. I only ask you to give me carte blanche. I'm not going to offer you my protection ... though, indeed, why shouldn't I protect you?--you've protected me often enough! I should hope our friendship rises above all that sort of thing. Yes," he said, smiling to him as tenderly as a woman, "give me _carte blanche_, retire from the regiment, and I'll draw you upwards imperceptibly." "But you must understand that I want nothing," said Vronsky, "except that all should be as it is." Serpuhovskoy got up and stood facing him. "You say that all should be as it is. I understand what that means. But listen: we're the same age, you've known a greater number of women perhaps than I have." Serpohovskoy's smile and gestures told Vronsky that he mustn't be afraid, that he would be tender and careful in touching the sore place. "But I'm married, and believe me, in getting to know thoroughly one's wife, if one loves her, as someone has said, one gets to know all women better than if one knew thousands of them." "We're coming directly!" Vronsky shouted to an officer, who looked into the room and called them to the colonel. Vronsky was longing now to hear to the end and know what Serpuhovskey would say to him. "And here's my opinion for you. Women are the chief stumbling block in a man's career. It's hard to love a woman and do anything. There's only one way of having love conveniently without its being a hindrance--that's marriage. How, how am I to tell you what I mean?" said Serpuhovskoy, who liked similes. "Wait a minute, wait a minute! Yes, just as you can only carry a _fardeau_ and do something with your hands, when the fardeau is tied on your back, and that's marriage. And that's what I felt when I was married. My hands were suddenly set free. But to drag that _fardeau_ about with you without marriage, your hands will always be so full that you can do nothing. Look at Mazankov, at Krupov. They've ruined their careers for the sake of women." "What women!" said Vronsky, recalling the Frenchwoman and the actress with whom the two men he had mentioned were connected. "The firmer the woman's footing in society, the worse it is. That's much the same as--not merely carrying the _fardeau_ in your arms--but tearing it away from someone else." "You have never loved," Vronsky said softly, looking straight before him and thinking of Anna. "Perhaps. But you remember what I've said to you. And another thing, women are all more materialistic than men. We make something immense out of love, but they are always _terre-a-terre_." "Directly, directly!" he cried to a footman who came in. But the footman had not come to call them again, as he supposed. The footman brought Vronsky a note. "A man brought it from Princess Tverskaya." Vronsky opened the letter, and flushed crimson. "My head's begun to ache; I'm going home," he said to Serpuhovskoy. "Oh, good-bye then. You give me _carte blanche!_" "We'll talk about it later on; I'll look you up in Petersburg." Chapter 22 It was six o'clock already, and so, in order to be there quickly, and at the same time not to drive with his own horses, known to everyone, Vronsky got into Yashvin's hired fly, and told the driver to drive as quickly as possible. It was a roomy, old-fashioned fly, with seats for four. He sat in one corner, stretched his legs out on the front seat, and sank into meditation. A vague sense of the order into which his affairs had been brought, a vague recollection of the friendliness and flattery of Serpuhovskoy, who had considered him a man that was needed, and most of all, the anticipation of the interview before him--all blended into a general, joyous sense of life. This feeling was so strong that he could not help smiling. He dropped his legs, crossed one leg over the other knee, and taking it in his hand, felt the springy muscle of the calf, where it had been grazed the day before by his fall, and leaning back he drew several deep breaths. "I'm happy, very happy!" he said to himself. He had often before had this sense of physical joy in his own body, but he had never felt so fond of himself, of his own body, as at that moment. He enjoyed the slight ache in his strong leg, he enjoyed the muscular sensation of movement in his chest as he breathed. The bright, cold August day, which had made Anna feel so hopeless, seemed to him keenly stimulating, and refreshed his face and neck that still tingled from the cold water. The scent of brilliantine on his whiskers struck him as particularly pleasant in the fresh air. Everything he saw from the carriage window, everything in that cold pure air, in the pale light of the sunset, was as fresh, and gay, and strong as he was himself: the roofs of the houses shining in the rays of the setting sun, the sharp outlines of fences and angles of buildings, the figures of passers-by, the carriages that met him now and then, the motionless green of the trees and grass, the fields with evenly drawn furrows of potatoes, and the slanting shadows that fell from the houses, and trees, and bushes, and even from the rows of potatoes--everything was bright like a pretty landscape just finished and freshly varnished. "Get on, get on!" he said to the driver, putting his head out of the window, and pulling a three-rouble note out of his pocket he handed it to the man as he looked round. The driver's hand fumbled with something at the lamp, the whip cracked, and the carriage rolled rapidly along the smooth highroad. "I want nothing, nothing but this happiness," he thought, staring at the bone button of the bell in the space between the windows, and picturing to himself Anna just as he had seen her last time. "And as I go on, I love her more and more. Here's the garden of the Vrede Villa. Whereabouts will she be? Where? How? Why did she fix on this place to meet me, and why does she write in Betsy's letter?" he thought, wondering now for the first time at it. But there was now no time for wonder. He called to the driver to stop before reaching the avenue, and opening the door, jumped out of the carriage as it was moving, and went into the avenue that led up to the house. There was no one in the avenue; but looking round to the right he caught sight of her. Her face was hidden by a veil, but he drank in with glad eyes the special movement in walking, peculiar to her alone, the slope of the shoulders, and the setting of the head, and at once a sort of electric shock ran all over him. With fresh force, he felt conscious of himself from the springy motions of his legs to the movements of his lungs as he breathed, and something set his lips twitching. Joining him, she pressed his hand tightly. "You're not angry that I sent for you? I absolutely had to see you," she said; and the serious and set line of her lips, which he saw under the veil, transformed his mood at once. "I angry! But how have you come, where from?" "Never mind," she said, laying her hand on his, "come along, I must talk to you." He saw that something had happened, and that the interview would not be a joyous one. In her presence he had no will of his own: without knowing the grounds of her distress, he already felt the same distress unconsciously passing over him. "What is it? what?" he asked her, squeezing her hand with his elbow, and trying to read her thoughts in her face. She walked on a few steps in silence, gathering up her courage; then suddenly she stopped. "I did not tell you yesterday," she began, breathing quickly and painfully, "that coming home with Alexey Alexandrovitch I told him everything ... told him I could not be his wife, that ... and told him everything." He heard her, unconsciously bending his whole figure down to her as though hoping in this way to soften the hardness of her position for her. But directly she had said this he suddenly drew himself up, and a proud and hard expression came over his face. "Yes, yes, that's better, a thousand times better! I know how painful it was," he said. But she was not listening to his words, she was reading his thoughts from the expression of his face. She could not guess that that expression arose from the first idea that presented itself to Vronsky--that a duel was now inevitable. The idea of a duel had never crossed her mind, and so she put a different interpretation on this passing expression of hardness. When she got her husband's letter, she knew then at the bottom of her heart that everything would go on in the old way, that she would not have the strength of will to forego her position, to abandon her son, and to join her lover. The morning spent at Princess Tverskaya's had confirmed her still more in this. But this interview was still of the utmost gravity for her. She hoped that this interview would transform her position, and save her. If on hearing this news he were to say to her resolutely, passionately, without an instant's wavering: "Throw up everything and come with me!" she would give up her son and go away with him. But this news had not produced what she had expected in him; he simply seemed as though he were resenting some affront. "It was not in the least painful to me. It happened of itself," she said irritably; "and see..." she pulled her husband's letter out of her glove. "I understand, I understand," he interrupted her, taking the letter, but not reading it, and trying to soothe her. "The one thing I longed for, the one thing I prayed for, was to cut short this position, so as to devote my life to your happiness." "Why do you tell me that?" she said. "Do you suppose I can doubt it? If I doubted..." "Who's that coming?" said Vronsky suddenly, pointing to two ladies walking towards them. "Perhaps they know us!" and he hurriedly turned off, drawing her after him into a side path. "Oh, I don't care!" she said. Her lips were quivering. And he fancied that her eyes looked with strange fury at him from under the veil. "I tell you that's not the point--I can't doubt that; but see what he writes to me. Read it." She stood still again. Again, just as at the first moment of hearing of her rupture with her husband, Vronsky, on reading the letter, was unconsciously carried away by the natural sensation aroused in him by his own relation to the betrayed husband. Now while he held his letter in his hands, he could not help picturing the challenge, which he would most likely find at home today or tomorrow, and the duel itself, in which, with the same cold and haughty expression that his face was assuming at this moment he would await the injured husband's shot, after having himself fired into the air. And at that instant there flashed across his mind the thought of what Serpuhovskoy had just said to him, and what he had himself been thinking in the morning--that it was better not to bind himself--and he knew that this thought he could not tell her. Having read the letter, he raised his eyes to her, and there was no determination in them. She saw at once that he had been thinking about it before by himself. She knew that whatever he might say to her, he would not say all he thought. And she knew that her last hope had failed her. This was not what she had been reckoning on. "You see the sort of man he is," she said, with a shaking voice; "he..." "Forgive me, but I rejoice at it," Vronsky interrupted. "For God's sake, let me finish!" he added, his eyes imploring her to give him time to explain his words. "I rejoice, because things cannot, cannot possibly remain as he supposes." "Why can't they?" Anna said, restraining her tears, and obviously attaching no sort of consequence to what he said. She felt that her fate was sealed. Vronsky meant that after the duel--inevitable, he thought--things could not go on as before, but he said something different. "It can't go on. I hope that now you will leave him. I hope"--he was confused, and reddened--"that you will let me arrange and plan our life. Tomorrow..." he was beginning. She did not let him go on. "But my child!" she shrieked. "You see what he writes! I should have to leave him, and I can't and won't do that." "But, for God's sake, which is better?--leave your child, or keep up this degrading position?" "To whom is it degrading?" "To all, and most of all to you." "You say degrading ... don't say that. Those words have no meaning for me," she said in a shaking voice. She did not want him now to say what was untrue. She had nothing left her but his love, and she wanted to love him. "Don't you understand that from the day I loved you everything has changed for me? For me there is one thing, and one thing only--your love. If that's mine, I feel so exalted, so strong, that nothing can be humiliating to me. I am proud of my position, because ... proud of being ... proud...." She could not say what she was proud of. Tears of shame and despair choked her utterance. She stood still and sobbed. He felt, too, something swelling in his throat and twitching in his nose, and for the first time in his life he felt on the point of weeping. He could not have said exactly what it was touched him so. He felt sorry for her, and he felt he could not help her, and with that he knew that he was to blame for her wretchedness, and that he had done something wrong. "Is not a divorce possible?" he said feebly. She shook her head, not answering. "Couldn't you take your son, and still leave him?" "Yes; but it all depends on him. Now I must go to him," she said shortly. Her presentiment that all would again go on in the old way had not deceived her. "On Tuesday I shall be in Petersburg, and everything can be settled." "Yes," she said. "But don't let us talk any more of it." Anna's carriage, which she had sent away, and ordered to come back to the little gate of the Vrede garden, drove up. Anna said good-bye to Vronsky, and drove home. Chapter 23 On Monday there was the usual sitting of the Commission of the 2nd of June. Alexey Alexandrovitch walked into the hall where the sitting was held, greeted the members and the president, as usual, and sat down in his place, putting his hand on the papers laid ready before him. Among these papers lay the necessary evidence and a rough outline of the speech he intended to make. But he did not really need these documents. He remembered every point, and did not think it necessary to go over in his memory what he would say. He knew that when the time came, and when he saw his enemy facing him, and studiously endeavoring to assume an expression of indifference, his speech would flow of itself better than he could prepare it now. He felt that the import of his speech was of such magnitude that every word of it would have weight. Meantime, as he listened to the usual report, he had the most innocent and inoffensive air. No one, looking at his white hands, with their swollen veins and long fingers, so softly stroking the edges of the white paper that lay before him, and at the air of weariness with which his head drooped on one side, would have suspected that in a few minutes a torrent of words would flow from his lips that would arouse a fearful storm, set the members shouting and attacking one another, and force the president to call for order. When the report was over, Alexey Alexandrovitch announced in his subdued, delicate voice that he had several points to bring before the meeting in regard to the Commission for the Reorganization of the Native Tribes. All attention was turned upon him. Alexey Alexandrovitch cleared his throat, and not looking at his opponent, but selecting, as he always did while he was delivering his speeches, the first person sitting opposite him, an inoffensive little old man, who never had an opinion of any sort in the Commission, began to expound his views. When he reached the point about the fundamental and radical law, his opponent jumped up and began to protest. Stremov, who was also a member of the Commission, and also stung to the quick, began defending himself, and altogether a stormy sitting followed; but Alexey Alexandrovitch triumphed, and his motion was carried, three new commissions were appointed, and the next day in a certain Petersburg circle nothing else was talked of but this sitting. Alexey Alexandrovitch's success had been even greater than he had anticipated. Next morning, Tuesday, Alexey Alexandrovitch, on waking up, recollected with pleasure his triumph of the previous day, and he could not help smiling, though he tried to appear indifferent, when the chief secretary of his department, anxious to flatter him, informed him of the rumors that had reached him concerning what had happened in the Commission. Absorbed in business with the chief secretary, Alexey Alexandrovitch had completely forgotten that it was Tuesday, the day fixed by him for the return of Anna Arkadyevna, and he was surprised and received a shock of annoyance when a servant came in to inform him of her arrival. Anna had arrived in Petersburg early in the morning; the carriage had been sent to meet her in accordance with her telegram, and so Alexey Alexandrovitch might have known of her arrival. But when she arrived, he did not meet her. She was told that he had not yet gone out, but was busy with his secretary. She sent word to her husband that she had come, went to her own room, and occupied herself in sorting out her things, expecting he would come to her. But an hour passed; he did not come. She went into the dining room on the pretext of giving some directions, and spoke loudly on purpose, expecting him to come out there; but he did not come, though she heard him go to the door of his study as he parted from the chief secretary. She knew that he usually went out quickly to his office, and she wanted to see him before that, so that their attitude to one another might be defined. She walked across the drawing room and went resolutely to him. When she went into his study he was in official uniform, obviously ready to go out, sitting at a little table on which he rested his elbows, looking dejectedly before him. She saw him before he saw her, and she saw that he was thinking of her. On seeing her, he would have risen, but changed his mind, then his face flushed hotly--a thing Anna had never seen before, and he got up quickly and went to meet her, looking not at her eyes, but above them at her forehead and hair. He went up to her, took her by the hand, and asked her to sit down. "I am very glad you have come," he said, sitting down beside her, and obviously wishing to say something, he stuttered. Several times he tried to begin to speak, but stopped. In spite of the fact that, preparing herself for meeting him, she had schooled herself to despise and reproach him, she did not know what to say to him, and she felt sorry for him. And so the silence lasted for some time. "Is Seryozha quite well?" he said, and not waiting for an answer, he added: "I shan't be dining at home today, and I have got to go out directly." "I had thought of going to Moscow," she said. "No, you did quite, quite right to come," he said, and was silent again. Seeing that he was powerless to begin the conversation, she began herself. "Alexey Alexandrovitch," she said, looking at him and not dropping her eyes under his persistent gaze at her hair, "I'm a guilty woman, I'm a bad woman, but I am the same as I was, as I told you then, and I have come to tell you that I can change nothing." "I have asked you no question about that," he said, all at once, resolutely and with hatred looking her straight in the face; "that was as I had supposed." Under the influence of anger he apparently regained complete possession of all his faculties. "But as I told you then, and have written to you," he said in a thin, shrill voice, "I repeat now, that I am not bound to know this. I ignore it. Not all wives are so kind as you, to be in such a hurry to communicate such agreeable news to their husbands." He laid special emphasis on the word "agreeable." "I shall ignore it so long as the world knows nothing of it, so long as my name is not disgraced. And so I simply inform you that our relations must be just as they have always been, and that only in the event of your compromising me I shall be obliged to take steps to secure my honor." "But our relations cannot be the same as always," Anna began in a timid voice, looking at him with dismay. When she saw once more those composed gestures, heard that shrill, childish, and sarcastic voice, her aversion for him extinguished her pity for him, and she felt only afraid, but at all costs she wanted to make clear her position. "I cannot be your wife while I...." she began. He laughed a cold and malignant laugh. "The manner of life you have chosen is reflected, I suppose, in your ideas. I have too much respect or contempt, or both ... I respect your past and despise your present ... that I was far from the interpretation you put on my words." Anna sighed and bowed her head. "Though indeed I fail to comprehend how, with the independence you show," he went on, getting hot, "--announcing your infidelity to your husband and seeing nothing reprehensible in it, apparently--you can see anything reprehensible in performing a wife's duties in relation to your husband." "Alexey Alexandrovitch! What is it you want of me?" "I want you not to meet that man here, and to conduct yourself so that neither the world nor the servants can reproach you ... not to see him. That's not much, I think. And in return you will enjoy all the privileges of a faithful wife without fulfilling her duties. That's all I have to say to you. Now it's time for me to go. I'm not dining at home." He got up and moved towards the door. Anna got up too. Bowing in silence, he let her pass before him. Chapter 24 The night spent by Levin on the haycock did not pass without result for him. The way in which he had been managing his land revolted him and had lost all attraction for him. In spite of the magnificent harvest, never had there been, or, at least, never it seemed to him, had there been so many hindrances and so many quarrels between him and the peasants as that year, and the origin of these failures and this hostility was now perfectly comprehensible to him. The delight he had experienced in the work itself, and the consequent greater intimacy with the peasants, the envy he felt of them, of their life, the desire to adopt that life, which had been to him that night not a dream but an intention, the execution of which he had thought out in detail--all this had so transformed his view of the farming of the land as he had managed it, that he could not take his former interest in it, and could not help seeing that unpleasant relation between him and the workpeople which was the foundation of it all. The herd of improved cows such as Pava, the whole land ploughed over and enriched, the nine level fields surrounded with hedges, the two hundred and forty acres heavily manured, the seed sown in drills, and all the rest of it--it was all splendid if only the work had been done for themselves, or for themselves and comrades--people in sympathy with them. But he saw clearly now (his work on a book of agriculture, in which the chief element in husbandry was to have been the laborer, greatly assisted him in this) that the sort of farming he was carrying on was nothing but a cruel and stubborn struggle between him and the laborers, in which there was on one side--his side--a continual intense effort to change everything to a pattern he considered better; on the other side, the natural order of things. And in this struggle he saw that with immense expenditure of force on his side, and with no effort or even intention on the other side, all that was attained was that the work did not go to the liking of either side, and that splendid tools, splendid cattle and land were spoiled with no good to anyone. Worst of all, the energy expended on this work was not simply wasted. He could not help feeling now, since the meaning of this system had become clear to him, that the aim of his energy was a most unworthy one. In reality, what was the struggle about? He was struggling for every farthing of his share (and he could not help it, for he had only to relax his efforts, and he would not have had the money to pay his laborers' wages), while they were only struggling to be able to do their work easily and agreeably, that is to say, as they were used to doing it. It was for his interests that every laborer should work as hard as possible, and that while doing so he should keep his wits about him, so as to try not to break the winnowing machines, the horse rakes, the thrashing machines, that he should attend to what he was doing. What the laborer wanted was to work as pleasantly as possible, with rests, and above all, carelessly and heedlessly, without thinking. That summer Levin saw this at every step. He sent the men to mow some clover for hay, picking out the worst patches where the clover was overgrown with grass and weeds and of no use for seed; again and again they mowed the best acres of clover, justifying themselves by the pretense that the bailiff had told them to, and trying to pacify him with the assurance that it would be splendid hay; but he knew that it was owing to those acres being so much easier to mow. He sent out a hay machine for pitching the hay--it was broken at the first row because it was dull work for a peasant to sit on the seat in front with the great wings waving above him. And he was told, "Don't trouble, your honor, sure, the womenfolks will pitch it quick enough." The ploughs were practically useless, because it never occurred to the laborer to raise the share when he turned the plough, and forcing it round, he strained the horses and tore up the ground, and Levin was begged not to mind about it. The horses were allowed to stray into the wheat because not a single laborer would consent to be night-watchman, and in spite of orders to the contrary, the laborers insisted on taking turns for night duty, and Ivan, after working all day long, fell asleep, and was very penitent for his fault, saying, "Do what you will to me, your honor." They killed three of the best calves by letting them into the clover aftermath without care as to their drinking, and nothing would make the men believe that they had been blown out by the clover, but they told him, by way of consolation, that one of his neighbors had lost a hundred and twelve head of cattle in three days. All this happened, not because anyone felt ill-will to Levin or his farm; on the contrary, he knew that they liked him, thought him a simple gentleman (their highest praise); but it happened simply because all they wanted was to work merrily and carelessly, and his interests were not only remote and incomprehensible to them, but fatally opposed to their most just claims. Long before, Levin had felt dissatisfaction with his own position in regard to the land. He saw where his boat leaked, but he did not look for the leak, perhaps purposely deceiving himself. (Nothing would be left him if he lost faith in it.) But now he could deceive himself no longer. The farming of the land, as he was managing it, had become not merely unattractive but revolting to him, and he could take no further interest in it. To this now was joined the presence, only twenty-five miles off, of Kitty Shtcherbatskaya, whom he longed to see and could not see. Darya Alexandrovna Oblonskaya had invited him, when he was over there, to come; to come with the object of renewing his offer to her sister, who would, so she gave him to understand, accept him now. Levin himself had felt on seeing Kitty Shtcherbatskaya that he had never ceased to love her; but he could not go over to the Oblonskys', knowing she was there. The fact that he had made her an offer, and she had refused him, had placed an insuperable barrier between her and him. "I can't ask her to be my wife merely because she can't be the wife of the man she wanted to marry," he said to himself. The thought of this made him cold and hostile to her. "I should not be able to speak to her without a feeling of reproach; I could not look at her without resentment; and she will only hate me all the more, as she's bound to. And besides, how can I now, after what Darya Alexandrovna told me, go to see them? Can I help showing that I know what she told me? And me to go magnanimously to forgive her, and have pity on her! Me go through a performance before her of forgiving, and deigning to bestow my love on her!... What induced Darya Alexandrovna to tell me that? By chance I might have seen her, then everything would have happened of itself; but, as it is, it's out of the question, out of the question!" Darya Alexandrovna sent him a letter, asking him for a side-saddle for Kitty's use. "I'm told you have a side-saddle," she wrote to him; "I hope you will bring it over yourself." This was more than he could stand. How could a woman of any intelligence, of any delicacy, put her sister in such a humiliating position! He wrote ten notes, and tore them all up, and sent the saddle without any reply. To write that he would go was impossible, because he could not go; to write that he could not come because something prevented him, or that he would be away, that was still worse. He sent the saddle without an answer, and with a sense of having done something shameful; he handed over all the now revolting business of the estate to the bailiff, and set off next day to a remote district to see his friend Sviazhsky, who had splendid marshes for grouse in his neighborhood, and had lately written to ask him to keep a long-standing promise to stay with him. The grouse-marsh, in the Surovsky district, had long tempted Levin, but he had continually put off this visit on account of his work on the estate. Now he was glad to get away from the neighborhood of the Shtcherbatskys, and still more from his farm work, especially on a shooting expedition, which always in trouble served as the best consolation. Chapter 25 In the Surovsky district there was no railway nor service of post horses, and Levin drove there with his own horses in his big, old-fashioned carriage. He stopped halfway at a well-to-do peasant's to feed his horses. A bald, well-preserved old man, with a broad, red beard, gray on his cheeks, opened the gate, squeezing against the gatepost to let the three horses pass. Directing the coachman to a place under the shed in the big, clean, tidy yard, with charred, old-fashioned ploughs in it, the old man asked Levin to come into the parlor. A cleanly dressed young woman, with clogs on her bare feet, was scrubbing the floor in the new outer room. She was frightened of the dog, that ran in after Levin, and uttered a shriek, but began laughing at her own fright at once when she was told the dog would not hurt her. Pointing Levin with her bare arm to the door into the parlor, she bent down again, hiding her handsome face, and went on scrubbing. "Would you like the samovar?" she asked. "Yes, please." The parlor was a big room, with a Dutch stove, and a screen dividing it into two. Under the holy pictures stood a table painted in patterns, a bench, and two chairs. Near the entrance was a dresser full of crockery. The shutters were closed, there were few flies, and it was so clean that Levin was anxious that Laska, who had been running along the road and bathing in puddles, should not muddy the floor, and ordered her to a place in the corner by the door. After looking round the parlor, Levin went out in the back yard. The good-looking young woman in clogs, swinging the empty pails on the yoke, ran on before him to the well for water. "Look sharp, my girl!" the old man shouted after her, good-humoredly, and he went up to Levin. "Well, sir, are you going to Nikolay Ivanovitch Sviazhsky? His honor comes to us too," he began, chatting, leaning his elbows on the railing of the steps. In the middle of the old man's account of his acquaintance with Sviazhsky, the gates creaked again, and laborers came into the yard from the fields, with wooden ploughs and harrows. The horses harnessed to the ploughs and harrows were sleek and fat. The laborers were obviously of the household: two were young men in cotton shirts and caps, the two others were hired laborers in homespun shirts, one an old man, the other a young fellow. Moving off from the steps, the old man went up to the horses and began unharnessing them. "What have they been ploughing?" asked Levin. "Ploughing up the potatoes. We rent a bit of land too. Fedot, don't let out the gelding, but take it to the trough, and we'll put the other in harness." "Oh, father, the ploughshares I ordered, has he brought them along?" asked the big, healthy-looking fellow, obviously the old man's son. "There ... in the outer room," answered the old man, bundling together the harness he had taken off, and flinging it on the ground. "You can put them on, while they have dinner." The good-looking young woman came into the outer room with the full pails dragging at her shoulders. More women came on the scene from somewhere, young and handsome, middle-aged, old and ugly, with children and without children. The samovar was beginning to sing; the laborers and the family, having disposed of the horses, came in to dinner. Levin, getting his provisions out of his carriage, invited the old man to take tea with him. "Well, I have had some today already," said the old man, obviously accepting the invitation with pleasure. "But just a glass for company." Over their tea Levin heard all about the old man's farming. Ten years before, the old man had rented three hundred acres from the lady who owned them, and a year ago he had bought them and rented another three hundred from a neighboring landowner. A small part of the land--the worst part--he let out for rent, while a hundred acres of arable land he cultivated himself with his family and two hired laborers. The old man complained that things were doing badly. But Levin saw that he simply did so from a feeling of propriety, and that his farm was in a flourishing condition. If it had been unsuccessful he would not have bought land at thirty-five roubles the acre, he would not have married his three sons and a nephew, he would not have rebuilt twice after fires, and each time on a larger scale. In spite of the old man's complaints, it was evident that he was proud, and justly proud, of his prosperity, proud of his sons, his nephew, his sons' wives, his horses and his cows, and especially of the fact that he was keeping all this farming going. From his conversation with the old man, Levin thought he was not averse to new methods either. He had planted a great many potatoes, and his potatoes, as Levin had seen driving past, were already past flowering and beginning to die down, while Levin's were only just coming into flower. He earthed up his potatoes with a modern plough borrowed from a neighboring landowner. He sowed wheat. The trifling fact that, thinning out his rye, the old man used the rye he thinned out for his horses, specially struck Levin. How many times had Levin seen this splendid fodder wasted, and tried to get it saved; but always it had turned out to be impossible. The peasant got this done, and he could not say enough in praise of it as food for the beasts. "What have the wenches to do? They carry it out in bundles to the roadside, and the cart brings it away." "Well, we landowners can't manage well with our laborers," said Levin, handing him a glass of tea. "Thank you," said the old man, and he took the glass, but refused sugar, pointing to a lump he had left. "They're simple destruction," said he. "Look at Sviazhsky's, for instance. We know what the land's like--first-rate, yet there's not much of a crop to boast of. It's not looked after enough--that's all it is!" "But you work your land with hired laborers?" "We're all peasants together. We go into everything ourselves. If a man's no use, he can go, and we can manage by ourselves." "Father, Finogen wants some tar," said the young woman in the clogs, coming in. "Yes, yes, that's how it is, sir!" said the old man, getting up, and crossing himself deliberately, he thanked Levin and went out. When Levin went into the kitchen to call his coachman he saw the whole family at dinner. The women were standing up waiting on them. The young, sturdy-looking son was telling something funny with his mouth full of pudding, and they were all laughing, the woman in the clogs, who was pouring cabbage soup into a bowl, laughing most merrily of all. Very probably the good-looking face of the young woman in the clogs had a good deal to do with the impression of well-being this peasant household made upon Levin, but the impression was so strong that Levin could never get rid of it. And all the way from the old peasant's to Sviazhsky's he kept recalling this peasant farm as though there were something in this impression that demanded his special attention. Chapter 26 Sviazhsky was the marshal of his district. He was five years older than Levin, and had long been married. His sister-in-law, a young girl Levin liked very much, lived in his house; and Levin knew that Sviazhsky and his wife would have greatly liked to marry the girl to him. He knew this with certainty, as so-called eligible young men always know it, though he could never have brought himself to speak of it to anyone; and he knew too that, although he wanted to get married, and although by every token this very attractive girl would make an excellent wife, he could no more have married her, even if he had not been in love with Kitty Shtcherbatskaya, than he could have flown up to the sky. And this knowledge poisoned the pleasure he had hoped to find in the visit to Sviazhsky. On getting Sviazhsky's letter with the invitation for shooting, Levin had immediately thought of this; but in spite of it he had made up his mind that Sviazhsky's having such views for him was simply his own groundless supposition, and so he would go, all the same. Besides, at the bottom of his heart he had a desire to try himself, put himself to the test in regard to this girl. The Sviazhskys' home-life was exceedingly pleasant, and Sviazhsky himself, the best type of man taking part in local affairs that Levin knew, was very interesting to him. Sviazhsky was one of those people, always a source of wonder to Levin, whose convictions, very logical though never original, go one way by themselves, while their life, exceedingly definite and firm in its direction, goes its way quite apart and almost always in direct contradiction to their convictions. Sviazhsky was an extremely advanced man. He despised the nobility, and believed the mass of the nobility to be secretly in favor of serfdom, and only concealing their views from cowardice. He regarded Russia as a ruined country, rather after the style of Turkey, and the government of Russia as so bad that he never permitted himself to criticize its doings seriously, and yet he was a functionary of that government and a model marshal of nobility, and when he drove about he always wore the cockade of office and the cap with the red band. He considered human life only tolerable abroad, and went abroad to stay at every opportunity, and at the same time he carried on a complex and improved system of agriculture in Russia, and with extreme interest followed everything and knew everything that was being done in Russia. He considered the Russian peasant as occupying a stage of development intermediate between the ape and the man, and at the same time in the local assemblies no one was readier to shake hands with the peasants and listen to their opinion. He believed neither in God nor the devil, but was much concerned about the question of the improvement of the clergy and the maintenance of their revenues, and took special trouble to keep up the church in his village. On the woman question he was on the side of the extreme advocates of complete liberty for women, and especially their right to labor. But he lived with his wife on such terms that their affectionate childless home life was the admiration of everyone, and arranged his wife's life so that she did nothing and could do nothing but share her husband's efforts that her time should pass as happily and as agreeably as possible. If it had not been a characteristic of Levin's to put the most favorable interpretation on people, Sviazhsky's character would have presented no doubt or difficulty to him: he would have said to himself, "a fool or a knave," and everything would have seemed clear. But he could not say "a fool," because Sviazhsky was unmistakably clever, and moreover, a highly cultivated man, who was exceptionally modest over his culture. There was not a subject he knew nothing of. But he did not display his knowledge except when he was compelled to do so. Still less could Levin say that he was a knave, as Sviazhsky was unmistakably an honest, good-hearted, sensible man, who worked good-humoredly, keenly, and perseveringly at his work; he was held in high honor by everyone about him, and certainly he had never consciously done, and was indeed incapable of doing, anything base. Levin tried to understand him, and could not understand him, and looked at him and his life as at a living enigma. Levin and he were very friendly, and so Levin used to venture to sound Sviazhsky, to try to get at the very foundation of his view of life; but it was always in vain. Every time Levin tried to penetrate beyond the outer chambers of Sviazhsky's mind, which were hospitably open to all, he noticed that Sviazhsky was slightly disconcerted; faint signs of alarm were visible in his eyes, as though he were afraid Levin would understand him, and he would give him a kindly, good-humored repulse. Just now, since his disenchantment with farming, Levin was particularly glad to stay with Sviazhsky. Apart from the fact that the sight of this happy and affectionate couple, so pleased with themselves and everyone else, and their well-ordered home had always a cheering effect on Levin, he felt a longing, now that he was so dissatisfied with his own life, to get at that secret in Sviazhsky that gave him such clearness, definiteness, and good courage in life. Moreover, Levin knew that at Sviazhsky's he should meet the landowners of the neighborhood, and it was particularly interesting for him just now to hear and take part in those rural conversations concerning crops, laborers' wages, and so on, which, he was aware, are conventionally regarded as something very low, but which seemed to him just now to constitute the one subject of importance. "It was not, perhaps, of importance in the days of serfdom, and it may not be of importance in England. In both cases the conditions of agriculture are firmly established; but among us now, when everything has been turned upside down and is only just taking shape, the question what form these conditions will take is the one question of importance in Russia," thought Levin. The shooting turned out to be worse than Levin had expected. The marsh was dry and there were no grouse at all. He walked about the whole day and only brought back three birds, but to make up for that--he brought back, as he always did from shooting, an excellent appetite, excellent spirits, and that keen, intellectual mood which with him always accompanied violent physical exertion. And while out shooting, when he seemed to be thinking of nothing at all, suddenly the old man and his family kept coming back to his mind, and the impression of them seemed to claim not merely his attention, but the solution of some question connected with them. In the evening at tea, two landowners who had come about some business connected with a wardship were of the party, and the interesting conversation Levin had been looking forward to sprang up. Levin was sitting beside his hostess at the tea table, and was obliged to keep up a conversation with her and her sister, who was sitting opposite him. Madame Sviazhskaya was a round-faced, fair-haired, rather short woman, all smiles and dimples. Levin tried through her to get a solution of the weighty enigma her husband presented to his mind; but he had not complete freedom of ideas, because he was in an agony of embarrassment. This agony of embarrassment was due to the fact that the sister-in-law was sitting opposite to him, in a dress, specially put on, as he fancied, for his benefit, cut particularly open, in the shape of a trapeze, on her white bosom. This quadrangular opening, in spite of the bosom's being very white, or just because it was very white, deprived Levin of the full use of his faculties. He imagined, probably mistakenly, that this low-necked bodice had been made on his account, and felt that he had no right to look at it, and tried not to look at it; but he felt that he was to blame for the very fact of the low-necked bodice having been made. It seemed to Levin that he had deceived someone, that he ought to explain something, but that to explain it was impossible, and for that reason he was continually blushing, was ill at ease and awkward. His awkwardness infected the pretty sister-in-law too. But their hostess appeared not to observe this, and kept purposely drawing her into the conversation. "You say," she said, pursuing the subject that had been started, "that my husband cannot be interested in what's Russian. It's quite the contrary; he is always in cheerful spirits abroad, but not as he is here. Here, he feels in his proper place. He has so much to do, and he has the faculty of interesting himself in everything. Oh, you've not been to see our school, have you?" "I've seen it.... The little house covered with ivy, isn't it?" "Yes; that's Nastia's work," she said, indicating her sister. "You teach in it yourself?" asked Levin, trying to look above the open neck, but feeling that wherever he looked in that direction he should see it. "Yes; I used to teach in it myself, and do teach still, but we have a first-rate schoolmistress now. And we've started gymnastic exercises." "No, thank you, I won't have any more tea," said Levin, and conscious of doing a rude thing, but incapable of continuing the conversation, he got up, blushing. "I hear a very interesting conversation," he added, and walked to the other end of the table, where Sviazhsky was sitting with the two gentlemen of the neighborhood. Sviazhsky was sitting sideways, with one elbow on the table, and a cup in one hand, while with the other hand he gathered up his beard, held it to his nose and let it drop again, as though he were smelling it. His brilliant black eyes were looking straight at the excited country gentleman with gray whiskers, and apparently he derived amusement from his remarks. The gentleman was complaining of the peasants. It was evident to Levin that Sviazhsky knew an answer to this gentleman's complaints, which would at once demolish his whole contention, but that in his position he could not give utterance to this answer, and listened, not without pleasure, to the landowner's comic speeches. The gentleman with the gray whiskers was obviously an inveterate adherent of serfdom and a devoted agriculturist, who had lived all his life in the country. Levin saw proofs of this in his dress, in the old-fashioned threadbare coat, obviously not his everyday attire, in his shrewd, deep-set eyes, in his idiomatic, fluent Russian, in the imperious tone that had become habitual from long use, and in the resolute gestures of his large, red, sunburnt hands, with an old betrothal ring on the little finger. Chapter 27 "If I'd only the heart to throw up what's been set going ... such a lot of trouble wasted ... I'd turn my back on the whole business, sell up, go off like Nikolay Ivanovitch ... to hear _La Belle Helene_," said the landowner, a pleasant smile lighting up his shrewd old face. "But you see you don't throw it up," said Nikolay Ivanovitch Sviazhsky; "so there must be something gained." "The only gain is that I live in my own house, neither bought nor hired. Besides, one keeps hoping the people will learn sense. Though, instead of that, you'd never believe it--the drunkenness, the immorality! They keep chopping and changing their bits of land. Not a sight of a horse or a cow. The peasant's dying of hunger, but just go and take him on as a laborer, he'll do his best to do you a mischief, and then bring you up before the justice of the peace." "But then you make complaints to the justice too," said Sviazhsky. "I lodge complaints? Not for anything in the world! Such a talking, and such a to-do, that one would have cause to regret it. At the works, for instance, they pocketed the advance-money and made off. What did the justice do? Why, acquitted them. Nothing keeps them in order but their own communal court and their village elder. He'll flog them in the good old style! But for that there'd be nothing for it but to give it all up and run away." Obviously the landowner was chaffing Sviazhsky, who, far from resenting it, was apparently amused by it. "But you see we manage our land without such extreme measures," said he, smiling: "Levin and I and this gentleman." He indicated the other landowner. "Yes, the thing's done at Mihail Petrovitch's, but ask him how it's done. Do you call that a rational system?" said the landowner, obviously rather proud of the word "rational." "My system's very simple," said Mihail Petrovitch, "thank God. All my management rests on getting the money ready for the autumn taxes, and the peasants come to me, 'Father, master, help us!' Well, the peasants are all one's neighbors; one feels for them. So one advances them a third, but one says: 'Remember, lads, I have helped you, and you must help me when I need it--whether it's the sowing of the oats, or the haycutting, or the harvest'; and well, one agrees, so much for each taxpayer--though there are dishonest ones among them too, it's true." Levin, who had long been familiar with these patriarchal methods, exchanged glances with Sviazhsky and interrupted Mihail Petrovitch, turning again to the gentleman with the gray whiskers. "Then what do you think?" he asked; "what system is one to adopt nowadays?" "Why, manage like Mihail Petrovitch, or let the land for half the crop or for rent to the peasants; that one can do--only that's just how the general prosperity of the country is being ruined. Where the land with serf-labor and good management gave a yield of nine to one, on the half-crop system it yields three to one. Russia has been ruined by the emancipation!" Sviazhsky looked with smiling eyes at Levin, and even made a faint gesture of irony to him; but Levin did not think the landowner's words absurd, he understood them better than he did Sviazhsky. A great deal more of what the gentleman with the gray whiskers said to show in what way Russia was ruined by the emancipation struck him indeed as very true, new to him, and quite incontestable. The landowner unmistakably spoke his own individual thought--a thing that very rarely happens--and a thought to which he had been brought not by a desire of finding some exercise for an idle brain, but a thought which had grown up out of the conditions of his life, which he had brooded over in the solitude of his village, and had considered in every aspect. "The point is, don't you see, that progress of every sort is only made by the use of authority," he said, evidently wishing to show he was not without culture. "Take the reforms of Peter, of Catherine, of Alexander. Take European history. And progress in agriculture more than anything else--the potato, for instance, that was introduced among us by force. The wooden plough too wasn't always used. It was introduced maybe in the days before the Empire, but it was probably brought in by force. Now, in our own day, we landowners in the serf times used various improvements in our husbandry: drying machines and thrashing machines, and carting manure and all the modern implements--all that we brought into use by our authority, and the peasants opposed it at first, and ended by imitating us. Now, by the abolition of serfdom we have been deprived of our authority; and so our husbandry, where it had been raised to a high level, is bound to sink to the most savage primitive condition. That's how I see it." "But why so? If it's rational, you'll be able to keep up the same system with hired labor," said Sviazhsky. "We've no power over them. With whom am I going to work the system, allow me to ask?" "There it is--the labor force--the chief element in agriculture," thought Levin. "With laborers." "The laborers won't work well, and won't work with good implements. Our laborer can do nothing but get drunk like a pig, and when he's drunk he ruins everything you give him. He makes the horses ill with too much water, cuts good harness, barters the tires of the wheels for drink, drops bits of iron into the thrashing machine, so as to break it. He loathes the sight of anything that's not after his fashion. And that's how it is the whole level of husbandry has fallen. Lands gone out of cultivation, overgrown with weeds, or divided among the peasants, and where millions of bushels were raised you get a hundred thousand; the wealth of the country has decreased. If the same thing had been done, but with care that..." And he proceeded to unfold his own scheme of emancipation by means of which these drawbacks might have been avoided. This did not interest Levin, but when he had finished, Levin went back to his first position, and, addressing Sviazhsky, and trying to draw him into expressing his serious opinion:-` "That the standard of culture is falling, and that with our present relations to the peasants there is no possibility of farming on a rational system to yield a profit--that's perfectly true," said he. "I don't believe it," Sviazhsky replied quite seriously; "all I see is that we don't know how to cultivate the land, and that our system of agriculture in the serf days was by no means too high, but too low. We have no machines, no good stock, no efficient supervision; we don't even know how to keep accounts. Ask any landowner; he won't be able to tell you what crop's profitable, and what's not." "Italian bookkeeping," said the gentleman of the gray whiskers ironically. "You may keep your books as you like, but if they spoil everything for you, there won't be any profit." "Why do they spoil things? A poor thrashing machine, or your Russian presser, they will break, but my steam press they don't break. A wretched Russian nag they'll ruin, but keep good dray-horses--they won't ruin them. And so it is all round. We must raise our farming to a higher level." "Oh, if one only had the means to do it, Nikolay Ivanovitch! It's all very well for you; but for me, with a son to keep at the university, lads to be educated at the high school--how am I going to buy these dray-horses?" "Well, that's what the land banks are for." "To get what's left me sold by auction? No, thank you." "I don't agree that it's necessary or possible to raise the level of agriculture still higher," said Levin. "I devote myself to it, and I have means, but I can do nothing. As to the banks, I don't know to whom they're any good. For my part, anyway, whatever I've spent money on in the way of husbandry, it has been a loss: stock--a loss, machinery--a loss." "That's true enough," the gentleman with the gray whiskers chimed in, positively laughing with satisfaction. "And I'm not the only one," pursued Levin. "I mix with all the neighboring landowners, who are cultivating their land on a rational system; they all, with rare exceptions, are doing so at a loss. Come, tell us how does your land do--does it pay?" said Levin, and at once in Sviazhsky's eyes he detected that fleeting expression of alarm which he had noticed whenever he had tried to penetrate beyond the outer chambers of Sviazhsky's mind. Moreover, this question on Levin's part was not quite in good faith. Madame Sviazhskaya had just told him at tea that they had that summer invited a German expert in bookkeeping from Moscow, who for a consideration of five hundred roubles had investigated the management of their property, and found that it was costing them a loss of three thousand odd roubles. She did not remember the precise sum, but it appeared that the German had worked it out to the fraction of a farthing. The gray-whiskered landowner smiled at the mention of the profits of Sviazhsky's famling, obviously aware how much gain his neighbor and marshal was likely to be making. "Possibly it does not pay," answered Sviazhsky. "That merely proves either that I'm a bad manager, or that I've sunk my capital for the increase of my rents." "Oh, rent!" Levin cried with horror. "Rent there may be in Europe, where land has been improved by the labor put into it, but with us all the land is deteriorating from the labor put into it--in other words they're working it out; so there's no question of rent." "How no rent? It's a law." "Then we're outside the law; rent explains nothing for us, but simply muddles us. No, tell me how there can be a theory of rent?..." "Will you have some junket? Masha, pass us some junket or raspberries." He turned to his wife. "Extraordinarily late the raspberries are lasting this year." And in the happiest frame of mind Sviazhsky got up and walked off, apparently supposing the conversation to have ended at the very point when to Levin it seemed that it was only just beginning. Having lost his antagonist, Levin continued the conversation with the gray-whiskered landowner, trying to prove to him that all the difficulty arises from the fact that we don't find out the peculiarities and habits of our laborer; but the landowner, like all men who think independently and in isolation, was slow in taking in any other person's idea, and particularly partial to his own. He stuck to it that the Russian peasant is a swine and likes swinishness, and that to get him out of his swinishness one must have authority, and there is none; one must have the stick, and we have become so liberal that we have all of a sudden replaced the stick that served us for a thousand years by lawyers and model prisons, where the worthless, stinking peasant is fed on good soup and has a fixed allowance of cubic feet of air. "What makes you think," said Levin, trying to get back to the question, "that it's impossible to find some relation to the laborer in which the labor would become productive?" "That never could be so with the Russian peasantry; we've no power over them," answered the landowner. "How can new conditions be found?" said Sviazhsky. Having eaten some junket and lighted a cigarette, he came back to the discussion. "All possible relations to the labor force have been defined and studied," he said. "The relic of barbarism, the primitive commune with each guarantee for all, will disappear of itself; serfdom has been abolished--there remains nothing but free labor, and its forms are fixed and ready made, and must be adopted. Permanent hands, day-laborers, rammers--you can't get out of those forms." "But Europe is dissatisfied with these forms." "Dissatisfied, and seeking new ones. And will find them, in all probability." "That's just what I was meaning," answered Levin. "Why shouldn't we seek them for ourselves?" "Because it would be just like inventing afresh the means for constructing railways. They are ready, invented." "But if they don't do for us, if they're stupid?" said Levin. And again he detected the expression of alarm in the eyes of Sviazhsky. "Oh, yes; we'll bury the world under our caps! We've found the secret Europe was seeking for! I've heard all that; but, excuse me, do you know all that's been done in Europe on the question of the organization of labor?" "No, very little." "That question is now absorbing the best minds in Europe. The Schulze-Delitsch movement.... And then all this enormous literature of the labor question, the most liberal Lassalle movement ... the Mulhausen experiment? That's a fact by now, as you're probably aware." "I have some idea of it, but very vague." "No, you only say that; no doubt you know all about it as well as I do. I'm not a professor of sociology, of course, but it interested me, and really, if it interests you, you ought to study it." "But what conclusion have they come to?" "Excuse me..." The two neighbors had risen, and Sviazhsky, once more checking Levin in his inconvenient habit of peeping into what was beyond the outer chambers of his mind, went to see his guests out. Chapter 28 Levin was insufferably bored that evening with the ladies; he was stirred as he had never been before by the idea that the dissatisfaction he was feeling with his system of managing his land was not an exceptional case, but the general condition of things in Russia; that the organization of some relation of the laborers to the soil in which they would work, as with the peasant he had met half-way to the Sviazhskys', was not a dream, but a problem which must be solved. And it seemed to him that the problem could be solved, and that he ought to try and solve it. After saying good-night to the ladies, and promising to stay the whole of the next day, so as to make an expedition on horseback with them to see an interesting ruin in the crown forest, Levin went, before going to bed, into his host's study to get the books on the labor question that Sviazhsky had offered him. Sviazhsky's study was a huge room, surrounded by bookcases and with two tables in it--one a massive writing table, standing in the middle of the room, and the other a round table, covered with recent numbers of reviews and journals in different languages, ranged like the rays of a star round the lamp. On the writing table was a stand of drawers marked with gold lettering, and full of papers of various sorts. Sviazhsky took out the books, and sat down in a rocking-chair. "What are you looking at there?" he said to Levin, who was standing at the round table looking through the reviews. "Oh, yes, there's a very interesting article here," said Sviazhsky of the review Levin was holding in his hand. "It appears," he went on, with eager interest, "that Friedrich was not, after all, the person chiefly responsible for the partition of Poland. It is proved..." And with his characteristic clearness, he summed up those new, very important, and interesting revelations. Although Levin was engrossed at the moment by his ideas about the problem of the land, he wondered, as he heard Sviazhsky: "What is there inside of him? And why, why is he interested in the partition of Poland?" When Sviazhsky had finished, Levin could not help asking: "Well, and what then?" But there was nothing to follow. It was simply interesting that it had been proved to be so and so. But Sviazhsky did not explain, and saw no need to explain why it was interesting to him. "Yes, but I was very much interested by your irritable neighbor," said Levin, sighing. "He's a clever fellow, and said a lot that was true." "Oh, get along with you! An inveterate supporter of serfdom at heart, like all of them!" said Sviazhsky. "Whose marshal you are." "Yes, only I marshal them in the other direction," said Sviazhsky, laughing. "I'll tell you what interests me very much," said Levin. "He's right that our system, that's to say of rational farming, doesn't answer, that the only thing that answers is the money-lender system, like that meek-looking gentleman's, or else the very simplest.... Whose fault is it?" "Our own, of course. Besides, it's not true that it doesn't answer. It answers with Vassiltchikov." "A factory..." "But I really don't know what it is you are surprised at. The people are at such a low stage of rational and moral development, that it's obvious they're bound to oppose everything that's strange to them. In Europe, a rational system answers because the people are educated; it follows that we must educate the people--that's all." "But how are we to educate the people?" "To educate the people three things are needed: schools, and schools, and schools. "But you said yourself the people are at such a low stage of material development: what help are schools for that?" "Do you know, you remind me of the story of the advice given to the sick man--You should try purgative medicine. Taken: worse. Try leeches. Tried them: worse. Well, then, there's nothing left but to pray to God. Tried it: worse. That's just how it is with us. I say political economy; you say--worse. I say socialism: worse. Education: worse." "But how do schools help matters?" "They give the peasant fresh wants." "Well, that's a thing I've never understood," Levin replied with heat. "In what way are schools going to help the people to improve their material position? You say schools, education, will give them fresh wants. So much the worse, since they won't be capable of satisfying them. And in what way a knowledge of addition and subtraction and the catechism is going to improve their material condition, I never could make out. The day before yesterday, I met a peasant woman in the evening with a little baby, and asked her where she was going. She said she was going to the wise woman; her boy had screaming fits, so she was taking him to be doctored. I asked, 'Why, how does the wise woman cure screaming fits?' 'She puts the child on the hen-roost and repeats some charm....'" "Well, you're saying it yourself! What's wanted to prevent her taking her child to the hen-roost to cure it of screaming fits is just..." Sviazhsky said, smiling good-humoredly. "Oh, no!" said Levin with annoyance; "that method of doctoring I merely meant as a simile for doctoring the people with schools. The people are poor and ignorant--that we see as surely as the peasant woman sees the baby is ill because it screams. But in what way this trouble of poverty and ignorance is to be cured by schools is as incomprehensible as how the hen-roost affects the screaming. What has to be cured is what makes him poor." "Well, in that, at least, you're in agreement with Spencer, whom you dislike so much. He says, too, that education may be the consequence of greater prosperity and comfort, of more frequent washing, as he says, but not of being able to read and write..." "Well, then, I'm very glad--or the contrary, very sorry, that I'm in agreement with Spencer; only I've known it a long while. Schools can do no good; what will do good is an economic organization in which the people will become richer, will have more leisure--and then there will be schools." "Still, all over Europe now schools are obligatory." "And how far do you agree with Spencer yourself about it?" asked Levin. But there was a gleam of alarm in Sviazhsky's eyes, and he said smiling: "No; that screaming story is positively capital! Did you really hear it yourself?" Levin saw that he was not to discover the connection between this man's life and his thoughts. Obviously he did not care in the least what his reasoning led him to; all he wanted was the process of reasoning. And he did not like it when the process of reasoning brought him into a blind alley. That was the only thing he disliked, and avoided by changing the conversation to something agreeable and amusing. All the impressions of the day, beginning with the impression made by the old peasant, which served, as it were, as the fundamental basis of all the conceptions and ideas of the day, threw Levin into violent excitement. This dear good Sviazhsky, keeping a stock of ideas simply for social purposes, and obviously having some other principles hidden from Levin, while with the crowd, whose name is legion, he guided public opinion by ideas he did not share; that irascible country gentleman, perfectly correct in the conclusions that he had been worried into by life, but wrong in his exasperation against a whole class, and that the best class in Russia; his own dissatisfaction with the work he had been doing, and the vague hope of finding a remedy for all this--all was blended in a sense of inward turmoil, and anticipation of some solution near at hand. Left alone in the room assigned him, lying on a spring mattress that yielded unexpectedly at every movement of his arm or his leg, Levin did not fall asleep for a long while. Not one conversation with Sviazhsky, though he had said a great deal that was clever, had interested Levin; but the conclusions of the irascible landowner required consideration. Levin could not help recalling every word he had said, and in imagination amending his own replies. "Yes, I ought to have said to him: You say that our husbandry does not answer because the peasant hates improvements, and that they must be forced on him by authority. If no system of husbandry answered at all without these improvements, you would be quite right. But the only system that does answer is where laborer is working in accordance with his habits, just as on the old peasant's land half-way here. Your and our general dissatisfaction with the system shows that either we are to blame or the laborers. We have gone our way--the European way--a long while, without asking ourselves about the qualities of our labor force. Let us try to look upon the labor force not as an abstract force, but as the _Russian peasant_ with his instincts, and we shall arrange our system of culture in accordance with that. Imagine, I ought to have said to him, that you have the same system as the old peasant has, that you have found means of making your laborers take an interest in the success of the work, and have found the happy mean in the way of improvements which they will admit, and you will, without exhausting the soil, get twice or three times the yield you got before. Divide it in halves, give half as the share of labor, the surplus left you will be greater, and the share of labor will be greater too. And to do this one must lower the standard of husbandry and interest the laborers in its success. How to do this?--that's a matter of detail; but undoubtedly it can be done." This idea threw Levin into a great excitement. He did not sleep half the night, thinking over in detail the putting of his idea into practice. He had not intended to go away next day, but he now determined to go home early in the morning. Besides, the sister-in-law with her low-necked bodice aroused in him a feeling akin to shame and remorse for some utterly base action. Most important of all--he must get back without delay: he would have to make haste to put his new project to the peasants before the sowing of the winter wheat, so that the sowing might be undertaken on a new basis. He had made up his mind to revolutionize his whole system. Chapter 29 The carrying out of Levin's plan presented many difficulties; but he struggled on, doing his utmost, and attained a result which, though not what he desired, was enough to enable him, without self-deception, to believe that the attempt was worth the trouble. One of the chief difficulties was that the process of cultivating the land was in full swing, that it was impossible to stop everything and begin it all again from the beginning, and the machine had to be mended while in motion. When on the evening that he arrived home he informed the bailiff of his plans, the latter with visible pleasure agreed with what he said so long as he was pointing out that all that had been done up to that time was stupid and useless. The bailiff said that he had said so a long while ago, but no heed had been paid him. But as for the proposal made by Levin--to take a part as shareholder with his laborers in each agricultural undertaking--at this the bailiff simply expressed a profound despondency, and offered no definite opinion, but began immediately talking of the urgent necessity of carrying the remaining sheaves of rye the next day, and of sending the men out for the second ploughing, so that Levin felt that this was not the time for discussing it. On beginning to talk to the peasants about it, and making a proposition to cede them the land on new terms, he came into collision with the same great difficulty that they were so much absorbed by the current work of the day, that they had not time to consider the advantages and disadvantages of the proposed scheme. The simple-hearted Ivan, the cowherd, seemed completely to grasp Levin's proposal--that he should with his family take a share of the profits of the cattle-yard--and he was in complete sympathy with the plan. But when Levin hinted at the future advantages, Ivan's face expressed alarm and regret that he could not hear all he had to say, and he made haste to find himself some task that would admit of no delay: he either snatched up the fork to pitch the hay out of the pens, or ran to get water or to clear out the dung. Another difficulty lay in the invincible disbelief of the peasant that a landowner's object could be anything else than a desire to squeeze all he could out of them. They were firmly convinced that his real aim (whatever he might say to them) would always be in what he did not say to them. And they themselves, in giving their opinion, said a great deal but never said what was their real object. Moreover (Levin felt that the irascible landowner had been right) the peasants made their first and unalterable condition of any agreement whatever that they should not be forced to any new methods of tillage of any kind, nor to use new implements. They agreed that the modern plough ploughed better, that the scarifier did the work more quickly, but they found thousands of reasons that made it out of the question for them to use either of them; and though he had accepted the conviction that he would have to lower the standard of cultivation, he felt sorry to give up improved methods, the advantages of which were so obvious. But in spite of all these difficulties he got his way, and by autumn the system was working, or at least so it seemed to him. At first Levin had thought of giving up the whole farming of the land just as it was to the peasants, the laborers, and the bailiff on new conditions of partnership; but he was very soon convinced that this was impossible, and determined to divide it up. The cattle-yard, the garden, hay fields, and arable land, divided into several parts, had to be made into separate lots. The simple-hearted cowherd, Ivan, who, Levin fancied, understood the matter better than any of them, collecting together a gang of workers to help him, principally of his own family, became a partner in the cattle-yard. A distant part of the estate, a tract of waste land that had lain fallow for eight years, was with the help of the clever carpenter, Fyodor Ryezunov, taken by six families of peasants on new conditions of partnership, and the peasant Shuraev took the management of all the vegetable gardens on the same terms. The remainder of the land was still worked on the old system, but these three associated partnerships were the first step to a new organization of the whole, and they completely took up Levin's time. It is true that in the cattle-yard things went no better than before, and Ivan strenuously opposed warm housing for the cows and butter made of fresh cream, affirming that cows require less food if kept cold, and that butter is more profitable made from sour cream, and he asked for wages just as under the old system, and took not the slightest interest in the fact that the money he received was not wages but an advance out of his future share in the profits. It is true that Fyodor Ryezunov's company did not plough over the ground twice before sowing, as had been agreed, justifying themselves on the plea that the time was too short. It is true that the peasants of the same company, though they had agreed to work the land on new conditions, always spoke of the land, not as held in partnership, but as rented for half the crop, and more than once the peasants and Ryezunov himself said to Levin, "If you would take a rent for the land, it would save you trouble, and we should be more free." Moreover the same peasants kept putting off, on various excuses, the building of a cattleyard and barn on the land as agreed upon, and delayed doing it till the winter. It is true that Shuraev would have liked to let out the kitchen gardens he had undertaken in small lots to the peasants. He evidently quite misunderstood, and apparently intentionally misunderstood, the conditions upon which the land had been given to him. Often, too, talking to the peasants and explaining to them all the advantages of the plan, Levin felt that the peasants heard nothing but the sound of his voice, and were firmly resolved, whatever he might say, not to let themselves be taken in. He felt this especially when he talked to the cleverest of the peasants, Ryezunov, and detected the gleam in Ryezunov's eyes which showed so plainly both ironical amusement at Levin, and the firm conviction that, if any one were to be taken in, it would not be he, Ryezunov. But in spite of all this Levin thought the system worked, and that by keeping accounts strictly and insisting on his own way, he would prove to them in the future the advantages of the arrangement, and then the system would go of itself. These matters, together with the management of the land still left on his hands, and the indoor work over his book, so engrossed Levin the whole summer that he scarcely ever went out shooting. At the end of August he heard that the Oblonskys had gone away to Moscow, from their servant who brought back the side-saddle. He felt that in not answering Darya Alexandrovna's letter he had by his rudeness, of which he could not think without a flush of shame, burned his ships, and that he would never go and see them again. He had been just as rude with the Sviazhskys, leaving them without saying good-bye. But he would never go to see them again either. He did not care about that now. The business of reorganizing the farming of his land absorbed him as completely as though there would never be anything else in his life. He read the books lent him by Sviazhsky, and copying out what he had not got, he read both the economic and socialistic books on the subject, but, as he had anticipated, found nothing bearing on the scheme he had undertaken. In the books on political economy--in Mill, for instance, whom he studied first with great ardor, hoping every minute to find an answer to the questions that were engrossing him--he found laws deduced from the condition of land culture in Europe; but he did not see why these laws, which did not apply in Russia, must be general. He saw just the same thing in the socialistic books: either they were the beautiful but impracticable fantasies which had fascinated him when he was a student, or they were attempts at improving, rectifying the economic position in which Europe was placed, with which the system of land tenure in Russia had nothing in common. Political economy told him that the laws by which the wealth of Europe had been developed, and was developing, were universal and unvarying. Socialism told him that development along these lines leads to ruin. And neither of them gave an answer, or even a hint, in reply to the question what he, Levin, and all the Russian peasants and landowners, were to do with their millions of hands and millions of acres, to make them as productive as possible for the common weal. Having once taken the subject up, he read conscientiously everything bearing on it, and intended in the autumn to go abroad to study land systems on the spot, in order that he might not on this question be confronted with what so often met him on various subjects. Often, just as he was beginning to understand the idea in the mind of anyone he was talking to, and was beginning to explain his own, he would suddenly be told: "But Kauffmann, but Jones, but Dubois, but Michelli? You haven't read them: they've thrashed that question out thoroughly." He saw now distinctly that Kauffmann and Michelli had nothing to tell him. He knew what he wanted. He saw that Russia has splendid land, splendid laborers, and that in certain cases, as at the peasant's on the way to Sviazhsky's, the produce raised by the laborers and the land is great--in the majority of cases when capital is applied in the European way the produce is small, and that this simply arises from the fact that the laborers want to work and work well only in their own peculiar way, and that this antagonism is not incidental but invariable, and has its roots in the national spirit. He thought that the Russian people whose task it was to colonize and cultivate vast tracts of unoccupied land, consciously adhered, till all their land was occupied, to the methods suitable to their purpose, and that their methods were by no means so bad as was generally supposed. And he wanted to prove this theoretically in his book and practically on his land. Chapter 30 At the end of September the timber had been carted for building the cattleyard on the land that had been allotted to the association of peasants, and the butter from the cows was sold and the profits divided. In practice the system worked capitally, or, at least, so it seemed to Levin. In order to work out the whole subject theoretically and to complete his book, which, in Levin's daydreams, was not merely to effect a revolution in political economy, but to annihilate that science entirely and to lay the foundation of a new science of the relation of the people to the soil, all that was left to do was to make a tour abroad, and to study on the spot all that had been done in the same direction, and to collect conclusive evidence that all that had been done there was not what was wanted. Levin was only waiting for the delivery of his wheat to receive the money for it and go abroad. But the rains began, preventing the harvesting of the corn and potatoes left in the fields, and putting a stop to all work, even to the delivery of the wheat. The mud was impassable along the roads; two mills were carried away, and the weather got worse and worse. On the 30th of September the sun came out in the morning, and hoping for fine weather, Levin began making final preparations for his journey. He gave orders for the wheat to be delivered, sent the bailiff to the merchant to get the money owing him, and went out himself to give some final directions on the estate before setting off. Having finished all his business, soaked through with the streams of water which kept running down the leather behind his neck and his gaiters, but in the keenest and most confident temper, Levin returned homewards in the evening. The weather had become worse than ever towards evening; the hail lashed the drenched mare so cruelly that she went along sideways, shaking her head and ears; but Levin was all right under his hood, and he looked cheerfully about him at the muddy streams running under the wheels, at the drops hanging on every bare twig, at the whiteness of the patch of unmelted hailstones on the planks of the bridge, at the thick layer of still juicy, fleshy leaves that lay heaped up about the stripped elm-tree. In spite of the gloominess of nature around him, he felt peculiarly eager. The talks he had been having with the peasants in the further village had shown that they were beginning to get used to their new position. The old servant to whose hut he had gone to get dry evidently approved of Levin's plan, and of his own accord proposed to enter the partnership by the purchase of cattle. "I have only to go stubbornly on towards my aim, and I shall attain my end," thought Levin; "and it's something to work and take trouble for. This is not a matter of myself individually; the question of the public welfare comes into it. The whole system of culture, the chief element in the condition of the people, must be completely transformed. Instead of poverty, general prosperity and content; instead of hostility, harmony and unity of interests. In short, a bloodless revolution, but a revolution of the greatest magnitude, beginning in the little circle of our district, then the province, then Russia, the whole world. Because a just idea cannot but be fruitful. Yes, it's an aim worth working for. And its being me, Kostya Levin, who went to a ball in a black tie, and was refused by the Shtcherbatskaya girl, and who was intrinsically such a pitiful, worthless creature--that proves nothing; I feel sure Franklin felt just as worthless, and he too had no faith in himself, thinking of himself as a whole. That means nothing. And he too, most likely, had an Agafea Mihalovna to whom he confided his secrets." Musing on such thoughts Levin reached home in the darkness. The bailiff, who had been to the merchant, had come back and brought part of the money for the wheat. An agreement had been made with the old servant, and on the road the bailiff had learned that everywhere the corn was still standing in the fields, so that his one hundred and sixty shocks that had not been carried were nothing in comparison with the losses of others. After dinner Levin was sitting, as he usually did, in an easy chair with a book, and as he read he went on thinking of the journey before him in connection with his book. Today all the significance of his book rose before him with special distinctness, and whole periods ranged themselves in his mind in illustration of his theories. "I must write that down," he thought. "That ought to form a brief introduction, which I thought unnecessary before." He got up to go to his writing table, and Laska, lying at his feet, got up too, stretching and looking at him as though to inquire where to go. But he had not time to write it down, for the head peasants had come round, and Levin went out into the hall to them. After his levee, that is to say, giving directions about the labors of the next day, and seeing all the peasants who had business with him, Levin went back to his study and sat down to work. Laska lay under the table; Agafea Mihalovna settled herself in her place with her stocking. After writing for a little while, Levin suddenly thought with exceptional vividness of Kitty, her refusal, and their last meeting. He got up and began walking about the room. "What's the use of being dreary?" said Agafea Mihalovna. "Come, why do you stay on at home? You ought to go to some warm springs, especially now you're ready for the journey." "Well, I am going away the day after tomorrow, Agafea Mihalovna; I must finish my work." "There, there, your work, you say! As if you hadn't done enough for the peasants! Why, as 'tis, they're saying, 'Your master will be getting some honor from the Tsar for it.' Indeed and it is a strange thing; why need you worry about the peasants?" "I'm not worrying about them; I'm doing it for my own good." Agafea Mihalovna knew every detail of Levin's plans for his land. Levin often put his views before her in all their complexity, and not uncommonly he argued with her and did not agree with her comments. But on this occasion she entirely misinterpreted what he had said. "Of one's soul's salvation we all know and must think before all else," she said with a sigh. "Parfen Denisitch now, for all he was no scholar, he died a death that God grant every one of us the like," she said, referring to a servant who had died recently. "Took the sacrament and all." "That's not what I mean," said he. "I mean that I'm acting for my own advantage. It's all the better for me if the peasants do their work better." "Well, whatever you do, if he's a lazy good-for-nought, everything'll be at sixes and sevens. If he has a conscience, he'll work, and if not, there's no doing anything." "Oh, come, you say yourself Ivan has begun looking after the cattle better." "All I say is," answered Agafea Mihalovna, evidently not speaking at random, but in strict sequence of idea, "that you ought to get married, that's what I say." Agafea Mihalovna's allusion to the very subject he had only just been thinking about, hurt and stung him. Levin scowled, and without answering her, he sat down again to his work, repeating to himself all that he had been thinking of the real significance of that work. Only at intervals he listened in the stillness to the click of Agafea Mihalovna's needles, and recollecting what he did not want to remember, he frowned again. At nine o'clock they heard the bell and the faint vibration of a carriage over the mud. "Well, here's visitors come to us, and you won't be dull," said Agafea Mihalovna, getting up and going to the door. But Levin overtook her. His work was not going well now, and he was glad of a visitor, whoever it might be. Chapter 31 Running halfway down the staircase, Levin caught a sound he knew, a familiar cough in the hall. But he heard it indistinctly through the sound of his own footsteps, and hoped he was mistaken. Then he caught sight of a long, bony, familiar figure, and now it seemed there was no possibility of mistake; and yet he still went on hoping that this tall man taking off his fur cloak and coughing was not his brother Nikolay. Levin loved his brother, but being with him was always a torture. Just now, when Levin, under the influence of the thoughts that had come to him, and Agafea Mihalovna's hint, was in a troubled and uncertain humor, the meeting with his brother that he had to face seemed particularly difficult. Instead of a lively, healthy visitor, some outsider who would, he hoped, cheer him up in his uncertain humor, he had to see his brother, who knew him through and through, who would call forth all the thoughts nearest his heart, would force him to show himself fully. And that he was not disposed to do. Angry with himself for so base a feeling, Levin ran into the hall; as soon as he had seen his brother close, this feeling of selfish disappointment vanished instantly and was replaced by pity. Terrible as his brother Nikolay had been before in his emaciation and sickliness, now he looked still more emaciated, still more wasted. He was a skeleton covered with skin. He stood in the hall, jerking his long thin neck, and pulling the scarf off it, and smiled a strange and pitiful smile. When he saw that smile, submissive and humble, Levin felt something clutching at his throat. "You see, I've come to you," said Nikolay in a thick voice, never for one second taking his eyes off his brother's face. "I've been meaning to a long while, but I've been unwell all the time. Now I'm ever so much better," he said, rubbing his beard with his big thin hands. "Yes, yes!" answered Levin. And he felt still more frightened when, kissing him, he felt with his lips the dryness of his brother's skin and saw close to him his big eyes, full of a strange light. A few weeks before, Konstantin Levin had written to his brother that through the sale of the small part of the property, that had remained undivided, there was a sum of about two thousand roubles to come to him as his share. Nikolay said that he had come now to take this money and, what was more important, to stay a while in the old nest, to get in touch with the earth, so as to renew his strength like the heroes of old for the work that lay before him. In spite of his exaggerated stoop, and the emaciation that was so striking from his height, his movements were as rapid and abrupt as ever. Levin led him into his study. His brother dressed with particular care--a thing he never used to do--combed his scanty, lank hair, and, smiling, went upstairs. He was in the most affectionate and good-humored mood, just as Levin often remembered him in childhood. He even referred to Sergey Ivanovitch without rancor. When he saw Agafea Mihalovna, he made jokes with her and asked after the old servants. The news of the death of Parfen Denisitch made a painful impression on him. A look of fear crossed his face, but he regained his serenity immediately. "Of course he was quite old," he said, and changed the subject. "Well, I'll spend a month or two with you, and then I'm off to Moscow. Do you know, Myakov has promised me a place there, and I'm going into the service. Now I'm going to arrange my life quite differently," he went on. "You know I got rid of that woman." "Marya Nikolaevna? Why, what for?" "Oh, she was a horrid woman! She caused me all sorts of worries." But he did not say what the annoyances were. He could not say that he had cast off Marya Nikolaevna because the tea was weak, and, above all, because she would look after him, as though he were an invalid. "Besides, I want to turn over a new leaf completely now. I've done silly things, of course, like everyone else, but money's the last consideration; I don't regret it. So long as there's health, and my health, thank God, is quite restored." Levin listened and racked his brains, but could think of nothing to say. Nikolay probably felt the same; he began questioning his brother about his affairs; and Levin was glad to talk about himself, because then he could speak without hypocrisy. He told his brother of his plans and his doings. His brother listened, but evidently he was not interested by it. These two men were so akin, so near each other, that the slightest gesture, the tone of voice, told both more than could be said in words. Both of them now had only one thought--the illness of Nikolay and the nearness of his death--which stifled all else. But neither of them dared to speak of it, and so whatever they said--not uttering the one thought that filled their minds--was all falsehood. Never had Levin been so glad when the evening was over and it was time to go to bed. Never with any outside person, never on any official visit had he been so unnatural and false as he was that evening. And the consciousness of this unnaturalness, and the remorse he felt at it, made him even more unnatural. He wanted to weep over his dying, dearly loved brother, and he had to listen and keep on talking of how he meant to live. As the house was damp, and only one bedroom had been kept heated, Levin put his brother to sleep in his own bedroom behind a screen. His brother got into bed, and whether he slept or did not sleep, tossed about like a sick man, coughed, and when he could not get his throat clear, mumbled something. Sometimes when his breathing was painful, he said, "Oh, my God!" Sometimes when he was choking he muttered angrily, "Ah, the devil!" Levin could not sleep for a long while, hearing him. His thoughts were of the most various, but the end of all his thoughts was the same--death. Death, the inevitable end of all, for the first time presented itself to him with irresistible force. And death, which was here in this loved brother, groaning half asleep and from habit calling without distinction on God and the devil, was not so remote as it had hitherto seemed to him. It was in himself too, he felt that. If not today, tomorrow, if not tomorrow, in thirty years, wasn't it all the same! And what was this inevitable death--he did not know, had never thought about it, and what was more, had not the power, had not the courage to think about it. "I work, I want to do something, but I had forgotten it must all end; I had forgotten--death." He sat on his bed in the darkness, crouched up, hugging his knees, and holding his breath from the strain of thought, he pondered. But the more intensely he thought, the clearer it became to him that it was indubitably so, that in reality, looking upon life, he had forgotten one little fact--that death will come, and all ends; that nothing was even worth beginning, and that there was no helping it anyway. Yes, it was awful, but it was so. "But I am alive still. Now what's to be done? what's to be done?" he said in despair. He lighted a candle, got up cautiously and went to the looking-glass, and began looking at his face and hair. Yes, there were gray hairs about his temples. He opened his mouth. His back teeth were beginning to decay. He bared his muscular arms. Yes, there was strength in them. But Nikolay, who lay there breathing with what was left of lungs, had had a strong, healthy body too. And suddenly he recalled how they used to go to bed together as children, and how they only waited till Fyodor Bogdanitch was out of the room to fling pillows at each other and laugh, laugh irrepressibly, so that even their awe of Fyodor Bogdanitch could not check the effervescing, overbrimming sense of life and happiness. "And now that bent, hollow chest ... and I, not knowing what will become of me, or wherefore..." "K...ha! K...ha! Damnation! Why do you keep fidgeting, why don't you go to sleep?" his brother's voice called to him. "Oh, I don't know, I'm not sleepy." "I have had a good sleep, I'm not in a sweat now. Just see, feel my shirt; it's not wet, is it?" Levin felt, withdrew behind the screen, and put out the candle, but for a long while he could not sleep. The question how to live had hardly begun to grow a little clearer to him, when a new, insoluble question presented itself--death. "Why, he's dying--yes, he'll die in the spring, and how help him? What can I say to him? What do I know about it? I'd even forgotten that it was at all." Chapter 32 Levin had long before made the observation that when one is uncomfortable with people from their being excessively amenable and meek, one is apt very soon after to find things intolerable from their touchiness and irritability. He felt that this was how it would be with his brother. And his brother Nikolay's gentleness did in fact not last out for long. The very next morning he began to be irritable, and seemed doing his best to find fault with his brother, attacking him on his tenderest points. Levin felt himself to blame, and could not set things right. He felt that if they had both not kept up appearances, but had spoken, as it is called, from the heart--that is to say, had said only just what they were thinking and feeling--they would simply have looked into each other's faces, and Konstantin could only have said, "You're dying, you're dying!" and Nikolay could only have answered, "I know I'm dying, but I'm afraid, I'm afraid, I'm afraid!" And they could have said nothing more, if they had said only what was in their hearts. But life like that was impossible, and so Konstantin tried to do what he had been trying to do all his life, and never could learn to do, though, as far as he could observe, many people knew so well how to do it, and without it there was no living at all. He tried to say what he was not thinking, but he felt continually that it had a ring of falsehood, that his brother detected him in it, and was exasperated at it. The third day Nikolay induced his brother to explain his plan to him again, and began not merely attacking it, but intentionally confounding it with communism. "You've simply borrowed an idea that's not your own, but you've distorted it, and are trying to apply it where it's not applicable." "But I tell you it's nothing to do with it. They deny the justice of property, of capital, of inheritance, while I do not deny this chief stimulus." (Levin felt disgusted himself at using such expressions, but ever since he had been engrossed by his work, he had unconsciously come more and more frequently to use words not Russian.) "All I want is to regulate labor." "Which means, you've borrowed an idea, stripped it of all that gave it its force, and want to make believe that it's something new," said Nikolay, angrily tugging at his necktie. "But my idea has nothing in common..." "That, anyway," said Nikolay Levin, with an ironical smile, his eyes flashing malignantly, "has the charm of--what's one to call it?--geometrical symmetry, of clearness, of definiteness. It may be a Utopia. But if once one allows the possibility of making of all the past a _tabula rasa_--no property, no family--then labor would organize itself. But you gain nothing..." "Why do you mix things up? I've never been a communist." "But I have, and I consider it's premature, but rational, and it has a future, just like Christianity in its first ages." "All that I maintain is that the labor force ought to be investigated from the point of view of natural science; that is to say, it ought to be studied, its qualities ascertained..." "But that's utter waste of time. That force finds a certain form of activity of itself, according to the stage of its development. There have been slaves first everywhere, then metayers; and we have the half-crop system, rent, and day laborers. What are you trying to find?" Levin suddenly lost his temper at these words, because at the bottom of his heart he was afraid that it was true--true that he was trying to hold the balance even between communism and the familiar forms, and that this was hardly possible. "I am trying to find means of working productively for myself and for the laborers. I want to organize..." he answered hotly. "You don't want to organize anything; it's simply just as you've been all your life, that you want to be original to pose as not exploiting the peasants simply, but with some idea in view." "Oh, all right, that's what you think--and let me alone!" answered Levin, feeling the muscles of his left cheek twitching uncontrollably. "You've never had, and never have, convictions; all you want is to please your vanity." "Oh, very well; then let me alone!" "And I will let you alone! and it's high time I did, and go to the devil with you! and I'm very sorry I ever came!" In spite of all Levin's efforts to soothe his brother afterwards, Nikolay would listen to nothing he said, declaring that it was better to part, and Konstantin saw that it simply was that life was unbearable to him. Nikolay was just getting ready to go, when Konstantin went in to him again and begged him, rather unnaturally, to forgive him if he had hurt his feelings in any way. "Ah, generosity!" said Nikolay, and he smiled. "If you want to be right, I can give you that satisfaction. You're in the right; but I'm going all the same." It was only just at parting that Nikolay kissed him, and said, looking with sudden strangeness and seriousness at his brother: "Anyway, don't remember evil against me, Kostya!" and his voice quivered. These were the only words that had been spoken sincerely between them. Levin knew that those words meant, "You see, and you know, that I'm in a bad way, and maybe we shall not see each other again." Levin knew this, and the tears gushed from his eyes. He kissed his brother once more, but he could not speak, and knew not what to say. Three days after his brother's departure, Levin too set off for his foreign tour. Happening to meet Shtcherbatsky, Kitty's cousin, in the railway train, Levin greatly astonished him by his depression. "What's the matter with you?" Shtcherbatsky asked him. "Oh, nothing; there's not much happiness in life." "Not much? You come with me to Paris instead of to Mulhausen. You shall see how to be happy." "No, I've done with it all. It's time I was dead." "Well, that's a good one!" said Shtcherbatsky, laughing; "why, I'm only just getting ready to begin." "Yes, I thought the same not long ago, but now I know I shall soon be dead." Levin said what he had genuinely been thinking of late. He saw nothing but death or the advance towards death in everything. But his cherished scheme only engrossed him the more. Life had to be got through somehow till death did come. Darkness had fallen upon everything for him; but just because of this darkness he felt that the one guiding clue in the darkness was his work, and he clutched it and clung to it with all his strength. PART FOUR Chapter 1 The Karenins, husband and wife, continued living in the same house, met every day, but were complete strangers to one another. Alexey Alexandrovitch made it a rule to see his wife every day, so that the servants might have no grounds for suppositions, but avoided dining at home. Vronsky was never at Alexey Alexandrovitch's house, but Anna saw him away from home, and her husband was aware of it. The position was one of misery for all three; and not one of them would have been equal to enduring this position for a single day, if it had not been for the expectation that it would change, that it was merely a temporary painful ordeal which would pass over. Alexey Alexandrovitch hoped that this passion would pass, as everything does pass, that everyone would forget about it, and his name would remain unsullied. Anna, on whom the position depended, and for whom it was more miserable than for anyone, endured it because she not merely hoped, but firmly believed, that it would all very soon be settled and come right. She had not the least idea what would settle the position, but she firmly believed that something would very soon turn up now. Vronsky, against his own will or wishes, followed her lead, hoped too that something, apart from his own action, would be sure to solve all difficulties. In the middle of the winter Vronsky spent a very tiresome week. A foreign prince, who had come on a visit to Petersburg, was put under his charge, and he had to show him the sights worth seeing. Vronsky was of distinguished appearance; he possessed, moreover, the art of behaving with respectful dignity, and was used to having to do with such grand personages--that was how he came to be put in charge of the prince. But he felt his duties very irksome. The prince was anxious to miss nothing of which he would be asked at home, had he seen that in Russia? And on his own account he was anxious to enjoy to the utmost all Russian forms of amusement. Vronsky was obliged to be his guide in satisfying both these inclinations. The mornings they spent driving to look at places of interest; the evenings they passed enjoying the national entertainments. The prince rejoiced in health exceptional even among princes. By gymnastics and careful attention to his health he had brought himself to such a point that in spite of his excess in pleasure he looked as fresh as a big glossy green Dutch cucumber. The prince had traveled a great deal, and considered one of the chief advantages of modern facilities of communication was the accessibility of the pleasures of all nations. He had been in Spain, and there had indulged in serenades and had made friends with a Spanish girl who played the mandolin. In Switzerland he had killed chamois. In England he had galloped in a red coat over hedges and killed two hundred pheasants for a bet. In Turkey he had got into a harem; in India he had hunted on an elephant, and now in Russia he wished to taste all the specially Russian forms of pleasure. Vronsky, who was, as it were, chief master of the ceremonies to him, was at great pains to arrange all the Russian amusements suggested by various persons to the prince. They had race horses, and Russian pancakes and bear hunts and three-horse sledges, and gypsies and drinking feasts, with the Russian accompaniment of broken crockery. And the prince with surprising ease fell in with the Russian spirit, smashed trays full of crockery, sat with a gypsy girl on his knee, and seemed to be asking--what more, and does the whole Russian spirit consist in just this? In reality, of all the Russian entertainments the prince liked best French actresses and ballet dancers and white-seal champagne. Vronsky was used to princes, but, either because he had himself changed of late, or that he was in too close proximity to the prince, that week seemed fearfully wearisome to him. The whole of that week he experienced a sensation such as a man might have set in charge of a dangerous madman, afraid of the madman, and at the same time, from being with him, fearing for his own reason. Vronsky was continually conscious of the necessity of never for a second relaxing the tone of stern official respectfulness, that he might not himself be insulted. The prince's manner of treating the very people who, to Vronsky's surprise, were ready to descend to any depths to provide him with Russian amusements, was contemptuous. His criticisms of Russian women, whom he wished to study, more than once made Vronsky crimson with indignation. The chief reason why the prince was so particularly disagreeable to Vronsky was that he could not help seeing himself in him. And what he saw in this mirror did not gratify his self-esteem. He was a very stupid and very self-satisfied and very healthy and very well-washed man, and nothing else. He was a gentleman--that was true, and Vronsky could not deny it. He was equable and not cringing with his superiors, was free and ingratiating in his behavior with his equals, and was contemptuously indulgent with his inferiors. Vronsky was himself the same, and regarded it as a great merit to be so. But for this prince he was an inferior, and his contemptuous and indulgent attitude to him revolted him. "Brainless beef! can I be like that?" he thought. Be that as it might, when, on the seventh day, he parted from the prince, who was starting for Moscow, and received his thanks, he was happy to be rid of his uncomfortable position and the unpleasant reflection of himself. He said good-bye to him at the station on their return from a bear hunt, at which they had had a display of Russian prowess kept up all night. Chapter 2 When he got home, Vronsky found there a note from Anna. She wrote, "I am ill and unhappy. I cannot come out, but I cannot go on longer without seeing you. Come in this evening. Alexey Alexandrovitch goes to the council at seven and will be there till ten." Thinking for an instant of the strangeness of her bidding him come straight to her, in spite of her husband's insisting on her not receiving him, he decided to go. Vronsky had that winter got his promotion, was now a colonel, had left the regimental quarters, and was living alone. After having some lunch, he lay down on the sofa immediately, and in five minutes memories of the hideous scenes he had witnessed during the last few days were confused together and joined on to a mental image of Anna and of the peasant who had played an important part in the bear hunt, and Vronsky fell asleep. He waked up in the dark, trembling with horror, and made haste to light a candle. "What was it? What? What was the dreadful thing I dreamed? Yes, yes; I think a little dirty man with a disheveled beard was stooping down doing something, and all of a sudden he began saying some strange words in French. Yes, there was nothing else in the dream," he said to himself. "But why was it so awful?" He vividly recalled the peasant again and those incomprehensible French words the peasant had uttered, and a chill of horror ran down his spine. "What nonsense!" thought Vronsky, and glanced at his watch. It was half-past eight already. He rang up his servant, dressed in haste, and went out onto the steps, completely forgetting the dream and only worried at being late. As he drove up to the Karenins' entrance he looked at his watch and saw it was ten minutes to nine. A high, narrow carriage with a pair of grays was standing at the entrance. He recognized Anna's carriage. "She is coming to me," thought Vronsky, "and better she should. I don't like going into that house. But no matter; I can't hide myself," he thought, and with that manner peculiar to him from childhood, as of a man who has nothing to be ashamed of, Vronsky got out of his sledge and went to the door. The door opened, and the hall porter with a rug on his arm called the carriage. Vronsky, though he did not usually notice details, noticed at this moment the amazed expression with which the porter glanced at him. In the very doorway Vronsky almost ran up against Alexey Alexandrovitch. The gas jet threw its full light on the bloodless, sunken face under the black hat and on the white cravat, brilliant against the beaver of the coat. Karenin's fixed, dull eyes were fastened upon Vronsky's face. Vronsky bowed, and Alexey Alexandrovitch, chewing his lips, lifted his hand to his hat and went on. Vronsky saw him without looking round get into the carriage, pick up the rug and the opera-glass at the window and disappear. Vronsky went into the hall. His brows were scowling, and his eyes gleamed with a proud and angry light in them. "What a position!" he thought. "If he would fight, would stand up for his honor, I could act, could express my feelings; but this weakness or baseness.... He puts me in the position of playing false, which I never meant and never mean to do." Vronsky's ideas had changed since the day of his conversation with Anna in the Vrede garden. Unconsciously yielding to the weakness of Anna--who had surrendered herself up to him utterly, and simply looked to him to decide her fate, ready to submit to anything--he had long ceased to think that their tie might end as he had thought then. His ambitious plans had retreated into the background again, and feeling that he had got out of that circle of activity in which everything was definite, he had given himself entirely to his passion, and that passion was binding him more and more closely to her. He was still in the hall when he caught the sound of her retreating footsteps. He knew she had been expecting him, had listened for him, and was now going back to the drawing room. "No," she cried, on seeing him, and at the first sound of her voice the tears came into her eyes. "No; if things are to go on like this, the end will come much, much too soon." "What is it, dear one?" "What? I've been waiting in agony for an hour, two hours ... No, I won't ... I can't quarrel with you. Of course you couldn't come. No, I won't." She laid her two hands on his shoulders, and looked a long while at him with a profound, passionate, and at the same time searching look. She was studying his face to make up for the time she had not seen him. She was, every time she saw him, making the picture of him in her imagination (incomparably superior, impossible in reality) fit with him as he really was. Chapter 3 "You met him?" she asked, when they had sat down at the table in the lamplight. "You're punished, you see, for being late." "Yes; but how was it? Wasn't he to be at the council?" "He had been and come back, and was going out somewhere again. But that's no matter. Don't talk about it. Where have you been? With the prince still?" She knew every detail of his existence. He was going to say that he had been up all night and had dropped asleep, but looking at her thrilled and rapturous face, he was ashamed. And he said he had had to go to report on the prince's departure. "But it's over now? He is gone?" "Thank God it's over! You wouldn't believe how insufferable it's been for me." "Why so? Isn't it the life all of you, all young men, always lead?" she said, knitting her brows; and taking up the crochet work that was lying on the table, she began drawing the hook out of it, without looking at Vronsky. "I gave that life up long ago," said he, wondering at the change in her face, and trying to divine its meaning. "And I confess," he said, with a smile, showing his thick, white teeth, "this week I've been, as it were, looking at myself in a glass, seeing that life, and I didn't like it." She held the work in her hands, but did not crochet, and looked at him with strange, shining, and hostile eyes. "This morning Liza came to see me--they're not afraid to call on me, in spite of the Countess Lidia Ivanovna," she put in--"and she told me about your Athenian evening. How loathsome!" "I was just going to say..." She interrupted him. "It was that Therese you used to know?" "I was just saying..." "How disgusting you are, you men! How is it you can't understand that a woman can never forget that," she said, getting more and more angry, and so letting him see the cause of her irritation, "especially a woman who cannot know your life? What do I know? What have I ever known?" she said, "what you tell me. And how do I know whether you tell me the truth?..." "Anna, you hurt me. Don't you trust me? Haven't I told you that I haven't a thought I wouldn't lay bare to you?" "Yes, yes," she said, evidently trying to suppress her jealous thoughts. "But if only you knew how wretched I am! I believe you, I believe you.... What were you saying?" But he could not at once recall what he had been going to say. These fits of jealousy, which of late had been more and more frequent with her, horrified him, and however much he tried to disguise the fact, made him feel cold to her, although he knew the cause of her jealousy was her love for him. How often he had told himself that her love was happiness; and now she loved him as a woman can love when love has outweighed for her all the good things of life--and he was much further from happiness than when he had followed her from Moscow. Then he had thought himself unhappy, but happiness was before him; now he felt that the best happiness was already left behind. She was utterly unlike what she had been when he first saw her. Both morally and physically she had changed for the worse. She had broadened out all over, and in her face at the time when she was speaking of the actress there was an evil expression of hatred that distorted it. He looked at her as a man looks at a faded flower he has gathered, with difficulty recognizing in it the beauty for which he picked and ruined it. And in spite of this he felt that then, when his love was stronger, he could, if he had greatly wished it, have torn that love out of his heart; but now, when as at that moment it seemed to him he felt no love for her, he knew that what bound him to her could not be broken. "Well, well, what was it you were going to say about the prince? I have driven away the fiend," she added. The fiend was the name they had given her jealousy. "What did you begin to tell me about the prince? Why did you find it so tiresome?" "Oh, it was intolerable!" he said, trying to pick up the thread of his interrupted thought. "He does not improve on closer acquaintance. If you want him defined, here he is: a prime, well-fed beast such as takes medals at the cattle shows, and nothing more," he said, with a tone of vexation that interested her. "No; how so?" she replied. "He's seen a great deal, anyway; he's cultured?" "It's an utterly different culture--their culture. He's cultivated, one sees, simply to be able to despise culture, as they despise everything but animal pleasures." "But don't you all care for these animal pleasures?" she said, and again he noticed a dark look in her eyes that avoided him. "How is it you're defending him?" he said, smiling. "I'm not defending him, it's nothing to me; but I imagine, if you had not cared for those pleasures yourself, you might have got out of them. But if it affords you satisfaction to gaze at Therese in the attire of Eve..." "Again, the devil again," Vronsky said, taking the hand she had laid on the table and kissing it. "Yes; but I can't help it. You don't know what I have suffered waiting for you. I believe I'm not jealous. I'm not jealous: I believe you when you're here; but when you're away somewhere leading your life, so incomprehensible to me..." She turned away from him, pulled the hook at last out of the crochet work, and rapidly, with the help of her forefinger, began working loop after loop of the wool that was dazzling white in the lamplight, while the slender wrist moved swiftly, nervously in the embroidered cuff. "How was it, then? Where did you meet Alexey Alexandrovitch?" Her voice sounded in an unnatural and jarring tone. "We ran up against each other in the doorway." "And he bowed to you like this?" She drew a long face, and half-closing her eyes, quickly transformed her expression, folded her hands, and Vronsky suddenly saw in her beautiful face the very expression with which Alexey Alexandrovitch had bowed to him. He smiled, while she laughed gaily, with that sweet, deep laugh, which was one of her greatest charms. "I don't understand him in the least," said Vronsky. "If after your avowal to him at your country house he had broken with you, if he had called me out--but this I can't understand. How can he put up with such a position? He feels it, that's evident." "He?" she said sneeringly. "He's perfectly satisfied." "What are we all miserable for, when everything might be so happy?" "Only not he. Don't I know him, the falsity in which he's utterly steeped?... Could one, with any feeling, live as he is living with me? He understands nothing, and feels nothing. Could a man of any feeling live in the same house with his unfaithful wife? Could he talk to her, call her 'my dear'?" And again she could not help mimicking him: "'Anna, _ma chere_; Anna, dear'!" "He's not a man, not a human being--he's a doll! No one knows him; but I know him. Oh, if I'd been in his place, I'd long ago have killed, have torn to pieces a wife like me. I wouldn't have said, 'Anna, _ma chere_'! He's not a man, he's an official machine. He doesn't understand that I'm your wife, that he's outside, that he's superfluous.... Don't let's talk of him!..." "You're unfair, very unfair, dearest," said Vronsky, trying to soothe her. "But never mind, don't let's talk of him. Tell me what you've been doing? What is the matter? What has been wrong with you, and what did the doctor say?" She looked at him with mocking amusement. Evidently she had hit on other absurd and grotesque aspects in her husband and was awaiting the moment to give expression to them. But he went on: "I imagine that it's not illness, but your condition. When will it be?" The ironical light died away in her eyes, but a different smile, a consciousness of something, he did not know what, and of quiet melancholy, came over her face. "Soon, soon. You say that our position is miserable, that we must put an end to it. If you knew how terrible it is to me, what I would give to be able to love you freely and boldly! I should not torture myself and torture you with my jealousy.... And it will come soon, but not as we expect." And at the thought of how it would come, she seemed so pitiable to herself that tears came into her eyes, and she could not go on. She laid her hand on his sleeve, dazzling and white with its rings in the lamplight. "It won't come as we suppose. I didn't mean to say this to you, but you've made me. Soon, soon, all will be over, and we shall all, all be at peace, and suffer no more." "I don't understand," he said, understanding her. "You asked when? Soon. And I shan't live through it. Don't interrupt me!" and she made haste to speak. "I know it; I know for certain. I shall die; and I'm very glad I shall die, and release myself and you." Tears dropped from her eyes; he bent down over her hand and began kissing it, trying to hide his emotion, which, he knew, had no sort of grounds, though he could not control it. "Yes, it's better so," she said, tightly gripping his hand. "That's the only way, the only way left us." He had recovered himself, and lifted his head. "How absurd! What absurd nonsense you are talking!" "No, it's the truth." "What, what's the truth?" "That I shall die. I have had a dream." "A dream?" repeated Vronsky, and instantly he recalled the peasant of his dream. "Yes, a dream," she said. "It's a long while since I dreamed it. I dreamed that I ran into my bedroom, that I had to get something there, to find out something; you know how it is in dreams," she said, her eyes wide with horror; "and in the bedroom, in the corner, stood something." "Oh, what nonsense! How can you believe..." But she would not let him interrupt her. What she was saying was too important to her. "And the something turned round, and I saw it was a peasant with a disheveled beard, little, and dreadful looking. I wanted to run away, but he bent down over a sack, and was fumbling there with his hands..." She showed how he had moved his hands. There was terror in her face. And Vronsky, remembering his dream, felt the same terror filling his soul. "He was fumbling and kept talking quickly, quickly in French, you know: _Il faut le battre, le fer, le brayer, le petrir_.... And in my horror I tried to wake up, and woke up ... but woke up in the dream. And I began asking myself what it meant. And Korney said to me: 'In childbirth you'll die, ma'am, you'll die....' And I woke up." "What nonsense, what nonsense!" said Vronsky; but he felt himself that there was no conviction in his voice. "But don't let's talk of it. Ring the bell, I'll have tea. And stay a little now; it's not long I shall..." But all at once she stopped. The expression of her face instantaneously changed. Horror and excitement were suddenly replaced by a look of soft, solemn, blissful attention. He could not comprehend the meaning of the change. She was listening to the stirring of the new life within her. Chapter 4 Alexey Alexandrovitch, after meeting Vronsky on his own steps, drove, as he had intended, to the Italian opera. He sat through two acts there, and saw everyone he had wanted to see. On returning home, he carefully scrutinized the hat stand, and noticing that there was not a military overcoat there, he went, as usual, to his own room. But, contrary to his usual habit, he did not go to bed, he walked up and down his study till three o'clock in the morning. The feeling of furious anger with his wife, who would not observe the proprieties and keep to the one stipulation he had laid on her, not to receive her lover in her own home, gave him no peace. She had not complied with his request, and he was bound to punish her and carry out his threat--obtain a divorce and take away his son. He knew all the difficulties connected with this course, but he had said he would do it, and now he must carry out his threat. Countess Lidia Ivanovna had hinted that this was the best way out of his position, and of late the obtaining of divorces had been brought to such perfection that Alexey Alexandrovitch saw a possibility of overcoming the formal difficulties. Misfortunes never come singly, and the affairs of the reorganization of the native tribes, and of the irrigation of the lands of the Zaraisky province, had brought such official worries upon Alexey Alexandrovitch that he had been of late in a continual condition of extreme irritability. He did not sleep the whole night, and his fury, growing in a sort of vast, arithmetical progression, reached its highest limits in the morning. He dressed in haste, and as though carrying his cup full of wrath, and fearing to spill any over, fearing to lose with his wrath the energy necessary for the interview with his wife, he went into her room directly he heard she was up. Anna, who had thought she knew her husband so well, was amazed at his appearance when he went in to her. His brow was lowering, and his eyes stared darkly before him, avoiding her eyes; his mouth was tightly and contemptuously shut. In his walk, in his gestures, in the sound of his voice there was a determination and firmness such as his wife had never seen in him. He went into her room, and without greeting her, walked straight up to her writing-table, and taking her keys, opened a drawer. "What do you want?" she cried. "Your lover's letters," he said. "They're not here," she said, shutting the drawer; but from that action he saw he had guessed right, and roughly pushing away her hand, he quickly snatched a portfolio in which he knew she used to put her most important papers. She tried to pull the portfolio away, but he pushed her back. "Sit down! I have to speak to you," he said, putting the portfolio under his arm, and squeezing it so tightly with his elbow that his shoulder stood up. Amazed and intimidated, she gazed at him in silence. "I told you that I would not allow you to receive your lover in this house." "I had to see him to..." She stopped, not finding a reason. "I do not enter into the details of why a woman wants to see her lover." "I meant, I only..." she said, flushing hotly. This coarseness of his angered her, and gave her courage. "Surely you must feel how easy it is for you to insult me?" she said. "An honest man and an honest woman may be insulted, but to tell a thief he's a thief is simply _la constatation d'un fait_." "This cruelty is something new I did not know in you." "You call it cruelty for a husband to give his wife liberty, giving her the honorable protection of his name, simply on the condition of observing the proprieties: is that cruelty?" "It's worse than cruel--it's base, if you want to know!" Anna cried, in a rush of hatred, and getting up, she was going away. "No!" he shrieked, in his shrill voice, which pitched a note higher than usual even, and his big hands clutching her by the arm so violently that red marks were left from the bracelet he was squeezing, he forcibly sat her down in her place. "Base! If you care to use that word, what is base is to forsake husband and child for a lover, while you eat your husband's bread!" She bowed her head. She did not say what she had said the evening before to her lover, that _he_ was her husband, and her husband was superfluous; she did not even think that. She felt all the justice of his words, and only said softly: "You cannot describe my position as worse than I feel it to be myself; but what are you saying all this for?" "What am I saying it for? what for?" he went on, as angrily. "That you may know that since you have not carried out my wishes in regard to observing outward decorum, I will take measures to put an end to this state of things." "Soon, very soon, it will end, anyway," she said; and again, at the thought of death near at hand and now desired, tears came into her eyes. "It will end sooner than you and your lover have planned! If you must have the satisfaction of animal passion..." "Alexey Alexandrovitch! I won't say it's not generous, but it's not like a gentleman to strike anyone who's down." "Yes, you only think of yourself! But the sufferings of a man who was your husband have no interest for you. You don't care that his whole life is ruined, that he is thuff ... thuff..." Alexey Alexandrovitch was speaking so quickly that he stammered, and was utterly unable to articulate the word "suffering." In the end he pronounced it "thuffering." She wanted to laugh, and was immediately ashamed that anything could amuse her at such a moment. And for the first time, for an instant, she felt for him, put herself in his place, and was sorry for him. But what could she say or do? Her head sank, and she sat silent. He too was silent for some time, and then began speaking in a frigid, less shrill voice, emphasizing random words that had no special significance. "I came to tell you..." he said. She glanced at him. "No, it was my fancy," she thought, recalling the expression of his face when he stumbled over the word "suffering." "No; can a man with those dull eyes, with that self-satisfied complacency, feel anything?" "I cannot change anything," she whispered. "I have come to tell you that I am going tomorrow to Moscow, and shall not return again to this house, and you will receive notice of what I decide through the lawyer into whose hands I shall intrust the task of getting a divorce. My son is going to my sister's," said Alexey Alexandrovitch, with an effort recalling what he had meant to say about his son. "You take Seryozha to hurt me," she said, looking at him from under her brows. "You do not love him.... Leave me Seryozha!" "Yes, I have lost even my affection for my son, because he is associated with the repulsion I feel for you. But still I shall take him. Goodbye!" And he was going away, but now she detained him. "Alexey Alexandrovitch, leave me Seryozha!" she whispered once more. "I have nothing else to say. Leave Seryozha till my ... I shall soon be confined; leave him!" Alexey Alexandrovitch flew into a rage, and, snatching his hand from her, he went out of the room without a word. Chapter 5 The waiting-room of the celebrated Petersburg lawyer was full when Alexey Alexandrovitch entered it. Three ladies--an old lady, a young lady, and a merchant's wife--and three gentlemen--one a German banker with a ring on his finger, the second a merchant with a beard, and the third a wrathful-looking government clerk in official uniform, with a cross on his neck--had obviously been waiting a long while already. Two clerks were writing at tables with scratching pens. The appurtenances of the writing-tables, about which Alexey Alexandrovitch was himself very fastidious, were exceptionally good. He could not help observing this. One of the clerks, without getting up, turned wrathfully to Alexey Alexandrovitch, half closing his eyes. "What are you wanting?" He replied that he had to see the lawyer on some business. "He is engaged," the clerk responded severely, and he pointed with his pen at the persons waiting, and went on writing. "Can't he spare time to see me?" said Alexey Alexandrovitch. "He has no time free; he is always busy. Kindly wait your turn." "Then I must trouble you to give him my card," Alexey Alexandrovitch said with dignity, seeing the impossibility of preserving his incognito. The clerk took the card and, obviously not approving of what he read on it, went to the door. Alexey Alexandrovitch was in principle in favor of the publicity of legal proceedings, though for some higher official considerations he disliked the application of the principle in Russia, and disapproved of it, as far as he could disapprove of anything instituted by authority of the Emperor. His whole life had been spent in administrative work, and consequently, when he did not approve of anything, his disapproval was softened by the recognition of the inevitability of mistakes and the possibility of reform in every department. In the new public law courts he disliked the restrictions laid on the lawyers conducting cases. But till then he had had nothing to do with the law courts, and so had disapproved of their publicity simply in theory; now his disapprobation was strengthened by the unpleasant impression made on him in the lawyer's waiting room. "Coming immediately," said the clerk; and two minutes later there did actually appear in the doorway the large figure of an old solicitor who had been consulting with the lawyer himself. The lawyer was a little, squat, bald man, with a dark, reddish beard, light-colored long eyebrows, and an overhanging brow. He was attired as though for a wedding, from his cravat to his double watch-chain and varnished boots. His face was clever and manly, but his dress was dandified and in bad taste. "Pray walk in," said the lawyer, addressing Alexey Alexandrovitch; and, gloomily ushering Karenin in before him, he closed the door. "Won't you sit down?" He indicated an armchair at a writing table covered with papers. He sat down himself, and, rubbing his little hands with short fingers covered with white hairs, he bent his head on one side. But as soon as he was settled in this position a moth flew over the table. The lawyer, with a swiftness that could never have been expected of him, opened his hands, caught the moth, and resumed his former attitude. "Before beginning to speak of my business," said Alexey Alexandrovitch, following the lawyer's movements with wondering eyes, "I ought to observe that the business about which I have to speak to you is to be strictly private." The lawyer's overhanging reddish mustaches were parted in a scarcely perceptible smile. "I should not be a lawyer if I could not keep the secrets confided to me. But if you would like proof..." Alexey Alexandrovitch glanced at his face, and saw that the shrewd, gray eyes were laughing, and seemed to know all about it already. "You know my name?" Alexey Alexandrovitch resumed. "I know you and the good"--again he caught a moth--"work you are doing, like every Russian," said the lawyer, bowing. Alexey Alexandrovitch sighed, plucking up his courage. But having once made up his mind he went on in his shrill voice, without timidity--or hesitation, accentuating here and there a word. "I have the misfortune," Alexey Alexandrovitch began, "to have been deceived in my married life, and I desire to break off all relations with my wife by legal means--that is, to be divorced, but to do this so that my son may not remain with his mother." The lawyer's gray eyes tried not to laugh, but they were dancing with irrepressible glee, and Alexey Alexandrovitch saw that it was not simply the delight of a man who has just got a profitable job: there was triumph and joy, there was a gleam like the malignant gleam he saw in his wife's eyes. "You desire my assistance in securing a divorce?" "Yes, precisely so; but I ought to warn you that I may be wasting your time and attention. I have come simply to consult you as a preliminary step. I want a divorce, but the form in which it is possible is of great consequence to me. It is very possible that if that form does not correspond with my requirements I may give up a legal divorce." "Oh, that's always the case," said the lawyer, "and that's always for you to decide." He let his eyes rest on Alexey Alexandrovitch's feet, feeling that he might offend his client by the sight of his irrepressible amusement. He looked at a moth that flew before his nose, and moved his hands, but did not catch it from regard for Alexey Alexandrovitch's position. "Though in their general features our laws on this subject are known to me," pursued Alexey Alexandrovitch, "I should be glad to have an idea of the forms in which such things are done in practice." "You would be glad," the lawyer, without lifting his eyes, responded, adopting, with a certain satisfaction, the tone of his client's remarks, "for me to lay before you all the methods by which you could secure what you desire?" And on receiving an assuring nod from Alexey Alexandrovitch, he went on, stealing a glance now and then at Alexey Alexandrovitch's face, which was growing red in patches. "Divorce by our laws," he said, with a slight shade of disapprobation of our laws, "is possible, as you are aware, in the following cases.... Wait a little!" he called to a clerk who put his head in at the door, but he got up all the same, said a few words to him, and sat down again. "... In the following cases: physical defect in the married parties, desertion without communication for five years," he said, crooking a short finger covered with hair, "adultery" (this word he pronounced with obvious satisfaction), "subdivided as follows" (he continued to crook his fat fingers, though the three cases and their subdivisions could obviously not be classified together): "physical defect of the husband or of the wife, adultery of the husband or of the wife." As by now all his fingers were used up, he uncrooked all his fingers and went on: "This is the theoretical view; but I imagine you have done me the honor to apply to me in order to learn its application in practice. And therefore, guided by precedents, I must inform you that in practice cases of divorce may all be reduced to the following--there's no physical defect, I may assume, nor desertion?..." Alexey Alexandrovitch bowed his head in assent. "--May be reduced to the following: adultery of one of the married parties, and the detection in the fact of the guilty party by mutual agreement, and failing such agreement, accidental detection. It must be admitted that the latter case is rarely met with in practice," said the lawyer, and stealing a glance at Alexey Alexandrovitch he paused, as a man selling pistols, after enlarging on the advantages of each weapon, might await his customer's choice. But Alexey Alexandrovitch said nothing, and therefore the lawyer went on: "The most usual and simple, the sensible course, I consider, is adultery by mutual consent. I should not permit myself to express it so, speaking with a man of no education," he said, "but I imagine that to you this is comprehensible." Alexey Alexandrovitch was, however, so perturbed that he did not immediately comprehend all the good sense of adultery by mutual consent, and his eyes expressed this uncertainty; but the lawyer promptly came to his assistance. "People cannot go on living together--here you have a fact. And if both are agreed about it, the details and formalities become a matter of no importance. And at the same time this is the simplest and most certain method." Alexey Alexandrovitch fully understood now. But he had religious scruples, which hindered the execution of such a plan. "That is out of the question in the present case," he said. "Only one alternative is possible: undesigned detection, supported by letters which I have." At the mention of letters the lawyer pursed up his lips, and gave utterance to a thin little compassionate and contemptuous sound. "Kindly consider," he began, "cases of that kind are, as you are aware, under ecclesiastical jurisdiction; the reverend fathers are fond of going into the minutest details in cases of that kind," he said with a smile, which betrayed his sympathy with the reverend fathers' taste. "Letters may, of course, be a partial confirmation; but detection in the fact there must be of the most direct kind, that is, by eyewitnesses. In fact, if you do me the honor to intrust your confidence to me, you will do well to leave me the choice of the measures to be employed. If one wants the result, one must admit the means." "If it is so..." Alexey Alexandrovitch began, suddenly turning white; but at that moment the lawyer rose and again went to the door to speak to the intruding clerk. "Tell her we don't haggle over fees!" he said, and returned to Alexey Alexandrovitch. On his way back he caught unobserved another moth. "Nice state my rep curtains will be in by the summer!" he thought, frowning. "And so you were saying?..." he said. "I will communicate my decision to you by letter," said Alexey Alexandrovitch, getting up, and he clutched at the table. After standing a moment in silence, he said: "From your words I may consequently conclude that a divorce may be obtained? I would ask you to let me know what are your terms." "It may be obtained if you give me complete liberty of action," said the lawyer, not answering his question. "When can I reckon on receiving information from you?" he asked, moving towards the door, his eyes and his varnished boots shining. "In a week's time. Your answer as to whether you will undertake to conduct the case, and on what terms, you will be so good as to communicate to me." "Very good." The lawyer bowed respectfully, let his client out of the door, and, left alone, gave himself up to his sense of amusement. He felt so mirthful that, contrary to his rules, he made a reduction in his terms to the haggling lady, and gave up catching moths, finally deciding that next winter he must have the furniture covered with velvet, like Sigonin's. Chapter 6 Alexey Alexandrovitch had gained a brilliant victory at the sitting of the Commission of the 17th of August, but in the sequel this victory cut the ground from under his feet. The new commission for the inquiry into the condition of the native tribes in all its branches had been formed and despatched to its destination with an unusual speed and energy inspired by Alexey Alexandrovitch. Within three months a report was presented. The condition of the native tribes was investigated in its political, administrative, economic, ethnographic, material, and religious aspects. To all these questions there were answers admirably stated, and answers admitting no shade of doubt, since they were not a product of human thought, always liable to error, but were all the product of official activity. The answers were all based on official data furnished by governors and heads of churches, and founded on the reports of district magistrates and ecclesiastical superintendents, founded in their turn on the reports of parochial overseers and parish priests; and so all of these answers were unhesitating and certain. All such questions as, for instance, of the cause of failure of crops, of the adherence of certain tribes to their ancient beliefs, etc.--questions which, but for the convenient intervention of the official machine, are not, and cannot be solved for ages--received full, unhesitating solution. And this solution was in favor of Alexey Alexandrovitch's contention. But Stremov, who had felt stung to the quick at the last sitting, had, on the reception of the commission's report, resorted to tactics which Alexey Alexandrovitch had not anticipated. Stremov, carrying with him several members, went over to Alexey Alexandrovitch's side, and not contenting himself with warmly defending the measure proposed by Karenin, proposed other more extreme measures in the same direction. These measures, still further exaggerated in opposition to what was Alexey Alexandrovitch's fundamental idea, were passed by the commission, and then the aim of Stremov's tactics became apparent. Carried to an extreme, the measures seemed at once to be so absurd that the highest authorities, and public opinion, and intellectual ladies, and the newspapers, all at the same time fell foul of them, expressing their indignation both with the measures and their nominal father, Alexey Alexandrovitch. Stremov drew back, affecting to have blindly followed Karenin, and to be astounded and distressed at what had been done. This meant the defeat of Alexey Alexandrovitch. But in spite of failing health, in spite of his domestic griefs, he did not give in. There was a split in the commission. Some members, with Stremov at their head, justified their mistake on the ground that they had put faith in the commission of revision, instituted by Alexey Alexandrovitch, and maintained that the report of the commission was rubbish, and simply so much waste paper. Alexey Alexandrovitch, with a following of those who saw the danger of so revolutionary an attitude to official documents, persisted in upholding the statements obtained by the revising commission. In consequence of this, in the higher spheres, and even in society, all was chaos, and although everyone was interested, no one could tell whether the native tribes really were becoming impoverished and ruined, or whether they were in a flourishing condition. The position of Alexey Alexandrovitch, owing to this, and partly owing to the contempt lavished on him for his wife's infidelity, became very precarious. And in this position he took an important resolution. To the astonishment of the commission, he announced that he should ask permission to go himself to investigate the question on the spot. And having obtained permission, Alexey Alexandrovitch prepared to set off to these remote provinces. Alexey Alexandrovitch's departure made a great sensation, the more so as just before he started he officially returned the posting-fares allowed him for twelve horses, to drive to his destination. "I think it very noble," Betsy said about this to the Princess Myakaya. "Why take money for posting-horses when everyone knows that there are railways everywhere now?" But Princess Myakaya did not agree, and the Princess Tverskaya's opinion annoyed her indeed. "It's all very well for you to talk," said she, "when you have I don't know how many millions; but I am very glad when my husband goes on a revising tour in the summer. It's very good for him and pleasant traveling about, and it's a settled arrangement for me to keep a carriage and coachman on the money." On his way to the remote provinces Alexey Alexandrovitch stopped for three days at Moscow. The day after his arrival he was driving back from calling on the governor-general. At the crossroads by Gazetoy Place, where there are always crowds of carriages and sledges, Alexey Alexandrovitch suddenly heard his name called out in such a loud and cheerful voice that he could not help looking round. At the corner of the pavement, in a short, stylish overcoat and a low-crowned fashionable hat, jauntily askew, with a smile that showed a gleam of white teeth and red lips, stood Stepan Arkadyevitch, radiant, young, and beaming. He called him vigorously and urgently, and insisted on his stopping. He had one arm on the window of a carriage that was stopping at the corner, and out of the window were thrust the heads of a lady in a velvet hat, and two children. Stepan Arkadyevitch was smiling and beckoning to his brother-in-law. The lady smiled a kindly smile too, and she too waved her hand to Alexey Alexandrovitch. It was Dolly with her children. Alexey Alexandrovitch did not want to see anyone in Moscow, and least of all his wife's brother. He raised his hat and would have driven on, but Stepan Arkadyevitch told his coachman to stop, and ran across the snow to him. "Well, what a shame not to have let us know! Been here long? I was at Dussot's yesterday and saw 'Karenin' on the visitors' list, but it never entered my head that it was you," said Stepan Arkadyevitch, sticking his head in at the window of the carriage, "or I should have looked you up. I am glad to see you!" he said, knocking one foot against the other to shake the snow off. "What a shame of you not to let us know!" he repeated. "I had no time; I am very busy," Alexey Alexandrovitch responded dryly. "Come to my wife, she does so want to see you." Alexey Alexandrovitch unfolded the rug in which his frozen feet were wrapped, and getting out of his carriage made his way over the snow to Darya Alexandrovna. "Why, Alexey Alexandrovitch, what are you cutting us like this for?" said Dolly, smiling. "I was very busy. Delighted to see you!" he said in a tone clearly indicating that he was annoyed by it. "How are you?" "Tell me, how is my darling Anna?" Alexey Alexandrovitch mumbled something and would have gone on. But Stepan Arkadyevitch stopped him. "I tell you what we'll do tomorrow. Dolly, ask him to dinner. We'll ask Koznishev and Pestsov, so as to entertain him with our Moscow celebrities." "Yes, please, do come," said Dolly; "we will expect you at five, or six o'clock, if you like. How is my darling Anna? How long..." "She is quite well," Alexey Alexandrovitch mumbled, frowning. "Delighted!" and he moved away towards his carriage. "You will come?" Dolly called after him. Alexey Alexandrovitch said something which Dolly could not catch in the noise of the moving carriages. "I shall come round tomorrow!" Stepan Arkadyevitch shouted to him. Alexey Alexandrovitch got into his carriage, and buried himself in it so as neither to see nor be seen. "Queer fish!" said Stepan Arkadyevitch to his wife, and glancing at his watch, he made a motion of his hand before his face, indicating a caress to his wife and children, and walked jauntily along the pavement. "Stiva! Stiva!" Dolly called, reddening. He turned round. "I must get coats, you know, for Grisha and Tanya. Give me the money." "Never mind; you tell them I'll pay the bill!" and he vanished, nodding genially to an acquaintance who drove by. Chapter 7 The next day was Sunday. Stepan Arkadyevitch went to the Grand Theater to a rehearsal of the ballet, and gave Masha Tchibisova, a pretty dancing-girl whom he had just taken under his protection, the coral necklace he had promised her the evening before, and behind the scenes in the dim daylight of the theater, managed to kiss her pretty little face, radiant over her present. Besides the gift of the necklace he wanted to arrange with her about meeting after the ballet. After explaining that he could not come at the beginning of the ballet, he promised he would come for the last act and take her to supper. From the theater Stepan Arkadyevitch drove to Ohotny Row, selected himself the fish and asparagus for dinner, and by twelve o'clock was at Dussot's, where he had to see three people, luckily all staying at the same hotel: Levin, who had recently come back from abroad and was staying there; the new head of his department, who had just been promoted to that position, and had come on a tour of revision to Moscow; and his brother-in-law, Karenin, whom he must see, so as to be sure of bringing him to dinner. Stepan Arkadyevitch liked dining, but still better he liked to give a dinner, small, but very choice, both as regards the food and drink and as regards the selection of guests. He particularly liked the program of that day's dinner. There would be fresh perch, asparagus, and _la piece de resistance_--first-rate, but quite plain, roast beef, and wines to suit: so much for the eating and drinking. Kitty and Levin would be of the party, and that this might not be obtrusively evident, there would be a girl cousin too, and young Shtcherbatsky, and _la piece de resistance_ among the guests--Sergey Koznishev and Alexey Alexandrovitch. Sergey Ivanovitch was a Moscow man, and a philosopher; Alexey Alexandrovitch a Petersburger, and a practical politician. He was asking, too, the well-known eccentric enthusiast, Pestsov, a liberal, a great talker, a musician, an historian, and the most delightfully youthful person of fifty, who would be a sauce or garnish for Koznishev and Karenin. He would provoke them and set them off. The second installment for the forest had been received from the merchant and was not yet exhausted; Dolly had been very amiable and goodhumored of late, and the idea of the dinner pleased Stepan Arkadyevitch from every point of view. He was in the most light-hearted mood. There were two circumstances a little unpleasant, but these two circumstances were drowned in the sea of good-humored gaiety which flooded the soul of Stepan Arkadyevitch. These two circumstances were: first, that on meeting Alexey Alexandrovitch the day before in the street he had noticed that he was cold and reserved with him, and putting the expression of Alexey Alexandrovitch's face and the fact that he had not come to see them or let them know of his arrival with the rumors he had heard about Anna and Vronsky, Stepan Arkadyevitch guessed that something was wrong between the husband and wife. That was one disagreeable thing. The other slightly disagreeable fact was that the new head of his department, like all new heads, had the reputation already of a terrible person, who got up at six o'clock in the morning, worked like a horse, and insisted on his subordinates working in the same way. Moreover, this new head had the further reputation of being a bear in his manners, and was, according to all reports, a man of a class in all respects the opposite of that to which his predecessor had belonged, and to which Stepan Arkadyevitch had hitherto belonged himself. On the previous day Stepan Arkadyevitch had appeared at the office in a uniform, and the new chief had been very affable and had talked to him as to an acquaintance. Consequently Stepan Arkadyevitch deemed it his duty to call upon him in his non-official dress. The thought that the new chief might not tender him a warm reception was the other unpleasant thing. But Stepan Arkadyevitch instinctively felt that everything would _come round_ all right. "They're all people, all men, like us poor sinners; why be nasty and quarrelsome?" he thought as he went into the hotel. "Good-day, Vassily," he said, walking into the corridor with his hat cocked on one side, and addressing a footman he knew; "why, you've let your whiskers grow! Levin, number seven, eh? Take me up, please. And find out whether Count Anitchkin" (this was the new head) "is receiving." "Yes, sir," Vassily responded, smiling. "You've not been to see us for a long while." "I was here yesterday, but at the other entrance. Is this number seven?" Levin was standing with a peasant from Tver in the middle of the room, measuring a fresh bearskin, when Stepan Arkadyevitch went in. "What! you killed him?" cried Stepan Arkadyevitch. "Well done! A she-bear? How are you, Arhip!" He shook hands with the peasant and sat down on the edge of a chair, without taking off his coat and hat. "Come, take off your coat and stay a little," said Levin, taking his hat. "No, I haven't time; I've only looked in for a tiny second," answered Stepan Arkadyevitch. He threw open his coat, but afterwards did take it off, and sat on for a whole hour, talking to Levin about hunting and the most intimate subjects. "Come, tell me, please, what you did abroad? Where have you been?" said Stepan Arkadyevitch, when the peasant had gone. "Oh, I stayed in Germany, in Prussia, in France, and in England--not in the capitals, but in the manufacturing towns, and saw a great deal that was new to me. And I'm glad I went." "Yes, I knew your idea of the solution of the labor question." "Not a bit: in Russia there can be no labor question. In Russia the question is that of the relation of the working people to the land; though the question exists there too--but there it's a matter of repairing what's been ruined, while with us..." Stepan Arkadyevitch listened attentively to Levin. "Yes, yes!" he said, "it's very possible you're right. But I'm glad you're in good spirits, and are hunting bears, and working, and interested. Shtcherbatsky told me another story--he met you--that you were in such a depressed state, talking of nothing but death...." "Well, what of it? I've not given up thinking of death," said Levin. "It's true that it's high time I was dead; and that all this is nonsense. It's the truth I'm telling you. I do value my idea and my work awfully; but in reality only consider this: all this world of ours is nothing but a speck of mildew, which has grown up on a tiny planet. And for us to suppose we can have something great--ideas, work--it's all dust and ashes." "But all that's as old as the hills, my boy!" "It is old; but do you know, when you grasp this fully, then somehow everything becomes of no consequence. When you understand that you will die tomorrow, if not today, and nothing will be left, then everything is so unimportant! And I consider my idea very important, but it turns out really to be as unimportant too, even if it were carried out, as doing for that bear. So one goes on living, amusing oneself with hunting, with work--anything so as not to think of death!" Stepan Arkadyevitch smiled a subtle affectionate smile as he listened to Levin. "Well, of course! Here you've come round to my point. Do you remember you attacked me for seeking enjoyment in life? Don't be so severe, O moralist!" "No; all the same, what's fine in life is..." Levin hesitated--"oh, I don't know. All I know is that we shall soon be dead." "Why so soon?" "And do you know, there's less charm in life, when one thinks of death, but there's more peace." "On the contrary, the finish is always the best. But I must be going," said Stepan Arkadyevitch, getting up for the tenth time. "Oh, no, stay a bit!" said Levin, keeping him. "Now, when shall we see each other again? I'm going tomorrow." "I'm a nice person! Why, that's just what I came for! You simply must come to dinner with us today. Your brother's coming, and Karenin, my brother-in-law." "You don't mean to say he's here?" said Levin, and he wanted to inquire about Kitty. He had heard at the beginning of the winter that she was at Petersburg with her sister, the wife of the diplomat, and he did not know whether she had come back or not; but he changed his mind and did not ask. "Whether she's coming or not, I don't care," he said to himself. "So you'll come?" "Of course." "At five o'clock, then, and not evening dress." And Stepan Arkadyevitch got up and went down below to the new head of his department. Instinct had not misled Stepan Arkadyevitch. The terrible new head turned out to be an extremely amenable person, and Stepan Arkadyevitch lunched with him and stayed on, so that it was four o'clock before he got to Alexey Alexandrovitch. Chapter 8 Alexey Alexandrovitch, on coming back from church service, had spent the whole morning indoors. He had two pieces of business before him that morning; first, to receive and send on a deputation from the native tribes which was on its way to Petersburg, and now at Moscow; secondly, to write the promised letter to the lawyer. The deputation, though it had been summoned at Alexey Alexandrovitch's instigation, was not without its discomforting and even dangerous aspect, and he was glad he had found it in Moscow. The members of this deputation had not the slightest conception of their duty and the part they were to play. They naively believed that it was their business to lay before the commission their needs and the actual condition of things, and to ask assistance of the government, and utterly failed to grasp that some of their statements and requests supported the contention of the enemy's side, and so spoiled the whole business. Alexey Alexandrovitch was busily engaged with them for a long while, drew up a program for them from which they were not to depart, and on dismissing them wrote a letter to Petersburg for the guidance of the deputation. He had his chief support in this affair in the Countess Lidia Ivanovna. She was a specialist in the matter of deputations, and no one knew better than she how to manage them, and put them in the way they should go. Having completed this task, Alexey Alexandrovitch wrote the letter to the lawyer. Without the slightest hesitation he gave him permission to act as he might judge best. In the letter he enclosed three of Vronsky's notes to Anna, which were in the portfolio he had taken away. Since Alexey Alexandrovitch had left home with the intention of not returning to his family again, and since he had been at the lawyer's and had spoken, though only to one man, of his intention, since especially he had translated the matter from the world of real life to the world of ink and paper, he had grown more and more used to his own intention, and by now distinctly perceived the feasibility of its execution. He was sealing the envelope to the lawyer, when he heard the loud tones of Stepan Arkadyevitch's voice. Stepan Arkadyevitch was disputing with Alexey Alexandrovitch's servant, and insisting on being announced. "No matter," thought Alexey Alexandrovitch, "so much the better. I will inform him at once of my position in regard to his sister, and explain why it is I can't dine with him." "Come in!" he said aloud, collecting his papers, and putting them in the blotting-paper. "There, you see, you're talking nonsense, and he's at home!" responded Stepan Arkadyevitch's voice, addressing the servant, who had refused to let him in, and taking off his coat as he went, Oblonsky walked into the room. "Well, I'm awfully glad I've found you! So I hope..." Stepan Arkadyevitch began cheerfully. "I cannot come," Alexey Alexandrovitch said coldly, standing and not asking his visitor to sit down. Alexey Alexandrovitch had thought to pass at once into those frigid relations in which he ought to stand with the brother of a wife against whom he was beginning a suit for divorce. But he had not taken into account the ocean of kindliness brimming over in the heart of Stepan Arkadyevitch. Stepan Arkadyevitch opened wide his clear, shining eyes. "Why can't you? What do you mean?" he asked in perplexity, speaking in French. "Oh, but it's a promise. And we're all counting on you." "I want to tell you that I can't dine at your house, because the terms of relationship which have existed between us must cease." "How? How do you mean? What for?" said Stepan Arkadyevitch with a smile. "Because I am beginning an action for divorce against your sister, my wife. I ought to have..." But, before Alexey Alexandrovitch had time to finish his sentence, Stepan Arkadyevitch was behaving not at all as he had expected. He groaned and sank into an armchair. "No, Alexey Alexandrovitch! What are you saying?" cried Oblonsky, and his suffering was apparent in his face. "It is so." "Excuse me, I can't, I can't believe it!" Alexey Alexandrovitch sat down, feeling that his words had not had the effect he anticipated, and that it would be unavoidable for him to explain his position, and that, whatever explanations he might make, his relations with his brother-in-law would remain unchanged. "Yes, I am brought to the painful necessity of seeking a divorce," he said. "I will say one thing, Alexey Alexandrovitch. I know you for an excellent, upright man; I know Anna--excuse me, I can't change my opinion of her--for a good, an excellent woman; and so, excuse me, I cannot believe it. There is some misunderstanding," said he. "Oh, if it were merely a misunderstanding!..." "Pardon, I understand," interposed Stepan Arkadyevitch. "But of course.... One thing: you must not act in haste. You must not, you must not act in haste!" "I am not acting in haste," Alexey Alexandrovitch said coldly, "but one cannot ask advice of anyone in such a matter. I have quite made up my mind." "This is awful!" said Stepan Arkadyevitch. "I would do one thing, Alexey Alexandrovitch. I beseech you, do it!" he said. "No action has yet been taken, if I understand rightly. Before you take advice, see my wife, talk to her. She loves Anna like a sister, she loves you, and she's a wonderful woman. For God's sake, talk to her! Do me that favor, I beseech you!" Alexey Alexandrovitch pondered, and Stepan Arkadyevitch looked at him sympathetically, without interrupting his silence. "You will go to see her?" "I don't know. That was just why I have not been to see you. I imagine our relations must change." "Why so? I don't see that. Allow me to believe that apart from our connection you have for me, at least in part, the same friendly feeling I have always had for you ... and sincere esteem," said Stepan Arkadyevitch, pressing his hand. "Even if your worst suppositions were correct, I don't--and never would--take on myself to judge either side, and I see no reason why our relations should be affected. But now, do this, come and see my wife." "Well, we look at the matter differently," said Alexey Alexandrovitch coldly. "However, we won't discuss it." "No; why shouldn't you come today to dine, anyway? My wife's expecting you. Please, do come. And, above all, talk it over with her. She's a wonderful woman. For God's sake, on my knees, I implore you!" "If you so much wish it, I will come," said Alexey Alexandrovitch, sighing. And, anxious to change the conversation, he inquired about what interested them both--the new head of Stepan Arkadyevitch's department, a man not yet old, who had suddenly been promoted to so high a position. Alexey Alexandrovitch had previously felt no liking for Count Anitchkin, and had always differed from him in his opinions. But now, from a feeling readily comprehensible to officials--that hatred felt by one who has suffered a defeat in the service for one who has received a promotion, he could not endure him. "Well, have you seen him?" said Alexey Alexandrovitch with a malignant smile. "Of course; he was at our sitting yesterday. He seems to know his work capitally, and to be very energetic." "Yes, but what is his energy directed to?" said Alexey Alexandrovitch. "Is he aiming at doing anything, or simply undoing what's been done? It's the great misfortune of our government--this paper administration, of which he's a worthy representative." "Really, I don't know what fault one could find with him. His policy I don't know, but one thing--he's a very nice fellow," answered Stepan Arkadyevitch. "I've just been seeing him, and he's really a capital fellow. We lunched together, and I taught him how to make, you know that drink, wine and oranges. It's so cooling. And it's a wonder he didn't know it. He liked it awfully. No, really he's a capital fellow." Stepan Arkadyevitch glanced at his watch. "Why, good heavens, it's four already, and I've still to go to Dolgovushin's! So please come round to dinner. You can't imagine how you will grieve my wife and me." The way in which Alexey Alexandrovitch saw his brother-in-law out was very different from the manner in which he had met him. "I've promised, and I'll come," he answered wearily. "Believe me, I appreciate it, and I hope you won't regret it," answered Stepan Arkadyevitch, smiling. And, putting on his coat as he went, he patted the footman on the head, chuckled, and went out. "At five o'clock, and not evening dress, please," he shouted once more, turning at the door. Chapter 9 It was past five, and several guests had already arrived, before the host himself got home. He went in together with Sergey Ivanovitch Koznishev and Pestsov, who had reached the street door at the same moment. These were the two leading representatives of the Moscow intellectuals, as Oblonsky had called them. Both were men respected for their character and their intelligence. They respected each other, but were in complete and hopeless disagreement upon almost every subject, not because they belonged to opposite parties, but precisely because they were of the same party (their enemies refused to see any distinction between their views); but, in that party, each had his own special shade of opinion. And since no difference is less easily overcome than the difference of opinion about semi-abstract questions, they never agreed in any opinion, and had long, indeed, been accustomed to jeer without anger, each at the other's incorrigible aberrations. They were just going in at the door, talking of the weather, when Stepan Arkadyevitch overtook them. In the drawing room there were already sitting Prince Alexander Dmitrievitch Shtcherbatsky, young Shtcherbatsky, Turovtsin, Kitty, and Karenin. Stepan Arkadyevitch saw immediately that things were not going well in the drawing-room without him. Darya Alexandrovna, in her best gray silk gown, obviously worried about the children, who were to have their dinner by themselves in the nursery, and by her husband's absence, was not equal to the task of making the party mix without him. All were sitting like so many priests' wives on a visit (so the old prince expressed it), obviously wondering why they were there, and pumping up remarks simply to avoid being silent. Turovtsin--good, simple man--felt unmistakably a fish out of water, and the smile with which his thick lips greeted Stepan Arkadyevitch said, as plainly as words: "Well, old boy, you have popped me down in a learned set! A drinking party now, or the _Chateau des Fleurs_, would be more in my line!" The old prince sat in silence, his bright little eyes watching Karenin from one side, and Stepan Arkadyevitch saw that he had already formed a phrase to sum up that politician of whom guests were invited to partake as though he were a sturgeon. Kitty was looking at the door, calling up all her energies to keep her from blushing at the entrance of Konstantin Levin. Young Shtcherbatsky, who had not been introduced to Karenin, was trying to look as though he were not in the least conscious of it. Karenin himself had followed the Petersburg fashion for a dinner with ladies and was wearing evening dress and a white tie. Stepan Arkadyevitch saw by his face that he had come simply to keep his promise, and was performing a disagreeable duty in being present at this gathering. He was indeed the person chiefly responsible for the chill benumbing all the guests before Stepan Arkadyevitch came in. On entering the drawing room Stepan Arkadyevitch apologized, explaining that he had been detained by that prince, who was always the scapegoat for all his absences and unpunctualities, and in one moment he had made all the guests acquainted with each other, and, bringing together Alexey Alexandrovitch and Sergey Koznishev, started them on a discussion of the Russification of Poland, into which they immediately plunged with Pestsov. Slapping Turovtsin on the shoulder, he whispered something comic in his ear, and set him down by his wife and the old prince. Then he told Kitty she was looking very pretty that evening, and presented Shtcherbatsky to Karenin. In a moment he had so kneaded together the social dough that the drawing room became very lively, and there was a merry buzz of voices. Konstantin Levin was the only person who had not arrived. But this was so much the better, as going into the dining room, Stepan Arkadyevitch found to his horror that the port and sherry had been procured from Depre, and not from Levy, and, directing that the coachman should be sent off as speedily as possible to Levy's, he was going back to the drawing room. In the dining room he was met by Konstantin Levin. "I'm not late?" "You can never help being late!" said Stepan Arkadyevitch, taking his arm. "Have you a lot of people? Who's here?" asked Levin, unable to help blushing, as he knocked the snow off his cap with his glove. "All our own set. Kitty's here. Come along, I'll introduce you to Karenin." Stepan Arkadyevitch, for all his liberal views, was well aware that to meet Karenin was sure to be felt a flattering distinction, and so treated his best friends to this honor. But at that instant Konstantin Levin was not in a condition to feel all the gratification of making such an acquaintance. He had not seen Kitty since that memorable evening when he met Vronsky, not counting, that is, the moment when he had had a glimpse of her on the highroad. He had known at the bottom of his heart that he would see her here today. But to keep his thoughts free, he had tried to persuade himself that he did not know it. Now when he heard that she was here, he was suddenly conscious of such delight, and at the same time of such dread, that his breath failed him and he could not utter what he wanted to say. "What is she like, what is she like? Like what she used to be, or like what she was in the carriage? What if Darya Alexandrovna told the truth? Why shouldn't it be the truth?" he thought. "Oh, please, introduce me to Karenin," he brought out with an effort, and with a desperately determined step he walked into the drawing room and beheld her. She was not the same as she used to be, nor was she as she had been in the carriage; she was quite different. She was scared, shy, shame-faced, and still more charming from it. She saw him the very instant he walked into the room. She had been expecting him. She was delighted, and so confused at her own delight that there was a moment, the moment when he went up to her sister and glanced again at her, when she, and he, and Dolly, who saw it all, thought she would break down and would begin to cry. She crimsoned, turned white, crimsoned again, and grew faint, waiting with quivering lips for him to come to her. He went up to her, bowed, and held out his hand without speaking. Except for the slight quiver of her lips and the moisture in her eyes that made them brighter, her smile was almost calm as she said: "How long it is since we've seen each other!" and with desperate determination she pressed his hand with her cold hand. "You've not seen me, but I've seen you," said Levin, with a radiant smile of happiness. "I saw you when you were driving from the railway station to Ergushovo." "When?" she asked, wondering. "You were driving to Ergushovo," said Levin, feeling as if he would sob with the rapture that was flooding his heart. "And how dared I associate a thought of anything not innocent with this touching creature? And, yes, I do believe it's true what Darya Alexandrovna told me," he thought. Stepan Arkadyevitch took him by the arm and led him away to Karenin. "Let me introduce you." He mentioned their names. "Very glad to meet you again," said Alexey Alexandrovitch coldly, shaking hands with Levin. "You are acquainted?" Stepan Arkadyevitch asked in surprise. "We spent three hours together in the train," said Levin smiling, "but got out, just as in a masquerade, quite mystified--at least I was." "Nonsense! Come along, please," said Stepan Arkadyevitch, pointing in the direction of the dining room. The men went into the dining-room and went up to a table, laid with six sorts of spirits and as many kinds of cheese, some with little silver spades and some without, caviar, herrings, preserves of various kinds, and plates with slices of French bread. The men stood round the strong-smelling spirits and salt delicacies, and the discussion of the Russification of Poland between Koznishev, Karenin, and Pestsov died down in anticipation of dinner. Sergey Ivanovitch was unequaled in his skill in winding up the most heated and serious argument by some unexpected pinch of Attic salt that changed the disposition of his opponent. He did this now. Alexey Alexandrovitch had been maintaining that the Russification of Poland could only be accomplished as a result of larger measures which ought to be introduced by the Russian government. Pestsov insisted that one country can only absorb another when it is the more densely populated. Koznishev admitted both points, but with limitations. As they were going out of the drawing room to conclude the argument, Koznishev said, smiling: "So, then, for the Russification of our foreign populations there is but one method--to bring up as many children as one can. My brother and I are terribly in fault, I see. You married men, especially you, Stepan Arkadyevitch, are the real patriots: what number have you reached?" he said, smiling genially at their host and holding out a tiny wine glass to him. Everyone laughed, and Stepan Arkadyevitch with particular good humor. "Oh, yes, that's the best method!" he said, munching cheese and filling the wine-glass with a special sort of spirit. The conversation dropped at the jest. "This cheese is not bad. Shall I give you some?" said the master of the house. "Why, have you been going in for gymnastics again?" he asked Levin, pinching his muscle with his left hand. Levin smiled, bent his arm, and under Stepan Arkadyevitch's fingers the muscles swelled up like a sound cheese, hard as a knob of iron, through the fine cloth of the coat. "What biceps! A perfect Samson!" "I imagine great strength is needed for hunting bears," observed Alexey Alexandrovitch, who had the mistiest notions about the chase. He cut off and spread with cheese a wafer of bread fine as a spider-web. Levin smiled. "Not at all. Quite the contrary; a child can kill a bear," he said, with a slight bow moving aside for the ladies, who were approaching the table. "You have killed a bear, I've been told!" said Kitty, trying assiduously to catch with her fork a perverse mushroom that would slip away, and setting the lace quivering over her white arm. "Are there bears on your place?" she added, turning her charming little head to him and smiling. There was apparently nothing extraordinary in what she said, but what unutterable meaning there was for him in every sound, in every turn of her lips, her eyes, her hand as she said it! There was entreaty for forgiveness, and trust in him, and tenderness--soft, timid tenderness--and promise and hope and love for him, which he could not but believe in and which choked him with happiness. "No, we've been hunting in the Tver province. It was coming back from there that I met your _beaufrere_ in the train, or your _beaufrere's_ brother-in-law," he said with a smile. "It was an amusing meeting." And he began telling with droll good-humor how, after not sleeping all night, he had, wearing an old fur-lined, full-skirted coat, got into Alexey Alexandrovitch's compartment. "The conductor, forgetting the proverb, would have chucked me out on account of my attire; but thereupon I began expressing my feelings in elevated language, and ... you, too," he said, addressing Karenin and forgetting his name, "at first would have ejected me on the ground of the old coat, but afterwards you took my part, for which I am extremely grateful." "The rights of passengers generally to choose their seats are too ill-defined," said Alexey Alexandrovitch, rubbing the tips of his fingers on his handkerchief. "I saw you were in uncertainty about me," said Levin, smiling good-naturedly, "but I made haste to plunge into intellectual conversation to smooth over the defects of my attire." Sergey Ivanovitch, while he kept up a conversation with their hostess, had one ear for his brother, and he glanced askance at him. "What is the matter with him today? Why such a conquering hero?" he thought. He did not know that Levin was feeling as though he had grown wings. Levin knew she was listening to his words and that she was glad to listen to him. And this was the only thing that interested him. Not in that room only, but in the whole world, there existed for him only himself, with enormously increased importance and dignity in his own eyes, and she. He felt himself on a pinnacle that made him giddy, and far away down below were all those nice excellent Karenins, Oblonskys, and all the world. Quite without attracting notice, without glancing at them, as though there were no other places left, Stepan Arkadyevitch put Levin and Kitty side by side. "Oh, you may as well sit there," he said to Levin. The dinner was as choice as the china, in which Stepan Arkadyevitch was a connoisseur. The _soupe Marie-Louise_ was a splendid success; the tiny pies eaten with it melted in the mouth and were irreproachable. The two footmen and Matvey, in white cravats, did their duty with the dishes and wines unobtrusively, quietly, and swiftly. On the material side the dinner was a success; it was no less so on the immaterial. The conversation, at times general and at times between individuals, never paused, and towards the end the company was so lively that the men rose from the table, without stopping speaking, and even Alexey Alexandrovitch thawed. Chapter 10 Pestsov liked thrashing an argument out to the end, and was not satisfied with Sergey Ivanovitch's words, especially as he felt the injustice of his view. "I did not mean," he said over the soup, addressing Alexey Alexandrovitch, "mere density of population alone, but in conjunction with fundamental ideas, and not by means of principles." "It seems to me," Alexey Alexandrovitch said languidly, and with no haste, "that that's the same thing. In my opinion, influence over another people is only possible to the people which has the higher development, which..." "But that's just the question," Pestsov broke in in his bass. He was always in a hurry to speak, and seemed always to put his whole soul into what he was saying. "In what are we to make higher development consist? The English, the French, the Germans, which is at the highest stage of development? Which of them will nationalize the other? We see the Rhine provinces have been turned French, but the Germans are not at a lower stage!" he shouted. "There is another law at work there." "I fancy that the greater influence is always on the side of true civilization," said Alexey Alexandrovitch, slightly lifting his eyebrows. "But what are we to lay down as the outward signs of true civilization?" said Pestsov. "I imagine such signs are generally very well known," said Alexey Alexandrovitch. "But are they fully known?" Sergey Ivanovitch put in with a subtle smile. "It is the accepted view now that real culture must be purely classical; but we see most intense disputes on each side of the question, and there is no denying that the opposite camp has strong points in its favor." "You are for classics, Sergey Ivanovitch. Will you take red wine?" said Stepan Arkadyevitch. "I am not expressing my own opinion of either form of culture," Sergey Ivanovitch said, holding out his glass with a smile of condescension, as to a child. "I only say that both sides have strong arguments to support them," he went on, addressing Alexey Alexandrovitch. "My sympathies are classical from education, but in this discussion I am personally unable to arrive at a conclusion. I see no distinct grounds for classical studies being given a preeminence over scientific studies." "The natural sciences have just as great an educational value," put in Pestsov. "Take astronomy, take botany, or zoology with its system of general principles." "I cannot quite agree with that," responded Alexey Alexandrovitch "It seems to me that one must admit that the very process of studying the forms of language has a peculiarly favorable influence on intellectual development. Moreover, it cannot be denied that the influence of the classical authors is in the highest degree moral, while, unfortunately, with the study of the natural sciences are associated the false and noxious doctrines which are the curse of our day." Sergey Ivanovitch would have said something, but Pestsov interrupted him in his rich bass. He began warmly contesting the justice of this view. Sergey Ivanovitch waited serenely to speak, obviously with a convincing reply ready. "But," said Sergey Ivanovitch, smiling subtly, and addressing Karenin, "One must allow that to weigh all the advantages and disadvantages of classical and scientific studies is a difficult task, and the question which form of education was to be preferred would not have been so quickly and conclusively decided if there had not been in favor of classical education, as you expressed it just now, its moral--disons le mot--anti-nihilist influence." "Undoubtedly." "If it had not been for the distinctive property of anti-nihilistic influence on the side of classical studies, we should have considered the subject more, have weighed the arguments on both sides," said Sergey Ivanovitch with a subtle smile, "we should have given elbow-room to both tendencies. But now we know that these little pills of classical learning possess the medicinal property of anti-nihilism, and we boldly prescribe them to our patients.... But what if they had no such medicinal property?" he wound up humorously. At Sergey Ivanovitch's little pills, everyone laughed; Turovtsin in especial roared loudly and jovially, glad at last to have found something to laugh at, all he ever looked for in listening to conversation. Stepan Arkadyevitch had not made a mistake in inviting Pestsov. With Pestsov intellectual conversation never flagged for an instant. Directly Sergey Ivanovitch had concluded the conversation with his jest, Pestsov promptly started a new one. "I can't agree even," said he, "that the government had that aim. The government obviously is guided by abstract considerations, and remains indifferent to the influence its measures may exercise. The education of women, for instance, would naturally be regarded as likely to be harmful, but the government opens schools and universities for women." And the conversation at once passed to the new subject of the education of women. Alexey Alexandrovitch expressed the idea that the education of women is apt to be confounded with the emancipation of women, and that it is only so that it can be considered dangerous. "I consider, on the contrary, that the two questions are inseparably connected together," said Pestsov; "it is a vicious circle. Woman is deprived of rights from lack of education, and the lack of education results from the absence of rights. We must not forget that the subjection of women is so complete, and dates from such ages back that we are often unwilling to recognize the gulf that separates them from us," said he. "You said rights," said Sergey Ivanovitch, waiting till Pestsov had finished, "meaning the right of sitting on juries, of voting, of presiding at official meetings, the right of entering the civil service, of sitting in parliament..." "Undoubtedly." "But if women, as a rare exception, can occupy such positions, it seems to me you are wrong in using the expression 'rights.' It would be more correct to say duties. Every man will agree that in doing the duty of a juryman, a witness, a telegraph clerk, we feel we are performing duties. And therefore it would be correct to say that women are seeking duties, and quite legitimately. And one can but sympathize with this desire to assist in the general labor of man." "Quite so," Alexey Alexandrovitch assented. "The question, I imagine, is simply whether they are fitted for such duties." "They will most likely be perfectly fitted," said Stepan Arkadyevitch, "when education has become general among them. We see this..." "How about the proverb?" said the prince, who had a long while been intent on the conversation, his little comical eyes twinkling. "I can say it before my daughter: her hair is long, because her wit is..." "Just what they thought of the negroes before their emancipation!" said Pestsov angrily. "What seems strange to me is that women should seek fresh duties," said Sergey Ivanovitch, "while we see, unhappily, that men usually try to avoid them." "Duties are bound up with rights--power, money, honor; those are what women are seeking," said Pestsov. "Just as though I should seek the right to be a wet-nurse and feel injured because women are paid for the work, while no one will take me," said the old prince. Turovtsin exploded in a loud roar of laughter and Sergey Ivanovitch regretted that he had not made this comparison. Even Alexey Alexandrovitch smiled. "Yes, but a man can't nurse a baby," said Pestsov, "while a woman..." "No, there was an Englishman who did suckle his baby on board ship," said the old prince, feeling this freedom in conversation permissible before his own daughters. "There are as many such Englishmen as there would be women officials," said Sergey Ivanovitch. "Yes, but what is a girl to do who has no family?" put in Stepan Arkadyevitch, thinking of Masha Tchibisova, whom he had had in his mind all along, in sympathizing with Pestsov and supporting him. "If the story of such a girl were thoroughly sifted, you would find she had abandoned a family--her own or a sister's, where she might have found a woman's duties," Darya Alexandrovna broke in unexpectedly in a tone of exasperation, probably suspecting what sort of girl Stepan Arkadyevitch was thinking of. "But we take our stand on principle as the ideal," replied Pestsov in his mellow bass. "Woman desires to have rights, to be independent, educated. She is oppressed, humiliated by the consciousness of her disabilities." "And I'm oppressed and humiliated that they won't engage me at the Foundling," the old prince said again, to the huge delight of Turovtsin, who in his mirth dropped his asparagus with the thick end in the sauce. Chapter 11 Everyone took part in the conversation except Kitty and Levin. At first, when they were talking of the influence that one people has on another, there rose to Levin's mind what he had to say on the subject. But these ideas, once of such importance in his eyes, seemed to come into his brain as in a dream, and had now not the slightest interest for him. It even struck him as strange that they should be so eager to talk of what was of no use to anyone. Kitty, too, should, one would have supposed, have been interested in what they were saying of the rights and education of women. How often she had mused on the subject, thinking of her friend abroad, Varenka, of her painful state of dependence, how often she had wondered about herself what would become of her if she did not marry, and how often she had argued with her sister about it! But it did not interest her at all. She and Levin had a conversation of their own, yet not a conversation, but some sort of mysterious communication, which brought them every moment nearer, and stirred in both a sense of glad terror before the unknown into which they were entering. At first Levin, in answer to Kitty's question how he could have seen her last year in the carriage, told her how he had been coming home from the mowing along the highroad and had met her. "It was very, very early in the morning. You were probably only just awake. Your mother was asleep in the corner. It was an exquisite morning. I was walking along wondering who it could be in a four-in-hand? It was a splendid set of four horses with bells, and in a second you flashed by, and I saw you at the window--you were sitting like this, holding the strings of your cap in both hands, and thinking awfully deeply about something," he said, smiling. "How I should like to know what you were thinking about then! Something important?" "Wasn't I dreadfully untidy?" she wondered, but seeing the smile of ecstasy these reminiscences called up, she felt that the impression she had made had been very good. She blushed and laughed with delight; "Really I don't remember." "How nicely Turovtsin laughs!" said Levin, admiring his moist eyes and shaking chest. "Have you known him long?" asked Kitty. "Oh, everyone knows him!" "And I see you think he's a horrid man?" "Not horrid, but nothing in him." "Oh, you're wrong! And you must give up thinking so directly!" said Kitty. "I used to have a very poor opinion of him too, but he, he's an awfully nice and wonderfully good-hearted man. He has a heart of gold." "How could you find out what sort of heart he has?" "We are great friends. I know him very well. Last winter, soon after ... you came to see us," she said, with a guilty and at the same time confiding smile, "all Dolly's children had scarlet fever, and he happened to come and see her. And only fancy," she said in a whisper, "he felt so sorry for her that he stayed and began to help her look after the children. Yes, and for three weeks he stopped with them, and looked after the children like a nurse." "I am telling Konstantin Dmitrievitch about Turovtsin in the scarlet fever," she said, bending over to her sister. "Yes, it was wonderful, noble!" said Dolly, glancing towards Turovtsin, who had become aware they were talking of him, and smiling gently to him. Levin glanced once more at Turovtsin, and wondered how it was he had not realized all this man's goodness before. "I'm sorry, I'm sorry, and I'll never think ill of people again!" he said gaily, genuinely expressing what he felt at the moment. Chapter 12 Connected with the conversation that had sprung up on the rights of women there were certain questions as to the inequality of rights in marriage improper to discuss before the ladies. Pestsov had several times during dinner touched upon these questions, but Sergey Ivanovitch and Stepan Arkadyevitch carefully drew him off them. When they rose from the table and the ladies had gone out, Pestsov did not follow them, but addressing Alexey Alexandrovitch, began to expound the chief ground of inequality. The inequality in marriage, in his opinion, lay in the fact that the infidelity of the wife and the infidelity of the husband are punished unequally, both by the law and by public opinion. Stepan Arkadyevitch went hurriedly up to Alexey Alexandrovitch and offered him a cigar. "No, I don't smoke," Alexey Alexandrovitch answered calmly, and as though purposely wishing to show that he was not afraid of the subject, he turned to Pestsov with a chilly smile. "I imagine that such a view has a foundation in the very nature of things," he said, and would have gone on to the drawing room. But at this point Turovtsin broke suddenly and unexpectedly into the conversation, addressing Alexey Alexandrovitch. "You heard, perhaps, about Pryatchnikov?" said Turovtsin, warmed up by the champagne he had drunk, and long waiting for an opportunity to break the silence that had weighed on him. "Vasya Pryatchnikov," he said, with a good-natured smile on his damp, red lips, addressing himself principally to the most important guest, Alexey Alexandrovitch, "they told me today he fought a duel with Kvitsky at Tver, and has killed him." Just as it always seems that one bruises oneself on a sore place, so Stepan Arkadyevitch felt now that the conversation would by ill luck fall every moment on Alexey Alexandrovitch's sore spot. He would again have got his brother-in-law away, but Alexey Alexandrovitch himself inquired, with curiosity: "What did Pryatchnikov fight about?" "His wife. Acted like a man, he did! Called him out and shot him!" "Ah!" said Alexey Alexandrovitch indifferently, and lifting his eyebrows, he went into the drawing room. "How glad I am you have come," Dolly said with a frightened smile, meeting him in the outer drawing room. "I must talk to you. Let's sit here." Alexey Alexandrovitch, with the same expression of indifference, given him by his lifted eyebrows, sat down beside Darya Alexandrovna, and smiled affectedly. "It's fortunate," said he, "especially as I was meaning to ask you to excuse me, and to be taking leave. I have to start tomorrow." Darya Alexandrovna was firmly convinced of Anna's innocence, and she felt herself growing pale and her lips quivering with anger at this frigid, unfeeling man, who was so calmly intending to ruin her innocent friend. "Alexey Alexandrovitch," she said, with desperate resolution looking him in the face, "I asked you about Anna, you made me no answer. How is she?" "She is, I believe, quite well, Darya Alexandrovna," replied Alexey Alexandrovitch, not looking at her. "Alexey Alexandrovitch, forgive me, I have no right ... but I love Anna as a sister, and esteem her; I beg, I beseech you to tell me what is wrong between you? what fault do you find with her?" Alexey Alexandrovitch frowned, and almost closing his eyes, dropped his head. "I presume that your husband has told you the grounds on which I consider it necessary to change my attitude to Anna Arkadyevna?" he said, not looking her in the face, but eyeing with displeasure Shtcherbatsky, who was walking across the drawing room. "I don't believe it, I don't believe it, I can't believe it!" Dolly said, clasping her bony hands before her with a vigorous gesture. She rose quickly, and laid her hand on Alexey Alexandrovitch's sleeve. "We shall be disturbed here. Come this way, please." Dolly's agitation had an effect on Alexey Alexandrovitch. He got up and submissively followed her to the schoolroom. They sat down to a table covered with an oilcloth cut in slits by penknives. "I don't, I don't believe it!" Dolly said, trying to catch his glance that avoided her. "One cannot disbelieve facts, Darya Alexandrovna," said he, with an emphasis on the word "facts." "But what has she done?" said Darya Alexandrovna. "What precisely has she done?" "She has forsaken her duty, and deceived her husband. That's what she has done," said he. "No, no, it can't be! No, for God's sake, you are mistaken," said Dolly, putting her hands to her temples and closing her eyes. Alexey Alexandrovitch smiled coldly, with his lips alone, meaning to signify to her and to himself the firmness of his conviction; but this warm defense, though it could not shake him, reopened his wound. He began to speak with greater heat. "It is extremely difficult to be mistaken when a wife herself informs her husband of the fact--informs him that eight years of her life, and a son, all that's a mistake, and that she wants to begin life again," he said angrily, with a snort. "Anna and sin--I cannot connect them, I cannot believe it!" "Darya Alexandrovna," he said, now looking straight into Dolly's kindly, troubled face, and feeling that his tongue was being loosened in spite of himself, "I would give a great deal for doubt to be still possible. When I doubted, I was miserable, but it was better than now. When I doubted, I had hope; but now there is no hope, and still I doubt of everything. I am in such doubt of everything that I even hate my son, and sometimes do not believe he is my son. I am very unhappy." He had no need to say that. Darya Alexandrovna had seen that as soon as he glanced into her face; and she felt sorry for him, and her faith in the innocence of her friend began to totter. "Oh, this is awful, awful! But can it be true that you are resolved on a divorce?" "I am resolved on extreme measures. There is nothing else for me to do." "Nothing else to do, nothing else to do..." she replied, with tears in her eyes. "Oh no, don't say nothing else to do!" she said. "What is horrible in a trouble of this kind is that one cannot, as in any other--in loss, in death--bear one's trouble in peace, but that one must act," said he, as though guessing her thought. "One must get out of the humiliating position in which one is placed; one can't live _a trois_." "I understand, I quite understand that," said Dolly, and her head sank. She was silent for a little, thinking of herself, of her own grief in her family, and all at once, with an impulsive movement, she raised her head and clasped her hands with an imploring gesture. "But wait a little! You are a Christian. Think of her! What will become of her, if you cast her off?" "I have thought, Darya Alexandrovna, I have thought a great deal," said Alexey Alexandrovitch. His face turned red in patches, and his dim eyes looked straight before him. Darya Alexandrovna at that moment pitied him with all her heart. "That was what I did indeed when she herself made known to me my humiliation; I left everything as of old. I gave her a chance to reform, I tried to save her. And with what result? She would not regard the slightest request--that she should observe decorum," he said, getting heated. "One may save anyone who does not want to be ruined; but if the whole nature is so corrupt, so depraved, that ruin itself seems to be her salvation, what's to be done?" "Anything, only not divorce!" answered Darya Alexandrovna "But what is anything?" "No, it is awful! She will be no one's wife, she will be lost!" "What can I do?" said Alexey Alexandrovitch, raising his shoulders and his eyebrows. The recollection of his wife's last act had so incensed him that he had become frigid, as at the beginning of the conversation. "I am very grateful for your sympathy, but I must be going," he said, getting up. "No, wait a minute. You must not ruin her. Wait a little; I will tell you about myself. I was married, and my husband deceived me; in anger and jealousy, I would have thrown up everything, I would myself.... But I came to myself again; and who did it? Anna saved me. And here I am living on. The children are growing up, my husband has come back to his family, and feels his fault, is growing purer, better, and I live on.... I have forgiven it, and you ought to forgive!" Alexey Alexandrovitch heard her, but her words had no effect on him now. All the hatred of that day when he had resolved on a divorce had sprung up again in his soul. He shook himself, and said in a shrill, loud voice:-- "Forgive I cannot, and do not wish to, and I regard it as wrong. I have done everything for this woman, and she has trodden it all in the mud to which she is akin. I am not a spiteful man, I have never hated anyone, but I hate her with my whole soul, and I cannot even forgive her, because I hate her too much for all the wrong she has done me!" he said, with tones of hatred in his voice. "Love those that hate you...." Darya Alexandrovna whispered timorously. Alexey Alexandrovitch smiled contemptuously. That he knew long ago, but it could not be applied to his case. "Love those that hate you, but to love those one hates is impossible. Forgive me for having troubled you. Everyone has enough to bear in his own grief!" And regaining his self-possession, Alexey Alexandrovitch quietly took leave and went away. Chapter 13 When they rose from table, Levin would have liked to follow Kitty into the drawing room; but he was afraid she might dislike this, as too obviously paying her attention. He remained in the little ring of men, taking part in the general conversation, and without looking at Kitty, he was aware of her movements, her looks, and the place where she was in the drawing room. He did at once, and without the smallest effort, keep the promise he had made her--always to think well of all men, and to like everyone always. The conversation fell on the village commune, in which Pestsov saw a sort of special principle, called by him the choral principle. Levin did not agree with Pestsov, nor with his brother, who had a special attitude of his own, both admitting and not admitting the significance of the Russian commune. But he talked to them, simply trying to reconcile and soften their differences. He was not in the least interested in what he said himself, and even less so in what they said; all he wanted was that they and everyone should be happy and contented. He knew now the one thing of importance; and that one thing was at first there, in the drawing room, and then began moving across and came to a standstill at the door. Without turning round he felt the eyes fixed on him, and the smile, and he could not help turning round. She was standing in the doorway with Shtcherbatsky, looking at him. "I thought you were going towards the piano," said he, going up to her. "That's something I miss in the country--music." "No; we only came to fetch you and thank you," she said, rewarding him with a smile that was like a gift, "for coming. What do they want to argue for? No one ever convinces anyone, you know." "Yes; that's true," said Levin; "it generally happens that one argues warmly simply because one can't make out what one's opponent wants to prove." Levin had often noticed in discussions between the most intelligent people that after enormous efforts, and an enormous expenditure of logical subtleties and words, the disputants finally arrived at being aware that what they had so long been struggling to prove to one another had long ago, from the beginning of the argument, been known to both, but that they liked different things, and would not define what they liked for fear of its being attacked. He had often had the experience of suddenly in a discussion grasping what it was his opponent liked and at once liking it too, and immediately he found himself agreeing, and then all arguments fell away as useless. Sometimes, too, he had experienced the opposite, expressing at last what he liked himself, which he was devising arguments to defend, and, chancing to express it well and genuinely, he had found his opponent at once agreeing and ceasing to dispute his position. He tried to say this. She knitted her brow, trying to understand. But directly he began to illustrate his meaning, she understood at once. "I know: one must find out what he is arguing for, what is precious to him, then one can..." She had completely guessed and expressed his badly expressed idea. Levin smiled joyfully; he was struck by this transition from the confused, verbose discussion with Pestsov and his brother to this laconic, clear, almost wordless communication of the most complex ideas. Shtcherbatsky moved away from them, and Kitty, going up to a card table, sat down, and, taking up the chalk, began drawing diverging circles over the new green cloth. They began again on the subject that had been started at dinner--the liberty and occupations of women. Levin was of the opinion of Darya Alexandrovna that a girl who did not marry should find a woman's duties in a family. He supported this view by the fact that no family can get on without women to help; that in every family, poor or rich, there are and must be nurses, either relations or hired. "No," said Kitty, blushing, but looking at him all the more boldly with her truthful eyes; "a girl may be so circumstanced that she cannot live in the family without humiliation, while she herself..." At the hint he understood her. "Oh, yes," he said. "Yes, yes, yes--you're right; you're right!" And he saw all that Pestsov had been maintaining at dinner of the liberty of woman, simply from getting a glimpse of the terror of an old maid's existence and its humiliation in Kitty's heart; and loving her, he felt that terror and humiliation, and at once gave up his arguments. A silence followed. She was still drawing with the chalk on the table. Her eyes were shining with a soft light. Under the influence of her mood he felt in all his being a continually growing tension of happiness. "Ah! I've scribbled all over the table!" she said, and, laying down the chalk, she made a movement as though to get up. "What! shall I be left alone--without her?" he thought with horror, and he took the chalk. "Wait a minute," he said, sitting down to the table. "I've long wanted to ask you one thing." He looked straight into her caressing, though frightened eyes. "Please, ask it." "Here," he said; and he wrote the initial letters, _w, y, t, m, i, c, n, b, d, t, m, n, o, t_. These letters meant, "When you told me it could never be, did that mean never, or then?" There seemed no likelihood that she could make out this complicated sentence; but he looked at her as though his life depended on her understanding the words. She glanced at him seriously, then leaned her puckered brow on her hands and began to read. Once or twice she stole a look at him, as though asking him, "Is it what I think?" "I understand," she said, flushing a little. "What is this word?" he said, pointing to the n that stood for _never_. "It means _never_," she said; "but that's not true!" He quickly rubbed out what he had written, gave her the chalk, and stood up. She wrote, _t, i, c, n, a, d_. Dolly was completely comforted in the depression caused by her conversation with Alexey Alexandrovitch when she caught sight of the two figures: Kitty with the chalk in her hand, with a shy and happy smile looking upwards at Levin, and his handsome figure bending over the table with glowing eyes fastened one minute on the table and the next on her. He was suddenly radiant: he had understood. It meant, "Then I could not answer differently." He glanced at her questioningly, timidly. "Only then?" "Yes," her smile answered. "And n... and now?" he asked. "Well, read this. I'll tell you what I should like--should like so much!" she wrote the initial letters, i, y, c, f, a, f, w, h. This meant, "If you could forget and forgive what happened." He snatched the chalk with nervous, trembling fingers, and breaking it, wrote the initial letters of the following phrase, "I have nothing to forget and to forgive; I have never ceased to love you." She glanced at him with a smile that did not waver. "I understand," she said in a whisper. He sat down and wrote a long phrase. She understood it all, and without asking him, "Is it this?" took the chalk and at once answered. For a long while he could not understand what she had written, and often looked into her eyes. He was stupefied with happiness. He could not supply the word she had meant; but in her charming eyes, beaming with happiness, he saw all he needed to know. And he wrote three letters. But he had hardly finished writing when she read them over her arm, and herself finished and wrote the answer, "Yes." "You're playing _secretaire_?" said the old prince. "But we must really be getting along if you want to be in time at the theater." Levin got up and escorted Kitty to the door. In their conversation everything had been said; it had been said that she loved him, and that she would tell her father and mother that he would come tomorrow morning. Chapter 14 When Kitty had gone and Levin was left alone, he felt such uneasiness without her, and such an impatient longing to get as quickly, as quickly as possible, to tomorrow morning, when he would see her again and be plighted to her forever, that he felt afraid, as though of death, of those fourteen hours that he had to get through without her. It was essential for him to be with someone to talk to, so as not to be left alone, to kill time. Stepan Arkadyevitch would have been the companion most congenial to him, but he was going out, he said, to a _soiree_, in reality to the ballet. Levin only had time to tell him he was happy, and that he loved him, and would never, never forget what he had done for him. The eyes and the smile of Stepan Arkadyevitch showed Levin that he comprehended that feeling fittingly. "Oh, so it's not time to die yet?" said Stepan Arkadyevitch, pressing Levin's hand with emotion. "N-n-no!" said Levin. Darya Alexandrovna too, as she said good-bye to him, gave him a sort of congratulation, saying, "How glad I am you have met Kitty again! One must value old friends." Levin did not like these words of Darya Alexandrovna's. She could not understand how lofty and beyond her it all was, and she ought not to have dared to allude to it. Levin said good-bye to them, but, not to be left alone, he attached himself to his brother. "Where are you going?" "I'm going to a meeting." "Well, I'll come with you. May I?" "What for? Yes, come along," said Sergey Ivanovitch, smiling. "What is the matter with you today?" "With me? Happiness is the matter with me!" said Levin, letting down the window of the carriage they were driving in. "You don't mind?--it's so stifling. It's happiness is the matter with me! Why is it you have never married?" Sergey Ivanovitch smiled. "I am very glad, she seems a nice gi..." Sergey Ivanovitch was beginning. "Don't say it! don't say it!" shouted Levin, clutching at the collar of his fur coat with both hands, and muffling him up in it. "She's a nice girl" were such simple, humble words, so out of harmony with his feeling. Sergey Ivanovitch laughed outright a merry laugh, which was rare with him. "Well, anyway, I may say that I'm very glad of it." "That you may do tomorrow, tomorrow and nothing more! Nothing, nothing, silence," said Levin, and muffling him once more in his fur coat, he added: "I do like you so! Well, is it possible for me to be present at the meeting?" "Of course it is." "What is your discussion about today?" asked Levin, never ceasing smiling. They arrived at the meeting. Levin heard the secretary hesitatingly read the minutes which he obviously did not himself understand; but Levin saw from this secretary's face what a good, nice, kind-hearted person he was. This was evident from his confusion and embarrassment in reading the minutes. Then the discussion began. They were disputing about the misappropriation of certain sums and the laying of certain pipes, and Sergey Ivanovitch was very cutting to two members, and said something at great length with an air of triumph; and another member, scribbling something on a bit of paper, began timidly at first, but afterwards answered him very viciously and delightfully. And then Sviazhsky (he was there too) said something too, very handsomely and nobly. Levin listened to them, and saw clearly that these missing sums and these pipes were not anything real, and that they were not at all angry, but were all the nicest, kindest people, and everything was as happy and charming as possible among them. They did no harm to anyone, and were all enjoying it. What struck Levin was that he could see through them all today, and from little, almost imperceptible signs knew the soul of each, and saw distinctly that they were all good at heart. And Levin himself in particular they were all extremely fond of that day. That was evident from the way they spoke to him, from the friendly, affectionate way even those he did not know looked at him. "Well, did you like it?" Sergey Ivanovitch asked him. "Very much. I never supposed it was so interesting! Capital! Splendid!" Sviazhsky went up to Levin and invited him to come round to tea with him. Levin was utterly at a loss to comprehend or recall what it was he had disliked in Sviazhsky, what he had failed to find in him. He was a clever and wonderfully good-hearted man. "Most delighted," he said, and asked after his wife and sister-in-law. And from a queer association of ideas, because in his imagination the idea of Sviazhsky's sister-in-law was connected with marriage, it occurred to him that there was no one to whom he could more suitably speak of his happiness, and he was very glad to go and see them. Sviazhsky questioned him about his improvements on his estate, presupposing, as he always did, that there was no possibility of doing anything not done already in Europe, and now this did not in the least annoy Levin. On the contrary, he felt that Sviazhsky was right, that the whole business was of little value, and he saw the wonderful softness and consideration with which Sviazhsky avoided fully expressing his correct view. The ladies of the Sviazhsky household were particularly delightful. It seemed to Levin that they knew all about it already and sympathized with him, saying nothing merely from delicacy. He stayed with them one hour, two, three, talking of all sorts of subjects but the one thing that filled his heart, and did not observe that he was boring them dreadfully, and that it was long past their bedtime. Sviazhsky went with him into the hall, yawning and wondering at the strange humor his friend was in. It was past one o'clock. Levin went back to his hotel, and was dismayed at the thought that all alone now with his impatience he had ten hours still left to get through. The servant, whose turn it was to be up all night, lighted his candles, and would have gone away, but Levin stopped him. This servant, Yegor, whom Levin had noticed before, struck him as a very intelligent, excellent, and, above all, good-hearted man. "Well, Yegor, it's hard work not sleeping, isn't it?" "One's got to put up with it! It's part of our work, you see. In a gentleman's house it's easier; but then here one makes more." It appeared that Yegor had a family, three boys and a daughter, a sempstress, whom he wanted to marry to a cashier in a saddler's shop. Levin, on hearing this, informed Yegor that, in his opinion, in marriage the great thing was love, and that with love one would always be happy, for happiness rests only on oneself. Yegor listened attentively, and obviously quite took in Levin's idea, but by way of assent to it he enunciated, greatly to Levin's surprise, the observation that when he had lived with good masters he had always been satisfied with his masters, and now was perfectly satisfied with his employer, though he was a Frenchman. "Wonderfully good-hearted fellow!" thought Levin. "Well, but you yourself, Yegor, when you got married, did you love your wife?" "Ay! and why not?" responded Yegor. And Levin saw that Yegor too was in an excited state and intending to express all his most heartfelt emotions. "My life, too, has been a wonderful one. From a child up..." he was beginning with flashing eyes, apparently catching Levin's enthusiasm, just as people catch yawning. But at that moment a ring was heard. Yegor departed, and Levin was left alone. He had eaten scarcely anything at dinner, had refused tea and supper at Sviazhsky's, but he was incapable of thinking of supper. He had not slept the previous night, but was incapable of thinking of sleep either. His room was cold, but he was oppressed by heat. He opened both the movable panes in his window and sat down to the table opposite the open panes. Over the snow-covered roofs could be seen a decorated cross with chains, and above it the rising triangle of Charles's Wain with the yellowish light of Capella. He gazed at the cross, then at the stars, drank in the fresh freezing air that flowed evenly into the room, and followed as though in a dream the images and memories that rose in his imagination. At four o'clock he heard steps in the passage and peeped out at the door. It was the gambler Myaskin, whom he knew, coming from the club. He walked gloomily, frowning and coughing. "Poor, unlucky fellow!" thought Levin, and tears came into his eyes from love and pity for this man. He would have talked with him, and tried to comfort him, but remembering that he had nothing but his shirt on, he changed his mind and sat down again at the open pane to bathe in the cold air and gaze at the exquisite lines of the cross, silent, but full of meaning for him, and the mounting lurid yellow star. At seven o'clock there was a noise of people polishing the floors, and bells ringing in some servants' department, and Levin felt that he was beginning to get frozen. He closed the pane, washed, dressed, and went out into the street. Chapter 15 The streets were still empty. Levin went to the house of the Shtcherbatskys. The visitors' doors were closed and everything was asleep. He walked back, went into his room again, and asked for coffee. The day servant, not Yegor this time, brought it to him. Levin would have entered into conversation with him, but a bell rang for the servant, and he went out. Levin tried to drink coffee and put some roll in his mouth, but his mouth was quite at a loss what to do with the roll. Levin, rejecting the roll, put on his coat and went out again for a walk. It was nine o'clock when he reached the Shtcherbatskys' steps the second time. In the house they were only just up, and the cook came out to go marketing. He had to get through at least two hours more. All that night and morning Levin lived perfectly unconsciously, and felt perfectly lifted out of the conditions of material life. He had eaten nothing for a whole day, he had not slept for two nights, had spent several hours undressed in the frozen air, and felt not simply fresher and stronger than ever, but felt utterly independent of his body; he moved without muscular effort, and felt as if he could do anything. He was convinced he could fly upwards or lift the corner of the house, if need be. He spent the remainder of the time in the street, incessantly looking at his watch and gazing about him. And what he saw then, he never saw again after. The children especially going to school, the bluish doves flying down from the roofs to the pavement, and the little loaves covered with flour, thrust out by an unseen hand, touched him. Those loaves, those doves, and those two boys were not earthly creatures. It all happened at the same time: a boy ran towards a dove and glanced smiling at Levin; the dove, with a whir of her wings, darted away, flashing in the sun, amid grains of snow that quivered in the air, while from a little window there came a smell of fresh-baked bread, and the loaves were put out. All of this together was so extraordinarily nice that Levin laughed and cried with delight. Going a long way round by Gazetny Place and Kislovka, he went back again to the hotel, and putting his watch before him, he sat down to wait for twelve o'clock. In the next room they were talking about some sort of machines, and swindling, and coughing their morning coughs. They did not realize that the hand was near twelve. The hand reached it. Levin went out onto the steps. The sledge-drivers clearly knew all about it. They crowded round Levin with happy faces, quarreling among themselves, and offering their services. Trying not to offend the other sledge drivers, and promising to drive with them too, Levin took one and told him to drive to the Shtcherbatskys'. The sledge-driver was splendid in a white shirt-collar sticking out over his overcoat and into his strong, full-blooded red neck. The sledge was high and comfortable, and altogether such a one as Levin never drove in after, and the horse was a good one, and tried to gallop but didn't seem to move. The driver knew the Shtcherbatskys' house, and drew up at the entrance with a curve of his arm and a "Wo!" especially indicative of respect for his fare. The Shtcherbatskys' hall-porter certainly knew all about it. This was evident from the smile in his eyes and the way he said: "Well, it's a long while since you've been to see us, Konstantin Demitrievitch!" Not only he knew all about it, but he was unmistakably delighted and making efforts to conceal his joy. Looking into his kindly old eyes, Levin realized even something new in his happiness. "Are they up?" "Pray walk in! Leave it here," said he, smiling, as Levin would have come back to take his hat. That meant something. "To whom shall I announce your honor?" asked the footman. The footman, though a young man, and one of the new school of footmen, a dandy, was a very kind-hearted, good fellow, and he too knew all about it. "The princess ... the prince ... the young princess..." said Levin. The first person he saw was Mademoiselle Linon. She walked across the room, and her ringlets and her face were beaming. He had only just spoken to her, when suddenly he heard the rustle of a skirt at the door, and Mademoiselle Linon vanished from Levin's eyes, and a joyful terror came over him at the nearness of his happiness. Mademoiselle Linon was in great haste, and leaving him, went out at the other door. Directly she had gone out, swift, swift light steps sounded on the parquet, and his bliss, his life, himself--what was best in himself, what he had so long sought and longed for--was quickly, so quickly approaching him. She did not walk, but seemed, by some unseen force, to float to him. He saw nothing but her clear, truthful eyes, frightened by the same bliss of love that flooded his heart. Those eyes were shining nearer and nearer, blinding him with their light of love. She stopped still close to him, touching him. Her hands rose and dropped onto his shoulders. She had done all she could--she had run up to him and given herself up entirely, shy and happy. He put his arms round her and pressed his lips to her mouth that sought his kiss. She too had not slept all night, and had been expecting him all the morning. Her mother and father had consented without demur, and were happy in her happiness. She had been waiting for him. She wanted to be the first to tell him her happiness and his. She had got ready to see him alone, and had been delighted at the idea, and had been shy and ashamed, and did not know herself what she was doing. She had heard his steps and voice, and had waited at the door for Mademoiselle Linon to go. Mademoiselle Linon had gone away. Without thinking, without asking herself how and what, she had gone up to him, and did as she was doing. "Let us go to mamma!" she said, taking him by the hand. For a long while he could say nothing, not so much because he was afraid of desecrating the loftiness of his emotion by a word, as that every time he tried to say something, instead of words he felt that tears of happiness were welling up. He took her hand and kissed it. "Can it be true?" he said at last in a choked voice. "I can't believe you love me, dear!" She smiled at that "dear," and at the timidity with which he glanced at her. "Yes!" she said significantly, deliberately. "I am so happy!" Not letting go his hands, she went into the drawing room. The princess, seeing them, breathed quickly, and immediately began to cry and then immediately began to laugh, and with a vigorous step Levin had not expected, ran up to him, and hugging his head, kissed him, wetting his cheeks with her tears. "So it is all settled! I am glad. Love her. I am glad.... Kitty!" "You've not been long settling things," said the old prince, trying to seem unmoved; but Levin noticed that his eyes were wet when he turned to him. "I've long, always wished for this!" said the prince, taking Levin by the arm and drawing him towards himself. "Even when this little feather-head fancied..." "Papa!" shrieked Kitty, and shut his mouth with her hands. "Well, I won't!" he said. "I'm very, very ... plea... Oh, what a fool I am..." He embraced Kitty, kissed her face, her hand, her face again, and made the sign of the cross over her. And there came over Levin a new feeling of love for this man, till then so little known to him, when he saw how slowly and tenderly Kitty kissed his muscular hand. Chapter 16 The princess sat in her armchair, silent and smiling; the prince sat down beside her. Kitty stood by her father's chair, still holding his hand. All were silent. The princess was the first to put everything into words, and to translate all thoughts and feelings into practical questions. And all equally felt this strange and painful for the first minute. "When is it to be? We must have the benediction and announcement. And when's the wedding to be? What do you think, Alexander?" "Here he is," said the old prince, pointing to Levin--"he's the principal person in the matter." "When?" said Levin blushing. "Tomorrow; If you ask me, I should say, the benediction today and the wedding tomorrow." "Come, _mon cher_, that's nonsense!" "Well, in a week." "He's quite mad." "No, why so?" "Well, upon my word!" said the mother, smiling, delighted at this haste. "How about the trousseau?" "Will there really be a trousseau and all that?" Levin thought with horror. "But can the trousseau and the benediction and all that--can it spoil my happiness? Nothing can spoil it!" He glanced at Kitty, and noticed that she was not in the least, not in the very least, disturbed by the idea of the trousseau. "Then it must be all right," he thought. "Oh, I know nothing about it; I only said what I should like," he said apologetically. "We'll talk it over, then. The benediction and announcement can take place now. That's very well." The princess went up to her husband, kissed him, and would have gone away, but he kept her, embraced her, and, tenderly as a young lover, kissed her several times, smiling. The old people were obviously muddled for a moment, and did not quite know whether it was they who were in love again or their daughter. When the prince and the princess had gone, Levin went up to his betrothed and took her hand. He was self-possessed now and could speak, and he had a great deal he wanted to tell her. But he said not at all what he had to say. "How I knew it would be so! I never hoped for it; and yet in my heart I was always sure," he said. "I believe that it was ordained." "And I!" she said. "Even when...." She stopped and went on again, looking at him resolutely with her truthful eyes, "Even when I thrust from me my happiness. I always loved you alone, but I was carried away. I ought to tell you.... Can you forgive that?" "Perhaps it was for the best. You will have to forgive me so much. I ought to tell you..." This was one of the things he had meant to speak about. He had resolved from the first to tell her two things--that he was not chaste as she was, and that he was not a believer. It was agonizing, but he considered he ought to tell her both these facts. "No, not now, later!" he said. "Very well, later, but you must certainly tell me. I'm not afraid of anything. I want to know everything. Now it is settled." He added: "Settled that you'll take me whatever I may be--you won't give me up? Yes?" "Yes, yes." Their conversation was interrupted by Mademoiselle Linon, who with an affected but tender smile came to congratulate her favorite pupil. Before she had gone, the servants came in with their congratulations. Then relations arrived, and there began that state of blissful absurdity from which Levin did not emerge till the day after his wedding. Levin was in a continual state of awkwardness and discomfort, but the intensity of his happiness went on all the while increasing. He felt continually that a great deal was being expected of him--what, he did not know; and he did everything he was told, and it all gave him happiness. He had thought his engagement would have nothing about it like others, that the ordinary conditions of engaged couples would spoil his special happiness; but it ended in his doing exactly as other people did, and his happiness being only increased thereby and becoming more and more special, more and more unlike anything that had ever happened. "Now we shall have sweetmeats to eat," said Mademoiselle Linon--and Levin drove off to buy sweetmeats. "Well, I'm very glad," said Sviazhsky. "I advise you to get the bouquets from Fomin's." "Oh, are they wanted?" And he drove to Fomin's. His brother offered to lend him money, as he would have so many expenses, presents to give.... "Oh, are presents wanted?" And he galloped to Foulde's. And at the confectioner's, and at Fomin's, and at Foulde's he saw that he was expected; that they were pleased to see him, and prided themselves on his happiness, just as every one whom he had to do with during those days. What was extraordinary was that everyone not only liked him, but even people previously unsympathetic, cold, and callous, were enthusiastic over him, gave way to him in everything, treated his feeling with tenderness and delicacy, and shared his conviction that he was the happiest man in the world because his betrothed was beyond perfection. Kitty too felt the same thing. When Countess Nordston ventured to hint that she had hoped for something better, Kitty was so angry and proved so conclusively that nothing in the world could be better than Levin, that Countess Nordston had to admit it, and in Kitty's presence never met Levin without a smile of ecstatic admiration. The confession he had promised was the one painful incident of this time. He consulted the old prince, and with his sanction gave Kitty his diary, in which there was written the confession that tortured him. He had written this diary at the time with a view to his future wife. Two things caused him anguish: his lack of purity and his lack of faith. His confession of unbelief passed unnoticed. She was religious, had never doubted the truths of religion, but his external unbelief did not affect her in the least. Through love she knew all his soul, and in his soul she saw what she wanted, and that such a state of soul should be called unbelieving was to her a matter of no account. The other confession set her weeping bitterly. Levin, not without an inner struggle, handed her his diary. He knew that between him and her there could not be, and should not be, secrets, and so he had decided that so it must be. But he had not realized what an effect it would have on her, he had not put himself in her place. It was only when the same evening he came to their house before the theater, went into her room and saw her tear-stained, pitiful, sweet face, miserable with suffering he had caused and nothing could undo, he felt the abyss that separated his shameful past from her dovelike purity, and was appalled at what he had done. "Take them, take these dreadful books!" she said, pushing away the notebooks lying before her on the table. "Why did you give them me? No, it was better anyway," she added, touched by his despairing face. "But it's awful, awful!" His head sank, and he was silent. He could say nothing. "You can't forgive me," he whispered. "Yes, I forgive you; but it's terrible!" But his happiness was so immense that this confession did not shatter it, it only added another shade to it. She forgave him; but from that time more than ever he considered himself unworthy of her, morally bowed down lower than ever before her, and prized more highly than ever his undeserved happiness. Chapter 17 Unconsciously going over in his memory the conversations that had taken place during and after dinner, Alexey Alexandrovitch returned to his solitary room. Darya Alexandrovna's words about forgiveness had aroused in him nothing but annoyance. The applicability or non-applicability of the Christian precept to his own case was too difficult a question to be discussed lightly, and this question had long ago been answered by Alexey Alexandrovitch in the negative. Of all that had been said, what stuck most in his memory was the phrase of stupid, good-natured Turovtsin--"_Acted like a man, he did! Called him out and shot him!_" Everyone had apparently shared this feeling, though from politeness they had not expressed it. "But the matter is settled, it's useless thinking about it," Alexey Alexandrovitch told himself. And thinking of nothing but the journey before him, and the revision work he had to do, he went into his room and asked the porter who escorted him where his man was. The porter said that the man had only just gone out. Alexey Alexandrovitch ordered tea to be sent him, sat down to the table, and taking the guidebook, began considering the route of his journey. "Two telegrams," said his manservant, coming into the room. "I beg your pardon, your excellency; I'd only just that minute gone out." Alexey Alexandrovitch took the telegrams and opened them. The first telegram was the announcement of Stremov's appointment to the very post Karenin had coveted. Alexey Alexandrovitch flung the telegram down, and flushing a little, got up and began to pace up and down the room. "_Quos vult perdere dementat_," he said, meaning by _quos_ the persons responsible for this appointment. He was not so much annoyed that he had not received the post, that he had been conspicuously passed over; but it was incomprehensible, amazing to him that they did not see that the wordy phrase-monger Stremov was the last man fit for it. How could they fail to see how they were ruining themselves, lowering their _prestige_ by this appointment? "Something else in the same line," he said to himself bitterly, opening the second telegram. The telegram was from his wife. Her name, written in blue pencil, "Anna," was the first thing that caught his eye. "I am dying; I beg, I implore you to come. I shall die easier with your forgiveness," he read. He smiled contemptuously, and flung down the telegram. That this was a trick and a fraud, of that, he thought for the first minute, there could be no doubt. "There is no deceit she would stick at. She was near her confinement. Perhaps it is the confinement. But what can be their aim? To legitimize the child, to compromise me, and prevent a divorce," he thought. "But something was said in it: I am dying...." He read the telegram again, and suddenly the plain meaning of what was said in it struck him. "And if it is true?" he said to himself. "If it is true that in the moment of agony and nearness to death she is genuinely penitent, and I, taking it for a trick, refuse to go? That would not only be cruel, and everyone would blame me, but it would be stupid on my part." "Piotr, call a coach; I am going to Petersburg," he said to his servant. Alexey Alexandrovitch decided that he would go to Petersburg and see his wife. If her illness was a trick, he would say nothing and go away again. If she was really in danger, and wished to see him before her death, he would forgive her if he found her alive, and pay her the last duties if he came too late. All the way he thought no more of what he ought to do. With a sense of weariness and uncleanness from the night spent in the train, in the early fog of Petersburg Alexey Alexandrovitch drove through the deserted Nevsky and stared straight before him, not thinking of what was awaiting him. He could not think about it, because in picturing what would happen, he could not drive away the reflection that her death would at once remove all the difficulty of his position. Bakers, closed shops, night-cabmen, porters sweeping the pavements flashed past his eyes, and he watched it all, trying to smother the thought of what was awaiting him, and what he dared not hope for, and yet was hoping for. He drove up to the steps. A sledge and a carriage with the coachman asleep stood at the entrance. As he went into the entry, Alexey Alexandrovitch, as it were, got out his resolution from the remotest corner of his brain, and mastered it thoroughly. Its meaning ran: "If it's a trick, then calm contempt and departure. If truth, do what is proper." The porter opened the door before Alexey Alexandrovitch rang. The porter, Kapitonitch, looked queer in an old coat, without a tie, and in slippers. "How is your mistress?" "A successful confinement yesterday." Alexey Alexandrovitch stopped short and turned white. He felt distinctly now how intensely he had longed for her death. "And how is she?" Korney in his morning apron ran downstairs. "Very ill," he answered. "There was a consultation yesterday, and the doctor's here now." "Take my things," said Alexey Alexandrovitch, and feeling some relief at the news that there was still hope of her death, he went into the hall. On the hatstand there was a military overcoat. Alexey Alexandrovitch noticed it and asked: "Who is here?" "The doctor, the midwife, and Count Vronsky." Alexey Alexandrovitch went into the inner rooms. In the drawing room there was no one; at the sound of his steps there came out of her boudoir the midwife in a cap with lilac ribbons. She went up to Alexey Alexandrovitch, and with the familiarity given by the approach of death took him by the arm and drew him towards the bedroom. "Thank God you've come! She keeps on about you and nothing but you," she said. "Make haste with the ice!" the doctor's peremptory voice said from the bedroom. Alexey Alexandrovitch went into her boudoir. At the table, sitting sideways in a low chair, was Vronsky, his face hidden in his hands, weeping. He jumped up at the doctor's voice, took his hands from his face, and saw Alexey Alexandrovitch. Seeing the husband, he was so overwhelmed that he sat down again, drawing his head down to his shoulders, as if he wanted to disappear; but he made an effort over himself, got up and said: "She is dying. The doctors say there is no hope. I am entirely in your power, only let me be here ... though I am at your disposal. I..." Alexey Alexandrovitch, seeing Vronsky's tears, felt a rush of that nervous emotion always produced in him by the sight of other people's suffering, and turning away his face, he moved hurriedly to the door, without hearing the rest of his words. From the bedroom came the sound of Anna's voice saying something. Her voice was lively, eager, with exceedingly distinct intonations. Alexey Alexandrovitch went into the bedroom, and went up to the bed. She was lying turned with her face towards him. Her cheeks were flushed crimson, her eyes glittered, her little white hands thrust out from the sleeves of her dressing gown were playing with the quilt, twisting it about. It seemed as though she were not only well and blooming, but in the happiest frame of mind. She was talking rapidly, musically, and with exceptionally correct articulation and expressive intonation. "For Alexey--I am speaking of Alexey Alexandrovitch (what a strange and awful thing that both are Alexey, isn't it?)--Alexey would not refuse me. I should forget, he would forgive.... But why doesn't he come? He's so good he doesn't know himself how good he is. Ah, my God, what agony! Give me some water, quick! Oh, that will be bad for her, my little girl! Oh, very well then, give her to a nurse. Yes, I agree, it's better in fact. He'll be coming; it will hurt him to see her. Give her to the nurse." "Anna Arkadyevna, he has come. Here he is!" said the midwife, trying to attract her attention to Alexey Alexandrovitch. "Oh, what nonsense!" Anna went on, not seeing her husband. "No, give her to me; give me my little one! He has not come yet. You say he won't forgive me, because you don't know him. No one knows him. I'm the only one, and it was hard for me even. His eyes I ought to know--Seryozha has just the same eyes--and I can't bear to see them because of it. Has Seryozha had his dinner? I know everyone will forget him. He would not forget. Seryozha must be moved into the corner room, and Mariette must be asked to sleep with him." All of a sudden she shrank back, was silent; and in terror, as though expecting a blow, as though to defend herself, she raised her hands to her face. She had seen her husband. "No, no!" she began. "I am not afraid of him; I am afraid of death. Alexey, come here. I am in a hurry, because I've no time, I've not long left to live; the fever will begin directly and I shall understand nothing more. Now I understand, I understand it all, I see it all!" Alexey Alexandrovitch's wrinkled face wore an expression of agony; he took her by the hand and tried to say something, but he could not utter it; his lower lip quivered, but he still went on struggling with his emotion, and only now and then glanced at her. And each time he glanced at her, he saw her eyes gazing at him with such passionate and triumphant tenderness as he had never seen in them. "Wait a minute, you don't know ... stay a little, stay!..." She stopped, as though collecting her ideas. "Yes," she began; "yes, yes, yes. This is what I wanted to say. Don't be surprised at me. I'm still the same.... But there is another woman in me, I'm afraid of her: she loved that man, and I tried to hate you, and could not forget about her that used to be. I'm not that woman. Now I'm my real self, all myself. I'm dying now, I know I shall die, ask him. Even now I feel--see here, the weights on my feet, on my hands, on my fingers. My fingers--see how huge they are! But this will soon all be over.... Only one thing I want: forgive me, forgive me quite. I'm terrible, but my nurse used to tell me; the holy martyr--what was her name? She was worse. And I'll go to Rome; there's a wilderness, and there I shall be no trouble to any one, only I'll take Seryozha and the little one.... No, you can't forgive me! I know, it can't be forgiven! No, no, go away, you're too good!" She held his hand in one burning hand, while she pushed him away with the other. The nervous agitation of Alexey Alexandrovitch kept increasing, and had by now reached such a point that he ceased to struggle with it. He suddenly felt that what he had regarded as nervous agitation was on the contrary a blissful spiritual condition that gave him all at once a new happiness he had never known. He did not think that the Christian law that he had been all his life trying to follow, enjoined on him to forgive and love his enemies; but a glad feeling of love and forgiveness for his enemies filled his heart. He knelt down, and laying his head in the curve of her arm, which burned him as with fire through the sleeve, he sobbed like a little child. She put her arm around his head, moved towards him, and with defiant pride lifted up her eyes. "That is he. I knew him! Now, forgive me, everyone, forgive me!... They've come again; why don't they go away?... Oh, take these cloaks off me!" The doctor unloosed her hands, carefully laying her on the pillow, and covered her up to the shoulders. She lay back submissively, and looked before her with beaming eyes. "Remember one thing, that I needed nothing but forgiveness, and I want nothing more.... Why doesn't _he_ come?" she said, turning to the door towards Vronsky. "Do come, do come! Give him your hand." Vronsky came to the side of the bed, and seeing Anna, again hid his face in his hands. "Uncover your face--look at him! He's a saint," she said. "Oh! uncover your face, do uncover it!" she said angrily. "Alexey Alexandrovitch, do uncover his face! I want to see him." Alexey Alexandrovitch took Vronsky's hands and drew them away from his face, which was awful with the expression of agony and shame upon it. "Give him your hand. Forgive him." Alexey Alexandrovitch gave him his hand, not attempting to restrain the tears that streamed from his eyes. "Thank God, thank God!" she said, "now everything is ready. Only to stretch my legs a little. There, that's capital. How badly these flowers are done--not a bit like a violet," she said, pointing to the hangings. "My God, my God! when will it end? Give me some morphine. Doctor, give me some morphine! Oh, my God, my God!" And she tossed about on the bed. The doctors said that it was puerperal fever, and that it was ninety-nine chances in a hundred it would end in death. The whole day long there was fever, delirium, and unconsciousness. At midnight the patient lay without consciousness, and almost without pulse. The end was expected every minute. Vronsky had gone home, but in the morning he came to inquire, and Alexey Alexandrovitch meeting him in the hall, said: "Better stay, she might ask for you," and himself led him to his wife's boudoir. Towards morning, there was a return again of excitement, rapid thought and talk, and again it ended in unconsciousness. On the third day it was the same thing, and the doctors said there was hope. That day Alexey Alexandrovitch went into the boudoir where Vronsky was sitting, and closing the door sat down opposite him. "Alexey Alexandrovitch," said Vronsky, feeling that a statement of the position was coming, "I can't speak, I can't understand. Spare me! However hard it is for you, believe me, it is more terrible for me." He would have risen; but Alexey Alexandrovitch took him by the hand and said: "I beg you to hear me out; it is necessary. I must explain my feelings, the feelings that have guided me and will guide me, so that you may not be in error regarding me. You know I had resolved on a divorce, and had even begun to take proceedings. I won't conceal from you that in beginning this I was in uncertainty, I was in misery; I will confess that I was pursued by a desire to revenge myself on you and on her. When I got the telegram, I came here with the same feelings; I will say more, I longed for her death. But...." He paused, pondering whether to disclose or not to disclose his feeling to him. "But I saw her and forgave her. And the happiness of forgiveness has revealed to me my duty. I forgive completely. I would offer the other cheek, I would give my cloak if my coat be taken. I pray to God only not to take from me the bliss of forgiveness!" Tears stood in his eyes, and the luminous, serene look in them impressed Vronsky. "This is my position: you can trample me in the mud, make me the laughing-stock of the world, I will not abandon her, and I will never utter a word of reproach to you," Alexey Alexandrovitch went on. "My duty is clearly marked for me; I ought to be with her, and I will be. If she wishes to see you, I will let you know, but now I suppose it would be better for you to go away." He got up, and sobs cut short his words. Vronsky too was getting up, and in a stooping, not yet erect posture, looked up at him from under his brows. He did not understand Alexey Alexandrovitch's feeling, but he felt that it was something higher and even unattainable for him with his view of life. Chapter 18 After the conversation with Alexey Alexandrovitch, Vronsky went out onto the steps of the Karenins' house and stood still, with difficulty remembering where he was, and where he ought to walk or drive. He felt disgraced, humiliated, guilty, and deprived of all possibility of washing away his humiliation. He felt thrust out of the beaten track along which he had so proudly and lightly walked till then. All the habits and rules of his life that had seemed so firm, had turned out suddenly false and inapplicable. The betrayed husband, who had figured till that time as a pitiful creature, an incidental and somewhat ludicrous obstacle to his happiness, had suddenly been summoned by her herself, elevated to an awe-inspiring pinnacle, and on the pinnacle that husband had shown himself, not malignant, not false, not ludicrous, but kind and straightforward and large. Vronsky could not but feel this, and the parts were suddenly reversed. Vronsky felt his elevation and his own abasement, his truth and his own falsehood. He felt that the husband was magnanimous even in his sorrow, while he had been base and petty in his deceit. But this sense of his own humiliation before the man he had unjustly despised made up only a small part of his misery. He felt unutterably wretched now, for his passion for Anna, which had seemed to him of late to be growing cooler, now that he knew he had lost her forever, was stronger than ever it had been. He had seen all of her in her illness, had come to know her very soul, and it seemed to him that he had never loved her till then. And now when he had learned to know her, to love her as she should be loved, he had been humiliated before her, and had lost her forever, leaving with her nothing of himself but a shameful memory. Most terrible of all had been his ludicrous, shameful position when Alexey Alexandrovitch had pulled his hands away from his humiliated face. He stood on the steps of the Karenins' house like one distraught, and did not know what to do. "A sledge, sir?" asked the porter. "Yes, a sledge." On getting home, after three sleepless nights, Vronsky, without undressing, lay down flat on the sofa, clasping his hands and laying his head on them. His head was heavy. Images, memories, and ideas of the strangest description followed one another with extraordinary rapidity and vividness. First it was the medicine he had poured out for the patient and spilt over the spoon, then the midwife's white hands, then the queer posture of Alexey Alexandrovitch on the floor beside the bed. "To sleep! To forget!" he said to himself with the serene confidence of a healthy man that if he is tired and sleepy, he will go to sleep at once. And the same instant his head did begin to feel drowsy and he began to drop off into forgetfulness. The waves of the sea of unconsciousness had begun to meet over his head, when all at once--it was as though a violent shock of electricity had passed over him. He started so that he leaped up on the springs of the sofa, and leaning on his arms got in a panic onto his knees. His eyes were wide open as though he had never been asleep. The heaviness in his head and the weariness in his limbs that he had felt a minute before had suddenly gone. "You may trample me in the mud," he heard Alexey Alexandrovitch's words and saw him standing before him, and saw Anna's face with its burning flush and glittering eyes, gazing with love and tenderness not at him but at Alexey Alexandrovitch; he saw his own, as he fancied, foolish and ludicrous figure when Alexey Alexandrovitch took his hands away from his face. He stretched out his legs again and flung himself on the sofa in the same position and shut his eyes. "To sleep! To forget!" he repeated to himself. But with his eyes shut he saw more distinctly than ever Anna's face as it had been on the memorable evening before the races. "That is not and will not be, and she wants to wipe it out of her memory. But I cannot live without it. How can we be reconciled? how can we be reconciled?" he said aloud, and unconsciously began to repeat these words. This repetition checked the rising up of fresh images and memories, which he felt were thronging in his brain. But repeating words did not check his imagination for long. Again in extraordinarily rapid succession his best moments rose before his mind, and then his recent humiliation. "Take away his hands," Anna's voice says. He takes away his hands and feels the shamestruck and idiotic expression of his face. He still lay down, trying to sleep, though he felt there was not the smallest hope of it, and kept repeating stray words from some chain of thought, trying by this to check the rising flood of fresh images. He listened, and heard in a strange, mad whisper words repeated: "I did not appreciate it, did not make enough of it. I did not appreciate it, did not make enough of it." "What's this? Am I going out of my mind?" he said to himself. "Perhaps. What makes men go out of their minds; what makes men shoot themselves?" he answered himself, and opening his eyes, he saw with wonder an embroidered cushion beside him, worked by Varya, his brother's wife. He touched the tassel of the cushion, and tried to think of Varya, of when he had seen her last. But to think of anything extraneous was an agonizing effort. "No, I must sleep!" He moved the cushion up, and pressed his head into it, but he had to make an effort to keep his eyes shut. He jumped up and sat down. "That's all over for me," he said to himself. "I must think what to do. What is left?" His mind rapidly ran through his life apart from his love of Anna. "Ambition? Serpuhovskoy? Society? The court?" He could not come to a pause anywhere. All of it had had meaning before, but now there was no reality in it. He got up from the sofa, took off his coat, undid his belt, and uncovering his hairy chest to breathe more freely, walked up and down the room. "This is how people go mad," he repeated, "and how they shoot themselves ... to escape humiliation," he added slowly. He went to the door and closed it, then with fixed eyes and clenched teeth he went up to the table, took a revolver, looked round him, turned it to a loaded barrel, and sank into thought. For two minutes, his head bent forward with an expression of an intense effort of thought, he stood with the revolver in his hand, motionless, thinking. "Of course," he said to himself, as though a logical, continuous, and clear chain of reasoning had brought him to an indubitable conclusion. In reality this "of course," that seemed convincing to him, was simply the result of exactly the same circle of memories and images through which he had passed ten times already during the last hour--memories of happiness lost forever. There was the same conception of the senselessness of everything to come in life, the same consciousness of humiliation. Even the sequence of these images and emotions was the same. "Of course," he repeated, when for the third time his thought passed again round the same spellbound circle of memories and images, and pulling the revolver to the left side of his chest, and clutching it vigorously with his whole hand, as it were, squeezing it in his fist, he pulled the trigger. He did not hear the sound of the shot, but a violent blow on his chest sent him reeling. He tried to clutch at the edge of the table, dropped the revolver, staggered, and sat down on the ground, looking about him in astonishment. He did not recognize his room, looking up from the ground, at the bent legs of the table, at the wastepaper basket, and the tiger-skin rug. The hurried, creaking steps of his servant coming through the drawing room brought him to his senses. He made an effort at thought, and was aware that he was on the floor; and seeing blood on the tiger-skin rug and on his arm, he knew he had shot himself. "Idiotic! Missed!" he said, fumbling after the revolver. The revolver was close beside him--he sought further off. Still feeling for it, he stretched out to the other side, and not being strong enough to keep his balance, fell over, streaming with blood. The elegant, whiskered manservant, who used to be continually complaining to his acquaintances of the delicacy of his nerves, was so panic-stricken on seeing his master lying on the floor, that he left him losing blood while he ran for assistance. An hour later Varya, his brother's wife, had arrived, and with the assistance of three doctors, whom she had sent for in all directions, and who all appeared at the same moment, she got the wounded man to bed, and remained to nurse him. Chapter 19 The mistake made by Alexey Alexandrovitch in that, when preparing for seeing his wife, he had overlooked the possibility that her repentance might be sincere, and he might forgive her, and she might not die--this mistake was two months after his return from Moscow brought home to him in all its significance. But the mistake made by him had arisen not simply from his having overlooked that contingency, but also from the fact that until that day of his interview with his dying wife, he had not known his own heart. At his sick wife's bedside he had for the first time in his life given way to that feeling of sympathetic suffering always roused in him by the sufferings of others, and hitherto looked on by him with shame as a harmful weakness. And pity for her, and remorse for having desired her death, and most of all, the joy of forgiveness, made him at once conscious, not simply of the relief of his own sufferings, but of a spiritual peace he had never experienced before. He suddenly felt that the very thing that was the source of his sufferings had become the source of his spiritual joy; that what had seemed insoluble while he was judging, blaming, and hating, had become clear and simple when he forgave and loved. He forgave his wife and pitied her for her sufferings and her remorse. He forgave Vronsky, and pitied him, especially after reports reached him of his despairing action. He felt more for his son than before. And he blamed himself now for having taken too little interest in him. But for the little newborn baby he felt a quite peculiar sentiment, not of pity, only, but of tenderness. At first, from a feeling of compassion alone, he had been interested in the delicate little creature, who was not his child, and who was cast on one side during her mother's illness, and would certainly have died if he had not troubled about her, and he did not himself observe how fond he became of her. He would go into the nursery several times a day, and sit there for a long while, so that the nurses, who were at first afraid of him, got quite used to his presence. Sometimes for half an hour at a stretch he would sit silently gazing at the saffron-red, downy, wrinkled face of the sleeping baby, watching the movements of the frowning brows, and the fat little hands, with clenched fingers, that rubbed the little eyes and nose. At such moments particularly, Alexey Alexandrovitch had a sense of perfect peace and inward harmony, and saw nothing extraordinary in his position, nothing that ought to be changed. But as time went on, he saw more and more distinctly that however natural the position now seemed to him, he would not long be allowed to remain in it. He felt that besides the blessed spiritual force controlling his soul, there was another, a brutal force, as powerful, or more powerful, which controlled his life, and that this force would not allow him that humble peace he longed for. He felt that everyone was looking at him with inquiring wonder, that he was not understood, and that something was expected of him. Above all, he felt the instability and unnaturalness of his relations with his wife. When the softening effect of the near approach of death had passed away, Alexey Alexandrovitch began to notice that Anna was afraid of him, ill at ease with him, and could not look him straight in the face. She seemed to be wanting, and not daring, to tell him something; and as though foreseeing their present relations could not continue, she seemed to be expecting something from him. Towards the end of February it happened that Anna's baby daughter, who had been named Anna too, fell ill. Alexey Alexandrovitch was in the nursery in the morning, and leaving orders for the doctor to be sent for, he went to his office. On finishing his work, he returned home at four. Going into the hall he saw a handsome groom, in a braided livery and a bear fur cape, holding a white fur cloak. "Who is here?" asked Alexey Alexandrovitch. "Princess Elizaveta Federovna Tverskaya," the groom answered, and it seemed to Alexey Alexandrovitch that he grinned. During all this difficult time Alexey Alexandrovitch had noticed that his worldly acquaintances, especially women, took a peculiar interest in him and his wife. All these acquaintances he observed with difficulty concealing their mirth at something; the same mirth that he had perceived in the lawyer's eyes, and just now in the eyes of this groom. Everyone seemed, somehow, hugely delighted, as though they had just been at a wedding. When they met him, with ill-disguised enjoyment they inquired after his wife's health. The presence of Princess Tverskaya was unpleasant to Alexey Alexandrovitch from the memories associated with her, and also because he disliked her, and he went straight to the nursery. In the day nursery Seryozha, leaning on the table with his legs on a chair, was drawing and chatting away merrily. The English governess, who had during Anna's illness replaced the French one, was sitting near the boy knitting a shawl. She hurriedly got up, curtseyed, and pulled Seryozha. Alexey Alexandrovitch stroked his son's hair, answered the governess's inquiries about his wife, and asked what the doctor had said of the baby. "The doctor said it was nothing serious, and he ordered a bath, sir." "But she is still in pain," said Alexey Alexandrovitch, listening to the baby's screaming in the next room. "I think it's the wet-nurse, sir," the Englishwoman said firmly. "What makes you think so?" he asked, stopping short. "It's just as it was at Countess Paul's, sir. They gave the baby medicine, and it turned out that the baby was simply hungry: the nurse had no milk, sir." Alexey Alexandrovitch pondered, and after standing still a few seconds he went in at the other door. The baby was lying with its head thrown back, stiffening itself in the nurse's arms, and would not take the plump breast offered it; and it never ceased screaming in spite of the double hushing of the wet-nurse and the other nurse, who was bending over her. "Still no better?" said Alexey Alexandrovitch. "She's very restless," answered the nurse in a whisper. "Miss Edwarde says that perhaps the wet-nurse has no milk," he said. "I think so too, Alexey Alexandrovitch." "Then why didn't you say so?" "Who's one to say it to? Anna Arkadyevna still ill..." said the nurse discontentedly. The nurse was an old servant of the family. And in her simple words there seemed to Alexey Alexandrovitch an allusion to his position. The baby screamed louder than ever, struggling and sobbing. The nurse, with a gesture of despair, went to it, took it from the wet-nurse's arms, and began walking up and down, rocking it. "You must ask the doctor to examine the wet-nurse," said Alexey Alexandrovitch. The smartly dressed and healthy-looking nurse, frightened at the idea of losing her place, muttered something to herself, and covering her bosom, smiled contemptuously at the idea of doubts being cast on her abundance of milk. In that smile, too, Alexey Alexandrovitch saw a sneer at his position. "Luckless child!" said the nurse, hushing the baby, and still walking up and down with it. Alexey Alexandrovitch sat down, and with a despondent and suffering face watched the nurse walking to and fro. When the child at last was still, and had been put in a deep bed, and the nurse, after smoothing the little pillow, had left her, Alexey Alexandrovitch got up, and walking awkwardly on tiptoe, approached the baby. For a minute he was still, and with the same despondent face gazed at the baby; but all at once a smile, that moved his hair and the skin of his forehead, came out on his face, and he went as softly out of the room. In the dining room he rang the bell, and told the servant who came in to send again for the doctor. He felt vexed with his wife for not being anxious about this exquisite baby, and in this vexed humor he had no wish to go to her; he had no wish, either, to see Princess Betsy. But his wife might wonder why he did not go to her as usual; and so, overcoming his disinclination, he went towards the bedroom. As he walked over the soft rug towards the door, he could not help overhearing a conversation he did not want to hear. "If he hadn't been going away, I could have understood your answer and his too. But your husband ought to be above that," Betsy was saying. "It's not for my husband; for myself I don't wish it. Don't say that!" answered Anna's excited voice. "Yes, but you must care to say good-bye to a man who has shot himself on your account...." "That's just why I don't want to." With a dismayed and guilty expression, Alexey Alexandrovitch stopped and would have gone back unobserved. But reflecting that this would be undignified, he turned back again, and clearing his throat, he went up to the bedroom. The voices were silent, and he went in. Anna, in a gray dressing gown, with a crop of short clustering black curls on her round head, was sitting on a settee. The eagerness died out of her face, as it always did, at the sight of her husband; she dropped her head and looked round uneasily at Betsy. Betsy, dressed in the height of the latest fashion, in a hat that towered somewhere over her head like a shade on a lamp, in a blue dress with violet crossway stripes slanting one way on the bodice and the other way on the skirt, was sitting beside Anna, her tall flat figure held erect. Bowing her head, she greeted Alexey Alexandrovitch with an ironical smile. "Ah!" she said, as though surprised. "I'm very glad you're at home. You never put in an appearance anywhere, and I haven't seen you ever since Anna has been ill. I have heard all about it--your anxiety. Yes, you're a wonderful husband!" she said, with a meaning and affable air, as though she were bestowing an order of magnanimity on him for his conduct to his wife. Alexey Alexandrovitch bowed frigidly, and kissing his wife's hand, asked how she was. "Better, I think," she said, avoiding his eyes. "But you've rather a feverish-looking color," he said, laying stress on the word "feverish." "We've been talking too much," said Betsy. "I feel it's selfishness on my part, and I am going away." She got up, but Anna, suddenly flushing, quickly caught at her hand. "No, wait a minute, please. I must tell you ... no, you." she turned to Alexey Alexandrovitch, and her neck and brow were suffused with crimson. "I won't and can't keep anything secret from you," she said. Alexey Alexandrovitch cracked his fingers and bowed his head. "Betsy's been telling me that Count Vronsky wants to come here to say good-bye before his departure for Tashkend." She did not look at her husband, and was evidently in haste to have everything out, however hard it might be for her. "I told her I could not receive him." "You said, my dear, that it would depend on Alexey Alexandrovitch," Betsy corrected her. "Oh, no, I can't receive him; and what object would there...." She stopped suddenly, and glanced inquiringly at her husband (he did not look at her). "In short, I don't wish it...." Alexey Alexandrovitch advanced and would have taken her hand. Her first impulse was to jerk back her hand from the damp hand with big swollen veins that sought hers, but with an obvious effort to control herself she pressed his hand. "I am very grateful to you for your confidence, but..." he said, feeling with confusion and annoyance that what he could decide easily and clearly by himself, he could not discuss before Princess Tverskaya, who to him stood for the incarnation of that brute force which would inevitably control him in the life he led in the eyes of the world, and hinder him from giving way to his feeling of love and forgiveness. He stopped short, looking at Princess Tverskaya. "Well, good-bye, my darling," said Betsy, getting up. She kissed Anna, and went out. Alexey Alexandrovitch escorted her out. "Alexey Alexandrovitch! I know you are a truly magnanimous man," said Betsy, stopping in the little drawing-room, and with special warmth shaking hands with him once more. "I am an outsider, but I so love her and respect you that I venture to advise. Receive him. Alexey Vronsky is the soul of honor, and he is going away to Tashkend." "Thank you, princess, for your sympathy and advice. But the question of whether my wife can or cannot see anyone she must decide herself." He said this from habit, lifting his brows with dignity, and reflected immediately that whatever his words might be, there could be no dignity in his position. And he saw this by the suppressed, malicious, and ironical smile with which Betsy glanced at him after this phrase. Chapter 20 Alexey Alexandrovitch took leave of Betsy in the drawing room, and went to his wife. She was lying down, but hearing his steps she sat up hastily in her former attitude, and looked in a scared way at him. He saw she had been crying. "I am very grateful for your confidence in me." He repeated gently in Russian the phrase he had said in Betsy's presence in French, and sat down beside her. When he spoke to her in Russian, using the Russian "thou" of intimacy and affection, it was insufferably irritating to Anna. "And I am very grateful for your decision. I, too, imagine that since he is going away, there is no sort of necessity for Count Vronsky to come here. However, if..." "But I've said so already, so why repeat it?" Anna suddenly interrupted him with an irritation she could not succeed in repressing. "No sort of necessity," she thought, "for a man to come and say good-bye to the woman he loves, for whom he was ready to ruin himself, and has ruined himself, and who cannot live without him. No sort of necessity!" she compressed her lips, and dropped her burning eyes to his hands with their swollen veins. They were rubbing each other. "Let us never speak of it," she added more calmly. "I have left this question to you to decide, and I am very glad to see..." Alexey Alexandrovitch was beginning. "That my wish coincides with your own," she finished quickly, exasperated at his talking so slowly while she knew beforehand all he would say. "Yes," he assented; "and Princess Tverskaya's interference in the most difficult private affairs is utterly uncalled for. She especially..." "I don't believe a word of what's said about her," said Anna quickly. "I know she really cares for me." Alexey Alexandrovitch sighed and said nothing. She played nervously with the tassel of her dressing-gown, glancing at him with that torturing sensation of physical repulsion for which she blamed herself, though she could not control it. Her only desire now was to be rid of his oppressive presence. "I have just sent for the doctor," said Alexey Alexandrovitch. "I am very well; what do I want the doctor for?" "No, the little one cries, and they say the nurse hasn't enough milk." "Why didn't you let me nurse her, when I begged to? Anyway" (Alexey Alexandrovitch knew what was meant by that "anyway"), "she's a baby, and they're killing her." She rang the bell and ordered the baby to be brought her. "I begged to nurse her, I wasn't allowed to, and now I'm blamed for it." "I don't blame..." "Yes, you do blame me! My God! why didn't I die!" And she broke into sobs. "Forgive me, I'm nervous, I'm unjust," she said, controlling herself, "but do go away..." "No, it can't go on like this," Alexey Alexandrovitch said to himself decidedly as he left his wife's room. Never had the impossibility of his position in the world's eyes, and his wife's hatred of him, and altogether the might of that mysterious brutal force that guided his life against his spiritual inclinations, and exacted conformity with its decrees and change in his attitude to his wife, been presented to him with such distinctness as that day. He saw clearly that all the world and his wife expected of him something, but what exactly, he could not make out. He felt that this was rousing in his soul a feeling of anger destructive of his peace of mind and of all the good of his achievement. He believed that for Anna herself it would be better to break off all relations with Vronsky; but if they all thought this out of the question, he was even ready to allow these relations to be renewed, so long as the children were not disgraced, and he was not deprived of them nor forced to change his position. Bad as this might be, it was anyway better than a rupture, which would put her in a hopeless and shameful position, and deprive him of everything he cared for. But he felt helpless; he knew beforehand that every one was against him, and that he would not be allowed to do what seemed to him now so natural and right, but would be forced to do what was wrong, though it seemed the proper thing to them. Chapter 21 Before Betsy had time to walk out of the drawing-room, she was met in the doorway by Stepan Arkadyevitch, who had just come from Yeliseev's, where a consignment of fresh oysters had been received. "Ah! princess! what a delightful meeting!" he began. "I've been to see you." "A meeting for one minute, for I'm going," said Betsy, smiling and putting on her glove. "Don't put on your glove yet, princess; let me kiss your hand. There's nothing I'm so thankful to the revival of the old fashions for as the kissing the hand." He kissed Betsy's hand. "When shall we see each other?" "You don't deserve it," answered Betsy, smiling. "Oh, yes, I deserve a great deal, for I've become a most serious person. I don't only manage my own affairs, but other people's too," he said, with a significant expression. "Oh, I'm so glad!" answered Betsy, at once understanding that he was speaking of Anna. And going back into the drawing room, they stood in a corner. "He's killing her," said Betsy in a whisper full of meaning. "It's impossible, impossible..." "I'm so glad you think so," said Stepan Arkadyevitch, shaking his head with a serious and sympathetically distressed expression, "that's what I've come to Petersburg for." "The whole town's talking of it," she said. "It's an impossible position. She pines and pines away. He doesn't understand that she's one of those women who can't trifle with their feelings. One of two things: either let him take her away, act with energy, or give her a divorce. This is stifling her." "Yes, yes ... just so..." Oblonsky said, sighing. "That's what I've come for. At least not solely for that ... I've been made a _Kammerherr_; of course, one has to say thank you. But the chief thing was having to settle this." "Well, God help you!" said Betsy. After accompanying Betsy to the outside hall, once more kissing her hand above the glove, at the point where the pulse beats, and murmuring to her such unseemly nonsense that she did not know whether to laugh or be angry, Stepan Arkadyevitch went to his sister. He found her in tears. Although he happened to be bubbling over with good spirits, Stepan Arkadyevitch immediately and quite naturally fell into the sympathetic, poetically emotional tone which harmonized with her mood. He asked her how she was, and how she had spent the morning. "Very, very miserably. Today and this morning and all past days and days to come," she said. "I think you're giving way to pessimism. You must rouse yourself, you must look life in the face. I know it's hard, but..." "I have heard it said that women love men even for their vices," Anna began suddenly, "but I hate him for his virtues. I can't live with him. Do you understand? the sight of him has a physical effect on me, it makes me beside myself. I can't, I can't live with him. What am I to do? I have been unhappy, and used to think one couldn't be more unhappy, but the awful state of things I am going through now, I could never have conceived. Would you believe it, that knowing he's a good man, a splendid man, that I'm not worth his little finger, still I hate him. I hate him for his generosity. And there's nothing left for me but..." She would have said death, but Stepan Arkadyevitch would not let her finish. "You are ill and overwrought," he said; "believe me, you're exaggerating dreadfully. There's nothing so terrible in it." And Stepan Arkadyevitch smiled. No one else in Stepan Arkadyevitch's place, having to do with such despair, would have ventured to smile (the smile would have seemed brutal); but in his smile there was so much of sweetness and almost feminine tenderness that his smile did not wound, but softened and soothed. His gentle, soothing words and smiles were as soothing and softening as almond oil. And Anna soon felt this. "No, Stiva," she said, "I'm lost, lost! worse than lost! I can't say yet that all is over; on the contrary, I feel that it's not over. I'm an overstrained string that must snap. But it's not ended yet ... and it will have a fearful end." "No matter, we must let the string be loosened, little by little. There's no position from which there is no way of escape." "I have thought, and thought. Only one..." Again he knew from her terrified eyes that this one way of escape in her thought was death, and he would not let her say it. "Not at all," he said. "Listen to me. You can't see your own position as I can. Let me tell you candidly my opinion." Again he smiled discreetly his almond-oil smile. "I'll begin from the beginning. You married a man twenty years older than yourself. You married him without love and not knowing what love was. It was a mistake, let's admit." "A fearful mistake!" said Anna. "But I repeat, it's an accomplished fact. Then you had, let us say, the misfortune to love a man not your husband. That was a misfortune; but that, too, is an accomplished fact. And your husband knew it and forgave it." He stopped at each sentence, waiting for her to object, but she made no answer. "That's so. Now the question is: can you go on living with your husband? Do you wish it? Does he wish it?" "I know nothing, nothing." "But you said yourself that you can't endure him." "No, I didn't say so. I deny it. I can't tell, I don't know anything about it." "Yes, but let..." "You can't understand. I feel I'm lying head downwards in a sort of pit, but I ought not to save myself. And I can't . . ." "Never mind, we'll slip something under and pull you out. I understand you: I understand that you can't take it on yourself to express your wishes, your feelings." "There's nothing, nothing I wish ... except for it to be all over." "But he sees this and knows it. And do you suppose it weighs on him any less than on you? You're wretched, he's wretched, and what good can come of it? while divorce would solve the difficulty completely." With some effort Stepan Arkadyevitch brought out his central idea, and looked significantly at her. She said nothing, and shook her cropped head in dissent. But from the look in her face, that suddenly brightened into its old beauty, he saw that if she did not desire this, it was simply because it seemed to her unattainable happiness. "I'm awfully sorry for you! And how happy I should be if I could arrange things!" said Stepan Arkadyevitch, smiling more boldly. "Don't speak, don't say a word! God grant only that I may speak as I feel. I'm going to him." Anna looked at him with dreamy, shining eyes, and said nothing. Chapter 22 Stepan Arkadyevitch, with the same somewhat solemn expression with which he used to take his presidential chair at his board, walked into Alexey Alexandrovitch's room. Alexey Alexandrovitch was walking about his room with his hands behind his back, thinking of just what Stepan Arkadyevitch had been discussing with his wife. "I'm not interrupting you?" said Stepan Arkadyevitch, on the sight of his brother-in-law becoming suddenly aware of a sense of embarrassment unusual with him. To conceal this embarrassment he took out a cigarette case he had just bought that opened in a new way, and sniffing the leather, took a cigarette out of it. "No. Do you want anything?" Alexey Alexandrovitch asked without eagerness. "Yes, I wished ... I wanted ... yes, I wanted to talk to you," said Stepan Arkadyevitch, with surprise aware of an unaccustomed timidity. This feeling was so unexpected and so strange that he did not believe it was the voice of conscience telling him that what he was meaning to do was wrong. Stepan Arkadyevitch made an effort and struggled with the timidity that had come over him. "I hope you believe in my love for my sister and my sincere affection and respect for you," he said, reddening. Alexey Alexandrovitch stood still and said nothing, but his face struck Stepan Arkadyevitch by its expression of an unresisting sacrifice. "I intended ... I wanted to have a little talk with you about my sister and your mutual position," he said, still struggling with an unaccustomed constraint. Alexey Alexandrovitch smiled mournfully, looked at his brother-in-law, and without answering went up to the table, took from it an unfinished letter, and handed it to his brother-in-law. "I think unceasingly of the same thing. And here is what I had begun writing, thinking I could say it better by letter, and that my presence irritates her," he said, as he gave him the letter. Stepan Arkadyevitch took the letter, looked with incredulous surprise at the lusterless eyes fixed so immovably on him, and began to read. "I see that my presence is irksome to you. Painful as it is to me to believe it, I see that it is so, and cannot be otherwise. I don't blame you, and God is my witness that on seeing you at the time of your illness I resolved with my whole heart to forget all that had passed between us and to begin a new life. I do not regret, and shall never regret, what I have done; but I have desired one thing--your good, the good of your soul--and now I see I have not attained that. Tell me yourself what will give you true happiness and peace to your soul. I put myself entirely in your hands, and trust to your feeling of what's right." Stepan Arkadyevitch handed back the letter, and with the same surprise continued looking at his brother-in-law, not knowing what to say. This silence was so awkward for both of them that Stepan Arkadyevitch's lips began twitching nervously, while he still gazed without speaking at Karenin's face. "That's what I wanted to say to her," said Alexey Alexandrovitch, turning away. "Yes, yes..." said Stepan Arkadyevitch, not able to answer for the tears that were choking him. "Yes, yes, I understand you," he brought out at last. "I want to know what she would like," said Alexey Alexandrovitch. "I am afraid she does not understand her own position. She is not a judge," said Stepan Arkadyevitch, recovering himself. "She is crushed, simply crushed by your generosity. If she were to read this letter, she would be incapable of saying anything, she would only hang her head lower than ever." "Yes, but what's to be done in that case? how explain, how find out her wishes?" "If you will allow me to give my opinion, I think that it lies with you to point out directly the steps you consider necessary to end the position." "So you consider it must be ended?" Alexey Alexandrovitch interrupted him. "But how?" he added, with a gesture of his hands before his eyes not usual with him. "I see no possible way out of it." "There is some way of getting out of every position," said Stepan Arkadyevitch, standing up and becoming more cheerful. "There was a time when you thought of breaking off.... If you are convinced now that you cannot make each other happy..." "Happiness may be variously understood. But suppose that I agree to everything, that I want nothing: what way is there of getting out of our position?" "If you care to know my opinion," said Stepan Arkadyevitch with the same smile of softening, almond-oil tenderness with which he had been talking to Anna. His kindly smile was so winning that Alexey Alexandrovitch, feeling his own weakness and unconsciously swayed by it, was ready to believe what Stepan Arkadyevitch was saying. "She will never speak out about it. But one thing is possible, one thing she might desire," he went on, "that is the cessation of your relations and all memories associated with them. To my thinking, in your position what's essential is the formation of a new attitude to one another. And that can only rest on a basis of freedom on both sides." "Divorce," Alexey Alexandrovitch interrupted, in a tone of aversion. "Yes, I imagine that divorce--yes, divorce," Stepan Arkadyevitch repeated, reddening. "That is from every point of view the most rational course for married people who find themselves in the position you are in. What can be done if married people find that life is impossible for them together? That may always happen." Alexey Alexandrovitch sighed heavily and closed his eyes. "There's only one point to be considered: is either of the parties desirous of forming new ties? If not, it is very simple," said Stepan Arkadyevitch, feeling more and more free from constraint. Alexey Alexandrovitch, scowling with emotion, muttered something to himself, and made no answer. All that seemed so simple to Stepan Arkadyevitch, Alexey Alexandrovitch had thought over thousands of times. And, so far from being simple, it all seemed to him utterly impossible. Divorce, the details of which he knew by this time, seemed to him now out of the question, because the sense of his own dignity and respect for religion forbade his taking upon himself a fictitious charge of adultery, and still more suffering his wife, pardoned and beloved by him, to be caught in the fact and put to public shame. Divorce appeared to him impossible also on other still more weighty grounds. What would become of his son in case of a divorce? To leave him with his mother was out of the question. The divorced mother would have her own illegitimate family, in which his position as a stepson and his education would not be good. Keep him with him? He knew that would be an act of vengeance on his part, and that he did not want. But apart from this, what more than all made divorce seem impossible to Alexey Alexandrovitch was, that by consenting to a divorce he would be completely ruining Anna. The saying of Darya Alexandrovna at Moscow, that in deciding on a divorce he was thinking of himself, and not considering that by this he would be ruining her irrevocably, had sunk into his heart. And connecting this saying with his forgiveness of her, with his devotion to the children, he understood it now in his own way. To consent to a divorce, to give her her freedom, meant in his thoughts to take from himself the last tie that bound him to life--the children whom he loved; and to take from her the last prop that stayed her on the path of right, to thrust her down to her ruin. If she were divorced, he knew she would join her life to Vronsky's, and their tie would be an illegitimate and criminal one, since a wife, by the interpretation of the ecclesiastical law, could not marry while her husband was living. "She will join him, and in a year or two he will throw her over, or she will form a new tie," thought Alexey Alexandrovitch. "And I, by agreeing to an unlawful divorce, shall be to blame for her ruin." He had thought it all over hundreds of times, and was convinced that a divorce was not at all simple, as Stepan Arkadyevitch had said, but was utterly impossible. He did not believe a single word Stepan Arkadyevitch said to him; to every word he had a thousand objections to make, but he listened to him, feeling that his words were the expression of that mighty brutal force which controlled his life and to which he would have to submit. "The only question is on what terms you agree to give her a divorce. She does not want anything, does not dare ask you for anything, she leaves it all to your generosity." "My God, my God! what for?" thought Alexey Alexandrovitch, remembering the details of divorce proceedings in which the husband took the blame on himself, and with just the same gesture with which Vronsky had done the same, he hid his face for shame in his hands. "You are distressed, I understand that. But if you think it over..." "Whosoever shall smite thee on thy right cheek, turn to him the other also; and if any man take away thy coat, let him have thy cloak also," thought Alexey Alexandrovitch. "Yes, yes!" he cried in a shrill voice. "I will take the disgrace on myself, I will give up even my son, but ... but wouldn't it be better to let it alone? Still you may do as you like..." And turning away so that his brother-in-law could not see him, he sat down on a chair at the window. There was bitterness, there was shame in his heart, but with bitterness and shame he felt joy and emotion at the height of his own meekness. Stepan Arkadyevitch was touched. He was silent for a space. "Alexey Alexandrovitch, believe me, she appreciates your generosity," he said. "But it seems it was the will of God," he added, and as he said it felt how foolish a remark it was, and with difficulty repressed a smile at his own foolishness. Alexey Alexandrovitch would have made some reply, but tears stopped him. "This is an unhappy fatality, and one must accept it as such. I accept the calamity as an accomplished fact, and am doing my best to help both her and you," said Stepan Arkadyevitch. When he went out of his brother-in-law's room he was touched, but that did not prevent him from being glad he had successfully brought the matter to a conclusion, for he felt certain Alexey Alexandrovitch would not go back on his words. To this satisfaction was added the fact that an idea had just struck him for a riddle turning on his successful achievement, that when the affair was over he would ask his wife and most intimate friends. He put this riddle into two or three different ways. "But I'll work it out better than that," he said to himself with a smile. Chapter 23 Vronsky's wound had been a dangerous one, though it did not touch the heart, and for several days he had lain between life and death. The first time he was able to speak, Varya, his brother's wife, was alone in the room. "Varya," he said, looking sternly at her, "I shot myself by accident. And please never speak of it, and tell everyone so. Or else it's too ridiculous." Without answering his words, Varya bent over him, and with a delighted smile gazed into his face. His eyes were clear, not feverish; but their expression was stern. "Thank God!" she said. "You're not in pain?" "A little here." He pointed to his breast. "Then let me change your bandages." In silence, stiffening his broad jaws, he looked at her while she bandaged him up. When she had finished he said: "I'm not delirious. Please manage that there may be no talk of my having shot myself on purpose." "No one does say so. Only I hope you won't shoot yourself by accident any more," she said, with a questioning smile. "Of course I won't, but it would have been better..." And he smiled gloomily. In spite of these words and this smile, which so frightened Varya, when the inflammation was over and he began to recover, he felt that he was completely free from one part of his misery. By his action he had, as it were, washed away the shame and humiliation he had felt before. He could now think calmly of Alexey Alexandrovitch. He recognized all his magnanimity, but he did not now feel himself humiliated by it. Besides, he got back again into the beaten track of his life. He saw the possibility of looking men in the face again without shame, and he could live in accordance with his own habits. One thing he could not pluck out of his heart, though he never ceased struggling with it, was the regret, amounting to despair, that he had lost her forever. That now, having expiated his sin against the husband, he was bound to renounce her, and never in future to stand between her with her repentance and her husband, he had firmly decided in his heart; but he could not tear out of his heart his regret at the loss of her love, he could not erase from his memory those moments of happiness that he had so little prized at the time, and that haunted him in all their charm. Serpuhovskoy had planned his appointment at Tashkend, and Vronsky agreed to the proposition without the slightest hesitation. But the nearer the time of departure came, the bitterer was the sacrifice he was making to what he thought his duty. His wound had healed, and he was driving about making preparations for his departure for Tashkend. "To see her once and then to bury myself, to die," he thought, and as he was paying farewell visits, he uttered this thought to Betsy. Charged with this commission, Betsy had gone to Anna, and brought him back a negative reply. "So much the better," thought Vronsky, when he received the news. "It was a weakness, which would have shattered what strength I have left." Next day Betsy herself came to him in the morning, and announced that she had heard through Oblonsky as a positive fact that Alexey Alexandrovitch had agreed to a divorce, and that therefore Vronsky could see Anna. Without even troubling himself to see Betsy out of his flat, forgetting all his resolutions, without asking when he could see her, where her husband was, Vronsky drove straight to the Karenins'. He ran up the stairs seeing no one and nothing, and with a rapid step, almost breaking into a run, he went into her room. And without considering, without noticing whether there was anyone in the room or not, he flung his arms round her, and began to cover her face, her hands, her neck with kisses. Anna had been preparing herself for this meeting, had thought what she would say to him, but she did not succeed in saying anything of it; his passion mastered her. She tried to calm him, to calm herself, but it was too late. His feeling infected her. Her lips trembled so that for a long while she could say nothing. "Yes, you have conquered me, and I am yours," she said at last, pressing his hands to her bosom. "So it had to be," he said. "So long as we live, it must be so. I know it now." "That's true," she said, getting whiter and whiter, and embracing his head. "Still there is something terrible in it after all that has happened." "It will all pass, it will all pass; we shall be so happy. Our love, if it could be stronger, will be strengthened by there being something terrible in it," he said, lifting his head and parting his strong teeth in a smile. And she could not but respond with a smile--not to his words, but to the love in his eyes. She took his hand and stroked her chilled cheeks and cropped head with it. "I don't know you with this short hair. You've grown so pretty. A boy. But how pale you are!" "Yes, I'm very weak," she said, smiling. And her lips began trembling again. "We'll go to Italy; you will get strong," he said. "Can it be possible we could be like husband and wife, alone, your family with you?" she said, looking close into his eyes. "It only seems strange to me that it can ever have been otherwise." "Stiva says that _he_ has agreed to everything, but I can't accept _his_ generosity," she said, looking dreamily past Vronsky's face. "I don't want a divorce; it's all the same to me now. Only I don't know what he will decide about Seryozha." He could not conceive how at this moment of their meeting she could remember and think of her son, of divorce. What did it all matter? "Don't speak of that, don't think of it," he said, turning her hand in his, and trying to draw her attention to him; but still she did not look at him. "Oh, why didn't I die! it would have been better," she said, and silent tears flowed down both her cheeks; but she tried to smile, so as not to wound him. To decline the flattering and dangerous appointment at Tashkend would have been, Vronsky had till then considered, disgraceful and impossible. But now, without an instant's consideration, he declined it, and observing dissatisfaction in the most exalted quarters at this step, he immediately retired from the army. A month later Alexey Alexandrovitch was left alone with his son in his house at Petersburg, while Anna and Vronsky had gone abroad, not having obtained a divorce, but having absolutely declined all idea of one. PART FIVE Chapter 1 Princess Shtcherbatskaya considered that it was out of the question for the wedding to take place before Lent, just five weeks off, since not half the trousseau could possibly be ready by that time. But she could not but agree with Levin that to fix it for after Lent would be putting it off too late, as an old aunt of Prince Shtcherbatsky's was seriously ill and might die, and then the mourning would delay the wedding still longer. And therefore, deciding to divide the trousseau into two parts--a larger and smaller trousseau--the princess consented to have the wedding before Lent. She determined that she would get the smaller part of the trousseau all ready now, and the larger part should be made later, and she was much vexed with Levin because he was incapable of giving her a serious answer to the question whether he agreed to this arrangement or not. The arrangement was the more suitable as, immediately after the wedding, the young people were to go to the country, where the more important part of the trousseau would not be wanted. Levin still continued in the same delirious condition in which it seemed to him that he and his happiness constituted the chief and sole aim of all existence, and that he need not now think or care about anything, that everything was being done and would be done for him by others. He had not even plans and aims for the future, he left its arrangement to others, knowing that everything would be delightful. His brother Sergey Ivanovitch, Stepan Arkadyevitch, and the princess guided him in doing what he had to do. All he did was to agree entirely with everything suggested to him. His brother raised money for him, the princess advised him to leave Moscow after the wedding. Stepan Arkadyevitch advised him to go abroad. He agreed to everything. "Do what you choose, if it amuses you. I'm happy, and my happiness can be no greater and no less for anything you do," he thought. When he told Kitty of Stepan Arkadyevitch's advice that they should go abroad, he was much surprised that she did not agree to this, and had some definite requirements of her own in regard to their future. She knew Levin had work he loved in the country. She did not, as he saw, understand this work, she did not even care to understand it. But that did not prevent her from regarding it as a matter of great importance. And then she knew their home would be in the country, and she wanted to go, not abroad where she was not going to live, but to the place where their home would be. This definitely expressed purpose astonished Levin. But since he did not care either way, he immediately asked Stepan Arkadyevitch, as though it were his duty, to go down to the country and to arrange everything there to the best of his ability with the taste of which he had so much. "But I say," Stepan Arkadyevitch said to him one day after he had come back from the country, where he had got everything ready for the young people's arrival, "have you a certificate of having been at confession?" "No. But what of it?" "You can't be married without it." "_Aie, aie, aie!_" cried Levin. "Why, I believe it's nine years since I've taken the sacrament! I never thought of it." "You're a pretty fellow!" said Stepan Arkadyevitch laughing, "and you call me a Nihilist! But this won't do, you know. You must take the sacrament." "When? There are four days left now." Stepan Arkadyevitch arranged this also, and Levin had to go to confession. To Levin, as to any unbeliever who respects the beliefs of others, it was exceedingly disagreeable to be present at and take part in church ceremonies. At this moment, in his present softened state of feeling, sensitive to everything, this inevitable act of hypocrisy was not merely painful to Levin, it seemed to him utterly impossible. Now, in the heyday of his highest glory, his fullest flower, he would have to be a liar or a scoffer. He felt incapable of being either. But though he repeatedly plied Stepan Arkadyevitch with questions as to the possibility of obtaining a certificate without actually communicating, Stepan Arkadyevitch maintained that it was out of the question. "Besides, what is it to you--two days? And he's an awfully nice clever old fellow. He'll pull the tooth out for you so gently, you won't notice it." Standing at the first litany, Levin attempted to revive in himself his youthful recollections of the intense religious emotion he had passed through between the ages of sixteen and seventeen. But he was at once convinced that it was utterly impossible to him. He attempted to look at it all as an empty custom, having no sort of meaning, like the custom of paying calls. But he felt that he could not do that either. Levin found himself, like the majority of his contemporaries, in the vaguest position in regard to religion. Believe he could not, and at the same time he had no firm conviction that it was all wrong. And consequently, not being able to believe in the significance of what he was doing nor to regard it with indifference as an empty formality, during the whole period of preparing for the sacrament he was conscious of a feeling of discomfort and shame at doing what he did not himself understand, and what, as an inner voice told him, was therefore false and wrong. During the service he would first listen to the prayers, trying to attach some meaning to them not discordant with his own views; then feeling that he could not understand and must condemn them, he tried not to listen to them, but to attend to the thoughts, observations, and memories which floated through his brain with extreme vividness during this idle time of standing in church. He had stood through the litany, the evening service and the midnight service, and the next day he got up earlier than usual, and without having tea went at eight o'clock in the morning to the church for the morning service and the confession. There was no one in the church but a beggar soldier, two old women, and the church officials. A young deacon, whose long back showed in two distinct halves through his thin undercassock, met him, and at once going to a little table at the wall read the exhortation. During the reading, especially at the frequent and rapid repetition of the same words, "Lord, have mercy on us!" which resounded with an echo, Levin felt that thought was shut and sealed up, and that it must not be touched or stirred now or confusion would be the result; and so standing behind the deacon he went on thinking of his own affairs, neither listening nor examining what was said. "It's wonderful what expression there is in her hand," he thought, remembering how they had been sitting the day before at a corner table. They had nothing to talk about, as was almost always the case at this time, and laying her hand on the table she kept opening and shutting it, and laughed herself as she watched her action. He remembered how he had kissed it and then had examined the lines on the pink palm. "Have mercy on us again!" thought Levin, crossing himself, bowing, and looking at the supple spring of the deacon's back bowing before him. "She took my hand then and examined the lines 'You've got a splendid hand,' she said." And he looked at his own hand and the short hand of the deacon. "Yes, now it will soon be over," he thought. "No, it seems to be beginning again," he thought, listening to the prayers. "No, it's just ending: there he is bowing down to the ground. That's always at the end." The deacon's hand in a plush cuff accepted a three-rouble note unobtrusively, and the deacon said he would put it down in the register, and his new boots creaking jauntily over the flagstones of the empty church, he went to the altar. A moment later he peeped out thence and beckoned to Levin. Thought, till then locked up, began to stir in Levin's head, but he made haste to drive it away. "It will come right somehow," he thought, and went towards the altar-rails. He went up the steps, and turning to the right saw the priest. The priest, a little old man with a scanty grizzled beard and weary, good-natured eyes, was standing at the altar-rails, turning over the pages of a missal. With a slight bow to Levin he began immediately reading prayers in the official voice. When he had finished them he bowed down to the ground and turned, facing Levin. "Christ is present here unseen, receiving your confession," he said, pointing to the crucifix. "Do you believe in all the doctrines of the Holy Apostolic Church?" the priest went on, turning his eyes away from Levin's face and folding his hands under his stole. "I have doubted, I doubt everything," said Levin in a voice that jarred on himself, and he ceased speaking. The priest waited a few seconds to see if he would not say more, and closing his eyes he said quickly, with a broad, Vladimirsky accent: "Doubt is natural to the weakness of mankind, but we must pray that God in His mercy will strengthen us. What are your special sins?" he added, without the slightest interval, as though anxious not to waste time. "My chief sin is doubt. I have doubts of everything, and for the most part I am in doubt." "Doubt is natural to the weakness of mankind," the priest repeated the same words. "What do you doubt about principally?" "I doubt of everything. I sometimes even have doubts of the existence of God," Levin could not help saying, and he was horrified at the impropriety of what he was saying. But Levin's words did not, it seemed, make much impression on the priest. "What sort of doubt can there be of the existence of God?" he said hurriedly, with a just perceptible smile. Levin did not speak. "What doubt can you have of the Creator when you behold His creation?" the priest went on in the rapid customary jargon. "Who has decked the heavenly firmament with its lights? Who has clothed the earth in its beauty? How explain it without the Creator?" he said, looking inquiringly at Levin. Levin felt that it would be improper to enter upon a metaphysical discussion with the priest, and so he said in reply merely what was a direct answer to the question. "I don't know," he said. "You don't know! Then how can you doubt that God created all?" the priest said, with good-humored perplexity. "I don't understand it at all," said Levin, blushing, and feeling that his words were stupid, and that they could not be anything but stupid in such a position. "Pray to God and beseech Him. Even the holy fathers had doubts, and prayed to God to strengthen their faith. The devil has great power, and we must resist him. Pray to God, beseech Him. Pray to God," he repeated hurriedly. The priest paused for some time, as though meditating. "You're about, I hear, to marry the daughter of my parishioner and son in the spirit, Prince Shtcherbatsky?" he resumed, with a smile. "An excellent young lady." "Yes," answered Levin, blushing for the priest. "What does he want to ask me about this at confession for?" he thought. And, as though answering his thought, the priest said to him: "You are about to enter into holy matrimony, and God may bless you with offspring. Well, what sort of bringing-up can you give your babes if you do not overcome the temptation of the devil, enticing you to infidelity?" he said, with gentle reproachfulness. "If you love your child as a good father, you will not desire only wealth, luxury, honor for your infant; you will be anxious for his salvation, his spiritual enlightenment with the light of truth. Eh? What answer will you make him when the innocent babe asks you: 'Papa! who made all that enchants me in this world--the earth, the waters, the sun, the flowers, the grass?' Can you say to him: 'I don't know'? You cannot but know, since the Lord God in His infinite mercy has revealed it to us. Or your child will ask you: 'What awaits me in the life beyond the tomb?' What will you say to him when you know nothing? How will you answer him? Will you leave him to the allurements of the world and the devil? That's not right," he said, and he stopped, putting his head on one side and looking at Levin with his kindly, gentle eyes. Levin made no answer this time, not because he did not want to enter upon a discussion with the priest, but because, so far, no one had ever asked him such questions, and when his babes did ask him those questions, it would be time enough to think about answering them. "You are entering upon a time of life," pursued the priest, "when you must choose your path and keep to it. Pray to God that He may in His mercy aid you and have mercy on you!" he concluded. "Our Lord and God, Jesus Christ, in the abundance and riches of His lovingkindness, forgives this child..." and, finishing the prayer of absolution, the priest blessed him and dismissed him. On getting home that day, Levin had a delightful sense of relief at the awkward position being over and having been got through without his having to tell a lie. Apart from this, there remained a vague memory that what the kind, nice old fellow had said had not been at all so stupid as he had fancied at first, and that there was something in it that must be cleared up. "Of course, not now," thought Levin, "but some day later on." Levin felt more than ever now that there was something not clear and not clean in his soul, and that, in regard to religion, he was in the same position which he perceived so clearly and disliked in others, and for which he blamed his friend Sviazhsky. Levin spent that evening with his betrothed at Dolly's, and was in very high spirits. To explain to Stepan Arkadyevitch the state of excitement in which he found himself, he said that he was happy like a dog being trained to jump through a hoop, who, having at last caught the idea, and done what was required of him, whines and wags its tail, and jumps up to the table and the windows in its delight. Chapter 2 On the day of the wedding, according to the Russian custom (the princess and Darya Alexandrovna insisted on strictly keeping all the customs), Levin did not see his betrothed, and dined at his hotel with three bachelor friends, casually brought together at his rooms. These were Sergey Ivanovitch, Katavasov, a university friend, now professor of natural science, whom Levin had met in the street and insisted on taking home with him, and Tchirikov, his best man, a Moscow conciliation-board judge, Levin's companion in his bear-hunts. The dinner was a very merry one: Sergey Ivanovitch was in his happiest mood, and was much amused by Katavasov's originality. Katavasov, feeling his originality was appreciated and understood, made the most of it. Tchirikov always gave a lively and good-humored support to conversation of any sort. "See, now," said Katavasov, drawling his words from a habit acquired in the lecture-room, "what a capable fellow was our friend Konstantin Dmitrievitch. I'm not speaking of present company, for he's absent. At the time he left the university he was fond of science, took an interest in humanity; now one-half of his abilities is devoted to deceiving himself, and the other to justifying the deceit." "A more determined enemy of matrimony than you I never saw," said Sergey Ivanovitch. "Oh, no, I'm not an enemy of matrimony. I'm in favor of division of labor. People who can do nothing else ought to rear people while the rest work for their happiness and enlightenment. That's how I look at it. To muddle up two trades is the error of the amateur; I'm not one of their number." "How happy I shall be when I hear that you're in love!" said Levin. "Please invite me to the wedding." "I'm in love now." "Yes, with a cuttlefish! You know," Levin turned to his brother, "Mihail Semyonovitch is writing a work on the digestive organs of the..." "Now, make a muddle of it! It doesn't matter what about. And the fact is, I certainly do love cuttlefish." "But that's no hindrance to your loving your wife." "The cuttlefish is no hindrance. The wife is the hindrance." "Why so?" "Oh, you'll see! You care about farming, hunting,--well, you'd better look out!" "Arhip was here today; he said there were a lot of elks in Prudno, and two bears," said Tchirikov. "Well, you must go and get them without me." "Ah, that's the truth," said Sergey Ivanovitch. "And you may say good-bye to bear-hunting for the future--your wife won't allow it!" Levin smiled. The picture of his wife not letting him go was so pleasant that he was ready to renounce the delights of looking upon bears forever. "Still, it's a pity they should get those two bears without you. Do you remember last time at Hapilovo? That was a delightful hunt!" said Tchirikov. Levin had not the heart to disillusion him of the notion that there could be something delightful apart from her, and so said nothing. "There's some sense in this custom of saying good-bye to bachelor life," said Sergey Ivanovitch. "However happy you may be, you must regret your freedom." "And confess there is a feeling that you want to jump out of the window, like Gogol's bridegroom?" "Of course there is, but it isn't confessed," said Katavasov, and he broke into loud laughter. "Oh, well, the window's open. Let's start off this instant to Tver! There's a big she-bear; one can go right up to the lair. Seriously, let's go by the five o'clock! And here let them do what they like," said Tchirikov, smiling. "Well, now, on my honor," said Levin, smiling, "I can't find in my heart that feeling of regret for my freedom." "Yes, there's such a chaos in your heart just now that you can't find anything there," said Katavasov. "Wait a bit, when you set it to rights a little, you'll find it!" "No; if so, I should have felt a little, apart from my feeling" (he could not say love before them) "and happiness, a certain regret at losing my freedom.... On the contrary, I am glad at the very loss of my freedom." "Awful! It's a hopeless case!" said Katavasov. "Well, let's drink to his recovery, or wish that a hundredth part of his dreams may be realized--and that would be happiness such as never has been seen on earth!" Soon after dinner the guests went away to be in time to be dressed for the wedding. When he was left alone, and recalled the conversation of these bachelor friends, Levin asked himself: had he in his heart that regret for his freedom of which they had spoken? He smiled at the question. "Freedom! What is freedom for? Happiness is only in loving and wishing her wishes, thinking her thoughts, that is to say, not freedom at all--that's happiness!" "But do I know her ideas, her wishes, her feelings?" some voice suddenly whispered to him. The smile died away from his face, and he grew thoughtful. And suddenly a strange feeling came upon him. There came over him a dread and doubt--doubt of everything. "What if she does not love me? What if she's marrying me simply to be married? What if she doesn't see herself what she's doing?" he asked himself. "She may come to her senses, and only when she is being married realize that she does not and cannot love me." And strange, most evil thoughts of her began to come to him. He was jealous of Vronsky, as he had been a year ago, as though the evening he had seen her with Vronsky had been yesterday. He suspected she had not told him everything. He jumped up quickly. "No, this can't go on!" he said to himself in despair. "I'll go to her; I'll ask her; I'll say for the last time: we are free, and hadn't we better stay so? Anything's better than endless misery, disgrace, unfaithfulness!" With despair in his heart and bitter anger against all men, against himself, against her, he went out of the hotel and drove to her house. He found her in one of the back rooms. She was sitting on a chest and making some arrangements with her maid, sorting over heaps of dresses of different colors, spread on the backs of chairs and on the floor. "Ah!" she cried, seeing him, and beaming with delight. "Kostya! Konstantin Dmitrievitch!" (These latter days she used these names almost alternately.) "I didn't expect you! I'm going through my wardrobe to see what's for whom..." "Oh! that's very nice!" he said gloomily, looking at the maid. "You can go, Dunyasha, I'll call you presently," said Kitty. "Kostya, what's the matter?" she asked, definitely adopting this familiar name as soon as the maid had gone out. She noticed his strange face, agitated and gloomy, and a panic came over her. "Kitty! I'm in torture. I can't suffer alone," he said with despair in his voice, standing before her and looking imploringly into her eyes. He saw already from her loving, truthful face, that nothing could come of what he had meant to say, but yet he wanted her to reassure him herself. "I've come to say that there's still time. This can all be stopped and set right." "What? I don't understand. What is the matter?" "What I have said a thousand times over, and can't help thinking ... that I'm not worthy of you. You couldn't consent to marry me. Think a little. You've made a mistake. Think it over thoroughly. You can't love me.... If ... better say so," he said, not looking at her. "I shall be wretched. Let people say what they like; anything's better than misery.... Far better now while there's still time...." "I don't understand," she answered, panic-stricken; "you mean you want to give it up ... don't want it?" "Yes, if you don't love me." "You're out of your mind!" she cried, turning crimson with vexation. But his face was so piteous, that she restrained her vexation, and flinging some clothes off an arm-chair, she sat down beside him. "What are you thinking? tell me all." "I am thinking you can't love me. What can you love me for?" "My God! what can I do?..." she said, and burst into tears. "Oh! what have I done?" he cried, and kneeling before her, he fell to kissing her hands. When the princess came into the room five minutes later, she found them completely reconciled. Kitty had not simply assured him that she loved him, but had gone so far--in answer to his question, what she loved him for--as to explain what for. She told him that she loved him because she understood him completely, because she knew what he would like, and because everything he liked was good. And this seemed to him perfectly clear. When the princess came to them, they were sitting side by side on the chest, sorting the dresses and disputing over Kitty's wanting to give Dunyasha the brown dress she had been wearing when Levin proposed to her, while he insisted that that dress must never be given away, but Dunyasha must have the blue one. "How is it you don't see? She's a brunette, and it won't suit her.... I've worked it all out." Hearing why he had come, the princess was half humorously, half seriously angry with him, and sent him home to dress and not to hinder Kitty's hair-dressing, as Charles the hair-dresser was just coming. "As it is, she's been eating nothing lately and is losing her looks, and then you must come and upset her with your nonsense," she said to him. "Get along with you, my dear!" Levin, guilty and shamefaced, but pacified, went back to his hotel. His brother, Darya Alexandrovna, and Stepan Arkadyevitch, all in full dress, were waiting for him to bless him with the holy picture. There was no time to lose. Darya Alexandrovna had to drive home again to fetch her curled and pomaded son, who was to carry the holy pictures after the bride. Then a carriage had to be sent for the best man, and another that would take Sergey Ivanovitch away would have to be sent back.... Altogether there were a great many most complicated matters to be considered and arranged. One thing was unmistakable, that there must be no delay, as it was already half-past six. Nothing special happened at the ceremony of benediction with the holy picture. Stepan Arkadyevitch stood in a comically solemn pose beside his wife, took the holy picture, and telling Levin to bow down to the ground, he blessed him with his kindly, ironical smile, and kissed him three times; Darya Alexandrovna did the same, and immediately was in a hurry to get off, and again plunged into the intricate question of the destinations of the various carriages. "Come, I'll tell you how we'll manage: you drive in our carriage to fetch him, and Sergey Ivanovitch, if he'll be so good, will drive there and then send his carriage." "Of course; I shall be delighted." "We'll come on directly with him. Are your things sent off?" said Stepan Arkadyevitch. "Yes," answered Levin, and he told Kouzma to put out his clothes for him to dress. Chapter 3 A crowd of people, principally women, was thronging round the church lighted up for the wedding. Those who had not succeeded in getting into the main entrance were crowding about the windows, pushing, wrangling, and peeping through the gratings. More than twenty carriages had already been drawn up in ranks along the street by the police. A police officer, regardless of the frost, stood at the entrance, gorgeous in his uniform. More carriages were continually driving up, and ladies wearing flowers and carrying their trains, and men taking off their helmets or black hats kept walking into the church. Inside the church both lusters were already lighted, and all the candles before the holy pictures. The gilt on the red ground of the holy picture-stand, and the gilt relief on the pictures, and the silver of the lusters and candlesticks, and the stones of the floor, and the rugs, and the banners above in the choir, and the steps of the altar, and the old blackened books, and the cassocks and surplices--all were flooded with light. On the right side of the warm church, in the crowd of frock coats and white ties, uniforms and broadcloth, velvet, satin, hair and flowers, bare shoulders and arms and long gloves, there was discreet but lively conversation that echoed strangely in the high cupola. Every time there was heard the creak of the opened door the conversation in the crowd died away, and everybody looked round expecting to see the bride and bridegroom come in. But the door had opened more than ten times, and each time it was either a belated guest or guests, who joined the circle of the invited on the right, or a spectator, who had eluded or softened the police officer, and went to join the crowd of outsiders on the left. Both the guests and the outside public had by now passed through all the phases of anticipation. At first they imagined that the bride and bridegroom would arrive immediately, and attached no importance at all to their being late. Then they began to look more and more often towards the door, and to talk of whether anything could have happened. Then the long delay began to be positively discomforting, and relations and guests tried to look as if they were not thinking of the bridegroom but were engrossed in conversation. The head deacon, as though to remind them of the value of his time, coughed impatiently, making the window-panes quiver in their frames. In the choir the bored choristers could be heard trying their voices and blowing their noses. The priest was continually sending first the beadle and then the deacon to find out whether the bridegroom had not come, more and more often he went himself, in a lilac vestment and an embroidered sash, to the side door, expecting to see the bridegroom. At last one of the ladies, glancing at her watch, said, "It really is strange, though!" and all the guests became uneasy and began loudly expressing their wonder and dissatisfaction. One of the bridegroom's best men went to find out what had happened. Kitty meanwhile had long ago been quite ready, and in her white dress and long veil and wreath of orange blossoms she was standing in the drawing-room of the Shtcherbatskys' house with her sister, Madame Lvova, who was her bridal-mother. She was looking out of the window, and had been for over half an hour anxiously expecting to hear from the best man that her bridegroom was at the church. Levin meanwhile, in his trousers, but without his coat and waistcoat, was walking to and fro in his room at the hotel, continually putting his head out of the door and looking up and down the corridor. But in the corridor there was no sign of the person he was looking for and he came back in despair, and frantically waving his hands addressed Stepan Arkadyevitch, who was smoking serenely. "Was ever a man in such a fearful fool's position?" he said. "Yes, it is stupid," Stepan Arkadyevitch assented, smiling soothingly. "But don't worry, it'll be brought directly." "No, what is to be done!" said Levin, with smothered fury. "And these fools of open waistcoats! Out of the question!" he said, looking at the crumpled front of his shirt. "And what if the things have been taken on to the railway station!" he roared in desperation. "Then you must put on mine." "I ought to have done so long ago, if at all." "It's not nice to look ridiculous.... Wait a bit! it will _come round_." The point was that when Levin asked for his evening suit, Kouzma, his old servant, had brought him the coat, waistcoat, and everything that was wanted. "But the shirt!" cried Levin. "You've got a shirt on," Kouzma answered, with a placid smile. Kouzma had not thought of leaving out a clean shirt, and on receiving instructions to pack up everything and send it round to the Shtcherbatskys' house, from which the young people were to set out the same evening, he had done so, packing everything but the dress suit. The shirt worn since the morning was crumpled and out of the question with the fashionable open waistcoat. It was a long way to send to the Shtcherbatskys'. They sent out to buy a shirt. The servant came back; everything was shut up--it was Sunday. They sent to Stepan Arkadyevitch's and brought a shirt--it was impossibly wide and short. They sent finally to the Shtcherbatskys' to unpack the things. The bridegroom was expected at the church while he was pacing up and down his room like a wild beast in a cage, peeping out into the corridor, and with horror and despair recalling what absurd things he had said to Kitty and what she might be thinking now. At last the guilty Kouzma flew panting into the room with the shirt. "Only just in time. They were just lifting it into the van," said Kouzma. Three minutes later Levin ran full speed into the corridor, not looking at his watch for fear of aggravating his sufferings. "You won't help matters like this," said Stepan Arkadyevitch with a smile, hurrying with more deliberation after him. "It will come round, it will come round ... I tell you." Chapter 4 "They've come!" "Here he is!" "Which one?" "Rather young, eh?" "Why, my dear soul, she looks more dead than alive!" were the comments in the crowd, when Levin, meeting his bride in the entrance, walked with her into the church. Stepan Arkadyevitch told his wife the cause of the delay, and the guests were whispering it with smiles to one another. Levin saw nothing and no one; he did not take his eyes off his bride. Everyone said she had lost her looks dreadfully of late, and was not nearly so pretty on her wedding day as usual; but Levin did not think so. He looked at her hair done up high, with the long white veil and white flowers and the high, stand-up, scalloped collar, that in such a maidenly fashion hid her long neck at the sides and only showed it in front, her strikingly slender figure, and it seemed to him that she looked better than ever--not because these flowers, this veil, this gown from Paris added anything to her beauty; but because, in spite of the elaborate sumptuousness of her attire, the expression of her sweet face, of her eyes, of her lips was still her own characteristic expression of guileless truthfulness. "I was beginning to think you meant to run away," she said, and smiled to him. "It's so stupid, what happened to me, I'm ashamed to speak of it!" he said, reddening, and he was obliged to turn to Sergey Ivanovitch, who came up to him. "This is a pretty story of yours about the shirt!" said Sergey Ivanovitch, shaking his head and smiling. "Yes, yes!" answered Levin, without an idea of what they were talking about. "Now, Kostya, you have to decide," said Stepan Arkadyevitch with an air of mock dismay, "a weighty question. You are at this moment just in the humor to appreciate all its gravity. They ask me, are they to light the candles that have been lighted before or candles that have never been lighted? It's a matter of ten roubles," he added, relaxing his lips into a smile. "I have decided, but I was afraid you might not agree." Levin saw it was a joke, but he could not smile. "Well, how's it to be then?--unlighted or lighted candles? that's the question." "Yes, yes, unlighted." "Oh, I'm very glad. The question's decided!" said Stepan Arkadyevitch, smiling. "How silly men are, though, in this position," he said to Tchirikov, when Levin, after looking absently at him, had moved back to his bride. "Kitty, mind you're the first to step on the carpet," said Countess Nordston, coming up. "You're a nice person!" she said to Levin. "Aren't you frightened, eh?" said Marya Dmitrievna, an old aunt. "Are you cold? You're pale. Stop a minute, stoop down," said Kitty's sister, Madame Lvova, and with her plump, handsome arms she smilingly set straight the flowers on her head. Dolly came up, tried to say something, but could not speak, cried, and then laughed unnaturally. Kitty looked at all of them with the same absent eyes as Levin. Meanwhile the officiating clergy had got into their vestments, and the priest and deacon came out to the lectern, which stood in the forepart of the church. The priest turned to Levin saying something. Levin did not hear what the priest said. "Take the bride's hand and lead her up," the best man said to Levin. It was a long while before Levin could make out what was expected of him. For a long time they tried to set him right and made him begin again--because he kept taking Kitty by the wrong arm or with the wrong arm--till he understood at last that what he had to do was, without changing his position, to take her right hand in his right hand. When at last he had taken the bride's hand in the correct way, the priest walked a few paces in front of them and stopped at the lectern. The crowd of friends and relations moved after them, with a buzz of talk and a rustle of skirts. Someone stooped down and pulled out the bride's train. The church became so still that the drops of wax could be heard falling from the candles. The little old priest in his ecclesiastical cap, with his long silvery-gray locks of hair parted behind his ears, was fumbling with something at the lectern, putting out his little old hands from under the heavy silver vestment with the gold cross on the back of it. Stepan Arkadyevitch approached him cautiously, whispered something, and making a sign to Levin, walked back again. The priest lighted two candles, wreathed with flowers, and holding them sideways so that the wax dropped slowly from them he turned, facing the bridal pair. The priest was the same old man that had confessed Levin. He looked with weary and melancholy eyes at the bride and bridegroom, sighed, and putting his right hand out from his vestment, blessed the bridegroom with it, and also with a shade of solicitous tenderness laid the crossed fingers on the bowed head of Kitty. Then he gave them the candles, and taking the censer, moved slowly away from them. "Can it be true?" thought Levin, and he looked round at his bride. Looking down at her he saw her face in profile, and from the scarcely perceptible quiver of her lips and eyelashes he knew she was aware of his eyes upon her. She did not look round, but the high scalloped collar, that reached her little pink ear, trembled faintly. He saw that a sigh was held back in her throat, and the little hand in the long glove shook as it held the candle. All the fuss of the shirt, of being late, all the talk of friends and relations, their annoyance, his ludicrous position--all suddenly passed away and he was filled with joy and dread. The handsome, stately head-deacon wearing a silver robe and his curly locks standing out at each side of his head, stepped smartly forward, and lifting his stole on two fingers, stood opposite the priest. "Blessed be the name of the Lord," the solemn syllables rang out slowly one after another, setting the air quivering with waves of sound. "Blessed is the name of our God, from the beginning, is now, and ever shall be," the little old priest answered in a submissive, piping voice, still fingering something at the lectern. And the full chorus of the unseen choir rose up, filling the whole church, from the windows to the vaulted roof, with broad waves of melody. It grew stronger, rested for an instant, and slowly died away. They prayed, as they always do, for peace from on high and for salvation, for the Holy Synod, and for the Tsar; they prayed, too, for the servants of God, Konstantin and Ekaterina, now plighting their troth. "Vouchsafe to them love made perfect, peace and help, O Lord, we beseech Thee," the whole church seemed to breathe with the voice of the head deacon. Levin heard the words, and they impressed him. "How did they guess that it is help, just help that one wants?" he thought, recalling all his fears and doubts of late. "What do I know? what can I do in this fearful business," he thought, "without help? Yes, it is help I want now." When the deacon had finished the prayer for the Imperial family, the priest turned to the bridal pair with a book: "Eternal God, that joinest together in love them that were separate," he read in a gentle, piping voice: "who hast ordained the union of holy wedlock that cannot be set asunder, Thou who didst bless Isaac and Rebecca and their descendants, according to Thy Holy Covenant; bless Thy servants, Konstantin and Ekaterina, leading them in the path of all good works. For gracious and merciful art Thou, our Lord, and glory be to Thee, the Father, the Son, and the Holy Ghost, now and ever shall be." "Amen!" the unseen choir sent rolling again upon the air. "'Joinest together in love them that were separate.' What deep meaning in those words, and how they correspond with what one feels at this moment," thought Levin. "Is she feeling the same as I?" And looking round, he met her eyes, and from their expression he concluded that she was understanding it just as he was. But this was a mistake; she almost completely missed the meaning of the words of the service; she had not heard them, in fact. She could not listen to them and take them in, so strong was the one feeling that filled her breast and grew stronger and stronger. That feeling was joy at the completion of the process that for the last month and a half had been going on in her soul, and had during those six weeks been a joy and a torture to her. On the day when in the drawing room of the house in Arbaty Street she had gone up to him in her brown dress, and given herself to him without a word--on that day, at that hour, there took place in her heart a complete severance from all her old life, and a quite different, new, utterly strange life had begun for her, while the old life was actually going on as before. Those six weeks had for her been a time of the utmost bliss and the utmost misery. All her life, all her desires and hopes were concentrated on this one man, still uncomprehended by her, to whom she was bound by a feeling of alternate attraction and repulsion, even less comprehended than the man himself, and all the while she was going on living in the outward conditions of her old life. Living the old life, she was horrified at herself, at her utter insurmountable callousness to all her own past, to things, to habits, to the people she had loved, who loved her--to her mother, who was wounded by her indifference, to her kind, tender father, till then dearer than all the world. At one moment she was horrified at this indifference, at another she rejoiced at what had brought her to this indifference. She could not frame a thought, not a wish apart from life with this man; but this new life was not yet, and she could not even picture it clearly to herself. There was only anticipation, the dread and joy of the new and the unknown. And now behold--anticipation and uncertainty and remorse at the abandonment of the old life--all was ending, and the new was beginning. This new life could not but have terrors for her inexperience; but, terrible or not, the change had been wrought six weeks before in her soul, and this was merely the final sanction of what had long been completed in her heart. Turning again to the lectern, the priest with some difficulty took Kitty's little ring, and asking Levin for his hand, put it on the first joint of his finger. "The servant of God, Konstantin, plights his troth to the servant of God, Ekaterina." And putting his big ring on Kitty's touchingly weak, pink little finger, the priest said the same thing. And the bridal pair tried several times to understand what they had to do, and each time made some mistake and were corrected by the priest in a whisper. At last, having duly performed the ceremony, having signed the rings with the cross, the priest handed Kitty the big ring, and Levin the little one. Again they were puzzled, and passed the rings from hand to hand, still without doing what was expected. Dolly, Tchirikov, and Stepan Arkadyevitch stepped forward to set them right. There was an interval of hesitation, whispering, and smiles; but the expression of solemn emotion on the faces of the betrothed pair did not change: on the contrary, in their perplexity over their hands they looked more grave and deeply moved than before, and the smile with which Stepan Arkadyevitch whispered to them that now they would each put on their own ring died away on his lips. He had a feeling that any smile would jar on them. "Thou who didst from the beginning create male and female," the priest read after the exchange of rings, "from Thee woman was given to man to be a helpmeet to him, and for the procreation of children. O Lord, our God, who hast poured down the blessings of Thy Truth according to Thy Holy Covenant upon Thy chosen servants, our fathers, from generation to generation, bless Thy servants Konstantin and Ekaterina, and make their troth fast in faith, and union of hearts, and truth, and love...." Levin felt more and more that all his ideas of marriage, all his dreams of how he would order his life, were mere childishness, and that it was something he had not understood hitherto, and now understood less than ever, though it was being performed upon him. The lump in his throat rose higher and higher, tears that would not be checked came into his eyes. Chapter 5 In the church there was all Moscow, all the friends and relations; and during the ceremony of plighting troth, in the brilliantly lighted church, there was an incessant flow of discreetly subdued talk in the circle of gaily dressed women and girls, and men in white ties, frockcoats, and uniforms. The talk was principally kept up by the men, while the women were absorbed in watching every detail of the ceremony, which always means so much to them. In the little group nearest to the bride were her two sisters: Dolly, and the other one, the self-possessed beauty, Madame Lvova, who had just arrived from abroad. "Why is it Marie's in lilac, as bad as black, at a wedding?" said Madame Korsunskaya. "With her complexion, it's the one salvation," responded Madame Trubetskaya. "I wonder why they had the wedding in the evening? It's like shop-people..." "So much prettier. I was married in the evening too..." answered Madame Korsunskaya, and she sighed, remembering how charming she had been that day, and how absurdly in love her husband was, and how different it all was now. "They say if anyone's best man more than ten times, he'll never be married. I wanted to be for the tenth time, but the post was taken," said Count Siniavin to the pretty Princess Tcharskaya, who had designs on him. Princess Tcharskaya only answered with a smile. She looked at Kitty, thinking how and when she would stand with Count Siniavin in Kitty's place, and how she would remind him then of his joke today. Shtcherbatsky told the old maid of honor, Madame Nikolaeva, that he meant to put the crown on Kitty's chignon for luck. "She ought not to have worn a chignon," answered Madame Nikolaeva, who had long ago made up her mind that if the elderly widower she was angling for married her, the wedding should be of the simplest. "I don't like such grandeur." Sergey Ivanovitch was talking to Darya Dmitrievna, jestingly assuring her that the custom of going away after the wedding was becoming common because newly married people always felt a little ashamed of themselves. "Your brother may feel proud of himself. She's a marvel of sweetness. I believe you're envious." "Oh, I've got over that, Darya Dmitrievna," he answered, and a melancholy and serious expression suddenly came over his face. Stepan Arkadyevitch was telling his sister-in-law his joke about divorce. "The wreath wants setting straight," she answered, not hearing him. "What a pity she's lost her looks so," Countess Nordston said to Madame Lvova. "Still he's not worth her little finger, is he?" "Oh, I like him so--not because he's my future _beau-frere_," answered Madame Lvova. "And how well he's behaving! It's so difficult, too, to look well in such a position, not to be ridiculous. And he's not ridiculous, and not affected; one can see he's moved." "You expected it, I suppose?" "Almost. She always cared for him." "Well, we shall see which of them will step on the rug first. I warned Kitty." "It will make no difference," said Madame Lvova; "we're all obedient wives; it's in our family." "Oh, I stepped on the rug before Vassily on purpose. And you, Dolly?" Dolly stood beside them; she heard them, but she did not answer. She was deeply moved. The tears stood in her eyes, and she could not have spoken without crying. She was rejoicing over Kitty and Levin; going back in thought to her own wedding, she glanced at the radiant figure of Stepan Arkadyevitch, forgot all the present, and remembered only her own innocent love. She recalled not herself only, but all her women-friends and acquaintances. She thought of them on the one day of their triumph, when they had stood like Kitty under the wedding crown, with love and hope and dread in their hearts, renouncing the past, and stepping forward into the mysterious future. Among the brides that came back to her memory, she thought too of her darling Anna, of whose proposed divorce she had just been hearing. And she had stood just as innocent in orange flowers and bridal veil. And now? "It's terribly strange," she said to herself. It was not merely the sisters, the women-friends and female relations of the bride who were following every detail of the ceremony. Women who were quite strangers, mere spectators, were watching it excitedly, holding their breath, in fear of losing a single movement or expression of the bride and bridegroom, and angrily not answering, often not hearing, the remarks of the callous men, who kept making joking or irrelevant observations. "Why has she been crying? Is she being married against her will?" "Against her will to a fine fellow like that? A prince, isn't he?" "Is that her sister in the white satin? Just listen how the deacon booms out, 'And fearing her husband.'" "Are the choristers from Tchudovo?" "No, from the Synod." "I asked the footman. He says he's going to take her home to his country place at once. Awfully rich, they say. That's why she's being married to him." "No, they're a well-matched pair." "I say, Marya Vassilievna, you were making out those fly-away crinolines were not being worn. Just look at her in the puce dress--an ambassador's wife they say she is--how her skirt bounces out from side to side!" "What a pretty dear the bride is--like a lamb decked with flowers! Well, say what you will, we women feel for our sister." Such were the comments in the crowd of gazing women who had succeeded in slipping in at the church doors. Chapter 6 When the ceremony of plighting troth was over, the beadle spread before the lectern in the middle of the church a piece of pink silken stuff, the choir sang a complicated and elaborate psalm, in which the bass and tenor sang responses to one another, and the priest turning round pointed the bridal pair to the pink silk rug. Though both had often heard a great deal about the saying that the one who steps first on the rug will be the head of the house, neither Levin nor Kitty were capable of recollecting it, as they took the few steps towards it. They did not hear the loud remarks and disputes that followed, some maintaining he had stepped on first, and others that both had stepped on together. After the customary questions, whether they desired to enter upon matrimony, and whether they were pledged to anyone else, and their answers, which sounded strange to themselves, a new ceremony began. Kitty listened to the words of the prayer, trying to make out their meaning, but she could not. The feeling of triumph and radiant happiness flooded her soul more and more as the ceremony went on, and deprived her of all power of attention. They prayed: "Endow them with continence and fruitfulness, and vouchsafe that their hearts may rejoice looking upon their sons and daughters." They alluded to God's creation of a wife from Adam's rib "and for this cause a man shall leave father and mother, and cleave unto his wife, and they two shall be one flesh," and that "this is a great mystery"; they prayed that God would make them fruitful and bless them, like Isaac and Rebecca, Joseph, Moses and Zipporah, and that they might look upon their children's children. "That's all splendid," thought Kitty, catching the words, "all that's just as it should be," and a smile of happiness, unconsciously reflected in everyone who looked at her, beamed on her radiant face. "Put it on quite," voices were heard urging when the priest had put on the wedding crowns and Shtcherbatsky, his hand shaking in its three-button glove, held the crown high above her head. "Put it on!" she whispered, smiling. Levin looked round at her, and was struck by the joyful radiance on her face, and unconsciously her feeling infected him. He too, like her felt glad and happy. They enjoyed hearing the epistle read, and the roll of the head deacon's voice at the last verse, awaited with such impatience by the outside public. They enjoyed drinking out of the shallow cup of warm red wine and water, and they were still more pleased when the priest, flinging back his stole and taking both their hands in his, led them round the lectern to the accompaniment of bass voices chanting "Glory to God." Shtcherbatsky and Tchirikov, supporting the crowns and stumbling over the bride's train, smiling too and seeming delighted at something, were at one moment left behind, at the next treading on the bridal pair as the priest came to a halt. The spark of joy kindled in Kitty seemed to have infected everyone in the church. It seemed to Levin that the priest and the deacon too wanted to smile just as he did. Taking the crowns off their heads the priest read the last prayer and congratulated the young people. Levin looked at Kitty, and he had never before seen her look as she did. She was charming with the new radiance of happiness in her face. Levin longed to say something to her, but he did not know whether it was all over. The priest got him out of his difficulty. He smiled his kindly smile and said gently, "Kiss your wife, and you kiss your husband," and took the candles out of their hands. Levin kissed her smiling lips with timid care, gave her his arm, and with a new strange sense of closeness, walked out of the church. He did not believe, he could not believe, that it was true. It was only when their wondering and timid eyes met that he believed in it, because he felt that they were one. After supper, the same night, the young people left for the country. Chapter 7 Vronsky and Anna had been traveling for three months together in Europe. They had visited Venice, Rome, and Naples, and had just arrived at a small Italian town where they meant to stay some time. A handsome head waiter, with thick pomaded hair parted from the neck upwards, an evening coat, a broad white cambric shirt front, and a bunch of trinkets hanging above his rounded stomach, stood with his hands in the full curve of his pockets, looking contemptuously from under his eyelids while he gave some frigid reply to a gentleman who had stopped him. Catching the sound of footsteps coming from the other side of the entry towards the staircase, the head waiter turned round, and seeing the Russian count, who had taken their best rooms, he took his hands out of his pockets deferentially, and with a bow informed him that a courier had been, and that the business about the palazzo had been arranged. The steward was prepared to sign the agreement. "Ah! I'm glad to hear it," said Vronsky. "Is madame at home or not?" "Madame has been out for a walk but has returned now," answered the waiter. Vronsky took off his soft, wide-brimmed hat and passed his handkerchief over his heated brow and hair, which had grown half over his ears, and was brushed back covering the bald patch on his head. And glancing casually at the gentleman, who still stood there gazing intently at him, he would have gone on. "This gentleman is a Russian, and was inquiring after you," said the head waiter. With mingled feelings of annoyance at never being able to get away from acquaintances anywhere, and longing to find some sort of diversion from the monotony of his life, Vronsky looked once more at the gentleman, who had retreated and stood still again, and at the same moment a light came into the eyes of both. "Golenishtchev!" "Vronsky!" It really was Golenishtchev, a comrade of Vronsky's in the Corps of Pages. In the corps Golenishtchev had belonged to the liberal party; he left the corps without entering the army, and had never taken office under the government. Vronsky and he had gone completely different ways on leaving the corps, and had only met once since. At that meeting Vronsky perceived that Golenishtchev had taken up a sort of lofty, intellectually liberal line, and was consequently disposed to look down upon Vronsky's interests and calling in life. Hence Vronsky had met him with the chilling and haughty manner he so well knew how to assume, the meaning of which was: "You may like or dislike my way of life, that's a matter of the most perfect indifference to me; you will have to treat me with respect if you want to know me." Golenishtchev had been contemptuously indifferent to the tone taken by Vronsky. This second meeting might have been expected, one would have supposed, to estrange them still more. But now they beamed and exclaimed with delight on recognizing one another. Vronsky would never have expected to be so pleased to see Golenishtchev, but probably he was not himself aware how bored he was. He forgot the disagreeable impression of their last meeting, and with a face of frank delight held out his hand to his old comrade. The same expression of delight replaced the look of uneasiness on Golenishtchev's face. "How glad I am to meet you!" said Vronsky, showing his strong white teeth in a friendly smile. "I heard the name Vronsky, but I didn't know which one. I'm very, very glad!" "Let's go in. Come, tell me what you're doing." "I've been living here for two years. I'm working." "Ah!" said Vronsky, with sympathy; "let's go in." And with the habit common with Russians, instead of saying in Russian what he wanted to keep from the servants, he began to speak in French. "Do you know Madame Karenina? We are traveling together. I am going to see her now," he said in French, carefully scrutinizing Golenishtchev's face. "Ah! I did not know" (though he did know), Golenishtchev answered carelessly. "Have you been here long?" he added. "Four days," Vronsky answered, once more scrutinizing his friend's face intently. "Yes, he's a decent fellow, and will look at the thing properly," Vronsky said to himself, catching the significance of Golenishtchev's face and the change of subject. "I can introduce him to Anna, he looks at it properly." During those three months that Vronsky had spent abroad with Anna, he had always on meeting new people asked himself how the new person would look at his relations with Anna, and for the most part, in men, he had met with the "proper" way of looking at it. But if he had been asked, and those who looked at it "properly" had been asked, exactly how they did look at it, both he and they would have been greatly puzzled to answer. In reality, those who in Vronsky's opinion had the "proper" view had no sort of view at all, but behaved in general as well-bred persons do behave in regard to all the complex and insoluble problems with which life is encompassed on all sides; they behaved with propriety, avoiding allusions and unpleasant questions. They assumed an air of fully comprehending the import and force of the situation, of accepting and even approving of it, but of considering it superfluous and uncalled for to put all this into words. Vronsky at once divined that Golenishtchev was of this class, and therefore was doubly pleased to see him. And in fact, Golenishtchev's manner to Madame Karenina, when he was taken to call on her, was all that Vronsky could have desired. Obviously without the slightest effort he steered clear of all subjects which might lead to embarrassment. He had never met Anna before, and was struck by her beauty, and still more by the frankness with which she accepted her position. She blushed when Vronsky brought in Golenishtchev, and he was extremely charmed by this childish blush overspreading her candid and handsome face. But what he liked particularly was the way in which at once, as though on purpose that there might be no misunderstanding with an outsider, she called Vronsky simply Alexey, and said they were moving into a house they had just taken, what was here called a palazzo. Golenishtchev liked this direct and simple attitude to her own position. Looking at Anna's manner of simple-hearted, spirited gaiety, and knowing Alexey Alexandrovitch and Vronsky, Golenishtchev fancied that he understood her perfectly. He fancied that he understood what she was utterly unable to understand: how it was that, having made her husband wretched, having abandoned him and her son and lost her good name, she yet felt full of spirits, gaiety, and happiness. "It's in the guide-book," said Golenishtchev, referring to the palazzo Vronsky had taken. "There's a first-rate Tintoretto there. One of his latest period." "I tell you what: it's a lovely day, let's go and have another look at it," said Vronsky, addressing Anna. "I shall be very glad to; I'll go and put on my hat. Would you say it's hot?" she said, stopping short in the doorway and looking inquiringly at Vronsky. And again a vivid flush overspread her face. Vronsky saw from her eyes that she did not know on what terms he cared to be with Golenishtchev, and so was afraid of not behaving as he would wish. He looked a long, tender look at her. "No, not very," he said. And it seemed to her that she understood everything, most of all, that he was pleased with her; and smiling to him, she walked with her rapid step out at the door. The friends glanced at one another, and a look of hesitation came into both faces, as though Golenishtchev, unmistakably admiring her, would have liked to say something about her, and could not find the right thing to say, while Vronsky desired and dreaded his doing so. "Well then," Vronsky began to start a conversation of some sort; "so you're settled here? You're still at the same work, then?" he went on, recalling that he had been told Golenishtchev was writing something. "Yes, I'm writing the second part of the _Two Elements_," said Golenishtchev, coloring with pleasure at the question--"that is, to be exact, I am not writing it yet; I am preparing, collecting materials. It will be of far wider scope, and will touch on almost all questions. We in Russia refuse to see that we are the heirs of Byzantium," and he launched into a long and heated explanation of his views. Vronsky at the first moment felt embarrassed at not even knowing of the first part of the _Two Elements_, of which the author spoke as something well known. But as Golenishtchev began to lay down his opinions and Vronsky was able to follow them even without knowing the _Two Elements_, he listened to him with some interest, for Golenishtchev spoke well. But Vronsky was startled and annoyed by the nervous irascibility with which Golenishtchev talked of the subject that engrossed him. As he went on talking, his eyes glittered more and more angrily; he was more and more hurried in his replies to imaginary opponents, and his face grew more and more excited and worried. Remembering Golenishtchev, a thin, lively, good-natured and well-bred boy, always at the head of the class, Vronsky could not make out the reason of his irritability, and he did not like it. What he particularly disliked was that Golenishtchev, a man belonging to a good set, should put himself on a level with some scribbling fellows, with whom he was irritated and angry. Was it worth it? Vronsky disliked it, yet he felt that Golenishtchev was unhappy, and was sorry for him. Unhappiness, almost mental derangement, was visible on his mobile, rather handsome face, while without even noticing Anna's coming in, he went on hurriedly and hotly expressing his views. When Anna came in in her hat and cape, and her lovely hand rapidly swinging her parasol, and stood beside him, it was with a feeling of relief that Vronsky broke away from the plaintive eyes of Golenishtchev which fastened persistently upon him, and with a fresh rush of love looked at his charming companion, full of life and happiness. Golenishtchev recovered himself with an effort, and at first was dejected and gloomy, but Anna, disposed to feel friendly with everyone as she was at that time, soon revived his spirits by her direct and lively manner. After trying various subjects of conversation, she got him upon painting, of which he talked very well, and she listened to him attentively. They walked to the house they had taken, and looked over it. "I am very glad of one thing," said Anna to Golenishtchev when they were on their way back, "Alexey will have a capital _atelier_. You must certainly take that room," she said to Vronsky in Russian, using the affectionately familiar form as though she saw that Golenishtchev would become intimate with them in their isolation, and that there was no need of reserve before him. "Do you paint?" said Golenishtchev, turning round quickly to Vronsky. "Yes, I used to study long ago, and now I have begun to do a little," said Vronsky, reddening. "He has great talent," said Anna with a delighted smile. "I'm no judge, of course. But good judges have said the same." Chapter 8 Anna, in that first period of her emancipation and rapid return to health, felt herself unpardonably happy and full of the joy of life. The thought of her husband's unhappiness did not poison her happiness. On one side that memory was too awful to be thought of. On the other side her husband's unhappiness had given her too much happiness to be regretted. The memory of all that had happened after her illness: her reconciliation with her husband, its breakdown, the news of Vronsky's wound, his visit, the preparations for divorce, the departure from her husband's house, the parting from her son--all that seemed to her like a delirious dream, from which she had waked up alone with Vronsky abroad. The thought of the harm caused to her husband aroused in her a feeling like repulsion, and akin to what a drowning man might feel who has shaken off another man clinging to him. That man did drown. It was an evil action, of course, but it was the sole means of escape, and better not to brood over these fearful facts. One consolatory reflection upon her conduct had occurred to her at the first moment of the final rupture, and when now she recalled all the past, she remembered that one reflection. "I have inevitably made that man wretched," she thought; "but I don't want to profit by his misery. I too am suffering, and shall suffer; I am losing what I prized above everything--I am losing my good name and my son. I have done wrong, and so I don't want happiness, I don't want a divorce, and shall suffer from my shame and the separation from my child." But, however sincerely Anna had meant to suffer, she was not suffering. Shame there was not. With the tact of which both had such a large share, they had succeeded in avoiding Russian ladies abroad, and so had never placed themselves in a false position, and everywhere they had met people who pretended that they perfectly understood their position, far better indeed than they did themselves. Separation from the son she loved--even that did not cause her anguish in these early days. The baby girl--_his_ child--was so sweet, and had so won Anna's heart, since she was all that was left her, that Anna rarely thought of her son. The desire for life, waxing stronger with recovered health, was so intense, and the conditions of life were so new and pleasant, that Anna felt unpardonably happy. The more she got to know Vronsky, the more she loved him. She loved him for himself, and for his love for her. Her complete ownership of him was a continual joy to her. His presence was always sweet to her. All the traits of his character, which she learned to know better and better, were unutterably dear to her. His appearance, changed by his civilian dress, was as fascinating to her as though she were some young girl in love. In everything he said, thought, and did, she saw something particularly noble and elevated. Her adoration of him alarmed her indeed; she sought and could not find in him anything not fine. She dared not show him her sense of her own insignificance beside him. It seemed to her that, knowing this, he might sooner cease to love her; and she dreaded nothing now so much as losing his love, though she had no grounds for fearing it. But she could not help being grateful to him for his attitude to her, and showing that she appreciated it. He, who had in her opinion such a marked aptitude for a political career, in which he would have been certain to play a leading part--he had sacrificed his ambition for her sake, and never betrayed the slightest regret. He was more lovingly respectful to her than ever, and the constant care that she should not feel the awkwardness of her position never deserted him for a single instant. He, so manly a man, never opposed her, had indeed, with her, no will of his own, and was anxious, it seemed, for nothing but to anticipate her wishes. And she could not but appreciate this, even though the very intensity of his solicitude for her, the atmosphere of care with which he surrounded her, sometimes weighed upon her. Vronsky, meanwhile, in spite of the complete realization of what he had so long desired, was not perfectly happy. He soon felt that the realization of his desires gave him no more than a grain of sand out of the mountain of happiness he had expected. It showed him the mistake men make in picturing to themselves happiness as the realization of their desires. For a time after joining his life to hers, and putting on civilian dress, he had felt all the delight of freedom in general of which he had known nothing before, and of freedom in his love,--and he was content, but not for long. He was soon aware that there was springing up in his heart a desire for desires--_ennui_. Without conscious intention he began to clutch at every passing caprice, taking it for a desire and an object. Sixteen hours of the day must be occupied in some way, since they were living abroad in complete freedom, outside the conditions of social life which filled up time in Petersburg. As for the amusements of bachelor existence, which had provided Vronsky with entertainment on previous tours abroad, they could not be thought of, since the sole attempt of the sort had led to a sudden attack of depression in Anna, quite out of proportion with the cause--a late supper with bachelor friends. Relations with the society of the place--foreign and Russian--were equally out of the question owing to the irregularity of their position. The inspection of objects of interest, apart from the fact that everything had been seen already, had not for Vronsky, a Russian and a sensible man, the immense significance Englishmen are able to attach to that pursuit. And just as the hungry stomach eagerly accepts every object it can get, hoping to find nourishment in it, Vronsky quite unconsciously clutched first at politics, then at new books, and then at pictures. As he had from a child a taste for painting, and as, not knowing what to spend his money on, he had begun collecting engravings, he came to a stop at painting, began to take interest in it, and concentrated upon it the unoccupied mass of desires which demanded satisfaction. He had a ready appreciation of art, and probably, with a taste for imitating art, he supposed himself to have the real thing essential for an artist, and after hesitating for some time which style of painting to select--religious, historical, realistic, or genre painting--he set to work to paint. He appreciated all kinds, and could have felt inspired by any one of them; but he had no conception of the possibility of knowing nothing at all of any school of painting, and of being inspired directly by what is within the soul, without caring whether what is painted will belong to any recognized school. Since he knew nothing of this, and drew his inspiration, not directly from life, but indirectly from life embodied in art, his inspiration came very quickly and easily, and as quickly and easily came his success in painting something very similar to the sort of painting he was trying to imitate. More than any other style he liked the French--graceful and effective--and in that style he began to paint Anna's portrait in Italian costume, and the portrait seemed to him, and to everyone who saw it, extremely successful. Chapter 9 The old neglected palazzo, with its lofty carved ceilings and frescoes on the walls, with its floors of mosaic, with its heavy yellow stuff curtains on the windows, with its vases on pedestals, and its open fireplaces, its carved doors and gloomy reception rooms, hung with pictures--this palazzo did much, by its very appearance after they had moved into it, to confirm in Vronsky the agreeable illusion that he was not so much a Russian country gentleman, a retired army officer, as an enlightened amateur and patron of the arts, himself a modest artist who had renounced the world, his connections, and his ambition for the sake of the woman he loved. The pose chosen by Vronsky with their removal into the palazzo was completely successful, and having, through Golenishtchev, made acquaintance with a few interesting people, for a time he was satisfied. He painted studies from nature under the guidance of an Italian professor of painting, and studied mediaeval Italian life. Mediaeval Italian life so fascinated Vronsky that he even wore a hat and flung a cloak over his shoulder in the mediaeval style, which, indeed, was extremely becoming to him. "Here we live, and know nothing of what's going on," Vronsky said to Golenishtchev as he came to see him one morning. "Have you seen Mihailov's picture?" he said, handing him a Russian gazette he had received that morning, and pointing to an article on a Russian artist, living in the very same town, and just finishing a picture which had long been talked about, and had been bought beforehand. The article reproached the government and the academy for letting so remarkable an artist be left without encouragement and support. "I've seen it," answered Golenishtchev. "Of course, he's not without talent, but it's all in a wrong direction. It's all the Ivanov-Strauss-Renan attitude to Christ and to religious painting." "What is the subject of the picture?" asked Anna. "Christ before Pilate. Christ is represented as a Jew with all the realism of the new school." And the question of the subject of the picture having brought him to one of his favorite theories, Golenishtchev launched forth into a disquisition on it. "I can't understand how they can fall into such a gross mistake. Christ always has His definite embodiment in the art of the great masters. And therefore, if they want to depict, not God, but a revolutionist or a sage, let them take from history a Socrates, a Franklin, a Charlotte Corday, but not Christ. They take the very figure which cannot be taken for their art, and then..." "And is it true that this Mihailov is in such poverty?" asked Vronsky, thinking that, as a Russian Maecenas, it was his duty to assist the artist regardless of whether the picture were good or bad. "I should say not. He's a remarkable portrait-painter. Have you ever seen his portrait of Madame Vassiltchikova? But I believe he doesn't care about painting any more portraits, and so very likely he is in want. I maintain that..." "Couldn't we ask him to paint a portrait of Anna Arkadyevna?" said Vronsky. "Why mine?" said Anna. "After yours I don't want another portrait. Better have one of Annie" (so she called her baby girl). "Here she is," she added, looking out of the window at the handsome Italian nurse, who was carrying the child out into the garden, and immediately glancing unnoticed at Vronsky. The handsome nurse, from whom Vronsky was painting a head for his picture, was the one hidden grief in Anna's life. He painted with her as his model, admired her beauty and mediaevalism, and Anna dared not confess to herself that she was afraid of becoming jealous of this nurse, and was for that reason particularly gracious and condescending both to her and her little son. Vronsky, too, glanced out of the window and into Anna's eyes, and, turning at once to Golenishtchev, he said: "Do you know this Mihailov?" "I have met him. But he's a queer fish, and quite without breeding. You know, one of those uncouth new people one's so often coming across nowadays, one of those free-thinkers you know, who are reared _d'emblee_ in theories of atheism, scepticism, and materialism. In former days," said Golenishtchev, not observing, or not willing to observe, that both Anna and Vronsky wanted to speak, "in former days the free-thinker was a man who had been brought up in ideas of religion, law, and morality, and only through conflict and struggle came to free-thought; but now there has sprung up a new type of born free-thinkers who grow up without even having heard of principles of morality or of religion, of the existence of authorities, who grow up directly in ideas of negation in everything, that is to say, savages. Well, he's of that class. He's the son, it appears, of some Moscow butler, and has never had any sort of bringing-up. When he got into the academy and made his reputation he tried, as he's no fool, to educate himself. And he turned to what seemed to him the very source of culture--the magazines. In old times, you see, a man who wanted to educate himself--a Frenchman, for instance--would have set to work to study all the classics and theologians and tragedians and historiaris and philosophers, and, you know, all the intellectual work that came in his way. But in our day he goes straight for the literature of negation, very quickly assimilates all the extracts of the science of negation, and he's ready. And that's not all--twenty years ago he would have found in that literature traces of conflict with authorities, with the creeds of the ages; he would have perceived from this conflict that there was something else; but now he comes at once upon a literature in which the old creeds do not even furnish matter for discussion, but it is stated baldly that there is nothing else--evolution, natural selection, struggle for existence--and that's all. In my article I've..." "I tell you what," said Anna, who had for a long while been exchanging wary glances with Vronsky, and knew that he was not in the least interested in the education of this artist, but was simply absorbed by the idea of assisting him, and ordering a portrait of him; "I tell you what," she said, resolutely interrupting Golenishtchev, who was still talking away, "let's go and see him!" Golenishtchev recovered his self-possession and readily agreed. But as the artist lived in a remote suburb, it was decided to take the carriage. An hour later Anna, with Golenishtchev by her side and Vronsky on the front seat of the carriage, facing them, drove up to a new ugly house in the remote suburb. On learning from the porter's wife, who came out to them, that Mihailov saw visitors at his studio, but that at that moment he was in his lodging only a couple of steps off, they sent her to him with their cards, asking permission to see his picture. Chapter 10 The artist Mihailov was, as always, at work when the cards of Count Vronsky and Golenishtchev were brought to him. In the morning he had been working in his studio at his big picture. On getting home he flew into a rage with his wife for not having managed to put off the landlady, who had been asking for money. "I've said it to you twenty times, don't enter into details. You're fool enough at all times, and when you start explaining things in Italian you're a fool three times as foolish," he said after a long dispute. "Don't let it run so long; it's not my fault. If I had the money..." "Leave me in peace, for God's sake!" Mihailov shrieked, with tears in his voice, and, stopping his ears, he went off into his working room, the other side of a partition wall, and closed the door after him. "Idiotic woman!" he said to himself, sat down to the table, and, opening a portfolio, he set to work at once with peculiar fervor at a sketch he had begun. Never did he work with such fervor and success as when things went ill with him, and especially when he quarreled with his wife. "Oh! damn them all!" he thought as he went on working. He was making a sketch for the figure of a man in a violent rage. A sketch had been made before, but he was dissatisfied with it. "No, that one was better ... where is it?" He went back to his wife, and scowling, and not looking at her, asked his eldest little girl, where was that piece of paper he had given them? The paper with the discarded sketch on it was found, but it was dirty, and spotted with candle-grease. Still, he took the sketch, laid it on his table, and, moving a little away, screwing up his eyes, he fell to gazing at it. All at once he smiled and gesticulated gleefully. "That's it! that's it!" he said, and, at once picking up the pencil, he began rapidly drawing. The spot of tallow had given the man a new pose. He had sketched this new pose, when all at once he recalled the face of a shopkeeper of whom he had bought cigars, a vigorous face with a prominent chin, and he sketched this very face, this chin on to the figure of the man. He laughed aloud with delight. The figure from a lifeless imagined thing had become living, and such that it could never be changed. That figure lived, and was clearly and unmistakably defined. The sketch might be corrected in accordance with the requirements of the figure, the legs, indeed, could and must be put differently, and the position of the left hand must be quite altered; the hair too might be thrown back. But in making these corrections he was not altering the figure but simply getting rid of what concealed the figure. He was, as it were, stripping off the wrappings which hindered it from being distinctly seen. Each new feature only brought out the whole figure in all its force and vigor, as it had suddenly come to him from the spot of tallow. He was carefully finishing the figure when the cards were brought him. "Coming, coming!" He went in to his wife. "Come, Sasha, don't be cross!" he said, smiling timidly and affectionately at her. "You were to blame. I was to blame. I'll make it all right." And having made peace with his wife he put on an olive-green overcoat with a velvet collar and a hat, and went towards his studio. The successful figure he had already forgotten. Now he was delighted and excited at the visit of these people of consequence, Russians, who had come in their carriage. Of his picture, the one that stood now on his easel, he had at the bottom of his heart one conviction--that no one had ever painted a picture like it. He did not believe that his picture was better than all the pictures of Raphael, but he knew that what he tried to convey in that picture, no one ever had conveyed. This he knew positively, and had known a long while, ever since he had begun to paint it. But other people's criticisms, whatever they might be, had yet immense consequence in his eyes, and they agitated him to the depths of his soul. Any remark, the most insignificant, that showed that the critic saw even the tiniest part of what he saw in the picture, agitated him to the depths of his soul. He always attributed to his critics a more profound comprehension than he had himself, and always expected from them something he did not himself see in the picture. And often in their criticisms he fancied that he had found this. He walked rapidly to the door of his studio, and in spite of his excitement he was struck by the soft light on Anna's figure as she stood in the shade of the entrance listening to Golenishtchev, who was eagerly telling her something, while she evidently wanted to look round at the artist. He was himself unconscious how, as he approached them, he seized on this impression and absorbed it, as he had the chin of the shopkeeper who had sold him the cigars, and put it away somewhere to be brought out when he wanted it. The visitors, not agreeably impressed beforehand by Golenishtchev's account of the artist, were still less so by his personal appearance. Thick-set and of middle height, with nimble movements, with his brown hat, olive-green coat and narrow trousers--though wide trousers had been a long while in fashion,--most of all, with the ordinariness of his broad face, and the combined expression of timidity and anxiety to keep up his dignity, Mihailov made an unpleasant impression. "Please step in," he said, trying to look indifferent, and going into the passage he took a key out of his pocket and opened the door. Chapter 11 On entering the studio, Mihailov once more scanned his visitors and noted down in his imagination Vronsky's expression too, and especially his jaws. Although his artistic sense was unceasingly at work collecting materials, although he felt a continually increasing excitement as the moment of criticizing his work drew nearer, he rapidly and subtly formed, from imperceptible signs, a mental image of these three persons. That fellow (Golenishtchev) was a Russian living here. Mihailov did not remember his surname nor where he had met him, nor what he had said to him. He only remembered his face as he remembered all the faces he had ever seen; but he remembered, too, that it was one of the faces laid by in his memory in the immense class of the falsely consequential and poor in expression. The abundant hair and very open forehead gave an appearance of consequence to the face, which had only one expression--a petty, childish, peevish expression, concentrated just above the bridge of the narrow nose. Vronsky and Madame Karenina must be, Mihailov supposed, distinguished and wealthy Russians, knowing nothing about art, like all those wealthy Russians, but posing as amateurs and connoisseurs. "Most likely they've already looked at all the antiques, and now they're making the round of the studios of the new people, the German humbug, and the cracked Pre-Raphaelite English fellow, and have only come to me to make the point of view complete," he thought. He was well acquainted with the way dilettanti have (the cleverer they were the worse he found them) of looking at the works of contemporary artists with the sole object of being in a position to say that art is a thing of the past, and that the more one sees of the new men the more one sees how inimitable the works of the great old masters have remained. He expected all this; he saw it all in their faces, he saw it in the careless indifference with which they talked among themselves, stared at the lay figures and busts, and walked about in leisurely fashion, waiting for him to uncover his picture. But in spite of this, while he was turning over his studies, pulling up the blinds and taking off the sheet, he was in intense excitement, especially as, in spite of his conviction that all distinguished and wealthy Russians were certain to be beasts and fools, he liked Vronsky, and still more Anna. "Here, if you please," he said, moving on one side with his nimble gait and pointing to his picture, "it's the exhortation to Pilate. Matthew, chapter xxvii," he said, feeling his lips were beginning to tremble with emotion. He moved away and stood behind them. For the few seconds during which the visitors were gazing at the picture in silence Mihailov too gazed at it with the indifferent eye of an outsider. For those few seconds he was sure in anticipation that a higher, juster criticism would be uttered by them, by those very visitors whom he had been so despising a moment before. He forgot all he had thought about his picture before during the three years he had been painting it; he forgot all its qualities which had been absolutely certain to him--he saw the picture with their indifferent, new, outside eyes, and saw nothing good in it. He saw in the foreground Pilate's irritated face and the serene face of Christ, and in the background the figures of Pilate's retinue and the face of John watching what was happening. Every face that, with such agony, such blunders and corrections had grown up within him with its special character, every face that had given him such torments and such raptures, and all these faces so many times transposed for the sake of the harmony of the whole, all the shades of color and tones that he had attained with such labor--all of this together seemed to him now, looking at it with their eyes, the merest vulgarity, something that had been done a thousand times over. The face dearest to him, the face of Christ, the center of the picture, which had given him such ecstasy as it unfolded itself to him, was utterly lost to him when he glanced at the picture with their eyes. He saw a well-painted (no, not even that--he distinctly saw now a mass of defects) repetition of those endless Christs of Titian, Raphael, Rubens, and the same soldiers and Pilate. It was all common, poor, and stale, and positively badly painted--weak and unequal. They would be justified in repeating hypocritically civil speeches in the presence of the painter, and pitying him and laughing at him when they were alone again. The silence (though it lasted no more than a minute) became too intolerable to him. To break it, and to show he was not agitated, he made an effort and addressed Golenishtchev. "I think I've had the pleasure of meeting you," he said, looking uneasily first at Anna, then at Vronsky, in fear of losing any shade of their expression. "To be sure! We met at Rossi's, do you remember, at that _soiree_ when that Italian lady recited--the new Rachel?" Golenishtchev answered easily, removing his eyes without the slightest regret from the picture and turning to the artist. Noticing, however, that Mihailov was expecting a criticism of the picture, he said: "Your picture has got on a great deal since I saw it last time; and what strikes me particularly now, as it did then, is the figure of Pilate. One so knows the man: a good-natured, capital fellow, but an official through and through, who does not know what it is he's doing. But I fancy..." All Mihailov's mobile face beamed at once; his eyes sparkled. He tried to say something, but he could not speak for excitement, and pretended to be coughing. Low as was his opinion of Golenishtchev's capacity for understanding art, trifling as was the true remark upon the fidelity of the expression of Pilate as an official, and offensive as might have seemed the utterance of so unimportant an observation while nothing was said of more serious points, Mihailov was in an ecstasy of delight at this observation. He had himself thought about Pilate's figure just what Golenishtchev said. The fact that this reflection was but one of millions of reflections, which as Mihailov knew for certain would be true, did not diminish for him the significance of Golenishtchev's remark. His heart warmed to Golenishtchev for this remark, and from a state of depression he suddenly passed to ecstasy. At once the whole of his picture lived before him in all the indescribable complexity of everything living. Mihailov again tried to say that that was how he understood Pilate, but his lips quivered intractably, and he could not pronounce the words. Vronsky and Anna too said something in that subdued voice in which, partly to avoid hurting the artist's feelings and partly to avoid saying out loud something silly--so easily said when talking of art--people usually speak at exhibitions of pictures. Mihailov fancied that the picture had made an impression on them too. He went up to them. "How marvelous Christ's expression is!" said Anna. Of all she saw she liked that expression most of all, and she felt that it was the center of the picture, and so praise of it would be pleasant to the artist. "One can see that He is pitying Pilate." This again was one of the million true reflections that could be found in his picture and in the figure of Christ. She said that He was pitying Pilate. In Christ's expression there ought to be indeed an expression of pity, since there is an expression of love, of heavenly peace, of readiness for death, and a sense of the vanity of words. Of course there is the expression of an official in Pilate and of pity in Christ, seeing that one is the incarnation of the fleshly and the other of the spiritual life. All this and much more flashed into Mihailov's thoughts. "Yes, and how that figure is done--what atmosphere! One can walk round it," said Golenishtchev, unmistakably betraying by this remark that he did not approve of the meaning and idea of the figure. "Yes, there's a wonderful mastery!" said Vronsky. "How those figures in the background stand out! There you have technique," he said, addressing Golenishtchev, alluding to a conversation between them about Vronsky's despair of attaining this technique. "Yes, yes, marvelous!" Golenishtchev and Anna assented. In spite of the excited condition in which he was, the sentence about technique had sent a pang to Mihailov's heart, and looking angrily at Vronsky he suddenly scowled. He had often heard this word technique, and was utterly unable to understand what was understood by it. He knew that by this term was understood a mechanical facility for painting or drawing, entirely apart from its subject. He had noticed often that even in actual praise technique was opposed to essential quality, as though one could paint well something that was bad. He knew that a great deal of attention and care was necessary in taking off the coverings, to avoid injuring the creation itself, and to take off all the coverings; but there was no art of painting--no technique of any sort--about it. If to a little child or to his cook were revealed what he saw, it or she would have been able to peel the wrappings off what was seen. And the most experienced and adroit painter could not by mere mechanical facility paint anything if the lines of the subject were not revealed to him first. Besides, he saw that if it came to talking about technique, it was impossible to praise him for it. In all he had painted and repainted he saw faults that hurt his eyes, coming from want of care in taking off the wrappings--faults he could not correct now without spoiling the whole. And in almost all the figures and faces he saw, too, remnants of the wrappings not perfectly removed that spoiled the picture. "One thing might be said, if you will allow me to make the remark..." observed Golenishtchev. "Oh, I shall be delighted, I beg you," said Mihailov with a forced smile. "That is, that you make Him the man-god, and not the God-man. But I know that was what you meant to do." "I cannot paint a Christ that is not in my heart," said Mihailov gloomily. "Yes; but in that case, if you will allow me to say what I think.... Your picture is so fine that my observation cannot detract from it, and, besides, it is only my personal opinion. With you it is different. Your very motive is different. But let us take Ivanov. I imagine that if Christ is brought down to the level of an historical character, it would have been better for Ivanov to select some other historical subject, fresh, untouched." "But if this is the greatest subject presented to art?" "If one looked one would find others. But the point is that art cannot suffer doubt and discussion. And before the picture of Ivanov the question arises for the believer and the unbeliever alike, 'Is it God, or is it not God?' and the unity of the impression is destroyed." "Why so? I think that for educated people," said Mihailov, "the question cannot exist." Golenishtchev did not agree with this, and confounded Mihailov by his support of his first idea of the unity of the impression being essential to art. Mihailov was greatly perturbed, but he could say nothing in defense of his own idea. Chapter 12 Anna and Vronsky had long been exchanging glances, regretting their friend's flow of cleverness. At last Vronsky, without waiting for the artist, walked away to another small picture. "Oh, how exquisite! What a lovely thing! A gem! How exquisite!" they cried with one voice. "What is it they're so pleased with?" thought Mihailov. He had positively forgotten that picture he had painted three years ago. He had forgotten all the agonies and the ecstasies he had lived through with that picture when for several months it had been the one thought haunting him day and night. He had forgotten, as he always forgot, the pictures he had finished. He did not even like to look at it, and had only brought it out because he was expecting an Englishman who wanted to buy it. "Oh, that's only an old study," he said. "How fine!" said Golenishtchev, he too, with unmistakable sincerity, falling under the spell of the picture. Two boys were angling in the shade of a willow-tree. The elder had just dropped in the hook, and was carefully pulling the float from behind a bush, entirely absorbed in what he was doing. The other, a little younger, was lying in the grass leaning on his elbows, with his tangled, flaxen head in his hands, staring at the water with his dreamy blue eyes. What was he thinking of? The enthusiasm over this picture stirred some of the old feeling for it in Mihailov, but he feared and disliked this waste of feeling for things past, and so, even though this praise was grateful to him, he tried to draw his visitors away to a third picture. But Vronsky asked whether the picture was for sale. To Mihailov at that moment, excited by visitors, it was extremely distasteful to speak of money matters. "It is put up there to be sold," he answered, scowling gloomily. When the visitors had gone, Mihailov sat down opposite the picture of Pilate and Christ, and in his mind went over what had been said, and what, though not said, had been implied by those visitors. And, strange to say, what had had such weight with him, while they were there and while he mentally put himself at their point of view, suddenly lost all importance for him. He began to look at his picture with all his own full artist vision, and was soon in that mood of conviction of the perfectibility, and so of the significance, of his picture--a conviction essential to the most intense fervor, excluding all other interests--in which alone he could work. Christ's foreshortened leg was not right, though. He took his palette and began to work. As he corrected the leg he looked continually at the figure of John in the background, which his visitors had not even noticed, but which he knew was beyond perfection. When he had finished the leg he wanted to touch that figure, but he felt too much excited for it. He was equally unable to work when he was cold and when he was too much affected and saw everything too much. There was only one stage in the transition from coldness to inspiration, at which work was possible. Today he was too much agitated. He would have covered the picture, but he stopped, holding the cloth in his hand, and, smiling blissfully, gazed a long while at the figure of John. At last, as it were regretfully tearing himself away, he dropped the cloth, and, exhausted but happy, went home. Vronsky, Anna, and Golenishtchev, on their way home, were particularly lively and cheerful. They talked of Mihailov and his pictures. The word _talent_, by which they meant an inborn, almost physical, aptitude apart from brain and heart, and in which they tried to find an expression for all the artist had gained from life, recurred particularly often in their talk, as though it were necessary for them to sum up what they had no conception of, though they wanted to talk of it. They said that there was no denying his talent, but that his talent could not develop for want of education--the common defect of our Russian artists. But the picture of the boys had imprinted itself on their memories, and they were continually coming back to it. "What an exquisite thing! How he has succeeded in it, and how simply! He doesn't even comprehend how good it is. Yes, I mustn't let it slip; I must buy it," said Vronsky. Chapter 13 Mihailov sold Vronsky his picture, and agreed to paint a portrait of Anna. On the day fixed he came and began the work. From the fifth sitting the portrait impressed everyone, especially Vronsky, not only by its resemblance, but by its characteristic beauty. It was strange how Mihailov could have discovered just her characteristic beauty. "One needs to know and love her as I have loved her to discover the very sweetest expression of her soul," Vronsky thought, though it was only from this portrait that he had himself learned this sweetest expression of her soul. But the expression was so true that he, and others too, fancied they had long known it. "I have been struggling on for ever so long without doing anything," he said of his own portrait of her, "and he just looked and painted it. That's where technique comes in." "That will come," was the consoling reassurance given him by Golenishtchev, in whose view Vronsky had both talent, and what was most important, culture, giving him a wider outlook on art. Golenishtchev's faith in Vronsky's talent was propped up by his own need of Vronsky's sympathy and approval for his own articles and ideas, and he felt that the praise and support must be mutual. In another man's house, and especially in Vronsky's palazzo, Mihailov was quite a different man from what he was in his studio. He behaved with hostile courtesy, as though he were afraid of coming closer to people he did not respect. He called Vronsky "your excellency," and notwithstanding Anna's and Vronsky's invitations, he would never stay to dinner, nor come except for the sittings. Anna was even more friendly to him than to other people, and was very grateful for her portrait. Vronsky was more than cordial with him, and was obviously interested to know the artist's opinion of his picture. Golenishtchev never let slip an opportunity of instilling sound ideas about art into Mihailov. But Mihailov remained equally chilly to all of them. Anna was aware from his eyes that he liked looking at her, but he avoided conversation with her. Vronsky's talk about his painting he met with stubborn silence, and he was as stubbornly silent when he was shown Vronsky's picture. He was unmistakably bored by Golenishtchev's conversation, and he did not attempt to oppose him. Altogether Mihailov, with his reserved and disagreeable, as it were, hostile attitude, was quite disliked by them as they got to know him better; and they were glad when the sittings were over, and they were left with a magnificent portrait in their possession, and he gave up coming. Golenishtchev was the first to give expression to an idea that had occurred to all of them, which was that Mihailov was simply jealous of Vronsky. "Not envious, let us say, since he has _talent_; but it annoys him that a wealthy man of the highest society, and a count, too (you know they all detest a title), can, without any particular trouble, do as well, if not better, than he who has devoted all his life to it. And more than all, it's a question of culture, which he is without." Vronsky defended Mihailov, but at the bottom of his heart he believed it, because in his view a man of a different, lower world would be sure to be envious. Anna's portrait--the same subject painted from nature both by him and by Mihailov--ought to have shown Vronsky the difference between him and Mihailov; but he did not see it. Only after Mihailov's portrait was painted he left off painting his portrait of Anna, deciding that it was now not needed. His picture of mediaeval life he went on with. And he himself, and Golenishtchev, and still more Anna, thought it very good, because it was far more like the celebrated pictures they knew than Mihailov's picture. Mihailov meanwhile, although Anna's portrait greatly fascinated him, was even more glad than they were when the sittings were over, and he had no longer to listen to Golenishtchev's disquisitions upon art, and could forget about Vronsky's painting. He knew that Vronsky could not be prevented from amusing himself with painting; he knew that he and all dilettanti had a perfect right to paint what they liked, but it was distasteful to him. A man could not be prevented from making himself a big wax doll, and kissing it. But if the man were to come with the doll and sit before a man in love, and begin caressing his doll as the lover caressed the woman he loved, it would be distasteful to the lover. Just such a distasteful sensation was what Mihailov felt at the sight of Vronsky's painting: he felt it both ludicrous and irritating, both pitiable and offensive. Vronsky's interest in painting and the Middle Ages did not last long. He had enough taste for painting to be unable to finish his picture. The picture came to a standstill. He was vaguely aware that its defects, inconspicuous at first, would be glaring if he were to go on with it. The same experience befell him as Golenishtchev, who felt that he had nothing to say, and continually deceived himself with the theory that his idea was not yet mature, that he was working it out and collecting materials. This exasperated and tortured Golenishtchev, but Vronsky was incapable of deceiving and torturing himself, and even more incapable of exasperation. With his characteristic decision, without explanation or apology, he simply ceased working at painting. But without this occupation, the life of Vronsky and of Anna, who wondered at his loss of interest in it, struck them as intolerably tedious in an Italian town. The palazzo suddenly seemed so obtrusively old and dirty, the spots on the curtains, the cracks in the floors, the broken plaster on the cornices became so disagreeably obvious, and the everlasting sameness of Golenishtchev, and the Italian professor and the German traveler became so wearisome, that they had to make some change. They resolved to go to Russia, to the country. In Petersburg Vronsky intended to arrange a partition of the land with his brother, while Anna meant to see her son. The summer they intended to spend on Vronsky's great family estate. Chapter 14 Levin had been married three months. He was happy, but not at all in the way he had expected to be. At every step he found his former dreams disappointed, and new, unexpected surprises of happiness. He was happy; but on entering upon family life he saw at every step that it was utterly different from what he had imagined. At every step he experienced what a man would experience who, after admiring the smooth, happy course of a little boat on a lake, should get himself into that little boat. He saw that it was not all sitting still, floating smoothly; that one had to think too, not for an instant to forget where one was floating; and that there was water under one, and that one must row; and that his unaccustomed hands would be sore; and that it was only to look at it that was easy; but that doing it, though very delightful, was very difficult. As a bachelor, when he had watched other people's married life, seen the petty cares, the squabbles, the jealousy, he had only smiled contemptuously in his heart. In his future married life there could be, he was convinced, nothing of that sort; even the external forms, indeed, he fancied, must be utterly unlike the life of others in everything. And all of a sudden, instead of his life with his wife being made on an individual pattern, it was, on the contrary, entirely made up of the pettiest details, which he had so despised before, but which now, by no will of his own, had gained an extraordinary importance that it was useless to contend against. And Levin saw that the organization of all these details was by no means so easy as he had fancied before. Although Levin believed himself to have the most exact conceptions of domestic life, unconsciously, like all men, he pictured domestic life as the happiest enjoyment of love, with nothing to hinder and no petty cares to distract. He ought, as he conceived the position, to do his work, and to find repose from it in the happiness of love. She ought to be beloved, and nothing more. But, like all men, he forgot that she too would want work. And he was surprised that she, his poetic, exquisite Kitty, could, not merely in the first weeks, but even in the first days of their married life, think, remember, and busy herself about tablecloths, and furniture, about mattresses for visitors, about a tray, about the cook, and the dinner, and so on. While they were still engaged, he had been struck by the definiteness with which she had declined the tour abroad and decided to go into the country, as though she knew of something she wanted, and could still think of something outside her love. This had jarred upon him then, and now her trivial cares and anxieties jarred upon him several times. But he saw that this was essential for her. And, loving her as he did, though he did not understand the reason of them, and jeered at these domestic pursuits, he could not help admiring them. He jeered at the way in which she arranged the furniture they had brought from Moscow; rearranged their room; hung up curtains; prepared rooms for visitors; a room for Dolly; saw after an abode for her new maid; ordered dinner of the old cook; came into collision with Agafea Mihalovna, taking from her the charge of the stores. He saw how the old cook smiled, admiring her, and listening to her inexperienced, impossible orders, how mournfully and tenderly Agafea Mihalovna shook her head over the young mistress's new arrangements. He saw that Kitty was extraordinarily sweet when, laughing and crying, she came to tell him that her maid, Masha, was used to looking upon her as her young lady, and so no one obeyed her. It seemed to him sweet, but strange, and he thought it would have been better without this. He did not know how great a sense of change she was experiencing; she, who at home had sometimes wanted some favorite dish, or sweets, without the possibility of getting either, now could order what she liked, buy pounds of sweets, spend as much money as she liked, and order any puddings she pleased. She was dreaming with delight now of Dolly's coming to them with her children, especially because she would order for the children their favorite puddings and Dolly would appreciate all her new housekeeping. She did not know herself why and wherefore, but the arranging of her house had an irresistible attraction for her. Instinctively feeling the approach of spring, and knowing that there would be days of rough weather too, she built her nest as best she could, and was in haste at the same time to build it and to learn how to do it. This care for domestic details in Kitty, so opposed to Levin's ideal of exalted happiness, was at first one of the disappointments; and this sweet care of her household, the aim of which he did not understand, but could not help loving, was one of the new happy surprises. Another disappointment and happy surprise came in their quarrels. Levin could never have conceived that between him and his wife any relations could arise other than tender, respectful and loving, and all at once in the very early days they quarreled, so that she said he did not care for her, that he cared for no one but himself, burst into tears, and wrung her arms. This first quarrel arose from Levin's having gone out to a new farmhouse and having been away half an hour too long, because he had tried to get home by a short cut and had lost his way. He drove home thinking of nothing but her, of her love, of his own happiness, and the nearer he drew to home, the warmer was his tenderness for her. He ran into the room with the same feeling, with an even stronger feeling than he had had when he reached the Shtcherbatskys' house to make his offer. And suddenly he was met by a lowering expression he had never seen in her. He would have kissed her; she pushed him away. "What is it?" "You've been enjoying yourself," she began, trying to be calm and spiteful. But as soon as she opened her mouth, a stream of reproach, of senseless jealousy, of all that had been torturing her during that half hour which she had spent sitting motionless at the window, burst from her. It was only then, for the first time, that he clearly understood what he had not understood when he led her out of the church after the wedding. He felt now that he was not simply close to her, but that he did not know where he ended and she began. He felt this from the agonizing sensation of division that he experienced at that instant. He was offended for the first instant, but the very same second he felt that he could not be offended by her, that she was himself. He felt for the first moment as a man feels when, having suddenly received a violent blow from behind, he turns round, angry and eager to avenge himself, to look for his antagonist, and finds that it is he himself who has accidentally struck himself, that there is no one to be angry with, and that he must put up with and try to soothe the pain. Never afterwards did he feel it with such intensity, but this first time he could not for a long while get over it. His natural feeling urged him to defend himself, to prove to her she was wrong; but to prove her wrong would mean irritating her still more and making the rupture greater that was the cause of all his suffering. One habitual feeling impelled him to get rid of the blame and to pass it on to her. Another feeling, even stronger, impelled him as quickly as possible to smooth over the rupture without letting it grow greater. To remain under such undeserved reproach was wretched, but to make her suffer by justifying himself was worse still. Like a man half-awake in an agony of pain, he wanted to tear out, to fling away the aching place, and coming to his senses, he felt that the aching place was himself. He could do nothing but try to help the aching place to bear it, and this he tried to do. They made peace. She, recognizing that she was wrong, though she did not say so, became tenderer to him, and they experienced new, redoubled happiness in their love. But that did not prevent such quarrels from happening again, and exceedingly often too, on the most unexpected and trivial grounds. These quarrels frequently arose from the fact that they did not yet know what was of importance to each other and that all this early period they were both often in a bad temper. When one was in a good temper, and the other in a bad temper, the peace was not broken; but when both happened to be in an ill-humor, quarrels sprang up from such incomprehensibly trifling causes, that they could never remember afterwards what they had quarreled about. It is true that when they were both in a good temper their enjoyment of life was redoubled. But still this first period of their married life was a difficult time for them. During all this early time they had a peculiarly vivid sense of tension, as it were, a tugging in opposite directions of the chain by which they were bound. Altogether their honeymoon--that is to say, the month after their wedding--from which from tradition Levin expected so much, was not merely not a time of sweetness, but remained in the memories of both as the bitterest and most humiliating period in their lives. They both alike tried in later life to blot out from their memories all the monstrous, shameful incidents of that morbid period, when both were rarely in a normal frame of mind, both were rarely quite themselves. It was only in the third month of their married life, after their return from Moscow, where they had been staying for a month, that their life began to go more smoothly. Chapter 15 They had just come back from Moscow, and were glad to be alone. He was sitting at the writing table in his study, writing. She, wearing the dark lilac dress she had worn during the first days of their married life, and put on again today, a dress particularly remembered and loved by him, was sitting on the sofa, the same old-fashioned leather sofa which had always stood in the study in Levin's father's and grandfather's days. She was sewing at _broderie anglaise_. He thought and wrote, never losing the happy consciousness of her presence. His work, both on the land and on the book, in which the principles of the new land system were to be laid down, had not been abandoned; but just as formerly these pursuits and ideas had seemed to him petty and trivial in comparison with the darkness that overspread all life, now they seemed as unimportant and petty in comparison with the life that lay before him suffused with the brilliant light of happiness. He went on with his work, but he felt now that the center of gravity of his attention had passed to something else, and that consequently he looked at his work quite differently and more clearly. Formerly this work had been for him an escape from life. Formerly he had felt that without this work his life would be too gloomy. Now these pursuits were necessary for him that life might not be too uniformly bright. Taking up his manuscript, reading through what he had written, he found with pleasure that the work was worth his working at. Many of his old ideas seemed to him superfluous and extreme, but many blanks became distinct to him when he reviewed the whole thing in his memory. He was writing now a new chapter on the causes of the present disastrous condition of agriculture in Russia. He maintained that the poverty of Russia arises not merely from the anomalous distribution of landed property and misdirected reforms, but that what had contributed of late years to this result was the civilization from without abnormally grafted upon Russia, especially facilities of communication, as railways, leading to centralization in towns, the development of luxury, and the consequent development of manufactures, credit and its accompaniment of speculation--all to the detriment of agriculture. It seemed to him that in a normal development of wealth in a state all these phenomena would arise only when a considerable amount of labor had been put into agriculture, when it had come under regular, or at least definite, conditions; that the wealth of a country ought to increase proportionally, and especially in such a way that other sources of wealth should not outstrip agriculture; that in harmony with a certain stage of agriculture there should be means of communication corresponding to it, and that in our unsettled condition of the land, railways, called into being by political and not by economic needs, were premature, and instead of promoting agriculture, as was expected of them, they were competing with agriculture and promoting the development of manufactures and credit, and so arresting its progress; and that just as the one-sided and premature development of one organ in an animal would hinder its general development, so in the general development of wealth in Russia, credit, facilities of communication, manufacturing activity, indubitably necessary in Europe, where they had arisen in their proper time, had with us only done harm, by throwing into the background the chief question calling for settlement--the question of the organization of agriculture. While he was writing his ideas she was thinking how unnaturally cordial her husband had been to young Prince Tcharsky, who had, with great want of tact, flirted with her the day before they left Moscow. "He's jealous," she thought. "Goodness! how sweet and silly he is! He's jealous of me! If he knew that I think no more of them than of Piotr the cook," she thought, looking at his head and red neck with a feeling of possession strange to herself. "Though it's a pity to take him from his work (but he has plenty of time!), I must look at his face; will he feel I'm looking at him? I wish he'd turn round ... I'll _will_ him to!" and she opened her eyes wide, as though to intensify the influence of her gaze. "Yes, they draw away all the sap and give a false appearance of prosperity," he muttered, stopping to write, and, feeling that she was looking at him and smiling, he looked round. "Well?" he queried, smiling, and getting up. "He looked round," she thought. "It's nothing; I wanted you to look round," she said, watching him, and trying to guess whether he was vexed at being interrupted or not. "How happy we are alone together!--I am, that is," he said, going up to her with a radiant smile of happiness. "I'm just as happy. I'll never go anywhere, especially not to Moscow." "And what were you thinking about?" "I? I was thinking.... No, no, go along, go on writing; don't break off," she said, pursing up her lips, "and I must cut out these little holes now, do you see?" She took up her scissors and began cutting them out. "No; tell me, what was it?" he said, sitting down beside her and watching the tiny scissors moving round. "Oh! what was I thinking about? I was thinking about Moscow, about the back of your head." "Why should I, of all people, have such happiness! It's unnatural, too good," he said, kissing her hand. "I feel quite the opposite; the better things are, the more natural it seems to me." "And you've got a little curl loose," he said, carefully turning her head round. "A little curl, oh yes. No, no, we are busy at our work!" Work did not progress further, and they darted apart from one another like culprits when Kouzma came in to announce that tea was ready. "Have they come from the town?" Levin asked Kouzma. "They've just come; they're unpacking the things." "Come quickly," she said to him as she went out of the study, "or else I shall read your letters without you." Left alone, after putting his manuscripts together in the new portfolio bought by her, he washed his hands at the new washstand with the elegant fittings, that had all made their appearance with her. Levin smiled at his own thoughts, and shook his head disapprovingly at those thoughts; a feeling akin to remorse fretted him. There was something shameful, effeminate, Capuan, as he called it to himself, in his present mode of life. "It's not right to go on like this," he thought. "It'll soon be three months, and I'm doing next to nothing. Today, almost for the first time, I set to work seriously, and what happened? I did nothing but begin and throw it aside. Even my ordinary pursuits I have almost given up. On the land I scarcely walk or drive about at all to look after things. Either I am loath to leave her, or I see she's dull alone. And I used to think that, before marriage, life was nothing much, somehow didn't count, but that after marriage, life began in earnest. And here almost three months have passed, and I have spent my time so idly and unprofitably. No, this won't do; I must begin. Of course, it's not her fault. She's not to blame in any way. I ought myself to be firmer, to maintain my masculine independence of action; or else I shall get into such ways, and she'll get used to them too.... Of course she's not to blame," he told himself. But it is hard for anyone who is dissatisfied not to blame someone else, and especially the person nearest of all to him, for the ground of his dissatisfaction. And it vaguely came into Levin's mind that she herself was not to blame (she could not be to blame for anything), but what was to blame was her education, too superficial and frivolous. ("That fool Tcharsky: she wanted, I know, to stop him, but didn't know how to.") "Yes, apart from her interest in the house (that she has), apart from dress and _broderie anglaise_, she has no serious interests. No interest in her work, in the estate, in the peasants, nor in music, though she's rather good at it, nor in reading. She does nothing, and is perfectly satisfied." Levin, in his heart, censured this, and did not as yet understand that she was preparing for that period of activity which was to come for her when she would at once be the wife of her husband and mistress of the house, and would bear, and nurse, and bring up children. He knew not that she was instinctively aware of this, and preparing herself for this time of terrible toil, did not reproach herself for the moments of carelessness and happiness in her love that she enjoyed now while gaily building her nest for the future. Chapter 16 When Levin went upstairs, his wife was sitting near the new silver samovar behind the new tea service, and, having settled old Agafea Mihalovna at a little table with a full cup of tea, was reading a letter from Dolly, with whom they were in continual and frequent correspondence. "You see, your good lady's settled me here, told me to sit a bit with her," said Agafea Mihalovna, smiling affectionately at Kitty. In these words of Agafea Mihalovna, Levin read the final act of the drama which had been enacted of late between her and Kitty. He saw that, in spite of Agafea Mihalovna's feelings being hurt by a new mistress taking the reins of government out of her hands, Kitty had yet conquered her and made her love her. "Here, I opened your letter too," said Kitty, handing him an illiterate letter. "It's from that woman, I think, your brother's..." she said. "I did not read it through. This is from my people and from Dolly. Fancy! Dolly took Tanya and Grisha to a children's ball at the Sarmatskys': Tanya was a French marquise." But Levin did not hear her. Flushing, he took the letter from Marya Nikolaevna, his brother's former mistress, and began to read it. This was the second letter he had received from Marya Nikolaevna. In the first letter, Marya Nikolaevna wrote that his brother had sent her away for no fault of hers, and, with touching simplicity, added that though she was in want again, she asked for nothing, and wished for nothing, but was only tormented by the thought that Nikolay Dmitrievitch would come to grief without her, owing to the weak state of his health, and begged his brother to look after him. Now she wrote quite differently. She had found Nikolay Dmitrievitch, had again made it up with him in Moscow, and had moved with him to a provincial town, where he had received a post in the government service. But that he had quarreled with the head official, and was on his way back to Moscow, only he had been taken so ill on the road that it was doubtful if he would ever leave his bed again, she wrote. "It's always of you he has talked, and, besides, he has no more money left." "Read this; Dolly writes about you," Kitty was beginning, with a smile; but she stopped suddenly, noticing the changed expression on her husband's face. "What is it? What's the matter?" "She writes to me that Nikolay, my brother, is at death's door. I shall go to him." Kitty's face changed at once. Thoughts of Tanya as a marquise, of Dolly, all had vanished. "When are you going?" she said. "Tomorrow." "And I will go with you, can I?" she said. "Kitty! What are you thinking of?" he said reproachfully. "How do you mean?" offended that he should seem to take her suggestion unwillingly and with vexation. "Why shouldn't I go? I shan't be in your way. I..." "I'm going because my brother is dying," said Levin. "Why should you..." "Why? For the same reason as you." "And, at a moment of such gravity for me, she only thinks of her being dull by herself," thought Levin. And this lack of candor in a matter of such gravity infuriated him. "It's out of the question," he said sternly. Agafea Mihalovna, seeing that it was coming to a quarrel, gently put down her cup and withdrew. Kitty did not even notice her. The tone in which her husband had said the last words wounded her, especially because he evidently did not believe what she had said. "I tell you, that if you go, I shall come with you; I shall certainly come," she said hastily and wrathfully. "Why out of the question? Why do you say it's out of the question?" "Because it'll be going God knows where, by all sorts of roads and to all sorts of hotels. You would be a hindrance to me," said Levin, trying to be cool. "Not at all. I don't want anything. Where you can go, I can...." "Well, for one thing then, because this woman's there whom you can't meet." "I don't know and don't care to know who's there and what. I know that my husband's brother is dying and my husband is going to him, and I go with my husband too...." "Kitty! Don't get angry. But just think a little: this is a matter of such importance that I can't bear to think that you should bring in a feeling of weakness, of dislike to being left alone. Come, you'll be dull alone, so go and stay at Moscow a little." "There, you always ascribe base, vile motives to me," she said with tears of wounded pride and fury. "I didn't mean, it wasn't weakness, it wasn't ... I feel that it's my duty to be with my husband when he's in trouble, but you try on purpose to hurt me, you try on purpose not to understand...." "No; this is awful! To be such a slave!" cried Levin, getting up, and unable to restrain his anger any longer. But at the same second he felt that he was beating himself. "Then why did you marry? You could have been free. Why did you, if you regret it?" she said, getting up and running away into the drawing room. When he went to her, she was sobbing. He began to speak, trying to find words not to dissuade but simply to soothe her. But she did not heed him, and would not agree to anything. He bent down to her and took her hand, which resisted him. He kissed her hand, kissed her hair, kissed her hand again--still she was silent. But when he took her face in both his hands and said "Kitty!" she suddenly recovered herself, and began to cry, and they were reconciled. It was decided that they should go together the next day. Levin told his wife that he believed she wanted to go simply in order to be of use, agreed that Marya Nikolaevna's being with his brother did not make her going improper, but he set off at the bottom of his heart dissatisfied both with her and with himself. He was dissatisfied with her for being unable to make up her mind to let him go when it was necessary (and how strange it was for him to think that he, so lately hardly daring to believe in such happiness as that she could love him--now was unhappy because she loved him too much!), and he was dissatisfied with himself for not showing more strength of will. Even greater was the feeling of disagreement at the bottom of his heart as to her not needing to consider the woman who was with his brother, and he thought with horror of all the contingencies they might meet with. The mere idea of his wife, his Kitty, being in the same room with a common wench, set him shuddering with horror and loathing. Chapter 17 The hotel of the provincial town where Nikolay Levin was lying ill was one of those provincial hotels which are constructed on the newest model of modern improvements, with the best intentions of cleanliness, comfort, and even elegance, but owing to the public that patronizes them, are with astounding rapidity transformed into filthy taverns with a pretension of modern improvement that only makes them worse than the old-fashioned, honestly filthy hotels. This hotel had already reached that stage, and the soldier in a filthy uniform smoking in the entry, supposed to stand for a hall-porter, and the cast-iron, slippery, dark, and disagreeable staircase, and the free and easy waiter in a filthy frock coat, and the common dining room with a dusty bouquet of wax flowers adorning the table, and filth, dust, and disorder everywhere, and at the same time the sort of modern up-to-date self-complacent railway uneasiness of this hotel, aroused a most painful feeling in Levin after their fresh young life, especially because the impression of falsity made by the hotel was so out of keeping with what awaited them. As is invariably the case, after they had been asked at what price they wanted rooms, it appeared that there was not one decent room for them; one decent room had been taken by the inspector of railroads, another by a lawyer from Moscow, a third by Princess Astafieva from the country. There remained only one filthy room, next to which they promised that another should be empty by the evening. Feeling angry with his wife because what he had expected had come to pass, which was that at the moment of arrival, when his heart throbbed with emotion and anxiety to know how his brother was getting on, he should have to be seeing after her, instead of rushing straight to his brother, Levin conducted her to the room assigned them. "Go, do go!" she said, looking at him with timid and guilty eyes. He went out of the door without a word, and at once stumbled over Marya Nikolaevna, who had heard of his arrival and had not dared to go in to see him. She was just the same as when he saw her in Moscow; the same woolen gown, and bare arms and neck, and the same good-naturedly stupid, pockmarked face, only a little plumper. "Well, how is he? how is he?" "Very bad. He can't get up. He has kept expecting you. He.... Are you ... with your wife?" Levin did not for the first moment understand what it was confused her, but she immediately enlightened him. "I'll go away. I'll go down to the kitchen," she brought out. "Nikolay Dmitrievitch will be delighted. He heard about it, and knows your lady, and remembers her abroad." Levin realized that she meant his wife, and did not know what answer to make. "Come along, come along to him!" he said. But as soon as he moved, the door of his room opened and Kitty peeped out. Levin crimsoned both from shame and anger with his wife, who had put herself and him in such a difficult position; but Marya Nikolaevna crimsoned still more. She positively shrank together and flushed to the point of tears, and clutching the ends of her apron in both hands, twisted them in her red fingers without knowing what to say and what to do. For the first instant Levin saw an expression of eager curiosity in the eyes with which Kitty looked at this awful woman, so incomprehensible to her; but it lasted only a single instant. "Well! how is he?" she turned to her husband and then to her. "But one can't go on talking in the passage like this!" Levin said, looking angrily at a gentleman who walked jauntily at that instant across the corridor, as though about his affairs. "Well then, come in," said Kitty, turning to Marya Nikolaevna, who had recovered herself, but noticing her husband's face of dismay, "or go on; go, and then come for me," she said, and went back into the room. Levin went to his brother's room. He had not in the least expected what he saw and felt in his brother's room. He had expected to find him in the same state of self-deception which he had heard was so frequent with the consumptive, and which had struck him so much during his brother's visit in the autumn. He had expected to find the physical signs of the approach of death more marked--greater weakness, greater emaciation, but still almost the same condition of things. He had expected himself to feel the same distress at the loss of the brother he loved and the same horror in face of death as he had felt then, only in a greater degree. And he had prepared himself for this; but he found something utterly different. In a little dirty room with the painted panels of its walls filthy with spittle, and conversation audible through the thin partition from the next room, in a stifling atmosphere saturated with impurities, on a bedstead moved away from the wall, there lay covered with a quilt, a body. One arm of this body was above the quilt, and the wrist, huge as a rake-handle, was attached, inconceivably it seemed, to the thin, long bone of the arm smooth from the beginning to the middle. The head lay sideways on the pillow. Levin could see the scanty locks wet with sweat on the temples and tense, transparent-looking forehead. "It cannot be that that fearful body was my brother Nikolay?" thought Levin. But he went closer, saw the face, and doubt became impossible. In spite of the terrible change in the face, Levin had only to glance at those eager eyes raised at his approach, only to catch the faint movement of the mouth under the sticky mustache, to realize the terrible truth that this death-like body was his living brother. The glittering eyes looked sternly and reproachfully at his brother as he drew near. And immediately this glance established a living relationship between living men. Levin immediately felt the reproach in the eyes fixed on him, and felt remorse at his own happiness. When Konstantin took him by the hand, Nikolay smiled. The smile was faint, scarcely perceptible, and in spite of the smile the stern expression of the eyes was unchanged. "You did not expect to find me like this," he articulated with effort. "Yes ... no," said Levin, hesitating over his words. "How was it you didn't let me know before, that is, at the time of my wedding? I made inquiries in all directions." He had to talk so as not to be silent, and he did not know what to say, especially as his brother made no reply, and simply stared without dropping his eyes, and evidently penetrated to the inner meaning of each word. Levin told his brother that his wife had come with him. Nikolay expressed pleasure, but said he was afraid of frightening her by his condition. A silence followed. Suddenly Nikolay stirred, and began to say something. Levin expected something of peculiar gravity and importance from the expression of his face, but Nikolay began speaking of his health. He found fault with the doctor, regretting he had not a celebrated Moscow doctor. Levin saw that he still hoped. Seizing the first moment of silence, Levin got up, anxious to escape, if only for an instant, from his agonizing emotion, and said that he would go and fetch his wife. "Very well, and I'll tell her to tidy up here. It's dirty and stinking here, I expect. Marya! clear up the room," the sick man said with effort. "Oh, and when you've cleared up, go away yourself," he added, looking inquiringly at his brother. Levin made no answer. Going out into the corridor, he stopped short. He had said he would fetch his wife, but now, taking stock of the emotion he was feeling, he decided that he would try on the contrary to persuade her not to go in to the sick man. "Why should she suffer as I am suffering?" he thought. "Well, how is he?" Kitty asked with a frightened face. "Oh, it's awful, it's awful! What did you come for?" said Levin. Kitty was silent for a few seconds, looking timidly and ruefully at her husband; then she went up and took him by the elbow with both hands. "Kostya! take me to him; it will be easier for us to bear it together. You only take me, take me to him, please, and go away," she said. "You must understand that for me to see you, and not to see him, is far more painful. There I might be a help to you and to him. Please, let me!" she besought her husband, as though the happiness of her life depended on it. Levin was obliged to agree, and regaining his composure, and completely forgetting about Marya Nikolaevna by now, he went again in to his brother with Kitty. Stepping lightly, and continually glancing at her husband, showing him a valorous and sympathetic face, Kitty went into the sick-room, and, turning without haste, noiselessly closed the door. With inaudible steps she went quickly to the sick man's bedside, and going up so that he had not to turn his head, she immediately clasped in her fresh young hand the skeleton of his huge hand, pressed it, and began speaking with that soft eagerness, sympathetic and not jarring, which is peculiar to women. "We have met, though we were not acquainted, at Soden," she said. "You never thought I was to be your sister?" "You would not have recognized me?" he said, with a radiant smile at her entrance. "Yes, I should. What a good thing you let us know! Not a day has passed that Kostya has not mentioned you, and been anxious." But the sick man's interest did not last long. Before she had finished speaking, there had come back into his face the stern, reproachful expression of the dying man's envy of the living. "I am afraid you are not quite comfortable here," she said, turning away from his fixed stare, and looking about the room. "We must ask about another room," she said to her husband, "so that we might be nearer." Chapter 18 Levin could not look calmly at his brother; he could not himself be natural and calm in his presence. When he went in to the sick man, his eyes and his attention were unconsciously dimmed, and he did not see and did not distinguish the details of his brother's position. He smelt the awful odor, saw the dirt, disorder, and miserable condition, and heard the groans, and felt that nothing could be done to help. It never entered his head to analyze the details of the sick man's situation, to consider how that body was lying under the quilt, how those emaciated legs and thighs and spine were lying huddled up, and whether they could not be made more comfortable, whether anything could not be done to make things, if not better, at least less bad. It made his blood run cold when he began to think of all these details. He was absolutely convinced that nothing could be done to prolong his brother's life or to relieve his suffering. But a sense of his regarding all aid as out of the question was felt by the sick man, and exasperated him. And this made it still more painful for Levin. To be in the sick-room was agony to him, not to be there still worse. And he was continually, on various pretexts, going out of the room, and coming in again, because he was unable to remain alone. But Kitty thought, and felt, and acted quite differently. On seeing the sick man, she pitied him. And pity in her womanly heart did not arouse at all that feeling of horror and loathing that it aroused in her husband, but a desire to act, to find out all the details of his state, and to remedy them. And since she had not the slightest doubt that it was her duty to help him, she had no doubt either that it was possible, and immediately set to work. The very details, the mere thought of which reduced her husband to terror, immediately engaged her attention. She sent for the doctor, sent to the chemist's, set the maid who had come with her and Marya Nikolaevna to sweep and dust and scrub; she herself washed up something, washed out something else, laid something under the quilt. Something was by her directions brought into the sick-room, something else was carried out. She herself went several times to her room, regardless of the men she met in the corridor, got out and brought in sheets, pillow cases, towels, and shirts. The waiter, who was busy with a party of engineers dining in the dining hall, came several times with an irate countenance in answer to her summons, and could not avoid carrying out her orders, as she gave them with such gracious insistence that there was no evading her. Levin did not approve of all this; he did not believe it would be of any good to the patient. Above all, he feared the patient would be angry at it. But the sick man, though he seemed and was indifferent about it, was not angry, but only abashed, and on the whole as it were interested in what she was doing with him. Coming back from the doctor to whom Kitty had sent him, Levin, on opening the door, came upon the sick man at the instant when, by Kitty's directions, they were changing his linen. The long white ridge of his spine, with the huge, prominent shoulder blades and jutting ribs and vertebrae, was bare, and Marya Nikolaevna and the waiter were struggling with the sleeve of the night shirt, and could not get the long, limp arm into it. Kitty, hurriedly closing the door after Levin, was not looking that way; but the sick man groaned, and she moved rapidly towards him. "Make haste," she said. "Oh, don't you come," said the sick man angrily. "I'll do it my myself...." "What say?" queried Marya Nikolaevna. But Kitty heard and saw he was ashamed and uncomfortable at being naked before her. "I'm not looking, I'm not looking!" she said, putting the arm in. "Marya Nikolaevna, you come this side, you do it," she added. "Please go for me, there's a little bottle in my small bag," she said, turning to her husband, "you know, in the side pocket; bring it, please, and meanwhile they'll finish clearing up here." Returning with the bottle, Levin found the sick man settled comfortably and everything about him completely changed. The heavy smell was replaced by the smell of aromatic vinegar, which Kitty with pouting lips and puffed-out, rosy cheeks was squirting through a little pipe. There was no dust visible anywhere, a rug was laid by the bedside. On the table stood medicine bottles and decanters tidily arranged, and the linen needed was folded up there, and Kitty's _broderie anglaise_. On the other table by the patient's bed there were candles and drink and powders. The sick man himself, washed and combed, lay in clean sheets on high raised pillows, in a clean night-shirt with a white collar about his astoundingly thin neck, and with a new expression of hope looked fixedly at Kitty. The doctor brought by Levin, and found by him at the club, was not the one who had been attending Nikolay Levin, as the patient was dissatisfied with him. The new doctor took up a stethoscope and sounded the patient, shook his head, prescribed medicine, and with extreme minuteness explained first how to take the medicine and then what diet was to be kept to. He advised eggs, raw or hardly cooked, and seltzer water, with warm milk at a certain temperature. When the doctor had gone away the sick man said something to his brother, of which Levin could distinguish only the last words: "Your Katya." By the expression with which he gazed at her, Levin saw that he was praising her. He called indeed to Katya, as he called her. "I'm much better already," he said. "Why, with you I should have got well long ago. How nice it is!" he took her hand and drew it towards his lips, but as though afraid she would dislike it he changed his mind, let it go, and only stroked it. Kitty took his hand in both hers and pressed it. "Now turn me over on the left side and go to bed," he said. No one could make out what he said but Kitty; she alone understood. She understood because she was all the while mentally keeping watch on what he needed. "On the other side," she said to her husband, "he always sleeps on that side. Turn him over, it's so disagreeable calling the servants. I'm not strong enough. Can you?" she said to Marya Nikolaevna. "I'm afraid not," answered Marya Nikolaevna. Terrible as it was to Levin to put his arms round that terrible body, to take hold of that under the quilt, of which he preferred to know nothing, under his wife's influence he made his resolute face that she knew so well, and putting his arms into the bed took hold of the body, but in spite of his own strength he was struck by the strange heaviness of those powerless limbs. While he was turning him over, conscious of the huge emaciated arm about his neck, Kitty swiftly and noiselessly turned the pillow, beat it up and settled in it the sick man's head, smoothing back his hair, which was sticking again to his moist brow. The sick man kept his brother's hand in his own. Levin felt that he meant to do something with his hand and was pulling it somewhere. Levin yielded with a sinking heart: yes, he drew it to his mouth and kissed it. Levin, shaking with sobs and unable to articulate a word, went out of the room. Chapter 19 "Thou hast hid these things from the wise and prudent, and hast revealed them unto babes." So Levin thought about his wife as he talked to her that evening. Levin thought of the text, not because he considered himself "wise and prudent." He did not so consider himself, but he could not help knowing that he had more intellect than his wife and Agafea Mihalovna, and he could not help knowing that when he thought of death, he thought with all the force of his intellect. He knew too that the brains of many great men, whose thoughts he had read, had brooded over death and yet knew not a hundredth part of what his wife and Agafea Mihalovna knew about it. Different as those two women were, Agafea Mihalovna and Katya, as his brother Nikolay had called her, and as Levin particularly liked to call her now, they were quite alike in this. Both knew, without a shade of doubt, what sort of thing life was and what was death, and though neither of them could have answered, and would even not have understood the questions that presented themselves to Levin, both had no doubt of the significance of this event, and were precisely alike in their way of looking at it, which they shared with millions of people. The proof that they knew for a certainty the nature of death lay in the fact that they knew without a second of hesitation how to deal with the dying, and were not frightened of them. Levin and other men like him, though they could have said a great deal about death, obviously did not know this since they were afraid of death, and were absolutely at a loss what to do when people were dying. If Levin had been alone now with his brother Nikolay, he would have looked at him with terror, and with still greater terror waited, and would not have known what else to do. More than that, he did not know what to say, how to look, how to move. To talk of outside things seemed to him shocking, impossible, to talk of death and depressing subjects--also impossible. To be silent, also impossible. "If I look at him he will think I am studying him, I am afraid; if I don't look at him, he'll think I'm thinking of other things. If I walk on tiptoe, he will be vexed; to tread firmly, I'm ashamed." Kitty evidently did not think of herself, and had no time to think about herself: she was thinking about him because she knew something, and all went well. She told him about herself even and about her wedding, and smiled and sympathized with him and petted him, and talked of cases of recovery and all went well; so then she must know. The proof that her behavior and Agafea Mihalovna's was not instinctive, animal, irrational, was that apart from the physical treatment, the relief of suffering, both Agafea Mihalovna and Kitty required for the dying man something else more important than the physical treatment, and something which had nothing in common with physical conditions. Agafea Mihalovna, speaking of the man just dead, had said: "Well, thank God, he took the sacrament and received absolution; God grant each one of us such a death." Katya in just the same way, besides all her care about linen, bedsores, drink, found time the very first day to persuade the sick man of the necessity of taking the sacrament and receiving absolution. On getting back from the sick-room to their own two rooms for the night, Levin sat with hanging head not knowing what to do. Not to speak of supper, of preparing for bed, of considering what they were going to do, he could not even talk to his wife; he was ashamed to. Kitty, on the contrary, was more active than usual. She was even livelier than usual. She ordered supper to be brought, herself unpacked their things, and herself helped to make the beds, and did not even forget to sprinkle them with Persian powder. She showed that alertness, that swiftness of reflection comes out in men before a battle, in conflict, in the dangerous and decisive moments of life--those moments when a man shows once and for all his value, and that all his past has not been wasted but has been a preparation for these moments. Everything went rapidly in her hands, and before it was twelve o'clock all their things were arranged cleanly and tidily in her rooms, in such a way that the hotel rooms seemed like home: the beds were made, brushes, combs, looking-glasses were put out, table napkins were spread. Levin felt that it was unpardonable to eat, to sleep, to talk even now, and it seemed to him that every movement he made was unseemly. She arranged the brushes, but she did it all so that there was nothing shocking in it. They could neither of them eat, however, and for a long while they could not sleep, and did not even go to bed. "I am very glad I persuaded him to receive extreme unction tomorrow," she said, sitting in her dressing jacket before her folding looking glass, combing her soft, fragrant hair with a fine comb. "I have never seen it, but I know, mamma has told me, there are prayers said for recovery." "Do you suppose he can possibly recover?" said Levin, watching a slender tress at the back of her round little head that was continually hidden when she passed the comb through the front. "I asked the doctor; he said he couldn't live more than three days. But can they be sure? I'm very glad, anyway, that I persuaded him," she said, looking askance at her husband through her hair. "Anything is possible," she added with that peculiar, rather sly expression that was always in her face when she spoke of religion. Since their conversation about religion when they were engaged neither of them had ever started a discussion of the subject, but she performed all the ceremonies of going to church, saying her prayers, and so on, always with the unvarying conviction that this ought to be so. In spite of his assertion to the contrary, she was firmly persuaded that he was as much a Christian as she, and indeed a far better one; and all that he said about it was simply one of his absurd masculine freaks, just as he would say about her _broderie anglaise_ that good people patch holes, but that she cut them on purpose, and so on. "Yes, you see this woman, Marya Nikolaevna, did not know how to manage all this," said Levin. "And ... I must own I'm very, very glad you came. You are such purity that...." He took her hand and did not kiss it (to kiss her hand in such closeness to death seemed to him improper); he merely squeezed it with a penitent air, looking at her brightening eyes. "It would have been miserable for you to be alone," she said, and lifting her hands which hid her cheeks flushing with pleasure, twisted her coil of hair on the nape of her neck and pinned it there. "No," she went on, "she did not know how.... Luckily, I learned a lot at Soden." "Surely there are not people there so ill?" "Worse." "What's so awful to me is that I can't see him as he was when he was young. You would not believe how charming he was as a youth, but I did not understand him then." "I can quite, quite believe it. How I feel that we might have been friends!" she said; and, distressed at what she had said, she looked round at her husband, and tears came into her eyes. "Yes, _might have been_," he said mournfully. "He's just one of those people of whom they say they're not for this world." "But we have many days before us; we must go to bed," said Kitty, glancing at her tiny watch. Chapter 20 The next day the sick man received the sacrament and extreme unction. During the ceremony Nikolay Levin prayed fervently. His great eyes, fastened on the holy image that was set out on a card table covered with a colored napkin, expressed such passionate prayer and hope that it was awful to Levin to see it. Levin knew that this passionate prayer and hope would only make him feel more bitterly parting from the life he so loved. Levin knew his brother and the workings of his intellect: he knew that his unbelief came not from life being easier for him without faith, but had grown up because step by step the contemporary scientific interpretation of natural phenomena crushed out the possibility of faith; and so he knew that his present return was not a legitimate one, brought about by way of the same working of his intellect, but simply a temporary, interested return to faith in a desperate hope of recovery. Levin knew too that Kitty had strengthened his hope by accounts of the marvelous recoveries she had heard of. Levin knew all this; and it was agonizingly painful to him to behold the supplicating, hopeful eyes and the emaciated wrist, lifted with difficulty, making the sign of the cross on the tense brow, and the prominent shoulders and hollow, gasping chest, which one could not feel consistent with the life the sick man was praying for. During the sacrament Levin did what he, an unbeliever, had done a thousand times. He said, addressing God, "If Thou dost exist, make this man to recover" (of course this same thing has been repeated many times), "and Thou wilt save him and me." After extreme unction the sick man became suddenly much better. He did not cough once in the course of an hour, smiled, kissed Kitty's hand, thanking her with tears, and said he was comfortable, free from pain, and that he felt strong and had an appetite. He even raised himself when his soup was brought, and asked for a cutlet as well. Hopelessly ill as he was, obvious as it was at the first glance that he could not recover, Levin and Kitty were for that hour both in the same state of excitement, happy, though fearful of being mistaken. "Is he better?" "Yes, much." "It's wonderful." "There's nothing wonderful in it." "Anyway, he's better," they said in a whisper, smiling to one another. This self-deception was not of long duration. The sick man fell into a quiet sleep, but he was waked up half an hour later by his cough. And all at once every hope vanished in those about him and in himself. The reality of his suffering crushed all hopes in Levin and Kitty and in the sick man himself, leaving no doubt, no memory even of past hopes. Without referring to what he had believed in half an hour before, as though ashamed even to recall it, he asked for iodine to inhale in a bottle covered with perforated paper. Levin gave him the bottle, and the same look of passionate hope with which he had taken the sacrament was now fastened on his brother, demanding from him the confirmation of the doctor's words that inhaling iodine worked wonders. "Is Katya not here?" he gasped, looking round while Levin reluctantly assented to the doctor's words. "No; so I can say it.... It was for her sake I went through that farce. She's so sweet; but you and I can't deceive ourselves. This is what I believe in," he said, and, squeezing the bottle in his bony hand, he began breathing over it. At eight o'clock in the evening Levin and his wife were drinking tea in their room when Marya Nikolaevna ran in to them breathlessly. She was pale, and her lips were quivering. "He is dying!" she whispered. "I'm afraid will die this minute." Both of them ran to him. He was sitting raised up with one elbow on the bed, his long back bent, and his head hanging low. "How do you feel?" Levin asked in a whisper, after a silence. "I feel I'm setting off," Nikolay said with difficulty, but with extreme distinctness, screwing the words out of himself. He did not raise his head, but simply turned his eyes upwards, without their reaching his brother's face. "Katya, go away!" he added. Levin jumped up, and with a peremptory whisper made her go out. "I'm setting off," he said again. "Why do you think so?" said Levin, so as to say something. "Because I'm setting off," he repeated, as though he had a liking for the phrase. "It's the end." Marya Nikolaevna went up to him. "You had better lie down; you'd be easier," she said. "I shall lie down soon enough," he pronounced slowly, "when I'm dead," he said sarcastically, wrathfully. "Well, you can lay me down if you like." Levin laid his brother on his back, sat down beside him, and gazed at his face, holding his breath. The dying man lay with closed eyes, but the muscles twitched from time to time on his forehead, as with one thinking deeply and intensely. Levin involuntarily thought with him of what it was that was happening to him now, but in spite of all his mental efforts to go along with him he saw by the expression of that calm, stern face that for the dying man all was growing clearer and clearer that was still as dark as ever for Levin. "Yes, yes, so," the dying man articulated slowly at intervals. "Wait a little." He was silent. "Right!" he pronounced all at once reassuringly, as though all were solved for him. "O Lord!" he murmured, and sighed deeply. Marya Nikolaevna felt his feet. "They're getting cold," she whispered. For a long while, a very long while it seemed to Levin, the sick man lay motionless. But he was still alive, and from time to time he sighed. Levin by now was exhausted from mental strain. He felt that, with no mental effort, could he understand what it was that was _right_. He could not even think of the problem of death itself, but with no will of his own thoughts kept coming to him of what he had to do next; closing the dead man's eyes, dressing him, ordering the coffin. And, strange to say, he felt utterly cold, and was not conscious of sorrow nor of loss, less still of pity for his brother. If he had any feeling for his brother at that moment, it was envy for the knowledge the dying man had now that he could not have. A long time more he sat over him so, continually expecting the end. But the end did not come. The door opened and Kitty appeared. Levin got up to stop her. But at the moment he was getting up, he caught the sound of the dying man stirring. "Don't go away," said Nikolay and held out his hand. Levin gave him his, and angrily waved to his wife to go away. With the dying man's hand in his hand, he sat for half an hour, an hour, another hour. He did not think of death at all now. He wondered what Kitty was doing; who lived in the next room; whether the doctor lived in a house of his own. He longed for food and for sleep. He cautiously drew away his hand and felt the feet. The feet were cold, but the sick man was still breathing. Levin tried again to move away on tiptoe, but the sick man stirred again and said: "Don't go." ---- The dawn came; the sick man's condition was unchanged. Levin stealthily withdrew his hand, and without looking at the dying man, went off to his own room and went to sleep. When he woke up, instead of news of his brother's death which he expected, he learned that the sick man had returned to his earlier condition. He had begun sitting up again, coughing, had begun eating again, talking again, and again had ceased to talk of death, again had begun to express hope of his recovery, and had become more irritable and more gloomy than ever. No one, neither his brother nor Kitty, could soothe him. He was angry with everyone, and said nasty things to everyone, reproached everyone for his sufferings, and insisted that they should get him a celebrated doctor from Moscow. To all inquiries made him as to how he felt, he made the same answer with an expression of vindictive reproachfulness, "I'm suffering horribly, intolerably!" The sick man was suffering more and more, especially from bedsores, which it was impossible now to remedy, and grew more and more angry with everyone about him, blaming them for everything, and especially for not having brought him a doctor from Moscow. Kitty tried in every possible way to relieve him, to soothe him; but it was all in vain, and Levin saw that she herself was exhausted both physically and morally, though she would not admit it. The sense of death, which had been evoked in all by his taking leave of life on the night when he had sent for his brother, was broken up. Everyone knew that he must inevitably die soon, that he was half dead already. Everyone wished for nothing but that he should die as soon as possible, and everyone, concealing this, gave him medicines, tried to find remedies and doctors, and deceived him and themselves and each other. All this was falsehood, disgusting, irreverent deceit. And owing to the bent of his character, and because he loved the dying man more than anyone else did, Levin was most painfully conscious of this deceit. Levin, who had long been possessed by the idea of reconciling his brothers, at least in face of death, had written to his brother, Sergey Ivanovitch, and having received an answer from him, he read this letter to the sick man. Sergey Ivanovitch wrote that he could not come himself, and in touching terms he begged his brother's forgiveness. The sick man said nothing. "What am I to write to him?" said Levin. "I hope you are not angry with him?" "No, not the least!" Nikolay answered, vexed at the question. "Tell him to send me a doctor." Three more days of agony followed; the sick man was still in the same condition. The sense of longing for his death was felt by everyone now at the mere sight of him, by the waiters and the hotel-keeper and all the people staying in the hotel, and the doctor and Marya Nikolaevna and Levin and Kitty. The sick man alone did not express this feeling, but on the contrary was furious at their not getting him doctors, and went on taking medicine and talking of life. Only at rare moments, when the opium gave him an instant's relief from the never-ceasing pain, he would sometimes, half asleep, utter what was ever more intense in his heart than in all the others: "Oh, if it were only the end!" or: "When will it be over?" His sufferings, steadily growing more intense, did their work and prepared him for death. There was no position in which he was not in pain, there was not a minute in which he was unconscious of it, not a limb, not a part of his body that did not ache and cause him agony. Even the memories, the impressions, the thoughts of this body awakened in him now the same aversion as the body itself. The sight of other people, their remarks, his own reminiscences, everything was for him a source of agony. Those about him felt this, and instinctively did not allow themselves to move freely, to talk, to express their wishes before him. All his life was merged in the one feeling of suffering and desire to be rid of it. There was evidently coming over him that revulsion that would make him look upon death as the goal of his desires, as happiness. Hitherto each individual desire, aroused by suffering or privation, such as hunger, fatigue, thirst, had been satisfied by some bodily function giving pleasure. But now no physical craving or suffering received relief, and the effort to relieve them only caused fresh suffering. And so all desires were merged in one--the desire to be rid of all his sufferings and their source, the body. But he had no words to express this desire of deliverance, and so he did not speak of it, and from habit asked for the satisfaction of desires which could not now be satisfied. "Turn me over on the other side," he would say, and immediately after he would ask to be turned back again as before. "Give me some broth. Take away the broth. Talk of something: why are you silent?" And directly they began to talk he would close his eyes, and would show weariness, indifference, and loathing. On the tenth day from their arrival at the town, Kitty was unwell. She suffered from headache and sickness, and she could not get up all the morning. The doctor opined that the indisposition arose from fatigue and excitement, and prescribed rest. After dinner, however, Kitty got up and went as usual with her work to the sick man. He looked at her sternly when she came in, and smiled contemptuously when she said she had been unwell. That day he was continually blowing his nose, and groaning piteously. "How do you feel?" she asked him. "Worse," he articulated with difficulty. "In pain!" "In pain, where?" "Everywhere." "It will be over today, you will see," said Marya Nikolaevna. Though it was said in a whisper, the sick man, whose hearing Levin had noticed was very keen, must have heard. Levin said hush to her, and looked round at the sick man. Nikolay had heard; but these words produced no effect on him. His eyes had still the same intense, reproachful look. "Why do you think so?" Levin asked her, when she had followed him into the corridor. "He has begun picking at himself," said Marya Nikolaevna. "How do you mean?" "Like this," she said, tugging at the folds of her woolen skirt. Levin noticed, indeed, that all that day the patient pulled at himself, as it were, trying to snatch something away. Marya Nikolaevna's prediction came true. Towards night the sick man was not able to lift his hands, and could only gaze before him with the same intensely concentrated expression in his eyes. Even when his brother or Kitty bent over him, so that he could see them, he looked just the same. Kitty sent for the priest to read the prayer for the dying. While the priest was reading it, the dying man did not show any sign of life; his eyes were closed. Levin, Kitty, and Marya Nikolaevna stood at the bedside. The priest had not quite finished reading the prayer when the dying man stretched, sighed, and opened his eyes. The priest, on finishing the prayer, put the cross to the cold forehead, then slowly returned it to the stand, and after standing for two minutes more in silence, he touched the huge, bloodless hand that was turning cold. "He is gone," said the priest, and would have moved away; but suddenly there was a faint stir in the mustaches of the dead man that seemed glued together, and quite distinctly in the hush they heard from the bottom of the chest the sharply defined sounds: "Not quite ... soon." And a minute later the face brightened, a smile came out under the mustaches, and the women who had gathered round began carefully laying out the corpse. The sight of his brother, and the nearness of death, revived in Levin that sense of horror in face of the insoluble enigma, together with the nearness and inevitability of death, that had come upon him that autumn evening when his brother had come to him. This feeling was now even stronger than before; even less than before did he feel capable of apprehending the meaning of death, and its inevitability rose up before him more terrible than ever. But now, thanks to his wife's presence, that feeling did not reduce him to despair. In spite of death, he felt the need of life and love. He felt that love saved him from despair, and that this love, under the menace of despair, had become still stronger and purer. The one mystery of death, still unsolved, had scarcely passed before his eyes, when another mystery had arisen, as insoluble, urging him to love and to life. The doctor confirmed his suppositions in regard to Kitty. Her indisposition was a symptom that she was with child. Chapter 21 From the moment when Alexey Alexandrovitch understood from his interviews with Betsy and with Stepan Arkadyevitch that all that was expected of him was to leave his wife in peace, without burdening her with his presence, and that his wife herself desired this, he felt so distraught that he could come to no decision of himself; he did not know himself what he wanted now, and putting himself in the hands of those who were so pleased to interest themselves in his affairs, he met everything with unqualified assent. It was only when Anna had left his house, and the English governess sent to ask him whether she should dine with him or separately, that for the first time he clearly comprehended his position, and was appalled by it. Most difficult of all in this position was the fact that he could not in any way connect and reconcile his past with what was now. It was not the past when he had lived happily with his wife that troubled him. The transition from that past to a knowledge of his wife's unfaithfulness he had lived through miserably already; that state was painful, but he could understand it. If his wife had then, on declaring to him her unfaithfulness, left him, he would have been wounded, unhappy, but he would not have been in the hopeless position--incomprehensible to himself--in which he felt himself now. He could not now reconcile his immediate past, his tenderness, his love for his sick wife, and for the other man's child with what was now the case, that is with the fact that, as it were, in return for all this he now found himself alone, put to shame, a laughing-stock, needed by no one, and despised by everyone. For the first two days after his wife's departure Alexey Alexandrovitch received applicants for assistance and his chief secretary, drove to the committee, and went down to dinner in the dining room as usual. Without giving himself a reason for what he was doing, he strained every nerve of his being for those two days, simply to preserve an appearance of composure, and even of indifference. Answering inquiries about the disposition of Anna Arkadyevna's rooms and belongings, he had exercised immense self-control to appear like a man in whose eyes what had occurred was not unforeseen nor out of the ordinary course of events, and he attained his aim: no one could have detected in him signs of despair. But on the second day after her departure, when Korney gave him a bill from a fashionable draper's shop, which Anna had forgotten to pay, and announced that the clerk from the shop was waiting, Alexey Alexandrovitch told him to show the clerk up. "Excuse me, your excellency, for venturing to trouble you. But if you direct us to apply to her excellency, would you graciously oblige us with her address?" Alexey Alexandrovitch pondered, as it seemed to the clerk, and all at once, turning round, he sat down at the table. Letting his head sink into his hands, he sat for a long while in that position, several times attempted to speak and stopped short. Korney, perceiving his master's emotion, asked the clerk to call another time. Left alone, Alexey Alexandrovitch recognized that he had not the strength to keep up the line of firmness and composure any longer. He gave orders for the carriage that was awaiting him to be taken back, and for no one to be admitted, and he did not go down to dinner. He felt that he could not endure the weight of universal contempt and exasperation, which he had distinctly seen in the face of the clerk and of Korney, and of everyone, without exception, whom he had met during those two days. He felt that he could not turn aside from himself the hatred of men, because that hatred did not come from his being bad (in that case he could have tried to be better), but from his being shamefully and repulsively unhappy. He knew that for this, for the very fact that his heart was torn with grief, they would be merciless to him. He felt that men would crush him as dogs strangle a torn dog yelping with pain. He knew that his sole means of security against people was to hide his wounds from them, and instinctively he tried to do this for two days, but now he felt incapable of keeping up the unequal struggle. His despair was even intensified by the consciousness that he was utterly alone in his sorrow. In all Petersburg there was not a human being to whom he could express what he was feeling, who would feel for him, not as a high official, not as a member of society, but simply as a suffering man; indeed he had not such a one in the whole world. Alexey Alexandrovitch grew up an orphan. There were two brothers. They did not remember their father, and their mother died when Alexey Alexandrovitch was ten years old. The property was a small one. Their uncle, Karenin, a government official of high standing, at one time a favorite of the late Tsar, had brought them up. On completing his high school and university courses with medals, Alexey Alexandrovitch had, with his uncle's aid, immediately started in a prominent position in the service, and from that time forward he had devoted himself exclusively to political ambition. In the high school and the university, and afterwards in the service, Alexey Alexandrovitch had never formed a close friendship with anyone. His brother had been the person nearest to his heart, but he had a post in the Ministry of Foreign Affairs, and was always abroad, where he had died shortly after Alexey Alexandrovitch's marriage. While he was governor of a province, Anna's aunt, a wealthy provincial lady, had thrown him--middle-aged as he was, though young for a governor--with her niece, and had succeeded in putting him in such a position that he had either to declare himself or to leave the town. Alexey Alexandrovitch was not long in hesitation. There were at the time as many reasons for the step as against it, and there was no overbalancing consideration to outweigh his invariable rule of abstaining when in doubt. But Anna's aunt had through a common acquaintance insinuated that he had already compromised the girl, and that he was in honor bound to make her an offer. He made the offer, and concentrated on his betrothed and his wife all the feeling of which he was capable. The attachment he felt to Anna precluded in his heart every need of intimate relations with others. And now among all his acquaintances he had not one friend. He had plenty of so-called connections, but no friendships. Alexey Alexandrovitch had plenty of people whom he could invite to dinner, to whose sympathy he could appeal in any public affair he was concerned about, whose interest he could reckon upon for anyone he wished to help, with whom he could candidly discuss other people's business and affairs of state. But his relations with these people were confined to one clearly defined channel, and had a certain routine from which it was impossible to depart. There was one man, a comrade of his at the university, with whom he had made friends later, and with whom he could have spoken of a personal sorrow; but this friend had a post in the Department of Education in a remote part of Russia. Of the people in Petersburg the most intimate and most possible were his chief secretary and his doctor. Mihail Vassilievitch Sludin, the chief secretary, was a straightforward, intelligent, good-hearted, and conscientious man, and Alexey Alexandrovitch was aware of his personal goodwill. But their five years of official work together seemed to have put a barrier between them that cut off warmer relations. After signing the papers brought him, Alexey Alexandrovitch had sat for a long while in silence, glancing at Mihail Vassilievitch, and several times he attempted to speak, but could not. He had already prepared the phrase: "You have heard of my trouble?" But he ended by saying, as usual: "So you'll get this ready for me?" and with that dismissed him. The other person was the doctor, who had also a kindly feeling for him; but there had long existed a taciturn understanding between them that both were weighed down by work, and always in a hurry. Of his women friends, foremost amongst them Countess Lidia Ivanovna, Alexey Alexandrovitch never thought. All women, simply as women, were terrible and distasteful to him. Chapter 22 Alexey Alexandrovitch had forgotten the Countess Lidia Ivanovna, but she had not forgotten him. At the bitterest moment of his lonely despair she came to him, and without waiting to be announced, walked straight into his study. She found him as he was sitting with his head in both hands. "_J'ai force la consigne_," she said, walking in with rapid steps and breathing hard with excitement and rapid exercise. "I have heard all! Alexey Alexandrovitch! Dear friend!" she went on, warmly squeezing his hand in both of hers and gazing with her fine pensive eyes into his. Alexey Alexandrovitch, frowning, got up, and disengaging his hand, moved her a chair. "Won't you sit down, countess? I'm seeing no one because I'm unwell, countess," he said, and his lips twitched. "Dear friend!" repeated Countess Lidia Ivanovna, never taking her eyes off his, and suddenly her eyebrows rose at the inner corners, describing a triangle on her forehead, her ugly yellow face became still uglier, but Alexey Alexandrovitch felt that she was sorry for him and was preparing to cry. And he too was softened; he snatched her plump hand and proceeded to kiss it. "Dear friend!" she said in a voice breaking with emotion. "You ought not to give way to grief. Your sorrow is a great one, but you ought to find consolation." "I am crushed, I am annihilated, I am no longer a man!" said Alexey Alexandrovitch, letting go her hand, but still gazing into her brimming eyes. "My position is so awful because I can find nowhere, I cannot find within me strength to support me." "You will find support; seek it--not in me, though I beseech you to believe in my friendship," she said, with a sigh. "Our support is love, that love that He has vouchsafed us. His burden is light," she said, with the look of ecstasy Alexey Alexandrovitch knew so well. "He will be your support and your succor." Although there was in these words a flavor of that sentimental emotion at her own lofty feelings, and that new mystical fervor which had lately gained ground in Petersburg, and which seemed to Alexey Alexandrovitch disproportionate, still it was pleasant to him to hear this now. "I am weak. I am crushed. I foresaw nothing, and now I understand nothing." "Dear friend," repeated Lidia Ivanovna. "It's not the loss of what I have not now, it's not that!" pursued Alexey Alexandrovitch. "I do not grieve for that. But I cannot help feeling humiliated before other people for the position I am placed in. It is wrong, but I can't help it, I can't help it." "Not you it was performed that noble act of forgiveness, at which I was moved to ecstasy, and everyone else too, but He, working within your heart," said Countess Lidia Ivanovna, raising her eyes rapturously, "and so you cannot be ashamed of your act." Alexey Alexandrovitch knitted his brows, and crooking his hands, he cracked his fingers. "One must know all the facts," he said in his thin voice. "A man's strength has its limits, countess, and I have reached my limits. The whole day I have had to be making arrangements, arrangements about household matters arising" (he emphasized the word _arising_) "from my new, solitary position. The servants, the governess, the accounts.... These pinpricks have stabbed me to the heart, and I have not the strength to bear it. At dinner ... yesterday, I was almost getting up from the dinner table. I could not bear the way my son looked at me. He did not ask me the meaning of it all, but he wanted to ask, and I could not bear the look in his eyes. He was afraid to look at me, but that is not all...." Alexey Alexandrovitch would have referred to the bill that had been brought him, but his voice shook, and he stopped. That bill on blue paper, for a hat and ribbons, he could not recall without a rush of self-pity. "I understand, dear friend," said Lidia Ivanovna. "I understand it all. Succor and comfort you will find not in me, though I have come only to aid you if I can. If I could take from off you all these petty, humiliating cares ... I understand that a woman's word, a woman's superintendence is needed. You will intrust it to me?" Silently and gratefully Alexey Alexandrovitch pressed her hand. "Together we will take care of Seryozha. Practical affairs are not my strong point. But I will set to work. I will be your housekeeper. Don't thank me. I do it not from myself..." "I cannot help thanking you." "But, dear friend, do not give way to the feeling of which you spoke--being ashamed of what is the Christian's highest glory: _he who humbles himself shall be exalted_. And you cannot thank me. You must thank Him, and pray to Him for succor. In Him alone we find peace, consolation, salvation, and love," she said, and turning her eyes heavenwards, she began praying, as Alexey Alexandrovitch gathered from her silence. Alexey Alexandrovitch listened to her now, and those expressions which had seemed to him, if not distasteful, at least exaggerated, now seemed to him natural and consolatory. Alexey Alexandrovitch had disliked this new enthusiastic fervor. He was a believer, who was interested in religion primarily in its political aspect, and the new doctrine which ventured upon several new interpretations, just because it paved the way to discussion and analysis, was in principle disagreeable to him. He had hitherto taken up a cold and even antagonistic attitude to this new doctrine, and with Countess Lidia Ivanovna, who had been carried away by it, he had never argued, but by silence had assiduously parried her attempts to provoke him into argument. Now for the first time he heard her words with pleasure, and did not inwardly oppose them. "I am very, very grateful to you, both for your deeds and for your words," he said, when she had finished praying. Countess Lidia Ivanovna once more pressed both her friend's hands. "Now I will enter upon my duties," she said with a smile after a pause, as she wiped away the traces of tears. "I am going to Seryozha. Only in the last extremity shall I apply to you." And she got up and went out. Countess Lidia Ivanovna went into Seryozha's part of the house, and dropping tears on the scared child's cheeks, she told him that his father was a saint and his mother was dead. Countess Lidia Ivanovna kept her promise. She did actually take upon herself the care of the organization and management of Alexey Alexandrovitch's household. But she had not overstated the case when saying that practical affairs were not her strong point. All her arrangements had to be modified because they could not be carried out, and they were modified by Korney, Alexey Alexandrovitch's valet, who, though no one was aware of the fact, now managed Karenin's household, and quietly and discreetly reported to his master while he was dressing all it was necessary for him to know. But Lidia Ivanovna's help was none the less real; she gave Alexey Alexandrovitch moral support in the consciousness of her love and respect for him, and still more, as it was soothing to her to believe, in that she almost turned him to Christianity--that is, from an indifferent and apathetic believer she turned him into an ardent and steadfast adherent of the new interpretation of Christian doctrine, which had been gaining ground of late in Petersburg. It was easy for Alexey Alexandrovitch to believe in this teaching. Alexey Alexandrovitch, like Lidia Ivanovna indeed, and others who shared their views, was completely devoid of vividness of imagination, that spiritual faculty in virtue of which the conceptions evoked by the imagination become so vivid that they must needs be in harmony with other conceptions, and with actual fact. He saw nothing impossible and inconceivable in the idea that death, though existing for unbelievers, did not exist for him, and that, as he was possessed of the most perfect faith, of the measure of which he was himself the judge, therefore there was no sin in his soul, and he was experiencing complete salvation here on earth. It is true that the erroneousness and shallowness of this conception of his faith was dimly perceptible to Alexey Alexandrovitch, and he knew that when, without the slightest idea that his forgiveness was the action of a higher power, he had surrendered directly to the feeling of forgiveness, he had felt more happiness than now when he was thinking every instant that Christ was in his heart, and that in signing official papers he was doing His will. But for Alexey Alexandrovitch it was a necessity to think in that way; it was such a necessity for him in his humiliation to have some elevated standpoint, however imaginary, from which, looked down upon by all, he could look down on others, that he clung, as to his one salvation, to his delusion of salvation. Chapter 23 The Countess Lidia Ivanovna had, as a very young and sentimental girl, been married to a wealthy man of high rank, an extremely good-natured, jovial, and extremely dissipated rake. Two months after marriage her husband abandoned her, and her impassioned protestations of affection he met with a sarcasm and even hostility that people knowing the count's good heart, and seeing no defects in the sentimental Lidia, were at a loss to explain. Though they were divorced and lived apart, yet whenever the husband met the wife, he invariably behaved to her with the same malignant irony, the cause of which was incomprehensible. Countess Lidia Ivanovna had long given up being in love with her husband, but from that time she had never given up being in love with someone. She was in love with several people at once, both men and women; she had been in love with almost everyone who had been particularly distinguished in any way. She was in love with all the new princes and princesses who married into the imperial family; she had been in love with a high dignitary of the Church, a vicar, and a parish priest; she had been in love with a journalist, three Slavophiles, with Komissarov, with a minister, a doctor, an English missionary and Karenin. All these passions constantly waning or growing more ardent, did not prevent her from keeping up the most extended and complicated relations with the court and fashionable society. But from the time that after Karenin's trouble she took him under her special protection, from the time that she set to work in Karenin's household looking after his welfare, she felt that all her other attachments were not the real thing, and that she was now genuinely in love, and with no one but Karenin. The feeling she now experienced for him seemed to her stronger than any of her former feelings. Analyzing her feeling, and comparing it with former passions, she distinctly perceived that she would not have been in love with Komissarov if he had not saved the life of the Tsar, that she would not have been in love with Ristitch-Kudzhitsky if there had been no Slavonic question, but that she loved Karenin for himself, for his lofty, uncomprehended soul, for the sweet--to her--high notes of his voice, for his drawling intonation, his weary eyes, his character, and his soft white hands with their swollen veins. She was not simply overjoyed at meeting him, but she sought in his face signs of the impression she was making on him. She tried to please him, not by her words only, but in her whole person. For his sake it was that she now lavished more care on her dress than before. She caught herself in reveries on what might have been, if she had not been married and he had been free. She blushed with emotion when he came into the room, she could not repress a smile of rapture when he said anything amiable to her. For several days now Countess Lidia Ivanovna had been in a state of intense excitement. She had learned that Anna and Vronsky were in Petersburg. Alexey Alexandrovitch must be saved from seeing her, he must be saved even from the torturing knowledge that that awful woman was in the same town with him, and that he might meet her any minute. Lidia Ivanovna made inquiries through her friends as to what those _infamous people_, as she called Anna and Vronsky, intended doing, and she endeavored so to guide every movement of her friend during those days that he could not come across them. The young adjutant, an acquaintance of Vronsky, through whom she obtained her information, and who hoped through Countess Lidia Ivanovna to obtain a concession, told her that they had finished their business and were going away next day. Lidia Ivanovna had already begun to calm down, when the next morning a note was brought her, the handwriting of which she recognized with horror. It was the handwriting of Anna Karenina. The envelope was of paper as thick as bark; on the oblong yellow paper there was a huge monogram, and the letter smelt of agreeable scent. "Who brought it?" "A commissionaire from the hotel." It was some time before Countess Lidia Ivanovna could sit down to read the letter. Her excitement brought on an attack of asthma, to which she was subject. When she had recovered her composure, she read the following letter in French: "Madame la Comtesse, "The Christian feelings with which your heart is filled give me the, I feel, unpardonable boldness to write to you. I am miserable at being separated from my son. I entreat permission to see him once before my departure. Forgive me for recalling myself to your memory. I apply to you and not to Alexey Alexandrovitch, simply because I do not wish to cause that generous man to suffer in remembering me. Knowing your friendship for him, I know you will understand me. Could you send Seryozha to me, or should I come to the house at some fixed hour, or will you let me know when and where I could see him away from home? I do not anticipate a refusal, knowing the magnanimity of him with whom it rests. You cannot conceive the craving I have to see him, and so cannot conceive the gratitude your help will arouse in me. Anna" Everything in this letter exasperated Countess Lidia Ivanovna: its contents and the allusion to magnanimity, and especially its free and easy--as she considered--tone. "Say that there is no answer," said Countess Lidia Ivanovna, and immediately opening her blotting-book, she wrote to Alexey Alexandrovitch that she hoped to see him at one o'clock at the levee. "I must talk with you of a grave and painful subject. There we will arrange where to meet. Best of all at my house, where I will order tea _as you like it_. Urgent. He lays the cross, but He gives the strength to bear it," she added, so as to give him some slight preparation. Countess Lidia Ivanovna usually wrote some two or three letters a day to Alexey Alexandrovitch. She enjoyed that form of communication, which gave opportunity for a refinement and air of mystery not afforded by their personal interviews. Chapter 24 The levee was drawing to a close. People met as they were going away, and gossiped of the latest news, of the newly bestowed honors and the changes in the positions of the higher functionaries. "If only Countess Marya Borissovna were Minister of War, and Princess Vatkovskaya were Commander-in-Chief," said a gray-headed, little old man in a gold-embroidered uniform, addressing a tall, handsome maid of honor who had questioned him about the new appointments. "And me among the adjutants," said the maid of honor, smiling. "You have an appointment already. You're over the ecclesiastical department. And your assistant's Karenin." "Good-day, prince!" said the little old man to a man who came up to him. "What were you saying of Karenin?" said the prince. "He and Putyatov have received the Alexander Nevsky." "I thought he had it already." "No. Just look at him," said the little old man, pointing with his embroidered hat to Karenin in a court uniform with the new red ribbon across his shoulders, standing in the doorway of the hall with an influential member of the Imperial Council. "Pleased and happy as a brass farthing," he added, stopping to shake hands with a handsome gentleman of the bedchamber of colossal proportions. "No; he's looking older," said the gentleman of the bedchamber. "From overwork. He's always drawing up projects nowadays. He won't let a poor devil go nowadays till he's explained it all to him under heads." "Looking older, did you say? _Il fait des passions_. I believe Countess Lidia Ivanovna's jealous now of his wife." "Oh, come now, please don't say any harm of Countess Lidia Ivanovna." "Why, is there any harm in her being in love with Karenin?" "But is it true Madame Karenina's here?" "Well, not here in the palace, but in Petersburg. I met her yesterday with Alexey Vronsky, _bras dessous, bras dessous_, in the Morsky." "C'est un homme qui n'a pas..." the gentleman of the bedchamber was beginning, but he stopped to make room, bowing, for a member of the Imperial family to pass. Thus people talked incessantly of Alexey Alexandrovitch, finding fault with him and laughing at him, while he, blocking up the way of the member of the Imperial Council he had captured, was explaining to him point by point his new financial project, never interrupting his discourse for an instant for fear he should escape. Almost at the same time that his wife left Alexey Alexandrovitch there had come to him that bitterest moment in the life of an official--the moment when his upward career comes to a full stop. This full stop had arrived and everyone perceived it, but Alexey Alexandrovitch himself was not yet aware that his career was over. Whether it was due to his feud with Stremov, or his misfortune with his wife, or simply that Alexey Alexandrovitch had reached his destined limits, it had become evident to everyone in the course of that year that his career was at an end. He still filled a position of consequence, he sat on many commissions and committees, but he was a man whose day was over, and from whom nothing was expected. Whatever he said, whatever he proposed, was heard as though it were something long familiar, and the very thing that was not needed. But Alexey Alexandrovitch was not aware of this, and, on the contrary, being cut off from direct participation in governmental activity, he saw more clearly than ever the errors and defects in the action of others, and thought it his duty to point out means for their correction. Shortly after his separation from his wife, he began writing his first note on the new judicial procedure, the first of the endless series of notes he was destined to write in the future. Alexey Alexandrovitch did not merely fail to observe his hopeless position in the official world, he was not merely free from anxiety on this head, he was positively more satisfied than ever with his own activity. "He that is unmarried careth for the things that belong to the Lord, how he may please the Lord: But he that is married careth for the things that are of the world, how he may please his wife," says the Apostle Paul, and Alexey Alexandrovitch, who was now guided in every action by Scripture, often recalled this text. It seemed to him that ever since he had been left without a wife, he had in these very projects of reform been serving the Lord more zealously than before. The unmistakable impatience of the member of the Council trying to get away from him did not trouble Alexey Alexandrovitch; he gave up his exposition only when the member of the Council, seizing his chance when one of the Imperial family was passing, slipped away from him. Left alone, Alexey Alexandrovitch looked down, collecting his thoughts, then looked casually about him and walked towards the door, where he hoped to meet Countess Lidia Ivanovna. "And how strong they all are, how sound physically," thought Alexey Alexandrovitch, looking at the powerfully built gentleman of the bedchamber with his well-combed, perfumed whiskers, and at the red neck of the prince, pinched by his tight uniform. He had to pass them on his way. "Truly is it said that all the world is evil," he thought, with another sidelong glance at the calves of the gentleman of the bedchamber. Moving forward deliberately, Alexey Alexandrovitch bowed with his customary air of weariness and dignity to the gentleman who had been talking about him, and looking towards the door, his eyes sought Countess Lidia Ivanovna. "Ah! Alexey Alexandrovitch!" said the little old man, with a malicious light in his eyes, at the moment when Karenin was on a level with them, and was nodding with a frigid gesture, "I haven't congratulated you yet," said the old man, pointing to his newly received ribbon. "Thank you," answered Alexey Alexandrovitch. "What an _exquisite_ day today," he added, laying emphasis in his peculiar way on the word _exquisite_. That they laughed at him he was well aware, but he did not expect anything but hostility from them; he was used to that by now. Catching sight of the yellow shoulders of Lidia Ivanovna jutting out above her corset, and her fine pensive eyes bidding him to her, Alexey Alexandrovitch smiled, revealing untarnished white teeth, and went towards her. Lidia Ivanovna's dress had cost her great pains, as indeed all her dresses had done of late. Her aim in dress was now quite the reverse of that she had pursued thirty years before. Then her desire had been to adorn herself with something, and the more adorned the better. Now, on the contrary, she was perforce decked out in a way so inconsistent with her age and her figure, that her one anxiety was to contrive that the contrast between these adornments and her own exterior should not be too appalling. And as far as Alexey Alexandrovitch was concerned she succeeded, and was in his eyes attractive. For him she was the one island not only of goodwill to him, but of love in the midst of the sea of hostility and jeering that surrounded him. Passing through rows of ironical eyes, he was drawn as naturally to her loving glance as a plant to the sun. "I congratulate you," she said to him, her eyes on his ribbon. Suppressing a smile of pleasure, he shrugged his shoulders, closing his eyes, as though to say that that could not be a source of joy to him. Countess Lidia Ivanovna was very well aware that it was one of his chief sources of satisfaction, though he never admitted it. "How is our angel?" said Countess Lidia Ivanovna, meaning Seryozha. "I can't say I was quite pleased with him," said Alexey Alexandrovitch, raising his eyebrows and opening his eyes. "And Sitnikov is not satisfied with him." (Sitnikov was the tutor to whom Seryozha's secular education had been intrusted.) "As I have mentioned to you, there's a sort of coldness in him towards the most important questions which ought to touch the heart of every man and every child...." Alexey Alexandrovitch began expounding his views on the sole question that interested him besides the service--the education of his son. When Alexey Alexandrovitch with Lidia Ivanovna's help had been brought back anew to life and activity, he felt it his duty to undertake the education of the son left on his hands. Having never before taken any interest in educational questions, Alexey Alexandrovitch devoted some time to the theoretical study of the subject. After reading several books on anthropology, education, and didactics, Alexey Alexandrovitch drew up a plan of education, and engaging the best tutor in Petersburg to superintend it, he set to work, and the subject continually absorbed him. "Yes, but the heart. I see in him his father's heart, and with such a heart a child cannot go far wrong," said Lidia Ivanovna with enthusiasm. "Yes, perhaps.... As for me, I do my duty. It's all I can do." "You're coming to me," said Countess Lidia Ivanovna, after a pause; "we have to speak of a subject painful for you. I would give anything to have spared you certain memories, but others are not of the same mind. I have received a letter from _her_. _She_ is here in Petersburg." Alexey Alexandrovitch shuddered at the allusion to his wife, but immediately his face assumed the deathlike rigidity which expressed utter helplessness in the matter. "I was expecting it," he said. Countess Lidia Ivanovna looked at him ecstatically, and tears of rapture at the greatness of his soul came into her eyes. Chapter 25 When Alexey Alexandrovitch came into the Countess Lidia Ivanovna's snug little boudoir, decorated with old china and hung with portraits, the lady herself had not yet made her appearance. She was changing her dress. A cloth was laid on a round table, and on it stood a china tea service and a silver spirit-lamp and tea kettle. Alexey Alexandrovitch looked idly about at the endless familiar portraits which adorned the room, and sitting down to the table, he opened a New Testament lying upon it. The rustle of the countess's silk skirt drew his attention off. "Well now, we can sit quietly," said Countess Lidia Ivanovna, slipping hurriedly with an agitated smile between the table and the sofa, "and talk over our tea." After some words of preparation, Countess Lidia Ivanovna, breathing hard and flushing crimson, gave into Alexey Alexandrovitch's hands the letter she had received. After reading the letter, he sat a long while in silence. "I don't think I have the right to refuse her," he said, timidly lifting his eyes. "Dear friend, you never see evil in anyone!" "On the contrary, I see that all is evil. But whether it is just..." His face showed irresolution, and a seeking for counsel, support, and guidance in a matter he did not understand. "No," Countess Lidia Ivanovna interrupted him; "there are limits to everything. I can understand immorality," she said, not quite truthfully, since she never could understand that which leads women to immorality; "but I don't understand cruelty: to whom? to you! How can she stay in the town where you are? No, the longer one lives the more one learns. And I'm learning to understand your loftiness and her baseness." "Who is to throw a stone?" said Alexey Alexandrovitch, unmistakably pleased with the part he had to play. "I have forgiven all, and so I cannot deprive her of what is exacted by love in her--by her love for her son...." "But is that love, my friend? Is it sincere? Admitting that you have forgiven--that you forgive--have we the right to work on the feelings of that angel? He looks on her as dead. He prays for her, and beseeches God to have mercy on her sins. And it is better so. But now what will he think?" "I had not thought of that," said Alexey Alexandrovitch, evidently agreeing. Countess Lidia Ivanovna hid her face in her hands and was silent. She was praying. "If you ask my advice," she said, having finished her prayer and uncovered her face, "I do not advise you to do this. Do you suppose I don't see how you are suffering, how this has torn open your wounds? But supposing that, as always, you don't think of yourself, what can it lead to?--to fresh suffering for you, to torture for the child. If there were a trace of humanity left in her, she ought not to wish for it herself. No, I have no hesitation in saying I advise not, and if you will intrust it to me, I will write to her." And Alexey Alexandrovitch consented, and Countess Lidia Ivanovna sent the following letter in French: "Dear Madame, "To be reminded of you might have results for your son in leading to questions on his part which could not be answered without implanting in the child's soul a spirit of censure towards what should be for him sacred, and therefore I beg you to interpret your husband's refusal in the spirit of Christian love. I pray to Almighty God to have mercy on you. Countess Lidia" This letter attained the secret object which Countess Lidia Ivanovna had concealed from herself. It wounded Anna to the quick. For his part, Alexey Alexandrovitch, on returning home from Lidia Ivanovna's, could not all that day concentrate himself on his usual pursuits, and find that spiritual peace of one saved and believing which he had felt of late. The thought of his wife, who had so greatly sinned against him, and towards whom he had been so saintly, as Countess Lidia Ivanovna had so justly told him, ought not to have troubled him; but he was not easy; he could not understand the book he was reading; he could not drive away harassing recollections of his relations with her, of the mistake which, as it now seemed, he had made in regard to her. The memory of how he had received her confession of infidelity on their way home from the races (especially that he had insisted only on the observance of external decorum, and had not sent a challenge) tortured him like a remorse. He was tortured too by the thought of the letter he had written her; and most of all, his forgiveness, which nobody wanted, and his care of the other man's child made his heart burn with shame and remorse. And just the same feeling of shame and regret he felt now, as he reviewed all his past with her, recalling the awkward words in which, after long wavering, he had made her an offer. "But how have I been to blame?" he said to himself. And this question always excited another question in him--whether they felt differently, did their loving and marrying differently, these Vronskys and Oblonskys ... these gentlemen of the bedchamber, with their fine calves. And there passed before his mind a whole series of these mettlesome, vigorous, self-confident men, who always and everywhere drew his inquisitive attention in spite of himself. He tried to dispel these thoughts, he tried to persuade himself that he was not living for this transient life, but for the life of eternity, and that there was peace and love in his heart. But the fact that he had in this transient, trivial life made, as it seemed to him, a few trivial mistakes tortured him as though the eternal salvation in which he believed had no existence. But this temptation did not last long, and soon there was reestablished once more in Alexey Alexandrovitch's soul the peace and the elevation by virtue of which he could forget what he did not want to remember. Chapter 26 "Well, Kapitonitch?" said Seryozha, coming back rosy and good-humored from his walk the day before his birthday, and giving his overcoat to the tall old hall porter, who smiled down at the little person from the height of his long figure. "Well, has the bandaged clerk been here today? Did papa see him?" "He saw him. The minute the chief secretary came out, I announced him," said the hall porter with a good-humored wink. "Here, I'll take it off." "Seryozha!" said the tutor, stopping in the doorway leading to the inner rooms. "Take it off yourself." But Seryozha, though he heard his tutor's feeble voice, did not pay attention to it. He stood keeping hold of the hall porter's belt, and gazing into his face. "Well, and did papa do what he wanted for him?" The hall porter nodded his head affirmatively. The clerk with his face tied up, who had already been seven times to ask some favor of Alexey Alexandrovitch, interested both Seryozha and the hall porter. Seryozha had come upon him in the hall, and had heard him plaintively beg the hall porter to announce him, saying that he and his children had death staring them in the face. Since then Seryozha, having met him a second time in the hall, took great interest in him. "Well, was he very glad?" he asked. "Glad? I should think so! Almost dancing as he walked away." "And has anything been left?" asked Seryozha, after a pause. "Come, sir," said the hall-porter; then with a shake of his head he whispered, "Something from the countess." Seryozha understood at once that what the hall porter was speaking of was a present from Countess Lidia Ivanovna for his birthday. "What do you say? Where?" "Korney took it to your papa. A fine plaything it must be too!" "How big? Like this?" "Rather small, but a fine thing." "A book." "No, a thing. Run along, run along, Vassily Lukitch is calling you," said the porter, hearing the tutor's steps approaching, and carefully taking away from his belt the little hand in the glove half pulled off, he signed with his head towards the tutor. "Vassily Lukitch, in a tiny minute!" answered Seryozha with that gay and loving smile which always won over the conscientious Vassily Lukitch. Seryozha was too happy, everything was too delightful for him to be able to help sharing with his friend the porter the family good fortune of which he had heard during his walk in the public gardens from Lidia Ivanovna's niece. This piece of good news seemed to him particularly important from its coming at the same time with the gladness of the bandaged clerk and his own gladness at toys having come for him. It seemed to Seryozha that this was a day on which everyone ought to be glad and happy. "You know papa's received the Alexander Nevsky today?" "To be sure I do! People have been already to congratulate him." "And is he glad?" "Glad at the Tsar's gracious favor! I should think so! It's a proof he's deserved it," said the porter severely and seriously. Seryozha fell to dreaming, gazing up at the face of the porter, which he had thoroughly studied in every detail, especially the chin that hung down between the gray whiskers, never seen by anyone but Seryozha, who saw him only from below. "Well, and has your daughter been to see you lately?" The porter's daughter was a ballet dancer. "When is she to come on week-days? They've their lessons to learn too. And you've your lesson, sir; run along." On coming into the room, Seryozha, instead of sitting down to his lessons, told his tutor of his supposition that what had been brought him must be a machine. "What do you think?" he inquired. But Vassily Lukitch was thinking of nothing but the necessity of learning the grammar lesson for the teacher, who was coming at two. "No, do just tell me, Vassily Lukitch," he asked suddenly, when he was seated at their work table with the book in his hands, "what is greater than the Alexander Nevsky? You know papa's received the Alexander Nevsky?" Vassily Lukitch replied that the Vladimir was greater than the Alexander Nevsky. "And higher still?" "Well, highest of all is the Andrey Pervozvanny." "And higher than the Andrey?" "I don't know." "What, you don't know?" and Seryozha, leaning on his elbows, sank into deep meditation. His meditations were of the most complex and diverse character. He imagined his father's having suddenly been presented with both the Vladimir and the Andrey today, and in consequence being much better tempered at his lesson, and dreamed how, when he was grown up, he would himself receive all the orders, and what they might invent higher than the Andrey. Directly any higher order were invented, he would win it. They would make a higher one still, and he would immediately win that too. The time passed in such meditations, and when the teacher came, the lesson about the adverbs of place and time and manner of action was not ready, and the teacher was not only displeased, but hurt. This touched Seryozha. He felt he was not to blame for not having learned the lesson; however much he tried, he was utterly unable to do that. As long as the teacher was explaining to him, he believed him and seemed to comprehend, but as soon as he was left alone, he was positively unable to recollect and to understand that the short and familiar word "suddenly" is an adverb of manner of action. Still he was sorry that he had disappointed the teacher. He chose a moment when the teacher was looking in silence at the book. "Mihail Ivanitch, when is your birthday?" he asked all, of a sudden. "You'd much better be thinking about your work. Birthdays are of no importance to a rational being. It's a day like any other on which one has to do one's work." Seryozha looked intently at the teacher, at his scanty beard, at his spectacles, which had slipped down below the ridge on his nose, and fell into so deep a reverie that he heard nothing of what the teacher was explaining to him. He knew that the teacher did not think what he said; he felt it from the tone in which it was said. "But why have they all agreed to speak just in the same manner always the dreariest and most useless stuff? Why does he keep me off; why doesn't he love me?" he asked himself mournfully, and could not think of an answer. Chapter 27 After the lesson with the grammar teacher came his father's lesson. While waiting for his father, Seryozha sat at the table playing with a penknife, and fell to dreaming. Among Seryozha's favorite occupations was searching for his mother during his walks. He did not believe in death generally, and in her death in particular, in spite of what Lidia Ivanovna had told him and his father had confirmed, and it was just because of that, and after he had been told she was dead, that he had begun looking for her when out for a walk. Every woman of full, graceful figure with dark hair was his mother. At the sight of such a woman such a feeling of tenderness was stirred within him that his breath failed him, and tears came into his eyes. And he was on the tiptoe of expectation that she would come up to him, would lift her veil. All her face would be visible, she would smile, she would hug him, he would sniff her fragrance, feel the softness of her arms, and cry with happiness, just as he had one evening lain on her lap while she tickled him, and he laughed and bit her white, ring-covered fingers. Later, when he accidentally learned from his old nurse that his mother was not dead, and his father and Lidia Ivanovna had explained to him that she was dead to him because she was wicked (which he could not possibly believe, because he loved her), he went on seeking her and expecting her in the same way. That day in the public gardens there had been a lady in a lilac veil, whom he had watched with a throbbing heart, believing it to be she as she came towards them along the path. The lady had not come up to them, but had disappeared somewhere. That day, more intensely than ever, Seryozha felt a rush of love for her, and now, waiting for his father, he forgot everything, and cut all round the edge of the table with his penknife, staring straight before him with sparkling eyes and dreaming of her. "Here is your papa!" said Vassily Lukitch, rousing him. Seryozha jumped up and went up to his father, and kissing his hand, looked at him intently, trying to discover signs of his joy at receiving the Alexander Nevsky. "Did you have a nice walk?" said Alexey Alexandrovitch, sitting down in his easy chair, pulling the volume of the Old Testament to him and opening it. Although Alexey Alexandrovitch had more than once told Seryozha that every Christian ought to know Scripture history thoroughly, he often referred to the Bible himself during the lesson, and Seryozha observed this. "Yes, it was very nice indeed, papa," said Seryozha, sitting sideways on his chair and rocking it, which was forbidden. "I saw Nadinka" (Nadinka was a niece of Lidia Ivanovna's who was being brought up in her house). "She told me you'd been given a new star. Are you glad, papa?" "First of all, don't rock your chair, please," said Alexey Alexandrovitch. "And secondly, it's not the reward that's precious, but the work itself. And I could have wished you understood that. If you now are going to work, to study in order to win a reward, then the work will seem hard to you; but when you work" (Alexey Alexandrovitch, as he spoke, thought of how he had been sustained by a sense of duty through the wearisome labor of the morning, consisting of signing one hundred and eighty papers), "loving your work, you will find your reward in it." Seryozha's eyes, that had been shining with gaiety and tenderness, grew dull and dropped before his father's gaze. This was the same long-familiar tone his father always took with him, and Seryozha had learned by now to fall in with it. His father always talked to him--so Seryozha felt--as though he were addressing some boy of his own imagination, one of those boys that exist in books, utterly unlike himself. And Seryozha always tried with his father to act being the story-book boy. "You understand that, I hope?" said his father. "Yes, papa," answered Seryozha, acting the part of the imaginary boy. The lesson consisted of learning by heart several verses out of the Gospel and the repetition of the beginning of the Old Testament. The verses from the Gospel Seryozha knew fairly well, but at the moment when he was saying them he became so absorbed in watching the sharply protruding, bony knobbiness of his father's forehead, that he lost the thread, and he transposed the end of one verse and the beginning of another. So it was evident to Alexey Alexandrovitch that he did not understand what he was saying, and that irritated him. He frowned, and began explaining what Seryozha had heard many times before and never could remember, because he understood it too well, just as that "suddenly" is an adverb of manner of action. Seryozha looked with scared eyes at his father, and could think of nothing but whether his father would make him repeat what he had said, as he sometimes did. And this thought so alarmed Seryozha that he now understood nothing. But his father did not make him repeat it, and passed on to the lesson out of the Old Testament. Seryozha recounted the events themselves well enough, but when he had to answer questions as to what certain events prefigured, he knew nothing, though he had already been punished over this lesson. The passage at which he was utterly unable to say anything, and began fidgeting and cutting the table and swinging his chair, was where he had to repeat the patriarchs before the Flood. He did not know one of them, except Enoch, who had been taken up alive to heaven. Last time he had remembered their names, but now he had forgotten them utterly, chiefly because Enoch was the personage he liked best in the whole of the Old Testament, and Enoch's translation to heaven was connected in his mind with a whole long train of thought, in which he became absorbed now while he gazed with fascinated eyes at his father's watch-chain and a half-unbuttoned button on his waistcoat. In death, of which they talked to him so often, Seryozha disbelieved entirely. He did not believe that those he loved could die, above all that he himself would die. That was to him something utterly inconceivable and impossible. But he had been told that all men die; he had asked people, indeed, whom he trusted, and they too, had confirmed it; his old nurse, too, said the same, though reluctantly. But Enoch had not died, and so it followed that everyone did not die. "And why cannot anyone else so serve God and be taken alive to heaven?" thought Seryozha. Bad people, that is those Seryozha did not like, they might die, but the good might all be like Enoch. "Well, what are the names of the patriarchs?" "Enoch, Enos--" "But you have said that already. This is bad, Seryozha, very bad. If you don't try to learn what is more necessary than anything for a Christian," said his father, getting up, "whatever can interest you? I am displeased with you, and Piotr Ignatitch" (this was the most important of his teachers) "is displeased with you.... I shall have to punish you." His father and his teacher were both displeased with Seryozha, and he certainly did learn his lessons very badly. But still it could not be said he was a stupid boy. On the contrary, he was far cleverer than the boys his teacher held up as examples to Seryozha. In his father's opinion, he did not want to learn what he was taught. In reality he could not learn that. He could not, because the claims of his own soul were more binding on him than those claims his father and his teacher made upon him. Those claims were in opposition, and he was in direct conflict with his education. He was nine years old; he was a child; but he knew his own soul, it was precious to him, he guarded it as the eyelid guards the eye, and without the key of love he let no one into his soul. His teachers complained that he would not learn, while his soul was brimming over with thirst for knowledge. And he learned from Kapitonitch, from his nurse, from Nadinka, from Vassily Lukitch, but not from his teachers. The spring his father and his teachers reckoned upon to turn their mill-wheels had long dried up at the source, but its waters did their work in another channel. His father punished Seryozha by not letting him go to see Nadinka, Lidia Ivanovna's niece; but this punishment turned out happily for Seryozha. Vassily Lukitch was in a good humor, and showed him how to make windmills. The whole evening passed over this work and in dreaming how to make a windmill on which he could turn himself--clutching at the sails or tying himself on and whirling round. Of his mother Seryozha did not think all the evening, but when he had gone to bed, he suddenly remembered her, and prayed in his own words that his mother tomorrow for his birthday might leave off hiding herself and come to him. "Vassily Lukitch, do you know what I prayed for tonight extra besides the regular things?" "That you might learn your lessons better?" "No." "Toys?" "No. You'll never guess. A splendid thing; but it's a secret! When it comes to pass I'll tell you. Can't you guess!" "No, I can't guess. You tell me," said Vassily Lukitch with a smile, which was rare with him. "Come, lie down, I'm putting out the candle." "Without the candle I can see better what I see and what I prayed for. There! I was almost telling the secret!" said Seryozha, laughing gaily. When the candle was taken away, Seryozha heard and felt his mother. She stood over him, and with loving eyes caressed him. But then came windmills, a knife, everything began to be mixed up, and he fell asleep. Chapter 28 On arriving in Petersburg, Vronsky and Anna stayed at one of the best hotels; Vronsky apart in a lower story, Anna above with her child, its nurse, and her maid, in a large suite of four rooms. On the day of his arrival Vronsky went to his brother's. There he found his mother, who had come from Moscow on business. His mother and sister-in-law greeted him as usual: they asked him about his stay abroad, and talked of their common acquaintances, but did not let drop a single word in allusion to his connection with Anna. His brother came the next morning to see Vronsky, and of his own accord asked him about her, and Alexey Vronsky told him directly that he looked upon his connection with Madame Karenina as marriage; that he hoped to arrange a divorce, and then to marry her, and until then he considered her as much a wife as any other wife, and he begged him to tell their mother and his wife so. "If the world disapproves, I don't care," said Vronsky; "but if my relations want to be on terms of relationship with me, they will have to be on the same terms with my wife." The elder brother, who had always a respect for his younger brother's judgment, could not well tell whether he was right or not till the world had decided the question; for his part he had nothing against it, and with Alexey he went up to see Anna. Before his brother, as before everyone, Vronsky addressed Anna with a certain formality, treating her as he might a very intimate friend, but it was understood that his brother knew their real relations, and they talked about Anna's going to Vronsky's estate. In spite of all his social experience Vronsky was, in consequence of the new position in which he was placed, laboring under a strange misapprehension. One would have thought he must have understood that society was closed for him and Anna; but now some vague ideas had sprung up in his brain that this was only the case in old-fashioned days, and that now with the rapidity of modern progress (he had unconsciously become by now a partisan of every sort of progress) the views of society had changed, and that the question whether they would be received in society was not a foregone conclusion. "Of course," he thought, "she would not be received at court, but intimate friends can and must look at it in the proper light." One may sit for several hours at a stretch with one's legs crossed in the same position, if one knows that there's nothing to prevent one's changing one's position; but if a man knows that he must remain sitting so with crossed legs, then cramps come on, the legs begin to twitch and to strain towards the spot to which one would like to draw them. This was what Vronsky was experiencing in regard to the world. Though at the bottom of his heart he knew that the world was shut on them, he put it to the test whether the world had not changed by now and would not receive them. But he very quickly perceived that though the world was open for him personally, it was closed for Anna. Just as in the game of cat and mouse, the hands raised for him were dropped to bar the way for Anna. One of the first ladies of Petersburg society whom Vronsky saw was his cousin Betsy. "At last!" she greeted him joyfully. "And Anna? How glad I am! Where are you stopping? I can fancy after your delightful travels you must find our poor Petersburg horrid. I can fancy your honeymoon in Rome. How about the divorce? Is that all over?" Vronsky noticed that Betsy's enthusiasm waned when she learned that no divorce had as yet taken place. "People will throw stones at me, I know," she said, "but I shall come and see Anna; yes, I shall certainly come. You won't be here long, I suppose?" And she did certainly come to see Anna the same day, but her tone was not at all the same as in former days. She unmistakably prided herself on her courage, and wished Anna to appreciate the fidelity of her friendship. She only stayed ten minutes, talking of society gossip, and on leaving she said: "You've never told me when the divorce is to be? Supposing I'm ready to fling my cap over the mill, other starchy people will give you the cold shoulder until you're married. And that's so simple nowadays. _Ca se fait_. So you're going on Friday? Sorry we shan't see each other again." From Betsy's tone Vronsky might have grasped what he had to expect from the world; but he made another effort in his own family. His mother he did not reckon upon. He knew that his mother, who had been so enthusiastic over Anna at their first acquaintance, would have no mercy on her now for having ruined her son's career. But he had more hope of Varya, his brother's wife. He fancied she would not throw stones, and would go simply and directly to see Anna, and would receive her in her own house. The day after his arrival Vronsky went to her, and finding her alone, expressed his wishes directly. "You know, Alexey," she said after hearing him, "how fond I am of you, and how ready I am to do anything for you; but I have not spoken, because I knew I could be of no use to you and to Anna Arkadyevna," she said, articulating the name "Anna Arkadyevna" with particular care. "Don't suppose, please, that I judge her. Never; perhaps in her place I should have done the same. I don't and can't enter into that," she said, glancing timidly at his gloomy face. "But one must call things by their names. You want me to go and see her, to ask her here, and to rehabilitate her in society; but do understand that I _cannot_ do so. I have daughters growing up, and I must live in the world for my husband's sake. Well, I'm ready to come and see Anna Arkadyevna: she will understand that I can't ask her here, or I should have to do so in such a way that she would not meet people who look at things differently; that would offend her. I can't raise her..." "Oh, I don't regard her as fallen more than hundreds of women you do receive!" Vronsky interrupted her still more gloomily, and he got up in silence, understanding that his sister-in-law's decision was not to be shaken. "Alexey! don't be angry with me. Please understand that I'm not to blame," began Varya, looking at him with a timid smile. "I'm not angry with you," he said still as gloomily; "but I'm sorry in two ways. I'm sorry, too, that this means breaking up our friendship--if not breaking up, at least weakening it. You will understand that for me, too, it cannot be otherwise." And with that he left her. Vronsky knew that further efforts were useless, and that he had to spend these few days in Petersburg as though in a strange town, avoiding every sort of relation with his own old circle in order not to be exposed to the annoyances and humiliations which were so intolerable to him. One of the most unpleasant features of his position in Petersburg was that Alexey Alexandrovitch and his name seemed to meet him everywhere. He could not begin to talk of anything without the conversation turning on Alexey Alexandrovitch; he could not go anywhere without risk of meeting him. So at least it seemed to Vronsky, just as it seems to a man with a sore finger that he is continually, as though on purpose, grazing his sore finger on everything. Their stay in Petersburg was the more painful to Vronsky that he perceived all the time a sort of new mood that he could not understand in Anna. At one time she would seem in love with him, and then she would become cold, irritable, and impenetrable. She was worrying over something, and keeping something back from him, and did not seem to notice the humiliations which poisoned his existence, and for her, with her delicate intuition, must have been still more unbearable. Chapter 29 One of Anna's objects in coming back to Russia had been to see her son. From the day she left Italy the thought of it had never ceased to agitate her. And as she got nearer to Petersburg, the delight and importance of this meeting grew ever greater in her imagination. She did not even put to herself the question how to arrange it. It seemed to her natural and simple to see her son when she should be in the same town with him. But on her arrival in Petersburg she was suddenly made distinctly aware of her present position in society, and she grasped the fact that to arrange this meeting was no easy matter. She had now been two days in Petersburg. The thought of her son never left her for a single instant, but she had not yet seen him. To go straight to the house, where she might meet Alexey Alexandrovitch, that she felt she had no right to do. She might be refused admittance and insulted. To write and so enter into relations with her husband--that it made her miserable to think of doing; she could only be at peace when she did not think of her husband. To get a glimpse of her son out walking, finding out where and when he went out, was not enough for her; she had so looked forward to this meeting, she had so much she must say to him, she so longed to embrace him, to kiss him. Seryozha's old nurse might be a help to her and show her what to do. But the nurse was not now living in Alexey Alexandrovitch's house. In this uncertainty, and in efforts to find the nurse, two days had slipped by. Hearing of the close intimacy between Alexey Alexandrovitch and Countess Lidia Ivanovna, Anna decided on the third day to write to her a letter, which cost her great pains, and in which she intentionally said that permission to see her son must depend on her husband's generosity. She knew that if the letter were shown to her husband, he would keep up his character of magnanimity, and would not refuse her request. The commissionaire who took the letter had brought her back the most cruel and unexpected answer, that there was no answer. She had never felt so humiliated as at the moment when, sending for the commissionaire, she heard from him the exact account of how he had waited, and how afterwards he had been told there was no answer. Anna felt humiliated, insulted, but she saw that from her point of view Countess Lidia Ivanovna was right. Her suffering was the more poignant that she had to bear it in solitude. She could not and would not share it with Vronsky. She knew that to him, although he was the primary cause of her distress, the question of her seeing her son would seem a matter of very little consequence. She knew that he would never be capable of understanding all the depth of her suffering, that for his cool tone at any allusion to it she would begin to hate him. And she dreaded that more than anything in the world, and so she hid from him everything that related to her son. Spending the whole day at home she considered ways of seeing her son, and had reached a decision to write to her husband. She was just composing this letter when she was handed the letter from Lidia Ivanovna. The countess's silence had subdued and depressed her, but the letter, all that she read between the lines in it, so exasperated her, this malice was so revolting beside her passionate, legitimate tenderness for her son, that she turned against other people and left off blaming herself. "This coldness--this pretense of feeling!" she said to herself. "They must needs insult me and torture the child, and I am to submit to it! Not on any consideration! She is worse than I am. I don't lie, anyway." And she decided on the spot that next day, Seryozha's birthday, she would go straight to her husband's house, bribe or deceive the servants, but at any cost see her son and overturn the hideous deception with which they were encompassing the unhappy child. She went to a toy shop, bought toys and thought over a plan of action. She would go early in the morning at eight o'clock, when Alexey Alexandrovitch would be certain not to be up. She would have money in her hand to give the hall porter and the footman, so that they should let her in, and not raising her veil, she would say that she had come from Seryozha's godfather to congratulate him, and that she had been charged to leave the toys at his bedside. She had prepared everything but the words she should say to her son. Often as she had dreamed of it, she could never think of anything. The next day, at eight o'clock in the morning, Anna got out of a hired sledge and rang at the front entrance of her former home. "Run and see what's wanted. Some lady," said Kapitonitch, who, not yet dressed, in his overcoat and galoshes, had peeped out of the window and seen a lady in a veil standing close up to the door. His assistant, a lad Anna did not know, had no sooner opened the door to her than she came in, and pulling a three-rouble note out of her muff put it hurriedly into his hand. "Seryozha--Sergey Alexeitch," she said, and was going on. Scrutinizing the note, the porter's assistant stopped her at the second glass door. "Whom do you want?" he asked. She did not hear his words and made no answer. Noticing the embarrassment of the unknown lady, Kapitonitch went out to her, opened the second door for her, and asked her what she was pleased to want. "From Prince Skorodumov for Sergey Alexeitch," she said. "His honor's not up yet," said the porter, looking at her attentively. Anna had not anticipated that the absolutely unchanged hall of the house where she had lived for nine years would so greatly affect her. Memories sweet and painful rose one after another in her heart, and for a moment she forgot what she was here for. "Would you kindly wait?" said Kapitonitch, taking off her fur cloak. As he took off the cloak, Kapitonitch glanced at her face, recognized her, and made her a low bow in silence. "Please walk in, your excellency," he said to her. She tried to say something, but her voice refused to utter any sound; with a guilty and imploring glance at the old man she went with light, swift steps up the stairs. Bent double, and his galoshes catching in the steps, Kapitonitch ran after her, trying to overtake her. "The tutor's there; maybe he's not dressed. I'll let him know." Anna still mounted the familiar staircase, not understanding what the old man was saying. "This way, to the left, if you please. Excuse its not being tidy. His honor's in the old parlor now," the hall porter said, panting. "Excuse me, wait a little, your excellency; I'll just see," he said, and overtaking her, he opened the high door and disappeared behind it. Anna stood still waiting. "He's only just awake," said the hall porter, coming out. And at the very instant the porter said this, Anna caught the sound of a childish yawn. From the sound of this yawn alone she knew her son and seemed to see him living before her eyes. "Let me in; go away!" she said, and went in through the high doorway. On the right of the door stood a bed, and sitting up in the bed was the boy. His little body bent forward with his nightshirt unbuttoned, he was stretching and still yawning. The instant his lips came together they curved into a blissfully sleepy smile, and with that smile he slowly and deliciously rolled back again. "Seryozha!" she whispered, going noiselessly up to him. When she was parted from him, and all this latter time when she had been feeling a fresh rush of love for him, she had pictured him as he was at four years old, when she had loved him most of all. Now he was not even the same as when she had left him; he was still further from the four-year-old baby, more grown and thinner. How thin his face was, how short his hair was! What long hands! How he had changed since she left him! But it was he with his head, his lips, his soft neck and broad little shoulders. "Seryozha!" she repeated just in the child's ear. He raised himself again on his elbow, turned his tangled head from side to side as though looking for something, and opened his eyes. Slowly and inquiringly he looked for several seconds at his mother standing motionless before him, then all at once he smiled a blissful smile, and shutting his eyes, rolled not backwards but towards her into her arms. "Seryozha! my darling boy!" she said, breathing hard and putting her arms round his plump little body. "Mother!" he said, wriggling about in her arms so as to touch her hands with different parts of him. Smiling sleepily still with closed eyes, he flung fat little arms round her shoulders, rolled towards her, with the delicious sleepy warmth and fragrance that is only found in children, and began rubbing his face against her neck and shoulders. "I know," he said, opening his eyes; "it's my birthday today. I knew you'd come. I'll get up directly." And saying that he dropped asleep. Anna looked at him hungrily; she saw how he had grown and changed in her absence. She knew, and did not know, the bare legs so long now, that were thrust out below the quilt, those short-cropped curls on his neck in which she had so often kissed him. She touched all this and could say nothing; tears choked her. "What are you crying for, mother?" he said, waking completely up. "Mother, what are you crying for?" he cried in a tearful voice. "I won't cry ... I'm crying for joy. It's so long since I've seen you. I won't, I won't," she said, gulping down her tears and turning away. "Come, it's time for you to dress now," she added, after a pause, and, never letting go his hands, she sat down by his bedside on the chair, where his clothes were put ready for him. "How do you dress without me? How..." she tried to begin talking simply and cheerfully, but she could not, and again she turned away. "I don't have a cold bath, papa didn't order it. And you've not seen Vassily Lukitch? He'll come in soon. Why, you're sitting on my clothes!" And Seryozha went off into a peal of laughter. She looked at him and smiled. "Mother, darling, sweet one!" he shouted, flinging himself on her again and hugging her. It was as though only now, on seeing her smile, he fully grasped what had happened. "I don't want that on," he said, taking off her hat. And as it were, seeing her afresh without her hat, he fell to kissing her again. "But what did you think about me? You didn't think I was dead?" "I never believed it." "You didn't believe it, my sweet?" "I knew, I knew!" he repeated his favorite phrase, and snatching the hand that was stroking his hair, he pressed the open palm to his mouth and kissed it. Chapter 30 Meanwhile Vassily Lukitch had not at first understood who this lady was, and had learned from their conversation that it was no other person than the mother who had left her husband, and whom he had not seen, as he had entered the house after her departure. He was in doubt whether to go in or not, or whether to communicate with Alexey Alexandrovitch. Reflecting finally that his duty was to get Seryozha up at the hour fixed, and that it was therefore not his business to consider who was there, the mother or anyone else, but simply to do his duty, he finished dressing, went to the door and opened it. But the embraces of the mother and child, the sound of their voices, and what they were saying, made him change his mind. He shook his head, and with a sigh he closed the door. "I'll wait another ten minutes," he said to himself, clearing his throat and wiping away tears. Among the servants of the household there was intense excitement all this time. All had heard that their mistress had come, and that Kapitonitch had let her in, and that she was even now in the nursery, and that their master always went in person to the nursery at nine o'clock, and every one fully comprehended that it was impossible for the husband and wife to meet, and that they must prevent it. Korney, the valet, going down to the hall porter's room, asked who had let her in, and how it was he had done so, and ascertaining that Kapitonitch had admitted her and shown her up, he gave the old man a talking-to. The hall porter was doggedly silent, but when Korney told him he ought to be sent away, Kapitonitch darted up to him, and waving his hands in Korney's face, began: "Oh yes, to be sure you'd not have let her in! After ten years' service, and never a word but of kindness, and there you'd up and say, 'Be off, go along, get away with you!' Oh yes, you're a shrewd one at politics, I dare say! You don't need to be taught how to swindle the master, and to filch fur coats!" "Soldier!" said Korney contemptuously, and he turned to the nurse who was coming in. "Here, what do you think, Marya Efimovna: he let her in without a word to anyone," Korney said addressing her. "Alexey Alexandrovitch will be down immediately--and go into the nursery!" "A pretty business, a pretty business!" said the nurse. "You, Korney Vassilievitch, you'd best keep him some way or other, the master, while I'll run and get her away somehow. A pretty business!" When the nurse went into the nursery, Seryozha was telling his mother how he and Nadinka had had a fall in sledging downhill, and had turned over three times. She was listening to the sound of his voice, watching his face and the play of expression on it, touching his hand, but she did not follow what he was saying. She must go, she must leave him,--this was the only thing she was thinking and feeling. She heard the steps of Vassily Lukitch coming up to the door and coughing; she heard, too, the steps of the nurse as she came near; but she sat like one turned to stone, incapable of beginning to speak or to get up. "Mistress, darling!" began the nurse, going up to Anna and kissing her hands and shoulders. "God has brought joy indeed to our boy on his birthday. You aren't changed one bit." "Oh, nurse dear, I didn't know you were in the house," said Anna, rousing herself for a moment. "I'm not living here, I'm living with my daughter. I came for the birthday, Anna Arkadyevna, darling!" The nurse suddenly burst into tears, and began kissing her hand again. Seryozha, with radiant eyes and smiles, holding his mother by one hand and his nurse by the other, pattered on the rug with his fat little bare feet. The tenderness shown by his beloved nurse to his mother threw him into an ecstasy. "Mother! She often comes to see me, and when she comes..." he was beginning, but he stopped, noticing that the nurse was saying something in a whisper to his mother, and that in his mother's face there was a look of dread and something like shame, which was so strangely unbecoming to her. She went up to him. "My sweet!" she said. She could not say _good-bye_, but the expression on her face said it, and he understood. "Darling, darling Kootik!" she used the name by which she had called him when he was little, "you won't forget me? You..." but she could not say more. How often afterwards she thought of words she might have said. But now she did not know how to say it, and could say nothing. But Seryozha knew all she wanted to say to him. He understood that she was unhappy and loved him. He understood even what the nurse had whispered. He had caught the words "always at nine o'clock," and he knew that this was said of his father, and that his father and mother could not meet. That he understood, but one thing he could not understand--why there should be a look of dread and shame in her face?... She was not in fault, but she was afraid of him and ashamed of something. He would have liked to put a question that would have set at rest this doubt, but he did not dare; he saw that she was miserable, and he felt for her. Silently he pressed close to her and whispered, "Don't go yet. He won't come just yet." The mother held him away from her to see what he was thinking, what to say to him, and in his frightened face she read not only that he was speaking of his father, but, as it were, asking her what he ought to think about his father. "Seryozha, my darling," she said, "love him; he's better and kinder than I am, and I have done him wrong. When you grow up you will judge." "There's no one better than you!..." he cried in despair through his tears, and, clutching her by the shoulders, he began squeezing her with all his force to him, his arms trembling with the strain. "My sweet, my little one!" said Anna, and she cried as weakly and childishly as he. At that moment the door opened. Vassily Lukitch came in. At the other door there was the sound of steps, and the nurse in a scared whisper said, "He's coming," and gave Anna her hat. Seryozha sank onto the bed and sobbed, hiding his face in his hands. Anna removed his hands, once more kissed his wet face, and with rapid steps went to the door. Alexey Alexandrovitch walked in, meeting her. Seeing her, he stopped short and bowed his head. Although she had just said he was better and kinder than she, in the rapid glance she flung at him, taking in his whole figure in all its details, feelings of repulsion and hatred for him and jealousy over her son took possession of her. With a swift gesture she put down her veil, and, quickening her pace, almost ran out of the room. She had not time to undo, and so carried back with her, the parcel of toys she had chosen the day before in a toy shop with such love and sorrow. Chapter 31 As intensely as Anna had longed to see her son, and long as she had been thinking of it and preparing herself for it, she had not in the least expected that seeing him would affect her so deeply. On getting back to her lonely rooms in the hotel she could not for a long while understand why she was there. "Yes, it's all over, and I am again alone," she said to herself, and without taking off her hat she sat down in a low chair by the hearth. Fixing her eyes on a bronze clock standing on a table between the windows, she tried to think. The French maid brought from abroad came in to suggest she should dress. She gazed at her wonderingly and said, "Presently." A footman offered her coffee. "Later on," she said. The Italian nurse, after having taken the baby out in her best, came in with her, and brought her to Anna. The plump, well-fed little baby, on seeing her mother, as she always did, held out her fat little hands, and with a smile on her toothless mouth, began, like a fish with a float, bobbing her fingers up and down the starched folds of her embroidered skirt, making them rustle. It was impossible not to smile, not to kiss the baby, impossible not to hold out a finger for her to clutch, crowing and prancing all over; impossible not to offer her a lip which she sucked into her little mouth by way of a kiss. And all this Anna did, and took her in her arms and made her dance, and kissed her fresh little cheek and bare little elbows; but at the sight of this child it was plainer than ever to her that the feeling she had for her could not be called love in comparison with what she felt for Seryozha. Everything in this baby was charming, but for some reason all this did not go deep to her heart. On her first child, though the child of an unloved father, had been concentrated all the love that had never found satisfaction. Her baby girl had been born in the most painful circumstances and had not had a hundredth part of the care and thought which had been concentrated on her first child. Besides, in the little girl everything was still in the future, while Seryozha was by now almost a personality, and a personality dearly loved. In him there was a conflict of thought and feeling; he understood her, he loved her, he judged her, she thought, recalling his words and his eyes. And she was forever--not physically only but spiritually--divided from him, and it was impossible to set this right. She gave the baby back to the nurse, let her go, and opened the locket in which there was Seryozha's portrait when he was almost of the same age as the girl. She got up, and, taking off her hat, took up from a little table an album in which there were photographs of her son at different ages. She wanted to compare them, and began taking them out of the album. She took them all out except one, the latest and best photograph. In it he was in a white smock, sitting astride a chair, with frowning eyes and smiling lips. It was his best, most characteristic expression. With her little supple hands, her white, delicate fingers, that moved with a peculiar intensity today, she pulled at a corner of the photograph, but the photograph had caught somewhere, and she could not get it out. There was no paper knife on the table, and so, pulling out the photograph that was next to her son's (it was a photograph of Vronsky taken at Rome in a round hat and with long hair), she used it to push out her son's photograph. "Oh, here is he!" she said, glancing at the portrait of Vronsky, and she suddenly recalled that he was the cause of her present misery. She had not once thought of him all the morning. But now, coming all at once upon that manly, noble face, so familiar and so dear to her, she felt a sudden rush of love for him. "But where is he? How is it he leaves me alone in my misery?" she thought all at once with a feeling of reproach, forgetting she had herself kept from him everything concerning her son. She sent to ask him to come to her immediately; with a throbbing heart she awaited him, rehearsing to herself the words in which she would tell him all, and the expressions of love with which he would console her. The messenger returned with the answer that he had a visitor with him, but that he would come immediately, and that he asked whether she would let him bring with him Prince Yashvin, who had just arrived in Petersburg. "He's not coming alone, and since dinner yesterday he has not seen me," she thought; "he's not coming so that I could tell him everything, but coming with Yashvin." And all at once a strange idea came to her: what if he had ceased to love her? And going over the events of the last few days, it seemed to her that she saw in everything a confirmation of this terrible idea. The fact that he had not dined at home yesterday, and the fact that he had insisted on their taking separate sets of rooms in Petersburg, and that even now he was not coming to her alone, as though he were trying to avoid meeting her face to face. "But he ought to tell me so. I must know that it is so. If I knew it, then I know what I should do," she said to herself, utterly unable to picture to herself the position she would be in if she were convinced of his not caring for her. She thought he had ceased to love her, she felt close upon despair, and consequently she felt exceptionally alert. She rang for her maid and went to her dressing room. As she dressed, she took more care over her appearance than she had done all those days, as though he might, if he had grown cold to her, fall in love with her again because she had dressed and arranged her hair in the way most becoming to her. She heard the bell ring before she was ready. When she went into the drawing room it was not he, but Yashvin, who met her eyes. Vronsky was looking through the photographs of her son, which she had forgotten on the table, and he made no haste to look round at her. "We have met already," she said, putting her little hand into the huge hand of Yashvin, whose bashfulness was so queerly out of keeping with his immense frame and coarse face. "We met last year at the races. Give them to me," she said, with a rapid movement snatching from Vronsky the photographs of her son, and glancing significantly at him with flashing eyes. "Were the races good this year? Instead of them I saw the races in the Corso in Rome. But you don't care for life abroad," she said with a cordial smile. "I know you and all your tastes, though I have seen so little of you." "I'm awfully sorry for that, for my tastes are mostly bad," said Yashvin, gnawing at his left mustache. Having talked a little while, and noticing that Vronsky glanced at the clock, Yashvin asked her whether she would be staying much longer in Petersburg, and unbending his huge figure reached after his cap. "Not long, I think," she said hesitatingly, glancing at Vronsky. "So then we shan't meet again?" "Come and dine with me," said Anna resolutely, angry it seemed with herself for her embarrassment, but flushing as she always did when she defined her position before a fresh person. "The dinner here is not good, but at least you will see him. There is no one of his old friends in the regiment Alexey cares for as he does for you." "Delighted," said Yashvin with a smile, from which Vronsky could see that he liked Anna very much. Yashvin said good-bye and went away; Vronsky stayed behind. "Are you going too?" she said to him. "I'm late already," he answered. "Run along! I'll catch you up in a moment," he called to Yashvin. She took him by the hand, and without taking her eyes off him, gazed at him while she ransacked her mind for the words to say that would keep him. "Wait a minute, there's something I want to say to you," and taking his broad hand she pressed it on her neck. "Oh, was it right my asking him to dinner?" "You did quite right," he said with a serene smile that showed his even teeth, and he kissed her hand. "Alexey, you have not changed to me?" she said, pressing his hand in both of hers. "Alexey, I am miserable here. When are we going away?" "Soon, soon. You wouldn't believe how disagreeable our way of living here is to me too," he said, and he drew away his hand. "Well, go, go!" she said in a tone of offense, and she walked quickly away from him. Chapter 32 When Vronsky returned home, Anna was not yet home. Soon after he had left, some lady, so they told him, had come to see her, and she had gone out with her. That she had gone out without leaving word where she was going, that she had not yet come back, and that all the morning she had been going about somewhere without a word to him--all this, together with the strange look of excitement in her face in the morning, and the recollection of the hostile tone with which she had before Yashvin almost snatched her son's photographs out of his hands, made him serious. He decided he absolutely must speak openly with her. And he waited for her in her drawing room. But Anna did not return alone, but brought with her her old unmarried aunt, Princess Oblonskaya. This was the lady who had come in the morning, and with whom Anna had gone out shopping. Anna appeared not to notice Vronsky's worried and inquiring expression, and began a lively account of her morning's shopping. He saw that there was something working within her; in her flashing eyes, when they rested for a moment on him, there was an intense concentration, and in her words and movements there was that nervous rapidity and grace which, during the early period of their intimacy, had so fascinated him, but which now so disturbed and alarmed him. The dinner was laid for four. All were gathered together and about to go into the little dining room when Tushkevitch made his appearance with a message from Princess Betsy. Princess Betsy begged her to excuse her not having come to say good-bye; she had been indisposed, but begged Anna to come to her between half-past six and nine o'clock. Vronsky glanced at Anna at the precise limit of time, so suggestive of steps having been taken that she should meet no one; but Anna appeared not to notice it. "Very sorry that I can't come just between half-past six and nine," she said with a faint smile. "The princess will be very sorry." "And so am I." "You're going, no doubt, to hear Patti?" said Tushkevitch. "Patti? You suggest the idea to me. I would go if it were possible to get a box." "I can get one," Tushkevitch offered his services. "I should be very, very grateful to you," said Anna. "But won't you dine with us?" Vronsky gave a hardly perceptible shrug. He was at a complete loss to understand what Anna was about. What had she brought the old Princess Oblonskaya home for, what had she made Tushkevitch stay to dinner for, and, most amazing of all, why was she sending him for a box? Could she possibly think in her position of going to Patti's benefit, where all the circle of her acquaintances would be? He looked at her with serious eyes, but she responded with that defiant, half-mirthful, half-desperate look, the meaning of which he could not comprehend. At dinner Anna was in aggressively high spirits--she almost flirted both with Tushkevitch and with Yashvin. When they got up from dinner and Tushkevitch had gone to get a box at the opera, Yashvin went to smoke, and Vronsky went down with him to his own rooms. After sitting there for some time he ran upstairs. Anna was already dressed in a low-necked gown of light silk and velvet that she had had made in Paris, and with costly white lace on her head, framing her face, and particularly becoming, showing up her dazzling beauty. "Are you really going to the theater?" he said, trying not to look at her. "Why do you ask with such alarm?" she said, wounded again at his not looking at her. "Why shouldn't I go?" She appeared not to understand the motive of his words. "Oh, of course, there's no reason whatever," he said, frowning. "That's just what I say," she said, willfully refusing to see the irony of his tone, and quietly turning back her long, perfumed glove. "Anna, for God's sake! what is the matter with you?" he said, appealing to her exactly as once her husband had done. "I don't understand what you are asking." "You know that it's out of the question to go." "Why so? I'm not going alone. Princess Varvara has gone to dress, she is going with me." He shrugged his shoulders with an air of perplexity and despair. "But do you mean to say you don't know?..." he began. "But I don't care to know!" she almost shrieked. "I don't care to. Do I regret what I have done? No, no, no! If it were all to do again from the beginning, it would be the same. For us, for you and for me, there is only one thing that matters, whether we love each other. Other people we need not consider. Why are we living here apart and not seeing each other? Why can't I go? I love you, and I don't care for anything," she said in Russian, glancing at him with a peculiar gleam in her eyes that he could not understand. "If you have not changed to me, why don't you look at me?" He looked at her. He saw all the beauty of her face and full dress, always so becoming to her. But now her beauty and elegance were just what irritated him. "My feeling cannot change, you know, but I beg you, I entreat you," he said again in French, with a note of tender supplication in his voice, but with coldness in his eyes. She did not hear his words, but she saw the coldness of his eyes, and answered with irritation: "And I beg you to explain why I should not go." "Because it might cause you..." he hesitated. "I don't understand. Yashvin _n'est pas compromettant_, and Princess Varvara is no worse than others. Oh, here she is!" Chapter 33 Vronsky for the first time experienced a feeling of anger against Anna, almost a hatred for her willfully refusing to understand her own position. This feeling was aggravated by his being unable to tell her plainly the cause of his anger. If he had told her directly what he was thinking, he would have said: "In that dress, with a princess only too well known to everyone, to show yourself at the theater is equivalent not merely to acknowledging your position as a fallen woman, but is flinging down a challenge to society, that is to say, cutting yourself off from it forever." He could not say that to her. "But how can she fail to see it, and what is going on in her?" he said to himself. He felt at the same time that his respect for her was diminished while his sense of her beauty was intensified. He went back scowling to his rooms, and sitting down beside Yashvin, who, with his long legs stretched out on a chair, was drinking brandy and seltzer water, he ordered a glass of the same for himself. "You were talking of Lankovsky's Powerful. That's a fine horse, and I would advise you to buy him," said Yashvin, glancing at his comrade's gloomy face. "His hind-quarters aren't quite first-rate, but the legs and head--one couldn't wish for anything better." "I think I will take him," answered Vronsky. Their conversation about horses interested him, but he did not for an instant forget Anna, and could not help listening to the sound of steps in the corridor and looking at the clock on the chimney piece. "Anna Arkadyevna gave orders to announce that she has gone to the theater." Yashvin, tipping another glass of brandy into the bubbling water, drank it and got up, buttoning his coat. "Well, let's go," he said, faintly smiling under his mustache, and showing by this smile that he knew the cause of Vronsky's gloominess, and did not attach any significance to it. "I'm not going," Vronsky answered gloomily. "Well, I must, I promised to. Good-bye, then. If you do, come to the stalls; you can take Kruzin's stall," added Yashvin as he went out. "No, I'm busy." "A wife is a care, but it's worse when she's not a wife," thought Yashvin, as he walked out of the hotel. Vronsky, left alone, got up from his chair and began pacing up and down the room. "And what's today? The fourth night.... Yegor and his wife are there, and my mother, most likely. Of course all Petersburg's there. Now she's gone in, taken off her cloak and come into the light. Tushkevitch, Yashvin, Princess Varvara," he pictured them to himself.... "What about me? Either that I'm frightened or have given up to Tushkevitch the right to protect her? From every point of view--stupid, stupid!... And why is she putting me in such a position?" he said with a gesture of despair. With that gesture he knocked against the table, on which there was standing the seltzer water and the decanter of brandy, and almost upset it. He tried to catch it, let it slip, and angrily kicked the table over and rang. "If you care to be in my service," he said to the valet who came in, "you had better remember your duties. This shouldn't be here. You ought to have cleared away." The valet, conscious of his own innocence, would have defended himself, but glancing at his master, he saw from his face that the only thing to do was to be silent, and hurriedly threading his way in and out, dropped down on the carpet and began gathering up the whole and broken glasses and bottles. "That's not your duty; send the waiter to clear away, and get my dress coat out." Vronsky went into the theater at half-past eight. The performance was in full swing. The little old box-keeper, recognizing Vronsky as he helped him off with his fur coat, called him "Your Excellency," and suggested he should not take a number but should simply call Fyodor. In the brightly lighted corridor there was no one but the box-opener and two attendants with fur cloaks on their arms listening at the doors. Through the closed doors came the sounds of the discreet _staccato_ accompaniment of the orchestra, and a single female voice rendering distinctly a musical phrase. The door opened to let the box-opener slip through, and the phrase drawing to the end reached Vronsky's hearing clearly. But the doors were closed again at once, and Vronsky did not hear the end of the phrase and the cadence of the accompaniment, though he knew from the thunder of applause that it was over. When he entered the hall, brilliantly lighted with chandeliers and gas jets, the noise was still going on. On the stage the singer, bowing and smiling, with bare shoulders flashing with diamonds, was, with the help of the tenor who had given her his arm, gathering up the bouquets that were flying awkwardly over the footlights. Then she went up to a gentleman with glossy pomaded hair parted down the center, who was stretching across the footlights holding out something to her, and all the public in the stalls as well as in the boxes was in excitement, craning forward, shouting and clapping. The conductor in his high chair assisted in passing the offering, and straightened his white tie. Vronsky walked into the middle of the stalls, and, standing still, began looking about him. That day less than ever was his attention turned upon the familiar, habitual surroundings, the stage, the noise, all the familiar, uninteresting, particolored herd of spectators in the packed theater. There were, as always, the same ladies of some sort with officers of some sort in the back of the boxes; the same gaily dressed women--God knows who--and uniforms and black coats; the same dirty crowd in the upper gallery; and among the crowd, in the boxes and in the front rows, were some forty of the _real_ people. And to those oases Vronsky at once directed his attention, and with them he entered at once into relation. The act was over when he went in, and so he did not go straight to his brother's box, but going up to the first row of stalls stopped at the footlights with Serpuhovskoy, who, standing with one knee raised and his heel on the footlights, caught sight of him in the distance and beckoned to him, smiling. Vronsky had not yet seen Anna. He purposely avoided looking in her direction. But he knew by the direction of people's eyes where she was. He looked round discreetly, but he was not seeking her; expecting the worst, his eyes sought for Alexey Alexandrovitch. To his relief Alexey Alexandrovitch was not in the theater that evening. "How little of the military man there is left in you!" Serpuhovskoy was saying to him. "A diplomat, an artist, something of that sort, one would say." "Yes, it was like going back home when I put on a black coat," answered Vronsky, smiling and slowly taking out his opera glass. "Well, I'll own I envy you there. When I come back from abroad and put on this," he touched his epaulets, "I regret my freedom." Serpuhovskoy had long given up all hope of Vronsky's career, but he liked him as before, and was now particularly cordial to him. "What a pity you were not in time for the first act!" Vronsky, listening with one ear, moved his opera glass from the stalls and scanned the boxes. Near a lady in a turban and a bald old man, who seemed to wave angrily in the moving opera glass, Vronsky suddenly caught sight of Anna's head, proud, strikingly beautiful, and smiling in the frame of lace. She was in the fifth box, twenty paces from him. She was sitting in front, and slightly turning, was saying something to Yashvin. The setting of her head on her handsome, broad shoulders, and the restrained excitement and brilliance of her eyes and her whole face reminded him of her just as he had seen her at the ball in Moscow. But he felt utterly different towards her beauty now. In his feeling for her now there was no element of mystery, and so her beauty, though it attracted him even more intensely than before, gave him now a sense of injury. She was not looking in his direction, but Vronsky felt that she had seen him already. When Vronsky turned the opera glass again in that direction, he noticed that Princess Varvara was particularly red, and kept laughing unnaturally and looking round at the next box. Anna, folding her fan and tapping it on the red velvet, was gazing away and did not see, and obviously did not wish to see, what was taking place in the next box. Yashvin's face wore the expression which was common when he was losing at cards. Scowling, he sucked the left end of his mustache further and further into his mouth, and cast sidelong glances at the next box. In that box on the left were the Kartasovs. Vronsky knew them, and knew that Anna was acquainted with them. Madame Kartasova, a thin little woman, was standing up in her box, and, her back turned upon Anna, she was putting on a mantle that her husband was holding for her. Her face was pale and angry, and she was talking excitedly. Kartasov, a fat, bald man, was continually looking round at Anna, while he attempted to soothe his wife. When the wife had gone out, the husband lingered a long while, and tried to catch Anna's eye, obviously anxious to bow to her. But Anna, with unmistakable intention, avoided noticing him, and talked to Yashvin, whose cropped head was bent down to her. Kartasov went out without making his salutation, and the box was left empty. Vronsky could not understand exactly what had passed between the Kartasovs and Anna, but he saw that something humiliating for Anna had happened. He knew this both from what he had seen, and most of all from the face of Anna, who, he could see, was taxing every nerve to carry through the part she had taken up. And in maintaining this attitude of external composure she was completely successful. Anyone who did not know her and her circle, who had not heard all the utterances of the women expressive of commiseration, indignation, and amazement, that she should show herself in society, and show herself so conspicuously with her lace and her beauty, would have admired the serenity and loveliness of this woman without a suspicion that she was undergoing the sensations of a man in the stocks. Knowing that something had happened, but not knowing precisely what, Vronsky felt a thrill of agonizing anxiety, and hoping to find out something, he went towards his brother's box. Purposely choosing the way round furthest from Anna's box, he jostled as he came out against the colonel of his old regiment talking to two acquaintances. Vronsky heard the name of Madame Karenina, and noticed how the colonel hastened to address Vronsky loudly by name, with a meaning glance at his companions. "Ah, Vronsky! When are you coming to the regiment? We can't let you off without a supper. You're one of the old set," said the colonel of his regiment. "I can't stop, awfully sorry, another time," said Vronsky, and he ran upstairs towards his brother's box. The old countess, Vronsky's mother, with her steel-gray curls, was in his brother's box. Varya with the young Princess Sorokina met him in the corridor. Leaving the Princess Sorokina with her mother, Varya held out her hand to her brother-in-law, and began immediately to speak of what interested him. She was more excited than he had ever seen her. "I think it's mean and hateful, and Madame Kartasova had no right to do it. Madame Karenina..." she began. "But what is it? I don't know." "What? you've not heard?" "You know I should be the last person to hear of it." "There isn't a more spiteful creature than that Madame Kartasova!" "But what did she do?" "My husband told me.... She has insulted Madame Karenina. Her husband began talking to her across the box, and Madame Kartasova made a scene. She said something aloud, he says, something insulting, and went away." "Count, your maman is asking for you," said the young Princess Sorokina, peeping out of the door of the box. "I've been expecting you all the while," said his mother, smiling sarcastically. "You were nowhere to be seen." Her son saw that she could not suppress a smile of delight. "Good evening, maman. I have come to you," he said coldly. "Why aren't you going to _faire la cour a Madame Karenina?_" she went on, when Princess Sorokina had moved away. "_Elle fait sensation. On oublie la Patti pour elle_." "Maman, I have asked you not to say anything to me of that," he answered, scowling. "I'm only saying what everyone's saying." Vronsky made no reply, and saying a few words to Princess Sorokina, he went away. At the door he met his brother. "Ah, Alexey!" said his brother. "How disgusting! Idiot of a woman, nothing else.... I wanted to go straight to her. Let's go together." Vronsky did not hear him. With rapid steps he went downstairs; he felt that he must do something, but he did not know what. Anger with her for having put herself and him in such a false position, together with pity for her suffering, filled his heart. He went down, and made straight for Anna's box. At her box stood Stremov, talking to her. "There are no more tenors. _Le moule en est brise!_" Vronsky bowed to her and stopped to greet Stremov. "You came in late, I think, and have missed the best song," Anna said to Vronsky, glancing ironically, he thought, at him. "I am a poor judge of music," he said, looking sternly at her. "Like Prince Yashvin," she said smiling, "who considers that Patti sings too loud." "Thank you," she said, her little hand in its long glove taking the playbill Vronsky picked up, and suddenly at that instant her lovely face quivered. She got up and went into the interior of the box. Noticing in the next act that her box was empty, Vronsky, rousing indignant "hushes" in the silent audience, went out in the middle of a solo and drove home. Anna was already at home. When Vronsky went up to her, she was in the same dress as she had worn at the theater. She was sitting in the first armchair against the wall, looking straight before her. She looked at him, and at once resumed her former position. "Anna," he said. "You, you are to blame for everything!" she cried, with tears of despair and hatred in her voice, getting up. "I begged, I implored you not to go, I knew it would be unpleasant...." "Unpleasant!" she cried--"hideous! As long as I live I shall never forget it. She said it was a disgrace to sit beside me." "A silly woman's chatter," he said: "but why risk it, why provoke?..." "I hate your calm. You ought not to have brought me to this. If you had loved me..." "Anna! How does the question of my love come in?" "Oh, if you loved me, as I love, if you were tortured as I am!..." she said, looking at him with an expression of terror. He was sorry for her, and angry notwithstanding. He assured her of his love because he saw that this was the only means of soothing her, and he did not reproach her in words, but in his heart he reproached her. And the asseverations of his love, which seemed to him so vulgar that he was ashamed to utter them, she drank in eagerly, and gradually became calmer. The next day, completely reconciled, they left for the country. PART SIX Chapter 1 Darya Alexandrovna spent the summer with her children at Pokrovskoe, at her sister Kitty Levin's. The house on her own estate was quite in ruins, and Levin and his wife had persuaded her to spend the summer with them. Stepan Arkadyevitch greatly approved of the arrangement. He said he was very sorry his official duties prevented him from spending the summer in the country with his family, which would have been the greatest happiness for him; and remaining in Moscow, he came down to the country from time to time for a day or two. Besides the Oblonskys, with all their children and their governess, the old princess too came to stay that summer with the Levins, as she considered it her duty to watch over her inexperienced daughter in her _interesting condition_. Moreover, Varenka, Kitty's friend abroad, kept her promise to come to Kitty when she was married, and stayed with her friend. All of these were friends or relations of Levin's wife. And though he liked them all, he rather regretted his own Levin world and ways, which was smothered by this influx of the "Shtcherbatsky element," as he called it to himself. Of his own relations there stayed with him only Sergey Ivanovitch, but he too was a man of the Koznishev and not the Levin stamp, so that the Levin spirit was utterly obliterated. In the Levins' house, so long deserted, there were now so many people that almost all the rooms were occupied, and almost every day it happened that the old princess, sitting down to table, counted them all over, and put the thirteenth grandson or granddaughter at a separate table. And Kitty, with her careful housekeeping, had no little trouble to get all the chickens, turkeys, and geese, of which so many were needed to satisfy the summer appetites of the visitors and children. The whole family were sitting at dinner. Dolly's children, with their governess and Varenka, were making plans for going to look for mushrooms. Sergey Ivanovitch, who was looked up to by all the party for his intellect and learning, with a respect that almost amounted to awe, surprised everyone by joining in the conversation about mushrooms. "Take me with you. I am very fond of picking mushrooms," he said, looking at Varenka; "I think it's a very nice occupation." "Oh, we shall be delighted," answered Varenka, coloring a little. Kitty exchanged meaningful glances with Dolly. The proposal of the learned and intellectual Sergey Ivanovitch to go looking for mushrooms with Varenka confirmed certain theories of Kitty's with which her mind had been very busy of late. She made haste to address some remark to her mother, so that her look should not be noticed. After dinner Sergey Ivanovitch sat with his cup of coffee at the drawing-room window, and while he took part in a conversation he had begun with his brother, he watched the door through which the children would start on the mushroom-picking expedition. Levin was sitting in the window near his brother. Kitty stood beside her husband, evidently awaiting the end of a conversation that had no interest for her, in order to tell him something. "You have changed in many respects since your marriage, and for the better," said Sergey Ivanovitch, smiling to Kitty, and obviously little interested in the conversation, "but you have remained true to your passion for defending the most paradoxical theories." "Katya, it's not good for you to stand," her husband said to her, putting a chair for her and looking significantly at her. "Oh, and there's no time either," added Sergey Ivanovitch, seeing the children running out. At the head of them all Tanya galloped sideways, in her tightly-drawn stockings, and waving a basket and Sergey Ivanovitch's hat, she ran straight up to him. Boldly running up to Sergey Ivanovitch with shining eyes, so like her father's fine eyes, she handed him his hat and made as though she would put it on for him, softening her freedom by a shy and friendly smile. "Varenka's waiting," she said, carefully putting his hat on, seeing from Sergey Ivanovitch's smile that she might do so. Varenka was standing at the door, dressed in a yellow print gown, with a white kerchief on her head. "I'm coming, I'm coming, Varvara Andreevna," said Sergey Ivanovitch, finishing his cup of coffee, and putting into their separate pockets his handkerchief and cigar-case. "And how sweet my Varenka is! eh?" said Kitty to her husband, as soon as Sergey Ivanovitch rose. She spoke so that Sergey Ivanovitch could hear, and it was clear that she meant him to do so. "And how good-looking she is--such a refined beauty! Varenka!" Kitty shouted. "Shall you be in the mill copse? We'll come out to you." "You certainly forget your condition, Kitty," said the old princess, hurriedly coming out at the door. "You mustn't shout like that." Varenka, hearing Kitty's voice and her mother's reprimand, went with light, rapid steps up to Kitty. The rapidity of her movement, her flushed and eager face, everything betrayed that something out of the common was going on in her. Kitty knew what this was, and had been watching her intently. She called Varenka at that moment merely in order mentally to give her a blessing for the important event which, as Kitty fancied, was bound to come to pass that day after dinner in the wood. "Varenka, I should be very happy if a certain something were to happen," she whispered as she kissed her. "And are you coming with us?" Varenka said to Levin in confusion, pretending not to have heard what had been said. "I am coming, but only as far as the threshing-floor, and there I shall stop." "Why, what do you want there?" said Kitty. "I must go to have a look at the new wagons, and to check the invoice," said Levin; "and where will you be?" "On the terrace." Chapter 2 On the terrace were assembled all the ladies of the party. They always liked sitting there after dinner, and that day they had work to do there too. Besides the sewing and knitting of baby clothes, with which all of them were busy, that afternoon jam was being made on the terrace by a method new to Agafea Mihalovna, without the addition of water. Kitty had introduced this new method, which had been in use in her home. Agafea Mihalovna, to whom the task of jam-making had always been intrusted, considering that what had been done in the Levin household could not be amiss, had nevertheless put water with the strawberries, maintaining that the jam could not be made without it. She had been caught in the act, and was now making jam before everyone, and it was to be proved to her conclusively that jam could be very well made without water. Agafea Mihalovna, her face heated and angry, her hair untidy, and her thin arms bare to the elbows, was turning the preserving-pan over the charcoal stove, looking darkly at the raspberries and devoutly hoping they would stick and not cook properly. The princess, conscious that Agafea Mihalovna's wrath must be chiefly directed against her, as the person responsible for the raspberry jam-making, tried to appear to be absorbed in other things and not interested in the jam, talked of other matters, but cast stealthy glances in the direction of the stove. "I always buy my maids' dresses myself, of some cheap material," the princess said, continuing the previous conversation. "Isn't it time to skim it, my dear?" she added, addressing Agafea Mihalovna. "There's not the slightest need for you to do it, and it's hot for you," she said, stopping Kitty. "I'll do it," said Dolly, and getting up, she carefully passed the spoon over the frothing sugar, and from time to time shook off the clinging jam from the spoon by knocking it on a plate that was covered with yellow-red scum and blood-colored syrup. "How they'll enjoy this at tea-time!" she thought of her children, remembering how she herself as a child had wondered how it was the grown-up people did not eat what was best of all--the scum of the jam. "Stiva says it's much better to give money." Dolly took up meanwhile the weighty subject under discussion, what presents should be made to servants. "But..." "Money's out of the question!" the princess and Kitty exclaimed with one voice. "They appreciate a present..." "Well, last year, for instance, I bought our Matrona Semyenovna, not a poplin, but something of that sort," said the princess. "I remember she was wearing it on your nameday." "A charming pattern--so simple and refined,--I should have liked it myself, if she hadn't had it. Something like Varenka's. So pretty and inexpensive." "Well, now I think it's done," said Dolly, dropping the syrup from the spoon. "When it sets as it drops, it's ready. Cook it a little longer, Agafea Mihalovna." "The flies!" said Agafea Mihalovna angrily. "It'll be just the same," she added. "Ah! how sweet it is! don't frighten it!" Kitty said suddenly, looking at a sparrow that had settled on the step and was pecking at the center of a raspberry. "Yes, but you keep a little further from the stove," said her mother. "_A propos de Varenka_," said Kitty, speaking in French, as they had been doing all the while, so that Agafea Mihalovna should not understand them, "you know, mamma, I somehow expect things to be settled today. You know what I mean. How splendid it would be!" "But what a famous matchmaker she is!" said Dolly. "How carefully and cleverly she throws them together!..." "No; tell me, mamma, what do you think?" "Why, what is one to think? He" (_he_ meant Sergey Ivanovitch) "might at any time have been a match for anyone in Russia; now, of course, he's not quite a young man, still I know ever so many girls would be glad to marry him even now.... She's a very nice girl, but he might..." "Oh, no, mamma, do understand why, for him and for her too, nothing better could be imagined. In the first place, she's charming!" said Kitty, crooking one of her fingers. "He thinks her very attractive, that's certain," assented Dolly. "Then he occupies such a position in society that he has no need to look for either fortune or position in his wife. All he needs is a good, sweet wife--a restful one." "Well, with her he would certainly be restful," Dolly assented. "Thirdly, that she should love him. And so it is ... that is, it would be so splendid!... I look forward to seeing them coming out of the forest--and everything settled. I shall see at once by their eyes. I should be so delighted! What do you think, Dolly?" "But don't excite yourself. It's not at all the thing for you to be excited," said her mother. "Oh, I'm not excited, mamma. I fancy he will make her an offer today." "Ah, that's so strange, how and when a man makes an offer!... There is a sort of barrier, and all at once it's broken down," said Dolly, smiling pensively and recalling her past with Stepan Arkadyevitch. "Mamma, how did papa make you an offer?" Kitty asked suddenly. "There was nothing out of the way, it was very simple," answered the princess, but her face beamed all over at the recollection. "Oh, but how was it? You loved him, anyway, before you were allowed to speak?" Kitty felt a peculiar pleasure in being able now to talk to her mother on equal terms about those questions of such paramount interest in a woman's life. "Of course I did; he had come to stay with us in the country." "But how was it settled between you, mamma?" "You imagine, I dare say, that you invented something quite new? It's always just the same: it was settled by the eyes, by smiles..." "How nicely you said that, mamma! It's just by the eyes, by smiles that it's done," Dolly assented. "But what words did he say?" "What did Kostya say to you?" "He wrote it in chalk. It was wonderful.... How long ago it seems!" she said. And the three women all fell to musing on the same thing. Kitty was the first to break the silence. She remembered all that last winter before her marriage, and her passion for Vronsky. "There's one thing ... that old love affair of Varenka's," she said, a natural chain of ideas bringing her to this point. "I should have liked to say something to Sergey Ivanovitch, to prepare him. They're all--all men, I mean," she added, "awfully jealous over our past." "Not all," said Dolly. "You judge by your own husband. It makes him miserable even now to remember Vronsky. Eh? that's true, isn't it?" "Yes," Kitty answered, a pensive smile in her eyes. "But I really don't know," the mother put in in defense of her motherly care of her daughter, "what there was in your past that could worry him? That Vronsky paid you attentions--that happens to every girl." "Oh, yes, but we didn't mean that," Kitty said, flushing a little. "No, let me speak," her mother went on, "why, you yourself would not let me have a talk to Vronsky. Don't you remember?" "Oh, mamma!" said Kitty, with an expression of suffering. "There's no keeping you young people in check nowadays.... Your friendship could not have gone beyond what was suitable. I should myself have called upon him to explain himself. But, my darling, it's not right for you to be agitated. Please remember that, and calm yourself." "I'm perfectly calm, maman." "How happy it was for Kitty that Anna came then," said Dolly, "and how unhappy for her. It turned out quite the opposite," she said, struck by her own ideas. "Then Anna was so happy, and Kitty thought herself unhappy. Now it is just the opposite. I often think of her." "A nice person to think about! Horrid, repulsive woman--no heart," said her mother, who could not forget that Kitty had married not Vronsky, but Levin. "What do you want to talk of it for?" Kitty said with annoyance. "I never think about it, and I don't want to think of it.... And I don't want to think of it," she said, catching the sound of her husband's well-known step on the steps of the terrace. "What's that you don't want to think about?" inquired Levin, coming onto the terrace. But no one answered him, and he did not repeat the question. "I'm sorry I've broken in on your feminine parliament," he said, looking round on every one discontentedly, and perceiving that they had been talking of something which they would not talk about before him. For a second he felt that he was sharing the feeling of Agafea Mihalovna, vexation at their making jam without water, and altogether at the outside Shtcherbatsky element. He smiled, however, and went up to Kitty. "Well, how are you?" he asked her, looking at her with the expression with which everyone looked at her now. "Oh, very well," said Kitty, smiling, "and how have things gone with you?" "The wagons held three times as much as the old carts did. Well, are we going for the children? I've ordered the horses to be put in." "What! you want to take Kitty in the wagonette?" her mother said reproachfully. "Yes, at a walking pace, princess." Levin never called the princess "maman" as men often do call their mothers-in-law, and the princess disliked his not doing so. But though he liked and respected the princess, Levin could not call her so without a sense of profaning his feeling for his dead mother. "Come with us, maman," said Kitty. "I don't like to see such imprudence." "Well, I'll walk then, I'm so well." Kitty got up and went to her husband and took his hand. "You may be well, but everything in moderation," said the princess. "Well, Agafea Mihalovna, is the jam done?" said Levin, smiling to Agafea Mihalovna, and trying to cheer her up. "Is it all right in the new way?" "I suppose it's all right. For our notions it's boiled too long." "It'll be all the better, Agafea Mihalovna, it won't mildew, even though our ice has begun to thaw already, so that we've no cool cellar to store it," said Kitty, at once divining her husband's motive, and addressing the old housekeeper with the same feeling; "but your pickle's so good, that mamma says she never tasted any like it," she added, smiling, and putting her kerchief straight. Agafea Mihalovna looked angrily at Kitty. "You needn't try to console me, mistress. I need only to look at you with him, and I feel happy," she said, and something in the rough familiarity of that _with him_ touched Kitty. "Come along with us to look for mushrooms, you will show us the best places." Agafea Mihalovna smiled and shook her head, as though to say: "I should like to be angry with you too, but I can't." "Do it, please, by my receipt," said the princess; "put some paper over the jam, and moisten it with a little rum, and without even ice, it will never go mildewy." Chapter 3 Kitty was particularly glad of a chance of being alone with her husband, for she had noticed the shade of mortification that had passed over his face--always so quick to reflect every feeling--at the moment when he had come onto the terrace and asked what they were talking of, and had got no answer. When they had set off on foot ahead of the others, and had come out of sight of the house onto the beaten dusty road, marked with rusty wheels and sprinkled with grains of corn, she clung faster to his arm and pressed it closer to her. He had quite forgotten the momentary unpleasant impression, and alone with her he felt, now that the thought of her approaching motherhood was never for a moment absent from his mind, a new and delicious bliss, quite pure from all alloy of sense, in the being near to the woman he loved. There was no need of speech, yet he longed to hear the sound of her voice, which like her eyes had changed since she had been with child. In her voice, as in her eyes, there was that softness and gravity which is found in people continually concentrated on some cherished pursuit. "So you're not tired? Lean more on me," said he. "No, I'm so glad of a chance of being alone with you, and I must own, though I'm happy with them, I do regret our winter evenings alone." "That was good, but this is even better. Both are better," he said, squeezing her hand. "Do you know what we were talking about when you came in?" "About jam?" "Oh, yes, about jam too; but afterwards, about how men make offers." "Ah!" said Levin, listening more to the sound of her voice than to the words she was saying, and all the while paying attention to the road, which passed now through the forest, and avoiding places where she might make a false step. "And about Sergey Ivanovitch and Varenka. You've noticed?... I'm very anxious for it," she went on. "What do you think about it?" And she peeped into his face. "I don't know what to think," Levin answered, smiling. "Sergey seems very strange to me in that way. I told you, you know..." "Yes, that he was in love with that girl who died...." "That was when I was a child; I know about it from hearsay and tradition. I remember him then. He was wonderfully sweet. But I've watched him since with women; he is friendly, some of them he likes, but one feels that to him they're simply people, not women." "Yes, but now with Varenka ... I fancy there's something..." "Perhaps there is.... But one has to know him.... He's a peculiar, wonderful person. He lives a spiritual life only. He's too pure, too exalted a nature." "Why? Would this lower him, then?" "No, but he's so used to a spiritual life that he can't reconcile himself with actual fact, and Varenka is after all fact." Levin had grown used by now to uttering his thought boldly, without taking the trouble of clothing it in exact language. He knew that his wife, in such moments of loving tenderness as now, would understand what he meant to say from a hint, and she did understand him. "Yes, but there's not so much of that actual fact about her as about me. I can see that he would never have cared for me. She is altogether spiritual." "Oh, no, he is so fond of you, and I am always so glad when my people like you...." "Yes, he's very nice to me; but..." "It's not as it was with poor Nikolay ... you really cared for each other," Levin finished. "Why not speak of him?" he added. "I sometimes blame myself for not; it ends in one's forgetting. Ah, how terrible and dear he was!... Yes, what were we talking about?" Levin said, after a pause. "You think he can't fall in love," said Kitty, translating into her own language. "It's not so much that he can't fall in love," Levin said, smiling, "but he has not the weakness necessary.... I've always envied him, and even now, when I'm so happy, I still envy him." "You envy him for not being able to fall in love?" "I envy him for being better than I," said Levin. "He does not live for himself. His whole life is subordinated to his duty. And that's why he can be calm and contented." "And you?" Kitty asked, with an ironical and loving smile. She could never have explained the chain of thought that made her smile; but the last link in it was that her husband, in exalting his brother and abasing himself, was not quite sincere. Kitty knew that this insincerity came from his love for his brother, from his sense of shame at being too happy, and above all from his unflagging craving to be better--she loved it in him, and so she smiled. "And you? What are you dissatisfied with?" she asked, with the same smile. Her disbelief in his self-dissatisfaction delighted him, and unconsciously he tried to draw her into giving utterance to the grounds of her disbelief. "I am happy, but dissatisfied with myself..." he said. "Why, how can you be dissatisfied with yourself if you are happy?" "Well, how shall I say?... In my heart I really care for nothing whatever but that you should not stumble--see? Oh, but really you mustn't skip about like that!" he cried, breaking off to scold her for too agile a movement in stepping over a branch that lay in the path. "But when I think about myself, and compare myself with others, especially with my brother, I feel I'm a poor creature." "But in what way?" Kitty pursued with the same smile. "Don't you too work for others? What about your co-operative settlement, and your work on the estate, and your book?..." "Oh, but I feel, and particularly just now--it's your fault," he said, pressing her hand--"that all that doesn't count. I do it in a way halfheartedly. If I could care for all that as I care for you!... Instead of that, I do it in these days like a task that is set me." "Well, what would you say about papa?" asked Kitty. "Is he a poor creature then, as he does nothing for the public good?" "He?--no! But then one must have the simplicity, the straightforwardness, the goodness of your father: and I haven't got that. I do nothing, and I fret about it. It's all your doing. Before there was you--and _this_ too," he added with a glance towards her waist that she understood--"I put all my energies into work; now I can't, and I'm ashamed; I do it just as though it were a task set me, I'm pretending...." "Well, but would you like to change this minute with Sergey Ivanovitch?" said Kitty. "Would you like to do this work for the general good, and to love the task set you, as he does, and nothing else?" "Of course not," said Levin. "But I'm so happy that I don't understand anything. So you think he'll make her an offer today?" he added after a brief silence. "I think so, and I don't think so. Only, I'm awfully anxious for it. Here, wait a minute." She stooped down and picked a wild camomile at the edge of the path. "Come, count: he does propose, he doesn't," she said, giving him the flower. "He does, he doesn't," said Levin, tearing off the white petals. "No, no!" Kitty, snatching at his hand, stopped him. She had been watching his fingers with interest. "You picked off two." "Oh, but see, this little one shan't count to make up," said Levin, tearing off a little half-grown petal. "Here's the wagonette overtaking us." "Aren't you tired, Kitty?" called the princess. "Not in the least." "If you are you can get in, as the horses are quiet and walking." But it was not worth while to get in, they were quite near the place, and all walked on together. Chapter 4 Varenka, with her white kerchief on her black hair, surrounded by the children, gaily and good-humoredly looking after them, and at the same time visibly excited at the possibility of receiving a declaration from the man she cared for, was very attractive. Sergey Ivanovitch walked beside her, and never left off admiring her. Looking at her, he recalled all the delightful things he had heard from her lips, all the good he knew about her, and became more and more conscious that the feeling he had for her was something special that he had felt long, long ago, and only once, in his early youth. The feeling of happiness in being near her continually grew, and at last reached such a point that, as he put a huge, slender-stalked agaric fungus in her basket, he looked straight into her face, and noticing the flush of glad and alarmed excitement that overspread her face, he was confused himself, and smiled to her in silence a smile that said too much. "If so," he said to himself, "I ought to think it over and make up my mind, and not give way like a boy to the impulse of a moment." "I'm going to pick by myself apart from all the rest, or else my efforts will make no show," he said, and he left the edge of the forest where they were walking on low silky grass between old birch trees standing far apart, and went more into the heart of the wood, where between the white birch trunks there were gray trunks of aspen and dark bushes of hazel. Walking some forty paces away, Sergey Ivanovitch, knowing he was out of sight, stood still behind a bushy spindle-tree in full flower with its rosy red catkins. It was perfectly still all round him. Only overhead in the birches under which he stood, the flies, like a swarm of bees, buzzed unceasingly, and from time to time the children's voices were floated across to him. All at once he heard, not far from the edge of the wood, the sound of Varenka's contralto voice, calling Grisha, and a smile of delight passed over Sergey Ivanovitch's face. Conscious of this smile, he shook his head disapprovingly at his own condition, and taking out a cigar, he began lighting it. For a long while he could not get a match to light against the trunk of a birch tree. The soft scales of the white bark rubbed off the phosphorus, and the light went out. At last one of the matches burned, and the fragrant cigar smoke, hovering uncertainly in flat, wide coils, stretched away forwards and upwards over a bush under the overhanging branches of a birch tree. Watching the streak of smoke, Sergey Ivanovitch walked gently on, deliberating on his position. "Why not?" he thought. "If it were only a passing fancy or a passion, if it were only this attraction--this mutual attraction (I can call it a _mutual_ attraction), but if I felt that it was in contradiction with the whole bent of my life--if I felt that in giving way to this attraction I should be false to my vocation and my duty ... but it's not so. The only thing I can say against it is that, when I lost Marie, I said to myself that I would remain faithful to her memory. That's the only thing I can say against my feeling.... That's a great thing," Sergey Ivanovitch said to himself, feeling at the same time that this consideration had not the slightest importance for him personally, but would only perhaps detract from his romantic character in the eyes of others. "But apart from that, however much I searched, I should never find anything to say against my feeling. If I were choosing by considerations of suitability alone, I could not have found anything better." However many women and girls he thought of whom he knew, he could not think of a girl who united to such a degree all, positively all, the qualities he would wish to see in his wife. She had all the charm and freshness of youth, but she was not a child; and if she loved him, she loved him consciously as a woman ought to love; that was one thing. Another point: she was not only far from being worldly, but had an unmistakable distaste for worldly society, and at the same time she knew the world, and had all the ways of a woman of the best society, which were absolutely essential to Sergey Ivanovitch's conception of the woman who was to share his life. Thirdly: she was religious, and not like a child, unconsciously religious and good, as Kitty, for example, was, but her life was founded on religious principles. Even in trifling matters, Sergey Ivanovitch found in her all that he wanted in his wife: she was poor and alone in the world, so she would not bring with her a mass of relations and their influence into her husband's house, as he saw now in Kitty's case. She would owe everything to her husband, which was what he had always desired too for his future family life. And this girl, who united all these qualities, loved him. He was a modest man, but he could not help seeing it. And he loved her. There was one consideration against it--his age. But he came of a long-lived family, he had not a single gray hair, no one would have taken him for forty, and he remembered Varenka's saying that it was only in Russia that men of fifty thought themselves old, and that in France a man of fifty considers himself _dans la force de l'age_, while a man of forty is _un jeune homme_. But what did the mere reckoning of years matter when he felt as young in heart as he had been twenty years ago? Was it not youth to feel as he felt now, when coming from the other side to the edge of the wood he saw in the glowing light of the slanting sunbeams the gracious figure of Varenka in her yellow gown with her basket, walking lightly by the trunk of an old birch tree, and when this impression of the sight of Varenka blended so harmoniously with the beauty of the view, of the yellow oatfield lying bathed in the slanting sunshine, and beyond it the distant ancient forest flecked with yellow and melting into the blue of the distance? His heart throbbed joyously. A softened feeling came over him. He felt that he had made up his mind. Varenka, who had just crouched down to pick a mushroom, rose with a supple movement and looked round. Flinging away the cigar, Sergey Ivanovitch advanced with resolute steps towards her. Chapter 5 "Varvara Andreevna, when I was very young, I set before myself the ideal of the woman I loved and should be happy to call my wife. I have lived through a long life, and now for the first time I have met what I sought--in you. I love you, and offer you my hand." Sergey Ivanovitch was saying this to himself while he was ten paces from Varvara. Kneeling down, with her hands over the mushrooms to guard them from Grisha, she was calling little Masha. "Come here, little ones! There are so many!" she was saying in her sweet, deep voice. Seeing Sergey Ivanovitch approaching, she did not get up and did not change her position, but everything told him that she felt his presence and was glad of it. "Well, did you find some?" she asked from under the white kerchief, turning her handsome, gently smiling face to him. "Not one," said Sergey Ivanovitch. "Did you?" She did not answer, busy with the children who thronged about her. "That one too, near the twig," she pointed out to little Masha a little fungus, split in half across its rosy cap by the dry grass from under which it thrust itself. Varenka got up while Masha picked the fungus, breaking it into two white halves. "This brings back my childhood," she added, moving apart from the children beside Sergey Ivanovitch. They walked on for some steps in silence. Varenka saw that he wanted to speak; she guessed of what, and felt faint with joy and panic. They had walked so far away that no one could hear them now, but still he did not begin to speak. It would have been better for Varenka to be silent. After a silence it would have been easier for them to say what they wanted to say than after talking about mushrooms. But against her own will, as it were accidentally, Varenka said: "So you found nothing? In the middle of the wood there are always fewer, though." Sergey Ivanovitch sighed and made no answer. He was annoyed that she had spoken about the mushrooms. He wanted to bring her back to the first words she had uttered about her childhood; but after a pause of some length, as though against his own will, he made an observation in response to her last words. "I have heard that the white edible funguses are found principally at the edge of the wood, though I can't tell them apart." Some minutes more passed, they moved still further away from the children, and were quite alone. Varenka's heart throbbed so that she heard it beating, and felt that she was turning red and pale and red again. To be the wife of a man like Koznishev, after her position with Madame Stahl, was to her imagination the height of happiness. Besides, she was almost certain that she was in love with him. And this moment it would have to be decided. She felt frightened. She dreaded both his speaking and his not speaking. Now or never it must be said--that Sergey Ivanovitch felt too. Everything in the expression, the flushed cheeks and the downcast eyes of Varenka betrayed a painful suspense. Sergey Ivanovitch saw it and felt sorry for her. He felt even that to say nothing now would be a slight to her. Rapidly in his own mind he ran over all the arguments in support of his decision. He even said over to himself the words in which he meant to put his offer, but instead of those words, some utterly unexpected reflection that occurred to him made him ask: "What is the difference between the 'birch' mushroom and the 'white' mushroom?" Varenka's lips quivered with emotion as she answered: "In the top part there is scarcely any difference, it's in the stalk." And as soon as these words were uttered, both he and she felt that it was over, that what was to have been said would not be said; and their emotion, which had up to then been continually growing more intense, began to subside. "The birch mushroom's stalk suggests a dark man's chin after two days without shaving," said Sergey Ivanovitch, speaking quite calmly now. "Yes, that's true," answered Varenka smiling, and unconsciously the direction of their walk changed. They began to turn towards the children. Varenka felt both sore and ashamed; at the same time she had a sense of relief. When he had got home again and went over the whole subject, Sergey Ivanovitch thought his previous decision had been a mistaken one. He could not be false to the memory of Marie. "Gently, children, gently!" Levin shouted quite angrily to the children, standing before his wife to protect her when the crowd of children flew with shrieks of delight to meet them. Behind the children Sergey Ivanovitch and Varenka walked out of the wood. Kitty had no need to ask Varenka; she saw from the calm and somewhat crestfallen faces of both that her plans had not come off. "Well?" her husband questioned her as they were going home again. "It doesn't bite," said Kitty, her smile and manner of speaking recalling her father, a likeness Levin often noticed with pleasure. "How doesn't bite?" "I'll show you," she said, taking her husband's hand, lifting it to her mouth, and just faintly brushing it with closed lips. "Like a kiss on a priest's hand." "Which didn't it bite with?" he said, laughing. "Both. But it should have been like this..." "There are some peasants coming..." "Oh, they didn't see." Chapter 6 During the time of the children's tea the grown-up people sat in the balcony and talked as though nothing had happened, though they all, especially Sergey Ivanovitch and Varenka, were very well aware that there had happened an event which, though negative, was of very great importance. They both had the same feeling, rather like that of a schoolboy after an examination, which has left him in the same class or shut him out of the school forever. Everyone present, feeling too that something had happened, talked eagerly about extraneous subjects. Levin and Kitty were particularly happy and conscious of their love that evening. And their happiness in their love seemed to imply a disagreeable slur on those who would have liked to feel the same and could not--and they felt a prick of conscience. "Mark my words, Alexander will not come," said the old princess. That evening they were expecting Stepan Arkadyevitch to come down by train, and the old prince had written that possibly he might come too. "And I know why," the princess went on; "he says that young people ought to be left alone for a while at first." "But papa has left us alone. We've never seen him," said Kitty. "Besides, we're not young people!--we're old, married people by now." "Only if he doesn't come, I shall say good-bye to you children," said the princess, sighing mournfully. "What nonsense, mamma!" both the daughters fell upon her at once. "How do you suppose he is feeling? Why, now..." And suddenly there was an unexpected quiver in the princess's voice. Her daughters were silent, and looked at one another. "Maman always finds something to be miserable about," they said in that glance. They did not know that happy as the princess was in her daughter's house, and useful as she felt herself to be there, she had been extremely miserable, both on her own account and her husband's, ever since they had married their last and favorite daughter, and the old home had been left empty. "What is it, Agafea Mihalovna?" Kitty asked suddenly of Agafea Mihalovna, who was standing with a mysterious air, and a face full of meaning. "About supper." "Well, that's right," said Dolly; "you go and arrange about it, and I'll go and hear Grisha repeat his lesson, or else he will have nothing done all day." "That's my lesson! No, Dolly, I'm going," said Levin, jumping up. Grisha, who was by now at a high school, had to go over the lessons of the term in the summer holidays. Darya Alexandrovna, who had been studying Latin with her son in Moscow before, had made it a rule on coming to the Levins' to go over with him, at least once a day, the most difficult lessons of Latin and arithmetic. Levin had offered to take her place, but the mother, having once overheard Levin's lesson, and noticing that it was not given exactly as the teacher in Moscow had given it, said resolutely, though with much embarrassment and anxiety not to mortify Levin, that they must keep strictly to the book as the teacher had done, and that she had better undertake it again herself. Levin was amazed both at Stepan Arkadyevitch, who, by neglecting his duty, threw upon the mother the supervision of studies of which she had no comprehension, and at the teachers for teaching the children so badly. But he promised his sister-in-law to give the lessons exactly as she wished. And he went on teaching Grisha, not in his own way, but by the book, and so took little interest in it, and often forgot the hour of the lesson. So it had been today. "No, I'm going, Dolly, you sit still," he said. "We'll do it all properly, like the book. Only when Stiva comes, and we go out shooting, then we shall have to miss it." And Levin went to Grisha. Varenka was saying the same thing to Kitty. Even in the happy, well-ordered household of the Levins Varenka had succeeded in making herself useful. "I'll see to the supper, you sit still," she said, and got up to go to Agafea Mihalovna. "Yes, yes, most likely they've not been able to get chickens. If so, ours..." "Agafea Mihalovna and I will see about it," and Varenka vanished with her. "What a nice girl!" said the princess. "Not nice, maman; she's an exquisite girl; there's no one else like her." "So you are expecting Stepan Arkadyevitch today?" said Sergey Ivanovitch, evidently not disposed to pursue the conversation about Varenka. "It would be difficult to find two sons-in-law more unlike than yours," he said with a subtle smile. "One all movement, only living in society, like a fish in water; the other our Kostya, lively, alert, quick in everything, but as soon as he is in society, he either sinks into apathy, or struggles helplessly like a fish on land." "Yes, he's very heedless," said the princess, addressing Sergey Ivanovitch. "I've been meaning, indeed, to ask you to tell him that it's out of the question for her" (she indicated Kitty) "to stay here; that she positively must come to Moscow. He talks of getting a doctor down..." "Maman, he'll do everything; he has agreed to everything," Kitty said, angry with her mother for appealing to Sergey Ivanovitch to judge in such a matter. In the middle of their conversation they heard the snorting of horses and the sound of wheels on the gravel. Dolly had not time to get up to go and meet her husband, when from the window of the room below, where Grisha was having his lesson, Levin leaped out and helped Grisha out after him. "It's Stiva!" Levin shouted from under the balcony. "We've finished, Dolly, don't be afraid!" he added, and started running like a boy to meet the carriage. "_Is ea id, ejus, ejus, ejus!_" shouted Grisha, skipping along the avenue. "And some one else too! Papa, of course!" cried Levin, stopping at the entrance of the avenue. "Kitty, don't come down the steep staircase, go round." But Levin had been mistaken in taking the person sitting in the carriage for the old prince. As he got nearer to the carriage he saw beside Stepan Arkadyevitch not the prince but a handsome, stout young man in a Scotch cap, with long ends of ribbon behind. This was Vassenka Veslovsky, a distant cousin of the Shtcherbatskys, a brilliant young gentleman in Petersburg and Moscow society. "A capital fellow, and a keen sportsman," as Stepan Arkadyevitch said, introducing him. Not a whit abashed by the disappointment caused by his having come in place of the old prince, Veslovsky greeted Levin gaily, claiming acquaintance with him in the past, and snatching up Grisha into the carriage, lifted him over the pointer that Stepan Arkadyevitch had brought with him. Levin did not get into the carriage, but walked behind. He was rather vexed at the non-arrival of the old prince, whom he liked more and more the more he saw of him, and also at the arrival of this Vassenka Veslovsky, a quite uncongenial and superfluous person. He seemed to him still more uncongenial and superfluous when, on approaching the steps where the whole party, children and grown-up, were gathered together in much excitement, Levin saw Vassenka Veslovsky, with a particularly warm and gallant air, kissing Kitty's hand. "Your wife and I are cousins and very old friends," said Vassenka Veslovsky, once more shaking Levin's hand with great warmth. "Well, are there plenty of birds?" Stepan Arkadyevitch said to Levin, hardly leaving time for everyone to utter their greetings. "We've come with the most savage intentions. Why, maman, they've not been in Moscow since! Look, Tanya, here's something for you! Get it, please, it's in the carriage, behind!" he talked in all directions. "How pretty you've grown, Dolly," he said to his wife, once more kissing her hand, holding it in one of his, and patting it with the other. Levin, who a minute before had been in the happiest frame of mind, now looked darkly at everyone, and everything displeased him. "Who was it he kissed yesterday with those lips?" he thought, looking at Stepan Arkadyevitch's tender demonstrations to his wife. He looked at Dolly, and he did not like her either. "She doesn't believe in his love. So what is she so pleased about? Revolting!" thought Levin. He looked at the princess, who had been so dear to him a minute before, and he did not like the manner in which she welcomed this Vassenka, with his ribbons, just as though she were in her own house. Even Sergey Ivanovitch, who had come out too onto the steps, seemed to him unpleasant with the show of cordiality with which he met Stepan Arkadyevitch, though Levin knew that his brother neither liked nor respected Oblonsky. And Varenka, even she seemed hateful, with her air _sainte nitouche_ making the acquaintance of this gentleman, while all the while she was thinking of nothing but getting married. And more hateful than anyone was Kitty for falling in with the tone of gaiety with which this gentleman regarded his visit in the country, as though it were a holiday for himself and everyone else. And, above all, unpleasant was that particular smile with which she responded to his smile. Noisily talking, they all went into the house; but as soon as they were all seated, Levin turned and went out. Kitty saw something was wrong with her husband. She tried to seize a moment to speak to him alone, but he made haste to get away from her, saying he was wanted at the counting-house. It was long since his own work on the estate had seemed to him so important as at that moment. "It's all holiday for them," he thought; "but these are no holiday matters, they won't wait, and there's no living without them." Chapter 7 Levin came back to the house only when they sent to summon him to supper. On the stairs were standing Kitty and Agafea Mihalovna, consulting about wines for supper. "But why are you making all this fuss? Have what we usually do." "No, Stiva doesn't drink ... Kostya, stop, what's the matter?" Kitty began, hurrying after him, but he strode ruthlessly away to the dining room without waiting for her, and at once joined in the lively general conversation which was being maintained there by Vassenka Veslovsky and Stepan Arkadyevitch. "Well, what do you say, are we going shooting tomorrow?" said Stepan Arkadyevitch. "Please, do let's go," said Veslovsky, moving to another chair, where he sat down sideways, with one fat leg crossed under him. "I shall be delighted, we will go. And have you had any shooting yet this year?" said Levin to Veslovsky, looking intently at his leg, but speaking with that forced amiability that Kitty knew so well in him, and that was so out of keeping with him. "I can't answer for our finding grouse, but there are plenty of snipe. Only we ought to start early. You're not tired? Aren't you tired, Stiva?" "Me tired? I've never been tired yet. Suppose we stay up all night. Let's go for a walk!" "Yes, really, let's not go to bed at all! Capital!" Veslovsky chimed in. "Oh, we all know you can do without sleep, and keep other people up too," Dolly said to her husband, with that faint note of irony in her voice which she almost always had now with her husband. "But to my thinking, it's time for bed now.... I'm going, I don't want supper." "No, do stay a little, Dolly," said Stepan Arkadyevitch, going round to her side behind the table where they were having supper. "I've so much still to tell you." "Nothing really, I suppose." "Do you know Veslovsky has been at Anna's, and he's going to them again? You know they're hardly fifty miles from you, and I too must certainly go over there. Veslovsky, come here!" Vassenka crossed over to the ladies, and sat down beside Kitty. "Ah, do tell me, please; you have stayed with her? How was she?" Darya Alexandrovna appealed to him. Levin was left at the other end of the table, and though never pausing in his conversation with the princess and Varenka, he saw that there was an eager and mysterious conversation going on between Stepan Arkadyevitch, Dolly, Kitty, and Veslovsky. And that was not all. He saw on his wife's face an expression of real feeling as she gazed with fixed eyes on the handsome face of Vassenka, who was telling them something with great animation. "It's exceedingly nice at their place," Veslovsky was telling them about Vronsky and Anna. "I can't, of course, take it upon myself to judge, but in their house you feel the real feeling of home." "What do they intend doing?" "I believe they think of going to Moscow." "How jolly it would be for us all to go over to them together! When are you going there?" Stepan Arkadyevitch asked Vassenka. "I'm spending July there." "Will you go?" Stepan Arkadyevitch said to his wife. "I've been wanting to a long while; I shall certainly go," said Dolly. "I am sorry for her, and I know her. She's a splendid woman. I will go alone, when you go back, and then I shall be in no one's way. And it will be better indeed without you." "To be sure," said Stepan Arkadyevitch. "And you, Kitty?" "I? Why should I go?" Kitty said, flushing all over, and she glanced round at her husband. "Do you know Anna Arkadyevna, then?" Veslovsky asked her. "She's a very fascinating woman." "Yes," she answered Veslovsky, crimsoning still more. She got up and walked across to her husband. "Are you going shooting, then, tomorrow?" she said. His jealousy had in these few moments, especially at the flush that had overspread her cheeks while she was talking to Veslovsky, gone far indeed. Now as he heard her words, he construed them in his own fashion. Strange as it was to him afterwards to recall it, it seemed to him at the moment clear that in asking whether he was going shooting, all she cared to know was whether he would give that pleasure to Vassenka Veslovsky, with whom, as he fancied, she was in love. "Yes, I'm going," he answered her in an unnatural voice, disagreeable to himself. "No, better spend the day here tomorrow, or Dolly won't see anything of her husband, and set off the day after," said Kitty. The motive of Kitty's words was interpreted by Levin thus: "Don't separate me from _him_. I don't care about _your_ going, but do let me enjoy the society of this delightful young man." "Oh, if you wish, we'll stay here tomorrow," Levin answered, with peculiar amiability. Vassenka meanwhile, utterly unsuspecting the misery his presence had occasioned, got up from the table after Kitty, and watching her with smiling and admiring eyes, he followed her. Levin saw that look. He turned white, and for a minute he could hardly breathe. "How dare he look at my wife like that!" was the feeling that boiled within him. "Tomorrow, then? Do, please, let us go," said Vassenka, sitting down on a chair, and again crossing his leg as his habit was. Levin's jealousy went further still. Already he saw himself a deceived husband, looked upon by his wife and her lover as simply necessary to provide them with the conveniences and pleasures of life.... But in spite of that he made polite and hospitable inquiries of Vassenka about his shooting, his gun, and his boots, and agreed to go shooting next day. Happily for Levin, the old princess cut short his agonies by getting up herself and advising Kitty to go to bed. But even at this point Levin could not escape another agony. As he said good-night to his hostess, Vassenka would again have kissed her hand, but Kitty, reddening, drew back her hand and said with a naive bluntness, for which the old princess scolded her afterwards: "We don't like that fashion." In Levin's eyes she was to blame for having allowed such relations to arise, and still more to blame for showing so awkwardly that she did not like them. "Why, how can one want to go to bed!" said Stepan Arkadyevitch, who, after drinking several glasses of wine at supper, was now in his most charming and sentimental humor. "Look, Kitty," he said, pointing to the moon, which had just risen behind the lime trees--"how exquisite! Veslovsky, this is the time for a serenade. You know, he has a splendid voice; we practiced songs together along the road. He has brought some lovely songs with him, two new ones. Varvara Andreevna and he must sing some duets." When the party had broken up, Stepan Arkadyevitch walked a long while about the avenue with Veslovsky; their voices could be heard singing one of the new songs. Levin hearing these voices sat scowling in an easy-chair in his wife's bedroom, and maintained an obstinate silence when she asked him what was wrong. But when at last with a timid glance she hazarded the question: "Was there perhaps something you disliked about Veslovsky?"--it all burst out, and he told her all. He was humiliated himself at what he was saying, and that exasperated him all the more. He stood facing her with his eyes glittering menacingly under his scowling brows, and he squeezed his strong arms across his chest, as though he were straining every nerve to hold himself in. The expression of his face would have been grim, and even cruel, if it had not at the same time had a look of suffering which touched her. His jaws were twitching, and his voice kept breaking. "You must understand that I'm not jealous, that's a nasty word. I can't be jealous, and believe that.... I can't say what I feel, but this is awful.... I'm not jealous, but I'm wounded, humiliated that anybody dare think, that anybody dare look at you with eyes like that." "Eyes like what?" said Kitty, trying as conscientiously as possible to recall every word and gesture of that evening and every shade implied in them. At the very bottom of her heart she did think there had been something precisely at the moment when he had crossed over after her to the other end of the table; but she dared not own it even to herself, and would have been even more unable to bring herself to say so to him, and so increase his suffering. "And what can there possibly be attractive about me as I am now?..." "Ah!" he cried, clutching at his head, "you shouldn't say that!... If you had been attractive then..." "Oh, no, Kostya, oh, wait a minute, oh, do listen!" she said, looking at him with an expression of pained commiseration. "Why, what can you be thinking about! When for me there's no one in the world, no one, no one!... Would you like me never to see anyone?" For the first minute she had been offended at his jealousy; she was angry that the slightest amusement, even the most innocent, should be forbidden her; but now she would readily have sacrificed, not merely such trifles, but everything, for his peace of mind, to save him from the agony he was suffering. "You must understand the horror and comedy of my position," he went on in a desperate whisper; "that he's in my house, that he's done nothing improper positively except his free and easy airs and the way he sits on his legs. He thinks it's the best possible form, and so I'm obliged to be civil to him." "But, Kostya, you're exaggerating," said Kitty, at the bottom of her heart rejoicing at the depth of his love for her, shown now in his jealousy. "The most awful part of it all is that you're just as you always are, and especially now when to me you're something sacred, and we're so happy, so particularly happy--and all of a sudden a little wretch.... He's not a little wretch; why should I abuse him? I have nothing to do with him. But why should my, and your, happiness..." "Do you know, I understand now what it's all come from," Kitty was beginning. "Well, what? what?" "I saw how you looked while we were talking at supper." "Well, well!" Levin said in dismay. She told him what they had been talking about. And as she told him, she was breathless with emotion. Levin was silent for a space, then he scanned her pale and distressed face, and suddenly he clutched at his head. "Katya, I've been worrying you! Darling, forgive me! It's madness! Katya, I'm a criminal. And how could you be so distressed at such idiocy?" "Oh, I was sorry for you." "For me? for me? How mad I am!... But why make you miserable? It's awful to think that any outsider can shatter our happiness." "It's humiliating too, of course." "Oh, then I'll keep him here all the summer, and will overwhelm him with civility," said Levin, kissing her hands. "You shall see. Tomorrow.... Oh, yes, we are going tomorrow." Chapter 8 Next day, before the ladies were up, the wagonette and a trap for the shooting party were at the door, and Laska, aware since early morning that they were going shooting, after much whining and darting to and fro, had sat herself down in the wagonette beside the coachman, and, disapproving of the delay, was excitedly watching the door from which the sportsmen still did not come out. The first to come out was Vassenka Veslovsky, in new high boots that reached half-way up his thick thighs, in a green blouse, with a new Russian leather cartridge-belt, and in his Scotch cap with ribbons, with a brand-new English gun without a sling. Laska flew up to him, welcomed him, and jumping up, asked him in her own way whether the others were coming soon, but getting no answer from him, she returned to her post of observation and sank into repose again, her head on one side, and one ear pricked up to listen. At last the door opened with a creak, and Stepan Arkadyevitch's spot-and-tan pointer Krak flew out, running round and round and turning over in the air. Stepan Arkadyevitch himself followed with a gun in his hand and a cigar in his mouth. "Good dog, good dog, Krak!" he cried encouragingly to the dog, who put his paws up on his chest, catching at his game bag. Stepan Arkadyevitch was dressed in rough leggings and spats, in torn trousers and a short coat. On his head there was a wreck of a hat of indefinite form, but his gun of a new patent was a perfect gem, and his game bag and cartridge belt, though worn, were of the very best quality. Vassenka Veslovsky had had no notion before that it was truly _chic_ for a sportsman to be in tatters, but to have his shooting outfit of the best quality. He saw it now as he looked at Stepan Arkadyevitch, radiant in his rags, graceful, well-fed, and joyous, a typical Russian nobleman. And he made up his mind that next time he went shooting he would certainly adopt the same get-up. "Well, and what about our host?" he asked. "A young wife," said Stepan Arkadyevitch, smiling. "Yes, and such a charming one!" "He came down dressed. No doubt he's run up to her again." Stepan Arkadyevitch guessed right. Levin had run up again to his wife to ask her once more if she forgave him for his idiocy yesterday, and, moreover, to beg her for Christ's sake to be more careful. The great thing was for her to keep away from the children--they might any minute push against her. Then he had once more to hear her declare that she was not angry with him for going away for two days, and to beg her to be sure to send him a note next morning by a servant on horseback, to write him, if it were but two words only, to let him know that all was well with her. Kitty was distressed, as she always was, at parting for a couple of days from her husband, but when she saw his eager figure, looking big and strong in his shooting-boots and his white blouse, and a sort of sportsman elation and excitement incomprehensible to her, she forgot her own chagrin for the sake of his pleasure, and said good-bye to him cheerfully. "Pardon, gentlemen!" he said, running out onto the steps. "Have you put the lunch in? Why is the chestnut on the right? Well, it doesn't matter. Laska, down; go and lie down!" "Put it with the herd of oxen," he said to the herdsman, who was waiting for him at the steps with some question. "Excuse me, here comes another villain." Levin jumped out of the wagonette, in which he had already taken his seat, to meet the carpenter, who came towards the steps with a rule in his hand. "You didn't come to the counting house yesterday, and now you're detaining me. Well, what is it?" "Would your honor let me make another turning? It's only three steps to add. And we make it just fit at the same time. It will be much more convenient." "You should have listened to me," Levin answered with annoyance. "I said: Put the lines and then fit in the steps. Now there's no setting it right. Do as I told you, and make a new staircase." The point was that in the lodge that was being built the carpenter had spoiled the staircase, fitting it together without calculating the space it was to fill, so that the steps were all sloping when it was put in place. Now the carpenter wanted, keeping the same staircase, to add three steps. "It will be much better." "But where's your staircase coming out with its three steps?" "Why, upon my word, sir," the carpenter said with a contemptuous smile. "It comes out right at the very spot. It starts, so to speak," he said, with a persuasive gesture; "it comes down, and comes down, and comes out." "But three steps will add to the length too ... where is it to come out?" "Why, to be sure, it'll start from the bottom and go up and go up, and come out so," the carpenter said obstinately and convincingly. "It'll reach the ceiling and the wall." "Upon my word! Why, it'll go up, and up, and come out like this." Levin took out a ramrod and began sketching him the staircase in the dust. "There, do you see?" "As your honor likes," said the carpenter, with a sudden gleam in his eyes, obviously understanding the thing at last. "It seems it'll be best to make a new one." "Well, then, do it as you're told," Levin shouted, seating himself in the wagonette. "Down! Hold the dogs, Philip!" Levin felt now at leaving behind all his family and household cares such an eager sense of joy in life and expectation that he was not disposed to talk. Besides that, he had that feeling of concentrated excitement that every sportsman experiences as he approaches the scene of action. If he had anything on his mind at that moment, it was only the doubt whether they would start anything in the Kolpensky marsh, whether Laska would show to advantage in comparison with Krak, and whether he would shoot well that day himself. Not to disgrace himself before a new spectator--not to be outdone by Oblonsky--that too was a thought that crossed his brain. Oblonsky was feeling the same, and he too was not talkative. Vassenka Veslovsky kept up alone a ceaseless flow of cheerful chatter. As he listened to him now, Levin felt ashamed to think how unfair he had been to him the day before. Vassenka was really a nice fellow, simple, good-hearted, and very good-humored. If Levin had met him before he was married, he would have made friends with him. Levin rather disliked his holiday attitude to life and a sort of free and easy assumption of elegance. It was as though he assumed a high degree of importance in himself that could not be disputed, because he had long nails and a stylish cap, and everything else to correspond; but this could be forgiven for the sake of his good nature and good breeding. Levin liked him for his good education, for speaking French and English with such an excellent accent, and for being a man of his world. Vassenka was extremely delighted with the left horse, a horse of the Don Steppes. He kept praising him enthusiastically. "How fine it must be galloping over the steppes on a steppe horse! Eh? isn't it?" he said. He had imagined riding on a steppe horse as something wild and romantic, and it turned out nothing of the sort. But his simplicity, particularly in conjunction with his good looks, his amiable smile, and the grace of his movements, was very attractive. Either because his nature was sympathetic to Levin, or because Levin was trying to atone for his sins of the previous evening by seeing nothing but what was good in him, anyway he liked his society. After they had driven over two miles from home, Veslovsky all at once felt for a cigar and his pocketbook, and did not know whether he had lost them or left them on the table. In the pocketbook there were thirty-seven pounds, and so the matter could not be left in uncertainty. "Do you know what, Levin, I'll gallop home on that left trace-horse. That will be splendid. Eh?" he said, preparing to get out. "No, why should you?" answered Levin, calculating that Vassenka could hardly weigh less than seventeen stone. "I'll send the coachman." The coachman rode back on the trace-horse, and Levin himself drove the remaining pair. Chapter 9 "Well, now what's our plan of campaign? Tell us all about it," said Stepan Arkadyevitch. "Our plan is this. Now we're driving to Gvozdyov. In Gvozdyov there's a grouse marsh on this side, and beyond Gvozdyov come some magnificent snipe marshes where there are grouse too. It's hot now, and we'll get there--it's fifteen miles or so--towards evening and have some evening shooting; we'll spend the night there and go on tomorrow to the bigger moors." "And is there nothing on the way?" "Yes; but we'll reserve ourselves; besides it's hot. There are two nice little places, but I doubt there being anything to shoot." Levin would himself have liked to go into these little places, but they were near home; he could shoot them over any time, and they were only little places--there would hardly be room for three to shoot. And so, with some insincerity, he said that he doubted there being anything to shoot. When they reached a little marsh Levin would have driven by, but Stepan Arkadyevitch, with the experienced eye of a sportsman, at once detected reeds visible from the road. "Shan't we try that?" he said, pointing to the little marsh. "Levin, do, please! how delightful!" Vassenka Veslovsky began begging, and Levin could but consent. Before they had time to stop, the dogs had flown one before the other into the marsh. "Krak! Laska!..." The dogs came back. "There won't be room for three. I'll stay here," said Levin, hoping they would find nothing but peewits, who had been startled by the dogs, and turning over in their flight, were plaintively wailing over the marsh. "No! Come along, Levin, let's go together!" Veslovsky called. "Really, there's not room. Laska, back, Laska! You won't want another dog, will you?" Levin remained with the wagonette, and looked enviously at the sportsmen. They walked right across the marsh. Except little birds and peewits, of which Vassenka killed one, there was nothing in the marsh. "Come, you see now that it was not that I grudged the marsh," said Levin, "only it's wasting time." "Oh, no, it was jolly all the same. Did you see us?" said Vassenka Veslovsky, clambering awkwardly into the wagonette with his gun and his peewit in his hands. "How splendidly I shot this bird! Didn't I? Well, shall we soon be getting to the real place?" The horses started off suddenly, Levin knocked his head against the stock of someone's gun, and there was the report of a shot. The gun did actually go off first, but that was how it seemed to Levin. It appeared that Vassenka Veslovsky had pulled only one trigger, and had left the other hammer still cocked. The charge flew into the ground without doing harm to anyone. Stepan Arkadyevitch shook his head and laughed reprovingly at Veslovsky. But Levin had not the heart to reprove him. In the first place, any reproach would have seemed to be called forth by the danger he had incurred and the bump that had come up on Levin's forehead. And besides, Veslovsky was at first so naively distressed, and then laughed so good-humoredly and infectiously at their general dismay, that one could not but laugh with him. When they reached the second marsh, which was fairly large, and would inevitably take some time to shoot over, Levin tried to persuade them to pass it by. But Veslovsky again overpersuaded him. Again, as the marsh was narrow, Levin, like a good host, remained with the carriage. Krak made straight for some clumps of sedge. Vassenka Veslovsky was the first to run after the dog. Before Stepan Arkadyevitch had time to come up, a grouse flew out. Veslovsky missed it and it flew into an unmown meadow. This grouse was left for Veslovsky to follow up. Krak found it again and pointed, and Veslovsky shot it and went back to the carriage. "Now you go and I'll stay with the horses," he said. Levin had begun to feel the pangs of a sportsman's envy. He handed the reins to Veslovsky and walked into the marsh. Laska, who had been plaintively whining and fretting against the injustice of her treatment, flew straight ahead to a hopeful place that Levin knew well, and that Krak had not yet come upon. "Why don't you stop her?" shouted Stepan Arkadyevitch. "She won't scare them," answered Levin, sympathizing with his bitch's pleasure and hurrying after her. As she came nearer and nearer to the familiar breeding places there was more and more earnestness in Laska's exploration. A little marsh bird did not divert her attention for more than an instant. She made one circuit round the clump of reeds, was beginning a second, and suddenly quivered with excitement and became motionless. "Come, come, Stiva!" shouted Levin, feeling his heart beginning to beat more violently; and all of a sudden, as though some sort of shutter had been drawn back from his straining ears, all sounds, confused but loud, began to beat on his hearing, losing all sense of distance. He heard the steps of Stepan Arkadyevitch, mistaking them for the tramp of the horses in the distance; he heard the brittle sound of the twigs on which he had trodden, taking this sound for the flying of a grouse. He heard too, not far behind him, a splashing in the water, which he could not explain to himself. Picking his steps, he moved up to the dog. "Fetch it!" Not a grouse but a snipe flew up from beside the dog. Levin had lifted his gun, but at the very instant when he was taking aim, the sound of splashing grew louder, came closer, and was joined with the sound of Veslovsky's voice, shouting something with strange loudness. Levin saw he had his gun pointed behind the snipe, but still he fired. When he had made sure he had missed, Levin looked round and saw the horses and the wagonette not on the road but in the marsh. Veslovsky, eager to see the shooting, had driven into the marsh, and got the horses stuck in the mud. "Damn the fellow!" Levin said to himself, as he went back to the carriage that had sunk in the mire. "What did you drive in for?" he said to him dryly, and calling the coachman, he began pulling the horses out. Levin was vexed both at being hindered from shooting and at his horses getting stuck in the mud, and still more at the fact that neither Stepan Arkadyevitch nor Veslovsky helped him and the coachman to unharness the horses and get them out, since neither of them had the slightest notion of harnessing. Without vouchsafing a syllable in reply to Vassenka's protestations that it had been quite dry there, Levin worked in silence with the coachman at extricating the horses. But then, as he got warm at the work and saw how assiduously Veslovsky was tugging at the wagonette by one of the mud-guards, so that he broke it indeed, Levin blamed himself for having under the influence of yesterday's feelings been too cold to Veslovsky, and tried to be particularly genial so as to smooth over his chilliness. When everything had been put right, and the carriage had been brought back to the road, Levin had the lunch served. "_Bon appetit--bonne conscience! Ce poulet va tomber jusqu'au fond de mes bottes_," Vassenka, who had recovered his spirits, quoted the French saying as he finished his second chicken. "Well, now our troubles are over, now everything's going to go well. Only, to atone for my sins, I'm bound to sit on the box. That's so? eh? No, no! I'll be your Automedon. You shall see how I'll get you along," he answered, not letting go the rein, when Levin begged him to let the coachman drive. "No, I must atone for my sins, and I'm very comfortable on the box." And he drove. Levin was a little afraid he would exhaust the horses, especially the chestnut, whom he did not know how to hold in; but unconsciously he fell under the influence of his gaiety and listened to the songs he sang all the way on the box, or the descriptions and representations he gave of driving in the English fashion, four-in-hand; and it was in the very best of spirits that after lunch they drove to the Gvozdyov marsh. Chapter 10 Vassenka drove the horses so smartly that they reached the marsh too early, while it was still hot. As they drew near this more important marsh, the chief aim of their expedition, Levin could not help considering how he could get rid of Vassenka and be free in his movements. Stepan Arkadyevitch evidently had the same desire, and on his face Levin saw the look of anxiety always present in a true sportsman when beginning shooting, together with a certain good-humored slyness peculiar to him. "How shall we go? It's a splendid marsh, I see, and there are hawks," said Stepan Arkadyevitch, pointing to two great birds hovering over the reeds. "Where there are hawks, there is sure to be game." "Now, gentlemen," said Levin, pulling up his boots and examining the lock of his gun with rather a gloomy expression, "do you see those reeds?" He pointed to an oasis of blackish green in the huge half-mown wet meadow that stretched along the right bank of the river. "The marsh begins here, straight in front of us, do you see--where it is greener? From here it runs to the right where the horses are; there are breeding places there, and grouse, and all round those reeds as far as that alder, and right up to the mill. Over there, do you see, where the pools are? That's the best place. There I once shot seventeen snipe. We'll separate with the dogs and go in different directions, and then meet over there at the mill." "Well, which shall go to left and which to right?" asked Stepan Arkadyevitch. "It's wider to the right; you two go that way and I'll take the left," he said with apparent carelessness. "Capital! we'll make the bigger bag! Yes, come along, come along!" Vassenka exclaimed. Levin could do nothing but agree, and they divided. As soon as they entered the marsh, the two dogs began hunting about together and made towards the green, slime-covered pool. Levin knew Laska's method, wary and indefinite; he knew the place too and expected a whole covey of snipe. "Veslovsky, beside me, walk beside me!" he said in a faint voice to his companion splashing in the water behind him. Levin could not help feeling an interest in the direction his gun was pointed, after that casual shot near the Kolpensky marsh. "Oh, I won't get in your way, don't trouble about me." But Levin could not help troubling, and recalled Kitty's words at parting: "Mind you don't shoot one another." The dogs came nearer and nearer, passed each other, each pursuing its own scent. The expectation of snipe was so intense that to Levin the squelching sound of his own heel, as he drew it up out of the mire, seemed to be the call of a snipe, and he clutched and pressed the lock of his gun. "Bang! bang!" sounded almost in his ear. Vassenka had fired at a flock of ducks which was hovering over the marsh and flying at that moment towards the sportsmen, far out of range. Before Levin had time to look round, there was the whir of one snipe, another, a third, and some eight more rose one after another. Stepan Arkadyevitch hit one at the very moment when it was beginning its zigzag movements, and the snipe fell in a heap into the mud. Oblonsky aimed deliberately at another, still flying low in the reeds, and together with the report of the shot, that snipe too fell, and it could be seen fluttering out where the sedge had been cut, its unhurt wing showing white beneath. Levin was not so lucky: he aimed at his first bird too low, and missed; he aimed at it again, just as it was rising, but at that instant another snipe flew up at his very feet, distracting him so that he missed again. While they were loading their guns, another snipe rose, and Veslovsky, who had had time to load again, sent two charges of small-shot into the water. Stepan Arkadyevitch picked up his snipe, and with sparkling eyes looked at Levin. "Well, now let us separate," said Stepan Arkadyevitch, and limping on his left foot, holding his gun in readiness and whistling to his dog, he walked off in one direction. Levin and Veslovsky walked in the other. It always happened with Levin that when his first shots were a failure he got hot and out of temper, and shot badly the whole day. So it was that day. The snipe showed themselves in numbers. They kept flying up from just under the dogs, from under the sportsmen's legs, and Levin might have retrieved his ill luck. But the more he shot, the more he felt disgraced in the eyes of Veslovsky, who kept popping away merrily and indiscriminately, killing nothing, and not in the slightest abashed by his ill success. Levin, in feverish haste, could not restrain himself, got more and more out of temper, and ended by shooting almost without a hope of hitting. Laska, indeed, seemed to understand this. She began looking more languidly, and gazed back at the sportsmen, as it were, with perplexity or reproach in her eyes. Shots followed shots in rapid succession. The smoke of the powder hung about the sportsmen, while in the great roomy net of the game bag there were only three light little snipe. And of these one had been killed by Veslovsky alone, and one by both of them together. Meanwhile from the other side of the marsh came the sound of Stepan Arkadyevitch's shots, not frequent, but, as Levin fancied, well-directed, for almost after each they heard "Krak, Krak, _apporte_!" This excited Levin still more. The snipe were floating continually in the air over the reeds. Their whirring wings close to the earth, and their harsh cries high in the air, could be heard on all sides; the snipe that had risen first and flown up into the air, settled again before the sportsmen. Instead of two hawks there were now dozens of them hovering with shrill cries over the marsh. After walking through the larger half of the marsh, Levin and Veslovsky reached the place where the peasants' mowing-grass was divided into long strips reaching to the reeds, marked off in one place by the trampled grass, in another by a path mown through it. Half of these strips had already been mown. Though there was not so much hope of finding birds in the uncut part as the cut part, Levin had promised Stepan Arkadyevitch to meet him, and so he walked on with his companion through the cut and uncut patches. "Hi, sportsmen!" shouted one of a group of peasants, sitting on an unharnessed cart; "come and have some lunch with us! Have a drop of wine!" Levin looked round. "Come along, it's all right!" shouted a good-humored-looking bearded peasant with a red face, showing his white teeth in a grin, and holding up a greenish bottle that flashed in the sunlight. "_Qu'est-ce qu'ils disent_?" asked Veslovsky. "They invite you to have some vodka. Most likely they've been dividing the meadow into lots. I should have some," said Levin, not without some guile, hoping Veslovsky would be tempted by the vodka, and would go away to them. "Why do they offer it?" "Oh, they're merry-making. Really, you should join them. You would be interested." "_Allons, c'est curieux_." "You go, you go, you'll find the way to the mill!" cried Levin, and looking round he perceived with satisfaction that Veslovsky, bent and stumbling with weariness, holding his gun out at arm's length, was making his way out of the marsh towards the peasants. "You come too!" the peasants shouted to Levin. "Never fear! You taste our cake!" Levin felt a strong inclination to drink a little vodka and to eat some bread. He was exhausted, and felt it a great effort to drag his staggering legs out of the mire, and for a minute he hesitated. But Laska was setting. And immediately all his weariness vanished, and he walked lightly through the swamp towards the dog. A snipe flew up at his feet; he fired and killed it. Laska still pointed.--"Fetch it!" Another bird flew up close to the dog. Levin fired. But it was an unlucky day for him; he missed it, and when he went to look for the one he had shot, he could not find that either. He wandered all about the reeds, but Laska did not believe he had shot it, and when he sent her to find it, she pretended to hunt for it, but did not really. And in the absence of Vassenka, on whom Levin threw the blame of his failure, things went no better. There were plenty of snipe still, but Levin made one miss after another. The slanting rays of the sun were still hot; his clothes, soaked through with perspiration, stuck to his body; his left boot full of water weighed heavily on his leg and squeaked at every step; the sweat ran in drops down his powder-grimed face, his mouth was full of the bitter taste, his nose of the smell of powder and stagnant water, his ears were ringing with the incessant whir of the snipe; he could not touch the stock of his gun, it was so hot; his heart beat with short, rapid throbs; his hands shook with excitement, and his weary legs stumbled and staggered over the hillocks and in the swamp, but still he walked on and still he shot. At last, after a disgraceful miss, he flung his gun and his hat on the ground. "No, I must control myself," he said to himself. Picking up his gun and his hat, he called Laska, and went out of the swamp. When he got on to dry ground he sat down, pulled off his boot and emptied it, then walked to the marsh, drank some stagnant-tasting water, moistened his burning hot gun, and washed his face and hands. Feeling refreshed, he went back to the spot where a snipe had settled, firmly resolved to keep cool. He tried to be calm, but it was the same again. His finger pressed the cock before he had taken a good aim at the bird. It got worse and worse. He had only five birds in his game-bag when he walked out of the marsh towards the alders where he was to rejoin Stepan Arkadyevitch. Before he caught sight of Stepan Arkadyevitch he saw his dog. Krak darted out from behind the twisted root of an alder, black all over with the stinking mire of the marsh, and with the air of a conqueror sniffed at Laska. Behind Krak there came into view in the shade of the alder tree the shapely figure of Stepan Arkadyevitch. He came to meet him, red and perspiring, with unbuttoned neckband, still limping in the same way. "Well? You have been popping away!" he said, smiling good-humoredly. "How have you got on?" queried Levin. But there was no need to ask, for he had already seen the full game bag. "Oh, pretty fair." He had fourteen birds. "A splendid marsh! I've no doubt Veslovsky got in your way. It's awkward too, shooting with one dog," said Stepan Arkadyevitch, to soften his triumph. Chapter 11 When Levin and Stepan Arkadyevitch reached the peasant's hut where Levin always used to stay, Veslovsky was already there. He was sitting in the middle of the hut, clinging with both hands to the bench from which he was being pulled by a soldier, the brother of the peasant's wife, who was helping him off with his miry boots. Veslovsky was laughing his infectious, good-humored laugh. "I've only just come. _Ils ont ete charmants_. Just fancy, they gave me drink, fed me! Such bread, it was exquisite! _Delicieux!_ And the vodka, I never tasted any better. And they would not take a penny for anything. And they kept saying: 'Excuse our homely ways.'" "What should they take anything for? They were entertaining you, to be sure. Do you suppose they keep vodka for sale?" said the soldier, succeeding at last in pulling the soaked boot off the blackened stocking. In spite of the dirtiness of the hut, which was all muddied by their boots and the filthy dogs licking themselves clean, and the smell of marsh mud and powder that filled the room, and the absence of knives and forks, the party drank their tea and ate their supper with a relish only known to sportsmen. Washed and clean, they went into a hay-barn swept ready for them, where the coachman had been making up beds for the gentlemen. Though it was dusk, not one of them wanted to go to sleep. After wavering among reminiscences and anecdotes of guns, of dogs, and of former shooting parties, the conversation rested on a topic that interested all of them. After Vassenka had several times over expressed his appreciation of this delightful sleeping place among the fragrant hay, this delightful broken cart (he supposed it to be broken because the shafts had been taken out), of the good nature of the peasants that had treated him to vodka, of the dogs who lay at the feet of their respective masters, Oblonsky began telling them of a delightful shooting party at Malthus's, where he had stayed the previous summer. Malthus was a well-known capitalist, who had made his money by speculation in railway shares. Stepan Arkadyevitch described what grouse moors this Malthus had bought in the Tver province, and how they were preserved, and of the carriages and dogcarts in which the shooting party had been driven, and the luncheon pavilion that had been rigged up at the marsh. "I don't understand you," said Levin, sitting up in the hay; "how is it such people don't disgust you? I can understand a lunch with Lafitte is all very pleasant, but don't you dislike just that very sumptuousness? All these people, just like our spirit monopolists in old days, get their money in a way that gains them the contempt of everyone. They don't care for their contempt, and then they use their dishonest gains to buy off the contempt they have deserved." "Perfectly true!" chimed in Vassenka Veslovsky. "Perfectly! Oblonsky, of course, goes out of _bonhomie_, but other people say: 'Well, Oblonsky stays with them.'..." "Not a bit of it." Levin could hear that Oblonsky was smiling as he spoke. "I simply don't consider him more dishonest than any other wealthy merchant or nobleman. They've all made their money alike--by their work and their intelligence." "Oh, by what work? Do you call it work to get hold of concessions and speculate with them?" "Of course it's work. Work in this sense, that if it were not for him and others like him, there would have been no railways." "But that's not work, like the work of a peasant or a learned profession." "Granted, but it's work in the sense that his activity produces a result--the railways. But of course you think the railways useless." "No, that's another question; I am prepared to admit that they're useful. But all profit that is out of proportion to the labor expended is dishonest." "But who is to define what is proportionate?" "Making profit by dishonest means, by trickery," said Levin, conscious that he could not draw a distinct line between honesty and dishonesty. "Such as banking, for instance," he went on. "It's an evil--the amassing of huge fortunes without labor, just the same thing as with the spirit monopolies, it's only the form that's changed. _Le roi est mort, vive le roi_. No sooner were the spirit monopolies abolished than the railways came up, and banking companies; that, too, is profit without work." "Yes, that may all be very true and clever.... Lie down, Krak!" Stepan Arkadyevitch called to his dog, who was scratching and turning over all the hay. He was obviously convinced of the correctness of his position, and so talked serenely and without haste. "But you have not drawn the line between honest and dishonest work. That I receive a bigger salary than my chief clerk, though he knows more about the work than I do--that's dishonest, I suppose?" "I can't say." "Well, but I can tell you: your receiving some five thousand, let's say, for your work on the land, while our host, the peasant here, however hard he works, can never get more than fifty roubles, is just as dishonest as my earning more than my chief clerk, and Malthus getting more than a station-master. No, quite the contrary; I see that society takes up a sort of antagonistic attitude to these people, which is utterly baseless, and I fancy there's envy at the bottom of it...." "No, that's unfair," said Veslovsky; "how could envy come in? There is something not nice about that sort of business." "You say," Levin went on, "that it's unjust for me to receive five thousand, while the peasant has fifty; that's true. It is unfair, and I feel it, but..." "It really is. Why is it we spend our time riding, drinking, shooting, doing nothing, while they are forever at work?" said Vassenka Veslovsky, obviously for the first time in his life reflecting on the question, and consequently considering it with perfect sincerity. "Yes, you feel it, but you don't give him your property," said Stepan Arkadyevitch, intentionally, as it seemed, provoking Levin. There had arisen of late something like a secret antagonism between the two brothers-in-law; as though, since they had married sisters, a kind of rivalry had sprung up between them as to which was ordering his life best, and now this hostility showed itself in the conversation, as it began to take a personal note. "I don't give it away, because no one demands that from me, and if I wanted to, I could not give it away," answered Levin, "and have no one to give it to." "Give it to this peasant, he would not refuse it." "Yes, but how am I to give it up? Am I to go to him and make a deed of conveyance?" "I don't know; but if you are convinced that you have no right..." "I'm not at all convinced. On the contrary, I feel I have no right to give it up, that I have duties both to the land and to my family." "No, excuse me, but if you consider this inequality is unjust, why is it you don't act accordingly?..." "Well, I do act negatively on that idea, so far as not trying to increase the difference of position existing between him and me." "No, excuse me, that's a paradox." "Yes, there's something of a sophistry about that," Veslovsky agreed. "Ah! our host; so you're not asleep yet?" he said to the peasant who came into the barn, opening the creaking door. "How is it you're not asleep?" "No, how's one to sleep! I thought our gentlemen would be asleep, but I heard them chattering. I want to get a hook from here. She won't bite?" he added, stepping cautiously with his bare feet. "And where are you going to sleep?" "We are going out for the night with the beasts." "Ah, what a night!" said Veslovsky, looking out at the edge of the hut and the unharnessed wagonette that could be seen in the faint light of the evening glow in the great frame of the open doors. "But listen, there are women's voices singing, and, on my word, not badly too. Who's that singing, my friend?" "That's the maids from hard by here." "Let's go, let's have a walk! We shan't go to sleep, you know. Oblonsky, come along!" "If one could only do both, lie here and go," answered Oblonsky, stretching. "It's capital lying here." "Well, I shall go by myself," said Veslovsky, getting up eagerly, and putting on his shoes and stockings. "Good-bye, gentlemen. If it's fun, I'll fetch you. You've treated me to some good sport, and I won't forget you." "He really is a capital fellow, isn't he?" said Stepan Arkadyevitch, when Veslovsky had gone out and the peasant had closed the door after him. "Yes, capital," answered Levin, still thinking of the subject of their conversation just before. It seemed to him that he had clearly expressed his thoughts and feelings to the best of his capacity, and yet both of them, straightforward men and not fools, had said with one voice that he was comforting himself with sophistries. This disconcerted him. "It's just this, my dear boy. One must do one of two things: either admit that the existing order of society is just, and then stick up for one's rights in it; or acknowledge that you are enjoying unjust privileges, as I do, and then enjoy them and be satisfied." "No, if it were unjust, you could not enjoy these advantages and be satisfied--at least I could not. The great thing for me is to feel that I'm not to blame." "What do you say, why not go after all?" said Stepan Arkadyevitch, evidently weary of the strain of thought. "We shan't go to sleep, you know. Come, let's go!" Levin did not answer. What they had said in the conversation, that he acted justly only in a negative sense, absorbed his thoughts. "Can it be that it's only possible to be just negatively?" he was asking himself. "How strong the smell of the fresh hay is, though," said Stepan Arkadyevitch, getting up. "There's not a chance of sleeping. Vassenka has been getting up some fun there. Do you hear the laughing and his voice? Hadn't we better go? Come along!" "No, I'm not coming," answered Levin. "Surely that's not a matter of principle too," said Stepan Arkadyevitch, smiling, as he felt about in the dark for his cap. "It's not a matter of principle, but why should I go?" "But do you know you are preparing trouble for yourself," said Stepan Arkadyevitch, finding his cap and getting up. "How so?" "Do you suppose I don't see the line you've taken up with your wife? I heard how it's a question of the greatest consequence, whether or not you're to be away for a couple of days' shooting. That's all very well as an idyllic episode, but for your whole life that won't answer. A man must be independent; he has his masculine interests. A man has to be manly," said Oblonsky, opening the door. "In what way? To go running after servant girls?" said Levin. "Why not, if it amuses him? _Ca ne tire pas a consequence_. It won't do my wife any harm, and it'll amuse me. The great thing is to respect the sanctity of the home. There should be nothing in the home. But don't tie your own hands." "Perhaps so," said Levin dryly, and he turned on his side. "Tomorrow, early, I want to go shooting, and I won't wake anyone, and shall set off at daybreak." "_Messieurs, venez vite!_" they heard the voice of Veslovsky coming back. "_Charmante!_ I've made such a discovery. _Charmante!_ a perfect Gretchen, and I've already made friends with her. Really, exceedingly pretty," he declared in a tone of approval, as though she had been made pretty entirely on his account, and he was expressing his satisfaction with the entertainment that had been provided for him. Levin pretended to be asleep, while Oblonsky, putting on his slippers, and lighting a cigar, walked out of the barn, and soon their voices were lost. For a long while Levin could not get to sleep. He heard the horses munching hay, then he heard the peasant and his elder boy getting ready for the night, and going off for the night watch with the beasts, then he heard the soldier arranging his bed on the other side of the barn, with his nephew, the younger son of their peasant host. He heard the boy in his shrill little voice telling his uncle what he thought about the dogs, who seemed to him huge and terrible creatures, and asking what the dogs were going to hunt next day, and the soldier in a husky, sleepy voice, telling him the sportsmen were going in the morning to the marsh, and would shoot with their guns; and then, to check the boy's questions, he said, "Go to sleep, Vaska; go to sleep, or you'll catch it," and soon after he began snoring himself, and everything was still. He could only hear the snort of the horses, and the guttural cry of a snipe. "Is it really only negative?" he repeated to himself. "Well, what of it? It's not my fault." And he began thinking about the next day. "Tomorrow I'll go out early, and I'll make a point of keeping cool. There are lots of snipe; and there are grouse too. When I come back there'll be the note from Kitty. Yes, Stiva may be right, I'm not manly with her, I'm tied to her apron-strings.... Well, it can't be helped! Negative again...." Half asleep, he heard the laughter and mirthful talk of Veslovsky and Stepan Arkadyevitch. For an instant he opened his eyes: the moon was up, and in the open doorway, brightly lighted up by the moonlight, they were standing talking. Stepan Arkadyevitch was saying something of the freshness of one girl, comparing her to a freshly peeled nut, and Veslovsky with his infectious laugh was repeating some words, probably said to him by a peasant: "Ah, you do your best to get round her!" Levin, half asleep, said: "Gentlemen, tomorrow before daylight!" and fell asleep. Chapter 12 Waking up at earliest dawn, Levin tried to wake his companions. Vassenka, lying on his stomach, with one leg in a stocking thrust out, was sleeping so soundly that he could elicit no response. Oblonsky, half asleep, declined to get up so early. Even Laska, who was asleep, curled up in the hay, got up unwillingly, and lazily stretched out and straightened her hind legs one after the other. Getting on his boots and stockings, taking his gun, and carefully opening the creaking door of the barn, Levin went out into the road. The coachmen were sleeping in their carriages, the horses were dozing. Only one was lazily eating oats, dipping its nose into the manger. It was still gray out-of-doors. "Why are you up so early, my dear?" the old woman, their hostess, said, coming out of the hut and addressing him affectionately as an old friend. "Going shooting, granny. Do I go this way to the marsh?" "Straight out at the back; by our threshing floor, my dear, and hemp patches; there's a little footpath." Stepping carefully with her sunburnt, bare feet, the old woman conducted Levin, and moved back the fence for him by the threshing floor. "Straight on and you'll come to the marsh. Our lads drove the cattle there yesterday evening." Laska ran eagerly forward along the little path. Levin followed her with a light, rapid step, continually looking at the sky. He hoped the sun would not be up before he reached the marsh. But the sun did not delay. The moon, which had been bright when he went out, by now shone only like a crescent of quicksilver. The pink flush of dawn, which one could not help seeing before, now had to be sought to be discerned at all. What were before undefined, vague blurs in the distant countryside could now be distinctly seen. They were sheaves of rye. The dew, not visible till the sun was up, wetted Levin's legs and his blouse above his belt in the high growing, fragrant hemp patch, from which the pollen had already fallen out. In the transparent stillness of morning the smallest sounds were audible. A bee flew by Levin's ear with the whizzing sound of a bullet. He looked carefully, and saw a second and a third. They were all flying from the beehives behind the hedge, and they disappeared over the hemp patch in the direction of the marsh. The path led straight to the marsh. The marsh could be recognized by the mist which rose from it, thicker in one place and thinner in another, so that the reeds and willow bushes swayed like islands in this mist. At the edge of the marsh and the road, peasant boys and men, who had been herding for the night, were lying, and in the dawn all were asleep under their coats. Not far from them were three hobbled horses. One of them clanked a chain. Laska walked beside her master, pressing a little forward and looking round. Passing the sleeping peasants and reaching the first reeds, Levin examined his pistols and let his dog off. One of the horses, a sleek, dark-brown three-year-old, seeing the dog, started away, switched its tail and snorted. The other horses too were frightened, and splashing through the water with their hobbled legs, and drawing their hoofs out of the thick mud with a squelching sound, they bounded out of the marsh. Laska stopped, looking ironically at the horses and inquiringly at Levin. Levin patted Laska, and whistled as a sign that she might begin. Laska ran joyfully and anxiously through the slush that swayed under her. Running into the marsh among the familiar scents of roots, marsh plants, and slime, and the extraneous smell of horse dung, Laska detected at once a smell that pervaded the whole marsh, the scent of that strong-smelling bird that always excited her more than any other. Here and there among the moss and marsh plants this scent was very strong, but it was impossible to determine in which direction it grew stronger or fainter. To find the direction, she had to go farther away from the wind. Not feeling the motion of her legs, Laska bounded with a stiff gallop, so that at each bound she could stop short, to the right, away from the wind that blew from the east before sunrise, and turned facing the wind. Sniffing in the air with dilated nostrils, she felt at once that not their tracks only but they themselves were here before her, and not one, but many. Laska slackened her speed. They were here, but where precisely she could not yet determine. To find the very spot, she began to make a circle, when suddenly her master's voice drew her off. "Laska! here?" he asked, pointing her to a different direction. She stopped, asking him if she had better not go on doing as she had begun. But he repeated his command in an angry voice, pointing to a spot covered with water, where there could not be anything. She obeyed him, pretending she was looking, so as to please him, went round it, and went back to her former position, and was at once aware of the scent again. Now when he was not hindering her, she knew what to do, and without looking at what was under her feet, and to her vexation stumbling over a high stump into the water, but righting herself with her strong, supple legs, she began making the circle which was to make all clear to her. The scent of them reached her, stronger and stronger, and more and more defined, and all at once it became perfectly clear to her that one of them was here, behind this tuft of reeds, five paces in front of her; she stopped, and her whole body was still and rigid. On her short legs she could see nothing in front of her, but by the scent she knew it was sitting not more than five paces off. She stood still, feeling more and more conscious of it, and enjoying it in anticipation. Her tail was stretched straight and tense, and only wagging at the extreme end. Her mouth was slightly open, her ears raised. One ear had been turned wrong side out as she ran up, and she breathed heavily but warily, and still more warily looked round, but more with her eyes than her head, to her master. He was coming along with the face she knew so well, though the eyes were always terrible to her. He stumbled over the stump as he came, and moved, as she thought, extraordinarily slowly. She thought he came slowly, but he was running. Noticing Laska's special attitude as she crouched on the ground, as it were, scratching big prints with her hind paws, and with her mouth slightly open, Levin knew she was pointing at grouse, and with an inward prayer for luck, especially with the first bird, he ran up to her. Coming quite close up to her, he could from his height look beyond her, and he saw with his eyes what she was seeing with her nose. In a space between two little thickets, at a couple of yards' distance, he could see a grouse. Turning its head, it was listening. Then lightly preening and folding its wings, it disappeared round a corner with a clumsy wag of its tail. "Fetch it, fetch it!" shouted Levin, giving Laska a shove from behind. "But I can't go," thought Laska. "Where am I to go? From here I feel them, but if I move forward I shall know nothing of where they are or who they are." But then he shoved her with his knee, and in an excited whisper said, "Fetch it, Laska." "Well, if that's what he wishes, I'll do it, but I can't answer for myself now," she thought, and darted forward as fast as her legs would carry her between the thick bushes. She scented nothing now; she could only see and hear, without understanding anything. Ten paces from her former place a grouse rose with a guttural cry and the peculiar round sound of its wings. And immediately after the shot it splashed heavily with its white breast on the wet mire. Another bird did not linger, but rose behind Levin without the dog. When Levin turned towards it, it was already some way off. But his shot caught it. Flying twenty paces further, the second grouse rose upwards, and whirling round like a ball, dropped heavily on a dry place. "Come, this is going to be some good!" thought Levin, packing the warm and fat grouse into his game bag. "Eh, Laska, will it be good?" When Levin, after loading his gun, moved on, the sun had fully risen, though unseen behind the storm-clouds. The moon had lost all of its luster, and was like a white cloud in the sky. Not a single star could be seen. The sedge, silvery with dew before, now shone like gold. The stagnant pools were all like amber. The blue of the grass had changed to yellow-green. The marsh birds twittered and swarmed about the brook and upon the bushes that glittered with dew and cast long shadows. A hawk woke up and settled on a haycock, turning its head from side to side and looking discontentedly at the marsh. Crows were flying about the field, and a bare-legged boy was driving the horses to an old man, who had got up from under his long coat and was combing his hair. The smoke from the gun was white as milk over the green of the grass. One of the boys ran up to Levin. "Uncle, there were ducks here yesterday!" he shouted to him, and he walked a little way off behind him. And Levin was doubly pleased, in sight of the boy, who expressed his approval, at killing three snipe, one after another, straight off. Chapter 13 The sportsman's saying, that if the first beast or the first bird is not missed, the day will be lucky, turned out correct. At ten o'clock Levin, weary, hungry, and happy after a tramp of twenty miles, returned to his night's lodging with nineteen head of fine game and one duck, which he tied to his belt, as it would not go into the game bag. His companions had long been awake, and had had time to get hungry and have breakfast. "Wait a bit, wait a bit, I know there are nineteen," said Levin, counting a second time over the grouse and snipe, that looked so much less important now, bent and dry and bloodstained, with heads crooked aside, than they did when they were flying. The number was verified, and Stepan Arkadyevitch's envy pleased Levin. He was pleased too on returning to find the man sent by Kitty with a note was already there. "I am perfectly well and happy. If you were uneasy about me, you can feel easier than ever. I've a new bodyguard, Marya Vlasyevna,"--this was the midwife, a new and important personage in Levin's domestic life. "She has come to have a look at me. She found me perfectly well, and we have kept her till you are back. All are happy and well, and please, don't be in a hurry to come back, but, if the sport is good, stay another day." These two pleasures, his lucky shooting and the letter from his wife, were so great that two slightly disagreeable incidents passed lightly over Levin. One was that the chestnut trace horse, who had been unmistakably overworked on the previous day, was off his feed and out of sorts. The coachman said he was "Overdriven yesterday, Konstantin Dmitrievitch. Yes, indeed! driven ten miles with no sense!" The other unpleasant incident, which for the first minute destroyed his good humor, though later he laughed at it a great deal, was to find that of all the provisions Kitty had provided in such abundance that one would have thought there was enough for a week, nothing was left. On his way back, tired and hungry from shooting, Levin had so distinct a vision of meat-pies that as he approached the hut he seemed to smell and taste them, as Laska had smelt the game, and he immediately told Philip to give him some. It appeared that there were no pies left, nor even any chicken. "Well, this fellow's appetite!" said Stepan Arkadyevitch, laughing and pointing at Vassenka Veslovsky. "I never suffer from loss of appetite, but he's really marvelous!..." "Well, it can't be helped," said Levin, looking gloomily at Veslovsky. "Well, Philip, give me some beef, then." "The beef's been eaten, and the bones given to the dogs," answered Philip. Levin was so hurt that he said, in a tone of vexation, "You might have left me something!" and he felt ready to cry. "Then put away the game," he said in a shaking voice to Philip, trying not to look at Vassenka, "and cover them with some nettles. And you might at least ask for some milk for me." But when he had drunk some milk, he felt ashamed immediately at having shown his annoyance to a stranger, and he began to laugh at his hungry mortification. In the evening they went shooting again, and Veslovsky had several successful shots, and in the night they drove home. Their homeward journey was as lively as their drive out had been. Veslovsky sang songs and related with enjoyment his adventures with the peasants, who had regaled him with vodka, and said to him, "Excuse our homely ways," and his night's adventures with kiss-in-the-ring and the servant-girl and the peasant, who had asked him was he married, and on learning that he was not, said to him, "Well, mind you don't run after other men's wives--you'd better get one of your own." These words had particularly amused Veslovsky. "Altogether, I've enjoyed our outing awfully. And you, Levin?" "I have, very much," Levin said quite sincerely. It was particularly delightful to him to have got rid of the hostility he had been feeling towards Vassenka Veslovsky at home, and to feel instead the most friendly disposition to him. Chapter 14 Next day at ten o'clock Levin, who had already gone his rounds, knocked at the room where Vassenka had been put for the night. "_Entrez!_" Veslovsky called to him. "Excuse me, I've only just finished my ablutions," he said, smiling, standing before him in his underclothes only. "Don't mind me, please." Levin sat down in the window. "Have you slept well?" "Like the dead. What sort of day is it for shooting?" "What will you take, tea or coffee?" "Neither. I'll wait till lunch. I'm really ashamed. I suppose the ladies are down? A walk now would be capital. You show me your horses." After walking about the garden, visiting the stable, and even doing some gymnastic exercises together on the parallel bars, Levin returned to the house with his guest, and went with him into the drawing room. "We had splendid shooting, and so many delightful experiences!" said Veslovsky, going up to Kitty, who was sitting at the samovar. "What a pity ladies are cut off from these delights!" "Well, I suppose he must say something to the lady of the house," Levin said to himself. Again he fancied something in the smile, in the all-conquering air with which their guest addressed Kitty.... The princess, sitting on the other side of the table with Marya Vlasyevna and Stepan Arkadyevitch, called Levin to her side, and began to talk to him about moving to Moscow for Kitty's confinement, and getting ready rooms for them. Just as Levin had disliked all the trivial preparations for his wedding, as derogatory to the grandeur of the event, now he felt still more offensive the preparations for the approaching birth, the date of which they reckoned, it seemed, on their fingers. He tried to turn a deaf ear to these discussions of the best patterns of long clothes for the coming baby; tried to turn away and avoid seeing the mysterious, endless strips of knitting, the triangles of linen, and so on, to which Dolly attached special importance. The birth of a son (he was certain it would be a son) which was promised him, but which he still could not believe in--so marvelous it seemed--presented itself to his mind, on one hand, as a happiness so immense, and therefore so incredible; on the other, as an event so mysterious, that this assumption of a definite knowledge of what would be, and consequent preparation for it, as for something ordinary that did happen to people, jarred on him as confusing and humiliating. But the princess did not understand his feelings, and put down his reluctance to think and talk about it to carelessness and indifference, and so she gave him no peace. She had commissioned Stepan Arkadyevitch to look at a flat, and now she called Levin up. "I know nothing about it, princess. Do as you think fit," he said. "You must decide when you will move." "I really don't know. I know millions of children are born away from Moscow, and doctors ... why..." "But if so..." "Oh, no, as Kitty wishes." "We can't talk to Kitty about it! Do you want me to frighten her? Why, this spring Natalia Golitzina died from having an ignorant doctor." "I will do just what you say," he said gloomily. The princess began talking to him, but he did not hear her. Though the conversation with the princess had indeed jarred upon him, he was gloomy, not on account of that conversation, but from what he saw at the samovar. "No, it's impossible," he thought, glancing now and then at Vassenka bending over Kitty, telling her something with his charming smile, and at her, flushed and disturbed. There was something not nice in Vassenka's attitude, in his eyes, in his smile. Levin even saw something not nice in Kitty's attitude and look. And again the light died away in his eyes. Again, as before, all of a sudden, without the slightest transition, he felt cast down from a pinnacle of happiness, peace, and dignity, into an abyss of despair, rage, and humiliation. Again everything and everyone had become hateful to him. "You do just as you think best, princess," he said again, looking round. "Heavy is the cap of Monomach," Stepan Arkadyevitch said playfully, hinting, evidently, not simply at the princess's conversation, but at the cause of Levin's agitation, which he had noticed. "How late you are today, Dolly!" Everyone got up to greet Darya Alexandrovna. Vassenka only rose for an instant, and with the lack of courtesy to ladies characteristic of the modern young man, he scarcely bowed, and resumed his conversation again, laughing at something. "I've been worried about Masha. She did not sleep well, and is dreadfully tiresome today," said Dolly. The conversation Vassenka had started with Kitty was running on the same lines as on the previous evening, discussing Anna, and whether love is to be put higher than worldly considerations. Kitty disliked the conversation, and she was disturbed both by the subject and the tone in which it was conducted, and also by the knowledge of the effect it would have on her husband. But she was too simple and innocent to know how to cut short this conversation, or even to conceal the superficial pleasure afforded her by the young man's very obvious admiration. She wanted to stop it, but she did not know what to do. Whatever she did she knew would be observed by her husband, and the worst interpretation put on it. And, in fact, when she asked Dolly what was wrong with Masha, and Vassenka, waiting till this uninteresting conversation was over, began to gaze indifferently at Dolly, the question struck Levin as an unnatural and disgusting piece of hypocrisy. "What do you say, shall we go and look for mushrooms today?" said Dolly. "By all means, please, and I shall come too," said Kitty, and she blushed. She wanted from politeness to ask Vassenka whether he would come, and she did not ask him. "Where are you going, Kostya?" she asked her husband with a guilty face, as he passed by her with a resolute step. This guilty air confirmed all his suspicions. "The mechanician came when I was away; I haven't seen him yet," he said, not looking at her. He went downstairs, but before he had time to leave his study he heard his wife's familiar footsteps running with reckless speed to him. "What do you want?" he said to her shortly. "We are busy." "I beg your pardon," she said to the German mechanician; "I want a few words with my husband." The German would have left the room, but Levin said to him: "Don't disturb yourself." "The train is at three?" queried the German. "I mustn't be late." Levin did not answer him, but walked out himself with his wife. "Well, what have you to say to me?" he said to her in French. He did not look her in the face, and did not care to see that she in her condition was trembling all over, and had a piteous, crushed look. "I ... I want to say that we can't go on like this; that this is misery..." she said. "The servants are here at the sideboard," he said angrily; "don't make a scene." "Well, let's go in here!" They were standing in the passage. Kitty would have gone into the next room, but there the English governess was giving Tanya a lesson. "Well, come into the garden." In the garden they came upon a peasant weeding the path. And no longer considering that the peasant could see her tear-stained and his agitated face, that they looked like people fleeing from some disaster, they went on with rapid steps, feeling that they must speak out and clear up misunderstandings, must be alone together, and so get rid of the misery they were both feeling. "We can't go on like this! It's misery! I am wretched; you are wretched. What for?" she said, when they had at last reached a solitary garden seat at a turn in the lime tree avenue. "But tell me one thing: was there in his tone anything unseemly, not nice, humiliatingly horrible?" he said, standing before her again in the same position with his clenched fists on his chest, as he had stood before her that night. "Yes," she said in a shaking voice; "but, Kostya, surely you see I'm not to blame? All the morning I've been trying to take a tone ... but such people.... Why did he come? How happy we were!" she said, breathless with the sobs that shook her. Although nothing had been pursuing them, and there was nothing to run away from, and they could not possibly have found anything very delightful on that garden seat, the gardener saw with astonishment that they passed him on their way home with comforted and radiant faces. Chapter 15 After escorting his wife upstairs, Levin went to Dolly's part of the house. Darya Alexandrovna, for her part, was in great distress too that day. She was walking about the room, talking angrily to a little girl, who stood in the corner roaring. "And you shall stand all day in the corner, and have your dinner all alone, and not see one of your dolls, and I won't make you a new frock," she said, not knowing how to punish her. "Oh, she is a disgusting child!" she turned to Levin. "Where does she get such wicked propensities?" "Why, what has she done?" Levin said without much interest, for he had wanted to ask her advice, and so was annoyed that he had come at an unlucky moment. "Grisha and she went into the raspberries, and there ... I can't tell you really what she did. It's a thousand pities Miss Elliot's not with us. This one sees to nothing--she's a machine.... _Figurez-vous que la petite_?..." And Darya Alexandrovna described Masha's crime. "That proves nothing; it's not a question of evil propensities at all, it's simply mischief," Levin assured her. "But you are upset about something? What have you come for?" asked Dolly. "What's going on there?" And in the tone of her question Levin heard that it would be easy for him to say what he had meant to say. "I've not been in there, I've been alone in the garden with Kitty. We've had a quarrel for the second time since ... Stiva came." Dolly looked at him with her shrewd, comprehending eyes. "Come, tell me, honor bright, has there been ... not in Kitty, but in that gentleman's behavior, a tone which might be unpleasant--not unpleasant, but horrible, offensive to a husband?" "You mean, how shall I say.... Stay, stay in the corner!" she said to Masha, who, detecting a faint smile in her mother's face, had been turning round. "The opinion of the world would be that he is behaving as young men do behave. _Il fait la cour a une jeune et jolie femme_, and a husband who's a man of the world should only be flattered by it." "Yes, yes," said Levin gloomily; "but you noticed it?" "Not only I, but Stiva noticed it. Just after breakfast he said to me in so many words, _Je crois que Veslovsky fait un petit brin de cour a Kitty_." "Well, that's all right then; now I'm satisfied. I'll send him away," said Levin. "What do you mean! Are you crazy?" Dolly cried in horror; "nonsense, Kostya, only think!" she said, laughing. "You can go now to Fanny," she said to Masha. "No, if you wish it, I'll speak to Stiva. He'll take him away. He can say you're expecting visitors. Altogether he doesn't fit into the house." "No, no, I'll do it myself." "But you'll quarrel with him?" "Not a bit. I shall so enjoy it," Levin said, his eyes flashing with real enjoyment. "Come, forgive her, Dolly, she won't do it again," he said of the little sinner, who had not gone to Fanny, but was standing irresolutely before her mother, waiting and looking up from under her brows to catch her mother's eye. The mother glanced at her. The child broke into sobs, hid her face on her mother's lap, and Dolly laid her thin, tender hand on her head. "And what is there in common between us and him?" thought Levin, and he went off to look for Veslovsky. As he passed through the passage he gave orders for the carriage to be got ready to drive to the station. "The spring was broken yesterday," said the footman. "Well, the covered trap, then, and make haste. Where's the visitor?" "The gentleman's gone to his room." Levin came upon Veslovsky at the moment when the latter, having unpacked his things from his trunk, and laid out some new songs, was putting on his gaiters to go out riding. Whether there was something exceptional in Levin's face, or that Vassenka was himself conscious that _ce petit brin de cour_ he was making was out of place in this family, but he was somewhat (as much as a young man in society can be) disconcerted at Levin's entrance. "You ride in gaiters?" "Yes, it's much cleaner," said Vassenka, putting his fat leg on a chair, fastening the bottom hook, and smiling with simple-hearted good humor. He was undoubtedly a good-natured fellow, and Levin felt sorry for him and ashamed of himself, as his host, when he saw the shy look on Vassenka's face. On the table lay a piece of stick which they had broken together that morning, trying their strength. Levin took the fragment in his hands and began smashing it up, breaking bits off the stick, not knowing how to begin. "I wanted...." He paused, but suddenly, remembering Kitty and everything that had happened, he said, looking him resolutely in the face: "I have ordered the horses to be put-to for you." "How so?" Vassenka began in surprise. "To drive where?" "For you to drive to the station," Levin said gloomily. "Are you going away, or has something happened?" "It happens that I expect visitors," said Levin, his strong fingers more and more rapidly breaking off the ends of the split stick. "And I'm not expecting visitors, and nothing has happened, but I beg you to go away. You can explain my rudeness as you like." Vassenka drew himself up. "I beg you to explain..." he said with dignity, understanding at last. "I can't explain," Levin said softly and deliberately, trying to control the trembling of his jaw; "and you'd better not ask." And as the split ends were all broken off, Levin clutched the thick ends in his finger, broke the stick in two, and carefully caught the end as it fell. Probably the sight of those nervous fingers, of the muscles he had proved that morning at gymnastics, of the glittering eyes, the soft voice, and quivering jaws, convinced Vassenka better than any words. He bowed, shrugging his shoulders, and smiling contemptuously. "Can I not see Oblonsky?" The shrug and the smile did not irritate Levin. "What else was there for him to do?" he thought. "I'll send him to you at once." "What madness is this?" Stepan Arkadyevitch said when, after hearing from his friend that he was being turned out of the house, he found Levin in the garden, where he was walking about waiting for his guest's departure. "_Mais c'est ridicule!_ What fly has stung you? _Mais c'est du dernier ridicule!_ What did you think, if a young man..." But the place where Levin had been stung was evidently still sore, for he turned pale again, when Stepan Arkadyevitch would have enlarged on the reason, and he himself cut him short. "Please don't go into it! I can't help it. I feel ashamed of how I'm treating you and him. But it won't be, I imagine, a great grief to him to go, and his presence was distasteful to me and to my wife." "But it's insulting to him! _Et puis c'est ridicule_." "And to me it's both insulting and distressing! And I'm not at fault in any way, and there's no need for me to suffer." "Well, this I didn't expect of you! _On peut etre jaloux, mais a ce point, c'est du dernier ridicule!_" Levin turned quickly, and walked away from him into the depths of the avenue, and he went on walking up and down alone. Soon he heard the rumble of the trap, and saw from behind the trees how Vassenka, sitting in the hay (unluckily there was no seat in the trap) in his Scotch cap, was driven along the avenue, jolting up and down over the ruts. "What's this?" Levin thought, when a footman ran out of the house and stopped the trap. It was the mechanician, whom Levin had totally forgotten. The mechanician, bowing low, said something to Veslovsky, then clambered into the trap, and they drove off together. Stepan Arkadyevitch and the princess were much upset by Levin's action. And he himself felt not only in the highest degree _ridicule_, but also utterly guilty and disgraced. But remembering what sufferings he and his wife had been through, when he asked himself how he should act another time, he answered that he should do just the same again. In spite of all this, towards the end of that day, everyone except the princess, who could not pardon Levin's action, became extraordinarily lively and good humored, like children after a punishment or grown-up people after a dreary, ceremonious reception, so that by the evening Vassenka's dismissal was spoken of, in the absence of the princess, as though it were some remote event. And Dolly, who had inherited her father's gift of humorous storytelling, made Varenka helpless with laughter as she related for the third and fourth time, always with fresh humorous additions, how she had only just put on her new shoes for the benefit of the visitor, and on going into the drawing room, heard suddenly the rumble of the trap. And who should be in the trap but Vassenka himself, with his Scotch cap, and his songs and his gaiters, and all, sitting in the hay. "If only you'd ordered out the carriage! But no! and then I hear: 'Stop!' Oh, I thought they've relented. I look out, and behold a fat German being sat down by him and driving away.... And my new shoes all for nothing!..." Chapter 16 Darya Alexandrovna carried out her intention and went to see Anna. She was sorry to annoy her sister and to do anything Levin disliked. She quite understood how right the Levins were in not wishing to have anything to do with Vronsky. But she felt she must go and see Anna, and show her that her feelings could not be changed, in spite of the change in her position. That she might be independent of the Levins in this expedition, Darya Alexandrovna sent to the village to hire horses for the drive; but Levin learning of it went to her to protest. "What makes you suppose that I dislike your going? But, even if I did dislike it, I should still more dislike your not taking my horses," he said. "You never told me that you were going for certain. Hiring horses in the village is disagreeable to me, and, what's of more importance, they'll undertake the job and never get you there. I have horses. And if you don't want to wound me, you'll take mine." Darya Alexandrovna had to consent, and on the day fixed Levin had ready for his sister-in-law a set of four horses and relays, getting them together from the farm- and saddle-horses--not at all a smart-looking set, but capable of taking Darya Alexandrovna the whole distance in a single day. At that moment, when horses were wanted for the princess, who was going, and for the midwife, it was a difficult matter for Levin to make up the number, but the duties of hospitality would not let him allow Darya Alexandrovna to hire horses when staying in his house. Moreover, he was well aware that the twenty roubles that would be asked for the journey were a serious matter for her; Darya Alexandrovna's pecuniary affairs, which were in a very unsatisfactory state, were taken to heart by the Levins as if they were their own. Darya Alexandrovna, by Levin's advice, started before daybreak. The road was good, the carriage comfortable, the horses trotted along merrily, and on the box, besides the coachman, sat the counting-house clerk, whom Levin was sending instead of a groom for greater security. Darya Alexandrovna dozed and waked up only on reaching the inn where the horses were to be changed. After drinking tea at the same well-to-do peasant's with whom Levin had stayed on the way to Sviazhsky's, and chatting with the women about their children, and with the old man about Count Vronsky, whom the latter praised very highly, Darya Alexandrovna, at ten o'clock, went on again. At home, looking after her children, she had no time to think. So now, after this journey of four hours, all the thoughts she had suppressed before rushed swarming into her brain, and she thought over all her life as she never had before, and from the most different points of view. Her thoughts seemed strange even to herself. At first she thought about the children, about whom she was uneasy, although the princess and Kitty (she reckoned more upon her) had promised to look after them. "If only Masha does not begin her naughty tricks, if Grisha isn't kicked by a horse, and Lily's stomach isn't upset again!" she thought. But these questions of the present were succeeded by questions of the immediate future. She began thinking how she had to get a new flat in Moscow for the coming winter, to renew the drawing room furniture, and to make her elder girl a cloak. Then questions of the more remote future occurred to her: how she was to place her children in the world. "The girls are all right," she thought; "but the boys?" "It's very well that I'm teaching Grisha, but of course that's only because I am free myself now, I'm not with child. Stiva, of course, there's no counting on. And with the help of good-natured friends I can bring them up; but if there's another baby coming?..." And the thought struck her how untruly it was said that the curse laid on woman was that in sorrow she should bring forth children. "The birth itself, that's nothing; but the months of carrying the child--that's what's so intolerable," she thought, picturing to herself her last pregnancy, and the death of the last baby. And she recalled the conversation she had just had with the young woman at the inn. On being asked whether she had any children, the handsome young woman had answered cheerfully: "I had a girl baby, but God set me free; I buried her last Lent." "Well, did you grieve very much for her?" asked Darya Alexandrovna. "Why grieve? The old man has grandchildren enough as it is. It was only a trouble. No working, nor nothing. Only a tie." This answer had struck Darya Alexandrovna as revolting in spite of the good-natured and pleasing face of the young woman; but now she could not help recalling these words. In those cynical words there was indeed a grain of truth. "Yes, altogether," thought Darya Alexandrovna, looking back over her whole existence during those fifteen years of her married life, "pregnancy, sickness, mental incapacity, indifference to everything, and most of all--hideousness. Kitty, young and pretty as she is, even Kitty has lost her looks; and I when I'm with child become hideous, I know it. The birth, the agony, the hideous agonies, that last moment ... then the nursing, the sleepless nights, the fearful pains...." Darya Alexandrovna shuddered at the mere recollection of the pain from sore breasts which she had suffered with almost every child. "Then the children's illnesses, that everlasting apprehension; then bringing them up; evil propensities" (she thought of little Masha's crime among the raspberries), "education, Latin--it's all so incomprehensible and difficult. And on the top of it all, the death of these children." And there rose again before her imagination the cruel memory, that always tore her mother's heart, of the death of her last little baby, who had died of croup; his funeral, the callous indifference of all at the little pink coffin, and her own torn heart, and her lonely anguish at the sight of the pale little brow with its projecting temples, and the open, wondering little mouth seen in the coffin at the moment when it was being covered with the little pink lid with a cross braided on it. "And all this, what's it for? What is to come of it all? That I'm wasting my life, never having a moment's peace, either with child, or nursing a child, forever irritable, peevish, wretched myself and worrying others, repulsive to my husband, while the children are growing up unhappy, badly educated, and penniless. Even now, if it weren't for spending the summer at the Levins', I don't know how we should be managing to live. Of course Kostya and Kitty have so much tact that we don't feel it; but it can't go on. They'll have children, they won't be able to keep us; it's a drag on them as it is. How is papa, who has hardly anything left for himself, to help us? So that I can't even bring the children up by myself, and may find it hard with the help of other people, at the cost of humiliation. Why, even if we suppose the greatest good luck, that the children don't die, and I bring them up somehow. At the very best they'll simply be decent people. That's all I can hope for. And to gain simply that--what agonies, what toil!... One's whole life ruined!" Again she recalled what the young peasant woman had said, and again she was revolted at the thought; but she could not help admitting that there was a grain of brutal truth in the words. "Is it far now, Mihail?" Darya Alexandrovna asked the counting house clerk, to turn her mind from thoughts that were frightening her. "From this village, they say, it's five miles." The carriage drove along the village street and onto a bridge. On the bridge was a crowd of peasant women with coils of ties for the sheaves on their shoulders, gaily and noisily chattering. They stood still on the bridge, staring inquisitively at the carriage. All the faces turned to Darya Alexandrovna looked to her healthy and happy, making her envious of their enjoyment of life. "They're all living, they're all enjoying life," Darya Alexandrovna still mused when she had passed the peasant women and was driving uphill again at a trot, seated comfortably on the soft springs of the old carriage, "while I, let out, as it were from prison, from the world of worries that fret me to death, am only looking about me now for an instant. They all live; those peasant women and my sister Natalia and Varenka and Anna, whom I am going to see--all, but not I. "And they attack Anna. What for? am I any better? I have, anyway, a husband I love--not as I should like to love him, still I do love him, while Anna never loved hers. How is she to blame? She wants to live. God has put that in our hearts. Very likely I should have done the same. Even to this day I don't feel sure I did right in listening to her at that terrible time when she came to me in Moscow. I ought then to have cast off my husband and have begun my life fresh. I might have loved and have been loved in reality. And is it any better as it is? I don't respect him. He's necessary to me," she thought about her husband, "and I put up with him. Is that any better? At that time I could still have been admired, I had beauty left me still," Darya Alexandrovna pursued her thoughts, and she would have liked to look at herself in the looking glass. She had a traveling looking glass in her handbag, and she wanted to take it out; but looking at the backs of the coachman and the swaying counting house clerk, she felt that she would be ashamed if either of them were to look round, and she did not take out the glass. But without looking in the glass, she thought that even now it was not too late; and she thought of Sergey Ivanovitch, who was always particularly attentive to her, of Stiva's good-hearted friend, Turovtsin, who had helped her nurse her children through the scarlatina, and was in love with her. And there was someone else, a quite young man, who--her husband had told her it as a joke--thought her more beautiful than either of her sisters. And the most passionate and impossible romances rose before Darya Alexandrovna's imagination. "Anna did quite right, and certainly I shall never reproach her for it. She is happy, she makes another person happy, and she's not broken down as I am, but most likely just as she always was, bright, clever, open to every impression," thought Darya Alexandrovna,--and a sly smile curved her lips, for, as she pondered on Anna's love affair, Darya Alexandrovna constructed on parallel lines an almost identical love affair for herself, with an imaginary composite figure, the ideal man who was in love with her. She, like Anna, confessed the whole affair to her husband. And the amazement and perplexity of Stepan Arkadyevitch at this avowal made her smile. In such daydreams she reached the turning of the highroad that led to Vozdvizhenskoe. Chapter 17 The coachman pulled up his four horses and looked round to the right, to a field of rye, where some peasants were sitting on a cart. The counting house clerk was just going to jump down, but on second thoughts he shouted peremptorily to the peasants instead, and beckoned to them to come up. The wind, that seemed to blow as they drove, dropped when the carriage stood still; gadflies settled on the steaming horses that angrily shook them off. The metallic clank of a whetstone against a scythe, that came to them from the cart, ceased. One of the peasants got up and came towards the carriage. "Well, you are slow!" the counting house clerk shouted angrily to the peasant who was stepping slowly with his bare feet over the ruts of the rough dry road. "Come along, do!" A curly-headed old man with a bit of bast tied round his hair, and his bent back dark with perspiration, came towards the carriage, quickening his steps, and took hold of the mud-guard with his sunburnt hand. "Vozdvizhenskoe, the manor house? the count's?" he repeated; "go on to the end of this track. Then turn to the left. Straight along the avenue and you'll come right upon it. But whom do you want? The count himself?" "Well, are they at home, my good man?" Darya Alexandrovna said vaguely, not knowing how to ask about Anna, even of this peasant. "At home for sure," said the peasant, shifting from one bare foot to the other, and leaving a distinct print of five toes and a heel in the dust. "Sure to be at home," he repeated, evidently eager to talk. "Only yesterday visitors arrived. There's a sight of visitors come. What do you want?" He turned round and called to a lad, who was shouting something to him from the cart. "Oh! They all rode by here not long since, to look at a reaping machine. They'll be home by now. And who will you be belonging to?..." "We've come a long way," said the coachman, climbing onto the box. "So it's not far?" "I tell you, it's just here. As soon as you get out..." he said, keeping hold all the while of the carriage. A healthy-looking, broad-shouldered young fellow came up too. "What, is it laborers they want for the harvest?" he asked. "I don't know, my boy." "So you keep to the left, and you'll come right on it," said the peasant, unmistakably loth to let the travelers go, and eager to converse. The coachman started the horses, but they were only just turning off when the peasant shouted: "Stop! Hi, friend! Stop!" called the two voices. The coachman stopped. "They're coming! They're yonder!" shouted the peasant. "See what a turn-out!" he said, pointing to four persons on horseback, and two in a _char-a-banc_, coming along the road. They were Vronsky with a jockey, Veslovsky and Anna on horseback, and Princess Varvara and Sviazhsky in the _char-a-banc_. They had gone out to look at the working of a new reaping machine. When the carriage stopped, the party on horseback were coming at a walking pace. Anna was in front beside Veslovsky. Anna, quietly walking her horse, a sturdy English cob with cropped mane and short tail, her beautiful head with her black hair straying loose under her high hat, her full shoulders, her slender waist in her black riding habit, and all the ease and grace of her deportment, impressed Dolly. For the first minute it seemed to her unsuitable for Anna to be on horseback. The conception of riding on horseback for a lady was, in Darya Alexandrovna's mind, associated with ideas of youthful flirtation and frivolity, which, in her opinion, was unbecoming in Anna's position. But when she had scrutinized her, seeing her closer, she was at once reconciled to her riding. In spite of her elegance, everything was so simple, quiet, and dignified in the attitude, the dress and the movements of Anna, that nothing could have been more natural. Beside Anna, on a hot-looking gray cavalry horse, was Vassenka Veslovsky in his Scotch cap with floating ribbons, his stout legs stretched out in front, obviously pleased with his own appearance. Darya Alexandrovna could not suppress a good-humored smile as she recognized him. Behind rode Vronsky on a dark bay mare, obviously heated from galloping. He was holding her in, pulling at the reins. After him rode a little man in the dress of a jockey. Sviazhsky and Princess Varvara in a new _char-a-banc_ with a big, raven-black trotting horse, overtook the party on horseback. Anna's face suddenly beamed with a joyful smile at the instant when, in the little figure huddled in a corner of the old carriage, she recognized Dolly. She uttered a cry, started in the saddle, and set her horse into a gallop. On reaching the carriage she jumped off without assistance, and holding up her riding habit, she ran up to greet Dolly. "I thought it was you and dared not think it. How delightful! You can't fancy how glad I am!" she said, at one moment pressing her face against Dolly and kissing her, and at the next holding her off and examining her with a smile. "Here's a delightful surprise, Alexey!" she said, looking round at Vronsky, who had dismounted, and was walking towards them. Vronsky, taking off his tall gray hat, went up to Dolly. "You wouldn't believe how glad we are to see you," he said, giving peculiar significance to the words, and showing his strong white teeth in a smile. Vassenka Veslovsky, without getting off his horse, took off his cap and greeted the visitor by gleefully waving the ribbons over his head. "That's Princess Varvara," Anna said in reply to a glance of inquiry from Dolly as the _char-a-banc_ drove up. "Ah!" said Darya Alexandrovna, and unconsciously her face betrayed her dissatisfaction. Princess Varvara was her husband's aunt, and she had long known her, and did not respect her. She knew that Princess Varvara had passed her whole life toadying on her rich relations, but that she should now be sponging on Vronsky, a man who was nothing to her, mortified Dolly on account of her kinship with her husband. Anna noticed Dolly's expression, and was disconcerted by it. She blushed, dropped her riding habit, and stumbled over it. Darya Alexandrovna went up to the _char-a-banc_ and coldly greeted Princess Varvara. Sviazhsky too she knew. He inquired how his queer friend with the young wife was, and running his eyes over the ill-matched horses and the carriage with its patched mud-guards, proposed to the ladies that they should get into the _char-a-banc_. "And I'll get into this vehicle," he said. "The horse is quiet, and the princess drives capitally." "No, stay as you were," said Anna, coming up, "and we'll go in the carriage," and taking Dolly's arm, she drew her away. Darya Alexandrovna's eyes were fairly dazzled by the elegant carriage of a pattern she had never seen before, the splendid horses, and the elegant and gorgeous people surrounding her. But what struck her most of all was the change that had taken place in Anna, whom she knew so well and loved. Any other woman, a less close observer, not knowing Anna before, or not having thought as Darya Alexandrovna had been thinking on the road, would not have noticed anything special in Anna. But now Dolly was struck by that temporary beauty, which is only found in women during the moments of love, and which she saw now in Anna's face. Everything in her face, the clearly marked dimples in her cheeks and chin, the line of her lips, the smile which, as it were, fluttered about her face, the brilliance of her eyes, the grace and rapidity of her movements, the fulness of the notes of her voice, even the manner in which, with a sort of angry friendliness, she answered Veslovsky when he asked permission to get on her cob, so as to teach it to gallop with the right leg foremost--it was all peculiarly fascinating, and it seemed as if she were herself aware of it, and rejoicing in it. When both the women were seated in the carriage, a sudden embarrassment came over both of them. Anna was disconcerted by the intent look of inquiry Dolly fixed upon her. Dolly was embarrassed because after Sviazhsky's phrase about "this vehicle," she could not help feeling ashamed of the dirty old carriage in which Anna was sitting with her. The coachman Philip and the counting house clerk were experiencing the same sensation. The counting house clerk, to conceal his confusion, busied himself settling the ladies, but Philip the coachman became sullen, and was bracing himself not to be overawed in future by this external superiority. He smiled ironically, looking at the raven horse, and was already deciding in his own mind that this smart trotter in the _char-a-banc_ was only good for _promenade_, and wouldn't do thirty miles straight off in the heat. The peasants had all got up from the cart and were inquisitively and mirthfully staring at the meeting of the friends, making their comments on it. "They're pleased, too; haven't seen each other for a long while," said the curly-headed old man with the bast round his hair. "I say, Uncle Gerasim, if we could take that raven horse now, to cart the corn, that 'ud be quick work!" "Look-ee! Is that a woman in breeches?" said one of them, pointing to Vassenka Veslovsky sitting in a side saddle. "Nay, a man! See how smartly he's going it!" "Eh, lads! seems we're not going to sleep, then?" "What chance of sleep today!" said the old man, with a sidelong look at the sun. "Midday's past, look-ee! Get your hooks, and come along!" Chapter 18 Anna looked at Dolly's thin, care-worn face, with its wrinkles filled with dust from the road, and she was on the point of saying what she was thinking, that is, that Dolly had got thinner. But, conscious that she herself had grown handsomer, and that Dolly's eyes were telling her so, she sighed and began to speak about herself. "You are looking at me," she said, "and wondering how I can be happy in my position? Well! it's shameful to confess, but I ... I'm inexcusably happy. Something magical has happened to me, like a dream, when you're frightened, panic-stricken, and all of a sudden you wake up and all the horrors are no more. I have waked up. I have lived through the misery, the dread, and now for a long while past, especially since we've been here, I've been so happy!..." she said, with a timid smile of inquiry looking at Dolly. "How glad I am!" said Dolly smiling, involuntarily speaking more coldly than she wanted to. "I'm very glad for you. Why haven't you written to me?" "Why?... Because I hadn't the courage.... You forget my position..." "To me? Hadn't the courage? If you knew how I ... I look at..." Darya Alexandrovna wanted to express her thoughts of the morning, but for some reason it seemed to her now out of place to do so. "But of that we'll talk later. What's this, what are all these buildings?" she asked, wanting to change the conversation and pointing to the red and green roofs that came into view behind the green hedges of acacia and lilac. "Quite a little town." But Anna did not answer. "No, no! How do you look at my position, what do you think of it?" she asked. "I consider..." Darya Alexandrovna was beginning, but at that instant Vassenka Veslovsky, having brought the cob to gallop with the right leg foremost, galloped past them, bumping heavily up and down in his short jacket on the chamois leather of the side saddle. "He's doing it, Anna Arkadyevna!" he shouted. Anna did not even glance at him; but again it seemed to Darya Alexandrovna out of place to enter upon such a long conversation in the carriage, and so she cut short her thought. "I don't think anything," she said, "but I always loved you, and if one loves anyone, one loves the whole person, just as they are and not as one would like them to be...." Anna, taking her eyes off her friend's face and dropping her eyelids (this was a new habit Dolly had not seen in her before), pondered, trying to penetrate the full significance of the words. And obviously interpreting them as she would have wished, she glanced at Dolly. "If you had any sins," she said, "they would all be forgiven you for your coming to see me and these words." And Dolly saw that tears stood in her eyes. She pressed Anna's hand in silence. "Well, what are these buildings? How many there are of them!" After a moment's silence she repeated her question. "These are the servants' houses, barns, and stables," answered Anna. "And there the park begins. It had all gone to ruin, but Alexey had everything renewed. He is very fond of this place, and, what I never expected, he has become intensely interested in looking after it. But his is such a rich nature! Whatever he takes up, he does splendidly. So far from being bored by it, he works with passionate interest. He--with his temperament as I know it--he has become careful and businesslike, a first-rate manager, he positively reckons every penny in his management of the land. But only in that. When it's a question of tens of thousands, he doesn't think of money." She spoke with that gleefully sly smile with which women often talk of the secret characteristics only known to them--of those they love. "Do you see that big building? that's the new hospital. I believe it will cost over a hundred thousand; that's his hobby just now. And do you know how it all came about? The peasants asked him for some meadowland, I think it was, at a cheaper rate, and he refused, and I accused him of being miserly. Of course it was not really because of that, but everything together, he began this hospital to prove, do you see, that he was not miserly about money. _C'est une petitesse_, if you like, but I love him all the more for it. And now you'll see the house in a moment. It was his grandfather's house, and he has had nothing changed outside." "How beautiful!" said Dolly, looking with involuntary admiration at the handsome house with columns, standing out among the different-colored greens of the old trees in the garden. "Isn't it fine? And from the house, from the top, the view is wonderful." They drove into a courtyard strewn with gravel and bright with flowers, in which two laborers were at work putting an edging of stones round the light mould of a flower bed, and drew up in a covered entry. "Ah, they're here already!" said Anna, looking at the saddle horses, which were just being led away from the steps. "It is a nice horse, isn't it? It's my cob; my favorite. Lead him here and bring me some sugar. Where is the count?" she inquired of two smart footmen who darted out. "Ah, there he is!" she said, seeing Vronsky coming to meet her with Veslovsky. "Where are you going to put the princess?" said Vronsky in French, addressing Anna, and without waiting for a reply, he once more greeted Darya Alexandrovna, and this time he kissed her hand. "I think the big balcony room." "Oh, no, that's too far off! Better in the corner room, we shall see each other more. Come, let's go up," said Anna, as she gave her favorite horse the sugar the footman had brought her. "_Et vous oubliez votre devoir_," she said to Veslovsky, who came out too on the steps. "_Pardon, j'en ai tout plein les poches_," he answered, smiling, putting his fingers in his waistcoat pocket. "_Mais vous venez trop tard_," she said, rubbing her handkerchief on her hand, which the horse had made wet in taking the sugar. Anna turned to Dolly. "You can stay some time? For one day only? That's impossible!" "I promised to be back, and the children..." said Dolly, feeling embarrassed both because she had to get her bag out of the carriage, and because she knew her face must be covered with dust. "No, Dolly, darling!... Well, we'll see. Come along, come along!" and Anna led Dolly to her room. That room was not the smart guest chamber Vronsky had suggested, but the one of which Anna had said that Dolly would excuse it. And this room, for which excuse was needed, was more full of luxury than any in which Dolly had ever stayed, a luxury that reminded her of the best hotels abroad. "Well, darling, how happy I am!" Anna said, sitting down in her riding habit for a moment beside Dolly. "Tell me about all of you. Stiva I had only a glimpse of, and he cannot tell one about the children. How is my favorite, Tanya? Quite a big girl, I expect?" "Yes, she's very tall," Darya Alexandrovna answered shortly, surprised herself that she should respond so coolly about her children. "We are having a delightful stay at the Levins'," she added. "Oh, if I had known," said Anna, "that you do not despise me!... You might have all come to us. Stiva's an old friend and a great friend of Alexey's, you know," she added, and suddenly she blushed. "Yes, but we are all..." Dolly answered in confusion. "But in my delight I'm talking nonsense. The one thing, darling, is that I am so glad to have you!" said Anna, kissing her again. "You haven't told me yet how and what you think about me, and I keep wanting to know. But I'm glad you will see me as I am. The chief thing I shouldn't like would be for people to imagine I want to prove anything. I don't want to prove anything; I merely want to live, to do no one harm but myself. I have the right to do that, haven't I? But it is a big subject, and we'll talk over everything properly later. Now I'll go and dress and send a maid to you." Chapter 19 Left alone, Darya Alexandrovna, with a good housewife's eye, scanned her room. All she had seen in entering the house and walking through it, and all she saw now in her room, gave her an impression of wealth and sumptuousness and of that modern European luxury of which she had only read in English novels, but had never seen in Russia and in the country. Everything was new from the new French hangings on the walls to the carpet which covered the whole floor. The bed had a spring mattress, and a special sort of bolster and silk pillowcases on the little pillows. The marble washstand, the dressing table, the little sofa, the tables, the bronze clock on the chimney piece, the window curtains, and the _portieres_ were all new and expensive. The smart maid, who came in to offer her services, with her hair done up high, and a gown more fashionable than Dolly's, was as new and expensive as the whole room. Darya Alexandrovna liked her neatness, her deferential and obliging manners, but she felt ill at ease with her. She felt ashamed of her seeing the patched dressing jacket that had unluckily been packed by mistake for her. She was ashamed of the very patches and darned places of which she had been so proud at home. At home it had been so clear that for six dressing jackets there would be needed twenty-four yards of nainsook at sixteen pence the yard, which was a matter of thirty shillings besides the cutting-out and making, and these thirty shillings had been saved. But before the maid she felt, if not exactly ashamed, at least uncomfortable. Darya Alexandrovna had a great sense of relief when Annushka, whom she had known for years, walked in. The smart maid was sent for to go to her mistress, and Annushka remained with Darya Alexandrovna. Annushka was obviously much pleased at that lady's arrival, and began to chatter away without a pause. Dolly observed that she was longing to express her opinion in regard to her mistress's position, especially as to the love and devotion of the count to Anna Arkadyevna, but Dolly carefully interrupted her whenever she began to speak about this. "I grew up with Anna Arkadyevna; my lady's dearer to me than anything. Well, it's not for us to judge. And, to be sure, there seems so much love..." "Kindly pour out the water for me to wash now, please," Darya Alexandrovna cut her short. "Certainly. We've two women kept specially for washing small things, but most of the linen's done by machinery. The count goes into everything himself. Ah, what a husband!..." Dolly was glad when Anna came in, and by her entrance put a stop to Annushka's gossip. Anna had put on a very simple batiste gown. Dolly scrutinized that simple gown attentively. She knew what it meant, and the price at which such simplicity was obtained. "An old friend," said Anna of Annushka. Anna was not embarrassed now. She was perfectly composed and at ease. Dolly saw that she had now completely recovered from the impression her arrival had made on her, and had assumed that superficial, careless tone which, as it were, closed the door on that compartment in which her deeper feelings and ideas were kept. "Well, Anna, and how is your little girl?" asked Dolly. "Annie?" (This was what she called her little daughter Anna.) "Very well. She has got on wonderfully. Would you like to see her? Come, I'll show her to you. We had a terrible bother," she began telling her, "over nurses. We had an Italian wet-nurse. A good creature, but so stupid! We wanted to get rid of her, but the baby is so used to her that we've gone on keeping her still." "But how have you managed?..." Dolly was beginning a question as to what name the little girl would have; but noticing a sudden frown on Anna's face, she changed the drift of her question. "How did you manage? have you weaned her yet?" But Anna had understood. "You didn't mean to ask that? You meant to ask about her surname. Yes? That worries Alexey. She has no name--that is, she's a Karenina," said Anna, dropping her eyelids till nothing could be seen but the eyelashes meeting. "But we'll talk about all that later," her face suddenly brightening. "Come, I'll show you her. _Elle est tres gentille_. She crawls now." In the nursery the luxury which had impressed Dolly in the whole house struck her still more. There were little go-carts ordered from England, and appliances for learning to walk, and a sofa after the fashion of a billiard table, purposely constructed for crawling, and swings and baths, all of special pattern, and modern. They were all English, solid, and of good make, and obviously very expensive. The room was large, and very light and lofty. When they went in, the baby, with nothing on but her little smock, was sitting in a little elbow chair at the table, having her dinner of broth, which she was spilling all over her little chest. The baby was being fed, and the Russian nursery maid was evidently sharing her meal. Neither the wet-nurse nor the head nurse were there; they were in the next room, from which came the sound of their conversation in the queer French which was their only means of communication. Hearing Anna's voice, a smart, tall, English nurse with a disagreeable face and a dissolute expression walked in at the door, hurriedly shaking her fair curls, and immediately began to defend herself though Anna had not found fault with her. At every word Anna said, the English nurse said hurriedly several times, "Yes, my lady." The rosy baby with her black eyebrows and hair, her sturdy red little body with tight goose-flesh skin, delighted Darya Alexandrovna in spite of the cross expression with which she stared at the stranger. She positively envied the baby's healthy appearance. She was delighted, too, at the baby's crawling. Not one of her own children had crawled like that. When the baby was put on the carpet and its little dress tucked up behind, it was wonderfully charming. Looking round like some little wild animal at the grown-up big people with her bright black eyes, she smiled, unmistakably pleased at their admiring her, and holding her legs sideways, she pressed vigorously on her arms, and rapidly drew her whole back up after, and then made another step forward with her little arms. But the whole atmosphere of the nursery, and especially the English nurse, Darya Alexandrovna did not like at all. It was only on the supposition that no good nurse would have entered so irregular a household as Anna's that Darya Alexandrovna could explain to herself how Anna with her insight into people could take such an unprepossessing, disreputable-looking woman as nurse to her child. Besides, from a few words that were dropped, Darya Alexandrovna saw at once that Anna, the two nurses, and the child had no common existence, and that the mother's visit was something exceptional. Anna wanted to get the baby her plaything, and could not find it. Most amazing of all was the fact that on being asked how many teeth the baby had, Anna answered wrong, and knew nothing about the two last teeth. "I sometimes feel sorry I'm so superfluous here," said Anna, going out of the nursery and holding up her skirt so as to escape the plaything standing in the doorway. "It was very different with my first child." "I expected it to be the other way," said Darya Alexandrovna shyly. "Oh, no! By the way, do you know I saw Seryozha?" said Anna, screwing up her eyes, as though looking at something far away. "But we'll talk about that later. You wouldn't believe it, I'm like a hungry beggar woman when a full dinner is set before her, and she does not know what to begin on first. The dinner is you, and the talks I have before me with you, which I could never have with anyone else; and I don't know which subject to begin upon first. _Mais je ne vous ferai grace de rien_. I must have everything out with you." "Oh, I ought to give you a sketch of the company you will meet with us," she went on. "I'll begin with the ladies. Princess Varvara--you know her, and I know your opinion and Stiva's about her. Stiva says the whole aim of her existence is to prove her superiority over Auntie Katerina Pavlovna: that's all true; but she's a good-natured woman, and I am so grateful to her. In Petersburg there was a moment when a chaperon was absolutely essential for me. Then she turned up. But really she is good-natured. She did a great deal to alleviate my position. I see you don't understand all the difficulty of my position ... there in Petersburg," she added. "Here I'm perfectly at ease and happy. Well, of that later on, though. Then Sviazhsky--he's the marshal of the district, and he's a very good sort of a man, but he wants to get something out of Alexey. You understand, with his property, now that we are settled in the country, Alexey can exercise great influence. Then there's Tushkevitch--you have seen him, you know--Betsy's admirer. Now he's been thrown over and he's come to see us. As Alexey says, he's one of those people who are very pleasant if one accepts them for what they try to appear to be, _et puis il est comme il faut_, as Princess Varvara says. Then Veslovsky ... you know him. A very nice boy," she said, and a sly smile curved her lips. "What's this wild story about him and the Levins? Veslovsky told Alexey about it, and we don't believe it. _Il est tres gentil et naif_," she said again with the same smile. "Men need occupation, and Alexey needs a circle, so I value all these people. We have to have the house lively and gay, so that Alexey may not long for any novelty. Then you'll see the steward--a German, a very good fellow, and he understands his work. Alexey has a very high opinion of him. Then the doctor, a young man, not quite a Nihilist perhaps, but you know, eats with his knife ... but a very good doctor. Then the architect.... _Une petite cour!_" Chapter 20 "Here's Dolly for you, princess, you were so anxious to see her," said Anna, coming out with Darya Alexandrovna onto the stone terrace where Princess Varvara was sitting in the shade at an embroidery frame, working at a cover for Count Alexey Kirillovitch's easy chair. "She says she doesn't want anything before dinner, but please order some lunch for her, and I'll go and look for Alexey and bring them all in." Princess Varvara gave Dolly a cordial and rather patronizing reception, and began at once explaining to her that she was living with Anna because she had always cared more for her than her sister Katerina Pavlovna, the aunt that had brought Anna up, and that now, when every one had abandoned Anna, she thought it her duty to help her in this most difficult period of transition. "Her husband will give her a divorce, and then I shall go back to my solitude; but now I can be of use, and I am doing my duty, however difficult it may be for me--not like some other people. And how sweet it is of you, how right of you to have come! They live like the best of married couples; it's for God to judge them, not for us. And didn't Biryuzovsky and Madame Avenieva ... and Sam Nikandrov, and Vassiliev and Madame Mamonova, and Liza Neptunova... Did no one say anything about them? And it has ended by their being received by everyone. And then, _c'est un interieur si joli, si comme il faut. Tout-a-fait a l'anglaise. On se reunit le matin au breakfast, et puis on se separe._ Everyone does as he pleases till dinnertime. Dinner at seven o'clock. Stiva did very rightly to send you. He needs their support. You know that through his mother and brother he can do anything. And then they do so much good. He didn't tell you about his hospital? _Ce sera admirable_--everything from Paris." Their conversation was interrupted by Anna, who had found the men of the party in the billiard room, and returned with them to the terrace. There was still a long time before the dinner-hour, it was exquisite weather, and so several different methods of spending the next two hours were proposed. There were very many methods of passing the time at Vozdvizhenskoe, and these were all unlike those in use at Pokrovskoe. "_Une partie de lawn-tennis,_" Veslovsky proposed, with his handsome smile. "We'll be partners again, Anna Arkadyevna." "No, it's too hot; better stroll about the garden and have a row in the boat, show Darya Alexandrovna the river banks." Vronsky proposed. "I agree to anything," said Sviazhsky. "I imagine that what Dolly would like best would be a stroll--wouldn't you? And then the boat, perhaps," said Anna. So it was decided. Veslovsky and Tushkevitch went off to the bathing place, promising to get the boat ready and to wait there for them. They walked along the path in two couples, Anna with Sviazhsky, and Dolly with Vronsky. Dolly was a little embarrassed and anxious in the new surroundings in which she found herself. Abstractly, theoretically, she did not merely justify, she positively approved of Anna's conduct. As is indeed not unfrequent with women of unimpeachable virtue, weary of the monotony of respectable existence, at a distance she not only excused illicit love, she positively envied it. Besides, she loved Anna with all her heart. But seeing Anna in actual life among these strangers, with this fashionable tone that was so new to Darya Alexandrovna, she felt ill at ease. What she disliked particularly was seeing Princess Varvara ready to overlook everything for the sake of the comforts she enjoyed. As a general principle, abstractly, Dolly approved of Anna's action; but to see the man for whose sake her action had been taken was disagreeable to her. Moreover, she had never liked Vronsky. She thought him very proud, and saw nothing in him of which he could be proud except his wealth. But against her own will, here in his own house, he overawed her more than ever, and she could not be at ease with him. She felt with him the same feeling she had had with the maid about her dressing jacket. Just as with the maid she had felt not exactly ashamed, but embarrassed at her darns, so she felt with him not exactly ashamed, but embarrassed at herself. Dolly was ill at ease, and tried to find a subject of conversation. Even though she supposed that, through his pride, praise of his house and garden would be sure to be disagreeable to him, she did all the same tell him how much she liked his house. "Yes, it's a very fine building, and in the good old-fashioned style," he said. "I like so much the court in front of the steps. Was that always so?" "Oh, no!" he said, and his face beamed with pleasure. "If you could only have seen that court last spring!" And he began, at first rather diffidently, but more and more carried away by the subject as he went on, to draw her attention to the various details of the decoration of his house and garden. It was evident that, having devoted a great deal of trouble to improve and beautify his home, Vronsky felt a need to show off the improvements to a new person, and was genuinely delighted at Darya Alexandrovna's praise. "If you would care to look at the hospital, and are not tired, indeed, it's not far. Shall we go?" he said, glancing into her face to convince himself that she was not bored. "Are you coming, Anna?" he turned to her. "We will come, won't we?" she said, addressing Sviazhsky. "_Mais il ne faut pas laisser le pauvre Veslovsky et Tushkevitch se morfondre la dans le bateau._ We must send and tell them." "Yes, this is a monument he is setting up here," said Anna, turning to Dolly with that sly smile of comprehension with which she had previously talked about the hospital. "Oh, it's a work of real importance!" said Sviazhsky. But to show he was not trying to ingratiate himself with Vronsky, he promptly added some slightly critical remarks. "I wonder, though, count," he said, "that while you do so much for the health of the peasants, you take so little interest in the schools." "_C'est devenu tellement commun les ecoles,_" said Vronsky. "You understand it's not on that account, but it just happens so, my interest has been diverted elsewhere. This way then to the hospital," he said to Darya Alexandrovna, pointing to a turning out of the avenue. The ladies put up their parasols and turned into the side path. After going down several turnings, and going through a little gate, Darya Alexandrovna saw standing on rising ground before her a large pretentious-looking red building, almost finished. The iron roof, which was not yet painted, shone with dazzling brightness in the sunshine. Beside the finished building another had been begun, surrounded by scaffolding. Workmen in aprons, standing on scaffolds, were laying bricks, pouring mortar out of vats, and smoothing it with trowels. "How quickly work gets done with you!" said Sviazhsky. "When I was here last time the roof was not on." "By the autumn it will all be ready. Inside almost everything is done," said Anna. "And what's this new building?" "That's the house for the doctor and the dispensary," answered Vronsky, seeing the architect in a short jacket coming towards him; and excusing himself to the ladies, he went to meet him. Going round a hole where the workmen were slaking lime, he stood still with the architect and began talking rather warmly. "The front is still too low," he said to Anna, who had asked what was the matter. "I said the foundation ought to be raised," said Anna. "Yes, of course it would have been much better, Anna Arkadyevna," said the architect, "but now it's too late." "Yes, I take a great interest in it," Anna answered Sviazhsky, who was expressing his surprise at her knowledge of architecture. "This new building ought to have been in harmony with the hospital. It was an afterthought, and was begun without a plan." Vronsky, having finished his talk with the architect, joined the ladies, and led them inside the hospital. Although they were still at work on the cornices outside and were painting on the ground floor, upstairs almost all the rooms were finished. Going up the broad cast-iron staircase to the landing, they walked into the first large room. The walls were stuccoed to look like marble, the huge plate-glass windows were already in, only the parquet floor was not yet finished, and the carpenters, who were planing a block of it, left their work, taking off the bands that fastened their hair, to greet the gentry. "This is the reception room," said Vronsky. "Here there will be a desk, tables, and benches, and nothing more." "This way; let us go in here. Don't go near the window," said Anna, trying the paint to see if it were dry. "Alexey, the paint's dry already," she added. From the reception room they went into the corridor. Here Vronsky showed them the mechanism for ventilation on a novel system. Then he showed them marble baths, and beds with extraordinary springs. Then he showed them the wards one after another, the storeroom, the linen room, then the heating stove of a new pattern, then the trolleys, which would make no noise as they carried everything needed along the corridors, and many other things. Sviazhsky, as a connoisseur in the latest mechanical improvements, appreciated everything fully. Dolly simply wondered at all she had not seen before, and, anxious to understand it all, made minute inquiries about everything, which gave Vronsky great satisfaction. "Yes, I imagine that this will be the solitary example of a properly fitted hospital in Russia," said Sviazhsky. "And won't you have a lying-in ward?" asked Dolly. "That's so much needed in the country. I have often..." In spite of his usual courtesy, Vronsky interrupted her. "This is not a lying-in home, but a hospital for the sick, and is intended for all diseases, except infectious complaints," he said. "Ah! look at this," and he rolled up to Darya Alexandrovna an invalid chair that had just been ordered for the convalescents. "Look." He sat down in the chair and began moving it. "The patient can't walk--still too weak, perhaps, or something wrong with his legs, but he must have air, and he moves, rolls himself along...." Darya Alexandrovna was interested by everything. She liked everything very much, but most of all she liked Vronsky himself with his natural, simple-hearted eagerness. "Yes, he's a very nice, good man," she thought several times, not hearing what he said, but looking at him and penetrating into his expression, while she mentally put herself in Anna's place. She liked him so much just now with his eager interest that she saw how Anna could be in love with him. Chapter 21 "No, I think the princess is tired, and horses don't interest her," Vronsky said to Anna, who wanted to go on to the stables, where Sviazhsky wished to see the new stallion. "You go on, while I escort the princess home, and we'll have a little talk," he said, "if you would like that?" he added, turning to her. "I know nothing about horses, and I shall be delighted," answered Darya Alexandrovna, rather astonished. She saw by Vronsky's face that he wanted something from her. She was not mistaken. As soon as they had passed through the little gate back into the garden, he looked in the direction Anna had taken, and having made sure that she could neither hear nor see them, he began: "You guess that I have something I want to say to you," he said, looking at her with laughing eyes. "I am not wrong in believing you to be a friend of Anna's." He took off his hat, and taking out his handkerchief, wiped his head, which was growing bald. Darya Alexandrovna made no answer, and merely stared at him with dismay. When she was left alone with him, she suddenly felt afraid; his laughing eyes and stern expression scared her. The most diverse suppositions as to what he was about to speak of to her flashed into her brain. "He is going to beg me to come to stay with them with the children, and I shall have to refuse; or to create a set that will receive Anna in Moscow.... Or isn't it Vassenka Veslovsky and his relations with Anna? Or perhaps about Kitty, that he feels he was to blame?" All her conjectures were unpleasant, but she did not guess what he really wanted to talk about to her. "You have so much influence with Anna, she is so fond of you," he said; "do help me." Darya Alexandrovna looked with timid inquiry into his energetic face, which under the lime-trees was continually being lighted up in patches by the sunshine, and then passing into complete shadow again. She waited for him to say more, but he walked in silence beside her, scratching with his cane in the gravel. "You have come to see us, you, the only woman of Anna's former friends--I don't count Princess Varvara--but I know that you have done this not because you regard our position as normal, but because, understanding all the difficulty of the position, you still love her and want to be a help to her. Have I understood you rightly?" he asked, looking round at her. "Oh, yes," answered Darya Alexandrovna, putting down her sunshade, "but..." "No," he broke in, and unconsciously, oblivious of the awkward position into which he was putting his companion, he stopped abruptly, so that she had to stop short too. "No one feels more deeply and intensely than I do all the difficulty of Anna's position; and that you may well understand, if you do me the honor of supposing I have any heart. I am to blame for that position, and that is why I feel it." "I understand," said Darya Alexandrovna, involuntarily admiring the sincerity and firmness with which he said this. "But just because you feel yourself responsible, you exaggerate it, I am afraid," she said. "Her position in the world is difficult, I can well understand." "In the world it is hell!" he brought out quickly, frowning darkly. "You can't imagine moral sufferings greater than what she went through in Petersburg in that fortnight ... and I beg you to believe it." "Yes, but here, so long as neither Anna ... nor you miss society..." "Society!" he said contemptuously, "how could I miss society?" "So far--and it may be so always--you are happy and at peace. I see in Anna that she is happy, perfectly happy, she has had time to tell me so much already," said Darya Alexandrovna, smiling; and involuntarily, as she said this, at the same moment a doubt entered her mind whether Anna really were happy. But Vronsky, it appeared, had no doubts on that score. "Yes, yes," he said, "I know that she has revived after all her sufferings; she is happy. She is happy in the present. But I?... I am afraid of what is before us ... I beg your pardon, you would like to walk on?" "No, I don't mind." "Well, then, let us sit here." Darya Alexandrovna sat down on a garden seat in a corner of the avenue. He stood up facing her. "I see that she is happy," he repeated, and the doubt whether she were happy sank more deeply into Darya Alexandrovna's mind. "But can it last? Whether we have acted rightly or wrongly is another question, but the die is cast," he said, passing from Russian to French, "and we are bound together for life. We are united by all the ties of love that we hold most sacred. We have a child, we may have other children. But the law and all the conditions of our position are such that thousands of complications arise which she does not see and does not want to see. And that one can well understand. But I can't help seeing them. My daughter is by law not my daughter, but Karenin's. I cannot bear this falsity!" he said, with a vigorous gesture of refusal, and he looked with gloomy inquiry towards Darya Alexandrovna. She made no answer, but simply gazed at him. He went on: "One day a son may be born, my son, and he will be legally a Karenin; he will not be the heir of my name nor of my property, and however happy we may be in our home life and however many children we may have, there will be no real tie between us. They will be Karenins. You can understand the bitterness and horror of this position! I have tried to speak of this to Anna. It irritates her. She does not understand, and to her I cannot speak plainly of all this. Now look at another side. I am happy, happy in her love, but I must have occupation. I have found occupation, and am proud of what I am doing and consider it nobler than the pursuits of my former companions at court and in the army. And most certainly I would not change the work I am doing for theirs. I am working here, settled in my own place, and I am happy and contented, and we need nothing more to make us happy. I love my work here. _Ce n'est pas un pis-aller,_ on the contrary..." Darya Alexandrovna noticed that at this point in his explanation he grew confused, and she did not quite understand this digression, but she felt that having once begun to speak of matters near his heart, of which he could not speak to Anna, he was now making a clean breast of everything, and that the question of his pursuits in the country fell into the same category of matters near his heart, as the question of his relations with Anna. "Well, I will go on," he said, collecting himself. "The great thing is that as I work I want to have a conviction that what I am doing will not die with me, that I shall have heirs to come after me,--and this I have not. Conceive the position of a man who knows that his children, the children of the woman he loves, will not be his, but will belong to someone who hates them and cares nothing about them! It is awful!" He paused, evidently much moved. "Yes, indeed, I see that. But what can Anna do?" queried Darya Alexandrovna. "Yes, that brings me to the object of my conversation," he said, calming himself with an effort. "Anna can, it depends on her.... Even to petition the Tsar for legitimization, a divorce is essential. And that depends on Anna. Her husband agreed to a divorce--at that time your husband had arranged it completely. And now, I know, he would not refuse it. It is only a matter of writing to him. He said plainly at that time that if she expressed the desire, he would not refuse. Of course," he said gloomily, "it is one of those Pharisaical cruelties of which only such heartless men are capable. He knows what agony any recollection of him must give her, and knowing her, he must have a letter from her. I can understand that it is agony to her. But the matter is of such importance, that one must _passer pardessus toutes ces finesses de sentiment. Il y va du bonheur et de l'existence d'Anne et de ses enfants._ I won't speak of myself, though it's hard for me, very hard," he said, with an expression as though he were threatening someone for its being hard for him. "And so it is, princess, that I am shamelessly clutching at you as an anchor of salvation. Help me to persuade her to write to him and ask for a divorce." "Yes, of course," Darya Alexandrovna said dreamily, as she vividly recalled her last interview with Alexey Alexandrovitch. "Yes, of course," she repeated with decision, thinking of Anna. "Use your influence with her, make her write. I don't like--I'm almost unable to speak about this to her." "Very well, I will talk to her. But how is it she does not think of it herself?" said Darya Alexandrovna, and for some reason she suddenly at that point recalled Anna's strange new habit of half-closing her eyes. And she remembered that Anna drooped her eyelids just when the deeper questions of life were touched upon. "Just as though she half-shut her eyes to her own life, so as not to see everything," thought Dolly. "Yes, indeed, for my own sake and for hers I will talk to her," Dolly said in reply to his look of gratitude. They got up and walked to the house. Chapter 22 When Anna found Dolly at home before her, she looked intently in her eyes, as though questioning her about the talk she had had with Vronsky, but she made no inquiry in words. "I believe it's dinner time," she said. "We've not seen each other at all yet. I am reckoning on the evening. Now I want to go and dress. I expect you do too; we all got splashed at the buildings." Dolly went to her room and she felt amused. To change her dress was impossible, for she had already put on her best dress. But in order to signify in some way her preparation for dinner, she asked the maid to brush her dress, changed her cuffs and tie, and put some lace on her head. "This is all I can do," she said with a smile to Anna, who came in to her in a third dress, again of extreme simplicity. "Yes, we are too formal here," she said, as it were apologizing for her magnificence. "Alexey is delighted at your visit, as he rarely is at anything. He has completely lost his heart to you," she added. "You're not tired?" There was no time for talking about anything before dinner. Going into the drawing room they found Princess Varvara already there, and the gentlemen of the party in black frock-coats. The architect wore a swallow-tail coat. Vronsky presented the doctor and the steward to his guest. The architect he had already introduced to her at the hospital. A stout butler, resplendent with a smoothly shaven round chin and a starched white cravat, announced that dinner was ready, and the ladies got up. Vronsky asked Sviazhsky to take in Anna Arkadyevna, and himself offered his arm to Dolly. Veslovsky was before Tushkevitch in offering his arm to Princess Varvara, so that Tushkevitch with the steward and the doctor walked in alone. The dinner, the dining room, the service, the waiting at table, the wine, and the food, were not simply in keeping with the general tone of modern luxury throughout all the house, but seemed even more sumptuous and modern. Darya Alexandrovna watched this luxury which was novel to her, and as a good housekeeper used to managing a household--although she never dreamed of adapting anything she saw to her own household, as it was all in a style of luxury far above her own manner of living--she could not help scrutinizing every detail, and wondering how and by whom it was all done. Vassenka Veslovsky, her husband, and even Sviazhsky, and many other people she knew, would never have considered this question, and would have readily believed what every well-bred host tries to make his guests feel, that is, that all that is well-ordered in his house has cost him, the host, no trouble whatever, but comes of itself. Darya Alexandrovna was well aware that even porridge for the children's breakfast does not come of itself, and that therefore, where so complicated and magnificent a style of luxury was maintained, someone must give earnest attention to its organization. And from the glance with which Alexey Kirillovitch scanned the table, from the way he nodded to the butler, and offered Darya Alexandrovna her choice between cold soup and hot soup, she saw that it was all organized and maintained by the care of the master of the house himself. It was evident that it all rested no more upon Anna than upon Veslovsky. She, Sviazhsky, the princess, and Veslovsky, were equally guests, with light hearts enjoying what had been arranged for them. Anna was the hostess only in conducting the conversation. The conversation was a difficult one for the lady of the house at a small table with persons present, like the steward and the architect, belonging to a completely different world, struggling not to be overawed by an elegance to which they were unaccustomed, and unable to sustain a large share in the general conversation. But this difficult conversation Anna directed with her usual tact and naturalness, and indeed she did so with actual enjoyment, as Darya Alexandrovna observed. The conversation began about the row Tushkevitch and Veslovsky had taken alone together in the boat, and Tushkevitch began describing the last boat races in Petersburg at the Yacht Club. But Anna, seizing the first pause, at once turned to the architect to draw him out of his silence. "Nikolay Ivanitch was struck," she said, meaning Sviazhsky, "at the progress the new building had made since he was here last; but I am there every day, and every day I wonder at the rate at which it grows." "It's first-rate working with his excellency," said the architect with a smile (he was respectful and composed, though with a sense of his own dignity). "It's a very different matter to have to do with the district authorities. Where one would have to write out sheaves of papers, here I call upon the count, and in three words we settle the business." "The American way of doing business," said Sviazhsky, with a smile. "Yes, there they build in a rational fashion..." The conversation passed to the misuse of political power in the United States, but Anna quickly brought it round to another topic, so as to draw the steward into talk. "Have you ever seen a reaping machine?" she said, addressing Darya Alexandrovna. "We had just ridden over to look at one when we met. It's the first time I ever saw one." "How do they work?" asked Dolly. "Exactly like little scissors. A plank and a lot of little scissors. Like this." Anna took a knife and fork in her beautiful white hands covered with rings, and began showing how the machine worked. It was clear that she saw nothing would be understood from her explanation; but aware that her talk was pleasant and her hands beautiful she went on explaining. "More like little penknives," Veslovsky said playfully, never taking his eyes off her. Anna gave a just perceptible smile, but made no answer. "Isn't it true, Karl Fedoritch, that it's just like little scissors?" she said to the steward. "_Oh, ja,_" answered the German. _"Es ist ein ganz einfaches Ding,"_ and he began to explain the construction of the machine. "It's a pity it doesn't bind too. I saw one at the Vienna exhibition, which binds with a wire," said Sviazhsky. "They would be more profitable in use." _"Es kommt drauf an.... Der Preis vom Draht muss ausgerechnet werden."_ And the German, roused from his taciturnity, turned to Vronsky. _"Das laesst sich ausrechnen, Erlaucht."_ The German was just feeling in the pocket where were his pencil and the notebook he always wrote in, but recollecting that he was at a dinner, and observing Vronsky's chilly glance, he checked himself. _"Zu compliziert, macht zu viel Klopot,"_ he concluded. _"Wuenscht man Dochots, so hat man auch Klopots,"_ said Vassenka Veslovsky, mimicking the German. _"J'adore l'allemand,"_ he addressed Anna again with the same smile. _"Cessez,"_ she said with playful severity. "We expected to find you in the fields, Vassily Semyonitch," she said to the doctor, a sickly-looking man; "have you been there?" "I went there, but I had taken flight," the doctor answered with gloomy jocoseness. "Then you've taken a good constitutional?" "Splendid!" "Well, and how was the old woman? I hope it's not typhus?" "Typhus it is not, but it's taking a bad turn." "What a pity!" said Anna, and having thus paid the dues of civility to her domestic circle, she turned to her own friends. "It would be a hard task, though, to construct a machine from your description, Anna Arkadyevna," Sviazhsky said jestingly. "Oh, no, why so?" said Anna with a smile that betrayed that she knew there was something charming in her disquisitions upon the machine that had been noticed by Sviazhsky. This new trait of girlish coquettishness made an unpleasant impression on Dolly. "But Anna Arkadyevna's knowledge of architecture is marvelous," said Tushkevitch. "To be sure, I heard Anna Arkadyevna talking yesterday about plinths and damp-courses," said Veslovsky. "Have I got it right?" "There's nothing marvelous about it, when one sees and hears so much of it," said Anna. "But, I dare say, you don't even know what houses are made of?" Darya Alexandrovna saw that Anna disliked the tone of raillery that existed between her and Veslovsky, but fell in with it against her will. Vronsky acted in this matter quite differently from Levin. He obviously attached no significance to Veslovsky's chattering; on the contrary, he encouraged his jests. "Come now, tell us, Veslovsky, how are the stones held together?" "By cement, of course." "Bravo! And what is cement?" "Oh, some sort of paste ... no, putty," said Veslovsky, raising a general laugh. The company at dinner, with the exception of the doctor, the architect, and the steward, who remained plunged in gloomy silence, kept up a conversation that never paused, glancing off one subject, fastening on another, and at times stinging one or the other to the quick. Once Darya Alexandrovna felt wounded to the quick, and got so hot that she positively flushed and wondered afterwards whether she had said anything extreme or unpleasant. Sviazhsky began talking of Levin, describing his strange view that machinery is simply pernicious in its effects on Russian agriculture. "I have not the pleasure of knowing this M. Levin," Vronsky said, smiling, "but most likely he has never seen the machines he condemns; or if he has seen and tried any, it must have been after a queer fashion, some Russian imitation, not a machine from abroad. What sort of views can anyone have on such a subject?" "Turkish views, in general," Veslovsky said, turning to Anna with a smile. "I can't defend his opinions," Darya Alexandrovna said, firing up; "but I can say that he's a highly cultivated man, and if he were here he would know very well how to answer you, though I am not capable of doing so." "I like him extremely, and we are great friends," Sviazhsky said, smiling good-naturedly. "_Mais pardon, il est un petit peu toque;_ he maintains, for instance, that district councils and arbitration boards are all of no use, and he is unwilling to take part in anything." "It's our Russian apathy," said Vronsky, pouring water from an iced decanter into a delicate glass on a high stem; "we've no sense of the duties our privileges impose upon us, and so we refuse to recognize these duties." "I know no man more strict in the performance of his duties," said Darya Alexandrovna, irritated by Vronsky's tone of superiority. "For my part," pursued Vronsky, who was evidently for some reason or other keenly affected by this conversation, "such as I am, I am, on the contrary, extremely grateful for the honor they have done me, thanks to Nikolay Ivanitch" (he indicated Sviazhsky), "in electing me a justice of the peace. I consider that for me the duty of being present at the session, of judging some peasants' quarrel about a horse, is as important as anything I can do. And I shall regard it as an honor if they elect me for the district council. It's only in that way I can pay for the advantages I enjoy as a landowner. Unluckily they don't understand the weight that the big landowners ought to have in the state." It was strange to Darya Alexandrovna to hear how serenely confident he was of being right at his own table. She thought how Levin, who believed the opposite, was just as positive in his opinions at his own table. But she loved Levin, and so she was on his side. "So we can reckon upon you, count, for the coming elections?" said Sviazhsky. "But you must come a little beforehand, so as to be on the spot by the eighth. If you would do me the honor to stop with me." "I rather agree with your beau-frere," said Anna, "though not quite on the same ground as he," she added with a smile. "I'm afraid that we have too many of these public duties in these latter days. Just as in old days there were so many government functionaries that one had to call in a functionary for every single thing, so now everyone's doing some sort of public duty. Alexey has been here now six months, and he's a member, I do believe, of five or six different public bodies. _Du train que cela va,_ the whole time will be wasted on it. And I'm afraid that with such a multiplicity of these bodies, they'll end in being a mere form. How many are you a member of, Nikolay Ivanitch?" she turned to Sviazhsky--"over twenty, I fancy." Anna spoke lightly, but irritation could be discerned in her tone. Darya Alexandrovna, watching Anna and Vronsky attentively, detected it instantly. She noticed, too, that as she spoke Vronsky's face had immediately taken a serious and obstinate expression. Noticing this, and that Princess Varvara at once made haste to change the conversation by talking of Petersburg acquaintances, and remembering what Vronsky had without apparent connection said in the garden of his work in the country, Dolly surmised that this question of public activity was connected with some deep private disagreement between Anna and Vronsky. The dinner, the wine, the decoration of the table were all very good; but it was all like what Darya Alexandrovna had seen at formal dinners and balls which of late years had become quite unfamiliar to her; it all had the same impersonal and constrained character, and so on an ordinary day and in a little circle of friends it made a disagreeable impression on her. After dinner they sat on the terrace, then they proceeded to play lawn tennis. The players, divided into two parties, stood on opposite sides of a tightly drawn net with gilt poles on the carefully leveled and rolled croquet-ground. Darya Alexandrovna made an attempt to play, but it was a long time before she could understand the game, and by the time she did understand it, she was so tired that she sat down with Princess Varvara and simply looked on at the players. Her partner, Tushkevitch, gave up playing too, but the others kept the game up for a long time. Sviazhsky and Vronsky both played very well and seriously. They kept a sharp lookout on the balls served to them, and without haste or getting in each other's way, they ran adroitly up to them, waited for the rebound, and neatly and accurately returned them over the net. Veslovsky played worse than the others. He was too eager, but he kept the players lively with his high spirits. His laughter and outcries never paused. Like the other men of the party, with the ladies' permission, he took off his coat, and his solid, comely figure in his white shirt-sleeves, with his red perspiring face and his impulsive movements, made a picture that imprinted itself vividly on the memory. When Darya Alexandrovna lay in bed that night, as soon as she closed her eyes, she saw Vassenka Veslovsky flying about the croquet ground. During the game Darya Alexandrovna was not enjoying herself. She did not like the light tone of raillery that was kept up all the time between Vassenka Veslovsky and Anna, and the unnaturalness altogether of grown-up people, all alone without children, playing at a child's game. But to avoid breaking up the party and to get through the time somehow, after a rest she joined the game again, and pretended to be enjoying it. All that day it seemed to her as though she were acting in a theater with actors cleverer than she, and that her bad acting was spoiling the whole performance. She had come with the intention of staying two days, if all went well. But in the evening, during the game, she made up her mind that she would go home next day. The maternal cares and worries, which she had so hated on the way, now, after a day spent without them, struck her in quite another light, and tempted her back to them. When, after evening tea and a row by night in the boat, Darya Alexandrovna went alone to her room, took off her dress, and began arranging her thin hair for the night, she had a great sense of relief. It was positively disagreeable to her to think that Anna was coming to see her immediately. She longed to be alone with her own thoughts. Chapter 23 Dolly was wanting to go to bed when Anna came in to see her, attired for the night. In the course of the day Anna had several times begun to speak of matters near her heart, and every time after a few words she had stopped: "Afterwards, by ourselves, we'll talk about everything. I've got so much I want to tell you," she said. Now they were by themselves, and Anna did not know what to talk about. She sat in the window looking at Dolly, and going over in her own mind all the stores of intimate talk which had seemed so inexhaustible beforehand, and she found nothing. At that moment it seemed to her that everything had been said already. "Well, what of Kitty?" she said with a heavy sigh, looking penitently at Dolly. "Tell me the truth, Dolly: isn't she angry with me?" "Angry? Oh, no!" said Darya Alexandrovna, smiling. "But she hates me, despises me?" "Oh, no! But you know that sort of thing isn't forgiven." "Yes, yes," said Anna, turning away and looking out of the open window. "But I was not to blame. And who is to blame? What's the meaning of being to blame? Could it have been otherwise? What do you think? Could it possibly have happened that you didn't become the wife of Stiva?" "Really, I don't know. But this is what I want you to tell me..." "Yes, yes, but we've not finished about Kitty. Is she happy? He's a very nice man, they say." "He's much more than very nice. I don't know a better man." "Ah, how glad I am! I'm so glad! Much more than very nice," she repeated. Dolly smiled. "But tell me about yourself. We've a great deal to talk about. And I've had a talk with..." Dolly did not know what to call him. She felt it awkward to call him either the count or Alexey Kirillovitch. "With Alexey," said Anna, "I know what you talked about. But I wanted to ask you directly what you think of me, of my life?" "How am I to say like that straight off? I really don't know." "No, tell me all the same.... You see my life. But you mustn't forget that you're seeing us in the summer, when you have come to us and we are not alone.... But we came here early in the spring, lived quite alone, and shall be alone again, and I desire nothing better. But imagine me living alone without him, alone, and that will be ... I see by everything that it will often be repeated, that he will be half the time away from home," she said, getting up and sitting down close by Dolly. "Of course," she interrupted Dolly, who would have answered, "of course I won't try to keep him by force. I don't keep him indeed. The races are just coming, his horses are running, he will go. I'm very glad. But think of me, fancy my position.... But what's the use of talking about it?" She smiled. "Well, what did he talk about with you?" "He spoke of what I want to speak about of myself, and it's easy for me to be his advocate; of whether there is not a possibility ... whether you could not..." (Darya Alexandrovna hesitated) "correct, improve your position.... You know how I look at it.... But all the same, if possible, you should get married...." "Divorce, you mean?" said Anna. "Do you know, the only woman who came to see me in Petersburg was Betsy Tverskaya? You know her, of course? _Au fond, c'est la femme la plus depravee qui existe._ She had an intrigue with Tushkevitch, deceiving her husband in the basest way. And she told me that she did not care to know me so long as my position was irregular. Don't imagine I would compare ... I know you, darling. But I could not help remembering.... Well, so what did he say to you?" she repeated. "He said that he was unhappy on your account and his own. Perhaps you will say that it's egoism, but what a legitimate and noble egoism. He wants first of all to legitimize his daughter, and to be your husband, to have a legal right to you." "What wife, what slave can be so utterly a slave as I, in my position?" she put in gloomily. "The chief thing he desires ... he desires that you should not suffer." "That's impossible. Well?" "Well, and the most legitimate desire--he wishes that your children should have a name." "What children?" Anna said, not looking at Dolly, and half closing her eyes. "Annie and those to come..." "He need not trouble on that score; I shall have no more children." "How can you tell that you won't?" "I shall not, because I don't wish it." And, in spite of all her emotion, Anna smiled, as she caught the naive expression of curiosity, wonder, and horror on Dolly's face. "The doctor told me after my illness..." "Impossible!" said Dolly, opening her eyes wide. For her this was one of those discoveries the consequences and deductions from which are so immense that all that one feels for the first instant is that it is impossible to take it all in, and that one will have to reflect a great, great deal upon it. This discovery, suddenly throwing light on all those families of one or two children, which had hitherto been so incomprehensible to her, aroused so many ideas, reflections, and contradictory emotions, that she had nothing to say, and simply gazed with wide-open eyes of wonder at Anna. This was the very thing she had been dreaming of, but now learning that it was possible, she was horrified. She felt that it was too simple a solution of too complicated a problem. _"N'est-ce pas immoral?"_ was all she said, after a brief pause. "Why so? Think, I have a choice between two alternatives: either to be with child, that is an invalid, or to be the friend and companion of my husband--practically my husband," Anna said in a tone intentionally superficial and frivolous. "Yes, yes," said Darya Alexandrovna, hearing the very arguments she had used to herself, and not finding the same force in them as before. "For you, for other people," said Anna, as though divining her thoughts, "there may be reason to hesitate; but for me.... You must consider, I am not his wife; he loves me as long as he loves me. And how am I to keep his love? Not like this!" She moved her white hands in a curve before her waist with extraordinary rapidity, as happens during moments of excitement; ideas and memories rushed into Darya Alexandrovna's head. "I," she thought, "did not keep my attraction for Stiva; he left me for others, and the first woman for whom he betrayed me did not keep him by being always pretty and lively. He deserted her and took another. And can Anna attract and keep Count Vronsky in that way? If that is what he looks for, he will find dresses and manners still more attractive and charming. And however white and beautiful her bare arms are, however beautiful her full figure and her eager face under her black curls, he will find something better still, just as my disgusting, pitiful, and charming husband does." Dolly made no answer, she merely sighed. Anna noticed this sigh, indicating dissent, and she went on. In her armory she had other arguments so strong that no answer could be made to them. "Do you say that it's not right? But you must consider," she went on; "you forget my position. How can I desire children? I'm not speaking of the suffering, I'm not afraid of that. Think only, what are my children to be? Ill-fated children, who will have to bear a stranger's name. For the very fact of their birth they will be forced to be ashamed of their mother, their father, their birth." "But that is just why a divorce is necessary." But Anna did not hear her. She longed to give utterance to all the arguments with which she had so many times convinced herself. "What is reason given me for, if I am not to use it to avoid bringing unhappy beings into the world!" She looked at Dolly, but without waiting for a reply she went on: "I should always feel I had wronged these unhappy children," she said. "If they are not, at any rate they are not unhappy; while if they are unhappy, I alone should be to blame for it." These were the very arguments Darya Alexandrovna had used in her own reflections; but she heard them without understanding them. "How can one wrong creatures that don't exist?" she thought. And all at once the idea struck her: could it possibly, under any circumstances, have been better for her favorite Grisha if he had never existed? And this seemed to her so wild, so strange, that she shook her head to drive away this tangle of whirling, mad ideas. "No, I don't know; it's not right," was all she said, with an expression of disgust on her face. "Yes, but you mustn't forget that you and I.... And besides that," added Anna, in spite of the wealth of her arguments and the poverty of Dolly's objections, seeming still to admit that it was not right, "don't forget the chief point, that I am not now in the same position as you. For you the question is: do you desire not to have any more children; while for me it is: do I desire to have them? And that's a great difference. You must see that I can't desire it in my position." Darya Alexandrovna made no reply. She suddenly felt that she had got far away from Anna; that there lay between them a barrier of questions on which they could never agree, and about which it was better not to speak. Chapter 24 "Then there is all the more reason for you to legalize your position, if possible," said Dolly. "Yes, if possible," said Anna, speaking all at once in an utterly different tone, subdued and mournful. "Surely you don't mean a divorce is impossible? I was told your husband had consented to it." "Dolly, I don't want to talk about that." "Oh, we won't then," Darya Alexandrovna hastened to say, noticing the expression of suffering on Anna's face. "All I see is that you take too gloomy a view of things." "I? Not at all! I'm always bright and happy. You see, _je fais des passions._ Veslovsky..." "Yes, to tell the truth, I don't like Veslovsky's tone," said Darya Alexandrovna, anxious to change the subject. "Oh, that's nonsense! It amuses Alexey, and that's all; but he's a boy, and quite under my control. You know, I turn him as I please. It's just as it might be with your Grisha.... Dolly!"--she suddenly changed the subject--"you say I take too gloomy a view of things. You can't understand. It's too awful! I try not to take any view of it at all." "But I think you ought to. You ought to do all you can." "But what can I do? Nothing. You tell me to marry Alexey, and say I don't think about it. I don't think about it!" she repeated, and a flush rose into her face. She got up, straightening her chest, and sighed heavily. With her light step she began pacing up and down the room, stopping now and then. "I don't think of it? Not a day, not an hour passes that I don't think of it, and blame myself for thinking of it ... because thinking of that may drive me mad. Drive me mad!" she repeated. "When I think of it, I can't sleep without morphine. But never mind. Let us talk quietly. They tell me, divorce. In the first place, he won't give me a divorce. He's under the influence of Countess Lidia Ivanovna now." Darya Alexandrovna, sitting erect on a chair, turned her head, following Anna with a face of sympathetic suffering. "You ought to make the attempt," she said softly. "Suppose I make the attempt. What does it mean?" she said, evidently giving utterance to a thought, a thousand times thought over and learned by heart. "It means that I, hating him, but still recognizing that I have wronged him--and I consider him magnanimous--that I humiliate myself to write to him.... Well, suppose I make the effort; I do it. Either I receive a humiliating refusal or consent.... Well, I have received his consent, say..." Anna was at that moment at the furthest end of the room, and she stopped there, doing something to the curtain at the window. "I receive his consent, but my ... my son? They won't give him up to me. He will grow up despising me, with his father, whom I've abandoned. Do you see, I love ... equally, I think, but both more than myself--two creatures, Seryozha and Alexey." She came out into the middle of the room and stood facing Dolly, with her arms pressed tightly across her chest. In her white dressing gown her figure seemed more than usually grand and broad. She bent her head, and with shining, wet eyes looked from under her brows at Dolly, a thin little pitiful figure in her patched dressing jacket and nightcap, shaking all over with emotion. "It is only those two creatures that I love, and one excludes the other. I can't have them together, and that's the only thing I want. And since I can't have that, I don't care about the rest. I don't care about anything, anything. And it will end one way or another, and so I can't, I don't like to talk of it. So don't blame me, don't judge me for anything. You can't with your pure heart understand all that I'm suffering." She went up, sat down beside Dolly, and with a guilty look, peeped into her face and took her hand. "What are you thinking? What are you thinking about me? Don't despise me. I don't deserve contempt. I'm simply unhappy. If anyone is unhappy, I am," she articulated, and turning away, she burst into tears. Left alone, Darya Alexandrovna said her prayers and went to bed. She had felt for Anna with all her heart while she was speaking to her, but now she could not force herself to think of her. The memories of home and of her children rose up in her imagination with a peculiar charm quite new to her, with a sort of new brilliance. That world of her own seemed to her now so sweet and precious that she would not on any account spend an extra day outside it, and she made up her mind that she would certainly go back next day. Anna meantime went back to her boudoir, took a wine glass and dropped into it several drops of a medicine, of which the principal ingredient was morphine. After drinking it off and sitting still a little while, she went into her bedroom in a soothed and more cheerful frame of mind. When she went into the bedroom, Vronsky looked intently at her. He was looking for traces of the conversation which he knew that, staying so long in Dolly's room, she must have had with her. But in her expression of restrained excitement, and of a sort of reserve, he could find nothing but the beauty that always bewitched him afresh though he was used to it, the consciousness of it, and the desire that it should affect him. He did not want to ask her what they had been talking of, but he hoped that she would tell him something of her own accord. But she only said: "I am so glad you like Dolly. You do, don't you?" "Oh, I've known her a long while, you know. She's very good-hearted, I suppose, _mais excessivement terre-a-terre._ Still, I'm very glad to see her." He took Anna's hand and looked inquiringly into her eyes. Misinterpreting the look, she smiled to him. Next morning, in spite of the protests of her hosts, Darya Alexandrovna prepared for her homeward journey. Levin's coachman, in his by no means new coat and shabby hat, with his ill-matched horses and his coach with the patched mud-guards, drove with gloomy determination into the covered gravel approach. Darya Alexandrovna disliked taking leave of Princess Varvara and the gentlemen of the party. After a day spent together, both she and her hosts were distinctly aware that they did not get on together, and that it was better for them not to meet. Only Anna was sad. She knew that now, from Dolly's departure, no one again would stir up within her soul the feelings that had been roused by their conversation. It hurt her to stir up these feelings, but yet she knew that that was the best part of her soul, and that that part of her soul would quickly be smothered in the life she was leading. As she drove out into the open country, Darya Alexandrovna had a delightful sense of relief, and she felt tempted to ask the two men how they had liked being at Vronsky's, when suddenly the coachman, Philip, expressed himself unasked: "Rolling in wealth they may be, but three pots of oats was all they gave us. Everything cleared up till there wasn't a grain left by cockcrow. What are three pots? A mere mouthful! And oats now down to forty-five kopecks. At our place, no fear, all comers may have as much as they can eat." "The master's a screw," put in the counting house clerk. "Well, did you like their horses?" asked Dolly. "The horses!--there's no two opinions about them. And the food was good. But it seemed to me sort of dreary there, Darya Alexandrovna. I don't know what you thought," he said, turning his handsome, good-natured face to her. "I thought so too. Well, shall we get home by evening?" "Eh, we must!" On reaching home and finding everyone entirely satisfactory and particularly charming, Darya Alexandrovna began with great liveliness telling them how she had arrived, how warmly they had received her, of the luxury and good taste in which the Vronskys lived, and of their recreations, and she would not allow a word to be said against them. "One has to know Anna and Vronsky--I have got to know him better now--to see how nice they are, and how touching," she said, speaking now with perfect sincerity, and forgetting the vague feeling of dissatisfaction and awkwardness she had experienced there. Chapter 25 Vronsky and Anna spent the whole summer and part of the winter in the country, living in just the same condition, and still taking no steps to obtain a divorce. It was an understood thing between them that they should not go away anywhere; but both felt, the longer they lived alone, especially in the autumn, without guests in the house, that they could not stand this existence, and that they would have to alter it. Their life was apparently such that nothing better could be desired. They had the fullest abundance of everything; they had a child, and both had occupation. Anna devoted just as much care to her appearance when they had no visitors, and she did a great deal of reading, both of novels and of what serious literature was in fashion. She ordered all the books that were praised in the foreign papers and reviews she received, and read them with that concentrated attention which is only given to what is read in seclusion. Moreover, every subject that was of interest to Vronsky, she studied in books and special journals, so that he often went straight to her with questions relating to agriculture or architecture, sometimes even with questions relating to horse-breeding or sport. He was amazed at her knowledge, her memory, and at first was disposed to doubt it, to ask for confirmation of her facts; and she would find what he asked for in some book, and show it to him. The building of the hospital, too, interested her. She did not merely assist, but planned and suggested a great deal herself. But her chief thought was still of herself--how far she was dear to Vronsky, how far she could make up to him for all he had given up. Vronsky appreciated this desire not only to please, but to serve him, which had become the sole aim of her existence, but at the same time he wearied of the loving snares in which she tried to hold him fast. As time went on, and he saw himself more and more often held fast in these snares, he had an ever growing desire, not so much to escape from them, as to try whether they hindered his freedom. Had it not been for this growing desire to be free, not to have scenes every time he wanted to go to the town to a meeting or a race, Vronsky would have been perfectly satisfied with his life. The role he had taken up, the role of a wealthy landowner, one of that class which ought to be the very heart of the Russian aristocracy, was entirely to his taste; and now, after spending six months in that character, he derived even greater satisfaction from it. And his management of his estate, which occupied and absorbed him more and more, was most successful. In spite of the immense sums cost him by the hospital, by machinery, by cows ordered from Switzerland, and many other things, he was convinced that he was not wasting, but increasing his substance. In all matters affecting income, the sales of timber, wheat, and wool, the letting of lands, Vronsky was hard as a rock, and knew well how to keep up prices. In all operations on a large scale on this and his other estates, he kept to the simplest methods involving no risk, and in trifling details he was careful and exacting to an extreme degree. In spite of all the cunning and ingenuity of the German steward, who would try to tempt him into purchases by making his original estimate always far larger than really required, and then representing to Vronsky that he might get the thing cheaper, and so make a profit, Vronsky did not give in. He listened to his steward, cross-examined him, and only agreed to his suggestions when the implement to be ordered or constructed was the very newest, not yet known in Russia, and likely to excite wonder. Apart from such exceptions, he resolved upon an increased outlay only where there was a surplus, and in making such an outlay he went into the minutest details, and insisted on getting the very best for his money; so that by the method on which he managed his affairs, it was clear that he was not wasting, but increasing his substance. In October there were the provincial elections in the Kashinsky province, where were the estates of Vronsky, Sviazhsky, Koznishev, Oblonsky, and a small part of Levin's land. These elections were attracting public attention from several circumstances connected with them, and also from the people taking part in them. There had been a great deal of talk about them, and great preparations were being made for them. Persons who never attended the elections were coming from Moscow, from Petersburg, and from abroad to attend these. Vronsky had long before promised Sviazhsky to go to them. Before the elections Sviazhsky, who often visited Vozdvizhenskoe, drove over to fetch Vronsky. On the day before there had been almost a quarrel between Vronsky and Anna over this proposed expedition. It was the very dullest autumn weather, which is so dreary in the country, and so, preparing himself for a struggle, Vronsky, with a hard and cold expression, informed Anna of his departure as he had never spoken to her before. But, to his surprise, Anna accepted the information with great composure, and merely asked when he would be back. He looked intently at her, at a loss to explain this composure. She smiled at his look. He knew that way she had of withdrawing into herself, and knew that it only happened when she had determined upon something without letting him know her plans. He was afraid of this; but he was so anxious to avoid a scene that he kept up appearances, and half sincerely believed in what he longed to believe in--her reasonableness. "I hope you won't be dull?" "I hope not," said Anna. "I got a box of books yesterday from Gautier's. No, I shan't be dull." "She's trying to take that tone, and so much the better," he thought, "or else it would be the same thing over and over again." And he set off for the elections without appealing to her for a candid explanation. It was the first time since the beginning of their intimacy that he had parted from her without a full explanation. From one point of view this troubled him, but on the other side he felt that it was better so. "At first there will be, as this time, something undefined kept back, and then she will get used to it. In any case I can give up anything for her, but not my masculine independence," he thought. Chapter 26 In September Levin moved to Moscow for Kitty's confinement. He had spent a whole month in Moscow with nothing to do, when Sergey Ivanovitch, who had property in the Kashinsky province, and took great interest in the question of the approaching elections, made ready to set off to the elections. He invited his brother, who had a vote in the Seleznevsky district, to come with him. Levin had, moreover, to transact in Kashin some extremely important business relating to the wardship of land and to the receiving of certain redemption money for his sister, who was abroad. Levin still hesitated, but Kitty, who saw that he was bored in Moscow, and urged him to go, on her own authority ordered him the proper nobleman's uniform, costing seven pounds. And that seven pounds paid for the uniform was the chief cause that finally decided Levin to go. He went to Kashin.... Levin had been six days in Kashin, visiting the assembly each day, and busily engaged about his sister's business, which still dragged on. The district marshals of nobility were all occupied with the elections, and it was impossible to get the simplest thing done that depended upon the court of wardship. The other matter, the payment of the sums due, was met too by difficulties. After long negotiations over the legal details, the money was at last ready to be paid; but the notary, a most obliging person, could not hand over the order, because it must have the signature of the president, and the president, though he had not given over his duties to a deputy, was at the elections. All these worrying negotiations, this endless going from place to place, and talking with pleasant and excellent people, who quite saw the unpleasantness of the petitioner's position, but were powerless to assist him--all these efforts that yielded no result, led to a feeling of misery in Levin akin to the mortifying helplessness one experiences in dreams when one tries to use physical force. He felt this frequently as he talked to his most good-natured solicitor. This solicitor did, it seemed, everything possible, and strained every nerve to get him out of his difficulties. "I tell you what you might try," he said more than once; "go to so-and-so and so-and-so," and the solicitor drew up a regular plan for getting round the fatal point that hindered everything. But he would add immediately, "It'll mean some delay, anyway, but you might try it." And Levin did try, and did go. Everyone was kind and civil, but the point evaded seemed to crop up again in the end, and again to bar the way. What was particularly trying, was that Levin could not make out with whom he was struggling, to whose interest it was that his business should not be done. That no one seemed to know; the solicitor certainly did not know. If Levin could have understood why, just as he saw why one can only approach the booking office of a railway station in single file, it would not have been so vexatious and tiresome to him. But with the hindrances that confronted him in his business, no one could explain why they existed. But Levin had changed a good deal since his marriage; he was patient, and if he could not see why it was all arranged like this, he told himself that he could not judge without knowing all about it, and that most likely it must be so, and he tried not to fret. In attending the elections, too, and taking part in them, he tried now not to judge, not to fall foul of them, but to comprehend as fully as he could the question which was so earnestly and ardently absorbing honest and excellent men whom he respected. Since his marriage there had been revealed to Levin so many new and serious aspects of life that had previously, through his frivolous attitude to them, seemed of no importance, that in the question of the elections too he assumed and tried to find some serious significance. Sergey Ivanovitch explained to him the meaning and object of the proposed revolution at the elections. The marshal of the province in whose hands the law had placed the control of so many important public functions--the guardianship of wards (the very department which was giving Levin so much trouble just now), the disposal of large sums subscribed by the nobility of the province, the high schools, female, male, and military, and popular instruction on the new model, and finally, the district council--the marshal of the province, Snetkov, was a nobleman of the old school,--dissipating an immense fortune, a good-hearted man, honest after his own fashion, but utterly without any comprehension of the needs of modern days. He always took, in every question, the side of the nobility; he was positively antagonistic to the spread of popular education, and he succeeded in giving a purely party character to the district council which ought by rights to be of such an immense importance. What was needed was to put in his place a fresh, capable, perfectly modern man, of contemporary ideas, and to frame their policy so as from the rights conferred upon the nobles, not as the nobility, but as an element of the district council, to extract all the powers of self-government that could possibly be derived from them. In the wealthy Kashinsky province, which always took the lead of other provinces in everything, there was now such a preponderance of forces that this policy, once carried through properly there, might serve as a model for other provinces for all Russia. And hence the whole question was of the greatest importance. It was proposed to elect as marshal in place of Snetkov either Sviazhsky, or, better still, Nevyedovsky, a former university professor, a man of remarkable intelligence and a great friend of Sergey Ivanovitch. The meeting was opened by the governor, who made a speech to the nobles, urging them to elect the public functionaries, not from regard for persons, but for the service and welfare of their fatherland, and hoping that the honorable nobility of the Kashinsky province would, as at all former elections, hold their duty as sacred, and vindicate the exalted confidence of the monarch. When he had finished with his speech, the governor walked out of the hall, and the noblemen noisily and eagerly--some even enthusiastically--followed him and thronged round him while he put on his fur coat and conversed amicably with the marshal of the province. Levin, anxious to see into everything and not to miss anything, stood there too in the crowd, and heard the governor say: "Please tell Marya Ivanovna my wife is very sorry she couldn't come to the Home." And thereupon the nobles in high good-humor sorted out their fur coats and all drove off to the cathedral. In the cathedral Levin, lifting his hand like the rest and repeating the words of the archdeacon, swore with most terrible oaths to do all the governor had hoped they would do. Church services always affected Levin, and as he uttered the words "I kiss the cross," and glanced round at the crowd of young and old men repeating the same, he felt touched. On the second and third days there was business relating to the finances of the nobility and the female high school, of no importance whatever, as Sergey Ivanovitch explained, and Levin, busy seeing after his own affairs, did not attend the meetings. On the fourth day the auditing of the marshal's accounts took place at the high table of the marshal of the province. And then there occurred the first skirmish between the new party and the old. The committee who had been deputed to verify the accounts reported to the meeting that all was in order. The marshal of the province got up, thanked the nobility for their confidence, and shed tears. The nobles gave him a loud welcome, and shook hands with him. But at that instant a nobleman of Sergey Ivanovitch's party said that he had heard that the committee had not verified the accounts, considering such a verification an insult to the marshal of the province. One of the members of the committee incautiously admitted this. Then a small gentleman, very young-looking but very malignant, began to say that it would probably be agreeable to the marshal of the province to give an account of his expenditures of the public moneys, and that the misplaced delicacy of the members of the committee was depriving him of this moral satisfaction. Then the members of the committee tried to withdraw their admission, and Sergey Ivanovitch began to prove that they must logically admit either that they had verified the accounts or that they had not, and he developed this dilemma in detail. Sergey Ivanovitch was answered by the spokesman of the opposite party. Then Sviazhsky spoke, and then the malignant gentleman again. The discussion lasted a long time and ended in nothing. Levin was surprised that they should dispute upon this subject so long, especially as, when he asked Sergey Ivanovitch whether he supposed that money had been misappropriated, Sergey Ivanovitch answered: "Oh, no! He's an honest man. But those old-fashioned methods of paternal family arrangements in the management of provincial affairs must be broken down." On the fifth day came the elections of the district marshals. It was rather a stormy day in several districts. In the Seleznevsky district Sviazhsky was elected unanimously without a ballot, and he gave a dinner that evening. Chapter 27 The sixth day was fixed for the election of the marshal of the province. The rooms, large and small, were full of noblemen in all sorts of uniforms. Many had come only for that day. Men who had not seen each other for years, some from the Crimea, some from Petersburg, some from abroad, met in the rooms of the Hall of Nobility. There was much discussion around the governor's table under the portrait of the Tsar. The nobles, both in the larger and the smaller rooms, grouped themselves in camps, and from their hostile and suspicious glances, from the silence that fell upon them when outsiders approached a group, and from the way that some, whispering together, retreated to the farther corridor, it was evident that each side had secrets from the other. In appearance the noblemen were sharply divided into two classes: the old and the new. The old were for the most part either in old uniforms of the nobility, buttoned up closely, with spurs and hats, or in their own special naval, cavalry, infantry, or official uniforms. The uniforms of the older men were embroidered in the old-fashioned way with epaulets on their shoulders; they were unmistakably tight and short in the waist, as though their wearers had grown out of them. The younger men wore the uniform of the nobility with long waists and broad shoulders, unbuttoned over white waistcoats, or uniforms with black collars and with the embroidered badges of justices of the peace. To the younger men belonged the court uniforms that here and there brightened up the crowd. But the division into young and old did not correspond with the division of parties. Some of the young men, as Levin observed, belonged to the old party; and some of the very oldest noblemen, on the contrary, were whispering with Sviazhsky, and were evidently ardent partisans of the new party. Levin stood in the smaller room, where they were smoking and taking light refreshments, close to his own friends, and listening to what they were saying, he conscientiously exerted all his intelligence trying to understand what was said. Sergey Ivanovitch was the center round which the others grouped themselves. He was listening at that moment to Sviazhsky and Hliustov, the marshal of another district, who belonged to their party. Hliustov would not agree to go with his district to ask Snetkov to stand, while Sviazhsky was persuading him to do so, and Sergey Ivanovitch was approving of the plan. Levin could not make out why the opposition was to ask the marshal to stand whom they wanted to supersede. Stepan Arkadyevitch, who had just been drinking and taking some lunch, came up to them in his uniform of a gentleman of the bedchamber, wiping his lips with a perfumed handkerchief of bordered batiste. "We are placing our forces," he said, pulling out his whiskers, "Sergey Ivanovitch!" And listening to the conversation, he supported Sviazhsky's contention. "One district's enough, and Sviazhsky's obviously of the opposition," he said, words evidently intelligible to all except Levin. "Why, Kostya, you here too! I suppose you're converted, eh?" he added, turning to Levin and drawing his arm through his. Levin would have been glad indeed to be converted, but could not make out what the point was, and retreating a few steps from the speakers, he explained to Stepan Arkadyevitch his inability to understand why the marshal of the province should be asked to stand. _"O sancta simplicitas!"_ said Stepan Arkadyevitch, and briefly and clearly he explained it to Levin. If, as at previous elections, all the districts asked the marshal of the province to stand, then he would be elected without a ballot. That must not be. Now eight districts had agreed to call upon him: if two refused to do so, Snetkov might decline to stand at all; and then the old party might choose another of their party, which would throw them completely out in their reckoning. But if only one district, Sviazhsky's, did not call upon him to stand, Snetkov would let himself be balloted for. They were even, some of them, going to vote for him, and purposely to let him get a good many votes, so that the enemy might be thrown off the scent, and when a candidate of the other side was put up, they too might give him some votes. Levin understood to some extent, but not fully, and would have put a few more questions, when suddenly everyone began talking and making a noise and they moved towards the big room. "What is it? eh? whom?" "No guarantee? whose? what?" "They won't pass him?" "No guarantee?" "They won't let Flerov in?" "Eh, because of the charge against him?" "Why, at this rate, they won't admit anyone. It's a swindle!" "The law!" Levin heard exclamations on all sides, and he moved into the big room together with the others, all hurrying somewhere and afraid of missing something. Squeezed by the crowding noblemen, he drew near the high table where the marshal of the province, Sviazhsky, and the other leaders were hotly disputing about something. Chapter 28 Levin was standing rather far off. A nobleman breathing heavily and hoarsely at his side, and another whose thick boots were creaking, prevented him from hearing distinctly. He could only hear the soft voice of the marshal faintly, then the shrill voice of the malignant gentleman, and then the voice of Sviazhsky. They were disputing, as far as he could make out, as to the interpretation to be put on the act and the exact meaning of the words: "liable to be called up for trial." The crowd parted to make way for Sergey Ivanovitch approaching the table. Sergey Ivanovitch, waiting till the malignant gentleman had finished speaking, said that he thought the best solution would be to refer to the act itself, and asked the secretary to find the act. The act said that in case of difference of opinion, there must be a ballot. Sergey Ivanovitch read the act and began to explain its meaning, but at that point a tall, stout, round-shouldered landowner, with dyed whiskers, in a tight uniform that cut the back of his neck, interrupted him. He went up to the table, and striking it with his finger ring, he shouted loudly: "A ballot! Put it to the vote! No need for more talking!" Then several voices began to talk all at once, and the tall nobleman with the ring, getting more and more exasperated, shouted more and more loudly. But it was impossible to make out what he said. He was shouting for the very course Sergey Ivanovitch had proposed; but it was evident that he hated him and all his party, and this feeling of hatred spread through the whole party and roused in opposition to it the same vindictiveness, though in a more seemly form, on the other side. Shouts were raised, and for a moment all was confusion, so that the marshal of the province had to call for order. "A ballot! A ballot! Every nobleman sees it! We shed our blood for our country!... The confidence of the monarch.... No checking the accounts of the marshal; he's not a cashier.... But that's not the point.... Votes, please! Beastly!..." shouted furious and violent voices on all sides. Looks and faces were even more violent and furious than their words. They expressed the most implacable hatred. Levin did not in the least understand what was the matter, and he marveled at the passion with which it was disputed whether or not the decision about Flerov should be put to the vote. He forgot, as Sergey Ivanovitch explained to him afterwards, this syllogism: that it was necessary for the public good to get rid of the marshal of the province; that to get rid of the marshal it was necessary to have a majority of votes; that to get a majority of votes it was necessary to secure Flerov's right to vote; that to secure the recognition of Flerov's right to vote they must decide on the interpretation to be put on the act. "And one vote may decide the whole question, and one must be serious and consecutive, if one wants to be of use in public life," concluded Sergey Ivanovitch. But Levin forgot all that, and it was painful to him to see all these excellent persons, for whom he had a respect, in such an unpleasant and vicious state of excitement. To escape from this painful feeling he went away into the other room where there was nobody except the waiters at the refreshment bar. Seeing the waiters busy over washing up the crockery and setting in order their plates and wine glasses, seeing their calm and cheerful faces, Levin felt an unexpected sense of relief as though he had come out of a stuffy room into the fresh air. He began walking up and down, looking with pleasure at the waiters. He particularly liked the way one gray-whiskered waiter, who showed his scorn for the other younger ones and was jeered at by them, was teaching them how to fold up napkins properly. Levin was just about to enter into conversation with the old waiter, when the secretary of the court of wardship, a little old man whose specialty it was to know all the noblemen of the province by name and patronymic, drew him away. "Please come, Konstantin Dmitrievitch," he said, "your brother's looking for you. They are voting on the legal point." Levin walked into the room, received a white ball, and followed his brother, Sergey Ivanovitch, to the table where Sviazhsky was standing with a significant and ironical face, holding his beard in his fist and sniffing at it. Sergey Ivanovitch put his hand into the box, put the ball somewhere, and making room for Levin, stopped. Levin advanced, but utterly forgetting what he was to do, and much embarrassed, he turned to Sergey Ivanovitch with the question, "Where am I to put it?" He asked this softly, at a moment when there was talking going on near, so that he had hoped his question would not be overheard. But the persons speaking paused, and his improper question was overheard. Sergey Ivanovitch frowned. "That is a matter for each man's own decision," he said severely. Several people smiled. Levin crimsoned, hurriedly thrust his hand under the cloth, and put the ball to the right as it was in his right hand. Having put it in, he recollected that he ought to have thrust his left hand too, and so he thrust it in though too late, and, still more overcome with confusion, he beat a hasty retreat into the background. "A hundred and twenty-six for admission! Ninety-eight against!" sang out the voice of the secretary, who could not pronounce the letter _r_. Then there was a laugh; a button and two nuts were found in the box. The nobleman was allowed the right to vote, and the new party had conquered. But the old party did not consider themselves conquered. Levin heard that they were asking Snetkov to stand, and he saw that a crowd of noblemen was surrounding the marshal, who was saying something. Levin went nearer. In reply Snetkov spoke of the trust the noblemen of the province had placed in him, the affection they had shown him, which he did not deserve, as his only merit had been his attachment to the nobility, to whom he had devoted twelve years of service. Several times he repeated the words: "I have served to the best of my powers with truth and good faith, I value your goodness and thank you," and suddenly he stopped short from the tears that choked him, and went out of the room. Whether these tears came from a sense of the injustice being done him, from his love for the nobility, or from the strain of the position he was placed in, feeling himself surrounded by enemies, his emotion infected the assembly, the majority were touched, and Levin felt a tenderness for Snetkov. In the doorway the marshal of the province jostled against Levin. "Beg pardon, excuse me, please," he said as to a stranger, but recognizing Levin, he smiled timidly. It seemed to Levin that he would have liked to say something, but could not speak for emotion. His face and his whole figure in his uniform with the crosses, and white trousers striped with braid, as he moved hurriedly along, reminded Levin of some hunted beast who sees that he is in evil case. This expression in the marshal's face was particularly touching to Levin, because, only the day before, he had been at his house about his trustee business and had seen him in all his grandeur, a kind-hearted, fatherly man. The big house with the old family furniture; the rather dirty, far from stylish, but respectful footmen, unmistakably old house serfs who had stuck to their master; the stout, good-natured wife in a cap with lace and a Turkish shawl, petting her pretty grandchild, her daughter's daughter; the young son, a sixth form high school boy, coming home from school, and greeting his father, kissing his big hand; the genuine, cordial words and gestures of the old man--all this had the day before roused an instinctive feeling of respect and sympathy in Levin. This old man was a touching and pathetic figure to Levin now, and he longed to say something pleasant to him. "So you're sure to be our marshal again," he said. "It's not likely," said the marshal, looking round with a scared expression. "I'm worn out, I'm old. If there are men younger and more deserving than I, let them serve." And the marshal disappeared through a side door. The most solemn moment was at hand. They were to proceed immediately to the election. The leaders of both parties were reckoning white and black on their fingers. The discussion upon Flerov had given the new party not only Flerov's vote, but had also gained time for them, so that they could send to fetch three noblemen who had been rendered unable to take part in the elections by the wiles of the other party. Two noble gentlemen, who had a weakness for strong drink, had been made drunk by the partisans of Snetkov, and a third had been robbed of his uniform. On learning this, the new party had made haste, during the dispute about Flerov, to send some of their men in a sledge to clothe the stripped gentleman, and to bring along one of the intoxicated to the meeting. "I've brought one, drenched him with water," said the landowner, who had gone on this errand, to Sviazhsky. "He's all right? he'll do." "Not too drunk, he won't fall down?" said Sviazhsky, shaking his head. "No, he's first-rate. If only they don't give him any more here.... I've told the waiter not to give him anything on any account." Chapter 29 The narrow room, in which they were smoking and taking refreshments, was full of noblemen. The excitement grew more intense, and every face betrayed some uneasiness. The excitement was specially keen for the leaders of each party, who knew every detail, and had reckoned up every vote. They were the generals organizing the approaching battle. The rest, like the rank and file before an engagement, though they were getting ready for the fight, sought for other distractions in the interval. Some were lunching, standing at the bar, or sitting at the table; others were walking up and down the long room, smoking cigarettes, and talking with friends whom they had not seen for a long while. Levin did not care to eat, and he was not smoking; he did not want to join his own friends, that is Sergey Ivanovitch, Stepan Arkadyevitch, Sviazhsky and the rest, because Vronsky in his equerry's uniform was standing with them in eager conversation. Levin had seen him already at the meeting on the previous day, and he had studiously avoided him, not caring to greet him. He went to the window and sat down, scanning the groups, and listening to what was being said around him. He felt depressed, especially because everyone else was, as he saw, eager, anxious, and interested, and he alone, with an old, toothless little man with mumbling lips wearing a naval uniform, sitting beside him, had no interest in it and nothing to do. "He's such a blackguard! I have told him so, but it makes no difference. Only think of it! He couldn't collect it in three years!" he heard vigorously uttered by a round-shouldered, short, country gentleman, who had pomaded hair hanging on his embroidered collar, and new boots obviously put on for the occasion, with heels that tapped energetically as he spoke. Casting a displeased glance at Levin, this gentleman sharply turned his back. "Yes, it's a dirty business, there's no denying," a small gentleman assented in a high voice. Next, a whole crowd of country gentlemen, surrounding a stout general, hurriedly came near Levin. These persons were unmistakably seeking a place where they could talk without being overheard. "How dare he say I had his breeches stolen! Pawned them for drink, I expect. Damn the fellow, prince indeed! He'd better not say it, the beast!" "But excuse me! They take their stand on the act," was being said in another group; "the wife must be registered as noble." "Oh, damn your acts! I speak from my heart. We're all gentlemen, aren't we? Above suspicion." "Shall we go on, your excellency, _fine champagne?_" Another group was following a nobleman, who was shouting something in a loud voice; it was one of the three intoxicated gentlemen. "I always advised Marya Semyonovna to let for a fair rent, for she can never save a profit," he heard a pleasant voice say. The speaker was a country gentleman with gray whiskers, wearing the regimental uniform of an old general staff-officer. It was the very landowner Levin had met at Sviazhsky's. He knew him at once. The landowner too stared at Levin, and they exchanged greetings. "Very glad to see you! To be sure! I remember you very well. Last year at our district marshal, Nikolay Ivanovitch's." "Well, and how is your land doing?" asked Levin. "Oh, still just the same, always at a loss," the landowner answered with a resigned smile, but with an expression of serenity and conviction that so it must be. "And how do you come to be in our province?" he asked. "Come to take part in our _coup d'etat?_" he said, confidently pronouncing the French words with a bad accent. "All Russia's here--gentlemen of the bedchamber, and everything short of the ministry." He pointed to the imposing figure of Stepan Arkadyevitch in white trousers and his court uniform, walking by with a general. "I ought to own that I don't very well understand the drift of the provincial elections," said Levin. The landowner looked at him. "Why, what is there to understand? There's no meaning in it at all. It's a decaying institution that goes on running only by the force of inertia. Just look, the very uniforms tell you that it's an assembly of justices of the peace, permanent members of the court, and so on, but not of noblemen." "Then why do you come?" asked Levin. "From habit, nothing else. Then, too, one must keep up connections. It's a moral obligation of a sort. And then, to tell the truth, there's one's own interests. My son-in-law wants to stand as a permanent member; they're not rich people, and he must be brought forward. These gentlemen, now, what do they come for?" he said, pointing to the malignant gentleman, who was talking at the high table. "That's the new generation of nobility." "New it may be, but nobility it isn't. They're proprietors of a sort, but we're the landowners. As noblemen, they're cutting their own throats." "But you say it's an institution that's served its time." "That it may be, but still it ought to be treated a little more respectfully. Snetkov, now.... We may be of use, or we may not, but we're the growth of a thousand years. If we're laying out a garden, planning one before the house, you know, and there you've a tree that's stood for centuries in the very spot.... Old and gnarled it may be, and yet you don't cut down the old fellow to make room for the flowerbeds, but lay out your beds so as to take advantage of the tree. You won't grow him again in a year," he said cautiously, and he immediately changed the conversation. "Well, and how is your land doing?" "Oh, not very well. I make five per cent." "Yes, but you don't reckon your own work. Aren't you worth something too? I'll tell you my own case. Before I took to seeing after the land, I had a salary of three hundred pounds from the service. Now I do more work than I did in the service, and like you I get five per cent. on the land, and thank God for that. But one's work is thrown in for nothing." "Then why do you do it, if it's a clear loss?" "Oh, well, one does it! What would you have? It's habit, and one knows it's how it should be. And what's more," the landowner went on, leaning his elbows on the window and chatting on, "my son, I must tell you, has no taste for it. There's no doubt he'll be a scientific man. So there'll be no one to keep it up. And yet one does it. Here this year I've planted an orchard." "Yes, yes," said Levin, "that's perfectly true. I always feel there's no real balance of gain in my work on the land, and yet one does it.... It's a sort of duty one feels to the land." "But I tell you what," the landowner pursued; "a neighbor of mine, a merchant, was at my place. We walked about the fields and the garden. 'No,' said he, 'Stepan Vassilievitch, everything's well looked after, but your garden's neglected.' But, as a fact, it's well kept up. 'To my thinking, I'd cut down that lime-tree. Here you've thousands of limes, and each would make two good bundles of bark. And nowadays that bark's worth something. I'd cut down the lot.'" "And with what he made he'd increase his stock, or buy some land for a trifle, and let it out in lots to the peasants," Levin added, smiling. He had evidently more than once come across those commercial calculations. "And he'd make his fortune. But you and I must thank God if we keep what we've got and leave it to our children." "You're married, I've heard?" said the landowner. "Yes," Levin answered, with proud satisfaction. "Yes, it's rather strange," he went on. "So we live without making anything, as though we were ancient vestals set to keep in a fire." The landowner chuckled under his white mustaches. "There are some among us, too, like our friend Nikolay Ivanovitch, or Count Vronsky, that's settled here lately, who try to carry on their husbandry as though it were a factory; but so far it leads to nothing but making away with capital on it." "But why is it we don't do like the merchants? Why don't we cut down our parks for timber?" said Levin, returning to a thought that had struck him. "Why, as you said, to keep the fire in. Besides that's not work for a nobleman. And our work as noblemen isn't done here at the elections, but yonder, each in our corner. There's a class instinct, too, of what one ought and oughtn't to do. There's the peasants, too, I wonder at them sometimes; any good peasant tries to take all the land he can. However bad the land is, he'll work it. Without a return too. At a simple loss." "Just as we do," said Levin. "Very, very glad to have met you," he added, seeing Sviazhsky approaching him. "And here we've met for the first time since we met at your place," said the landowner to Sviazhsky, "and we've had a good talk too." "Well, have you been attacking the new order of things?" said Sviazhsky with a smile. "That we're bound to do." "You've relieved your feelings?" Chapter 30 Sviazhsky took Levin's arm, and went with him to his own friends. This time there was no avoiding Vronsky. He was standing with Stepan Arkadyevitch and Sergey Ivanovitch, and looking straight at Levin as he drew near. "Delighted! I believe I've had the pleasure of meeting you ... at Princess Shtcherbatskaya's," he said, giving Levin his hand. "Yes, I quite remember our meeting," said Levin, and blushing crimson, he turned away immediately, and began talking to his brother. With a slight smile Vronsky went on talking to Sviazhsky, obviously without the slightest inclination to enter into conversation with Levin. But Levin, as he talked to his brother, was continually looking round at Vronsky, trying to think of something to say to him to gloss over his rudeness. "What are we waiting for now?" asked Levin, looking at Sviazhsky and Vronsky. "For Snetkov. He has to refuse or to consent to stand," answered Sviazhsky. "Well, and what has he done, consented or not?" "That's the point, that he's done neither," said Vronsky. "And if he refuses, who will stand then?" asked Levin, looking at Vronsky. "Whoever chooses to," said Sviazhsky. "Shall you?" asked Levin. "Certainly not I," said Sviazhsky, looking confused, and turning an alarmed glance at the malignant gentleman, who was standing beside Sergey Ivanovitch. "Who then? Nevyedovsky?" said Levin, feeling he was putting his foot into it. But this was worse still. Nevyedovsky and Sviazhsky were the two candidates. "I certainly shall not, under any circumstances," answered the malignant gentleman. This was Nevyedovsky himself. Sviazhsky introduced him to Levin. "Well, you find it exciting too?" said Stepan Arkadyevitch, winking at Vronsky. "It's something like a race. One might bet on it." "Yes, it is keenly exciting," said Vronsky. "And once taking the thing up, one's eager to see it through. It's a fight!" he said, scowling and setting his powerful jaws. "What a capable fellow Sviazhsky is! Sees it all so clearly." "Oh, yes!" Vronsky assented indifferently. A silence followed, during which Vronsky--since he had to look at something--looked at Levin, at his feet, at his uniform, then at his face, and noticing his gloomy eyes fixed upon him, he said, in order to say something: "How is it that you, living constantly in the country, are not a justice of the peace? You are not in the uniform of one." "It's because I consider that the justice of the peace is a silly institution," Levin answered gloomily. He had been all the time looking for an opportunity to enter into conversation with Vronsky, so as to smooth over his rudeness at their first meeting. "I don't think so, quite the contrary," Vronsky said, with quiet surprise. "It's a plaything," Levin cut him short. "We don't want justices of the peace. I've never had a single thing to do with them during eight years. And what I have had was decided wrongly by them. The justice of the peace is over thirty miles from me. For some matter of two roubles I should have to send a lawyer, who costs me fifteen." And he related how a peasant had stolen some flour from the miller, and when the miller told him of it, had lodged a complaint for slander. All this was utterly uncalled for and stupid, and Levin felt it himself as he said it. "Oh, this is such an original fellow!" said Stepan Arkadyevitch with his most soothing, almond-oil smile. "But come along; I think they're voting...." And they separated. "I can't understand," said Sergey Ivanovitch, who had observed his brother's clumsiness, "I can't understand how anyone can be so absolutely devoid of political tact. That's where we Russians are so deficient. The marshal of the province is our opponent, and with him you're _ami cochon_, and you beg him to stand. Count Vronsky, now ... I'm not making a friend of him; he's asked me to dinner, and I'm not going; but he's one of our side--why make an enemy of him? Then you ask Nevyedovsky if he's going to stand. That's not a thing to do." "Oh, I don't understand it at all! And it's all such nonsense," Levin answered gloomily. "You say it's all such nonsense, but as soon as you have anything to do with it, you make a muddle." Levin did not answer, and they walked together into the big room. The marshal of the province, though he was vaguely conscious in the air of some trap being prepared for him, and though he had not been called upon by all to stand, had still made up his mind to stand. All was silence in the room. The secretary announced in a loud voice that the captain of the guards, Mihail Stepanovitch Snetkov, would now be balloted for as marshal of the province. The district marshals walked carrying plates, on which were balls, from their tables to the high table, and the election began. "Put it in the right side," whispered Stepan Arkadyevitch, as with his brother Levin followed the marshal of his district to the table. But Levin had forgotten by now the calculations that had been explained to him, and was afraid Stepan Arkadyevitch might be mistaken in saying "the right side." Surely Snetkov was the enemy. As he went up, he held the ball in his right hand, but thinking he was wrong, just at the box he changed to the left hand, and undoubtedly put the ball to the left. An adept in the business, standing at the box and seeing by the mere action of the elbow where each put his ball, scowled with annoyance. It was no good for him to use his insight. Everything was still, and the counting of the balls was heard. Then a single voice rose and proclaimed the numbers for and against. The marshal had been voted for by a considerable majority. All was noise and eager movement towards the doors. Snetkov came in, and the nobles thronged round him, congratulating him. "Well, now is it over?" Levin asked Sergey Ivanovitch. "It's only just beginning," Sviazhsky said, replying for Sergey Ivanovitch with a smile. "Some other candidate may receive more votes than the marshal." Levin had quite forgotten about that. Now he could only remember that there was some sort of trickery in it, but he was too bored to think what it was exactly. He felt depressed, and longed to get out of the crowd. As no one was paying any attention to him, and no one apparently needed him, he quietly slipped away into the little room where the refreshments were, and again had a great sense of comfort when he saw the waiters. The little old waiter pressed him to have something, and Levin agreed. After eating a cutlet with beans and talking to the waiters of their former masters, Levin, not wishing to go back to the hall, where it was all so distasteful to him, proceeded to walk through the galleries. The galleries were full of fashionably dressed ladies, leaning over the balustrade and trying not to lose a single word of what was being said below. With the ladies were sitting and standing smart lawyers, high school teachers in spectacles, and officers. Everywhere they were talking of the election, and of how worried the marshal was, and how splendid the discussions had been. In one group Levin heard his brother's praises. One lady was telling a lawyer: "How glad I am I heard Koznishev! It's worth losing one's dinner. He's exquisite! So clear and distinct all of it! There's not one of you in the law courts that speaks like that. The only one is Meidel, and he's not so eloquent by a long way." Finding a free place, Levin leaned over the balustrade and began looking and listening. All the noblemen were sitting railed off behind barriers according to their districts. In the middle of the room stood a man in a uniform, who shouted in a loud, high voice: "As a candidate for the marshalship of the nobility of the province we call upon staff-captain Yevgeney Ivanovitch Apuhtin!" A dead silence followed, and then a weak old voice was heard: "Declined!" "We call upon the privy councilor Pyotr Petrovitch Bol," the voice began again. "Declined!" a high boyish voice replied. Again it began, and again "Declined." And so it went on for about an hour. Levin, with his elbows on the balustrade, looked and listened. At first he wondered and wanted to know what it meant; then feeling sure that he could not make it out he began to be bored. Then recalling all the excitement and vindictiveness he had seen on all the faces, he felt sad; he made up his mind to go, and went downstairs. As he passed through the entry to the galleries he met a dejected high school boy walking up and down with tired-looking eyes. On the stairs he met a couple--a lady running quickly on her high heels and the jaunty deputy prosecutor. "I told you you weren't late," the deputy prosecutor was saying at the moment when Levin moved aside to let the lady pass. Levin was on the stairs to the way out, and was just feeling in his waistcoat pocket for the number of his overcoat, when the secretary overtook him. "This way, please, Konstantin Dmitrievitch; they are voting." The candidate who was being voted on was Nevyedovsky, who had so stoutly denied all idea of standing. Levin went up to the door of the room; it was locked. The secretary knocked, the door opened, and Levin was met by two red-faced gentlemen, who darted out. "I can't stand any more of it," said one red-faced gentleman. After them the face of the marshal of the province was poked out. His face was dreadful-looking from exhaustion and dismay. "I told you not to let any one out!" he cried to the doorkeeper. "I let someone in, your excellency!" "Mercy on us!" and with a heavy sigh the marshal of the province walked with downcast head to the high table in the middle of the room, his legs staggering in his white trousers. Nevyedovsky had scored a higher majority, as they had planned, and he was the new marshal of the province. Many people were amused, many were pleased and happy, many were in ecstasies, many were disgusted and unhappy. The former marshal of the province was in a state of despair, which he could not conceal. When Nevyedovsky went out of the room, the crowd thronged round him and followed him enthusiastically, just as they had followed the governor who had opened the meetings, and just as they had followed Snetkov when he was elected. Chapter 31 The newly elected marshal and many of the successful party dined that day with Vronsky. Vronsky had come to the elections partly because he was bored in the country and wanted to show Anna his right to independence, and also to repay Sviazhsky by his support at the election for all the trouble he had taken for Vronsky at the district council election, but chiefly in order strictly to perform all those duties of a nobleman and landowner which he had taken upon himself. But he had not in the least expected that the election would so interest him, so keenly excite him, and that he would be so good at this kind of thing. He was quite a new man in the circle of the nobility of the province, but his success was unmistakable, and he was not wrong in supposing that he had already obtained a certain influence. This influence was due to his wealth and reputation, the capital house in the town lent him by his old friend Shirkov, who had a post in the department of finances and was director of a flourishing bank in Kashin; the excellent cook Vronsky had brought from the country, and his friendship with the governor, who was a schoolfellow of Vronsky's--a schoolfellow he had patronized and protected indeed. But what contributed more than all to his success was his direct, equable manner with everyone, which very quickly made the majority of the noblemen reverse the current opinion of his supposed haughtiness. He was himself conscious that, except that whimsical gentleman married to Kitty Shtcherbatskaya, who had _a propos de bottes_ poured out a stream of irrelevant absurdities with such spiteful fury, every nobleman with whom he had made acquaintance had become his adherent. He saw clearly, and other people recognized it, too, that he had done a great deal to secure the success of Nevyedovsky. And now at his own table, celebrating Nevyedovsky's election, he was experiencing an agreeable sense of triumph over the success of his candidate. The election itself had so fascinated him that, if he could succeed in getting married during the next three years, he began to think of standing himself--much as after winning a race ridden by a jockey, he had longed to ride a race himself. Today he was celebrating the success of his jockey. Vronsky sat at the head of the table, on his right hand sat the young governor, a general of high rank. To all the rest he was the chief man in the province, who had solemnly opened the elections with his speech, and aroused a feeling of respect and even of awe in many people, as Vronsky saw; to Vronsky he was little Katka Maslov--that had been his nickname in the Pages' Corps--whom he felt to be shy and tried to _mettre a son aise_. On the left hand sat Nevyedovsky with his youthful, stubborn, and malignant face. With him Vronsky was simple and deferential. Sviazhsky took his failure very light-heartedly. It was indeed no failure in his eyes, as he said himself, turning, glass in hand, to Nevyedovsky; they could not have found a better representative of the new movement, which the nobility ought to follow. And so every honest person, as he said, was on the side of today's success and was rejoicing over it. Stepan Arkadyevitch was glad, too, that he was having a good time, and that everyone was pleased. The episode of the elections served as a good occasion for a capital dinner. Sviazhsky comically imitated the tearful discourse of the marshal, and observed, addressing Nevyedovsky, that his excellency would have to select another more complicated method of auditing the accounts than tears. Another nobleman jocosely described how footmen in stockings had been ordered for the marshal's ball, and how now they would have to be sent back unless the new marshal would give a ball with footmen in stockings. Continually during dinner they said of Nevyedovsky: "our marshal," and "your excellency." This was said with the same pleasure with which a bride is called "Madame" and her husband's name. Nevyedovsky affected to be not merely indifferent but scornful of this appellation, but it was obvious that he was highly delighted, and had to keep a curb on himself not to betray the triumph which was unsuitable to their new liberal tone. After dinner several telegrams were sent to people interested in the result of the election. And Stepan Arkadyevitch, who was in high good humor, sent Darya Alexandrovna a telegram: "Nevyedovsky elected by twenty votes. Congratulations. Tell people." He dictated it aloud, saying: "We must let them share our rejoicing." Darya Alexandrovna, getting the message, simply sighed over the rouble wasted on it, and understood that it was an after-dinner affair. She knew Stiva had a weakness after dining for _faire jouer le telegraphe._ Everything, together with the excellent dinner and the wine, not from Russian merchants, but imported direct from abroad, was extremely dignified, simple, and enjoyable. The party--some twenty--had been selected by Sviazhsky from among the more active new liberals, all of the same way of thinking, who were at the same time clever and well bred. They drank, also half in jest, to the health of the new marshal of the province, of the governor, of the bank director, and of "our amiable host." Vronsky was satisfied. He had never expected to find so pleasant a tone in the provinces. Towards the end of dinner it was still more lively. The governor asked Vronsky to come to a concert for the benefit of the Servians which his wife, who was anxious to make his acquaintance, had been getting up. "There'll be a ball, and you'll see the belle of the province. Worth seeing, really." "Not in my line," Vronsky answered. He liked that English phrase. But he smiled, and promised to come. Before they rose from the table, when all of them were smoking, Vronsky's valet went up to him with a letter on a tray. "From Vozdvizhenskoe by special messenger," he said with a significant expression. "Astonishing! how like he is to the deputy prosecutor Sventitsky," said one of the guests in French of the valet, while Vronsky, frowning, read the letter. The letter was from Anna. Before he read the letter, he knew its contents. Expecting the elections to be over in five days, he had promised to be back on Friday. Today was Saturday, and he knew that the letter contained reproaches for not being back at the time fixed. The letter he had sent the previous evening had probably not reached her yet. The letter was what he had expected, but the form of it was unexpected, and particularly disagreeable to him. "Annie is very ill, the doctor says it may be inflammation. I am losing my head all alone. Princess Varvara is no help, but a hindrance. I expected you the day before yesterday, and yesterday, and now I am sending to find out where you are and what you are doing. I wanted to come myself, but thought better of it, knowing you would dislike it. Send some answer, that I may know what to do." The child ill, yet she had thought of coming herself. Their daughter ill, and this hostile tone. The innocent festivities over the election, and this gloomy, burdensome love to which he had to return struck Vronsky by their contrast. But he had to go, and by the first train that night he set off home. Chapter 32 Before Vronsky's departure for the elections, Anna had reflected that the scenes constantly repeated between them each time he left home, might only make him cold to her instead of attaching him to her, and resolved to do all she could to control herself so as to bear the parting with composure. But the cold, severe glance with which he had looked at her when he came to tell her he was going had wounded her, and before he had started her peace of mind was destroyed. In solitude afterwards, thinking over that glance which had expressed his right to freedom, she came, as she always did, to the same point--the sense of her own humiliation. "He has the right to go away when and where he chooses. Not simply to go away, but to leave me. He has every right, and I have none. But knowing that, he ought not to do it. What has he done, though?... He looked at me with a cold, severe expression. Of course that is something indefinable, impalpable, but it has never been so before, and that glance means a great deal," she thought. "That glance shows the beginning of indifference." And though she felt sure that a coldness was beginning, there was nothing she could do, she could not in any way alter her relations to him. Just as before, only by love and by charm could she keep him. And so, just as before, only by occupation in the day, by morphine at night, could she stifle the fearful thought of what would be if he ceased to love her. It is true there was still one means; not to keep him--for that she wanted nothing more than his love--but to be nearer to him, to be in such a position that he would not leave her. That means was divorce and marriage. And she began to long for that, and made up her mind to agree to it the first time he or Stiva approached her on the subject. Absorbed in such thoughts, she passed five days without him, the five days that he was to be at the elections. Walks, conversation with Princess Varvara, visits to the hospital, and, most of all, reading--reading of one book after another--filled up her time. But on the sixth day, when the coachman came back without him, she felt that now she was utterly incapable of stifling the thought of him and of what he was doing there, just at that time her little girl was taken ill. Anna began to look after her, but even that did not distract her mind, especially as the illness was not serious. However hard she tried, she could not love this little child, and to feign love was beyond her powers. Towards the evening of that day, still alone, Anna was in such a panic about him that she decided to start for the town, but on second thoughts wrote him the contradictory letter that Vronsky received, and without reading it through, sent it off by a special messenger. The next morning she received his letter and regretted her own. She dreaded a repetition of the severe look he had flung at her at parting, especially when he knew that the baby was not dangerously ill. But still she was glad she had written to him. At this moment Anna was positively admitting to herself that she was a burden to him, that he would relinquish his freedom regretfully to return to her, and in spite of that she was glad he was coming. Let him weary of her, but he would be here with her, so that she would see him, would know of every action he took. She was sitting in the drawing room near a lamp, with a new volume of Taine, and as she read, listening to the sound of the wind outside, and every minute expecting the carriage to arrive. Several times she had fancied she heard the sound of wheels, but she had been mistaken. At last she heard not the sound of wheels, but the coachman's shout and the dull rumble in the covered entry. Even Princess Varvara, playing patience, confirmed this, and Anna, flushing hotly, got up; but instead of going down, as she had done twice before, she stood still. She suddenly felt ashamed of her duplicity, but even more she dreaded how he might meet her. All feeling of wounded pride had passed now; she was only afraid of the expression of his displeasure. She remembered that her child had been perfectly well again for the last two days. She felt positively vexed with her for getting better from the very moment her letter was sent off. Then she thought of him, that he was here, all of him, with his hands, his eyes. She heard his voice. And forgetting everything, she ran joyfully to meet him. "Well, how is Annie?" he said timidly from below, looking up to Anna as she ran down to him. He was sitting on a chair, and a footman was pulling off his warm over-boot. "Oh, she is better." "And you?" he said, shaking himself. She took his hand in both of hers, and drew it to her waist, never taking her eyes off him. "Well, I'm glad," he said, coldly scanning her, her hair, her dress, which he knew she had put on for him. All was charming, but how many times it had charmed him! And the stern, stony expression that she so dreaded settled upon his face. "Well, I'm glad. And are you well?" he said, wiping his damp beard with his handkerchief and kissing her hand. "Never mind," she thought, "only let him be here, and so long as he's here he cannot, he dare not, cease to love me." The evening was spent happily and gaily in the presence of Princess Varvara, who complained to him that Anna had been taking morphine in his absence. "What am I to do? I couldn't sleep.... My thoughts prevented me. When he's here I never take it--hardly ever." He told her about the election, and Anna knew how by adroit questions to bring him to what gave him most pleasure--his own success. She told him of everything that interested him at home; and all that she told him was of the most cheerful description. But late in the evening, when they were alone, Anna, seeing that she had regained complete possession of him, wanted to erase the painful impression of the glance he had given her for her letter. She said: "Tell me frankly, you were vexed at getting my letter, and you didn't believe me?" As soon as she had said it, she felt that however warm his feelings were to her, he had not forgiven her for that. "Yes," he said, "the letter was so strange. First, Annie ill, and then you thought of coming yourself." "It was all the truth." "Oh, I don't doubt it." "Yes, you do doubt it. You are vexed, I see." "Not for one moment. I'm only vexed, that's true, that you seem somehow unwilling to admit that there are duties..." "The duty of going to a concert..." "But we won't talk about it," he said. "Why not talk about it?" she said. "I only meant to say that matters of real importance may turn up. Now, for instance, I shall have to go to Moscow to arrange about the house.... Oh, Anna, why are you so irritable? Don't you know that I can't live without you?" "If so," said Anna, her voice suddenly changing, "it means that you are sick of this life.... Yes, you will come for a day and go away, as men do..." "Anna, that's cruel. I am ready to give up my whole life." But she did not hear him. "If you go to Moscow, I will go too. I will not stay here. Either we must separate or else live together." "Why, you know, that's my one desire. But for that..." "We must get a divorce. I will write to him. I see I cannot go on like this.... But I will come with you to Moscow." "You talk as if you were threatening me. But I desire nothing so much as never to be parted from you," said Vronsky, smiling. But as he said these words there gleamed in his eyes not merely a cold look, but the vindictive look of a man persecuted and made cruel. She saw the look and correctly divined its meaning. "If so, it's a calamity!" that glance told her. It was a moment's impression, but she never forgot it. Anna wrote to her husband asking him about a divorce, and towards the end of November, taking leave of Princess Varvara, who wanted to go to Petersburg, she went with Vronsky to Moscow. Expecting every day an answer from Alexey Alexandrovitch, and after that the divorce, they now established themselves together like married people. PART SEVEN Chapter 1 The Levins had been three months in Moscow. The date had long passed on which, according to the most trustworthy calculations of people learned in such matters, Kitty should have been confined. But she was still about, and there was nothing to show that her time was any nearer than two months ago. The doctor, the monthly nurse, and Dolly and her mother, and most of all Levin, who could not think of the approaching event without terror, began to be impatient and uneasy. Kitty was the only person who felt perfectly calm and happy. She was distinctly conscious now of the birth of a new feeling of love for the future child, for her to some extent actually existing already, and she brooded blissfully over this feeling. He was not by now altogether a part of herself, but sometimes lived his own life independently of her. Often this separate being gave her pain, but at the same time she wanted to laugh with a strange new joy. All the people she loved were with her, and all were so good to her, so attentively caring for her, so entirely pleasant was everything presented to her, that if she had not known and felt that it must all soon be over, she could not have wished for a better and pleasanter life. The only thing that spoiled the charm of this manner of life was that her husband was not here as she loved him to be, and as he was in the country. She liked his serene, friendly, and hospitable manner in the country. In the town he seemed continually uneasy and on his guard, as though he were afraid someone would be rude to him, and still more to her. At home in the country, knowing himself distinctly to be in his right place, he was never in haste to be off elsewhere. He was never unoccupied. Here in town he was in a continual hurry, as though afraid of missing something, and yet he had nothing to do. And she felt sorry for him. To others, she knew, he did not appear an object of pity. On the contrary, when Kitty looked at him in society, as one sometimes looks at those one loves, trying to see him as if he were a stranger, so as to catch the impression he must make on others, she saw with a panic even of jealous fear that he was far indeed from being a pitiable figure, that he was very attractive with his fine breeding, his rather old-fashioned, reserved courtesy with women, his powerful figure, and striking, as she thought, and expressive face. But she saw him not from without, but from within; she saw that here he was not himself; that was the only way she could define his condition to herself. Sometimes she inwardly reproached him for his inability to live in the town; sometimes she recognized that it was really hard for him to order his life here so that he could be satisfied with it. What had he to do, indeed? He did not care for cards; he did not go to a club. Spending the time with jovial gentlemen of Oblonsky's type--she knew now what that meant ... it meant drinking and going somewhere after drinking. She could not think without horror of where men went on such occasions. Was he to go into society? But she knew he could only find satisfaction in that if he took pleasure in the society of young women, and that she could not wish for. Should he stay at home with her, her mother and her sisters? But much as she liked and enjoyed their conversations forever on the same subjects--"Aline-Nadine," as the old prince called the sisters' talks--she knew it must bore him. What was there left for him to do? To go on writing at his book he had indeed attempted, and at first he used to go to the library and make extracts and look up references for his book. But, as he told her, the more he did nothing, the less time he had to do anything. And besides, he complained that he had talked too much about his book here, and that consequently all his ideas about it were muddled and had lost their interest for him. One advantage in this town life was that quarrels hardly ever happened between them here in town. Whether it was that their conditions were different, or that they had both become more careful and sensible in that respect, they had no quarrels in Moscow from jealousy, which they had so dreaded when they moved from the country. One event, an event of great importance to both from that point of view, did indeed happen--that was Kitty's meeting with Vronsky. The old Princess Marya Borissovna, Kitty's godmother, who had always been very fond of her, had insisted on seeing her. Kitty, though she did not go into society at all on account of her condition, went with her father to see the venerable old lady, and there met Vronsky. The only thing Kitty could reproach herself for at this meeting was that at the instant when she recognized in his civilian dress the features once so familiar to her, her breath failed her, the blood rushed to her heart, and a vivid blush--she felt it--overspread her face. But this lasted only a few seconds. Before her father, who purposely began talking in a loud voice to Vronsky, had finished, she was perfectly ready to look at Vronsky, to speak to him, if necessary, exactly as she spoke to Princess Marya Borissovna, and more than that, to do so in such a way that everything to the faintest intonation and smile would have been approved by her husband, whose unseen presence she seemed to feel about her at that instant. She said a few words to him, even smiled serenely at his joke about the elections, which he called "our parliament." (She had to smile to show she saw the joke.) But she turned away immediately to Princess Marya Borissovna, and did not once glance at him till he got up to go; then she looked at him, but evidently only because it would be uncivil not to look at a man when he is saying good-bye. She was grateful to her father for saying nothing to her about their meeting Vronsky, but she saw by his special warmth to her after the visit during their usual walk that he was pleased with her. She was pleased with herself. She had not expected she would have had the power, while keeping somewhere in the bottom of her heart all the memories of her old feeling for Vronsky, not only to seem but to be perfectly indifferent and composed with him. Levin flushed a great deal more than she when she told him she had met Vronsky at Princess Marya Borissovna's. It was very hard for her to tell him this, but still harder to go on speaking of the details of the meeting, as he did not question her, but simply gazed at her with a frown. "I am very sorry you weren't there," she said. "Not that you weren't in the room ... I couldn't have been so natural in your presence ... I am blushing now much more, much, much more," she said, blushing till the tears came into her eyes. "But that you couldn't see through a crack." The truthful eyes told Levin that she was satisfied with herself, and in spite of her blushing he was quickly reassured and began questioning her, which was all she wanted. When he had heard everything, even to the detail that for the first second she could not help flushing, but that afterwards she was just as direct and as much at her ease as with any chance acquaintance, Levin was quite happy again and said he was glad of it, and would not now behave as stupidly as he had done at the election, but would try the first time he met Vronsky to be as friendly as possible. "It's so wretched to feel that there's a man almost an enemy whom it's painful to meet," said Levin. "I'm very, very glad." Chapter 2 "Go, please, go then and call on the Bols," Kitty said to her husband, when he came in to see her at eleven o'clock before going out. "I know you are dining at the club; papa put down your name. But what are you going to do in the morning?" "I am only going to Katavasov," answered Levin. "Why so early?" "He promised to introduce me to Metrov. I wanted to talk to him about my work. He's a distinguished scientific man from Petersburg," said Levin. "Yes; wasn't it his article you were praising so? Well, and after that?" said Kitty. "I shall go to the court, perhaps, about my sister's business." "And the concert?" she queried. "I shan't go there all alone." "No? do go; there are going to be some new things.... That interested you so. I should certainly go." "Well, anyway, I shall come home before dinner," he said, looking at his watch. "Put on your frock coat, so that you can go straight to call on Countess Bola." "But is it absolutely necessary?" "Oh, absolutely! He has been to see us. Come, what is it? You go in, sit down, talk for five minutes of the weather, get up and go away." "Oh, you wouldn't believe it! I've got so out of the way of all this that it makes me feel positively ashamed. It's such a horrible thing to do! A complete outsider walks in, sits down, stays on with nothing to do, wastes their time and worries himself, and walks away!" Kitty laughed. "Why, I suppose you used to pay calls before you were married, didn't you?" "Yes, I did, but I always felt ashamed, and now I'm so out of the way of it that, by Jove! I'd sooner go two days running without my dinner than pay this call! One's so ashamed! I feel all the while that they're annoyed, that they're saying, 'What has he come for?'" "No, they won't. I'll answer for that," said Kitty, looking into his face with a laugh. She took his hand. "Well, good-bye.... Do go, please." He was just going out after kissing his wife's hand, when she stopped him. "Kostya, do you know I've only fifty roubles left?" "Oh, all right, I'll go to the bank and get some. How much?" he said, with the expression of dissatisfaction she knew so well. "No, wait a minute." She held his hand. "Let's talk about it, it worries me. I seem to spend nothing unnecessary, but money seems to fly away simply. We don't manage well, somehow." "Oh, it's all right," he said with a little cough, looking at her from under his brows. That cough she knew well. It was a sign of intense dissatisfaction, not with her, but with himself. He certainly was displeased not at so much money being spent, but at being reminded of what he, knowing something was unsatisfactory, wanted to forget. "I have told Sokolov to sell the wheat, and to borrow an advance on the mill. We shall have money enough in any case." "Yes, but I'm afraid that altogether..." "Oh, it's all right, all right," he repeated. "Well, good-bye, darling." "No, I'm really sorry sometimes that I listened to mamma. How nice it would have been in the country! As it is, I'm worrying you all, and we're wasting our money." "Not at all, not at all. Not once since I've been married have I said that things could have been better than they are...." "Truly?" she said, looking into his eyes. He had said it without thinking, simply to console her. But when he glanced at her and saw those sweet truthful eyes fastened questioningly on him, he repeated it with his whole heart. "I was positively forgetting her," he thought. And he remembered what was before them, so soon to come. "Will it be soon? How do you feel?" he whispered, taking her two hands. "I have so often thought so, that now I don't think about it or know anything about it." "And you're not frightened?" She smiled contemptuously. "Not the least little bit," she said. "Well, if anything happens, I shall be at Katavasov's." "No, nothing will happen, and don't think about it. I'm going for a walk on the boulevard with papa. We're going to see Dolly. I shall expect you before dinner. Oh, yes! Do you know that Dolly's position is becoming utterly impossible? She's in debt all round; she hasn't a penny. We were talking yesterday with mamma and Arseny" (this was her sister's husband Lvov), "and we determined to send you with him to talk to Stiva. It's really unbearable. One can't speak to papa about it.... But if you and he..." "Why, what can we do?" said Levin. "You'll be at Arseny's, anyway; talk to him, he will tell what we decided." "Oh, I agree to everything Arseny thinks beforehand. I'll go and see him. By the way, if I do go to the concert, I'll go with Natalia. Well, good-bye." On the steps Levin was stopped by his old servant Kouzma, who had been with him before his marriage, and now looked after their household in town. "Beauty" (that was the left shaft-horse brought up from the country) "has been badly shod and is quite lame," he said. "What does your honor wish to be done?" During the first part of their stay in Moscow, Levin had used his own horses brought up from the country. He had tried to arrange this part of their expenses in the best and cheapest way possible; but it appeared that their own horses came dearer than hired horses, and they still hired too. "Send for the veterinary, there may be a bruise." "And for Katerina Alexandrovna?" asked Kouzma. Levin was not by now struck as he had been at first by the fact that to get from one end of Moscow to the other he had to have two powerful horses put into a heavy carriage, to take the carriage three miles through the snowy slush and to keep it standing there four hours, paying five roubles every time. Now it seemed quite natural. "Hire a pair for our carriage from the jobmaster," said he. "Yes, sir." And so, simply and easily, thanks to the facilities of town life, Levin settled a question which, in the country, would have called for so much personal trouble and exertion, and going out onto the steps, he called a sledge, sat down, and drove to Nikitsky. On the way he thought no more of money, but mused on the introduction that awaited him to the Petersburg savant, a writer on sociology, and what he would say to him about his book. Only during the first days of his stay in Moscow Levin had been struck by the expenditure, strange to one living in the country, unproductive but inevitable, that was expected of him on every side. But by now he had grown used to it. That had happened to him in this matter which is said to happen to drunkards--the first glass sticks in the throat, the second flies down like a hawk, but after the third they're like tiny little birds. When Levin had changed his first hundred-rouble note to pay for liveries for his footmen and hall-porter he could not help reflecting that these liveries were of no use to anyone--but they were indubitably necessary, to judge by the amazement of the princess and Kitty when he suggested that they might do without liveries,--that these liveries would cost the wages of two laborers for the summer, that is, would pay for about three hundred working days from Easter to Ash Wednesday, and each a day of hard work from early morning to late evening--and that hundred-rouble note did stick in his throat. But the next note, changed to pay for providing a dinner for their relations, that cost twenty-eight roubles, though it did excite in Levin the reflection that twenty-eight roubles meant nine measures of oats, which men would with groans and sweat have reaped and bound and thrashed and winnowed and sifted and sown,--this next one he parted with more easily. And now the notes he changed no longer aroused such reflections, and they flew off like little birds. Whether the labor devoted to obtaining the money corresponded to the pleasure given by what was bought with it, was a consideration he had long ago dismissed. His business calculation that there was a certain price below which he could not sell certain grain was forgotten too. The rye, for the price of which he had so long held out, had been sold for fifty kopecks a measure cheaper than it had been fetching a month ago. Even the consideration that with such an expenditure he could not go on living for a year without debt, that even had no force. Only one thing was essential: to have money in the bank, without inquiring where it came from, so as to know that one had the wherewithal to buy meat for tomorrow. And this condition had hitherto been fulfilled; he had always had the money in the bank. But now the money in the bank had gone, and he could not quite tell where to get the next installment. And this it was which, at the moment when Kitty had mentioned money, had disturbed him; but he had no time to think about it. He drove off, thinking of Katavasov and the meeting with Metrov that was before him. Chapter 3 Levin had on this visit to town seen a great deal of his old friend at the university, Professor Katavasov, whom he had not seen since his marriage. He liked in Katavasov the clearness and simplicity of his conception of life. Levin thought that the clearness of Katavasov's conception of life was due to the poverty of his nature; Katavasov thought that the disconnectedness of Levin's ideas was due to his lack of intellectual discipline; but Levin enjoyed Katavasov's clearness, and Katavasov enjoyed the abundance of Levin's untrained ideas, and they liked to meet and to discuss. Levin had read Katavasov some parts of his book, and he had liked them. On the previous day Katavasov had met Levin at a public lecture and told him that the celebrated Metrov, whose article Levin had so much liked, was in Moscow, that he had been much interested by what Katavasov had told him about Levin's work, and that he was coming to see him tomorrow at eleven, and would be very glad to make Levin's acquaintance. "You're positively a reformed character, I'm glad to see," said Katavasov, meeting Levin in the little drawing room. "I heard the bell and thought: Impossible that it can be he at the exact time!... Well, what do you say to the Montenegrins now? They're a race of warriors." "Why, what's happened?" asked Levin. Katavasov in a few words told him the last piece of news from the war, and going into his study, introduced Levin to a short, thick-set man of pleasant appearance. This was Metrov. The conversation touched for a brief space on politics and on how recent events were looked at in the higher spheres in Petersburg. Metrov repeated a saying that had reached him through a most trustworthy source, reported as having been uttered on this subject by the Tsar and one of the ministers. Katavasov had heard also on excellent authority that the Tsar had said something quite different. Levin tried to imagine circumstances in which both sayings might have been uttered, and the conversation on that topic dropped. "Yes, here he's written almost a book on the natural conditions of the laborer in relation to the land," said Katavasov; "I'm not a specialist, but I, as a natural science man, was pleased at his not taking mankind as something outside biological laws; but, on the contrary, seeing his dependence on his surroundings, and in that dependence seeking the laws of his development." "That's very interesting," said Metrov. "What I began precisely was to write a book on agriculture; but studying the chief instrument of agriculture, the laborer," said Levin, reddening, "I could not help coming to quite unexpected results." And Levin began carefully, as it were, feeling his ground, to expound his views. He knew Metrov had written an article against the generally accepted theory of political economy, but to what extent he could reckon on his sympathy with his own new views he did not know and could not guess from the clever and serene face of the learned man. "But in what do you see the special characteristics of the Russian laborer?" said Metrov; "in his biological characteristics, so to speak, or in the condition in which he is placed?" Levin saw that there was an idea underlying this question with which he did not agree. But he went on explaining his own idea that the Russian laborer has a quite special view of the land, different from that of other people; and to support this proposition he made haste to add that in his opinion this attitude of the Russian peasant was due to the consciousness of his vocation to people vast unoccupied expanses in the East. "One may easily be led into error in basing any conclusion on the general vocation of a people," said Metrov, interrupting Levin. "The condition of the laborer will always depend on his relation to the land and to capital." And without letting Levin finish explaining his idea, Metrov began expounding to him the special point of his own theory. In what the point of his theory lay, Levin did not understand, because he did not take the trouble to understand. He saw that Metrov, like other people, in spite of his own article, in which he had attacked the current theory of political economy, looked at the position of the Russian peasant simply from the point of view of capital, wages, and rent. He would indeed have been obliged to admit that in the eastern--much the larger--part of Russia rent was as yet nil, that for nine-tenths of the eighty millions of the Russian peasants wages took the form simply of food provided for themselves, and that capital does not so far exist except in the form of the most primitive tools. Yet it was only from that point of view that he considered every laborer, though in many points he differed from the economists and had his own theory of the wage-fund, which he expounded to Levin. Levin listened reluctantly, and at first made objections. He would have liked to interrupt Metrov, to explain his own thought, which in his opinion would have rendered further exposition of Metrov's theories superfluous. But later on, feeling convinced that they looked at the matter so differently, that they could never understand one another, he did not even oppose his statements, but simply listened. Although what Metrov was saying was by now utterly devoid of interest for him, he yet experienced a certain satisfaction in listening to him. It flattered his vanity that such a learned man should explain his ideas to him so eagerly, with such intensity and confidence in Levin's understanding of the subject, sometimes with a mere hint referring him to a whole aspect of the subject. He put this down to his own credit, unaware that Metrov, who had already discussed his theory over and over again with all his intimate friends, talked of it with special eagerness to every new person, and in general was eager to talk to anyone of any subject that interested him, even if still obscure to himself. "We are late though," said Katavasov, looking at his watch directly Metrov had finished his discourse. "Yes, there's a meeting of the Society of Amateurs today in commemoration of the jubilee of Svintitch," said Katavasov in answer to Levin's inquiry. "Pyotr Ivanovitch and I were going. I've promised to deliver an address on his labors in zoology. Come along with us, it's very interesting." "Yes, and indeed it's time to start," said Metrov. "Come with us, and from there, if you care to, come to my place. I should very much like to hear your work." "Oh, no! It's no good yet, it's unfinished. But I shall be very glad to go to the meeting." "I say, friends, have you heard? He has handed in the separate report," Katavasov called from the other room, where he was putting on his frock coat. And a conversation sprang up upon the university question, which was a very important event that winter in Moscow. Three old professors in the council had not accepted the opinion of the younger professors. The young ones had registered a separate resolution. This, in the judgment of some people, was monstrous, in the judgment of others it was the simplest and most just thing to do, and the professors were split up into two parties. One party, to which Katavasov belonged, saw in the opposite party a scoundrelly betrayal and treachery, while the opposite party saw in them childishness and lack of respect for the authorities. Levin, though he did not belong to the university, had several times already during his stay in Moscow heard and talked about this matter, and had his own opinion on the subject. He took part in the conversation that was continued in the street, as they all three walked to the buildings of the old university. The meeting had already begun. Round the cloth-covered table, at which Katavasov and Metrov seated themselves, there were some half-dozen persons, and one of these was bending close over a manuscript, reading something aloud. Levin sat down in one of the empty chairs that were standing round the table, and in a whisper asked a student sitting near what was being read. The student, eyeing Levin with displeasure, said: "Biography." Though Levin was not interested in the biography, he could not help listening, and learned some new and interesting facts about the life of the distinguished man of science. When the reader had finished, the chairman thanked him and read some verses of the poet Ment sent him on the jubilee, and said a few words by way of thanks to the poet. Then Katavasov in his loud, ringing voice read his address on the scientific labors of the man whose jubilee was being kept. When Katavasov had finished, Levin looked at his watch, saw it was past one, and thought that there would not be time before the concert to read Metrov his book, and indeed, he did not now care to do so. During the reading he had thought over their conversation. He saw distinctly now that though Metrov's ideas might perhaps have value, his own ideas had a value too, and their ideas could only be made clear and lead to something if each worked separately in his chosen path, and that nothing would be gained by putting their ideas together. And having made up his mind to refuse Metrov's invitation, Levin went up to him at the end of the meeting. Metrov introduced Levin to the chairman, with whom he was talking of the political news. Metrov told the chairman what he had already told Levin, and Levin made the same remarks on his news that he had already made that morning, but for the sake of variety he expressed also a new opinion which had only just struck him. After that the conversation turned again on the university question. As Levin had already heard it all, he made haste to tell Metrov that he was sorry he could not take advantage of his invitation, took leave, and drove to Lvov's. Chapter 4 Lvov, the husband of Natalia, Kitty's sister, had spent all his life in foreign capitals, where he had been educated, and had been in the diplomatic service. During the previous year he had left the diplomatic service, not owing to any "unpleasantness" (he never had any "unpleasantness" with anyone), and was transferred to the department of the court of the palace in Moscow, in order to give his two boys the best education possible. In spite of the striking contrast in their habits and views and the fact that Lvov was older than Levin, they had seen a great deal of one another that winter, and had taken a great liking to each other. Lvov was at home, and Levin went in to him unannounced. Lvov, in a house coat with a belt and in chamois leather shoes, was sitting in an armchair, and with a pince-nez with blue glasses he was reading a book that stood on a reading desk, while in his beautiful hand he held a half-burned cigarette daintily away from him. His handsome, delicate, and still youthful-looking face, to which his curly, glistening silvery hair gave a still more aristocratic air, lighted up with a smile when he saw Levin. "Capital! I was meaning to send to you. How's Kitty? Sit here, it's more comfortable." He got up and pushed up a rocking chair. "Have you read the last circular in the _Journal de St. Petersbourg?_ I think it's excellent," he said, with a slight French accent. Levin told him what he had heard from Katavasov was being said in Petersburg, and after talking a little about politics, he told him of his interview with Metrov, and the learned society's meeting. To Lvov it was very interesting. "That's what I envy you, that you are able to mix in these interesting scientific circles," he said. And as he talked, he passed as usual into French, which was easier to him. "It's true I haven't the time for it. My official work and the children leave me no time; and then I'm not ashamed to own that my education has been too defective." "That I don't believe," said Levin with a smile, feeling, as he always did, touched at Lvov's low opinion of himself, which was not in the least put on from a desire to seem or to be modest, but was absolutely sincere. "Oh, yes, indeed! I feel now how badly educated I am. To educate my children I positively have to look up a great deal, and in fact simply to study myself. For it's not enough to have teachers, there must be someone to look after them, just as on your land you want laborers and an overseer. See what I'm reading"--he pointed to Buslaev's _Grammar_ on the desk--"it's expected of Misha, and it's so difficult.... Come, explain to me.... Here he says..." Levin tried to explain to him that it couldn't be understood, but that it had to be taught; but Lvov would not agree with him. "Oh, you're laughing at it!" "On the contrary, you can't imagine how, when I look at you, I'm always learning the task that lies before me, that is the education of one's children." "Well, there's nothing for you to learn," said Lvov. "All I know," said Levin, "is that I have never seen better brought-up children than yours, and I wouldn't wish for children better than yours." Lvov visibly tried to restrain the expression of his delight, but he was positively radiant with smiles. "If only they're better than I! That's all I desire. You don't know yet all the work," he said, "with boys who've been left like mine to run wild abroad." "You'll catch all that up. They're such clever children. The great thing is the education of character. That's what I learn when I look at your children." "You talk of the education of character. You can't imagine how difficult that is! You have hardly succeeded in combating one tendency when others crop up, and the struggle begins again. If one had not a support in religion--you remember we talked about that--no father could bring children up relying on his own strength alone without that help." This subject, which always interested Levin, was cut short by the entrance of the beauty Natalia Alexandrovna, dressed to go out. "I didn't know you were here," she said, unmistakably feeling no regret, but a positive pleasure, in interrupting this conversation on a topic she had heard so much of that she was by now weary of it. "Well, how is Kitty? I am dining with you today. I tell you what, Arseny," she turned to her husband, "you take the carriage." And the husband and wife began to discuss their arrangements for the day. As the husband had to drive to meet someone on official business, while the wife had to go to the concert and some public meeting of a committee on the Eastern Question, there was a great deal to consider and settle. Levin had to take part in their plans as one of themselves. It was settled that Levin should go with Natalia to the concert and the meeting, and that from there they should send the carriage to the office for Arseny, and he should call for her and take her to Kitty's; or that, if he had not finished his work, he should send the carriage back and Levin would go with her. "He's spoiling me," Lvov said to his wife; "he assures me that our children are splendid, when I know how much that's bad there is in them." "Arseny goes to extremes, I always say," said his wife. "If you look for perfection, you will never be satisfied. And it's true, as papa says,--that when we were brought up there was one extreme--we were kept in the basement, while our parents lived in the best rooms; now it's just the other way--the parents are in the wash house, while the children are in the best rooms. Parents now are not expected to live at all, but to exist altogether for their children." "Well, what if they like it better?" Lvov said, with his beautiful smile, touching her hand. "Anyone who didn't know you would think you were a stepmother, not a true mother." "No, extremes are not good in anything," Natalia said serenely, putting his paper knife straight in its proper place on the table. "Well, come here, you perfect children," Lvov said to the two handsome boys who came in, and after bowing to Levin, went up to their father, obviously wishing to ask him about something. Levin would have liked to talk to them, to hear what they would say to their father, but Natalia began talking to him, and then Lvov's colleague in the service, Mahotin, walked in, wearing his court uniform, to go with him to meet someone, and a conversation was kept up without a break upon Herzegovina, Princess Korzinskaya, the town council, and the sudden death of Madame Apraksina. Levin even forgot the commission intrusted to him. He recollected it as he was going into the hall. "Oh, Kitty told me to talk to you about Oblonsky," he said, as Lvov was standing on the stairs, seeing his wife and Levin off. "Yes, yes, maman wants us, _les beaux-freres,_ to attack him," he said, blushing. "But why should I?" "Well, then, I will attack him," said Madame Lvova, with a smile, standing in her white sheepskin cape, waiting till they had finished speaking. "Come, let us go." Chapter 5 At the concert in the afternoon two very interesting things were performed. One was a fantasia, _King Lear;_ the other was a quartette dedicated to the memory of Bach. Both were new and in the new style, and Levin was eager to form an opinion of them. After escorting his sister-in-law to her stall, he stood against a column and tried to listen as attentively and conscientiously as possible. He tried not to let his attention be distracted, and not to spoil his impression by looking at the conductor in a white tie, waving his arms, which always disturbed his enjoyment of music so much, or the ladies in bonnets, with strings carefully tied over their ears, and all these people either thinking of nothing at all or thinking of all sorts of things except the music. He tried to avoid meeting musical connoisseurs or talkative acquaintances, and stood looking at the floor straight before him, listening. But the more he listened to the fantasia of King Lear the further he felt from forming any definite opinion of it. There was, as it were, a continual beginning, a preparation of the musical expression of some feeling, but it fell to pieces again directly, breaking into new musical motives, or simply nothing but the whims of the composer, exceedingly complex but disconnected sounds. And these fragmentary musical expressions, though sometimes beautiful, were disagreeable, because they were utterly unexpected and not led up to by anything. Gaiety and grief and despair and tenderness and triumph followed one another without any connection, like the emotions of a madman. And those emotions, like a madman's, sprang up quite unexpectedly. During the whole of the performance Levin felt like a deaf man watching people dancing, and was in a state of complete bewilderment when the fantasia was over, and felt a great weariness from the fruitless strain on his attention. Loud applause resounded on all sides. Everyone got up, moved about, and began talking. Anxious to throw some light on his own perplexity from the impressions of others, Levin began to walk about, looking for connoisseurs, and was glad to see a well-known musical amateur in conversation with Pestsov, whom he knew. "Marvelous!" Pestsov was saying in his mellow bass. "How are you, Konstantin Dmitrievitch? Particularly sculpturesque and plastic, so to say, and richly colored is that passage where you feel Cordelia's approach, where woman, _das ewig Weibliche,_ enters into conflict with fate. Isn't it?" "You mean ... what has Cordelia to do with it?" Levin asked timidly, forgetting that the fantasia was supposed to represent King Lear. "Cordelia comes in ... see here!" said Pestsov, tapping his finger on the satiny surface of the program he held in his hand and passing it to Levin. Only then Levin recollected the title of the fantasia, and made haste to read in the Russian translation the lines from Shakespeare that were printed on the back of the program. "You can't follow it without that," said Pestsov, addressing Levin, as the person he had been speaking to had gone away, and he had no one to talk to. In the _entr'acte_ Levin and Pestsov fell into an argument upon the merits and defects of music of the Wagner school. Levin maintained that the mistake of Wagner and all his followers lay in their trying to take music into the sphere of another art, just as poetry goes wrong when it tries to paint a face as the art of painting ought to do, and as an instance of this mistake he cited the sculptor who carved in marble certain poetic phantasms flitting round the figure of the poet on the pedestal. "These phantoms were so far from being phantoms that they were positively clinging on the ladder," said Levin. The comparison pleased him, but he could not remember whether he had not used the same phrase before, and to Pestsov, too, and as he said it he felt confused. Pestsov maintained that art is one, and that it can attain its highest manifestations only by conjunction with all kinds of art. The second piece that was performed Levin could not hear. Pestsov, who was standing beside him, was talking to him almost all the time, condemning the music for its excessive affected assumption of simplicity, and comparing it with the simplicity of the Pre-Raphaelites in painting. As he went out Levin met many more acquaintances, with whom he talked of politics, of music, and of common acquaintances. Among others he met Count Bol, whom he had utterly forgotten to call upon. "Well, go at once then," Madame Lvova said, when he told her; "perhaps they'll not be at home, and then you can come to the meeting to fetch me. You'll find me still there." Chapter 6 "Perhaps they're not at home?" said Levin, as he went into the hall of Countess Bola's house. "At home; please walk in," said the porter, resolutely removing his overcoat. "How annoying!" thought Levin with a sigh, taking off one glove and stroking his hat. "What did I come for? What have I to say to them?" As he passed through the first drawing room Levin met in the doorway Countess Bola, giving some order to a servant with a care-worn and severe face. On seeing Levin she smiled, and asked him to come into the little drawing room, where he heard voices. In this room there were sitting in armchairs the two daughters of the countess, and a Moscow colonel, whom Levin knew. Levin went up, greeted them, and sat down beside the sofa with his hat on his knees. "How is your wife? Have you been at the concert? We couldn't go. Mamma had to be at the funeral service." "Yes, I heard.... What a sudden death!" said Levin. The countess came in, sat down on the sofa, and she too asked after his wife and inquired about the concert. Levin answered, and repeated an inquiry about Madame Apraksina's sudden death. "But she was always in weak health." "Were you at the opera yesterday?" "Yes, I was." "Lucca was very good." "Yes, very good," he said, and as it was utterly of no consequence to him what they thought of him, he began repeating what they had heard a hundred times about the characteristics of the singer's talent. Countess Bola pretended to be listening. Then, when he had said enough and paused, the colonel, who had been silent till then, began to talk. The colonel too talked of the opera, and about culture. At last, after speaking of the proposed _folle journee_ at Turin's, the colonel laughed, got up noisily, and went away. Levin too rose, but he saw by the face of the countess that it was not yet time for him to go. He must stay two minutes longer. He sat down. But as he was thinking all the while how stupid it was, he could not find a subject for conversation, and sat silent. "You are not going to the public meeting? They say it will be very interesting," began the countess. "No, I promised my _belle-soeur_ to fetch her from it," said Levin. A silence followed. The mother once more exchanged glances with a daughter. "Well, now I think the time has come," thought Levin, and he got up. The ladies shook hands with him, and begged him to say _mille choses_ to his wife for them. The porter asked him, as he gave him his coat, "Where is your honor staying?" and immediately wrote down his address in a big handsomely bound book. "Of course I don't care, but still I feel ashamed and awfully stupid," thought Levin, consoling himself with the reflection that everyone does it. He drove to the public meeting, where he was to find his sister-in-law, so as to drive home with her. At the public meeting of the committee there were a great many people, and almost all the highest society. Levin was in time for the report which, as everyone said, was very interesting. When the reading of the report was over, people moved about, and Levin met Sviazhsky, who invited him very pressingly to come that evening to a meeting of the Society of Agriculture, where a celebrated lecture was to be delivered, and Stepan Arkadyevitch, who had only just come from the races, and many other acquaintances; and Levin heard and uttered various criticisms on the meeting, on the new fantasia, and on a public trial. But, probably from the mental fatigue he was beginning to feel, he made a blunder in speaking of the trial, and this blunder he recalled several times with vexation. Speaking of the sentence upon a foreigner who had been condemned in Russia, and of how unfair it would be to punish him by exile abroad, Levin repeated what he had heard the day before in conversation from an acquaintance. "I think sending him abroad is much the same as punishing a carp by putting it into the water," said Levin. Then he recollected that this idea, which he had heard from an acquaintance and uttered as his own, came from a fable of Krilov's, and that the acquaintance had picked it up from a newspaper article. After driving home with his sister-in-law, and finding Kitty in good spirits and quite well, Levin drove to the club. Chapter 7 Levin reached the club just at the right time. Members and visitors were driving up as he arrived. Levin had not been at the club for a very long while--not since he lived in Moscow, when he was leaving the university and going into society. He remembered the club, the external details of its arrangement, but he had completely forgotten the impression it had made on him in old days. But as soon as, driving into the wide semicircular court and getting out of the sledge, he mounted the steps, and the hall porter, adorned with a crossway scarf, noiselessly opened the door to him with a bow; as soon as he saw in the porter's room the cloaks and galoshes of members who thought it less trouble to take them off downstairs; as soon as he heard the mysterious ringing bell that preceded him as he ascended the easy, carpeted staircase, and saw the statue on the landing, and the third porter at the top doors, a familiar figure grown older, in the club livery, opening the door without haste or delay, and scanning the visitors as they passed in--Levin felt the old impression of the club come back in a rush, an impression of repose, comfort, and propriety. "Your hat, please," the porter said to Levin, who forgot the club rule to leave his hat in the porter's room. "Long time since you've been. The prince put your name down yesterday. Prince Stepan Arkadyevitch is not here yet." The porter did not only know Levin, but also all his ties and relationships, and so immediately mentioned his intimate friends. Passing through the outer hall, divided up by screens, and the room partitioned on the right, where a man sits at the fruit buffet, Levin overtook an old man walking slowly in, and entered the dining room full of noise and people. He walked along the tables, almost all full, and looked at the visitors. He saw people of all sorts, old and young; some he knew a little, some intimate friends. There was not a single cross or worried-looking face. All seemed to have left their cares and anxieties in the porter's room with their hats, and were all deliberately getting ready to enjoy the material blessings of life. Sviazhsky was here and Shtcherbatsky, Nevyedovsky and the old prince, and Vronsky and Sergey Ivanovitch. "Ah! why are you late?" the prince said smiling, and giving him his hand over his own shoulder. "How's Kitty?" he added, smoothing out the napkin he had tucked in at his waistcoat buttons. "All right; they are dining at home, all the three of them." "Ah, 'Aline-Nadine,' to be sure! There's no room with us. Go to that table, and make haste and take a seat," said the prince, and turning away he carefully took a plate of eel soup. "Levin, this way!" a good-natured voice shouted a little farther on. It was Turovtsin. He was sitting with a young officer, and beside them were two chairs turned upside down. Levin gladly went up to them. He had always liked the good-hearted rake, Turovtsin--he was associated in his mind with memories of his courtship--and at that moment, after the strain of intellectual conversation, the sight of Turovtsin's good-natured face was particularly welcome. "For you and Oblonsky. He'll be here directly." The young man, holding himself very erect, with eyes forever twinkling with enjoyment, was an officer from Petersburg, Gagin. Turovtsin introduced them. "Oblonsky's always late." "Ah, here he is!" "Have you only just come?" said Oblonsky, coming quickly towards them. "Good day. Had some vodka? Well, come along then." Levin got up and went with him to the big table spread with spirits and appetizers of the most various kinds. One would have thought that out of two dozen delicacies one might find something to one's taste, but Stepan Arkadyevitch asked for something special, and one of the liveried waiters standing by immediately brought what was required. They drank a wine glassful and returned to their table. At once, while they were still at the soup, Gagin was served with champagne, and told the waiter to fill four glasses. Levin did not refuse the wine, and asked for a second bottle. He was very hungry, and ate and drank with great enjoyment, and with still greater enjoyment took part in the lively and simple conversation of his companions. Gagin, dropping his voice, told the last good story from Petersburg, and the story, though improper and stupid, was so ludicrous that Levin broke into roars of laughter so loud that those near looked round. "That's in the same style as, 'that's a thing I can't endure!' You know the story?" said Stepan Arkadyevitch. "Ah, that's exquisite! Another bottle," he said to the waiter, and he began to relate his good story. "Pyotr Illyitch Vinovsky invites you to drink with him," a little old waiter interrupted Stepan Arkadyevitch, bringing two delicate glasses of sparkling champagne, and addressing Stepan Arkadyevitch and Levin. Stepan Arkadyevitch took the glass, and looking towards a bald man with red mustaches at the other end of the table, he nodded to him, smiling. "Who's that?" asked Levin. "You met him once at my place, don't you remember? A good-natured fellow." Levin did the same as Stepan Arkadyevitch and took the glass. Stepan Arkadyevitch's anecdote too was very amusing. Levin told his story, and that too was successful. Then they talked of horses, of the races, of what they had been doing that day, and of how smartly Vronsky's Atlas had won the first prize. Levin did not notice how the time passed at dinner. "Ah! and here they are!" Stepan Arkadyevitch said towards the end of dinner, leaning over the back of his chair and holding out his hand to Vronsky, who came up with a tall officer of the Guards. Vronsky's face too beamed with the look of good-humored enjoyment that was general in the club. He propped his elbow playfully on Stepan Arkadyevitch's shoulder, whispering something to him, and he held out his hand to Levin with the same good-humored smile. "Very glad to meet you," he said. "I looked out for you at the election, but I was told you had gone away." "Yes, I left the same day. We've just been talking of your horse. I congratulate you," said Levin. "It was very rapidly run." "Yes; you've race horses too, haven't you?" "No, my father had; but I remember and know something about it." "Where have you dined?" asked Stepan Arkadyevitch. "We were at the second table, behind the columns." "We've been celebrating his success," said the tall colonel. "It's his second Imperial prize. I wish I might have the luck at cards he has with horses. Well, why waste the precious time? I'm going to the 'infernal regions,'" added the colonel, and he walked away. "That's Yashvin," Vronsky said in answer to Turovtsin, and he sat down in the vacated seat beside them. He drank the glass offered him, and ordered a bottle of wine. Under the influence of the club atmosphere or the wine he had drunk, Levin chatted away to Vronsky of the best breeds of cattle, and was very glad not to feel the slightest hostility to this man. He even told him, among other things, that he had heard from his wife that she had met him at Princess Marya Borissovna's. "Ah, Princess Marya Borissovna, she's exquisite!" said Stepan Arkadyevitch, and he told an anecdote about her which set them all laughing. Vronsky particularly laughed with such simplehearted amusement that Levin felt quite reconciled to him. "Well, have we finished?" said Stepan Arkadyevitch, getting up with a smile. "Let us go." Chapter 8 Getting up from the table, Levin walked with Gagin through the lofty room to the billiard room, feeling his arms swing as he walked with a peculiar lightness and ease. As he crossed the big room, he came upon his father-in-law. "Well, how do you like our Temple of Indolence?" said the prince, taking his arm. "Come along, come along!" "Yes, I wanted to walk about and look at everything. It's interesting." "Yes, it's interesting for you. But its interest for me is quite different. You look at those little old men now," he said, pointing to a club member with bent back and projecting lip, shuffling towards them in his soft boots, "and imagine that they were _shlupiks_ like that from their birth up." "How _shlupiks_?" "I see you don't know that name. That's our club designation. You know the game of rolling eggs: when one's rolled a long while it becomes a _shlupik_. So it is with us; one goes on coming and coming to the club, and ends by becoming a _shlupik_. Ah, you laugh! but we look out, for fear of dropping into it ourselves. You know Prince Tchetchensky?" inquired the prince; and Levin saw by his face that he was just going to relate something funny. "No, I don't know him." "You don't say so! Well, Prince Tchetchensky is a well-known figure. No matter, though. He's always playing billiards here. Only three years ago he was not a _shlupik_ and kept up his spirits and even used to call other people _shlupiks_. But one day he turns up, and our porter ... you know Vassily? Why, that fat one; he's famous for his _bon mots_. And so Prince Tchetchensky asks him, 'Come, Vassily, who's here? Any _shlupiks_ here yet?' And he says, 'You're the third.' Yes, my dear boy, that he did!" Talking and greeting the friends they met, Levin and the prince walked through all the rooms: the great room where tables had already been set, and the usual partners were playing for small stakes; the divan room, where they were playing chess, and Sergey Ivanovitch was sitting talking to somebody; the billiard room, where, about a sofa in a recess, there was a lively party drinking champagne--Gagin was one of them. They peeped into the "infernal regions," where a good many men were crowding round one table, at which Yashvin was sitting. Trying not to make a noise, they walked into the dark reading room, where under the shaded lamps there sat a young man with a wrathful countenance, turning over one journal after another, and a bald general buried in a book. They went, too, into what the prince called the intellectual room, where three gentlemen were engaged in a heated discussion of the latest political news. "Prince, please come, we're ready," said one of his card party, who had come to look for him, and the prince went off. Levin sat down and listened, but recalling all the conversation of the morning he felt all of a sudden fearfully bored. He got up hurriedly, and went to look for Oblonsky and Turovtsin, with whom it had been so pleasant. Turovtsin was one of the circle drinking in the billiard room, and Stepan Arkadyevitch was talking with Vronsky near the door at the farther corner of the room. "It's not that she's dull; but this undefined, this unsettled position," Levin caught, and he was hurrying away, but Stepan Arkadyevitch called to him. "Levin," said Stepan Arkadyevitch, and Levin noticed that his eyes were not full of tears exactly, but moist, which always happened when he had been drinking, or when he was touched. Just now it was due to both causes. "Levin, don't go," he said, and he warmly squeezed his arm above the elbow, obviously not at all wishing to let him go. "This is a true friend of mine--almost my greatest friend," he said to Vronsky. "You have become even closer and dearer to me. And I want you, and I know you ought, to be friends, and great friends, because you're both splendid fellows." "Well, there's nothing for us now but to kiss and be friends," Vronsky said, with good-natured playfulness, holding out his hand. Levin quickly took the offered hand, and pressed it warmly. "I'm very, very glad," said Levin. "Waiter, a bottle of champagne," said Stepan Arkadyevitch. "And I'm very glad," said Vronsky. But in spite of Stepan Arkadyevitch's desire, and their own desire, they had nothing to talk about, and both felt it. "Do you know, he has never met Anna?" Stepan Arkadyevitch said to Vronsky. "And I want above everything to take him to see her. Let us go, Levin!" "Really?" said Vronsky. "She will be very glad to see you. I should be going home at once," he added, "but I'm worried about Yashvin, and I want to stay on till he finishes." "Why, is he losing?" "He keeps losing, and I'm the only friend that can restrain him." "Well, what do you say to pyramids? Levin, will you play? Capital!" said Stepan Arkadyevitch. "Get the table ready," he said to the marker. "It has been ready a long while," answered the marker, who had already set the balls in a triangle, and was knocking the red one about for his own diversion. "Well, let us begin." After the game Vronsky and Levin sat down at Gagin's table, and at Stepan Arkadyevitch's suggestion Levin took a hand in the game. Vronsky sat down at the table, surrounded by friends, who were incessantly coming up to him. Every now and then he went to the "infernal" to keep an eye on Yashvin. Levin was enjoying a delightful sense of repose after the mental fatigue of the morning. He was glad that all hostility was at an end with Vronsky, and the sense of peace, decorum, and comfort never left him. When the game was over, Stepan Arkadyevitch took Levin's arm. "Well, let us go to Anna's, then. At once? Eh? She is at home. I promised her long ago to bring you. Where were you meaning to spend the evening?" "Oh, nowhere specially. I promised Sviazhsky to go to the Society of Agriculture. By all means, let us go," said Levin. "Very good; come along. Find out if my carriage is here," Stepan Arkadyevitch said to the waiter. Levin went up to the table, paid the forty roubles he had lost; paid his bill, the amount of which was in some mysterious way ascertained by the little old waiter who stood at the counter, and swinging his arms he walked through all the rooms to the way out. Chapter 9 "Oblonsky's carriage!" the porter shouted in an angry bass. The carriage drove up and both got in. It was only for the first few moments, while the carriage was driving out of the clubhouse gates, that Levin was still under the influence of the club atmosphere of repose, comfort, and unimpeachable good form. But as soon as the carriage drove out into the street, and he felt it jolting over the uneven road, heard the angry shout of a sledge driver coming towards them, saw in the uncertain light the red blind of a tavern and the shops, this impression was dissipated, and he began to think over his actions, and to wonder whether he was doing right in going to see Anna. What would Kitty say? But Stepan Arkadyevitch gave him no time for reflection, and, as though divining his doubts, he scattered them. "How glad I am," he said, "that you should know her! You know Dolly has long wished for it. And Lvov's been to see her, and often goes. Though she is my sister," Stepan Arkadyevitch pursued, "I don't hesitate to say that she's a remarkable woman. But you will see. Her position is very painful, especially now." "Why especially now?" "We are carrying on negotiations with her husband about a divorce. And he's agreed; but there are difficulties in regard to the son, and the business, which ought to have been arranged long ago, has been dragging on for three months past. As soon as the divorce is over, she will marry Vronsky. How stupid these old ceremonies are, that no one believes in, and which only prevent people being comfortable!" Stepan Arkadyevitch put in. "Well, then their position will be as regular as mine, as yours." "What is the difficulty?" said Levin. "Oh, it's a long and tedious story! The whole business is in such an anomalous position with us. But the point is she has been for three months in Moscow, where everyone knows her, waiting for the divorce; she goes out nowhere, sees no woman except Dolly, because, do you understand, she doesn't care to have people come as a favor. That fool Princess Varvara, even she has left her, considering this a breach of propriety. Well, you see, in such a position any other woman would not have found resources in herself. But you'll see how she has arranged her life--how calm, how dignified she is. To the left, in the crescent opposite the church!" shouted Stepan Arkadyevitch, leaning out of the window. "Phew! how hot it is!" he said, in spite of twelve degrees of frost, flinging his open overcoat still wider open. "But she has a daughter: no doubt she's busy looking after her?" said Levin. "I believe you picture every woman simply as a female, _une couveuse,_" said Stepan Arkadyevitch. "If she's occupied, it must be with her children. No, she brings her up capitally, I believe, but one doesn't hear about her. She's busy, in the first place, with what she writes. I see you're smiling ironically, but you're wrong. She's writing a children's book, and doesn't talk about it to anyone, but she read it to me and I gave the manuscript to Vorkuev ... you know the publisher ... and he's an author himself too, I fancy. He understands those things, and he says it's a remarkable piece of work. But are you fancying she's an authoress?--not a bit of it. She's a woman with a heart, before everything, but you'll see. Now she has a little English girl with her, and a whole family she's looking after." "Oh, something in a philanthropic way?" "Why, you will look at everything in the worst light. It's not from philanthropy, it's from the heart. They--that is, Vronsky--had a trainer, an Englishman, first-rate in his own line, but a drunkard. He's completely given up to drink--delirium tremens--and the family were cast on the world. She saw them, helped them, got more and more interested in them, and now the whole family is on her hands. But not by way of patronage, you know, helping with money; she's herself preparing the boys in Russian for the high school, and she's taken the little girl to live with her. But you'll see her for yourself." The carriage drove into the courtyard, and Stepan Arkadyevitch rang loudly at the entrance where sledges were standing. And without asking the servant who opened the door whether the lady were at home, Stepan Arkadyevitch walked into the hall. Levin followed him, more and more doubtful whether he was doing right or wrong. Looking at himself in the glass, Levin noticed that he was red in the face, but he felt certain he was not drunk, and he followed Stepan Arkadyevitch up the carpeted stairs. At the top Stepan Arkadyevitch inquired of the footman, who bowed to him as to an intimate friend, who was with Anna Arkadyevna, and received the answer that it was M. Vorkuev. "Where are they?" "In the study." Passing through the dining room, a room not very large, with dark, paneled walls, Stepan Arkadyevitch and Levin walked over the soft carpet to the half-dark study, lighted up by a single lamp with a big dark shade. Another lamp with a reflector was hanging on the wall, lighting up a big full-length portrait of a woman, which Levin could not help looking at. It was the portrait of Anna, painted in Italy by Mihailov. While Stepan Arkadyevitch went behind the _treillage_, and the man's voice which had been speaking paused, Levin gazed at the portrait, which stood out from the frame in the brilliant light thrown on it, and he could not tear himself away from it. He positively forgot where he was, and not even hearing what was said, he could not take his eyes off the marvelous portrait. It was not a picture, but a living, charming woman, with black curling hair, with bare arms and shoulders, with a pensive smile on the lips, covered with soft down; triumphantly and softly she looked at him with eyes that baffled him. She was not living only because she was more beautiful than a living woman can be. "I am delighted!" He heard suddenly near him a voice, unmistakably addressing him, the voice of the very woman he had been admiring in the portrait. Anna had come from behind the treillage to meet him, and Levin saw in the dim light of the study the very woman of the portrait, in a dark blue shot gown, not in the same position nor with the same expression, but with the same perfection of beauty which the artist had caught in the portrait. She was less dazzling in reality, but, on the other hand, there was something fresh and seductive in the living woman which was not in the portrait. Chapter 10 She had risen to meet him, not concealing her pleasure at seeing him; and in the quiet ease with which she held out her little vigorous hand, introduced him to Vorkuev and indicated a red-haired, pretty little girl who was sitting at work, calling her her pupil, Levin recognized and liked the manners of a woman of the great world, always self-possessed and natural. "I am delighted, delighted," she repeated, and on her lips these simple words took for Levin's ears a special significance. "I have known you and liked you for a long while, both from your friendship with Stiva and for your wife's sake.... I knew her for a very short time, but she left on me the impression of an exquisite flower, simply a flower. And to think she will soon be a mother!" She spoke easily and without haste, looking now and then from Levin to her brother, and Levin felt that the impression he was making was good, and he felt immediately at home, simple and happy with her, as though he had known her from childhood. "Ivan Petrovitch and I settled in Alexey's study," she said in answer to Stepan Arkadyevitch's question whether he might smoke, "just so as to be able to smoke"--and glancing at Levin, instead of asking whether he would smoke, she pulled closer a tortoise-shell cigar-case and took a cigarette. "How are you feeling today?" her brother asked her. "Oh, nothing. Nerves, as usual." "Yes, isn't it extraordinarily fine?" said Stepan Arkadyevitch, noticing that Levin was scrutinizing the picture. "I have never seen a better portrait." "And extraordinarily like, isn't it?" said Vorkuev. Levin looked from the portrait to the original. A peculiar brilliance lighted up Anna's face when she felt his eyes on her. Levin flushed, and to cover his confusion would have asked whether she had seen Darya Alexandrovna lately; but at that moment Anna spoke. "We were just talking, Ivan Petrovitch and I, of Vashtchenkov's last pictures. Have you seen them?" "Yes, I have seen them," answered Levin. "But, I beg your pardon, I interrupted you ... you were saying?..." Levin asked if she had seen Dolly lately. "She was here yesterday. She was very indignant with the high school people on Grisha's account. The Latin teacher, it seems, had been unfair to him." "Yes, I have seen his pictures. I didn't care for them very much," Levin went back to the subject she had started. Levin talked now not at all with that purely businesslike attitude to the subject with which he had been talking all the morning. Every word in his conversation with her had a special significance. And talking to her was pleasant; still pleasanter it was to listen to her. Anna talked not merely naturally and cleverly, but cleverly and carelessly, attaching no value to her own ideas and giving great weight to the ideas of the person she was talking to. The conversation turned on the new movement in art, on the new illustrations of the Bible by a French artist. Vorkuev attacked the artist for a realism carried to the point of coarseness. Levin said that the French had carried conventionality further than anyone, and that consequently they see a great merit in the return to realism. In the fact of not lying they see poetry. Never had anything clever said by Levin given him so much pleasure as this remark. Anna's face lighted up at once, as at once she appreciated the thought. She laughed. "I laugh," she said, "as one laughs when one sees a very true portrait. What you said so perfectly hits off French art now, painting and literature too, indeed--Zola, Daudet. But perhaps it is always so, that men form their conceptions from fictitious, conventional types, and then--all the _combinaisons_ made--they are tired of the fictitious figures and begin to invent more natural, true figures." "That's perfectly true," said Vorknev. "So you've been at the club?" she said to her brother. "Yes, yes, this is a woman!" Levin thought, forgetting himself and staring persistently at her lovely, mobile face, which at that moment was all at once completely transformed. Levin did not hear what she was talking of as she leaned over to her brother, but he was struck by the change of her expression. Her face--so handsome a moment before in its repose--suddenly wore a look of strange curiosity, anger, and pride. But this lasted only an instant. She dropped her eyelids, as though recollecting something. "Oh, well, but that's of no interest to anyone," she said, and she turned to the English girl. "Please order the tea in the drawing room," she said in English. The girl got up and went out. "Well, how did she get through her examination?" asked Stepan Arkadyevitch. "Splendidly! She's a very gifted child and a sweet character." "It will end in your loving her more than your own." "There a man speaks. In love there's no more nor less. I love my daughter with one love, and her with another." "I was just telling Anna Arkadyevna," said Vorkuev, "that if she were to put a hundredth part of the energy she devotes to this English girl to the public question of the education of Russian children, she would be doing a great and useful work." "Yes, but I can't help it; I couldn't do it. Count Alexey Kirillovitch urged me very much" (as she uttered the words _Count Alexey Kirillovitch_ she glanced with appealing timidity at Levin, and he unconsciously responded with a respectful and reassuring look); "he urged me to take up the school in the village. I visited it several times. The children were very nice, but I could not feel drawn to the work. You speak of energy. Energy rests upon love; and come as it will, there's no forcing it. I took to this child--I could not myself say why." And she glanced again at Levin. And her smile and her glance--all told him that it was to him only she was addressing her words, valuing his good opinion, and at the same time sure beforehand that they understood each other. "I quite understand that," Levin answered. "It's impossible to give one's heart to a school or such institutions in general, and I believe that's just why philanthropic institutions always give such poor results." She was silent for a while, then she smiled. "Yes, yes," she agreed; "I never could. _Je n'ai pas le coeur assez_ large to love a whole asylum of horrid little girls. _Cela ne m'a jamais reussi._ There are so many women who have made themselves _une position sociale_ in that way. And now more than ever," she said with a mournful, confiding expression, ostensibly addressing her brother, but unmistakably intending her words only for Levin, "now when I have such need of some occupation, I cannot." And suddenly frowning (Levin saw that she was frowning at herself for talking about herself) she changed the subject. "I know about you," she said to Levin; "that you're not a public-spirited citizen, and I have defended you to the best of my ability." "How have you defended me?" "Oh, according to the attacks made on you. But won't you have some tea?" She rose and took up a book bound in morocco. "Give it to me, Anna Arkadyevna," said Vorkuev, indicating the book. "It's well worth taking up." "Oh, no, it's all so sketchy." "I told him about it," Stepan Arkadyevitch said to his sister, nodding at Levin. "You shouldn't have. My writing is something after the fashion of those little baskets and carving which Liza Mertsalova used to sell me from the prisons. She had the direction of the prison department in that society," she turned to Levin; "and they were miracles of patience, the work of those poor wretches." And Levin saw a new trait in this woman, who attracted him so extraordinarily. Besides wit, grace, and beauty, she had truth. She had no wish to hide from him all the bitterness of her position. As she said that she sighed, and her face suddenly taking a hard expression, looked as it were turned to stone. With that expression on her face she was more beautiful than ever; but the expression was new; it was utterly unlike that expression, radiant with happiness and creating happiness, which had been caught by the painter in her portrait. Levin looked more than once at the portrait and at her figure, as taking her brother's arm she walked with him to the high doors and he felt for her a tenderness and pity at which he wondered himself. She asked Levin and Vorkuev to go into the drawing room, while she stayed behind to say a few words to her brother. "About her divorce, about Vronsky, and what he's doing at the club, about me?" wondered Levin. And he was so keenly interested by the question of what she was saying to Stepan Arkadyevitch, that he scarcely heard what Vorkuev was telling him of the qualities of the story for children Anna Arkadyevna had written. At tea the same pleasant sort of talk, full of interesting matter, continued. There was not a single instant when a subject for conversation was to seek; on the contrary, it was felt that one had hardly time to say what one had to say, and eagerly held back to hear what the others were saying. And all that was said, not only by her, but by Vorkuev and Stepan Arkadyevitch--all, so it seemed to Levin, gained peculiar significance from her appreciation and her criticism. While he followed this interesting conversation, Levin was all the time admiring her--her beauty, her intelligence, her culture, and at the same time her directness and genuine depth of feeling. He listened and talked, and all the while he was thinking of her inner life, trying to divine her feelings. And though he had judged her so severely hitherto, now by some strange chain of reasoning he was justifying her and was also sorry for her, and afraid that Vronsky did not fully understand her. At eleven o'clock, when Stepan Arkadyevitch got up to go (Vorkuev had left earlier), it seemed to Levin that he had only just come. Regretfully Levin too rose. "Good-bye," she said, holding his hand and glancing into his face with a winning look. "I am very glad _que la glace est rompue._" She dropped his hand, and half closed her eyes. "Tell your wife that I love her as before, and that if she cannot pardon me my position, then my wish for her is that she may never pardon it. To pardon it, one must go through what I have gone through, and may God spare her that." "Certainly, yes, I will tell her..." Levin said, blushing. Chapter 11 "What a marvelous, sweet and unhappy woman!" he was thinking, as he stepped out into the frosty air with Stepan Arkadyevitch. "Well, didn't I tell you?" said Stepan Arkadyevitch, seeing that Levin had been completely won over. "Yes," said Levin dreamily, "an extraordinary woman! It's not her cleverness, but she has such wonderful depth of feeling. I'm awfully sorry for her!" "Now, please God, everything will soon be settled. Well, well, don't be hard on people in future," said Stepan Arkadyevitch, opening the carriage door. "Good-bye; we don't go the same way." Still thinking of Anna, of everything, even the simplest phrase in their conversation with her, and recalling the minutest changes in her expression, entering more and more into her position, and feeling sympathy for her, Levin reached home. At home Kouzma told Levin that Katerina Alexandrovna was quite well, and that her sisters had not long been gone, and he handed him two letters. Levin read them at once in the hall, that he might not over look them later. One was from Sokolov, his bailiff. Sokolov wrote that the corn could not be sold, that it was fetching only five and a half roubles, and that more than that could not be got for it. The other letter was from his sister. She scolded him for her business being still unsettled. "Well, we must sell it at five and a half if we can't get more," Levin decided the first question, which had always before seemed such a weighty one, with extraordinary facility on the spot. "It's extraordinary how all one's time is taken up here," he thought, considering the second letter. He felt himself to blame for not having got done what his sister had asked him to do for her. "Today, again, I've not been to the court, but today I've certainly not had time." And resolving that he would not fail to do it next day, he went up to his wife. As he went in, Levin rapidly ran through mentally the day he had spent. All the events of the day were conversations, conversations he had heard and taken part in. All the conversations were upon subjects which, if he had been alone at home, he would never have taken up, but here they were very interesting. And all these conversations were right enough, only in two places there was something not quite right. One was what he had said about the carp, the other was something not "quite the thing" in the tender sympathy he was feeling for Anna. Levin found his wife low-spirited and dull. The dinner of the three sisters had gone off very well, but then they had waited and waited for him, all of them had felt dull, the sisters had departed, and she had been left alone. "Well, and what have you been doing?" she asked him, looking straight into his eyes, which shone with rather a suspicious brightness. But that she might not prevent his telling her everything, she concealed her close scrutiny of him, and with an approving smile listened to his account of how he had spent the evening. "Well, I'm very glad I met Vronsky. I felt quite at ease and natural with him. You understand, I shall try not to see him, but I'm glad that this awkwardness is all over," he said, and remembering that by way of trying not to see him, he had immediately gone to call on Anna, he blushed. "We talk about the peasants drinking; I don't know which drinks most, the peasantry or our own class; the peasants do on holidays, but..." But Kitty took not the slightest interest in discussing the drinking habits of the peasants. She saw that he blushed, and she wanted to know why. "Well, and then where did you go?" "Stiva urged me awfully to go and see Anna Arkadyevna." And as he said this, Levin blushed even more, and his doubts as to whether he had done right in going to see Anna were settled once for all. He knew now that he ought not to have done so. Kitty's eyes opened in a curious way and gleamed at Anna's name, but controlling herself with an effort, she concealed her emotion and deceived him. "Oh!" was all she said. "I'm sure you won't be angry at my going. Stiva begged me to, and Dolly wished it," Levin went on. "Oh, no!" she said, but he saw in her eyes a constraint that boded him no good. "She is a very sweet, very, very unhappy, good woman," he said, telling her about Anna, her occupations, and what she had told him to say to her. "Yes, of course, she is very much to be pitied," said Kitty, when he had finished. "Whom was your letter from?" He told her, and believing in her calm tone, he went to change his coat. Coming back, he found Kitty in the same easy chair. When he went up to her, she glanced at him and broke into sobs. "What? what is it?" he asked, knowing beforehand what. "You're in love with that hateful woman; she has bewitched you! I saw it in your eyes. Yes, yes! What can it all lead to? You were drinking at the club, drinking and gambling, and then you went ... to her of all people! No, we must go away.... I shall go away tomorrow." It was a long while before Levin could soothe his wife. At last he succeeded in calming her, only by confessing that a feeling of pity, in conjunction with the wine he had drunk, had been too much for him, that he had succumbed to Anna's artful influence, and that he would avoid her. One thing he did with more sincerity confess to was that living so long in Moscow, a life of nothing but conversation, eating and drinking, he was degenerating. They talked till three o'clock in the morning. Only at three o'clock were they sufficiently reconciled to be able to go to sleep. Chapter 12 After taking leave of her guests, Anna did not sit down, but began walking up and down the room. She had unconsciously the whole evening done her utmost to arouse in Levin a feeling of love--as of late she had fallen into doing with all young men--and she knew she had attained her aim, as far as was possible in one evening, with a married and conscientious man. She liked him indeed extremely, and, in spite of the striking difference, from the masculine point of view, between Vronsky and Levin, as a woman she saw something they had in common, which had made Kitty able to love both. Yet as soon as he was out of the room, she ceased to think of him. One thought, and one only, pursued her in different forms, and refused to be shaken off. "If I have so much effect on others, on this man, who loves his home and his wife, why is it _he_ is so cold to me?... not cold exactly, he loves me, I know that! But something new is drawing us apart now. Why wasn't he here all the evening? He told Stiva to say he could not leave Yashvin, and must watch over his play. Is Yashvin a child? But supposing it's true. He never tells a lie. But there's something else in it if it's true. He is glad of an opportunity of showing me that he has other duties; I know that, I submit to that. But why prove that to me? He wants to show me that his love for me is not to interfere with his freedom. But I need no proofs, I need love. He ought to understand all the bitterness of this life for me here in Moscow. Is this life? I am not living, but waiting for an event, which is continually put off and put off. No answer again! And Stiva says he cannot go to Alexey Alexandrovitch. And I can't write again. I can do nothing, can begin nothing, can alter nothing; I hold myself in, I wait, inventing amusements for myself--the English family, writing, reading--but it's all nothing but a sham, it's all the same as morphine. He ought to feel for me," she said, feeling tears of self-pity coming into her eyes. She heard Vronsky's abrupt ring and hurriedly dried her tears--not only dried her tears, but sat down by a lamp and opened a book, affecting composure. She wanted to show him that she was displeased that he had not come home as he had promised--displeased only, and not on any account to let him see her distress, and least of all, her self-pity. She might pity herself, but he must not pity her. She did not want strife, she blamed him for wanting to quarrel, but unconsciously put herself into an attitude of antagonism. "Well, you've not been dull?" he said, eagerly and good-humoredly, going up to her. "What a terrible passion it is--gambling!" "No, I've not been dull; I've learned long ago not to be dull. Stiva has been here and Levin." "Yes, they meant to come and see you. Well, how did you like Levin?" he said, sitting down beside her. "Very much. They have not long been gone. What was Yashvin doing?" "He was winning--seventeen thousand. I got him away. He had really started home, but he went back again, and now he's losing." "Then what did you stay for?" she asked, suddenly lifting her eyes to him. The expression of her face was cold and ungracious. "You told Stiva you were staying on to get Yashvin away. And you have left him there." The same expression of cold readiness for the conflict appeared on his face too. "In the first place, I did not ask him to give you any message; and secondly, I never tell lies. But what's the chief point, I wanted to stay, and I stayed," he said, frowning. "Anna, what is it for, why will you?" he said after a moment's silence, bending over towards her, and he opened his hand, hoping she would lay hers in it. She was glad of this appeal for tenderness. But some strange force of evil would not let her give herself up to her feelings, as though the rules of warfare would not permit her to surrender. "Of course you wanted to stay, and you stayed. You do everything you want to. But what do you tell me that for? With what object?" she said, getting more and more excited. "Does anyone contest your rights? But you want to be right, and you're welcome to be right." His hand closed, he turned away, and his face wore a still more obstinate expression. "For you it's a matter of obstinacy," she said, watching him intently and suddenly finding the right word for that expression that irritated her, "simply obstinacy. For you it's a question of whether you keep the upper hand of me, while for me...." Again she felt sorry for herself, and she almost burst into tears. "If you knew what it is for me! When I feel as I do now that you are hostile, yes, hostile to me, if you knew what this means for me! If you knew how I feel on the brink of calamity at this instant, how afraid I am of myself!" And she turned away, hiding her sobs. "But what are you talking about?" he said, horrified at her expression of despair, and again bending over her, he took her hand and kissed it. "What is it for? Do I seek amusements outside our home? Don't I avoid the society of women?" "Well, yes! If that were all!" she said. "Come, tell me what I ought to do to give you peace of mind? I am ready to do anything to make you happy," he said, touched by her expression of despair; "what wouldn't I do to save you from distress of any sort, as now, Anna!" he said. "It's nothing, nothing!" she said. "I don't know myself whether it's the solitary life, my nerves.... Come, don't let us talk of it. What about the race? You haven't told me!" she inquired, trying to conceal her triumph at the victory, which had anyway been on her side. He asked for supper, and began telling her about the races; but in his tone, in his eyes, which became more and more cold, she saw that he did not forgive her for her victory, that the feeling of obstinacy with which she had been struggling had asserted itself again in him. He was colder to her than before, as though he were regretting his surrender. And she, remembering the words that had given her the victory, "how I feel on the brink of calamity, how afraid I am of myself," saw that this weapon was a dangerous one, and that it could not be used a second time. And she felt that beside the love that bound them together there had grown up between them some evil spirit of strife, which she could not exorcise from his, and still less from her own heart. Chapter 13 There are no conditions to which a man cannot become used, especially if he sees that all around him are living in the same way. Levin could not have believed three months before that he could have gone quietly to sleep in the condition in which he was that day, that leading an aimless, irrational life, living too beyond his means, after drinking to excess (he could not call what happened at the club anything else), forming inappropriately friendly relations with a man with whom his wife had once been in love, and a still more inappropriate call upon a woman who could only be called a lost woman, after being fascinated by that woman and causing his wife distress--he could still go quietly to sleep. But under the influence of fatigue, a sleepless night, and the wine he had drunk, his sleep was sound and untroubled. At five o'clock the creak of a door opening waked him. He jumped up and looked round. Kitty was not in bed beside him. But there was a light moving behind the screen, and he heard her steps. "What is it?... what is it?" he said, half-asleep. "Kitty! What is it?" "Nothing," she said, coming from behind the screen with a candle in her hand. "I felt unwell," she said, smiling a particularly sweet and meaning smile. "What? has it begun?" he said in terror. "We ought to send..." and hurriedly he reached after his clothes. "No, no," she said, smiling and holding his hand. "It's sure to be nothing. I was rather unwell, only a little. It's all over now." And getting into bed, she blew out the candle, lay down and was still. Though he thought her stillness suspicious, as though she were holding her breath, and still more suspicious the expression of peculiar tenderness and excitement with which, as she came from behind the screen, she said "nothing," he was so sleepy that he fell asleep at once. Only later he remembered the stillness of her breathing, and understood all that must have been passing in her sweet, precious heart while she lay beside him, not stirring, in anticipation of the greatest event in a woman's life. At seven o'clock he was waked by the touch of her hand on his shoulder, and a gentle whisper. She seemed struggling between regret at waking him, and the desire to talk to him. "Kostya, don't be frightened. It's all right. But I fancy.... We ought to send for Lizaveta Petrovna." The candle was lighted again. She was sitting up in bed, holding some knitting, which she had been busy upon during the last few days. "Please, don't be frightened, it's all right. I'm not a bit afraid," she said, seeing his scared face, and she pressed his hand to her bosom and then to her lips. He hurriedly jumped up, hardly awake, and kept his eyes fixed on her, as he put on his dressing gown; then he stopped, still looking at her. He had to go, but he could not tear himself from her eyes. He thought he loved her face, knew her expression, her eyes, but never had he seen it like this. How hateful and horrible he seemed to himself, thinking of the distress he had caused her yesterday. Her flushed face, fringed with soft curling hair under her night cap, was radiant with joy and courage. Though there was so little that was complex or artificial in Kitty's character in general, Levin was struck by what was revealed now, when suddenly all disguises were thrown off and the very kernel of her soul shone in her eyes. And in this simplicity and nakedness of her soul, she, the very woman he loved in her, was more manifest than ever. She looked at him, smiling; but all at once her brows twitched, she threw up her head, and going quickly up to him, clutched his hand and pressed close up to him, breathing her hot breath upon him. She was in pain and was, as it were, complaining to him of her suffering. And for the first minute, from habit, it seemed to him that he was to blame. But in her eyes there was a tenderness that told him that she was far from reproaching him, that she loved him for her sufferings. "If not I, who is to blame for it?" he thought unconsciously, seeking someone responsible for this suffering for him to punish; but there was no one responsible. She was suffering, complaining, and triumphing in her sufferings, and rejoicing in them, and loving them. He saw that something sublime was being accomplished in her soul, but what? He could not make it out. It was beyond his understanding. "I have sent to mamma. You go quickly to fetch Lizaveta Petrovna ... Kostya!... Nothing, it's over." She moved away from him and rang the bell. "Well, go now; Pasha's coming. I am all right." And Levin saw with astonishment that she had taken up the knitting she had brought in in the night and begun working at it again. As Levin was going out of one door, he heard the maid-servant come in at the other. He stood at the door and heard Kitty giving exact directions to the maid, and beginning to help her move the bedstead. He dressed, and while they were putting in his horses, as a hired sledge was not to be seen yet, he ran again up to the bedroom, not on tiptoe, it seemed to him, but on wings. Two maid-servants were carefully moving something in the bedroom. Kitty was walking about knitting rapidly and giving directions. "I'm going for the doctor. They have sent for Lizaveta Petrovna, but I'll go on there too. Isn't there anything wanted? Yes, shall I go to Dolly's?" She looked at him, obviously not hearing what he was saying. "Yes, yes. Do go," she said quickly, frowning and waving her hand to him. He had just gone into the drawing room, when suddenly a plaintive moan sounded from the bedroom, smothered instantly. He stood still, and for a long while he could not understand. "Yes, that is she," he said to himself, and clutching at his head he ran downstairs. "Lord have mercy on us! pardon us! aid us!" he repeated the words that for some reason came suddenly to his lips. And he, an unbeliever, repeated these words not with his lips only. At that instant he knew that all his doubts, even the impossibility of believing with his reason, of which he was aware in himself, did not in the least hinder his turning to God. All of that now floated out of his soul like dust. To whom was he to turn if not to Him in whose hands he felt himself, his soul, and his love? The horse was not yet ready, but feeling a peculiar concentration of his physical forces and his intellect on what he had to do, he started off on foot without waiting for the horse, and told Kouzma to overtake him. At the corner he met a night cabman driving hurriedly. In the little sledge, wrapped in a velvet cloak, sat Lizaveta Petrovna with a kerchief round her head. "Thank God! thank God!" he said, overjoyed to recognize her little fair face which wore a peculiarly serious, even stern expression. Telling the driver not to stop, he ran along beside her. "For two hours, then? Not more?" she inquired. "You should let Pyotr Dmitrievitch know, but don't hurry him. And get some opium at the chemist's." "So you think that it may go on well? Lord have mercy on us and help us!" Levin said, seeing his own horse driving out of the gate. Jumping into the sledge beside Kouzma, he told him to drive to the doctor's. Chapter 14 The doctor was not yet up, and the footman said that "he had been up late, and had given orders not to be waked, but would get up soon." The footman was cleaning the lamp-chimneys, and seemed very busy about them. This concentration of the footman upon his lamps, and his indifference to what was passing in Levin, at first astounded him, but immediately on considering the question he realized that no one knew or was bound to know his feelings, and that it was all the more necessary to act calmly, sensibly, and resolutely to get through this wall of indifference and attain his aim. "Don't be in a hurry or let anything slip," Levin said to himself, feeling a greater and greater flow of physical energy and attention to all that lay before him to do. Having ascertained that the doctor was not getting up, Levin considered various plans, and decided on the following one: that Kouzma should go for another doctor, while he himself should go to the chemist's for opium, and if when he came back the doctor had not yet begun to get up, he would either by tipping the footman, or by force, wake the doctor at all hazards. At the chemist's the lank shopman sealed up a packet of powders for a coachman who stood waiting, and refused him opium with the same callousness with which the doctor's footman had cleaned his lamp chimneys. Trying not to get flurried or out of temper, Levin mentioned the names of the doctor and midwife, and explaining what the opium was needed for, tried to persuade him. The assistant inquired in German whether he should give it, and receiving an affirmative reply from behind the partition, he took out a bottle and a funnel, deliberately poured the opium from a bigger bottle into a little one, stuck on a label, sealed it up, in spite of Levin's request that he would not do so, and was about to wrap it up too. This was more than Levin could stand; he took the bottle firmly out of his hands, and ran to the big glass doors. The doctor was not even now getting up, and the footman, busy now in putting down the rugs, refused to wake him. Levin deliberately took out a ten rouble note, and, careful to speak slowly, though losing no time over the business, he handed him the note, and explained that Pyotr Dmitrievitch (what a great and important personage he seemed to Levin now, this Pyotr Dmitrievitch, who had been of so little consequence in his eyes before!) had promised to come at any time; that he would certainly not be angry! and that he must therefore wake him at once. The footman agreed, and went upstairs, taking Levin into the waiting room. Levin could hear through the door the doctor coughing, moving about, washing, and saying something. Three minutes passed; it seemed to Levin that more than an hour had gone by. He could not wait any longer. "Pyotr Dmitrievitch, Pyotr Dmitrievitch!" he said in an imploring voice at the open door. "For God's sake, forgive me! See me as you are. It's been going on more than two hours already." "In a minute; in a minute!" answered a voice, and to his amazement Levin heard that the doctor was smiling as he spoke. "For one instant." "In a minute." Two minutes more passed while the doctor was putting on his boots, and two minutes more while the doctor put on his coat and combed his hair. "Pyotr Dmitrievitch!" Levin was beginning again in a plaintive voice, just as the doctor came in dressed and ready. "These people have no conscience," thought Levin. "Combing his hair, while we're dying!" "Good morning!" the doctor said to him, shaking hands, and, as it were, teasing him with his composure. "There's no hurry. Well now?" Trying to be as accurate as possible, Levin began to tell him every unnecessary detail of his wife's condition, interrupting his account repeatedly with entreaties that the doctor would come with him at once. "Oh, you needn't be in any hurry. You don't understand, you know. I'm certain I'm not wanted, still I've promised, and if you like, I'll come. But there's no hurry. Please sit down; won't you have some coffee?" Levin stared at him with eyes that asked whether he was laughing at him; but the doctor had no notion of making fun of him. "I know, I know," the doctor said, smiling; "I'm a married man myself; and at these moments we husbands are very much to be pitied. I've a patient whose husband always takes refuge in the stables on such occasions." "But what do you think, Pyotr Dmitrievitch? Do you suppose it may go all right?" "Everything points to a favorable issue." "So you'll come immediately?" said Levin, looking wrathfully at the servant who was bringing in the coffee. "In an hour's time." "Oh, for mercy's sake!" "Well, let me drink my coffee, anyway." The doctor started upon his coffee. Both were silent. "The Turks are really getting beaten, though. Did you read yesterday's telegrams?" said the doctor, munching some roll. "No, I can't stand it!" said Levin, jumping up. "So you'll be with us in a quarter of an hour." "In half an hour." "On your honor?" When Levin got home, he drove up at the same time as the princess, and they went up to the bedroom door together. The princess had tears in her eyes, and her hands were shaking. Seeing Levin, she embraced him, and burst into tears. "Well, my dear Lizaveta Petrovna?" she queried, clasping the hand of the midwife, who came out to meet them with a beaming and anxious face. "She's going on well," she said; "persuade her to lie down. She will be easier so." From the moment when he had waked up and understood what was going on, Levin had prepared his mind to bear resolutely what was before him, and without considering or anticipating anything, to avoid upsetting his wife, and on the contrary to soothe her and keep up her courage. Without allowing himself even to think of what was to come, of how it would end, judging from his inquiries as to the usual duration of these ordeals, Levin had in his imagination braced himself to bear up and to keep a tight rein on his feelings for five hours, and it had seemed to him he could do this. But when he came back from the doctor's and saw her sufferings again, he fell to repeating more and more frequently: "Lord, have mercy on us, and succor us!" He sighed, and flung his head up, and began to feel afraid he could not bear it, that he would burst into tears or run away. Such agony it was to him. And only one hour had passed. But after that hour there passed another hour, two hours, three, the full five hours he had fixed as the furthest limit of his sufferings, and the position was still unchanged; and he was still bearing it because there was nothing to be done but bear it; every instant feeling that he had reached the utmost limits of his endurance, and that his heart would break with sympathy and pain. But still the minutes passed by and the hours, and still hours more, and his misery and horror grew and were more and more intense. All the ordinary conditions of life, without which one can form no conception of anything, had ceased to exist for Levin. He lost all sense of time. Minutes--those minutes when she sent for him and he held her moist hand, that would squeeze his hand with extraordinary violence and then push it away--seemed to him hours, and hours seemed to him minutes. He was surprised when Lizaveta Petrovna asked him to light a candle behind a screen, and he found that it was five o'clock in the afternoon. If he had been told it was only ten o'clock in the morning, he would not have been more surprised. Where he was all this time, he knew as little as the time of anything. He saw her swollen face, sometimes bewildered and in agony, sometimes smiling and trying to reassure him. He saw the old princess too, flushed and overwrought, with her gray curls in disorder, forcing herself to gulp down her tears, biting her lips; he saw Dolly too and the doctor, smoking fat cigarettes, and Lizaveta Petrovna with a firm, resolute, reassuring face, and the old prince walking up and down the hall with a frowning face. But why they came in and went out, where they were, he did not know. The princess was with the doctor in the bedroom, then in the study, where a table set for dinner suddenly appeared; then she was not there, but Dolly was. Then Levin remembered he had been sent somewhere. Once he had been sent to move a table and sofa. He had done this eagerly, thinking it had to be done for her sake, and only later on he found it was his own bed he had been getting ready. Then he had been sent to the study to ask the doctor something. The doctor had answered and then had said something about the irregularities in the municipal council. Then he had been sent to the bedroom to help the old princess to move the holy picture in its silver and gold setting, and with the princess's old waiting maid he had clambered on a shelf to reach it and had broken the little lamp, and the old servant had tried to reassure him about the lamp and about his wife, and he carried the holy picture and set it at Kitty's head, carefully tucking it in behind the pillow. But where, when, and why all this had happened, he could not tell. He did not understand why the old princess took his hand, and looking compassionately at him, begged him not to worry himself, and Dolly persuaded him to eat something and led him out of the room, and even the doctor looked seriously and with commiseration at him and offered him a drop of something. All he knew and felt was that what was happening was what had happened nearly a year before in the hotel of the country town at the deathbed of his brother Nikolay. But that had been grief--this was joy. Yet that grief and this joy were alike outside all the ordinary conditions of life; they were loop-holes, as it were, in that ordinary life through which there came glimpses of something sublime. And in the contemplation of this sublime something the soul was exalted to inconceivable heights of which it had before had no conception, while reason lagged behind, unable to keep up with it. "Lord, have mercy on us, and succor us!" he repeated to himself incessantly, feeling, in spite of his long and, as it seemed, complete alienation from religion, that he turned to God just as trustfully and simply as he had in his childhood and first youth. All this time he had two distinct spiritual conditions. One was away from her, with the doctor, who kept smoking one fat cigarette after another and extinguishing them on the edge of a full ash tray, with Dolly, and with the old prince, where there was talk about dinner, about politics, about Marya Petrovna's illness, and where Levin suddenly forgot for a minute what was happening, and felt as though he had waked up from sleep; the other was in her presence, at her pillow, where his heart seemed breaking and still did not break from sympathetic suffering, and he prayed to God without ceasing. And every time he was brought back from a moment of oblivion by a scream reaching him from the bedroom, he fell into the same strange terror that had come upon him the first minute. Every time he heard a shriek, he jumped up, ran to justify himself, remembered on the way that he was not to blame, and he longed to defend her, to help her. But as he looked at her, he saw again that help was impossible, and he was filled with terror and prayed: "Lord, have mercy on us, and help us!" And as time went on, both these conditions became more intense; the calmer he became away from her, completely forgetting her, the more agonizing became both her sufferings and his feeling of helplessness before them. He jumped up, would have liked to run away, but ran to her. Sometimes, when again and again she called upon him, he blamed her; but seeing her patient, smiling face, and hearing the words, "I am worrying you," he threw the blame on God; but thinking of God, at once he fell to beseeching God to forgive him and have mercy. Chapter 15 He did not know whether it was late or early. The candles had all burned out. Dolly had just been in the study and had suggested to the doctor that he should lie down. Levin sat listening to the doctor's stories of a quack mesmerizer and looking at the ashes of his cigarette. There had been a period of repose, and he had sunk into oblivion. He had completely forgotten what was going on now. He heard the doctor's chat and understood it. Suddenly there came an unearthly shriek. The shriek was so awful that Levin did not even jump up, but holding his breath, gazed in terrified inquiry at the doctor. The doctor put his head on one side, listened, and smiled approvingly. Everything was so extraordinary that nothing could strike Levin as strange. "I suppose it must be so," he thought, and still sat where he was. Whose scream was this? He jumped up, ran on tiptoe to the bedroom, edged round Lizaveta Petrovna and the princess, and took up his position at Kitty's pillow. The scream had subsided, but there was some change now. What it was he did not see and did not comprehend, and he had no wish to see or comprehend. But he saw it by the face of Lizaveta Petrovna. Lizaveta Petrovna's face was stern and pale, and still as resolute, though her jaws were twitching, and her eyes were fixed intently on Kitty. Kitty's swollen and agonized face, a tress of hair clinging to her moist brow, was turned to him and sought his eyes. Her lifted hands asked for his hands. Clutching his chill hands in her moist ones, she began squeezing them to her face. "Don't go, don't go! I'm not afraid, I'm not afraid!" she said rapidly. "Mamma, take my earrings. They bother me. You're not afraid? Quick, quick, Lizaveta Petrovna..." She spoke quickly, very quickly, and tried to smile. But suddenly her face was drawn, she pushed him away. "Oh, this is awful! I'm dying, I'm dying! Go away!" she shrieked, and again he heard that unearthly scream. Levin clutched at his head and ran out of the room. "It's nothing, it's nothing, it's all right," Dolly called after him. But they might say what they liked, he knew now that all was over. He stood in the next room, his head leaning against the door post, and heard shrieks, howls such as he had never heard before, and he knew that what had been Kitty was uttering these shrieks. He had long ago ceased to wish for the child. By now he loathed this child. He did not even wish for her life now, all he longed for was the end of this awful anguish. "Doctor! What is it? What is it? By God!" he said, snatching at the doctor's hand as he came up. "It's the end," said the doctor. And the doctor's face was so grave as he said it that Levin took _the end_ as meaning her death. Beside himself, he ran into the bedroom. The first thing he saw was the face of Lizaveta Petrovna. It was even more frowning and stern. Kitty's face he did not know. In the place where it had been was something that was fearful in its strained distortion and in the sounds that came from it. He fell down with his head on the wooden framework of the bed, feeling that his heart was bursting. The awful scream never paused, it became still more awful, and as though it had reached the utmost limit of terror, suddenly it ceased. Levin could not believe his ears, but there could be no doubt; the scream had ceased and he heard a subdued stir and bustle, and hurried breathing, and her voice, gasping, alive, tender, and blissful, uttered softly, "It's over!" He lifted his head. With her hands hanging exhausted on the quilt, looking extraordinarily lovely and serene, she looked at him in silence and tried to smile, and could not. And suddenly, from the mysterious and awful far-away world in which he had been living for the last twenty-two hours, Levin felt himself all in an instant borne back to the old every-day world, glorified though now, by such a radiance of happiness that he could not bear it. The strained chords snapped, sobs and tears of joy which he had never foreseen rose up with such violence that his whole body shook, that for long they prevented him from speaking. Falling on his knees before the bed, he held his wife's hand before his lips and kissed it, and the hand, with a weak movement of the fingers, responded to his kiss. And meanwhile, there at the foot of the bed, in the deft hands of Lizaveta Petrovna, like a flickering light in a lamp, lay the life of a human creature, which had never existed before, and which would now with the same right, with the same importance to itself, live and create in its own image. "Alive! alive! And a boy too! Set your mind at rest!" Levin heard Lizaveta Petrovna saying, as she slapped the baby's back with a shaking hand. "Mamma, is it true?" said Kitty's voice. The princess's sobs were all the answers she could make. And in the midst of the silence there came in unmistakable reply to the mother's question, a voice quite unlike the subdued voices speaking in the room. It was the bold, clamorous, self-assertive squall of the new human being, who had so incomprehensibly appeared. If Levin had been told before that Kitty was dead, and that he had died with her, and that their children were angels, and that God was standing before him, he would have been surprised at nothing. But now, coming back to the world of reality, he had to make great mental efforts to take in that she was alive and well, and that the creature squalling so desperately was his son. Kitty was alive, her agony was over. And he was unutterably happy. That he understood; he was completely happy in it. But the baby? Whence, why, who was he?... He could not get used to the idea. It seemed to him something extraneous, superfluous, to which he could not accustom himself. Chapter 16 At ten o'clock the old prince, Sergey Ivanovitch, and Stepan Arkadyevitch were sitting at Levin's. Having inquired after Kitty, they had dropped into conversation upon other subjects. Levin heard them, and unconsciously, as they talked, going over the past, over what had been up to that morning, he thought of himself as he had been yesterday till that point. It was as though a hundred years had passed since then. He felt himself exalted to unattainable heights, from which he studiously lowered himself so as not to wound the people he was talking to. He talked, and was all the time thinking of his wife, of her condition now, of his son, in whose existence he tried to school himself into believing. The whole world of woman, which had taken for him since his marriage a new value he had never suspected before, was now so exalted that he could not take it in in his imagination. He heard them talk of yesterday's dinner at the club, and thought: "What is happening with her now? Is she asleep? How is she? What is she thinking of? Is he crying, my son Dmitri?" And in the middle of the conversation, in the middle of a sentence, he jumped up and went out of the room. "Send me word if I can see her," said the prince. "Very well, in a minute," answered Levin, and without stopping, he went to her room. She was not asleep, she was talking gently with her mother, making plans about the christening. Carefully set to rights, with hair well-brushed, in a smart little cap with some blue in it, her arms out on the quilt, she was lying on her back. Meeting his eyes, her eyes drew him to her. Her face, bright before, brightened still more as he drew near her. There was the same change in it from earthly to unearthly that is seen in the face of the dead. But then it means farewell, here it meant welcome. Again a rush of emotion, such as he had felt at the moment of the child's birth, flooded his heart. She took his hand and asked him if he had slept. He could not answer, and turned away, struggling with his weakness. "I have had a nap, Kostya!" she said to him; "and I am so comfortable now." She looked at him, but suddenly her expression changed. "Give him to me," she said, hearing the baby's cry. "Give him to me, Lizaveta Petrovna, and he shall look at him." "To be sure, his papa shall look at him," said Lizaveta Petrovna, getting up and bringing something red, and queer, and wriggling. "Wait a minute, we'll make him tidy first," and Lizaveta Petrovna laid the red wobbling thing on the bed, began untrussing and trussing up the baby, lifting it up and turning it over with one finger and powdering it with something. Levin, looking at the tiny, pitiful creature, made strenuous efforts to discover in his heart some traces of fatherly feeling for it. He felt nothing towards it but disgust. But when it was undressed and he caught a glimpse of wee, wee, little hands, little feet, saffron-colored, with little toes, too, and positively with a little big toe different from the rest, and when he saw Lizaveta Petrovna closing the wide-open little hands, as though they were soft springs, and putting them into linen garments, such pity for the little creature came upon him, and such terror that she would hurt it, that he held her hand back. Lizaveta Petrovna laughed. "Don't be frightened, don't be frightened!" When the baby had been put to rights and transformed into a firm doll, Lizaveta Petrovna dandled it as though proud of her handiwork, and stood a little away so that Levin might see his son in all his glory. Kitty looked sideways in the same direction, never taking her eyes off the baby. "Give him to me! give him to me!" she said, and even made as though she would sit up. "What are you thinking of, Katerina Alexandrovna, you mustn't move like that! Wait a minute. I'll give him to you. Here we're showing papa what a fine fellow we are!" And Lizaveta Petrovna, with one hand supporting the wobbling head, lifted up on the other arm the strange, limp, red creature, whose head was lost in its swaddling clothes. But it had a nose, too, and slanting eyes and smacking lips. "A splendid baby!" said Lizaveta Petrovna. Levin sighed with mortification. This splendid baby excited in him no feeling but disgust and compassion. It was not at all the feeling he had looked forward to. He turned away while Lizaveta Petrovna put the baby to the unaccustomed breast. Suddenly laughter made him look round. The baby had taken the breast. "Come, that's enough, that's enough!" said Lizaveta Petrovna, but Kitty would not let the baby go. He fell asleep in her arms. "Look, now," said Kitty, turning the baby so that he could see it. The aged-looking little face suddenly puckered up still more and the baby sneezed. Smiling, hardly able to restrain his tears, Levin kissed his wife and went out of the dark room. What he felt towards this little creature was utterly unlike what he had expected. There was nothing cheerful and joyous in the feeling; on the contrary, it was a new torture of apprehension. It was the consciousness of a new sphere of liability to pain. And this sense was so painful at first, the apprehension lest this helpless creature should suffer was so intense, that it prevented him from noticing the strange thrill of senseless joy and even pride that he had felt when the baby sneezed. Chapter 17 Stepan Arkadyevitch's affairs were in a very bad way. The money for two-thirds of the forest had all been spent already, and he had borrowed from the merchant in advance at ten per cent discount, almost all the remaining third. The merchant would not give more, especially as Darya Alexandrovna, for the first time that winter insisting on her right to her own property, had refused to sign the receipt for the payment of the last third of the forest. All his salary went on household expenses and in payment of petty debts that could not be put off. There was positively no money. This was unpleasant and awkward, and in Stepan Arkadyevitch's opinion things could not go on like this. The explanation of the position was, in his view, to be found in the fact that his salary was too small. The post he filled had been unmistakably very good five years ago, but it was so no longer. Petrov, the bank director, had twelve thousand; Sventitsky, a company director, had seventeen thousand; Mitin, who had founded a bank, received fifty thousand. "Clearly I've been napping, and they've overlooked me," Stepan Arkadyevitch thought about himself. And he began keeping his eyes and ears open, and towards the end of the winter he had discovered a very good berth and had formed a plan of attack upon it, at first from Moscow through aunts, uncles, and friends, and then, when the matter was well advanced, in the spring, he went himself to Petersburg. It was one of those snug, lucrative berths of which there are so many more nowadays than there used to be, with incomes ranging from one thousand to fifty thousand roubles. It was the post of secretary of the committee of the amalgamated agency of the southern railways, and of certain banking companies. This position, like all such appointments, called for such immense energy and such varied qualifications, that it was difficult for them to be found united in any one man. And since a man combining all the qualifications was not to be found, it was at least better that the post be filled by an honest than by a dishonest man. And Stepan Arkadyevitch was not merely an honest man--unemphatically--in the common acceptation of the words, he was an honest man--emphatically--in that special sense which the word has in Moscow, when they talk of an "honest" politician, an "honest" writer, an "honest" newspaper, an "honest" institution, an "honest" tendency, meaning not simply that the man or the institution is not dishonest, but that they are capable on occasion of taking a line of their own in opposition to the authorities. Stepan Arkadyevitch moved in those circles in Moscow in which that expression had come into use, was regarded there as an honest man, and so had more right to this appointment than others. The appointment yielded an income of from seven to ten thousand a year, and Oblonsky could fill it without giving up his government position. It was in the hands of two ministers, one lady, and two Jews, and all these people, though the way had been paved already with them, Stepan Arkadyevitch had to see in Petersburg. Besides this business, Stepan Arkadyevitch had promised his sister Anna to obtain from Karenin a definite answer on the question of divorce. And begging fifty roubles from Dolly, he set off for Petersburg. Stepan Arkadyevitch sat in Karenin's study listening to his report on the causes of the unsatisfactory position of Russian finance, and only waiting for the moment when he would finish to speak about his own business or about Anna. "Yes, that's very true," he said, when Alexey Alexandrovitch took off the pince-nez, without which he could not read now, and looked inquiringly at his former brother-in-law, "that's very true in particular cases, but still the principle of our day is freedom." "Yes, but I lay down another principle, embracing the principle of freedom," said Alexey Alexandrovitch, with emphasis on the word "embracing," and he put on his pince-nez again, so as to read the passage in which this statement was made. And turning over the beautifully written, wide-margined manuscript, Alexey Alexandrovitch read aloud over again the conclusive passage. "I don't advocate protection for the sake of private interests, but for the public weal, and for the lower and upper classes equally," he said, looking over his pince-nez at Oblonsky. "But _they_ cannot grasp that, _they_ are taken up now with personal interests, and carried away by phrases." Stepan Arkadyevitch knew that when Karenin began to talk of what _they_ were doing and thinking, the persons who would not accept his report and were the cause of everything wrong in Russia, that it was coming near the end. And so now he eagerly abandoned the principle of free-trade, and fully agreed. Alexey Alexandrovitch paused, thoughtfully turning over the pages of his manuscript. "Oh, by the way," said Stepan Arkadyevitch, "I wanted to ask you, some time when you see Pomorsky, to drop him a hint that I should be very glad to get that new appointment of secretary of the committee of the amalgamated agency of the southern railways and banking companies." Stepan Arkadyevitch was familiar by now with the title of the post he coveted, and he brought it out rapidly without mistake. Alexey Alexandrovitch questioned him as to the duties of this new committee, and pondered. He was considering whether the new committee would not be acting in some way contrary to the views he had been advocating. But as the influence of the new committee was of a very complex nature, and his views were of very wide application, he could not decide this straight off, and taking off his pince-nez, he said: "Of course, I can mention it to him; but what is your reason precisely for wishing to obtain the appointment?" "It's a good salary, rising to nine thousand, and my means..." "Nine thousand!" repeated Alexey Alexandrovitch, and he frowned. The high figure of the salary made him reflect that on that side Stepan Arkadyevitch's proposed position ran counter to the main tendency of his own projects of reform, which always leaned towards economy. "I consider, and I have embodied my views in a note on the subject, that in our day these immense salaries are evidence of the unsound economic _assiette_ of our finances." "But what's to be done?" said Stepan Arkadyevitch. "Suppose a bank director gets ten thousand--well, he's worth it; or an engineer gets twenty thousand--after all, it's a growing thing, you know!" "I assume that a salary is the price paid for a commodity, and it ought to conform with the law of supply and demand. If the salary is fixed without any regard for that law, as, for instance, when I see two engineers leaving college together, both equally well trained and efficient, and one getting forty thousand while the other is satisfied with two; or when I see lawyers and hussars, having no special qualifications, appointed directors of banking companies with immense salaries, I conclude that the salary is not fixed in accordance with the law of supply and demand, but simply through personal interest. And this is an abuse of great gravity in itself, and one that reacts injuriously on the government service. I consider..." Stepan Arkadyevitch made haste to interrupt his brother-in-law. "Yes; but you must agree that it's a new institution of undoubted utility that's being started. After all, you know, it's a growing thing! What they lay particular stress on is the thing being carried on honestly," said Stepan Arkadyevitch with emphasis. But the Moscow significance of the word "honest" was lost on Alexey Alexandrovitch. "Honesty is only a negative qualification," he said. "Well, you'll do me a great service, anyway," said Stepan Arkadyevitch, "by putting in a word to Pomorsky--just in the way of conversation...." "But I fancy it's more in Volgarinov's hands," said Alexey Alexandrovitch. "Volgarinov has fully assented, as far as he's concerned," said Stepan Arkadyevitch, turning red. Stepan Arkadyevitch reddened at the mention of that name, because he had been that morning at the Jew Volgarinov's, and the visit had left an unpleasant recollection. Stepan Arkadyevitch believed most positively that the committee in which he was trying to get an appointment was a new, genuine, and honest public body, but that morning when Volgarinov had--intentionally, beyond a doubt--kept him two hours waiting with other petitioners in his waiting room, he had suddenly felt uneasy. Whether he was uncomfortable that he, a descendant of Rurik, Prince Oblonsky, had been kept for two hours waiting to see a Jew, or that for the first time in his life he was not following the example of his ancestors in serving the government, but was turning off into a new career, anyway he was very uncomfortable. During those two hours in Volgarinov's waiting room Stepan Arkadyevitch, stepping jauntily about the room, pulling his whiskers, entering into conversation with the other petitioners, and inventing an epigram on his position, assiduously concealed from others, and even from himself, the feeling he was experiencing. But all the time he was uncomfortable and angry, he could not have said why--whether because he could not get his epigram just right, or from some other reason. When at last Volgarinov had received him with exaggerated politeness and unmistakable triumph at his humiliation, and had all but refused the favor asked of him, Stepan Arkadyevitch had made haste to forget it all as soon as possible. And now, at the mere recollection, he blushed. Chapter 18 "Now there is something I want to talk about, and you know what it is. About Anna," Stepan Arkadyevitch said, pausing for a brief space, and shaking off the unpleasant impression. As soon as Oblonsky uttered Anna's name, the face of Alexey Alexandrovitch was completely transformed; all the life was gone out of it, and it looked weary and dead. "What is it exactly that you want from me?" he said, moving in his chair and snapping his pince-nez. "A definite settlement, Alexey Alexandrovitch, some settlement of the position. I'm appealing to you" ("not as an injured husband," Stepan Arkadyevitch was going to say, but afraid of wrecking his negotiation by this, he changed the words) "not as a statesman" (which did not sound _a propos_), "but simply as a man, and a good-hearted man and a Christian. You must have pity on her," he said. "That is, in what way precisely?" Karenin said softly. "Yes, pity on her. If you had seen her as I have!--I have been spending all the winter with her--you would have pity on her. Her position is awful, simply awful!" "I had imagined," answered Alexey Alexandrovitch in a higher, almost shrill voice, "that Anna Arkadyevna had everything she had desired for herself." "Oh, Alexey Alexandrovitch, for heaven's sake, don't let us indulge in recriminations! What is past is past, and you know what she wants and is waiting for--divorce." "But I believe Anna Arkadyevna refuses a divorce, if I make it a condition to leave me my son. I replied in that sense, and supposed that the matter was ended. I consider it at an end," shrieked Alexey Alexandrovitch. "But, for heaven's sake, don't get hot!" said Stepan Arkadyevitch, touching his brother-in-law's knee. "The matter is not ended. If you will allow me to recapitulate, it was like this: when you parted, you were as magnanimous as could possibly be; you were ready to give her everything--freedom, divorce even. She appreciated that. No, don't think that. She did appreciate it--to such a degree that at the first moment, feeling how she had wronged you, she did not consider and could not consider everything. She gave up everything. But experience, time, have shown that her position is unbearable, impossible." "The life of Anna Arkadyevna can have no interest for me," Alexey Alexandrovitch put in, lifting his eyebrows. "Allow me to disbelieve that," Stepan Arkadyevitch replied gently. "Her position is intolerable for her, and of no benefit to anyone whatever. She has deserved it, you will say. She knows that and asks you for nothing; she says plainly that she dare not ask you. But I, all of us, her relatives, all who love her, beg you, entreat you. Why should she suffer? Who is any the better for it?" "Excuse me, you seem to put me in the position of the guilty party," observed Alexey Alexandrovitch. "Oh, no, oh, no, not at all! please understand me," said Stepan Arkadyevitch, touching his hand again, as though feeling sure this physical contact would soften his brother-in-law. "All I say is this: her position is intolerable, and it might be alleviated by you, and you will lose nothing by it. I will arrange it all for you, so that you'll not notice it. You did promise it, you know." "The promise was given before. And I had supposed that the question of my son had settled the matter. Besides, I had hoped that Anna Arkadyevna had enough generosity..." Alexey Alexandrovitch articulated with difficulty, his lips twitching and his face white. "She leaves it all to your generosity. She begs, she implores one thing of you--to extricate her from the impossible position in which she is placed. She does not ask for her son now. Alexey Alexandrovitch, you are a good man. Put yourself in her position for a minute. The question of divorce for her in her position is a question of life and death. If you had not promised it once, she would have reconciled herself to her position, she would have gone on living in the country. But you promised it, and she wrote to you, and moved to Moscow. And here she's been for six months in Moscow, where every chance meeting cuts her to the heart, every day expecting an answer. Why, it's like keeping a condemned criminal for six months with the rope round his neck, promising him perhaps death, perhaps mercy. Have pity on her, and I will undertake to arrange everything. _Vos scrupules_..." "I am not talking about that, about that..." Alexey Alexandrovitch interrupted with disgust. "But, perhaps, I promised what I had no right to promise." "So you go back from your promise?" "I have never refused to do all that is possible, but I want time to consider how much of what I promised is possible." "No, Alexey Alexandrovitch!" cried Oblonsky, jumping up, "I won't believe that! She's unhappy as only an unhappy woman can be, and you cannot refuse in such..." "As much of what I promised as is possible. _Vous professez d'etre libre penseur._ But I as a believer cannot, in a matter of such gravity, act in opposition to the Christian law." "But in Christian societies and among us, as far as I'm aware, divorce is allowed," said Stepan Arkadyevitch. "Divorce is sanctioned even by our church. And we see..." "It is allowed, but not in the sense..." "Alexey Alexandrovitch, you are not like yourself," said Oblonsky, after a brief pause. "Wasn't it you (and didn't we all appreciate it in you?) who forgave everything, and moved simply by Christian feeling was ready to make any sacrifice? You said yourself: if a man take thy coat, give him thy cloak also, and now..." "I beg," said Alexey Alexandrovitch shrilly, getting suddenly onto his feet, his face white and his jaws twitching, "I beg you to drop this ... to drop ... this subject!" "Oh, no! Oh, forgive me, forgive me if I have wounded you," said Stepan Arkadyevitch, holding out his hand with a smile of embarrassment; "but like a messenger I have simply performed the commission given me." Alexey Alexandrovitch gave him his hand, pondered a little, and said: "I must think it over and seek for guidance. The day after tomorrow I will give you a final answer," he said, after considering a moment. Chapter 19 Stepan Arkadyevitch was about to go away when Korney came in to announce: "Sergey Alexyevitch!" "Who's Sergey Alexyevitch?" Stepan Arkadyevitch was beginning, but he remembered immediately. "Ah, Seryozha!" he said aloud. "Sergey Alexyevitch! I thought it was the director of a department. Anna asked me to see him too," he thought. And he recalled the timid, piteous expression with which Anna had said to him at parting: "Anyway, you will see him. Find out exactly where he is, who is looking after him. And Stiva ... if it were possible! Could it be possible?" Stepan Arkadyevitch knew what was meant by that "if it were possible,"--if it were possible to arrange the divorce so as to let her have her son.... Stepan Arkadyevitch saw now that it was no good to dream of that, but still he was glad to see his nephew. Alexey Alexandrovitch reminded his brother-in-law that they never spoke to the boy of his mother, and he begged him not to mention a single word about her. "He was very ill after that interview with his mother, which we had not foreseen," said Alexey Alexandrovitch. "Indeed, we feared for his life. But with rational treatment, and sea-bathing in the summer, he regained his strength, and now, by the doctor's advice, I have let him go to school. And certainly the companionship of school has had a good effect on him, and he is perfectly well, and making good progress." "What a fine fellow he's grown! He's not Seryozha now, but quite full-fledged Sergey Alexyevitch!" said Stepan Arkadyevitch, smiling, as he looked at the handsome, broad-shouldered lad in blue coat and long trousers, who walked in alertly and confidently. The boy looked healthy and good-humored. He bowed to his uncle as to a stranger, but recognizing him, he blushed and turned hurriedly away from him, as though offended and irritated at something. The boy went up to his father and handed him a note of the marks he had gained in school. "Well, that's very fair," said his father, "you can go." "He's thinner and taller, and has grown out of being a child into a boy; I like that," said Stepan Arkadyevitch. "Do you remember me?" The boy looked back quickly at his uncle. "Yes, _mon oncle_," he answered, glancing at his father, and again he looked downcast. His uncle called him to him, and took his hand. "Well, and how are you getting on?" he said, wanting to talk to him, and not knowing what to say. The boy, blushing and making no answer, cautiously drew his hand away. As soon as Stepan Arkadyevitch let go his hand, he glanced doubtfully at his father, and like a bird set free, he darted out of the room. A year had passed since the last time Seryozha had seen his mother. Since then he had heard nothing more of her. And in the course of that year he had gone to school, and made friends among his schoolfellows. The dreams and memories of his mother, which had made him ill after seeing her, did not occupy his thoughts now. When they came back to him, he studiously drove them away, regarding them as shameful and girlish, below the dignity of a boy and a schoolboy. He knew that his father and mother were separated by some quarrel, he knew that he had to remain with his father, and he tried to get used to that idea. He disliked seeing his uncle, so like his mother, for it called up those memories of which he was ashamed. He disliked it all the more as from some words he had caught as he waited at the study door, and still more from the faces of his father and uncle, he guessed that they must have been talking of his mother. And to avoid condemning the father with whom he lived and on whom he was dependent, and, above all, to avoid giving way to sentimentality, which he considered so degrading, Seryozha tried not to look at his uncle who had come to disturb his peace of mind, and not to think of what he recalled to him. But when Stepan Arkadyevitch, going out after him, saw him on the stairs, and calling to him, asked him how he spent his playtime at school, Seryozha talked more freely to him away from his father's presence. "We have a railway now," he said in answer to his uncle's question. "It's like this, do you see: two sit on a bench--they're the passengers; and one stands up straight on the bench. And all are harnessed to it by their arms or by their belts, and they run through all the rooms--the doors are left open beforehand. Well, and it's pretty hard work being the conductor!" "That's the one that stands?" Stepan Arkadyevitch inquired, smiling. "Yes, you want pluck for it, and cleverness too, especially when they stop all of a sudden, or someone falls down." "Yes, that must be a serious matter," said Stepan Arkadyevitch, watching with mournful interest the eager eyes, like his mother's; not childish now--no longer fully innocent. And though he had promised Alexey Alexandrovitch not to speak of Anna, he could not restrain himself. "Do you remember your mother?" he asked suddenly. "No, I don't," Seryozha said quickly. He blushed crimson, and his face clouded over. And his uncle could get nothing more out of him. His tutor found his pupil on the staircase half an hour later, and for a long while he could not make out whether he was ill-tempered or crying. "What is it? I expect you hurt yourself when you fell down?" said the tutor. "I told you it was a dangerous game. And we shall have to speak to the director." "If I had hurt myself, nobody should have found it out, that's certain." "Well, what is it, then?" "Leave me alone! If I remember, or if I don't remember?... what business is it of his? Why should I remember? Leave me in peace!" he said, addressing not his tutor, but the whole world. Chapter 20 Stepan Arkadyevitch, as usual, did not waste his time in Petersburg. In Petersburg, besides business, his sister's divorce, and his coveted appointment, he wanted, as he always did, to freshen himself up, as he said, after the mustiness of Moscow. In spite of its _cafes chantants_ and its omnibuses, Moscow was yet a stagnant bog. Stepan Arkadyevitch always felt it. After living for some time in Moscow, especially in close relations with his family, he was conscious of a depression of spirits. After being a long time in Moscow without a change, he reached a point when he positively began to be worrying himself over his wife's ill-humor and reproaches, over his children's health and education, and the petty details of his official work; even the fact of being in debt worried him. But he had only to go and stay a little while in Petersburg, in the circle there in which he moved, where people lived--really lived--instead of vegetating as in Moscow, and all such ideas vanished and melted away at once, like wax before the fire. His wife?... Only that day he had been talking to Prince Tchetchensky. Prince Tchetchensky had a wife and family, grown-up pages in the corps, ... and he had another illegitimate family of children also. Though the first family was very nice too, Prince Tchetchensky felt happier in his second family; and he used to take his eldest son with him to his second family, and told Stepan Arkadyevitch that he thought it good for his son, enlarging his ideas. What would have been said to that in Moscow? His children? In Petersburg children did not prevent their parents from enjoying life. The children were brought up in schools, and there was no trace of the wild idea that prevailed in Moscow, in Lvov's household, for instance, that all the luxuries of life were for the children, while the parents have nothing but work and anxiety. Here people understood that a man is in duty bound to live for himself, as every man of culture should live. His official duties? Official work here was not the stiff, hopeless drudgery that it was in Moscow. Here there was some interest in official life. A chance meeting, a service rendered, a happy phrase, a knack of facetious mimicry, and a man's career might be made in a trice. So it had been with Bryantsev, whom Stepan Arkadyevitch had met the previous day, and who was one of the highest functionaries in government now. There was some interest in official work like that. The Petersburg attitude on pecuniary matters had an especially soothing effect on Stepan Arkadyevitch. Bartnyansky, who must spend at least fifty thousand to judge by the style he lived in, had made an interesting comment the day before on that subject. As they were talking before dinner, Stepan Arkadyevitch said to Bartnyansky: "You're friendly, I fancy, with Mordvinsky; you might do me a favor: say a word to him, please, for me. There's an appointment I should like to get--secretary of the agency..." "Oh, I shan't remember all that, if you tell it to me.... But what possesses you to have to do with railways and Jews?... Take it as you will, it's a low business." Stepan Arkadyevitch did not say to Bartnyansky that it was a "growing thing"--Bartnyansky would not have understood that. "I want the money, I've nothing to live on." "You're living, aren't you?" "Yes, but in debt." "Are you, though? Heavily?" said Bartnyansky sympathetically. "Very heavily: twenty thousand." Bartnyansky broke into good-humored laughter. "Oh, lucky fellow!" said he. "My debts mount up to a million and a half, and I've nothing, and still I can live, as you see!" And Stepan Arkadyevitch saw the correctness of this view not in words only but in actual fact. Zhivahov owed three hundred thousand, and hadn't a farthing to bless himself with, and he lived, and in style too! Count Krivtsov was considered a hopeless case by everyone, and yet he kept two mistresses. Petrovsky had run through five millions, and still lived in just the same style, and was even a manager in the financial department with a salary of twenty thousand. But besides this, Petersburg had physically an agreeable effect on Stepan Arkadyevitch. It made him younger. In Moscow he sometimes found a gray hair in his head, dropped asleep after dinner, stretched, walked slowly upstairs, breathing heavily, was bored by the society of young women, and did not dance at balls. In Petersburg he always felt ten years younger. His experience in Petersburg was exactly what had been described to him on the previous day by Prince Pyotr Oblonsky, a man of sixty, who had just come back from abroad: "We don't know the way to live here," said Pyotr Oblonsky. "I spent the summer in Baden, and you wouldn't believe it, I felt quite a young man. At a glimpse of a pretty woman, my thoughts.... One dines and drinks a glass of wine, and feels strong and ready for anything. I came home to Russia--had to see my wife, and, what's more, go to my country place; and there, you'd hardly believe it, in a fortnight I'd got into a dressing gown and given up dressing for dinner. Needn't say I had no thoughts left for pretty women. I became quite an old gentleman. There was nothing left for me but to think of my eternal salvation. I went off to Paris--I was as right as could be at once." Stepan Arkadyevitch felt exactly the difference that Pyotr Oblonsky described. In Moscow he degenerated so much that if he had had to be there for long together, he might in good earnest have come to considering his salvation; in Petersburg he felt himself a man of the world again. Between Princess Betsy Tverskaya and Stepan Arkadyevitch there had long existed rather curious relations. Stepan Arkadyevitch always flirted with her in jest, and used to say to her, also in jest, the most unseemly things, knowing that nothing delighted her so much. The day after his conversation with Karenin, Stepan Arkadyevitch went to see her, and felt so youthful that in this jesting flirtation and nonsense he recklessly went so far that he did not know how to extricate himself, as unluckily he was so far from being attracted by her that he thought her positively disagreeable. What made it hard to change the conversation was the fact that he was very attractive to her. So that he was considerably relieved at the arrival of Princess Myakaya, which cut short their _tete-a-tete_. "Ah, so you're here!" said she when she saw him. "Well, and what news of your poor sister? You needn't look at me like that," she added. "Ever since they've all turned against her, all those who're a thousand times worse than she, I've thought she did a very fine thing. I can't forgive Vronsky for not letting me know when she was in Petersburg. I'd have gone to see her and gone about with her everywhere. Please give her my love. Come, tell me about her." "Yes, her position is very difficult; she..." began Stepan Arkadyevitch, in the simplicity of his heart accepting as sterling coin Princess Myakaya's words "tell me about her." Princess Myakaya interrupted him immediately, as she always did, and began talking herself. "She's done what they all do, except me--only they hide it. But she wouldn't be deceitful, and she did a fine thing. And she did better still in throwing up that crazy brother-in-law of yours. You must excuse me. Everybody used to say he was so clever, so very clever; I was the only one that said he was a fool. Now that he's so thick with Lidia Ivanovna and Landau, they all say he's crazy, and I should prefer not to agree with everybody, but this time I can't help it." "Oh, do please explain," said Stepan Arkadyevitch; "what does it mean? Yesterday I was seeing him on my sister's behalf, and I asked him to give me a final answer. He gave me no answer, and said he would think it over. But this morning, instead of an answer, I received an invitation from Countess Lidia Ivanovna for this evening." "Ah, so that's it, that's it!" said Princess Myakaya gleefully, "they're going to ask Landau what he's to say." "Ask Landau? What for? Who or what's Landau?" "What! you don't know Jules Landau, _le fameux Jules Landau, le clairvoyant_? He's crazy too, but on him your sister's fate depends. See what comes of living in the provinces--you know nothing about anything. Landau, do you see, was a _commis_ in a shop in Paris, and he went to a doctor's; and in the doctor's waiting room he fell asleep, and in his sleep he began giving advice to all the patients. And wonderful advice it was! Then the wife of Yury Meledinsky--you know, the invalid?--heard of this Landau, and had him to see her husband. And he cured her husband, though I can't say that I see he did him much good, for he's just as feeble a creature as ever he was, but they believed in him, and took him along with them and brought him to Russia. Here there's been a general rush to him, and he's begun doctoring everyone. He cured Countess Bezzubova, and she took such a fancy to him that she adopted him." "Adopted him?" "Yes, as her son. He's not Landau any more now, but Count Bezzubov. That's neither here nor there, though; but Lidia--I'm very fond of her, but she has a screw loose somewhere--has lost her heart to this Landau now, and nothing is settled now in her house or Alexey Alexandrovitch's without him, and so your sister's fate is now in the hands of Landau, _alias_ Count Bezzubov." Chapter 21 After a capital dinner and a great deal of cognac drunk at Bartnyansky's, Stepan Arkadyevitch, only a little later than the appointed time, went in to Countess Lidia Ivanovna's. "Who else is with the countess?--a Frenchman?" Stepan Arkadyevitch asked the hall porter, as he glanced at the familiar overcoat of Alexey Alexandrovitch and a queer, rather artless-looking overcoat with clasps. "Alexey Alexandrovitch Karenin and Count Bezzubov," the porter answered severely. "Princess Myakaya guessed right," thought Stepan Arkadyevitch, as he went upstairs. "Curious! It would be quite as well, though, to get on friendly terms with her. She has immense influence. If she would say a word to Pomorsky, the thing would be a certainty." It was still quite light out-of-doors, but in Countess Lidia Ivanovna's little drawing room the blinds were drawn and the lamps lighted. At a round table under a lamp sat the countess and Alexey Alexandrovitch, talking softly. A short, thinnish man, very pale and handsome, with feminine hips and knock-kneed legs, with fine brilliant eyes and long hair lying on the collar of his coat, was standing at the end of the room gazing at the portraits on the wall. After greeting the lady of the house and Alexey Alexandrovitch, Stepan Arkadyevitch could not resist glancing once more at the unknown man. "Monsieur Landau!" the countess addressed him with a softness and caution that impressed Oblonsky. And she introduced them. Landau looked round hurriedly, came up, and smiling, laid his moist, lifeless hand in Stepan Arkadyevitch's outstretched hand and immediately walked away and fell to gazing at the portraits again. The countess and Alexey Alexandrovitch looked at each other significantly. "I am very glad to see you, particularly today," said Countess Lidia Ivanovna, pointing Stepan Arkadyevitch to a seat beside Karenin. "I introduced you to him as Landau," she said in a soft voice, glancing at the Frenchman and again immediately after at Alexey Alexandrovitch, "but he is really Count Bezzubov, as you're probably aware. Only he does not like the title." "Yes, I heard so," answered Stepan Arkadyevitch; "they say he completely cured Countess Bezzubova." "She was here today, poor thing!" the countess said, turning to Alexey Alexandrovitch. "This separation is awful for her. It's such a blow to her!" "And he positively is going?" queried Alexey Alexandrovitch. "Yes, he's going to Paris. He heard a voice yesterday," said Countess Lidia Ivanovna, looking at Stepan Arkadyevitch. "Ah, a voice!" repeated Oblonsky, feeling that he must be as circumspect as he possibly could in this society, where something peculiar was going on, or was to go on, to which he had not the key. A moment's silence followed, after which Countess Lidia Ivanovna, as though approaching the main topic of conversation, said with a fine smile to Oblonsky: "I've known you for a long while, and am very glad to make a closer acquaintance with you. _Les amis de nos amis sont nos amis._ But to be a true friend, one must enter into the spiritual state of one's friend, and I fear that you are not doing so in the case of Alexey Alexandrovitch. You understand what I mean?" she said, lifting her fine pensive eyes. "In part, countess, I understand the position of Alexey Alexandrovitch..." said Oblonsky. Having no clear idea what they were talking about, he wanted to confine himself to generalities. "The change is not in his external position," Countess Lidia Ivanovna said sternly, following with eyes of love the figure of Alexey Alexandrovitch as he got up and crossed over to Landau; "his heart is changed, a new heart has been vouchsafed him, and I fear you don't fully apprehend the change that has taken place in him." "Oh, well, in general outlines I can conceive the change. We have always been friendly, and now..." said Stepan Arkadyevitch, responding with a sympathetic glance to the expression of the countess, and mentally balancing the question with which of the two ministers she was most intimate, so as to know about which to ask her to speak for him. "The change that has taken place in him cannot lessen his love for his neighbors; on the contrary, that change can only intensify love in his heart. But I am afraid you do not understand me. Won't you have some tea?" she said, with her eyes indicating the footman, who was handing round tea on a tray. "Not quite, countess. Of course, his misfortune..." "Yes, a misfortune which has proved the highest happiness, when his heart was made new, was filled full of it," she said, gazing with eyes full of love at Stepan Arkadyevitch. "I do believe I might ask her to speak to both of them," thought Stepan Arkadyevitch. "Oh, of course, countess," he said; "but I imagine such changes are a matter so private that no one, even the most intimate friend, would care to speak of them." "On the contrary! We ought to speak freely and help one another." "Yes, undoubtedly so, but there is such a difference of convictions, and besides..." said Oblonsky with a soft smile. "There can be no difference where it is a question of holy truth." "Oh, no, of course; but..." and Stepan Arkadyevitch paused in confusion. He understood at last that they were talking of religion. "I fancy he will fall asleep immediately," said Alexey Alexandrovitch in a whisper full of meaning, going up to Lidia Ivanovna. Stepan Arkadyevitch looked round. Landau was sitting at the window, leaning on his elbow and the back of his chair, his head drooping. Noticing that all eyes were turned on him he raised his head and smiled a smile of childlike artlessness. "Don't take any notice," said Lidia Ivanovna, and she lightly moved a chair up for Alexey Alexandrovitch. "I have observed..." she was beginning, when a footman came into the room with a letter. Lidia Ivanovna rapidly ran her eyes over the note, and excusing herself, wrote an answer with extraordinary rapidity, handed it to the man, and came back to the table. "I have observed," she went on, "that Moscow people, especially the men, are more indifferent to religion than anyone." "Oh, no, countess, I thought Moscow people had the reputation of being the firmest in the faith," answered Stepan Arkadyevitch. "But as far as I can make out, you are unfortunately one of the indifferent ones," said Alexey Alexandrovitch, turning to him with a weary smile. "How anyone can be indifferent!" said Lidia Ivanovna. "I am not so much indifferent on that subject as I am waiting in suspense," said Stepan Arkadyevitch, with his most deprecating smile. "I hardly think that the time for such questions has come yet for me." Alexey Alexandrovitch and Lidia Ivanovna looked at each other. "We can never tell whether the time has come for us or not," said Alexey Alexandrovitch severely. "We ought not to think whether we are ready or not ready. God's grace is not guided by human considerations: sometimes it comes not to those that strive for it, and comes to those that are unprepared, like Saul." "No, I believe it won't be just yet," said Lidia Ivanovna, who had been meanwhile watching the movements of the Frenchman. Landau got up and came to them. "Do you allow me to listen?" he asked. "Oh, yes; I did not want to disturb you," said Lidia Ivanovna, gazing tenderly at him; "sit here with us." "One has only not to close one's eyes to shut out the light," Alexey Alexandrovitch went on. "Ah, if you knew the happiness we know, feeling His presence ever in our hearts!" said Countess Lidia Ivanovna with a rapturous smile. "But a man may feel himself unworthy sometimes to rise to that height," said Stepan Arkadyevitch, conscious of hypocrisy in admitting this religious height, but at the same time unable to bring himself to acknowledge his free-thinking views before a person who, by a single word to Pomorsky, might procure him the coveted appointment. "That is, you mean that sin keeps him back?" said Lidia Ivanovna. "But that is a false idea. There is no sin for believers, their sin has been atoned for. _Pardon,_" she added, looking at the footman, who came in again with another letter. She read it and gave a verbal answer: "Tomorrow at the Grand Duchess's, say." "For the believer sin is not," she went on. "Yes, but faith without works is dead," said Stepan Arkadyevitch, recalling the phrase from the catechism, and only by his smile clinging to his independence. "There you have it--from the epistle of St. James," said Alexey Alexandrovitch, addressing Lidia Ivanovna, with a certain reproachfulness in his tone. It was unmistakably a subject they had discussed more than once before. "What harm has been done by the false interpretation of that passage! Nothing holds men back from belief like that misinterpretation. 'I have not works, so I cannot believe,' though all the while that is not said. But the very opposite is said." "Striving for God, saving the soul by fasting," said Countess Lidia Ivanovna, with disgusted contempt, "those are the crude ideas of our monks.... Yet that is nowhere said. It is far simpler and easier," she added, looking at Oblonsky with the same encouraging smile with which at court she encouraged youthful maids of honor, disconcerted by the new surroundings of the court. "We are saved by Christ who suffered for us. We are saved by faith," Alexey Alexandrovitch chimed in, with a glance of approval at her words. _"Vous comprenez l'anglais?"_ asked Lidia Ivanovna, and receiving a reply in the affirmative, she got up and began looking through a shelf of books. "I want to read him 'Safe and Happy,' or 'Under the Wing,'" she said, looking inquiringly at Karenin. And finding the book, and sitting down again in her place, she opened it. "It's very short. In it is described the way by which faith can be reached, and the happiness, above all earthly bliss, with which it fills the soul. The believer cannot be unhappy because he is not alone. But you will see." She was just settling herself to read when the footman came in again. "Madame Borozdina? Tell her, tomorrow at two o'clock. Yes," she said, putting her finger in the place in the book, and gazing before her with her fine pensive eyes, "that is how true faith acts. You know Marie Sanina? You know about her trouble? She lost her only child. She was in despair. And what happened? She found this comforter, and she thanks God now for the death of her child. Such is the happiness faith brings!" "Oh, yes, that is most..." said Stepan Arkadyevitch, glad they were going to read, and let him have a chance to collect his faculties. "No, I see I'd better not ask her about anything today," he thought. "If only I can get out of this without putting my foot in it!" "It will be dull for you," said Countess Lidia Ivanovna, addressing Landau; "you don't know English, but it's short." "Oh, I shall understand," said Landau, with the same smile, and he closed his eyes. Alexey Alexandrovitch and Lidia Ivanovna exchanged meaningful glances, and the reading began. Chapter 22 Stepan Arkadyevitch felt completely nonplussed by the strange talk which he was hearing for the first time. The complexity of Petersburg, as a rule, had a stimulating effect on him, rousing him out of his Moscow stagnation. But he liked these complications, and understood them only in the circles he knew and was at home in. In these unfamiliar surroundings he was puzzled and disconcerted, and could not get his bearings. As he listened to Countess Lidia Ivanovna, aware of the beautiful, artless--or perhaps artful, he could not decide which--eyes of Landau fixed upon him, Stepan Arkadyevitch began to be conscious of a peculiar heaviness in his head. The most incongruous ideas were in confusion in his head. "Marie Sanina is glad her child's dead.... How good a smoke would be now!... To be saved, one need only believe, and the monks don't know how the thing's to be done, but Countess Lidia Ivanovna does know.... And why is my head so heavy? Is it the cognac, or all this being so queer? Anyway, I fancy I've done nothing unsuitable so far. But anyway, it won't do to ask her now. They say they make one say one's prayers. I only hope they won't make me! That'll be too imbecile. And what stuff it is she's reading! but she has a good accent. Landau--Bezzubov--what's he Bezzubov for?" All at once Stepan Arkadyevitch became aware that his lower jaw was uncontrollably forming a yawn. He pulled his whiskers to cover the yawn, and shook himself together. But soon after he became aware that he was dropping asleep and on the very point of snoring. He recovered himself at the very moment when the voice of Countess Lidia Ivanovna was saying "he's asleep." Stepan Arkadyevitch started with dismay, feeling guilty and caught. But he was reassured at once by seeing that the words "he's asleep" referred not to him, but to Landau. The Frenchman was asleep as well as Stepan Arkadyevitch. But Stepan Arkadyevitch's being asleep would have offended them, as he thought (though even this, he thought, might not be so, as everything seemed so queer), while Landau's being asleep delighted them extremely, especially Countess Lidia Ivanovna. _"Mon ami,"_ said Lidia Ivanovna, carefully holding the folds of her silk gown so as not to rustle, and in her excitement calling Karenin not Alexey Alexandrovitch, but _"mon ami," "donnez-lui la main. Vous voyez? Sh!"_ she hissed at the footman as he came in again. "Not at home." The Frenchman was asleep, or pretending to be asleep, with his head on the back of his chair, and his moist hand, as it lay on his knee, made faint movements, as though trying to catch something. Alexey Alexandrovitch got up, tried to move carefully, but stumbled against the table, went up and laid his hand in the Frenchman's hand. Stepan Arkadyevitch got up too, and opening his eyes wide, trying to wake himself up if he were asleep, he looked first at one and then at the other. It was all real. Stepan Arkadyevitch felt that his head was getting worse and worse. "_Que la personne qui est arrivee la derniere, celle qui demande, qu'elle sorte! Qu'elle sorte!_" articulated the Frenchman, without opening his eyes. "_Vous m'excuserez, mais vous voyez.... Revenez vers dix heures, encore mieux demain._" "_Qu'elle sorte!_" repeated the Frenchman impatiently. "_C'est moi, n'est-ce pas?_" And receiving an answer in the affirmative, Stepan Arkadyevitch, forgetting the favor he had meant to ask of Lidia Ivanovna, and forgetting his sister's affairs, caring for nothing, but filled with the sole desire to get away as soon as possible, went out on tiptoe and ran out into the street as though from a plague-stricken house. For a long while he chatted and joked with his cab-driver, trying to recover his spirits. At the French theater where he arrived for the last act, and afterwards at the Tatar restaurant after his champagne, Stepan Arkadyevitch felt a little refreshed in the atmosphere he was used to. But still he felt quite unlike himself all that evening. On getting home to Pyotr Oblonsky's, where he was staying, Stepan Arkadyevitch found a note from Betsy. She wrote to him that she was very anxious to finish their interrupted conversation, and begged him to come next day. He had scarcely read this note, and frowned at its contents, when he heard below the ponderous tramp of the servants, carrying something heavy. Stepan Arkadyevitch went out to look. It was the rejuvenated Pyotr Oblonsky. He was so drunk that he could not walk upstairs; but he told them to set him on his legs when he saw Stepan Arkadyevitch, and clinging to him, walked with him into his room and there began telling him how he had spent the evening, and fell asleep doing so. Stepan Arkadyevitch was in very low spirits, which happened rarely with him, and for a long while he could not go to sleep. Everything he could recall to his mind, everything was disgusting; but most disgusting of all, as if it were something shameful, was the memory of the evening he had spent at Countess Lidia Ivanovna's. Next day he received from Alexey Alexandrovitch a final answer, refusing to grant Anna's divorce, and he understood that this decision was based on what the Frenchman had said in his real or pretended trance. Chapter 23 In order to carry through any undertaking in family life, there must necessarily be either complete division between the husband and wife, or loving agreement. When the relations of a couple are vacillating and neither one thing nor the other, no sort of enterprise can be undertaken. Many families remain for years in the same place, though both husband and wife are sick of it, simply because there is neither complete division nor agreement between them. Both Vronsky and Anna felt life in Moscow insupportable in the heat and dust, when the spring sunshine was followed by the glare of summer, and all the trees in the boulevards had long since been in full leaf, and the leaves were covered with dust. But they did not go back to Vozdvizhenskoe, as they had arranged to do long before; they went on staying in Moscow, though they both loathed it, because of late there had been no agreement between them. The irritability that kept them apart had no external cause, and all efforts to come to an understanding intensified it, instead of removing it. It was an inner irritation, grounded in her mind on the conviction that his love had grown less; in his, on regret that he had put himself for her sake in a difficult position, which she, instead of lightening, made still more difficult. Neither of them gave full utterance to their sense of grievance, but they considered each other in the wrong, and tried on every pretext to prove this to one another. In her eyes the whole of him, with all his habits, ideas, desires, with all his spiritual and physical temperament, was one thing--love for women, and that love, she felt, ought to be entirely concentrated on her alone. That love was less; consequently, as she reasoned, he must have transferred part of his love to other women or to another woman--and she was jealous. She was jealous not of any particular woman but of the decrease of his love. Not having got an object for her jealousy, she was on the lookout for it. At the slightest hint she transferred her jealousy from one object to another. At one time she was jealous of those low women with whom he might so easily renew his old bachelor ties; then she was jealous of the society women he might meet; then she was jealous of the imaginary girl whom he might want to marry, for whose sake he would break with her. And this last form of jealousy tortured her most of all, especially as he had unwarily told her, in a moment of frankness, that his mother knew him so little that she had had the audacity to try and persuade him to marry the young Princess Sorokina. And being jealous of him, Anna was indignant against him and found grounds for indignation in everything. For everything that was difficult in her position she blamed him. The agonizing condition of suspense she had passed in Moscow, the tardiness and indecision of Alexey Alexandrovitch, her solitude--she put it all down to him. If he had loved her he would have seen all the bitterness of her position, and would have rescued her from it. For her being in Moscow and not in the country, he was to blame too. He could not live buried in the country as she would have liked to do. He must have society, and he had put her in this awful position, the bitterness of which he would not see. And again, it was his fault that she was forever separated from her son. Even the rare moments of tenderness that came from time to time did not soothe her; in his tenderness now she saw a shade of complacency, of self-confidence, which had not been of old, and which exasperated her. It was dusk. Anna was alone, and waiting for him to come back from a bachelor dinner. She walked up and down in his study (the room where the noise from the street was least heard), and thought over every detail of their yesterday's quarrel. Going back from the well-remembered, offensive words of the quarrel to what had been the ground of it, she arrived at last at its origin. For a long while she could hardly believe that their dissension had arisen from a conversation so inoffensive, of so little moment to either. But so it actually had been. It all arose from his laughing at the girls' high schools, declaring they were useless, while she defended them. He had spoken slightingly of women's education in general, and had said that Hannah, Anna's English protegee, had not the slightest need to know anything of physics. This irritated Anna. She saw in this a contemptuous reference to her occupations. And she bethought her of a phrase to pay him back for the pain he had given her. "I don't expect you to understand me, my feelings, as anyone who loved me might, but simple delicacy I did expect," she said. And he had actually flushed with vexation, and had said something unpleasant. She could not recall her answer, but at that point, with an unmistakable desire to wound her too, he had said: "I feel no interest in your infatuation over this girl, that's true, because I see it's unnatural." The cruelty with which he shattered the world she had built up for herself so laboriously to enable her to endure her hard life, the injustice with which he had accused her of affectation, of artificiality, aroused her. "I am very sorry that nothing but what's coarse and material is comprehensible and natural to you," she said and walked out of the room. When he had come in to her yesterday evening, they had not referred to the quarrel, but both felt that the quarrel had been smoothed over, but was not at an end. Today he had not been at home all day, and she felt so lonely and wretched in being on bad terms with him that she wanted to forget it all, to forgive him, and be reconciled with him; she wanted to throw the blame on herself and to justify him. "I am myself to blame. I'm irritable, I'm insanely jealous. I will make it up with him, and we'll go away to the country; there I shall be more at peace." "Unnatural!" She suddenly recalled the word that had stung her most of all, not so much the word itself as the intent to wound her with which it was said. "I know what he meant; he meant--unnatural, not loving my own daughter, to love another person's child. What does he know of love for children, of my love for Seryozha, whom I've sacrificed for him? But that wish to wound me! No, he loves another woman, it must be so." And perceiving that, while trying to regain her peace of mind, she had gone round the same circle that she had been round so often before, and had come back to her former state of exasperation, she was horrified at herself. "Can it be impossible? Can it be beyond me to control myself?" she said to herself, and began again from the beginning. "He's truthful, he's honest, he loves me. I love him, and in a few days the divorce will come. What more do I want? I want peace of mind and trust, and I will take the blame on myself. Yes, now when he comes in, I will tell him I was wrong, though I was not wrong, and we will go away tomorrow." And to escape thinking any more, and being overcome by irritability, she rang, and ordered the boxes to be brought up for packing their things for the country. At ten o'clock Vronsky came in. Chapter 24 "Well, was it nice?" she asked, coming out to meet him with a penitent and meek expression. "Just as usual," he answered, seeing at a glance that she was in one of her good moods. He was used by now to these transitions, and he was particularly glad to see it today, as he was in a specially good humor himself. "What do I see? Come, that's good!" he said, pointing to the boxes in the passage. "Yes, we must go. I went out for a drive, and it was so fine I longed to be in the country. There's nothing to keep you, is there?" "It's the one thing I desire. I'll be back directly, and we'll talk it over; I only want to change my coat. Order some tea." And he went into his room. There was something mortifying in the way he had said "Come, that's good," as one says to a child when it leaves off being naughty, and still more mortifying was the contrast between her penitent and his self-confident tone; and for one instant she felt the lust of strife rising up in her again, but making an effort she conquered it, and met Vronsky as good-humoredly as before. When he came in she told him, partly repeating phrases she had prepared beforehand, how she had spent the day, and her plans for going away. "You know it came to me almost like an inspiration," she said. "Why wait here for the divorce? Won't it be just the same in the country? I can't wait any longer! I don't want to go on hoping, I don't want to hear anything about the divorce. I have made up my mind it shall not have any more influence on my life. Do you agree?" "Oh, yes!" he said, glancing uneasily at her excited face. "What did you do? Who was there?" she said, after a pause. Vronsky mentioned the names of the guests. "The dinner was first rate, and the boat race, and it was all pleasant enough, but in Moscow they can never do anything without something _ridicule_. A lady of a sort appeared on the scene, teacher of swimming to the Queen of Sweden, and gave us an exhibition of her skill." "How? did she swim?" asked Anna, frowning. "In an absurd red _costume de natation;_ she was old and hideous too. So when shall we go?" "What an absurd fancy! Why, did she swim in some special way, then?" said Anna, not answering. "There was absolutely nothing in it. That's just what I say, it was awfully stupid. Well, then, when do you think of going?" Anna shook her head as though trying to drive away some unpleasant idea. "When? Why, the sooner the better! By tomorrow we shan't be ready. The day after tomorrow." "Yes ... oh, no, wait a minute! The day after tomorrow's Sunday, I have to be at maman's," said Vronsky, embarrassed, because as soon as he uttered his mother's name he was aware of her intent, suspicious eyes. His embarrassment confirmed her suspicion. She flushed hotly and drew away from him. It was now not the Queen of Sweden's swimming-mistress who filled Anna's imagination, but the young Princess Sorokina. She was staying in a village near Moscow with Countess Vronskaya. "Can't you go tomorrow?" she said. "Well, no! The deeds and the money for the business I'm going there for I can't get by tomorrow," he answered. "If so, we won't go at all." "But why so?" "I shall not go later. Monday or never!" "What for?" said Vronsky, as though in amazement. "Why, there's no meaning in it!" "There's no meaning in it to you, because you care nothing for me. You don't care to understand my life. The one thing that I cared for here was Hannah. You say it's affectation. Why, you said yesterday that I don't love my daughter, that I love this English girl, that it's unnatural. I should like to know what life there is for me that could be natural!" For an instant she had a clear vision of what she was doing, and was horrified at how she had fallen away from her resolution. But even though she knew it was her own ruin, she could not restrain herself, could not keep herself from proving to him that he was wrong, could not give way to him. "I never said that; I said I did not sympathize with this sudden passion." "How is it, though you boast of your straightforwardness, you don't tell the truth?" "I never boast, and I never tell lies," he said slowly, restraining his rising anger. "It's a great pity if you can't respect..." "Respect was invented to cover the empty place where love should be. And if you don't love me any more, it would be better and more honest to say so." "No, this is becoming unbearable!" cried Vronsky, getting up from his chair; and stopping short, facing her, he said, speaking deliberately: "What do you try my patience for?" looking as though he might have said much more, but was restraining himself. "It has limits." "What do you mean by that?" she cried, looking with terror at the undisguised hatred in his whole face, and especially in his cruel, menacing eyes. "I mean to say..." he was beginning, but he checked himself. "I must ask what it is you want of me?" "What can I want? All I can want is that you should not desert me, as you think of doing," she said, understanding all he had not uttered. "But that I don't want; that's secondary. I want love, and there is none. So then all is over." She turned towards the door. "Stop! sto-op!" said Vronsky, with no change in the gloomy lines of his brows, though he held her by the hand. "What is it all about? I said that we must put off going for three days, and on that you told me I was lying, that I was not an honorable man." "Yes, and I repeat that the man who reproaches me with having sacrificed everything for me," she said, recalling the words of a still earlier quarrel, "that he's worse than a dishonorable man--he's a heartless man." "Oh, there are limits to endurance!" he cried, and hastily let go her hand. "He hates me, that's clear," she thought, and in silence, without looking round, she walked with faltering steps out of the room. "He loves another woman, that's even clearer," she said to herself as she went into her own room. "I want love, and there is none. So, then, all is over." She repeated the words she had said, "and it must be ended." "But how?" she asked herself, and she sat down in a low chair before the looking glass. Thoughts of where she would go now, whether to the aunt who had brought her up, to Dolly, or simply alone abroad, and of what _he_ was doing now alone in his study; whether this was the final quarrel, or whether reconciliation were still possible; and of what all her old friends at Petersburg would say of her now; and of how Alexey Alexandrovitch would look at it, and many other ideas of what would happen now after this rupture, came into her head; but she did not give herself up to them with all her heart. At the bottom of her heart was some obscure idea that alone interested her, but she could not get clear sight of it. Thinking once more of Alexey Alexandrovitch, she recalled the time of her illness after her confinement, and the feeling which never left her at that time. "Why didn't I die?" and the words and the feeling of that time came back to her. And all at once she knew what was in her soul. Yes, it was that idea which alone solved all. "Yes, to die!... And the shame and disgrace of Alexey Alexandrovitch and of Seryozha, and my awful shame, it will all be saved by death. To die! and he will feel remorse; will be sorry; will love me; he will suffer on my account." With the trace of a smile of commiseration for herself she sat down in the armchair, taking off and putting on the rings on her left hand, vividly picturing from different sides his feelings after her death. Approaching footsteps--his steps--distracted her attention. As though absorbed in the arrangement of her rings, she did not even turn to him. He went up to her, and taking her by the hand, said softly: "Anna, we'll go the day after tomorrow, if you like. I agree to everything." She did not speak. "What is it?" he urged. "You know," she said, and at the same instant, unable to restrain herself any longer, she burst into sobs. "Cast me off!" she articulated between her sobs. "I'll go away tomorrow ... I'll do more. What am I? An immoral woman! A stone round your neck. I don't want to make you wretched, I don't want to! I'll set you free. You don't love me; you love someone else!" Vronsky besought her to be calm, and declared that there was no trace of foundation for her jealousy; that he had never ceased, and never would cease, to love her; that he loved her more than ever. "Anna, why distress yourself and me so?" he said to her, kissing her hands. There was tenderness now in his face, and she fancied she caught the sound of tears in his voice, and she felt them wet on her hand. And instantly Anna's despairing jealousy changed to a despairing passion of tenderness. She put her arms round him, and covered with kisses his head, his neck, his hands. Chapter 25 Feeling that the reconciliation was complete, Anna set eagerly to work in the morning preparing for their departure. Though it was not settled whether they should go on Monday or Tuesday, as they had each given way to the other, Anna packed busily, feeling absolutely indifferent whether they went a day earlier or later. She was standing in her room over an open box, taking things out of it, when he came in to see her earlier than usual, dressed to go out. "I'm going off at once to see maman; she can send me the money by Yegorov. And I shall be ready to go tomorrow," he said. Though she was in such a good mood, the thought of his visit to his mother's gave her a pang. "No, I shan't be ready by then myself," she said; and at once reflected, "so then it was possible to arrange to do as I wished." "No, do as you meant to do. Go into the dining room, I'm coming directly. It's only to turn out those things that aren't wanted," she said, putting something more on the heap of frippery that lay in Annushka's arms. Vronsky was eating his beefsteak when she came into the dining-room. "You wouldn't believe how distasteful these rooms have become to me," she said, sitting down beside him to her coffee. "There's nothing more awful than these _chambres garnies_. There's no individuality in them, no soul. These clocks, and curtains, and, worst of all, the wallpapers--they're a nightmare. I think of Vozdvizhenskoe as the promised land. You're not sending the horses off yet?" "No, they will come after us. Where are you going to?" "I wanted to go to Wilson's to take some dresses to her. So it's really to be tomorrow?" she said in a cheerful voice; but suddenly her face changed. Vronsky's valet came in to ask him to sign a receipt for a telegram from Petersburg. There was nothing out of the way in Vronsky's getting a telegram, but he said, as though anxious to conceal something from her, that the receipt was in his study, and he turned hurriedly to her. "By tomorrow, without fail, I will finish it all." "From whom is the telegram?" she asked, not hearing him. "From Stiva," he answered reluctantly. "Why didn't you show it to me? What secret can there be between Stiva and me?" Vronsky called the valet back, and told him to bring the telegram. "I didn't want to show it to you, because Stiva has such a passion for telegraphing: why telegraph when nothing is settled?" "About the divorce?" "Yes; but he says he has not been able to come at anything yet. He has promised a decisive answer in a day or two. But here it is; read it." With trembling hands Anna took the telegram, and read what Vronsky had told her. At the end was added: "Little hope; but I will do everything possible and impossible." "I said yesterday that it's absolutely nothing to me when I get, or whether I never get, a divorce," she said, flushing crimson. "There was not the slightest necessity to hide it from me." "So he may hide and does hide his correspondence with women from me," she thought. "Yashvin meant to come this morning with Voytov," said Vronsky; "I believe he's won from Pyevtsov all and more than he can pay, about sixty thousand." "No," she said, irritated by his so obviously showing by this change of subject that he was irritated, "why did you suppose that this news would affect me so, that you must even try to hide it? I said I don't want to consider it, and I should have liked you to care as little about it as I do." "I care about it because I like definiteness," he said. "Definiteness is not in the form but the love," she said, more and more irritated, not by his words, but by the tone of cool composure in which he spoke. "What do you want it for?" "My God! love again," he thought, frowning. "Oh, you know what for; for your sake and your children's in the future." "There won't be children in the future." "That's a great pity," he said. "You want it for the children's sake, but you don't think of me?" she said, quite forgetting or not having heard that he had said, "_for your sake_ and the children's." The question of the possibility of having children had long been a subject of dispute and irritation to her. His desire to have children she interpreted as a proof he did not prize her beauty. "Oh, I said: for your sake. Above all for your sake," he repeated, frowning as though in pain, "because I am certain that the greater part of your irritability comes from the indefiniteness of the position." "Yes, now he has laid aside all pretense, and all his cold hatred for me is apparent," she thought, not hearing his words, but watching with terror the cold, cruel judge who looked mocking her out of his eyes. "The cause is not that," she said, "and, indeed, I don't see how the cause of my irritability, as you call it, can be that I am completely in your power. What indefiniteness is there in the position? on the contrary..." "I am very sorry that you don't care to understand," he interrupted, obstinately anxious to give utterance to his thought. "The indefiniteness consists in your imagining that I am free." "On that score you can set your mind quite at rest," she said, and turning away from him, she began drinking her coffee. She lifted her cup, with her little finger held apart, and put it to her lips. After drinking a few sips she glanced at him, and by his expression, she saw clearly that he was repelled by her hand, and her gesture, and the sound made by her lips. "I don't care in the least what your mother thinks, and what match she wants to make for you," she said, putting the cup down with a shaking hand. "But we are not talking about that." "Yes, that's just what we are talking about. And let me tell you that a heartless woman, whether she's old or not old, your mother or anyone else, is of no consequence to me, and I would not consent to know her." "Anna, I beg you not to speak disrespectfully of my mother." "A woman whose heart does not tell her where her son's happiness and honor lie has no heart." "I repeat my request that you will not speak disrespectfully of my mother, whom I respect," he said, raising his voice and looking sternly at her. She did not answer. Looking intently at him, at his face, his hands, she recalled all the details of their reconciliation the previous day, and his passionate caresses. "There, just such caresses he has lavished, and will lavish, and longs to lavish on other women!" she thought. "You don't love your mother. That's all talk, and talk, and talk!" she said, looking at him with hatred in her eyes. "Even if so, you must..." "Must decide, and I have decided," she said, and she would have gone away, but at that moment Yashvin walked into the room. Anna greeted him and remained. Why, when there was a tempest in her soul, and she felt she was standing at a turning point in her life, which might have fearful consequences--why, at that minute, she had to keep up appearances before an outsider, who sooner or later must know it all--she did not know. But at once quelling the storm within her, she sat down and began talking to their guest. "Well, how are you getting on? Has your debt been paid you?" she asked Yashvin. "Oh, pretty fair; I fancy I shan't get it all, but I shall get a good half. And when are you off?" said Yashvin, looking at Vronsky, and unmistakably guessing at a quarrel. "The day after tomorrow, I think," said Vronsky. "You've been meaning to go so long, though." "But now it's quite decided," said Anna, looking Vronsky straight in the face with a look which told him not to dream of the possibility of reconciliation. "Don't you feel sorry for that unlucky Pyevtsov?" she went on, talking to Yashvin. "I've never asked myself the question, Anna Arkadyevna, whether I'm sorry for him or not. You see, all my fortune's here"--he touched his breast pocket--"and just now I'm a wealthy man. But today I'm going to the club, and I may come out a beggar. You see, whoever sits down to play with me--he wants to leave me without a shirt to my back, and so do I him. And so we fight it out, and that's the pleasure of it." "Well, but suppose you were married," said Anna, "how would it be for your wife?" Yashvin laughed. "That's why I'm not married, and never mean to be." "And Helsingfors?" said Vronsky, entering into the conversation and glancing at Anna's smiling face. Meeting his eyes, Anna's face instantly took a coldly severe expression as though she were saying to him: "It's not forgotten. It's all the same." "Were you really in love?" she said to Yashvin. "Oh heavens! ever so many times! But you see, some men can play but only so that they can always lay down their cards when the hour of a _rendezvous_ comes, while I can take up love, but only so as not to be late for my cards in the evening. That's how I manage things." "No, I didn't mean that, but the real thing." She would have said _Helsingfors_, but would not repeat the word used by Vronsky. Voytov, who was buying the horse, came in. Anna got up and went out of the room. Before leaving the house, Vronsky went into her room. She would have pretended to be looking for something on the table, but ashamed of making a pretense, she looked straight in his face with cold eyes. "What do you want?" she asked in French. "To get the guarantee for Gambetta, I've sold him," he said, in a tone which said more clearly than words, "I've no time for discussing things, and it would lead to nothing." "I'm not to blame in any way," he thought. "If she will punish herself, _tant pis pour elle._" But as he was going he fancied that she said something, and his heart suddenly ached with pity for her. "Eh, Anna?" he queried. "I said nothing," she answered just as coldly and calmly. "Oh, nothing, _tant pis_ then," he thought, feeling cold again, and he turned and went out. As he was going out he caught a glimpse in the looking glass of her face, white, with quivering lips. He even wanted to stop and to say some comforting word to her, but his legs carried him out of the room before he could think what to say. The whole of that day he spent away from home, and when he came in late in the evening the maid told him that Anna Arkadyevna had a headache and begged him not to go in to her. Chapter 26 Never before had a day been passed in quarrel. Today was the first time. And this was not a quarrel. It was the open acknowledgment of complete coldness. Was it possible to glance at her as he had glanced when he came into the room for the guarantee?--to look at her, see her heart was breaking with despair, and go out without a word with that face of callous composure? He was not merely cold to her, he hated her because he loved another woman--that was clear. And remembering all the cruel words he had said, Anna supplied, too, the words that he had unmistakably wished to say and could have said to her, and she grew more and more exasperated. "I won't prevent you," he might say. "You can go where you like. You were unwilling to be divorced from your husband, no doubt so that you might go back to him. Go back to him. If you want money, I'll give it to you. How many roubles do you want?" All the most cruel words that a brutal man could say, he said to her in her imagination, and she could not forgive him for them, as though he had actually said them. "But didn't he only yesterday swear he loved me, he, a truthful and sincere man? Haven't I despaired for nothing many times already?" she said to herself afterwards. All that day, except for the visit to Wilson's, which occupied two hours, Anna spent in doubts whether everything were over or whether there were still hope of reconciliation, whether she should go away at once or see him once more. She was expecting him the whole day, and in the evening, as she went to her own room, leaving a message for him that her head ached, she said to herself, "If he comes in spite of what the maid says, it means that he loves me still. If not, it means that all is over, and then I will decide what I'm to do!..." In the evening she heard the rumbling of his carriage stop at the entrance, his ring, his steps and his conversation with the servant; he believed what was told him, did not care to find out more, and went to his own room. So then everything was over. And death rose clearly and vividly before her mind as the sole means of bringing back love for her in his heart, of punishing him and of gaining the victory in that strife which the evil spirit in possession of her heart was waging with him. Now nothing mattered: going or not going to Vozdvizhenskoe, getting or not getting a divorce from her husband--all that did not matter. The one thing that mattered was punishing him. When she poured herself out her usual dose of opium, and thought that she had only to drink off the whole bottle to die, it seemed to her so simple and easy, that she began musing with enjoyment on how he would suffer, and repent and love her memory when it would be too late. She lay in bed with open eyes, by the light of a single burned-down candle, gazing at the carved cornice of the ceiling and at the shadow of the screen that covered part of it, while she vividly pictured to herself how he would feel when she would be no more, when she would be only a memory to him. "How could I say such cruel things to her?" he would say. "How could I go out of the room without saying anything to her? But now she is no more. She has gone away from us forever. She is...." Suddenly the shadow of the screen wavered, pounced on the whole cornice, the whole ceiling; other shadows from the other side swooped to meet it, for an instant the shadows flitted back, but then with fresh swiftness they darted forward, wavered, commingled, and all was darkness. "Death!" she thought. And such horror came upon her that for a long while she could not realize where she was, and for a long while her trembling hands could not find the matches and light another candle, instead of the one that had burned down and gone out. "No, anything--only to live! Why, I love him! Why, he loves me! This has been before and will pass," she said, feeling that tears of joy at the return to life were trickling down her cheeks. And to escape from her panic she went hurriedly to his room. He was asleep there, and sleeping soundly. She went up to him, and holding the light above his face, she gazed a long while at him. Now when he was asleep, she loved him so that at the sight of him she could not keep back tears of tenderness. But she knew that if he waked up he would look at her with cold eyes, convinced that he was right, and that before telling him of her love, she would have to prove to him that he had been wrong in his treatment of her. Without waking him, she went back, and after a second dose of opium she fell towards morning into a heavy, incomplete sleep, during which she never quite lost consciousness. In the morning she was waked by a horrible nightmare, which had recurred several times in her dreams, even before her connection with Vronsky. A little old man with unkempt beard was doing something bent down over some iron, muttering meaningless French words, and she, as she always did in this nightmare (it was what made the horror of it), felt that this peasant was taking no notice of her, but was doing something horrible with the iron--over her. And she waked up in a cold sweat. When she got up, the previous day came back to her as though veiled in mist. "There was a quarrel. Just what has happened several times. I said I had a headache, and he did not come in to see me. Tomorrow we're going away; I must see him and get ready for the journey," she said to herself. And learning that he was in his study, she went down to him. As she passed through the drawing room she heard a carriage stop at the entrance, and looking out of the window she saw the carriage, from which a young girl in a lilac hat was leaning out giving some direction to the footman ringing the bell. After a parley in the hall, someone came upstairs, and Vronsky's steps could be heard passing the drawing room. He went rapidly downstairs. Anna went again to the window. She saw him come out onto the steps without his hat and go up to the carriage. The young girl in the lilac hat handed him a parcel. Vronsky, smiling, said something to her. The carriage drove away, he ran rapidly upstairs again. The mists that had shrouded everything in her soul parted suddenly. The feelings of yesterday pierced the sick heart with a fresh pang. She could not understand now how she could have lowered herself by spending a whole day with him in his house. She went into his room to announce her determination. "That was Madame Sorokina and her daughter. They came and brought me the money and the deeds from maman. I couldn't get them yesterday. How is your head, better?" he said quietly, not wishing to see and to understand the gloomy and solemn expression of her face. She looked silently, intently at him, standing in the middle of the room. He glanced at her, frowned for a moment, and went on reading a letter. She turned, and went deliberately out of the room. He still might have turned her back, but she had reached the door, he was still silent, and the only sound audible was the rustling of the note paper as he turned it. "Oh, by the way," he said at the very moment she was in the doorway, "we're going tomorrow for certain, aren't we?" "You, but not I," she said, turning round to him. "Anna, we can't go on like this..." "You, but not I," she repeated. "This is getting unbearable!" "You ... you will be sorry for this," she said, and went out. Frightened by the desperate expression with which these words were uttered, he jumped up and would have run after her, but on second thoughts he sat down and scowled, setting his teeth. This vulgar--as he thought it--threat of something vague exasperated him. "I've tried everything," he thought; "the only thing left is not to pay attention," and he began to get ready to drive into town, and again to his mother's to get her signature to the deeds. She heard the sound of his steps about the study and the dining room. At the drawing room he stood still. But he did not turn in to see her, he merely gave an order that the horse should be given to Voytov if he came while he was away. Then she heard the carriage brought round, the door opened, and he came out again. But he went back into the porch again, and someone was running upstairs. It was the valet running up for his gloves that had been forgotten. She went to the window and saw him take the gloves without looking, and touching the coachman on the back he said something to him. Then without looking up at the window he settled himself in his usual attitude in the carriage, with his legs crossed, and drawing on his gloves he vanished round the corner. Chapter 27 "He has gone! It is over!" Anna said to herself, standing at the window; and in answer to this statement the impression of the darkness when the candle had flickered out, and of her fearful dream mingling into one, filled her heart with cold terror. "No, that cannot be!" she cried, and crossing the room she rang the bell. She was so afraid now of being alone, that without waiting for the servant to come in, she went out to meet him. "Inquire where the count has gone," she said. The servant answered that the count had gone to the stable. "His honor left word that if you cared to drive out, the carriage would be back immediately." "Very good. Wait a minute. I'll write a note at once. Send Mihail with the note to the stables. Make haste." She sat down and wrote: "I was wrong. Come back home; I must explain. For God's sake come! I'm afraid." She sealed it up and gave it to the servant. She was afraid of being left alone now; she followed the servant out of the room, and went to the nursery. "Why, this isn't it, this isn't he! Where are his blue eyes, his sweet, shy smile?" was her first thought when she saw her chubby, rosy little girl with her black, curly hair instead of Seryozha, whom in the tangle of her ideas she had expected to see in the nursery. The little girl sitting at the table was obstinately and violently battering on it with a cork, and staring aimlessly at her mother with her pitch-black eyes. Answering the English nurse that she was quite well, and that she was going to the country tomorrow, Anna sat down by the little girl and began spinning the cork to show her. But the child's loud, ringing laugh, and the motion of her eyebrows, recalled Vronsky so vividly that she got up hurriedly, restraining her sobs, and went away. "Can it be all over? No, it cannot be!" she thought. "He will come back. But how can he explain that smile, that excitement after he had been talking to her? But even if he doesn't explain, I will believe. If I don't believe, there's only one thing left for me, and I can't." She looked at her watch. Twenty minutes had passed. "By now he has received the note and is coming back. Not long, ten minutes more.... But what if he doesn't come? No, that cannot be. He mustn't see me with tear-stained eyes. I'll go and wash. Yes, yes; did I do my hair or not?" she asked herself. And she could not remember. She felt her head with her hand. "Yes, my hair has been done, but when I did it I can't in the least remember." She could not believe the evidence of her hand, and went up to the pier glass to see whether she really had done her hair. She certainly had, but she could not think when she had done it. "Who's that?" she thought, looking in the looking glass at the swollen face with strangely glittering eyes, that looked in a scared way at her. "Why, it's I!" she suddenly understood, and looking round, she seemed all at once to feel his kisses on her, and twitched her shoulders, shuddering. Then she lifted her hand to her lips and kissed it. "What is it? Why, I'm going out of my mind!" and she went into her bedroom, where Annushka was tidying the room. "Annushka," she said, coming to a standstill before her, and she stared at the maid, not knowing what to say to her. "You meant to go and see Darya Alexandrovna," said the girl, as though she understood. "Darya Alexandrovna? Yes, I'll go." "Fifteen minutes there, fifteen minutes back. He's coming, he'll be here soon." She took out her watch and looked at it. "But how could he go away, leaving me in such a state? How can he live, without making it up with me?" She went to the window and began looking into the street. Judging by the time, he might be back now. But her calculations might be wrong, and she began once more to recall when he had started and to count the minutes. At the moment when she had moved away to the big clock to compare it with her watch, someone drove up. Glancing out of the window, she saw his carriage. But no one came upstairs, and voices could be heard below. It was the messenger who had come back in the carriage. She went down to him. "We didn't catch the count. The count had driven off on the lower city road." "What do you say? What!..." she said to the rosy, good-humored Mihail, as he handed her back her note. "Why, then, he has never received it!" she thought. "Go with this note to Countess Vronskaya's place, you know? and bring an answer back immediately," she said to the messenger. "And I, what am I going to do?" she thought. "Yes, I'm going to Dolly's, that's true or else I shall go out of my mind. Yes, and I can telegraph, too." And she wrote a telegram. "I absolutely must talk to you; come at once." After sending off the telegram, she went to dress. When she was dressed and in her hat, she glanced again into the eyes of the plump, comfortable-looking Annushka. There was unmistakable sympathy in those good-natured little gray eyes. "Annushka, dear, what am I to do?" said Anna, sobbing and sinking helplessly into a chair. "Why fret yourself so, Anna Arkadyevna? Why, there's nothing out of the way. You drive out a little, and it'll cheer you up," said the maid. "Yes, I'm going," said Anna, rousing herself and getting up. "And if there's a telegram while I'm away, send it on to Darya Alexandrovna's ... but no, I shall be back myself." "Yes, I mustn't think, I must do something, drive somewhere, and most of all, get out of this house," she said, feeling with terror the strange turmoil going on in her own heart, and she made haste to go out and get into the carriage. "Where to?" asked Pyotr before getting onto the box. "To Znamenka, the Oblonskys'." Chapter 28 It was bright and sunny. A fine rain had been falling all the morning, and now it had not long cleared up. The iron roofs, the flags of the roads, the flints of the pavements, the wheels and leather, the brass and the tinplate of the carriages--all glistened brightly in the May sunshine. It was three o'clock, and the very liveliest time in the streets. As she sat in a corner of the comfortable carriage, that hardly swayed on its supple springs, while the grays trotted swiftly, in the midst of the unceasing rattle of wheels and the changing impressions in the pure air, Anna ran over the events of the last days, and she saw her position quite differently from how it had seemed at home. Now the thought of death seemed no longer so terrible and so clear to her, and death itself no longer seemed so inevitable. Now she blamed herself for the humiliation to which she had lowered herself. "I entreat him to forgive me. I have given in to him. I have owned myself in fault. What for? Can't I live without him?" And leaving unanswered the question how she was going to live without him, she fell to reading the signs on the shops. "Office and warehouse. Dental surgeon. Yes, I'll tell Dolly all about it. She doesn't like Vronsky. I shall be sick and ashamed, but I'll tell her. She loves me, and I'll follow her advice. I won't give in to him; I won't let him train me as he pleases. Filippov, bun shop. They say they send their dough to Petersburg. The Moscow water is so good for it. Ah, the springs at Mitishtchen, and the pancakes!" And she remembered how, long, long ago, when she was a girl of seventeen, she had gone with her aunt to Troitsa. "Riding, too. Was that really me, with red hands? How much that seemed to me then splendid and out of reach has become worthless, while what I had then has gone out of my reach forever! Could I ever have believed then that I could come to such humiliation? How conceited and self-satisfied he will be when he gets my note! But I will show him.... How horrid that paint smells! Why is it they're always painting and building? _Modes et robes,_" she read. A man bowed to her. It was Annushka's husband. "Our parasites"; she remembered how Vronsky had said that. "Our? Why our? What's so awful is that one can't tear up the past by its roots. One can't tear it out, but one can hide one's memory of it. And I'll hide it." And then she thought of her past with Alexey Alexandrovitch, of how she had blotted the memory of it out of her life. "Dolly will think I'm leaving my second husband, and so I certainly must be in the wrong. As if I cared to be right! I can't help it!" she said, and she wanted to cry. But at once she fell to wondering what those two girls could be smiling about. "Love, most likely. They don't know how dreary it is, how low.... The boulevard and the children. Three boys running, playing at horses. Seryozha! And I'm losing everything and not getting him back. Yes, I'm losing everything, if he doesn't return. Perhaps he was late for the train and has come back by now. Longing for humiliation again!" she said to herself. "No, I'll go to Dolly, and say straight out to her, I'm unhappy, I deserve this, I'm to blame, but still I'm unhappy, help me. These horses, this carriage--how loathsome I am to myself in this carriage--all his; but I won't see them again." Thinking over the words in which she would tell Dolly, and mentally working her heart up to great bitterness, Anna went upstairs. "Is there anyone with her?" she asked in the hall. "Katerina Alexandrovna Levin," answered the footman. "Kitty! Kitty, whom Vronsky was in love with!" thought Anna, "the girl he thinks of with love. He's sorry he didn't marry her. But me he thinks of with hatred, and is sorry he had anything to do with me." The sisters were having a consultation about nursing when Anna called. Dolly went down alone to see the visitor who had interrupted their conversation. "Well, so you've not gone away yet? I meant to have come to you," she said; "I had a letter from Stiva today." "We had a telegram too," answered Anna, looking round for Kitty. "He writes that he can't make out quite what Alexey Alexandrovitch wants, but he won't go away without a decisive answer." "I thought you had someone with you. Can I see the letter?" "Yes; Kitty," said Dolly, embarrassed. "She stayed in the nursery. She has been very ill." "So I heard. May I see the letter?" "I'll get it directly. But he doesn't refuse; on the contrary, Stiva has hopes," said Dolly, stopping in the doorway. "I haven't, and indeed I don't wish it," said Anna. "What's this? Does Kitty consider it degrading to meet me?" thought Anna when she was alone. "Perhaps she's right, too. But it's not for her, the girl who was in love with Vronsky, it's not for her to show me that, even if it is true. I know that in my position I can't be received by any decent woman. I knew that from the first moment I sacrificed everything to him. And this is my reward! Oh, how I hate him! And what did I come here for? I'm worse here, more miserable." She heard from the next room the sisters' voices in consultation. "And what am I going to say to Dolly now? Amuse Kitty by the sight of my wretchedness, submit to her patronizing? No; and besides, Dolly wouldn't understand. And it would be no good my telling her. It would only be interesting to see Kitty, to show her how I despise everyone and everything, how nothing matters to me now." Dolly came in with the letter. Anna read it and handed it back in silence. "I knew all that," she said, "and it doesn't interest me in the least." "Oh, why so? On the contrary, I have hopes," said Dolly, looking inquisitively at Anna. She had never seen her in such a strangely irritable condition. "When are you going away?" she asked. Anna, half-closing her eyes, looked straight before her and did not answer. "Why does Kitty shrink from me?" she said, looking at the door and flushing red. "Oh, what nonsense! She's nursing, and things aren't going right with her, and I've been advising her.... She's delighted. She'll be here in a minute," said Dolly awkwardly, not clever at lying. "Yes, here she is." Hearing that Anna had called, Kitty had wanted not to appear, but Dolly persuaded her. Rallying her forces, Kitty went in, walked up to her, blushing, and shook hands. "I am so glad to see you," she said with a trembling voice. Kitty had been thrown into confusion by the inward conflict between her antagonism to this bad woman and her desire to be nice to her. But as soon as she saw Anna's lovely and attractive face, all feeling of antagonism disappeared. "I should not have been surprised if you had not cared to meet me. I'm used to everything. You have been ill? Yes, you are changed," said Anna. Kitty felt that Anna was looking at her with hostile eyes. She ascribed this hostility to the awkward position in which Anna, who had once patronized her, must feel with her now, and she felt sorry for her. They talked of Kitty's illness, of the baby, of Stiva, but it was obvious that nothing interested Anna. "I came to say good-bye to you," she said, getting up. "Oh, when are you going?" But again not answering, Anna turned to Kitty. "Yes, I am very glad to have seen you," she said with a smile. "I have heard so much of you from everyone, even from your husband. He came to see me, and I liked him exceedingly," she said, unmistakably with malicious intent. "Where is he?" "He has gone back to the country," said Kitty, blushing. "Remember me to him, be sure you do." "I'll be sure to!" Kitty said naively, looking compassionately into her eyes. "So good-bye, Dolly." And kissing Dolly and shaking hands with Kitty, Anna went out hurriedly. "She's just the same and just as charming! She's very lovely!" said Kitty, when she was alone with her sister. "But there's something piteous about her. Awfully piteous!" "Yes, there's something unusual about her today," said Dolly. "When I went with her into the hall, I fancied she was almost crying." Chapter 29 Anna got into the carriage again in an even worse frame of mind than when she set out from home. To her previous tortures was added now that sense of mortification and of being an outcast which she had felt so distinctly on meeting Kitty. "Where to? Home?" asked Pyotr. "Yes, home," she said, not even thinking now where she was going. "How they looked at me as something dreadful, incomprehensible, and curious! What can he be telling the other with such warmth?" she thought, staring at two men who walked by. "Can one ever tell anyone what one is feeling? I meant to tell Dolly, and it's a good thing I didn't tell her. How pleased she would have been at my misery! She would have concealed it, but her chief feeling would have been delight at my being punished for the happiness she envied me for. Kitty, she would have been even more pleased. How I can see through her! She knows I was more than usually sweet to her husband. And she's jealous and hates me. And she despises me. In her eyes I'm an immoral woman. If I were an immoral woman I could have made her husband fall in love with me ... if I'd cared to. And, indeed, I did care to. There's someone who's pleased with himself," she thought, as she saw a fat, rubicund gentleman coming towards her. He took her for an acquaintance, and lifted his glossy hat above his bald, glossy head, and then perceived his mistake. "He thought he knew me. Well, he knows me as well as anyone in the world knows me. I don't know myself. I know my appetites, as the French say. They want that dirty ice cream, that they do know for certain," she thought, looking at two boys stopping an ice cream seller, who took a barrel off his head and began wiping his perspiring face with a towel. "We all want what is sweet and nice. If not sweetmeats, then a dirty ice. And Kitty's the same--if not Vronsky, then Levin. And she envies me, and hates me. And we all hate each other. I Kitty, Kitty me. Yes, that's the truth. '_Tiutkin, coiffeur._' _Je me fais coiffer par Tiutkin...._ I'll tell him that when he comes," she thought and smiled. But the same instant she remembered that she had no one now to tell anything amusing to. "And there's nothing amusing, nothing mirthful, really. It's all hateful. They're singing for vespers, and how carefully that merchant crosses himself! as if he were afraid of missing something. Why these churches and this singing and this humbug? Simply to conceal that we all hate each other like these cab drivers who are abusing each other so angrily. Yashvin says, 'He wants to strip me of my shirt, and I him of his.' Yes, that's the truth!" She was plunged in these thoughts, which so engrossed her that she left off thinking of her own position, when the carriage drew up at the steps of her house. It was only when she saw the porter running out to meet her that she remembered she had sent the note and the telegram. "Is there an answer?" she inquired. "I'll see this minute," answered the porter, and glancing into his room, he took out and gave her the thin square envelope of a telegram. "I can't come before ten o'clock.--Vronsky," she read. "And hasn't the messenger come back?" "No," answered the porter. "Then, since it's so, I know what I must do," she said, and feeling a vague fury and craving for revenge rising up within her, she ran upstairs. "I'll go to him myself. Before going away forever, I'll tell him all. Never have I hated anyone as I hate that man!" she thought. Seeing his hat on the rack, she shuddered with aversion. She did not consider that his telegram was an answer to her telegram and that he had not yet received her note. She pictured him to herself as talking calmly to his mother and Princess Sorokina and rejoicing at her sufferings. "Yes, I must go quickly," she said, not knowing yet where she was going. She longed to get away as quickly as possible from the feelings she had gone through in that awful house. The servants, the walls, the things in that house--all aroused repulsion and hatred in her and lay like a weight upon her. "Yes, I must go to the railway station, and if he's not there, then go there and catch him." Anna looked at the railway timetable in the newspapers. An evening train went at two minutes past eight. "Yes, I shall be in time." She gave orders for the other horses to be put in the carriage, and packed in a traveling-bag the things needed for a few days. She knew she would never come back here again. Among the plans that came into her head she vaguely determined that after what would happen at the station or at the countess's house, she would go as far as the first town on the Nizhni road and stop there. Dinner was on the table; she went up, but the smell of the bread and cheese was enough to make her feel that all food was disgusting. She ordered the carriage and went out. The house threw a shadow now right across the street, but it was a bright evening and still warm in the sunshine. Annushka, who came down with her things, and Pyotr, who put the things in the carriage, and the coachman, evidently out of humor, were all hateful to her, and irritated her by their words and actions. "I don't want you, Pyotr." "But how about the ticket?" "Well, as you like, it doesn't matter," she said crossly. Pyotr jumped on the box, and putting his arms akimbo, told the coachman to drive to the booking-office. Chapter 30 "Here it is again! Again I understand it all!" Anna said to herself, as soon as the carriage had started and swaying lightly, rumbled over the tiny cobbles of the paved road, and again one impression followed rapidly upon another. "Yes; what was the last thing I thought of so clearly?" she tried to recall it. "'_Tiutkin, coiffeur?_'--no, not that. Yes, of what Yashvin says, the struggle for existence and hatred is the one thing that holds men together. No, it's a useless journey you're making," she said, mentally addressing a party in a coach and four, evidently going for an excursion into the country. "And the dog you're taking with you will be no help to you. You can't get away from yourselves." Turning her eyes in the direction Pyotr had turned to look, she saw a factory hand almost dead drunk, with hanging head, being led away by a policeman. "Come, he's found a quicker way," she thought. "Count Vronsky and I did not find that happiness either, though we expected so much from it." And now for the first time Anna turned that glaring light in which she was seeing everything on to her relations with him, which she had hitherto avoided thinking about. "What was it he sought in me? Not love so much as the satisfaction of vanity." She remembered his words, the expression of his face, that recalled an abject setter-dog, in the early days of their connection. And everything now confirmed this. "Yes, there was the triumph of success in him. Of course there was love too, but the chief element was the pride of success. He boasted of me. Now that's over. There's nothing to be proud of. Not to be proud of, but to be ashamed of. He has taken from me all he could, and now I am no use to him. He is weary of me and is trying not to be dishonorable in his behavior to me. He let that out yesterday--he wants divorce and marriage so as to burn his ships. He loves me, but how? The zest is gone, as the English say. That fellow wants everyone to admire him and is very much pleased with himself," she thought, looking at a red-faced clerk, riding on a riding school horse. "Yes, there's not the same flavor about me for him now. If I go away from him, at the bottom of his heart he will be glad." This was not mere supposition, she saw it distinctly in the piercing light, which revealed to her now the meaning of life and human relations. "My love keeps growing more passionate and egoistic, while his is waning and waning, and that's why we're drifting apart." She went on musing. "And there's no help for it. He is everything for me, and I want him more and more to give himself up to me entirely. And he wants more and more to get away from me. We walked to meet each other up to the time of our love, and then we have been irresistibly drifting in different directions. And there's no altering that. He tells me I'm insanely jealous, and I have told myself that I am insanely jealous; but it's not true. I'm not jealous, but I'm unsatisfied. But..." she opened her lips, and shifted her place in the carriage in the excitement, aroused by the thought that suddenly struck her. "If I could be anything but a mistress, passionately caring for nothing but his caresses; but I can't and I don't care to be anything else. And by that desire I rouse aversion in him, and he rouses fury in me, and it cannot be different. Don't I know that he wouldn't deceive me, that he has no schemes about Princess Sorokina, that he's not in love with Kitty, that he won't desert me! I know all that, but it makes it no better for me. If without loving me, from _duty_ he'll be good and kind to me, without what I want, that's a thousand times worse than unkindness! That's--hell! And that's just how it is. For a long while now he hasn't loved me. And where love ends, hate begins. I don't know these streets at all. Hills it seems, and still houses, and houses .... And in the houses always people and people.... How many of them, no end, and all hating each other! Come, let me try and think what I want, to make me happy. Well? Suppose I am divorced, and Alexey Alexandrovitch lets me have Seryozha, and I marry Vronsky." Thinking of Alexey Alexandrovitch, she at once pictured him with extraordinary vividness as though he were alive before her, with his mild, lifeless, dull eyes, the blue veins in his white hands, his intonations and the cracking of his fingers, and remembering the feeling which had existed between them, and which was also called love, she shuddered with loathing. "Well, I'm divorced, and become Vronsky's wife. Well, will Kitty cease looking at me as she looked at me today? No. And will Seryozha leave off asking and wondering about my two husbands? And is there any new feeling I can awaken between Vronsky and me? Is there possible, if not happiness, some sort of ease from misery? No, no!" she answered now without the slightest hesitation. "Impossible! We are drawn apart by life, and I make his unhappiness, and he mine, and there's no altering him or me. Every attempt has been made, the screw has come unscrewed. Oh, a beggar woman with a baby. She thinks I'm sorry for her. Aren't we all flung into the world only to hate each other, and so to torture ourselves and each other? Schoolboys coming--laughing Seryozha?" she thought. "I thought, too, that I loved him, and used to be touched by my own tenderness. But I have lived without him, I gave him up for another love, and did not regret the exchange till that love was satisfied." And with loathing she thought of what she meant by that love. And the clearness with which she saw life now, her own and all men's, was a pleasure to her. "It's so with me and Pyotr, and the coachman, Fyodor, and that merchant, and all the people living along the Volga, where those placards invite one to go, and everywhere and always," she thought when she had driven under the low-pitched roof of the Nizhigorod station, and the porters ran to meet her. "A ticket to Obiralovka?" said Pyotr. She had utterly forgotten where and why she was going, and only by a great effort she understood the question. "Yes," she said, handing him her purse, and taking a little red bag in her hand, she got out of the carriage. Making her way through the crowd to the first-class waiting-room, she gradually recollected all the details of her position, and the plans between which she was hesitating. And again at the old sore places, hope and then despair poisoned the wounds of her tortured, fearfully throbbing heart. As she sat on the star-shaped sofa waiting for the train, she gazed with aversion at the people coming and going (they were all hateful to her), and thought how she would arrive at the station, would write him a note, and what she would write to him, and how he was at this moment complaining to his mother of his position, not understanding her sufferings, and how she would go into the room, and what she would say to him. Then she thought that life might still be happy, and how miserably she loved and hated him, and how fearfully her heart was beating. Chapter 31 A bell rang, some young men, ugly and impudent, and at the same time careful of the impression they were making, hurried by. Pyotr, too, crossed the room in his livery and top-boots, with his dull, animal face, and came up to her to take her to the train. Some noisy men were quiet as she passed them on the platform, and one whispered something about her to another--something vile, no doubt. She stepped up on the high step, and sat down in a carriage by herself on a dirty seat that had been white. Her bag lay beside her, shaken up and down by the springiness of the seat. With a foolish smile Pyotr raised his hat, with its colored band, at the window, in token of farewell; an impudent conductor slammed the door and the latch. A grotesque-looking lady wearing a bustle (Anna mentally undressed the woman, and was appalled at her hideousness), and a little girl laughing affectedly ran down the platform. "Katerina Andreevna, she's got them all, _ma tante!_" cried the girl. "Even the child's hideous and affected," thought Anna. To avoid seeing anyone, she got up quickly and seated herself at the opposite window of the empty carriage. A misshapen-looking peasant covered with dirt, in a cap from which his tangled hair stuck out all round, passed by that window, stooping down to the carriage wheels. "There's something familiar about that hideous peasant," thought Anna. And remembering her dream, she moved away to the opposite door, shaking with terror. The conductor opened the door and let in a man and his wife. "Do you wish to get out?" Anna made no answer. The conductor and her two fellow-passengers did not notice under her veil her panic-stricken face. She went back to her corner and sat down. The couple seated themselves on the opposite side, and intently but surreptitiously scrutinized her clothes. Both husband and wife seemed repulsive to Anna. The husband asked, would she allow him to smoke, obviously not with a view to smoking but to getting into conversation with her. Receiving her assent, he said to his wife in French something about caring less to smoke than to talk. They made inane and affected remarks to one another, entirely for her benefit. Anna saw clearly that they were sick of each other, and hated each other. And no one could have helped hating such miserable monstrosities. A second bell sounded, and was followed by moving of luggage, noise, shouting and laughter. It was so clear to Anna that there was nothing for anyone to be glad of, that this laughter irritated her agonizingly, and she would have liked to stop up her ears not to hear it. At last the third bell rang, there was a whistle and a hiss of steam, and a clank of chains, and the man in her carriage crossed himself. "It would be interesting to ask him what meaning he attaches to that," thought Anna, looking angrily at him. She looked past the lady out of the window at the people who seemed whirling by as they ran beside the train or stood on the platform. The train, jerking at regular intervals at the junctions of the rails, rolled by the platform, past a stone wall, a signal-box, past other trains; the wheels, moving more smoothly and evenly, resounded with a slight clang on the rails. The window was lighted up by the bright evening sun, and a slight breeze fluttered the curtain. Anna forgot her fellow passengers, and to the light swaying of the train she fell to thinking again, as she breathed the fresh air. "Yes, what did I stop at? That I couldn't conceive a position in which life would not be a misery, that we are all created to be miserable, and that we all know it, and all invent means of deceiving each other. And when one sees the truth, what is one to do?" "That's what reason is given man for, to escape from what worries him," said the lady in French, lisping affectedly, and obviously pleased with her phrase. The words seemed an answer to Anna's thoughts. "To escape from what worries him," repeated Anna. And glancing at the red-cheeked husband and the thin wife, she saw that the sickly wife considered herself misunderstood, and the husband deceived her and encouraged her in that idea of herself. Anna seemed to see all their history and all the crannies of their souls, as it were turning a light upon them. But there was nothing interesting in them, and she pursued her thought. "Yes, I'm very much worried, and that's what reason was given me for, to escape; so then one must escape: why not put out the light when there's nothing more to look at, when it's sickening to look at it all? But how? Why did the conductor run along the footboard, why are they shrieking, those young men in that train? why are they talking, why are they laughing? It's all falsehood, all lying, all humbug, all cruelty!..." When the train came into the station, Anna got out into the crowd of passengers, and moving apart from them as if they were lepers, she stood on the platform, trying to think what she had come here for, and what she meant to do. Everything that had seemed to her possible before was now so difficult to consider, especially in this noisy crowd of hideous people who would not leave her alone. One moment porters ran up to her proffering their services, then young men, clacking their heels on the planks of the platform and talking loudly, stared at her; people meeting her dodged past on the wrong side. Remembering that she had meant to go on further if there were no answer, she stopped a porter and asked if her coachman were not here with a note from Count Vronsky. "Count Vronsky? They sent up here from the Vronskys just this minute, to meet Princess Sorokina and her daughter. And what is the coachman like?" Just as she was talking to the porter, the coachman Mihail, red and cheerful in his smart blue coat and chain, evidently proud of having so successfully performed his commission, came up to her and gave her a letter. She broke it open, and her heart ached before she had read it. "I am very sorry your note did not reach me. I will be home at ten," Vronsky had written carelessly.... "Yes, that's what I expected!" she said to herself with an evil smile. "Very good, you can go home then," she said softly, addressing Mihail. She spoke softly because the rapidity of her heart's beating hindered her breathing. "No, I won't let you make me miserable," she thought menacingly, addressing not him, not herself, but the power that made her suffer, and she walked along the platform. Two maid-servants walking along the platform turned their heads, staring at her and making some remarks about her dress. "Real," they said of the lace she was wearing. The young men would not leave her in peace. Again they passed by, peering into her face, and with a laugh shouting something in an unnatural voice. The station-master coming up asked her whether she was going by train. A boy selling kvas never took his eyes off her. "My God! where am I to go?" she thought, going farther and farther along the platform. At the end she stopped. Some ladies and children, who had come to meet a gentleman in spectacles, paused in their loud laughter and talking, and stared at her as she reached them. She quickened her pace and walked away from them to the edge of the platform. A luggage train was coming in. The platform began to sway, and she fancied she was in the train again. And all at once she thought of the man crushed by the train the day she had first met Vronsky, and she knew what she had to do. With a rapid, light step she went down the steps that led from the tank to the rails and stopped quite near the approaching train. She looked at the lower part of the carriages, at the screws and chains and the tall cast-iron wheel of the first carriage slowly moving up, and trying to measure the middle between the front and back wheels, and the very minute when that middle point would be opposite her. "There," she said to herself, looking into the shadow of the carriage, at the sand and coal dust which covered the sleepers--"there, in the very middle, and I will punish him and escape from everyone and from myself." She tried to fling herself below the wheels of the first carriage as it reached her; but the red bag which she tried to drop out of her hand delayed her, and she was too late; she missed the moment. She had to wait for the next carriage. A feeling such as she had known when about to take the first plunge in bathing came upon her, and she crossed herself. That familiar gesture brought back into her soul a whole series of girlish and childish memories, and suddenly the darkness that had covered everything for her was torn apart, and life rose up before her for an instant with all its bright past joys. But she did not take her eyes from the wheels of the second carriage. And exactly at the moment when the space between the wheels came opposite her, she dropped the red bag, and drawing her head back into her shoulders, fell on her hands under the carriage, and lightly, as though she would rise again at once, dropped on to her knees. And at the same instant she was terror-stricken at what she was doing. "Where am I? What am I doing? What for?" She tried to get up, to drop backwards; but something huge and merciless struck her on the head and rolled her on her back. "Lord, forgive me all!" she said, feeling it impossible to struggle. A peasant muttering something was working at the iron above her. And the light by which she had read the book filled with troubles, falsehoods, sorrow, and evil, flared up more brightly than ever before, lighted up for her all that had been in darkness, flickered, began to grow dim, and was quenched forever. PART EIGHT Chapter 1 Almost two months had passed. The hot summer was half over, but Sergey Ivanovitch was only just preparing to leave Moscow. Sergey Ivanovitch's life had not been uneventful during this time. A year ago he had finished his book, the fruit of six years' labor, "Sketch of a Survey of the Principles and Forms of Government in Europe and Russia." Several sections of this book and its introduction had appeared in periodical publications, and other parts had been read by Sergey Ivanovitch to persons of his circle, so that the leading ideas of the work could not be completely novel to the public. But still Sergey Ivanovitch had expected that on its appearance his book would be sure to make a serious impression on society, and if it did not cause a revolution in social science it would, at any rate, make a great stir in the scientific world. After the most conscientious revision the book had last year been published, and had been distributed among the booksellers. Though he asked no one about it, reluctantly and with feigned indifference answered his friends' inquiries as to how the book was going, and did not even inquire of the booksellers how the book was selling, Sergey Ivanovitch was all on the alert, with strained attention, watching for the first impression his book would make in the world and in literature. But a week passed, a second, a third, and in society no impression whatever could be detected. His friends who were specialists and savants, occasionally--unmistakably from politeness--alluded to it. The rest of his acquaintances, not interested in a book on a learned subject, did not talk of it at all. And society generally--just now especially absorbed in other things--was absolutely indifferent. In the press, too, for a whole month there was not a word about his book. Sergey Ivanovitch had calculated to a nicety the time necessary for writing a review, but a month passed, and a second, and still there was silence. Only in the _Northern Beetle_, in a comic article on the singer Drabanti, who had lost his voice, there was a contemptuous allusion to Koznishev's book, suggesting that the book had been long ago seen through by everyone, and was a subject of general ridicule. At last in the third month a critical article appeared in a serious review. Sergey Ivanovitch knew the author of the article. He had met him once at Golubtsov's. The author of the article was a young man, an invalid, very bold as a writer, but extremely deficient in breeding and shy in personal relations. In spite of his absolute contempt for the author, it was with complete respect that Sergey Ivanovitch set about reading the article. The article was awful. The critic had undoubtedly put an interpretation upon the book which could not possibly be put on it. But he had selected quotations so adroitly that for people who had not read the book (and obviously scarcely anyone had read it) it seemed absolutely clear that the whole book was nothing but a medley of high-flown phrases, not even--as suggested by marks of interrogation--used appropriately, and that the author of the book was a person absolutely without knowledge of the subject. And all this was so wittily done that Sergey Ivanovitch would not have disowned such wit himself. But that was just what was so awful. In spite of the scrupulous conscientiousness with which Sergey Ivanovitch verified the correctness of the critic's arguments, he did not for a minute stop to ponder over the faults and mistakes which were ridiculed; but unconsciously he began immediately trying to recall every detail of his meeting and conversation with the author of the article. "Didn't I offend him in some way?" Sergey Ivanovitch wondered. And remembering that when they met he had corrected the young man about something he had said that betrayed ignorance, Sergey Ivanovitch found the clue to explain the article. This article was followed by a deadly silence about the book both in the press and in conversation, and Sergey Ivanovitch saw that his six years' task, toiled at with such love and labor, had gone, leaving no trace. Sergey Ivanovitch's position was still more difficult from the fact that, since he had finished his book, he had had no more literary work to do, such as had hitherto occupied the greater part of his time. Sergey Ivanovitch was clever, cultivated, healthy, and energetic, and he did not know what use to make of his energy. Conversations in drawing rooms, in meetings, assemblies, and committees--everywhere where talk was possible--took up part of his time. But being used for years to town life, he did not waste all his energies in talk, as his less experienced younger brother did, when he was in Moscow. He had a great deal of leisure and intellectual energy still to dispose of. Fortunately for him, at this period so difficult for him from the failure of his book, the various public questions of the dissenting sects, of the American alliance, of the Samara famine, of exhibitions, and of spiritualism, were definitely replaced in public interest by the Slavonic question, which had hitherto rather languidly interested society, and Sergey Ivanovitch, who had been one of the first to raise this subject, threw himself into it heart and soul. In the circle to which Sergey Ivanovitch belonged, nothing was talked of or written about just now but the Servian War. Everything that the idle crowd usually does to kill time was done now for the benefit of the Slavonic States. Balls, concerts, dinners, matchboxes, ladies' dresses, beer, restaurants--everything testified to sympathy with the Slavonic peoples. From much of what was spoken and written on the subject, Sergey Ivanovitch differed on various points. He saw that the Slavonic question had become one of those fashionable distractions which succeed one another in providing society with an object and an occupation. He saw, too, that a great many people were taking up the subject from motives of self-interest and self-advertisement. He recognized that the newspapers published a great deal that was superfluous and exaggerated, with the sole aim of attracting attention and outbidding one another. He saw that in this general movement those who thrust themselves most forward and shouted the loudest were men who had failed and were smarting under a sense of injury--generals without armies, ministers not in the ministry, journalists not on any paper, party leaders without followers. He saw that there was a great deal in it that was frivolous and absurd. But he saw and recognized an unmistakable growing enthusiasm, uniting all classes, with which it was impossible not to sympathize. The massacre of men who were fellow Christians, and of the same Slavonic race, excited sympathy for the sufferers and indignation against the oppressors. And the heroism of the Servians and Montenegrins struggling for a great cause begot in the whole people a longing to help their brothers not in word but in deed. But in this there was another aspect that rejoiced Sergey Ivanovitch. That was the manifestation of public opinion. The public had definitely expressed its desire. The soul of the people had, as Sergey Ivanovitch said, found expression. And the more he worked in this cause, the more incontestable it seemed to him that it was a cause destined to assume vast dimensions, to create an epoch. He threw himself heart and soul into the service of this great cause, and forgot to think about his book. His whole time now was engrossed by it, so that he could scarcely manage to answer all the letters and appeals addressed to him. He worked the whole spring and part of the summer, and it was only in July that he prepared to go away to his brother's in the country. He was going both to rest for a fortnight, and in the very heart of the people, in the farthest wilds of the country, to enjoy the sight of that uplifting of the spirit of the people, of which, like all residents in the capital and big towns, he was fully persuaded. Katavasov had long been meaning to carry out his promise to stay with Levin, and so he was going with him. Chapter 2 Sergey Ivanovitch and Katavasov had only just reached the station of the Kursk line, which was particularly busy and full of people that day, when, looking round for the groom who was following with their things, they saw a party of volunteers driving up in four cabs. Ladies met them with bouquets of flowers, and followed by the rushing crowd they went into the station. One of the ladies, who had met the volunteers, came out of the hall and addressed Sergey Ivanovitch. "You too come to see them off?" she asked in French. "No, I'm going away myself, princess. To my brother's for a holiday. Do you always see them off?" said Sergey Ivanovitch with a hardly perceptible smile. "Oh, that would be impossible!" answered the princess. "Is it true that eight hundred have been sent from us already? Malvinsky wouldn't believe me." "More than eight hundred. If you reckon those who have been sent not directly from Moscow, over a thousand," answered Sergey Ivanovitch. "There! That's just what I said!" exclaimed the lady. "And it's true too, I suppose, that more than a million has been subscribed?" "Yes, princess." "What do you say to today's telegram? Beaten the Turks again." "Yes, so I saw," answered Sergey Ivanovitch. They were speaking of the last telegram stating that the Turks had been for three days in succession beaten at all points and put to flight, and that tomorrow a decisive engagement was expected. "Ah, by the way, a splendid young fellow has asked leave to go, and they've made some difficulty, I don't know why. I meant to ask you; I know him; please write a note about his case. He's being sent by Countess Lidia Ivanovna." Sergey Ivanovitch asked for all the details the princess knew about the young man, and going into the first-class waiting-room, wrote a note to the person on whom the granting of leave of absence depended, and handed it to the princess. "You know Count Vronsky, the notorious one ... is going by this train?" said the princess with a smile full of triumph and meaning, when he found her again and gave her the letter. "I had heard he was going, but I did not know when. By this train?" "I've seen him. He's here: there's only his mother seeing him off. It's the best thing, anyway, that he could do." "Oh, yes, of course." While they were talking the crowd streamed by them into the dining room. They went forward too, and heard a gentleman with a glass in his hand delivering a loud discourse to the volunteers. "In the service of religion, humanity, and our brothers," the gentleman said, his voice growing louder and louder; "to this great cause mother Moscow dedicates you with her blessing. _Jivio!_" he concluded, loudly and tearfully. Everyone shouted _Jivio!_ and a fresh crowd dashed into the hall, almost carrying the princess off her legs. "Ah, princess! that was something like!" said Stepan Arkadyevitch, suddenly appearing in the middle of the crowd and beaming upon them with a delighted smile. "Capitally, warmly said, wasn't it? Bravo! And Sergey Ivanovitch! Why, you ought to have said something--just a few words, you know, to encourage them; you do that so well," he added with a soft, respectful, and discreet smile, moving Sergey Ivanovitch forward a little by the arm. "No, I'm just off." "Where to?" "To the country, to my brother's," answered Sergey Ivanovitch. "Then you'll see my wife. I've written to her, but you'll see her first. Please tell her that they've seen me and that it's 'all right,' as the English say. She'll understand. Oh, and be so good as to tell her I'm appointed secretary of the committee.... But she'll understand! You know, _les petites miseres de la vie humaine,_" he said, as it were apologizing to the princess. "And Princess Myakaya--not Liza, but Bibish--is sending a thousand guns and twelve nurses. Did I tell you?" "Yes, I heard so," answered Koznishev indifferently. "It's a pity you're going away," said Stepan Arkadyevitch. "Tomorrow we're giving a dinner to two who're setting off--Dimer-Bartnyansky from Petersburg and our Veslovsky, Grisha. They're both going. Veslovsky's only lately married. There's a fine fellow for you! Eh, princess?" he turned to the lady. The princess looked at Koznishev without replying. But the fact that Sergey Ivanovitch and the princess seemed anxious to get rid of him did not in the least disconcert Stepan Arkadyevitch. Smiling, he stared at the feather in the princess's hat, and then about him as though he were going to pick something up. Seeing a lady approaching with a collecting box, he beckoned her up and put in a five-rouble note. "I can never see these collecting boxes unmoved while I've money in my pocket," he said. "And how about today's telegram? Fine chaps those Montenegrins!" "You don't say so!" he cried, when the princess told him that Vronsky was going by this train. For an instant Stepan Arkadyevitch's face looked sad, but a minute later, when, stroking his mustaches and swinging as he walked, he went into the hall where Vronsky was, he had completely forgotten his own despairing sobs over his sister's corpse, and he saw in Vronsky only a hero and an old friend. "With all his faults one can't refuse to do him justice," said the princess to Sergey Ivanovitch as soon as Stepan Arkadyevitch had left them. "What a typically Russian, Slav nature! Only, I'm afraid it won't be pleasant for Vronsky to see him. Say what you will, I'm touched by that man's fate. Do talk to him a little on the way," said the princess. "Yes, perhaps, if it happens so." "I never liked him. But this atones for a great deal. He's not merely going himself, he's taking a squadron at his own expense." "Yes, so I heard." A bell sounded. Everyone crowded to the doors. "Here he is!" said the princess, indicating Vronsky, who with his mother on his arm walked by, wearing a long overcoat and wide-brimmed black hat. Oblonsky was walking beside him, talking eagerly of something. Vronsky was frowning and looking straight before him, as though he did not hear what Stepan Arkadyevitch was saying. Probably on Oblonsky's pointing them out, he looked round in the direction where the princess and Sergey Ivanovitch were standing, and without speaking lifted his hat. His face, aged and worn by suffering, looked stony. Going onto the platform, Vronsky left his mother and disappeared into a compartment. On the platform there rang out "God save the Tsar," then shouts of "hurrah!" and _"jivio!"_ One of the volunteers, a tall, very young man with a hollow chest, was particularly conspicuous, bowing and waving his felt hat and a nosegay over his head. Then two officers emerged, bowing too, and a stout man with a big beard, wearing a greasy forage cap. Chapter 3 Saying good-bye to the princess, Sergey Ivanovitch was joined by Katavasov; together they got into a carriage full to overflowing, and the train started. At Tsaritsino station the train was met by a chorus of young men singing "Hail to Thee!" Again the volunteers bowed and poked their heads out, but Sergey Ivanovitch paid no attention to them. He had had so much to do with the volunteers that the type was familiar to him and did not interest him. Katavasov, whose scientific work had prevented his having a chance of observing them hitherto, was very much interested in them and questioned Sergey Ivanovitch. Sergey Ivanovitch advised him to go into the second-class and talk to them himself. At the next station Katavasov acted on this suggestion. At the first stop he moved into the second-class and made the acquaintance of the volunteers. They were sitting in a corner of the carriage, talking loudly and obviously aware that the attention of the passengers and Katavasov as he got in was concentrated upon them. More loudly than all talked the tall, hollow-chested young man. He was unmistakably tipsy, and was relating some story that had occurred at his school. Facing him sat a middle-aged officer in the Austrian military jacket of the Guards uniform. He was listening with a smile to the hollow-chested youth, and occasionally pulling him up. The third, in an artillery uniform, was sitting on a box beside them. A fourth was asleep. Entering into conversation with the youth, Katavasov learned that he was a wealthy Moscow merchant who had run through a large fortune before he was two-and-twenty. Katavasov did not like him, because he was unmanly and effeminate and sickly. He was obviously convinced, especially now after drinking, that he was performing a heroic action, and he bragged of it in the most unpleasant way. The second, the retired officer, made an unpleasant impression too upon Katavasov. He was, it seemed, a man who had tried everything. He had been on a railway, had been a land-steward, and had started factories, and he talked, quite without necessity, of all he had done, and used learned expressions quite inappropriately. The third, the artilleryman, on the contrary, struck Katavasov very favorably. He was a quiet, modest fellow, unmistakably impressed by the knowledge of the officer and the heroic self-sacrifice of the merchant and saying nothing about himself. When Katavasov asked him what had impelled him to go to Servia, he answered modestly: "Oh, well, everyone's going. The Servians want help, too. I'm sorry for them." "Yes, you artillerymen especially are scarce there," said Katavasov. "Oh, I wasn't long in the artillery, maybe they'll put me into the infantry or the cavalry." "Into the infantry when they need artillery more than anything?" said Katavasov, fancying from the artilleryman's apparent age that he must have reached a fairly high grade. "I wasn't long in the artillery; I'm a cadet retired," he said, and he began to explain how he had failed in his examination. All of this together made a disagreeable impression on Katavasov, and when the volunteers got out at a station for a drink, Katavasov would have liked to compare his unfavorable impression in conversation with someone. There was an old man in the carriage, wearing a military overcoat, who had been listening all the while to Katavasov's conversation with the volunteers. When they were left alone, Katavasov addressed him. "What different positions they come from, all those fellows who are going off there," Katavasov said vaguely, not wishing to express his own opinion, and at the same time anxious to find out the old man's views. The old man was an officer who had served on two campaigns. He knew what makes a soldier, and judging by the appearance and the talk of those persons, by the swagger with which they had recourse to the bottle on the journey, he considered them poor soldiers. Moreover, he lived in a district town, and he was longing to tell how one soldier had volunteered from his town, a drunkard and a thief whom no one would employ as a laborer. But knowing by experience that in the present condition of the public temper it was dangerous to express an opinion opposed to the general one, and especially to criticize the volunteers unfavorably, he too watched Katavasov without committing himself. "Well, men are wanted there," he said, laughing with his eyes. And they fell to talking of the last war news, and each concealed from the other his perplexity as to the engagement expected next day, since the Turks had been beaten, according to the latest news, at all points. And so they parted, neither giving expression to his opinion. Katavasov went back to his own carriage, and with reluctant hypocrisy reported to Sergey Ivanovitch his observations of the volunteers, from which it would appear that they were capital fellows. At a big station at a town the volunteers were again greeted with shouts and singing, again men and women with collecting boxes appeared, and provincial ladies brought bouquets to the volunteers and followed them into the refreshment room; but all this was on a much smaller and feebler scale than in Moscow. Chapter 4 While the train was stopping at the provincial town, Sergey Ivanovitch did not go to the refreshment room, but walked up and down the platform. The first time he passed Vronsky's compartment he noticed that the curtain was drawn over the window; but as he passed it the second time he saw the old countess at the window. She beckoned to Koznishev. "I'm going, you see, taking him as far as Kursk," she said. "Yes, so I heard," said Sergey Ivanovitch, standing at her window and peeping in. "What a noble act on his part!" he added, noticing that Vronsky was not in the compartment. "Yes, after his misfortune, what was there for him to do?" "What a terrible thing it was!" said Sergey Ivanovitch. "Ah, what I have been through! But do get in.... Ah, what I have been through!" she repeated, when Sergey Ivanovitch had got in and sat down beside her. "You can't conceive it! For six weeks he did not speak to anyone, and would not touch food except when I implored him. And not for one minute could we leave him alone. We took away everything he could have used against himself. We lived on the ground floor, but there was no reckoning on anything. You know, of course, that he had shot himself once already on her account," she said, and the old lady's eyelashes twitched at the recollection. "Yes, hers was the fitting end for such a woman. Even the death she chose was low and vulgar." "It's not for us to judge, countess," said Sergey Ivanovitch; "but I can understand that it has been very hard for you." "Ah, don't speak of it! I was staying on my estate, and he was with me. A note was brought him. He wrote an answer and sent it off. We hadn't an idea that she was close by at the station. In the evening I had only just gone to my room, when my Mary told me a lady had thrown herself under the train. Something seemed to strike me at once. I knew it was she. The first thing I said was, he was not to be told. But they'd told him already. His coachman was there and saw it all. When I ran into his room, he was beside himself--it was fearful to see him. He didn't say a word, but galloped off there. I don't know to this day what happened there, but he was brought back at death's door. I shouldn't have known him. _Prostration complete,_ the doctor said. And that was followed almost by madness. Oh, why talk of it!" said the countess with a wave of her hand. "It was an awful time! No, say what you will, she was a bad woman. Why, what is the meaning of such desperate passions? It was all to show herself something out of the way. Well, and that she did do. She brought herself to ruin and two good men--her husband and my unhappy son." "And what did her husband do?" asked Sergey Ivanovitch. "He has taken her daughter. Alexey was ready to agree to anything at first. Now it worries him terribly that he should have given his own child away to another man. But he can't take back his word. Karenin came to the funeral. But we tried to prevent his meeting Alexey. For him, for her husband, it was easier, anyway. She had set him free. But my poor son was utterly given up to her. He had thrown up everything, his career, me, and even then she had no mercy on him, but of set purpose she made his ruin complete. No, say what you will, her very death was the death of a vile woman, of no religious feeling. God forgive me, but I can't help hating the memory of her, when I look at my son's misery!" "But how is he now?" "It was a blessing from Providence for us--this Servian war. I'm old, and I don't understand the rights and wrongs of it, but it's come as a providential blessing to him. Of course for me, as his mother, it's terrible; and what's worse, they say, _ce n'est pas tres bien vu a Petersbourg_. But it can't be helped! It was the one thing that could rouse him. Yashvin--a friend of his--he had lost all he had at cards and he was going to Servia. He came to see him and persuaded him to go. Now it's an interest for him. Do please talk to him a little. I want to distract his mind. He's so low-spirited. And as bad luck would have it, he has toothache too. But he'll be delighted to see you. Please do talk to him; he's walking up and down on that side." Sergey Ivanovitch said he would be very glad to, and crossed over to the other side of the station. Chapter 5 In the slanting evening shadows cast by the baggage piled up on the platform, Vronsky in his long overcoat and slouch hat, with his hands in his pockets, strode up and down, like a wild beast in a cage, turning sharply after twenty paces. Sergey Ivanovitch fancied, as he approached him, that Vronsky saw him but was pretending not to see. This did not affect Sergey Ivanovitch in the slightest. He was above all personal considerations with Vronsky. At that moment Sergey Ivanovitch looked upon Vronsky as a man taking an important part in a great cause, and Koznishev thought it his duty to encourage him and express his approval. He went up to him. Vronsky stood still, looked intently at him, recognized him, and going a few steps forward to meet him, shook hands with him very warmly. "Possibly you didn't wish to see me," said Sergey Ivanovitch, "but couldn't I be of use to you?" "There's no one I should less dislike seeing than you," said Vronsky. "Excuse me; and there's nothing in life for me to like." "I quite understand, and I merely meant to offer you my services," said Sergey Ivanovitch, scanning Vronsky's face, full of unmistakable suffering. "Wouldn't it be of use to you to have a letter to Ristitch--to Milan?" "Oh, no!" Vronsky said, seeming to understand him with difficulty. "If you don't mind, let's walk on. It's so stuffy among the carriages. A letter? No, thank you; to meet death one needs no letters of introduction. Nor for the Turks..." he said, with a smile that was merely of the lips. His eyes still kept their look of angry suffering. "Yes; but you might find it easier to get into relations, which are after all essential, with anyone prepared to see you. But that's as you like. I was very glad to hear of your intention. There have been so many attacks made on the volunteers, and a man like you raises them in public estimation." "My use as a man," said Vronsky, "is that life's worth nothing to me. And that I've enough bodily energy to cut my way into their ranks, and to trample on them or fall--I know that. I'm glad there's something to give my life for, for it's not simply useless but loathsome to me. Anyone's welcome to it." And his jaw twitched impatiently from the incessant gnawing toothache, that prevented him from even speaking with a natural expression. "You will become another man, I predict," said Sergey Ivanovitch, feeling touched. "To deliver one's brother-men from bondage is an aim worth death and life. God grant you success outwardly--and inwardly peace," he added, and he held out his hand. Vronsky warmly pressed his outstretched hand. "Yes, as a weapon I may be of some use. But as a man, I'm a wreck," he jerked out. He could hardly speak for the throbbing ache in his strong teeth, that were like rows of ivory in his mouth. He was silent, and his eyes rested on the wheels of the tender, slowly and smoothly rolling along the rails. And all at once a different pain, not an ache, but an inner trouble, that set his whole being in anguish, made him for an instant forget his toothache. As he glanced at the tender and the rails, under the influence of the conversation with a friend he had not met since his misfortune, he suddenly recalled _her_--that is, what was left of her when he had run like one distraught into the cloak room of the railway station--on the table, shamelessly sprawling out among strangers, the bloodstained body so lately full of life; the head unhurt dropping back with its weight of hair, and the curling tresses about the temples, and the exquisite face, with red, half-opened mouth, the strange, fixed expression, piteous on the lips and awful in the still open eyes, that seemed to utter that fearful phrase--that he would be sorry for it--that she had said when they were quarreling. And he tried to think of her as she was when he met her the first time, at a railway station too, mysterious, exquisite, loving, seeking and giving happiness, and not cruelly revengeful as he remembered her on that last moment. He tried to recall his best moments with her, but those moments were poisoned forever. He could only think of her as triumphant, successful in her menace of a wholly useless remorse never to be effaced. He lost all consciousness of toothache, and his face worked with sobs. Passing twice up and down beside the baggage in silence and regaining his self-possession, he addressed Sergey Ivanovitch calmly: "You have had no telegrams since yesterday's? Yes, driven back for a third time, but a decisive engagement expected for tomorrow." And after talking a little more of King Milan's proclamation, and the immense effect it might have, they parted, going to their carriages on hearing the second bell. Chapter 6 Sergey Ivanovitch had not telegraphed to his brother to send to meet him, as he did not know when he should be able to leave Moscow. Levin was not at home when Katavasov and Sergey Ivanovitch in a fly hired at the station drove up to the steps of the Pokrovskoe house, as black as Moors from the dust of the road. Kitty, sitting on the balcony with her father and sister, recognized her brother-in-law, and ran down to meet him. "What a shame not to have let us know," she said, giving her hand to Sergey Ivanovitch, and putting her forehead up for him to kiss. "We drove here capitally, and have not put you out," answered Sergey Ivanovitch. "I'm so dirty. I'm afraid to touch you. I've been so busy, I didn't know when I should be able to tear myself away. And so you're still as ever enjoying your peaceful, quiet happiness," he said, smiling, "out of the reach of the current in your peaceful backwater. Here's our friend Fyodor Vassilievitch who has succeeded in getting here at last." "But I'm not a negro, I shall look like a human being when I wash," said Katavasov in his jesting fashion, and he shook hands and smiled, his teeth flashing white in his black face. "Kostya will be delighted. He has gone to his settlement. It's time he should be home." "Busy as ever with his farming. It really is a peaceful backwater," said Katavasov; "while we in town think of nothing but the Servian war. Well, how does our friend look at it? He's sure not to think like other people." "Oh, I don't know, like everybody else," Kitty answered, a little embarrassed, looking round at Sergey Ivanovitch. "I'll send to fetch him. Papa's staying with us. He's only just come home from abroad." And making arrangements to send for Levin and for the guests to wash, one in his room and the other in what had been Dolly's, and giving orders for their luncheon, Kitty ran out onto the balcony, enjoying the freedom, and rapidity of movement, of which she had been deprived during the months of her pregnancy. "It's Sergey Ivanovitch and Katavasov, a professor," she said. "Oh, that's a bore in this heat," said the prince. "No, papa, he's very nice, and Kostya's very fond of him," Kitty said, with a deprecating smile, noticing the irony on her father's face. "Oh, I didn't say anything." "You go to them, darling," said Kitty to her sister, "and entertain them. They saw Stiva at the station; he was quite well. And I must run to Mitya. As ill-luck would have it, I haven't fed him since tea. He's awake now, and sure to be screaming." And feeling a rush of milk, she hurried to the nursery. This was not a mere guess; her connection with the child was still so close, that she could gauge by the flow of her milk his need of food, and knew for certain he was hungry. She knew he was crying before she reached the nursery. And he was indeed crying. She heard him and hastened. But the faster she went, the louder he screamed. It was a fine healthy scream, hungry and impatient. "Has he been screaming long, nurse, very long?" said Kitty hurriedly, seating herself on a chair, and preparing to give the baby the breast. "But give me him quickly. Oh, nurse, how tiresome you are! There, tie the cap afterwards, do!" The baby's greedy scream was passing into sobs. "But you can't manage so, ma'am," said Agafea Mihalovna, who was almost always to be found in the nursery. "He must be put straight. A-oo! a-oo!" she chanted over him, paying no attention to the mother. The nurse brought the baby to his mother. Agafea Mihalovna followed him with a face dissolving with tenderness. "He knows me, he knows me. In God's faith, Katerina Alexandrovna, ma'am, he knew me!" Agafea Mihalovna cried above the baby's screams. But Kitty did not hear her words. Her impatience kept growing, like the baby's. Their impatience hindered things for a while. The baby could not get hold of the breast right, and was furious. At last, after despairing, breathless screaming, and vain sucking, things went right, and mother and child felt simultaneously soothed, and both subsided into calm. "But poor darling, he's all in perspiration!" said Kitty in a whisper, touching the baby. "What makes you think he knows you?" she added, with a sidelong glance at the baby's eyes, that peered roguishly, as she fancied, from under his cap, at his rhythmically puffing cheeks, and the little red-palmed hand he was waving. "Impossible! If he knew anyone, he would have known me," said Kitty, in response to Agafea Mihalovna's statement, and she smiled. She smiled because, though she said he could not know her, in her heart she was sure that he knew not merely Agafea Mihalovna, but that he knew and understood everything, and knew and understood a great deal too that no one else knew, and that she, his mother, had learned and come to understand only through him. To Agafea Mihalovna, to the nurse, to his grandfather, to his father even, Mitya was a living being, requiring only material care, but for his mother he had long been a mortal being, with whom there had been a whole series of spiritual relations already. "When he wakes up, please God, you shall see for yourself. Then when I do like this, he simply beams on me, the darling! Simply beams like a sunny day!" said Agafea Mihalovna. "Well, well; then we shall see," whispered Kitty. "But now go away, he's going to sleep." Chapter 7 Agafea Mihalovna went out on tiptoe; the nurse let down the blind, chased a fly out from under the muslin canopy of the crib, and a bumblebee struggling on the window-frame, and sat down waving a faded branch of birch over the mother and the baby. "How hot it is! if God would send a drop of rain," she said. "Yes, yes, sh--sh--sh--" was all Kitty answered, rocking a little, and tenderly squeezing the plump little arm, with rolls of fat at the wrist, which Mitya still waved feebly as he opened and shut his eyes. That hand worried Kitty; she longed to kiss the little hand, but was afraid to for fear of waking the baby. At last the little hand ceased waving, and the eyes closed. Only from time to time, as he went on sucking, the baby raised his long, curly eyelashes and peeped at his mother with wet eyes, that looked black in the twilight. The nurse had left off fanning, and was dozing. From above came the peals of the old prince's voice, and the chuckle of Katavasov. "They have got into talk without me," thought Kitty, "but still it's vexing that Kostya's out. He's sure to have gone to the bee house again. Though it's a pity he's there so often, still I'm glad. It distracts his mind. He's become altogether happier and better now than in the spring. He used to be so gloomy and worried that I felt frightened for him. And how absurd he is!" she whispered, smiling. She knew what worried her husband. It was his unbelief. Although, if she had been asked whether she supposed that in the future life, if he did not believe, he would be damned, she would have had to admit that he would be damned, his unbelief did not cause her unhappiness. And she, confessing that for an unbeliever there can be no salvation, and loving her husband's soul more than anything in the world, thought with a smile of his unbelief, and told herself that he was absurd. "What does he keep reading philosophy of some sort for all this year?" she wondered. "If it's all written in those books, he can understand them. If it's all wrong, why does he read them? He says himself that he would like to believe. Then why is it he doesn't believe? Surely from his thinking so much? And he thinks so much from being solitary. He's always alone, alone. He can't talk about it all to us. I fancy he'll be glad of these visitors, especially Katavasov. He likes discussions with them," she thought, and passed instantly to the consideration of where it would be more convenient to put Katavasov, to sleep alone or to share Sergey Ivanovitch's room. And then an idea suddenly struck her, which made her shudder and even disturb Mitya, who glanced severely at her. "I do believe the laundress hasn't sent the washing yet, and all the best sheets are in use. If I don't see to it, Agafea Mihalovna will give Sergey Ivanovitch the wrong sheets," and at the very idea of this the blood rushed to Kitty's face. "Yes, I will arrange it," she decided, and going back to her former thoughts, she remembered that some spiritual question of importance had been interrupted, and she began to recall what. "Yes, Kostya, an unbeliever," she thought again with a smile. "Well, an unbeliever then! Better let him always be one than like Madame Stahl, or what I tried to be in those days abroad. No, he won't ever sham anything." And a recent instance of his goodness rose vividly to her mind. A fortnight ago a penitent letter had come from Stepan Arkadyevitch to Dolly. He besought her to save his honor, to sell her estate to pay his debts. Dolly was in despair, she detested her husband, despised him, pitied him, resolved on a separation, resolved to refuse, but ended by agreeing to sell part of her property. After that, with an irrepressible smile of tenderness, Kitty recalled her husband's shamefaced embarrassment, his repeated awkward efforts to approach the subject, and how at last, having thought of the one means of helping Dolly without wounding her pride, he had suggested to Kitty--what had not occurred to her before--that she should give up her share of the property. "He an unbeliever indeed! With his heart, his dread of offending anyone, even a child! Everything for others, nothing for himself. Sergey Ivanovitch simply considers it as Kostya's duty to be his steward. And it's the same with his sister. Now Dolly and her children are under his guardianship; all these peasants who come to him every day, as though he were bound to be at their service." "Yes, only be like your father, only like him," she said, handing Mitya over to the nurse, and putting her lips to his cheek. Chapter 8 Ever since, by his beloved brother's deathbed, Levin had first glanced into the questions of life and death in the light of these new convictions, as he called them, which had during the period from his twentieth to his thirty-fourth year imperceptibly replaced his childish and youthful beliefs--he had been stricken with horror, not so much of death, as of life, without any knowledge of whence, and why, and how, and what it was. The physical organization, its decay, the indestructibility of matter, the law of the conservation of energy, evolution, were the words which usurped the place of his old belief. These words and the ideas associated with them were very well for intellectual purposes. But for life they yielded nothing, and Levin felt suddenly like a man who has changed his warm fur cloak for a muslin garment, and going for the first time into the frost is immediately convinced, not by reason, but by his whole nature that he is as good as naked, and that he must infallibly perish miserably. From that moment, though he did not distinctly face it, and still went on living as before, Levin had never lost this sense of terror at his lack of knowledge. He vaguely felt, too, that what he called his new convictions were not merely lack of knowledge, but that they were part of a whole order of ideas, in which no knowledge of what he needed was possible. At first, marriage, with the new joys and duties bound up with it, had completely crowded out these thoughts. But of late, while he was staying in Moscow after his wife's confinement, with nothing to do, the question that clamored for solution had more and more often, more and more insistently, haunted Levin's mind. The question was summed up for him thus: "If I do not accept the answers Christianity gives to the problems of my life, what answers do I accept?" And in the whole arsenal of his convictions, so far from finding any satisfactory answers, he was utterly unable to find anything at all like an answer. He was in the position of a man seeking food in toy shops and tool shops. Instinctively, unconsciously, with every book, with every conversation, with every man he met, he was on the lookout for light on these questions and their solution. What puzzled and distracted him above everything was that the majority of men of his age and circle had, like him, exchanged their old beliefs for the same new convictions, and yet saw nothing to lament in this, and were perfectly satisfied and serene. So that, apart from the principal question, Levin was tortured by other questions too. Were these people sincere? he asked himself, or were they playing a part? or was it that they understood the answers science gave to these problems in some different, clearer sense than he did? And he assiduously studied both these men's opinions and the books which treated of these scientific explanations. One fact he had found out since these questions had engrossed his mind, was that he had been quite wrong in supposing from the recollections of the circle of his young days at college, that religion had outlived its day, and that it was now practically non-existent. All the people nearest to him who were good in their lives were believers. The old prince, and Lvov, whom he liked so much, and Sergey Ivanovitch, and all the women believed, and his wife believed as simply as he had believed in his earliest childhood, and ninety-nine hundredths of the Russian people, all the working people for whose life he felt the deepest respect, believed. Another fact of which he became convinced, after reading many scientific books, was that the men who shared his views had no other construction to put on them, and that they gave no explanation of the questions which he felt he could not live without answering, but simply ignored their existence and attempted to explain other questions of no possible interest to him, such as the evolution of organisms, the materialistic theory of consciousness, and so forth. Moreover, during his wife's confinement, something had happened that seemed extraordinary to him. He, an unbeliever, had fallen into praying, and at the moment he prayed, he believed. But that moment had passed, and he could not make his state of mind at that moment fit into the rest of his life. He could not admit that at that moment he knew the truth, and that now he was wrong; for as soon as he began thinking calmly about it, it all fell to pieces. He could not admit that he was mistaken then, for his spiritual condition then was precious to him, and to admit that it was a proof of weakness would have been to desecrate those moments. He was miserably divided against himself, and strained all his spiritual forces to the utmost to escape from this condition. Chapter 9 These doubts fretted and harassed him, growing weaker or stronger from time to time, but never leaving him. He read and thought, and the more he read and the more he thought, the further he felt from the aim he was pursuing. Of late in Moscow and in the country, since he had become convinced that he would find no solution in the materialists, he had read and re-read thoroughly Plato, Spinoza, Kant, Schelling, Hegel, and Schopenhauer, the philosophers who gave a non-materialistic explanation of life. Their ideas seemed to him fruitful when he was reading or was himself seeking arguments to refute other theories, especially those of the materialists; but as soon as he began to read or sought for himself a solution of problems, the same thing always happened. As long as he followed the fixed definition of obscure words such as _spirit, will, freedom, essence,_ purposely letting himself go into the snare of words the philosophers set for him, he seemed to comprehend something. But he had only to forget the artificial train of reasoning, and to turn from life itself to what had satisfied him while thinking in accordance with the fixed definitions, and all this artificial edifice fell to pieces at once like a house of cards, and it became clear that the edifice had been built up out of those transposed words, apart from anything in life more important than reason. At one time, reading Schopenhauer, he put in place of his will the word _love_, and for a couple of days this new philosophy charmed him, till he removed a little away from it. But then, when he turned from life itself to glance at it again, it fell away too, and proved to be the same muslin garment with no warmth in it. His brother Sergey Ivanovitch advised him to read the theological works of Homiakov. Levin read the second volume of Homiakov's works, and in spite of the elegant, epigrammatic, argumentative style which at first repelled him, he was impressed by the doctrine of the church he found in them. He was struck at first by the idea that the apprehension of divine truths had not been vouchsafed to man, but to a corporation of men bound together by love--to the church. What delighted him was the thought how much easier it was to believe in a still existing living church, embracing all the beliefs of men, and having God at its head, and therefore holy and infallible, and from it to accept the faith in God, in the creation, the fall, the redemption, than to begin with God, a mysterious, far-away God, the creation, etc. But afterwards, on reading a Catholic writer's history of the church, and then a Greek orthodox writer's history of the church, and seeing that the two churches, in their very conception infallible, each deny the authority of the other, Homiakov's doctrine of the church lost all its charm for him, and this edifice crumbled into dust like the philosophers' edifices. All that spring he was not himself, and went through fearful moments of horror. "Without knowing what I am and why I am here, life's impossible; and that I can't know, and so I can't live," Levin said to himself. "In infinite time, in infinite matter, in infinite space, is formed a bubble-organism, and that bubble lasts a while and bursts, and that bubble is Me." It was an agonizing error, but it was the sole logical result of ages of human thought in that direction. This was the ultimate belief on which all the systems elaborated by human thought in almost all their ramifications rested. It was the prevalent conviction, and of all other explanations Levin had unconsciously, not knowing when or how, chosen it, as anyway the clearest, and made it his own. But it was not merely a falsehood, it was the cruel jeer of some wicked power, some evil, hateful power, to whom one could not submit. He must escape from this power. And the means of escape every man had in his own hands. He had but to cut short this dependence on evil. And there was one means--death. And Levin, a happy father and husband, in perfect health, was several times so near suicide that he hid the cord that he might not be tempted to hang himself, and was afraid to go out with his gun for fear of shooting himself. But Levin did not shoot himself, and did not hang himself; he went on living. Chapter 10 When Levin thought what he was and what he was living for, he could find no answer to the questions and was reduced to despair, but he left off questioning himself about it. It seemed as though he knew both what he was and for what he was living, for he acted and lived resolutely and without hesitation. Indeed, in these latter days he was far more decided and unhesitating in life than he had ever been. When he went back to the country at the beginning of June, he went back also to his usual pursuits. The management of the estate, his relations with the peasants and the neighbors, the care of his household, the management of his sister's and brother's property, of which he had the direction, his relations with his wife and kindred, the care of his child, and the new bee-keeping hobby he had taken up that spring, filled all his time. These things occupied him now, not because he justified them to himself by any sort of general principles, as he had done in former days; on the contrary, disappointed by the failure of his former efforts for the general welfare, and too much occupied with his own thought and the mass of business with which he was burdened from all sides, he had completely given up thinking of the general good, and he busied himself with all this work simply because it seemed to him that he must do what he was doing--that he could not do otherwise. In former days--almost from childhood, and increasingly up to full manhood--when he had tried to do anything that would be good for all, for humanity, for Russia, for the whole village, he had noticed that the idea of it had been pleasant, but the work itself had always been incoherent, that then he had never had a full conviction of its absolute necessity, and that the work that had begun by seeming so great, had grown less and less, till it vanished into nothing. But now, since his marriage, when he had begun to confine himself more and more to living for himself, though he experienced no delight at all at the thought of the work he was doing, he felt a complete conviction of its necessity, saw that it succeeded far better than in old days, and that it kept on growing more and more. Now, involuntarily it seemed, he cut more and more deeply into the soil like a plough, so that he could not be drawn out without turning aside the furrow. To live the same family life as his father and forefathers--that is, in the same condition of culture--and to bring up his children in the same, was incontestably necessary. It was as necessary as dining when one was hungry. And to do this, just as it was necessary to cook dinner, it was necessary to keep the mechanism of agriculture at Pokrovskoe going so as to yield an income. Just as incontestably as it was necessary to repay a debt was it necessary to keep the property in such a condition that his son, when he received it as a heritage, would say "thank you" to his father as Levin had said "thank you" to his grandfather for all he built and planted. And to do this it was necessary to look after the land himself, not to let it, and to breed cattle, manure the fields, and plant timber. It was impossible not to look after the affairs of Sergey Ivanovitch, of his sister, of the peasants who came to him for advice and were accustomed to do so--as impossible as to fling down a child one is carrying in one's arms. It was necessary to look after the comfort of his sister-in-law and her children, and of his wife and baby, and it was impossible not to spend with them at least a short time each day. And all this, together with shooting and his new bee-keeping, filled up the whole of Levin's life, which had no meaning at all for him, when he began to think. But besides knowing thoroughly what he had to do, Levin knew in just the same way _how_ he had to do it all, and what was more important than the rest. He knew he must hire laborers as cheaply as possible; but to hire men under bond, paying them in advance at less than the current rate of wages, was what he must not do, even though it was very profitable. Selling straw to the peasants in times of scarcity of provender was what he might do, even though he felt sorry for them; but the tavern and the pothouse must be put down, though they were a source of income. Felling timber must be punished as severely as possible, but he could not exact forfeits for cattle being driven onto his fields; and though it annoyed the keeper and made the peasants not afraid to graze their cattle on his land, he could not keep their cattle as a punishment. To Pyotr, who was paying a money-lender 10 per cent. a month, he must lend a sum of money to set him free. But he could not let off peasants who did not pay their rent, nor let them fall into arrears. It was impossible to overlook the bailiff's not having mown the meadows and letting the hay spoil; and it was equally impossible to mow those acres where a young copse had been planted. It was impossible to excuse a laborer who had gone home in the busy season because his father was dying, however sorry he might feel for him, and he must subtract from his pay those costly months of idleness. But it was impossible not to allow monthly rations to the old servants who were of no use for anything. Levin knew that when he got home he must first of all go to his wife, who was unwell, and that the peasants who had been waiting for three hours to see him could wait a little longer. He knew too that, regardless of all the pleasure he felt in taking a swarm, he must forego that pleasure, and leave the old man to see to the bees alone, while he talked to the peasants who had come after him to the bee-house. Whether he were acting rightly or wrongly he did not know, and far from trying to prove that he was, nowadays he avoided all thought or talk about it. Reasoning had brought him to doubt, and prevented him from seeing what he ought to do and what he ought not. When he did not think, but simply lived, he was continually aware of the presence of an infallible judge in his soul, determining which of two possible courses of action was the better and which was the worse, and as soon as he did not act rightly, he was at once aware of it. So he lived, not knowing and not seeing any chance of knowing what he was and what he was living for, and harassed at this lack of knowledge to such a point that he was afraid of suicide, and yet firmly laying down his own individual definite path in life. Chapter 11 The day on which Sergey Ivanovitch came to Pokrovskoe was one of Levin's most painful days. It was the very busiest working time, when all the peasantry show an extraordinary intensity of self-sacrifice in labor, such as is never shown in any other conditions of life, and would be highly esteemed if the men who showed these qualities themselves thought highly of them, and if it were not repeated every year, and if the results of this intense labor were not so simple. To reap and bind the rye and oats and to carry it, to mow the meadows, turn over the fallows, thrash the seed and sow the winter corn--all this seems so simple and ordinary; but to succeed in getting through it all everyone in the village, from the old man to the young child, must toil incessantly for three or four weeks, three times as hard as usual, living on rye-beer, onions, and black bread, thrashing and carrying the sheaves at night, and not giving more than two or three hours in the twenty-four to sleep. And every year this is done all over Russia. Having lived the greater part of his life in the country and in the closest relations with the peasants, Levin always felt in this busy time that he was infected by this general quickening of energy in the people. In the early morning he rode over to the first sowing of the rye, and to the oats, which were being carried to the stacks, and returning home at the time his wife and sister-in-law were getting up, he drank coffee with them and walked to the farm, where a new thrashing machine was to be set working to get ready the seed-corn. He was standing in the cool granary, still fragrant with the leaves of the hazel branches interlaced on the freshly peeled aspen beams of the new thatch roof. He gazed through the open door in which the dry bitter dust of the thrashing whirled and played, at the grass of the thrashing floor in the sunlight and the fresh straw that had been brought in from the barn, then at the speckly-headed, white-breasted swallows that flew chirping in under the roof and, fluttering their wings, settled in the crevices of the doorway, then at the peasants bustling in the dark, dusty barn, and he thought strange thoughts. "Why is it all being done?" he thought. "Why am I standing here, making them work? What are they all so busy for, trying to show their zeal before me? What is that old Matrona, my old friend, toiling for? (I doctored her, when the beam fell on her in the fire)" he thought, looking at a thin old woman who was raking up the grain, moving painfully with her bare, sun-blackened feet over the uneven, rough floor. "Then she recovered, but today or tomorrow or in ten years she won't; they'll bury her, and nothing will be left either of her or of that smart girl in the red jacket, who with that skillful, soft action shakes the ears out of their husks. They'll bury her and this piebald horse, and very soon too," he thought, gazing at the heavily moving, panting horse that kept walking up the wheel that turned under him. "And they will bury her and Fyodor the thrasher with his curly beard full of chaff and his shirt torn on his white shoulders--they will bury him. He's untying the sheaves, and giving orders, and shouting to the women, and quickly setting straight the strap on the moving wheel. And what's more, it's not them alone--me they'll bury too, and nothing will be left. What for?" He thought this, and at the same time looked at his watch to reckon how much they thrashed in an hour. He wanted to know this so as to judge by it the task to set for the day. "It'll soon be one, and they're only beginning the third sheaf," thought Levin. He went up to the man that was feeding the machine, and shouting over the roar of the machine he told him to put it in more slowly. "You put in too much at a time, Fyodor. Do you see--it gets choked, that's why it isn't getting on. Do it evenly." Fyodor, black with the dust that clung to his moist face, shouted something in response, but still went on doing it as Levin did not want him to. Levin, going up to the machine, moved Fyodor aside, and began feeding the corn in himself. Working on till the peasants' dinner hour, which was not long in coming, he went out of the barn with Fyodor and fell into talk with him, stopping beside a neat yellow sheaf of rye laid on the thrashing floor for seed. Fyodor came from a village at some distance from the one in which Levin had once allotted land to his cooperative association. Now it had been let to a former house porter. Levin talked to Fyodor about this land and asked whether Platon, a well-to-do peasant of good character belonging to the same village, would not take the land for the coming year. "It's a high rent; it wouldn't pay Platon, Konstantin Dmitrievitch," answered the peasant, picking the ears off his sweat-drenched shirt. "But how does Kirillov make it pay?" "Mituh!" (so the peasant called the house porter, in a tone of contempt), "you may be sure he'll make it pay, Konstantin Dmitrievitch! He'll get his share, however he has to squeeze to get it! He's no mercy on a Christian. But Uncle Fokanitch" (so he called the old peasant Platon), "do you suppose he'd flay the skin off a man? Where there's debt, he'll let anyone off. And he'll not wring the last penny out. He's a man too." "But why will he let anyone off?" "Oh, well, of course, folks are different. One man lives for his own wants and nothing else, like Mituh, he only thinks of filling his belly, but Fokanitch is a righteous man. He lives for his soul. He does not forget God." "How thinks of God? How does he live for his soul?" Levin almost shouted. "Why, to be sure, in truth, in God's way. Folks are different. Take you now, you wouldn't wrong a man...." "Yes, yes, good-bye!" said Levin, breathless with excitement, and turning round he took his stick and walked quickly away towards home. At the peasant's words that Fokanitch lived for his soul, in truth, in God's way, undefined but significant ideas seemed to burst out as though they had been locked up, and all striving towards one goal, they thronged whirling through his head, blinding him with their light. Chapter 12 Levin strode along the highroad, absorbed not so much in his thoughts (he could not yet disentangle them) as in his spiritual condition, unlike anything he had experienced before. The words uttered by the peasant had acted on his soul like an electric shock, suddenly transforming and combining into a single whole the whole swarm of disjointed, impotent, separate thoughts that incessantly occupied his mind. These thoughts had unconsciously been in his mind even when he was talking about the land. He was aware of something new in his soul, and joyfully tested this new thing, not yet knowing what it was. "Not living for his own wants, but for God? For what God? And could one say anything more senseless than what he said? He said that one must not live for one's own wants, that is, that one must not live for what we understand, what we are attracted by, what we desire, but must live for something incomprehensible, for God, whom no one can understand nor even define. What of it? Didn't I understand those senseless words of Fyodor's? And understanding them, did I doubt of their truth? Did I think them stupid, obscure, inexact? No, I understood him, and exactly as he understands the words. I understood them more fully and clearly than I understand anything in life, and never in my life have I doubted nor can I doubt about it. And not only I, but everyone, the whole world understands nothing fully but this, and about this only they have no doubt and are always agreed. "And I looked out for miracles, complained that I did not see a miracle which would convince me. A material miracle would have persuaded me. And here is a miracle, the sole miracle possible, continually existing, surrounding me on all sides, and I never noticed it! "Fyodor says that Kirillov lives for his belly. That's comprehensible and rational. All of us as rational beings can't do anything else but live for our belly. And all of a sudden the same Fyodor says that one mustn't live for one's belly, but must live for truth, for God, and at a hint I understand him! And I and millions of men, men who lived ages ago and men living now--peasants, the poor in spirit and the learned, who have thought and written about it, in their obscure words saying the same thing--we are all agreed about this one thing: what we must live for and what is good. I and all men have only one firm, incontestable, clear knowledge, and that knowledge cannot be explained by the reason--it is outside it, and has no causes and can have no effects. "If goodness has causes, it is not goodness; if it has effects, a reward, it is not goodness either. So goodness is outside the chain of cause and effect. "And yet I know it, and we all know it. "What could be a greater miracle than that? "Can I have found the solution of it all? can my sufferings be over?" thought Levin, striding along the dusty road, not noticing the heat nor his weariness, and experiencing a sense of relief from prolonged suffering. This feeling was so delicious that it seemed to him incredible. He was breathless with emotion and incapable of going farther; he turned off the road into the forest and lay down in the shade of an aspen on the uncut grass. He took his hat off his hot head and lay propped on his elbow in the lush, feathery, woodland grass. "Yes, I must make it clear to myself and understand," he thought, looking intently at the untrampled grass before him, and following the movements of a green beetle, advancing along a blade of couch-grass and lifting up in its progress a leaf of goat-weed. "What have I discovered?" he asked himself, bending aside the leaf of goat-weed out of the beetle's way and twisting another blade of grass above for the beetle to cross over onto it. "What is it makes me glad? What have I discovered? "I have discovered nothing. I have only found out what I knew. I understand the force that in the past gave me life, and now too gives me life. I have been set free from falsity, I have found the Master. "Of old I used to say that in my body, that in the body of this grass and of this beetle (there, she didn't care for the grass, she's opened her wings and flown away), there was going on a transformation of matter in accordance with physical, chemical, and physiological laws. And in all of us, as well as in the aspens and the clouds and the misty patches, there was a process of evolution. Evolution from what? into what?--Eternal evolution and struggle.... As though there could be any sort of tendency and struggle in the eternal! And I was astonished that in spite of the utmost effort of thought along that road I could not discover the meaning of life, the meaning of my impulses and yearnings. Now I say that I know the meaning of my life: 'To live for God, for my soul.' And this meaning, in spite of its clearness, is mysterious and marvelous. Such, indeed, is the meaning of everything existing. Yes, pride," he said to himself, turning over on his stomach and beginning to tie a noose of blades of grass, trying not to break them. "And not merely pride of intellect, but dulness of intellect. And most of all, the deceitfulness; yes, the deceitfulness of intellect. The cheating knavishness of intellect, that's it," he said to himself. And he briefly went through, mentally, the whole course of his ideas during the last two years, the beginning of which was the clear confronting of death at the sight of his dear brother hopelessly ill. Then, for the first time, grasping that for every man, and himself too, there was nothing in store but suffering, death, and forgetfulness, he had made up his mind that life was impossible like that, and that he must either interpret life so that it would not present itself to him as the evil jest of some devil, or shoot himself. But he had not done either, but had gone on living, thinking, and feeling, and had even at that very time married, and had had many joys and had been happy, when he was not thinking of the meaning of his life. What did this mean? It meant that he had been living rightly, but thinking wrongly. He had lived (without being aware of it) on those spiritual truths that he had sucked in with his mother's milk, but he had thought, not merely without recognition of these truths, but studiously ignoring them. Now it was clear to him that he could only live by virtue of the beliefs in which he had been brought up. "What should I have been, and how should I have spent my life, if I had not had these beliefs, if I had not known that I must live for God and not for my own desires? I should have robbed and lied and killed. Nothing of what makes the chief happiness of my life would have existed for me." And with the utmost stretch of imagination he could not conceive the brutal creature he would have been himself, if he had not known what he was living for. "I looked for an answer to my question. And thought could not give an answer to my question--it is incommensurable with my question. The answer has been given me by life itself, in my knowledge of what is right and what is wrong. And that knowledge I did not arrive at in any way, it was given to me as to all men, _given_, because I could not have got it from anywhere. "Where could I have got it? By reason could I have arrived at knowing that I must love my neighbor and not oppress him? I was told that in my childhood, and I believed it gladly, for they told me what was already in my soul. But who discovered it? Not reason. Reason discovered the struggle for existence, and the law that requires us to oppress all who hinder the satisfaction of our desires. That is the deduction of reason. But loving one's neighbor reason could never discover, because it's irrational." Chapter 13 And Levin remembered a scene he had lately witnessed between Dolly and her children. The children, left to themselves, had begun cooking raspberries over the candles and squirting milk into each other's mouths with a syringe. Their mother, catching them at these pranks, began reminding them in Levin's presence of the trouble their mischief gave to the grown-up people, and that this trouble was all for their sake, and that if they smashed the cups they would have nothing to drink their tea out of, and that if they wasted the milk, they would have nothing to eat, and die of hunger. And Levin had been struck by the passive, weary incredulity with which the children heard what their mother said to them. They were simply annoyed that their amusing play had been interrupted, and did not believe a word of what their mother was saying. They could not believe it indeed, for they could not take in the immensity of all they habitually enjoyed, and so could not conceive that what they were destroying was the very thing they lived by. "That all comes of itself," they thought, "and there's nothing interesting or important about it because it has always been so, and always will be so. And it's all always the same. We've no need to think about that, it's all ready. But we want to invent something of our own, and new. So we thought of putting raspberries in a cup, and cooking them over a candle, and squirting milk straight into each other's mouths. That's fun, and something new, and not a bit worse than drinking out of cups." "Isn't it just the same that we do, that I did, searching by the aid of reason for the significance of the forces of nature and the meaning of the life of man?" he thought. "And don't all the theories of philosophy do the same, trying by the path of thought, which is strange and not natural to man, to bring him to a knowledge of what he has known long ago, and knows so certainly that he could not live at all without it? Isn't it distinctly to be seen in the development of each philosopher's theory, that he knows what is the chief significance of life beforehand, just as positively as the peasant Fyodor, and not a bit more clearly than he, and is simply trying by a dubious intellectual path to come back to what everyone knows? "Now then, leave the children to themselves to get things alone and make their crockery, get the milk from the cows, and so on. Would they be naughty then? Why, they'd die of hunger! Well, then, leave us with our passions and thoughts, without any idea of the one God, of the Creator, or without any idea of what is right, without any idea of moral evil. "Just try and build up anything without those ideas! "We only try to destroy them, because we're spiritually provided for. Exactly like the children! "Whence have I that joyful knowledge, shared with the peasant, that alone gives peace to my soul? Whence did I get it? "Brought up with an idea of God, a Christian, my whole life filled with the spiritual blessings Christianity has given me, full of them, and living on those blessings, like the children I did not understand them, and destroy, that is try to destroy, what I live by. And as soon as an important moment of life comes, like the children when they are cold and hungry, I turn to Him, and even less than the children when their mother scolds them for their childish mischief, do I feel that my childish efforts at wanton madness are reckoned against me. "Yes, what I know, I know not by reason, but it has been given to me, revealed to me, and I know it with my heart, by faith in the chief thing taught by the church. "The church! the church!" Levin repeated to himself. He turned over on the other side, and leaning on his elbow, fell to gazing into the distance at a herd of cattle crossing over to the river. "But can I believe in all the church teaches?" he thought, trying himself, and thinking of everything that could destroy his present peace of mind. Intentionally he recalled all those doctrines of the church which had always seemed most strange and had always been a stumbling block to him. "The Creation? But how did I explain existence? By existence? By nothing? The devil and sin. But how do I explain evil?... The atonement?... "But I know nothing, nothing, and I can know nothing but what has been told to me and all men." And it seemed to him that there was not a single article of faith of the church which could destroy the chief thing--faith in God, in goodness, as the one goal of man's destiny. Under every article of faith of the church could be put the faith in the service of truth instead of one's desires. And each doctrine did not simply leave that faith unshaken, each doctrine seemed essential to complete that great miracle, continually manifest upon earth, that made it possible for each man and millions of different sorts of men, wise men and imbeciles, old men and children--all men, peasants, Lvov, Kitty, beggars and kings to understand perfectly the same one thing, and to build up thereby that life of the soul which alone is worth living, and which alone is precious to us. Lying on his back, he gazed up now into the high, cloudless sky. "Do I not know that that is infinite space, and that it is not a round arch? But, however I screw up my eyes and strain my sight, I cannot see it not round and not bounded, and in spite of my knowing about infinite space, I am incontestably right when I see a solid blue dome, and more right than when I strain my eyes to see beyond it." Levin ceased thinking, and only, as it were, listened to mysterious voices that seemed talking joyfully and earnestly within him. "Can this be faith?" he thought, afraid to believe in his happiness. "My God, I thank Thee!" he said, gulping down his sobs, and with both hands brushing away the tears that filled his eyes. Chapter 14 Levin looked before him and saw a herd of cattle, then he caught sight of his trap with Raven in the shafts, and the coachman, who, driving up to the herd, said something to the herdsman. Then he heard the rattle of the wheels and the snort of the sleek horse close by him. But he was so buried in his thoughts that he did not even wonder why the coachman had come for him. He only thought of that when the coachman had driven quite up to him and shouted to him. "The mistress sent me. Your brother has come, and some gentleman with him." Levin got into the trap and took the reins. As though just roused out of sleep, for a long while Levin could not collect his faculties. He stared at the sleek horse flecked with lather between his haunches and on his neck, where the harness rubbed, stared at Ivan the coachman sitting beside him, and remembered that he was expecting his brother, thought that his wife was most likely uneasy at his long absence, and tried to guess who was the visitor who had come with his brother. And his brother and his wife and the unknown guest seemed to him now quite different from before. He fancied that now his relations with all men would be different. "With my brother there will be none of that aloofness there always used to be between us, there will be no disputes; with Kitty there shall never be quarrels; with the visitor, whoever he may be, I will be friendly and nice; with the servants, with Ivan, it will all be different." Pulling the stiff rein and holding in the good horse that snorted with impatience and seemed begging to be let go, Levin looked round at Ivan sitting beside him, not knowing what to do with his unoccupied hand, continually pressing down his shirt as it puffed out, and he tried to find something to start a conversation about with him. He would have said that Ivan had pulled the saddle-girth up too high, but that was like blame, and he longed for friendly, warm talk. Nothing else occurred to him. "Your honor must keep to the right and mind that stump," said the coachman, pulling the rein Levin held. "Please don't touch and don't teach me!" said Levin, angered by this interference. Now, as always, interference made him angry, and he felt sorrowfully at once how mistaken had been his supposition that his spiritual condition could immediately change him in contact with reality. He was not a quarter of a mile from home when he saw Grisha and Tanya running to meet him. "Uncle Kostya! mamma's coming, and grandfather, and Sergey Ivanovitch, and someone else," they said, clambering up into the trap. "Who is he?" "An awfully terrible person! And he does like this with his arms," said Tanya, getting up in the trap and mimicking Katavasov. "Old or young?" asked Levin, laughing, reminded of someone, he did not know whom, by Tanya's performance. "Oh, I hope it's not a tiresome person!" thought Levin. As soon as he turned, at a bend in the road, and saw the party coming, Levin recognized Katavasov in a straw hat, walking along swinging his arms just as Tanya had shown him. Katavasov was very fond of discussing metaphysics, having derived his notions from natural science writers who had never studied metaphysics, and in Moscow Levin had had many arguments with him of late. And one of these arguments, in which Katavasov had obviously considered that he came off victorious, was the first thing Levin thought of as he recognized him. "No, whatever I do, I won't argue and give utterance to my ideas lightly," he thought. Getting out of the trap and greeting his brother and Katavasov, Levin asked about his wife. "She has taken Mitya to Kolok" (a copse near the house). "She meant to have him out there because it's so hot indoors," said Dolly. Levin had always advised his wife not to take the baby to the wood, thinking it unsafe, and he was not pleased to hear this. "She rushes about from place to place with him," said the prince, smiling. "I advised her to try putting him in the ice cellar." "She meant to come to the bee house. She thought you would be there. We are going there," said Dolly. "Well, and what are you doing?" said Sergey Ivanovitch, falling back from the rest and walking beside him. "Oh, nothing special. Busy as usual with the land," answered Levin. "Well, and what about you? Come for long? We have been expecting you for such a long time." "Only for a fortnight. I've a great deal to do in Moscow." At these words the brothers' eyes met, and Levin, in spite of the desire he always had, stronger than ever just now, to be on affectionate and still more open terms with his brother, felt an awkwardness in looking at him. He dropped his eyes and did not know what to say. Casting over the subjects of conversation that would be pleasant to Sergey Ivanovitch, and would keep him off the subject of the Servian war and the Slavonic question, at which he had hinted by the allusion to what he had to do in Moscow, Levin began to talk of Sergey Ivanovitch's book. "Well, have there been reviews of your book?" he asked. Sergey Ivanovitch smiled at the intentional character of the question. "No one is interested in that now, and I less than anyone," he said. "Just look, Darya Alexandrovna, we shall have a shower," he added, pointing with a sunshade at the white rain clouds that showed above the aspen tree-tops. And these words were enough to re-establish again between the brothers that tone--hardly hostile, but chilly--which Levin had been so longing to avoid. Levin went up to Katavasov. "It was jolly of you to make up your mind to come," he said to him. "I've been meaning to a long while. Now we shall have some discussion, we'll see to that. Have you been reading Spencer?" "No, I've not finished reading him," said Levin. "But I don't need him now." "How's that? that's interesting. Why so?" "I mean that I'm fully convinced that the solution of the problems that interest me I shall never find in him and his like. Now..." But Katavasov's serene and good-humored expression suddenly struck him, and he felt such tenderness for his own happy mood, which he was unmistakably disturbing by this conversation, that he remembered his resolution and stopped short. "But we'll talk later on," he added. "If we're going to the bee house, it's this way, along this little path," he said, addressing them all. Going along the narrow path to a little uncut meadow covered on one side with thick clumps of brilliant heart's-ease among which stood up here and there tall, dark green tufts of hellebore, Levin settled his guests in the dense, cool shade of the young aspens on a bench and some stumps purposely put there for visitors to the bee house who might be afraid of the bees, and he went off himself to the hut to get bread, cucumbers, and fresh honey, to regale them with. Trying to make his movements as deliberate as possible, and listening to the bees that buzzed more and more frequently past him, he walked along the little path to the hut. In the very entry one bee hummed angrily, caught in his beard, but he carefully extricated it. Going into the shady outer room, he took down from the wall his veil, that hung on a peg, and putting it on, and thrusting his hands into his pockets, he went into the fenced-in bee-garden, where there stood in the midst of a closely mown space in regular rows, fastened with bast on posts, all the hives he knew so well, the old stocks, each with its own history, and along the fences the younger swarms hived that year. In front of the openings of the hives, it made his eyes giddy to watch the bees and drones whirling round and round about the same spot, while among them the working bees flew in and out with spoils or in search of them, always in the same direction into the wood to the flowering lime trees and back to the hives. His ears were filled with the incessant hum in various notes, now the busy hum of the working bee flying quickly off, then the blaring of the lazy drone, and the excited buzz of the bees on guard protecting their property from the enemy and preparing to sting. On the farther side of the fence the old bee-keeper was shaving a hoop for a tub, and he did not see Levin. Levin stood still in the midst of the beehives and did not call him. He was glad of a chance to be alone to recover from the influence of ordinary actual life, which had already depressed his happy mood. He thought that he had already had time to lose his temper with Ivan, to show coolness to his brother, and to talk flippantly with Katavasov. "Can it have been only a momentary mood, and will it pass and leave no trace?" he thought. But the same instant, going back to his mood, he felt with delight that something new and important had happened to him. Real life had only for a time overcast the spiritual peace he had found, but it was still untouched within him. Just as the bees, whirling round him, now menacing him and distracting his attention, prevented him from enjoying complete physical peace, forced him to restrain his movements to avoid them, so had the petty cares that had swarmed about him from the moment he got into the trap restricted his spiritual freedom; but that lasted only so long as he was among them. Just as his bodily strength was still unaffected, in spite of the bees, so too was the spiritual strength that he had just become aware of. Chapter 15 "Do you know, Kostya, with whom Sergey Ivanovitch traveled on his way here?" said Dolly, doling out cucumbers and honey to the children; "with Vronsky! He's going to Servia." "And not alone; he's taking a squadron out with him at his own expense," said Katavasov. "That's the right thing for him," said Levin. "Are volunteers still going out then?" he added, glancing at Sergey Ivanovitch. Sergey Ivanovitch did not answer. He was carefully with a blunt knife getting a live bee covered with sticky honey out of a cup full of white honeycomb. "I should think so! You should have seen what was going on at the station yesterday!" said Katavasov, biting with a juicy sound into a cucumber. "Well, what is one to make of it? For mercy's sake, do explain to me, Sergey Ivanovitch, where are all those volunteers going, whom are they fighting with?" asked the old prince, unmistakably taking up a conversation that had sprung up in Levin's absence. "With the Turks," Sergey Ivanovitch answered, smiling serenely, as he extricated the bee, dark with honey and helplessly kicking, and put it with the knife on a stout aspen leaf. "But who has declared war on the Turks?--Ivan Ivanovitch Ragozov and Countess Lidia Ivanovna, assisted by Madame Stahl?" "No one has declared war, but people sympathize with their neighbors' sufferings and are eager to help them," said Sergey Ivanovitch. "But the prince is not speaking of help," said Levin, coming to the assistance of his father-in-law, "but of war. The prince says that private persons cannot take part in war without the permission of the government." "Kostya, mind, that's a bee! Really, they'll sting us!" said Dolly, waving away a wasp. "But that's not a bee, it's a wasp," said Levin. "Well now, well, what's your own theory?" Katavasov said to Levin with a smile, distinctly challenging him to a discussion. "Why have not private persons the right to do so?" "Oh, my theory's this: war is on one side such a beastly, cruel, and awful thing, that no one man, not to speak of a Christian, can individually take upon himself the responsibility of beginning wars; that can only be done by a government, which is called upon to do this, and is driven inevitably into war. On the other hand, both political science and common sense teach us that in matters of state, and especially in the matter of war, private citizens must forego their personal individual will." Sergey Ivanovitch and Katavasov had their replies ready, and both began speaking at the same time. "But the point is, my dear fellow, that there may be cases when the government does not carry out the will of the citizens and then the public asserts its will," said Katavasov. But evidently Sergey Ivanovitch did not approve of this answer. His brows contracted at Katavasov's words and he said something else. "You don't put the matter in its true light. There is no question here of a declaration of war, but simply the expression of a human Christian feeling. Our brothers, one with us in religion and in race, are being massacred. Even supposing they were not our brothers nor fellow-Christians, but simply children, women, old people, feeling is aroused and Russians go eagerly to help in stopping these atrocities. Fancy, if you were going along the street and saw drunken men beating a woman or a child--I imagine you would not stop to inquire whether war had been declared on the men, but would throw yourself on them, and protect the victim." "But I should not kill them," said Levin. "Yes, you would kill them." "I don't know. If I saw that, I might give way to my impulse of the moment, but I can't say beforehand. And such a momentary impulse there is not, and there cannot be, in the case of the oppression of the Slavonic peoples." "Possibly for you there is not; but for others there is," said Sergey Ivanovitch, frowning with displeasure. "There are traditions still extant among the people of Slavs of the true faith suffering under the yoke of the 'unclean sons of Hagar.' The people have heard of the sufferings of their brethren and have spoken." "Perhaps so," said Levin evasively; "but I don't see it. I'm one of the people myself, and I don't feel it." "Here am I too," said the old prince. "I've been staying abroad and reading the papers, and I must own, up to the time of the Bulgarian atrocities, I couldn't make out why it was all the Russians were all of a sudden so fond of their Slavonic brethren, while I didn't feel the slightest affection for them. I was very much upset, thought I was a monster, or that it was the influence of Carlsbad on me. But since I have been here, my mind's been set at rest. I see that there are people besides me who're only interested in Russia, and not in their Slavonic brethren. Here's Konstantin too." "Personal opinions mean nothing in such a case," said Sergey Ivanovitch; "it's not a matter of personal opinions when all Russia--the whole people--has expressed its will." "But excuse me, I don't see that. The people don't know anything about it, if you come to that," said the old prince. "Oh, papa!... how can you say that? And last Sunday in church?" said Dolly, listening to the conversation. "Please give me a cloth," she said to the old man, who was looking at the children with a smile. "Why, it's not possible that all..." "But what was it in church on Sunday? The priest had been told to read that. He read it. They didn't understand a word of it. Then they were told that there was to be a collection for a pious object in church; well, they pulled out their halfpence and gave them, but what for they couldn't say." "The people cannot help knowing; the sense of their own destinies is always in the people, and at such moments as the present that sense finds utterance," said Sergey Ivanovitch with conviction, glancing at the old bee-keeper. The handsome old man, with black grizzled beard and thick silvery hair, stood motionless, holding a cup of honey, looking down from the height of his tall figure with friendly serenity at the gentlefolk, obviously understanding nothing of their conversation and not caring to understand it. "That's so, no doubt," he said, with a significant shake of his head at Sergey Ivanovitch's words. "Here, then, ask him. He knows nothing about it and thinks nothing," said Levin. "Have you heard about the war, Mihalitch?" he said, turning to him. "What they read in the church? What do you think about it? Ought we to fight for the Christians?" "What should we think? Alexander Nikolaevitch our Emperor has thought for us; he thinks for us indeed in all things. It's clearer for him to see. Shall I bring a bit more bread? Give the little lad some more?" he said addressing Darya Alexandrovna and pointing to Grisha, who had finished his crust. "I don't need to ask," said Sergey Ivanovitch, "we have seen and are seeing hundreds and hundreds of people who give up everything to serve a just cause, come from every part of Russia, and directly and clearly express their thought and aim. They bring their halfpence or go themselves and say directly what for. What does it mean?" "It means, to my thinking," said Levin, who was beginning to get warm, "that among eighty millions of people there can always be found not hundreds, as now, but tens of thousands of people who have lost caste, ne'er-do-wells, who are always ready to go anywhere--to Pogatchev's bands, to Khiva, to Serbia..." "I tell you that it's not a case of hundreds or of ne'er-do-wells, but the best representatives of the people!" said Sergey Ivanovitch, with as much irritation as if he were defending the last penny of his fortune. "And what of the subscriptions? In this case it is a whole people directly expressing their will." "That word 'people' is so vague," said Levin. "Parish clerks, teachers, and one in a thousand of the peasants, maybe, know what it's all about. The rest of the eighty millions, like Mihalitch, far from expressing their will, haven't the faintest idea what there is for them to express their will about. What right have we to say that this is the people's will?" Chapter 16 Sergey Ivanovitch, being practiced in argument, did not reply, but at once turned the conversation to another aspect of the subject. "Oh, if you want to learn the spirit of the people by arithmetical computation, of course it's very difficult to arrive at it. And voting has not been introduced among us and cannot be introduced, for it does not express the will of the people; but there are other ways of reaching that. It is felt in the air, it is felt by the heart. I won't speak of those deep currents which are astir in the still ocean of the people, and which are evident to every unprejudiced man; let us look at society in the narrow sense. All the most diverse sections of the educated public, hostile before, are merged in one. Every division is at an end, all the public organs say the same thing over and over again, all feel the mighty torrent that has overtaken them and is carrying them in one direction." "Yes, all the newspapers do say the same thing," said the prince. "That's true. But so it is the same thing that all the frogs croak before a storm. One can hear nothing for them." "Frogs or no frogs, I'm not the editor of a paper and I don't want to defend them; but I am speaking of the unanimity in the intellectual world," said Sergey Ivanovitch, addressing his brother. Levin would have answered, but the old prince interrupted him. "Well, about that unanimity, that's another thing, one may say," said the prince. "There's my son-in-law, Stepan Arkadyevitch, you know him. He's got a place now on the committee of a commission and something or other, I don't remember. Only there's nothing to do in it--why, Dolly, it's no secret!--and a salary of eight thousand. You try asking him whether his post is of use, he'll prove to you that it's most necessary. And he's a truthful man too, but there's no refusing to believe in the utility of eight thousand roubles." "Yes, he asked me to give a message to Darya Alexandrovna about the post," said Sergey Ivanovitch reluctantly, feeling the prince's remark to be ill-timed. "So it is with the unanimity of the press. That's been explained to me: as soon as there's war their incomes are doubled. How can they help believing in the destinies of the people and the Slavonic races ... and all that?" "I don't care for many of the papers, but that's unjust," said Sergey Ivanovitch. "I would only make one condition," pursued the old prince. "Alphonse Karr said a capital thing before the war with Prussia: 'You consider war to be inevitable? Very good. Let everyone who advocates war be enrolled in a special regiment of advance-guards, for the front of every storm, of every attack, to lead them all!'" "A nice lot the editors would make!" said Katavasov, with a loud roar, as he pictured the editors he knew in this picked legion. "But they'd run," said Dolly, "they'd only be in the way." "Oh, if they ran away, then we'd have grape-shot or Cossacks with whips behind them," said the prince. "But that's a joke, and a poor one too, if you'll excuse my saying so, prince," said Sergey Ivanovitch. "I don't see that it was a joke, that..." Levin was beginning, but Sergey Ivanovitch interrupted him. "Every member of society is called upon to do his own special work," said he. "And men of thought are doing their work when they express public opinion. And the single-hearted and full expression of public opinion is the service of the press and a phenomenon to rejoice us at the same time. Twenty years ago we should have been silent, but now we have heard the voice of the Russian people, which is ready to rise as one man and ready to sacrifice itself for its oppressed brethren; that is a great step and a proof of strength." "But it's not only making a sacrifice, but killing Turks," said Levin timidly. "The people make sacrifices and are ready to make sacrifices for their soul, but not for murder," he added, instinctively connecting the conversation with the ideas that had been absorbing his mind. "For their soul? That's a most puzzling expression for a natural science man, do you understand? What sort of thing is the soul?" said Katavasov, smiling. "Oh, you know!" "No, by God, I haven't the faintest idea!" said Katavasov with a loud roar of laughter. "'I bring not peace, but a sword,' says Christ," Sergey Ivanovitch rejoined for his part, quoting as simply as though it were the easiest thing to understand the very passage that had always puzzled Levin most. "That's so, no doubt," the old man repeated again. He was standing near them and responded to a chance glance turned in his direction. "Ah, my dear fellow, you're defeated, utterly defeated!" cried Katavasov good-humoredly. Levin reddened with vexation, not at being defeated, but at having failed to control himself and being drawn into argument. "No, I can't argue with them," he thought; "they wear impenetrable armor, while I'm naked." He saw that it was impossible to convince his brother and Katavasov, and he saw even less possibility of himself agreeing with them. What they advocated was the very pride of intellect that had almost been his ruin. He could not admit that some dozens of men, among them his brother, had the right, on the ground of what they were told by some hundreds of glib volunteers swarming to the capital, to say that they and the newspapers were expressing the will and feeling of the people, and a feeling which was expressed in vengeance and murder. He could not admit this, because he neither saw the expression of such feelings in the people among whom he was living, nor found them in himself (and he could not but consider himself one of the persons making up the Russian people), and most of all because he, like the people, did not know and could not know what is for the general good, though he knew beyond a doubt that this general good could be attained only by the strict observance of that law of right and wrong which has been revealed to every man, and therefore he could not wish for war or advocate war for any general objects whatever. He said as Mihalitch did and the people, who had expressed their feeling in the traditional invitations of the Varyagi: "Be princes and rule over us. Gladly we promise complete submission. All the labor, all humiliations, all sacrifices we take upon ourselves; but we will not judge and decide." And now, according to Sergey Ivanovitch's account, the people had foregone this privilege they had bought at such a costly price. He wanted to say too that if public opinion were an infallible guide, then why were not revolutions and the commune as lawful as the movement in favor of the Slavonic peoples? But these were merely thoughts that could settle nothing. One thing could be seen beyond doubt--that was that at the actual moment the discussion was irritating Sergey Ivanovitch, and so it was wrong to continue it. And Levin ceased speaking and then called the attention of his guests to the fact that the storm clouds were gathering, and that they had better be going home before it rained. Chapter 17 The old prince and Sergey Ivanovitch got into the trap and drove off; the rest of the party hastened homewards on foot. But the storm-clouds, turning white and then black, moved down so quickly that they had to quicken their pace to get home before the rain. The foremost clouds, lowering and black as soot-laden smoke, rushed with extraordinary swiftness over the sky. They were still two hundred paces from home and a gust of wind had already blown up, and every second the downpour might be looked for. The children ran ahead with frightened and gleeful shrieks. Darya Alexandrovna, struggling painfully with her skirts that clung round her legs, was not walking, but running, her eyes fixed on the children. The men of the party, holding their hats on, strode with long steps beside her. They were just at the steps when a big drop fell splashing on the edge of the iron guttering. The children and their elders after them ran into the shelter of the house, talking merrily. "Katerina Alexandrovna?" Levin asked of Agafea Mihalovna, who met them with kerchiefs and rugs in the hall. "We thought she was with you," she said. "And Mitya?" "In the copse, he must be, and the nurse with him." Levin snatched up the rugs and ran towards the copse. In that brief interval of time the storm clouds had moved on, covering the sun so completely that it was dark as an eclipse. Stubbornly, as though insisting on its rights, the wind stopped Levin, and tearing the leaves and flowers off the lime trees and stripping the white birch branches into strange unseemly nakedness, it twisted everything on one side--acacias, flowers, burdocks, long grass, and tall tree-tops. The peasant girls working in the garden ran shrieking into shelter in the servants' quarters. The streaming rain had already flung its white veil over all the distant forest and half the fields close by, and was rapidly swooping down upon the copse. The wet of the rain spurting up in tiny drops could be smelt in the air. Holding his head bent down before him, and struggling with the wind that strove to tear the wraps away from him, Levin was moving up to the copse and had just caught sight of something white behind the oak tree, when there was a sudden flash, the whole earth seemed on fire, and the vault of heaven seemed crashing overhead. Opening his blinded eyes, Levin gazed through the thick veil of rain that separated him now from the copse, and to his horror the first thing he saw was the green crest of the familiar oak-tree in the middle of the copse uncannily changing its position. "Can it have been struck?" Levin hardly had time to think when, moving more and more rapidly, the oak tree vanished behind the other trees, and he heard the crash of the great tree falling upon the others. The flash of lightning, the crash of thunder, and the instantaneous chill that ran through him were all merged for Levin in one sense of terror. "My God! my God! not on them!" he said. And though he thought at once how senseless was his prayer that they should not have been killed by the oak which had fallen now, he repeated it, knowing that he could do nothing better than utter this senseless prayer. Running up to the place where they usually went, he did not find them there. They were at the other end of the copse under an old lime-tree; they were calling him. Two figures in dark dresses (they had been light summer dresses when they started out) were standing bending over something. It was Kitty with the nurse. The rain was already ceasing, and it was beginning to get light when Levin reached them. The nurse was not wet on the lower part of her dress, but Kitty was drenched through, and her soaked clothes clung to her. Though the rain was over, they still stood in the same position in which they had been standing when the storm broke. Both stood bending over a perambulator with a green umbrella. "Alive? Unhurt? Thank God!" he said, splashing with his soaked boots through the standing water and running up to them. Kitty's rosy wet face was turned towards him, and she smiled timidly under her shapeless sopped hat. "Aren't you ashamed of yourself? I can't think how you can be so reckless!" he said angrily to his wife. "It wasn't my fault, really. We were just meaning to go, when he made such a to-do that we had to change him. We were just..." Kitty began defending herself. Mitya was unharmed, dry, and still fast asleep. "Well, thank God! I don't know what I'm saying!" They gathered up the baby's wet belongings; the nurse picked up the baby and carried it. Levin walked beside his wife, and, penitent for having been angry, he squeezed her hand when the nurse was not looking. Chapter 18 During the whole of that day, in the extremely different conversations in which he took part, only as it were with the top layer of his mind, in spite of the disappointment of not finding the change he expected in himself, Levin had been all the while joyfully conscious of the fulness of his heart. After the rain it was too wet to go for a walk; besides, the storm clouds still hung about the horizon, and gathered here and there, black and thundery, on the rim of the sky. The whole party spent the rest of the day in the house. No more discussions sprang up; on the contrary, after dinner every one was in the most amiable frame of mind. At first Katavasov amused the ladies by his original jokes, which always pleased people on their first acquaintance with him. Then Sergey Ivanovitch induced him to tell them about the very interesting observations he had made on the habits and characteristics of common houseflies, and their life. Sergey Ivanovitch, too, was in good spirits, and at tea his brother drew him on to explain his views of the future of the Eastern question, and he spoke so simply and so well, that everyone listened eagerly. Kitty was the only one who did not hear it all--she was summoned to give Mitya his bath. A few minutes after Kitty had left the room she sent for Levin to come to the nursery. Leaving his tea, and regretfully interrupting the interesting conversation, and at the same time uneasily wondering why he had been sent for, as this only happened on important occasions, Levin went to the nursery. Although he had been much interested by Sergey Ivanovitch's views of the new epoch in history that would be created by the emancipation of forty millions of men of Slavonic race acting with Russia, a conception quite new to him, and although he was disturbed by uneasy wonder at being sent for by Kitty, as soon as he came out of the drawing room and was alone, his mind reverted at once to the thoughts of the morning. And all the theories of the significance of the Slav element in the history of the world seemed to him so trivial compared with what was passing in his own soul, that he instantly forgot it all and dropped back into the same frame of mind that he had been in that morning. He did not, as he had done at other times, recall the whole train of thought--that he did not need. He fell back at once into the feeling which had guided him, which was connected with those thoughts, and he found that feeling in his soul even stronger and more definite than before. He did not, as he had had to do with previous attempts to find comforting arguments, need to revive a whole chain of thought to find the feeling. Now, on the contrary, the feeling of joy and peace was keener than ever, and thought could not keep pace with feeling. He walked across the terrace and looked at two stars that had come out in the darkening sky, and suddenly he remembered. "Yes, looking at the sky, I thought that the dome that I see is not a deception, and then I thought something, I shirked facing something," he mused. "But whatever it was, there can be no disproving it! I have but to think, and all will come clear!" Just as he was going into the nursery he remembered what it was he had shirked facing. It was that if the chief proof of the Divinity was His revelation of what is right, how is it this revelation is confined to the Christian church alone? What relation to this revelation have the beliefs of the Buddhists, Mohammedans, who preached and did good too? It seemed to him that he had an answer to this question; but he had not time to formulate it to himself before he went into the nursery. Kitty was standing with her sleeves tucked up over the baby in the bath. Hearing her husband's footstep, she turned towards him, summoning him to her with her smile. With one hand she was supporting the fat baby that lay floating and sprawling on its back, while with the other she squeezed the sponge over him. "Come, look, look!" she said, when her husband came up to her. "Agafea Mihalovna's right. He knows us!" Mitya had on that day given unmistakable, incontestable signs of recognizing all his friends. As soon as Levin approached the bath, the experiment was tried, and it was completely successful. The cook, sent for with this object, bent over the baby. He frowned and shook his head disapprovingly. Kitty bent down to him, he gave her a beaming smile, propped his little hands on the sponge and chirruped, making such a queer little contented sound with his lips, that Kitty and the nurse were not alone in their admiration. Levin, too, was surprised and delighted. The baby was taken out of the bath, drenched with water, wrapped in towels, dried, and after a piercing scream, handed to his mother. "Well, I am glad you are beginning to love him," said Kitty to her husband, when she had settled herself comfortably in her usual place, with the baby at her breast. "I am so glad! It had begun to distress me. You said you had no feeling for him." "No; did I say that? I only said I was disappointed." "What! disappointed in him?" "Not disappointed in him, but in my own feeling; I had expected more. I had expected a rush of new delightful emotion to come as a surprise. And then instead of that--disgust, pity..." She listened attentively, looking at him over the baby, while she put back on her slender fingers the rings she had taken off while giving Mitya his bath. "And most of all, at there being far more apprehension and pity than pleasure. Today, after that fright during the storm, I understand how I love him." Kitty's smile was radiant. "Were you very much frightened?" she said. "So was I too, but I feel it more now that it's over. I'm going to look at the oak. How nice Katavasov is! And what a happy day we've had altogether. And you're so nice with Sergey Ivanovitch, when you care to be.... Well, go back to them. It's always so hot and steamy here after the bath." Chapter 19 Going out of the nursery and being again alone, Levin went back at once to the thought, in which there was something not clear. Instead of going into the drawing room, where he heard voices, he stopped on the terrace, and leaning his elbows on the parapet, he gazed up at the sky. It was quite dark now, and in the south, where he was looking, there were no clouds. The storm had drifted on to the opposite side of the sky, and there were flashes of lightning and distant thunder from that quarter. Levin listened to the monotonous drip from the lime trees in the garden, and looked at the triangle of stars he knew so well, and the Milky Way with its branches that ran through its midst. At each flash of lightning the Milky Way, and even the bright stars, vanished, but as soon as the lightning died away, they reappeared in their places as though some hand had flung them back with careful aim. "Well, what is it perplexes me?" Levin said to himself, feeling beforehand that the solution of his difficulties was ready in his soul, though he did not know it yet. "Yes, the one unmistakable, incontestable manifestation of the Divinity is the law of right and wrong, which has come into the world by revelation, and which I feel in myself, and in the recognition of which--I don't make myself, but whether I will or not--I am made one with other men in one body of believers, which is called the church. Well, but the Jews, the Mohammedans, the Confucians, the Buddhists--what of them?" he put to himself the question he had feared to face. "Can these hundreds of millions of men be deprived of that highest blessing without which life has no meaning?" He pondered a moment, but immediately corrected himself. "But what am I questioning?" he said to himself. "I am questioning the relation to Divinity of all the different religions of all mankind. I am questioning the universal manifestation of God to all the world with all those misty blurs. What am I about? To me individually, to my heart has been revealed a knowledge beyond all doubt, and unattainable by reason, and here I am obstinately trying to express that knowledge in reason and words. "Don't I know that the stars don't move?" he asked himself, gazing at the bright planet which had shifted its position up to the topmost twig of the birch-tree. "But looking at the movements of the stars, I can't picture to myself the rotation of the earth, and I'm right in saying that the stars move. "And could the astronomers have understood and calculated anything, if they had taken into account all the complicated and varied motions of the earth? All the marvelous conclusions they have reached about the distances, weights, movements, and deflections of the heavenly bodies are only founded on the apparent motions of the heavenly bodies about a stationary earth, on that very motion I see before me now, which has been so for millions of men during long ages, and was and will be always alike, and can always be trusted. And just as the conclusions of the astronomers would have been vain and uncertain if not founded on observations of the seen heavens, in relation to a single meridian and a single horizon, so would my conclusions be vain and uncertain if not founded on that conception of right, which has been and will be always alike for all men, which has been revealed to me as a Christian, and which can always be trusted in my soul. The question of other religions and their relations to Divinity I have no right to decide, and no possibility of deciding." "Oh, you haven't gone in then?" he heard Kitty's voice all at once, as she came by the same way to the drawing-room. "What is it? you're not worried about anything?" she said, looking intently at his face in the starlight. But she could not have seen his face if a flash of lightning had not hidden the stars and revealed it. In that flash she saw his face distinctly, and seeing him calm and happy, she smiled at him. "She understands," he thought; "she knows what I'm thinking about. Shall I tell her or not? Yes, I'll tell her." But at the moment he was about to speak, she began speaking. "Kostya! do something for me," she said; "go into the corner room and see if they've made it all right for Sergey Ivanovitch. I can't very well. See if they've put the new wash stand in it." "Very well, I'll go directly," said Levin, standing up and kissing her. "No, I'd better not speak of it," he thought, when she had gone in before him. "It is a secret for me alone, of vital importance for me, and not to be put into words. "This new feeling has not changed me, has not made me happy and enlightened all of a sudden, as I had dreamed, just like the feeling for my child. There was no surprise in this either. Faith--or not faith--I don't know what it is--but this feeling has come just as imperceptibly through suffering, and has taken firm root in my soul. "I shall go on in the same way, losing my temper with Ivan the coachman, falling into angry discussions, expressing my opinions tactlessly; there will be still the same wall between the holy of holies of my soul and other people, even my wife; I shall still go on scolding her for my own terror, and being remorseful for it; I shall still be as unable to understand with my reason why I pray, and I shall still go on praying; but my life now, my whole life apart from anything that can happen to me, every minute of it is no more meaningless, as it was before, but it has the positive meaning of goodness, which I have the power to put into it." *** END OF THIS PROJECT GUTENBERG EBOOK ANNA KARENINA *** A Word from Project Gutenberg We will update this book if we find any errors. This book can be found under: http://www.gutenberg.org/ebooks/1399 Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg(tm) electronic works to protect the Project Gutenberg(tm) concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away - you may do practically _anything_ with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. The Full Project Gutenberg License _Please read this before you distribute or use this work._ To protect the Project Gutenberg(tm) mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg(tm) License available with this file or online at http://www.gutenberg.org/license. Section 1. General Terms of Use & Redistributing Project Gutenberg(tm) electronic works *1.A.* By reading or using any part of this Project Gutenberg(tm) electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg(tm) electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg(tm) electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. *1.B.* "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg(tm) electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg(tm) electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg(tm) electronic works. See paragraph 1.E below. *1.C.* The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg(tm) electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg(tm) mission of promoting free access to electronic works by freely sharing Project Gutenberg(tm) works in compliance with the terms of this agreement for keeping the Project Gutenberg(tm) name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg(tm) License when you share it without charge with others. *1.D.* The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg(tm) work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. *1.E.* Unless you have removed all references to Project Gutenberg: *1.E.1.* The following sentence, with active links to, or other immediate access to, the full Project Gutenberg(tm) License must appear prominently whenever any copy of a Project Gutenberg(tm) work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at http://www.gutenberg.org *1.E.2.* If an individual Project Gutenberg(tm) electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg(tm) trademark as set forth in paragraphs 1.E.8 or 1.E.9. *1.E.3.* If an individual Project Gutenberg(tm) electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg(tm) License for all works posted with the permission of the copyright holder found at the beginning of this work. *1.E.4.* Do not unlink or detach or remove the full Project Gutenberg(tm) License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg(tm). *1.E.5.* Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg(tm) License. *1.E.6.* You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg(tm) work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg(tm) web site (http://www.gutenberg.org), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg(tm) License as specified in paragraph 1.E.1. *1.E.7.* Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg(tm) works unless you comply with paragraph 1.E.8 or 1.E.9. *1.E.8.* You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg(tm) electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg(tm) works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg(tm) trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg(tm) License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg(tm) works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg(tm) works. *1.E.9.* If you wish to charge a fee or distribute a Project Gutenberg(tm) electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg(tm) trademark. Contact the Foundation as set forth in Section 3. below. *1.F.* *1.F.1.* Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg(tm) collection. Despite these efforts, Project Gutenberg(tm) electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. *1.F.2.* LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg(tm) trademark, and any other party distributing a Project Gutenberg(tm) electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. *1.F.3.* LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. *1.F.4.* Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS,' WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. *1.F.5.* Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. *1.F.6.* INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg(tm) electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg(tm) electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg(tm) work, (b) alteration, modification, or additions or deletions to any Project Gutenberg(tm) work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg(tm) Project Gutenberg(tm) is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need, is critical to reaching Project Gutenberg(tm)'s goals and ensuring that the Project Gutenberg(tm) collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg(tm) and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org . Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://www.gutenberg.org/fundraising/pglaf . Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://www.pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg(tm) depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://www.gutenberg.org/fundraising/donate While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including checks, online payments and credit card donations. To donate, please visit: http://www.gutenberg.org/fundraising/donate Section 5. General Information About Project Gutenberg(tm) electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg(tm) concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg(tm) eBooks with only a loose network of volunteer support. Project Gutenberg(tm) eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Each eBook is in a subdirectory of the same number as the eBook's eBook number, often in several formats including plain vanilla ASCII, compressed (zipped), HTML and others. Corrected _editions_ of our eBooks replace the old file and take over the old filename and etext number. The replaced older file is renamed. _Versions_ based on separate sources are treated as new eBooks receiving new filenames and etext numbers. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.org This Web site includes information about Project Gutenberg(tm), including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Next Chars pytorch/project-tv-script-generation/data/Seinfeld_Scripts.txt ================================================ jerry: do you know what this is all about? do you know, why were here? to be out, this is out...and out is one of the single most enjoyable experiences of life. people...did you ever hear people talking about we should go out? this is what theyre talking about...this whole thing, were all out now, no one is home. not one person here is home, were all out! there are people trying to find us, they dont know where we are. (on an imaginary phone) did you ring?, i cant find him. where did he go? he didnt tell me where he was going. he must have gone out. you wanna go out you get ready, you pick out the clothes, right? you take the shower, you get all ready, get the cash, get your friends, the car, the spot, the reservation...then youre standing around, what do you do? you go we gotta be getting back. once youre out, you wanna get back! you wanna go to sleep, you wanna get up, you wanna go out again tomorrow, right? where ever you are in life, its my feeling, youve gotta go. jerry: (pointing at georges shirt) see, to me, that button is in the worst possible spot. the second button literally makes or breaks the shirt, look at it. its too high! its in no-mans-land. you look like you live with your mother. george: are you through? jerry: you do of course try on, when you buy? george: yes, it was purple, i liked it, i dont actually recall considering the buttons. jerry: oh, you dont recall? george: (on an imaginary microphone) uh, no, not at this time. jerry: well, senator, id just like to know, what you knew and when you knew it. claire: mr. seinfeld. mr. costanza. george: are, are you sure this is decaf? wheres the orange indicator? claire: its missing, i have to do it in my head decaf left, regular right, decaf left, regular right...its very challenging work. jerry: can you relax, its a cup of coffee. claire is a professional waitress. claire: trust me george. no one has any interest in seeing you on caffeine. george: how come youre not doing the second show tomorrow? jerry: well, theres this uh, woman might be coming in. george: wait a second, wait a second, what coming in, what woman is coming in? jerry: i told you about laura, the girl i met in michigan? george: no, you didnt! jerry: i thought i told you about it, yes, she teaches political science? i met her the night i did the show in lansing... george: ha. jerry: (looks in the creamer) theres no milk in here, what... george: wait wait wait, what is she... (takes the milk can from jerry and puts it on the table) what is she like? jerry: oh, shes really great. i mean, shes got like a real warmth about her and shes really bright and really pretty and uh... the conversation though, i mean, it was... talking with her is like talking with you, but, you know, obviously much better. george: (smiling) so, you know, what, what happened? jerry: oh, nothing happened, you know, but is was great. george: oh, nothing happened, but it was... jerry: yeah. george: this is great! jerry: yeah. george: so, you know, she calls and says she wants to go out with you tomorrow night? god bless! devil you! jerry: yeah, well...not exactly. i mean, she said, you know, she called this morning and said she had to come in for a seminar and maybe well get together. george: (whistles disapprovingly) ho ho ho, had to? had to come in? jerry: yeah, but... george: had to come in and maybe well get together? had to and maybe? jerry: yeah! george: no...no...no, i hate to tell you this. youre not gonna see this woman. jerry: what, are you serious...why, why did she call? george: how do i know, maybe, you know, maybe she wanted to be polite. jerry: to be polite? you are insane! george: all right, all right, i didnt want to tell you this. you wanna know why she called you? jerry: yes! george: youre a back-up, youre a second-line, a just-in-case, a b-plan, a contingency! jerry: oh, i get it, this is about the button. george: claire, claire, youre a woman, right? claire: what gave it away, george? george: uhm...id like to ask you...ask you to analyze a hypothetical phone call, you know, from a female point of view. george: (to claire) now, a woman calls me, all right? claie: uh huh. george: she says she has to come to new york on business... jerry: oh you are beautiful! george: ...and, and maybe shell see me when she gets there, does this woman intend to spend time with me? claire: id have to say, uh, no. (george shows his note-block to jerry; it says very largely: no.) claire: to be polite. george: to be polite. i rest my case. jerry: good. did you have fun? you have no idea, what youre talking about, now, come on, come with me. (stands up) i gotta go get my stuff out of the dryer anyway. george: im not gonna watch you do laundry. jerry: oh, come on, be a come-with guy. george: come on, im tired. claire: (to jerry) dont worry, i gave him a little caffeine. hell perk up. george: (panicking) right, i knew i felt something! george: jerry? i have to tell you something. this is the dullest moment ive ever experienced. jerry: well, look at this guy. look, hes got everything, hes got detergents, sprays, fabric softeners. this is not his first load. george: i need a break, jerry, you know. i gotta get out of the city. i feel so cramped... jerry: and you didnt even hear how she sounded. george: what?! jerry: laura. george: i cant believe- (falls on his knees) we already discussed this! jerry: yeah, but how could you be so sure? george: cause its signals, jerry, its signals! (snapping his fingers) dont you- all right. did she even ask you, what you were doing tomorrow night, if you were busy? jerry: no. george: she calls you today and she doesnt make a plan for tomorrow? what is that? its saturday night! jerry: yeah. george: what is that? its ridiculous! you dont even know what hotel shes staying at, you cant call her. thats a signal, jerry, thats a signal! (snaps his fingers) signal! jerry: maybe youre right. george: maybe im right? of course im right. jerry: this is insane. you know, i dont even know where shes staying! she, shes not gonna call me, this is unbelievable. george: i know, i know. listen, your stuff has to be done by now, why dont you just see if its dry? jerry: no no no, dont interrupt the cycle. the machine is working, it, it knows what its doing. just let it finish. george: youre gonna over-dry it. jerry: you, you cant over-dry. george: why not? jerry: same as you cant over-wet. you see, once something is wet, its wet. same thing with death. like once you die youre dead, right? lets say you drop dead and i shoot you. youre not gonna die again, youre already dead. you cant over-die, you cant over-dry. george: (to the other laundry patrons) any questions? jerry: how could she not tell me where she was staying? george: look at that. theyre done! jerry: laundry day is the only exciting day in the life of clothes. it is...you know, think about it. the washing machine is the nightclub of clothes. you know, its dark, theres bubbles happening, theyre all kinda dancing around in there- shirt grabs the underwear, cmon babe, lets go. you come by, you open up the lid and theyll- (stiffens up, as the clothes) socks are the most amazing article of clothing. they hate their lives, theyre in the shoes with stinky feet, the boring drawers. the dryer is their only chance to escape and they all know it. they knew a escape from the dryer. they plan it in the hamper the night before, tomorrow, the dryer, im goin. you wait here! the dryer door swings open and the sock is waiting up against the side wall. he hopes you dont see him and then he goes down the road. they get buttons sewn on their faces, join a puppet show. so theyre showing me on television the detergent for getting out bloodstains. is this a violent image to anybody? bloodstains? i mean, come on, you got a t-shirt with bloodstains all over it, maybe laundry isnt your biggest problem right now. you gotta get the harpoon out your chest first. jerry: (answering, quickly) if you know what happened in the met game, dont say anything, i taped it, hello. yeah, no, im sorry, you have the wrong number. yeah, no jerry: (to the door) yeah? kessler: are you up? jerry: (to kessler) yeah. (to the phone) yeah, people do move. have you ever seen the big trucks out on the street? yeah, no problem. kessler: boy, the mets blew it tonight, huh? jerry: (upset) ohhhh, what are you doing? kessler, its a tape! i taped the game, its one oclock in the morning! i avoided human contact all night to watch this. kessler: hey, im sorry, i- you know, i, i thought you knew. (takes two loaves of bread out of his pockets, and holds them out to jerry.) you got any meat? jerry: meat? i dont, i dont know, go... hunt! (kessler opens the refrigerator and sticks his head in.) well what happened in the game anyway? kessler: (from the refrigerator) what happened? well, they stunk, thats what happened! kessler: you know, i almost wound up going to that game. jerry: (cynical) yeah you almost went to the game. you havent been out of the building in ten years! kessler: yeah. (jerry sits down on the couch. kessler walks over with his sandwich and looks at jerry and uses expressions to ask jerry to move the newspapers on the other side of the couch so he could site down. kessler sits down next to him and starts turning over the pages of a magazine. suddenly he spots an article he likes and tears it out. jerry gives him a look as if to say, do you mind?) are you done with this? jerry: no. kessler: when youre done, let me know. jerry: yeah, yeah...you can have it tomorrow. kessler: i thought i wasnt allowed to be in here this weekend. jerry: no, its okay now, that, that girl is not coming. uh, i misread the whole thing. kessler: you want me to talk to her? jerry: i dont think so. kessler: oh, i can be very persuasive. do you know that i was almost... a lawyer. jerry: that close, huh? kessler: you better believe it. jerry: hello...oh, hi, laura. kessler: oh, give me it...let me talk to her. jerry: (to the phone) no believe me, im always up at this hour. how are you?... great... sure... what time does the plane get in?... i got my friend george to take me... kessler: (to the tv) slide! wow! jerry: no, its, its just my neighbor... um... yeah, i got it. (jerry takes a pencil and a cereal box to write on.) ten-fifteen... no, dont be silly, go ahead and ask... yeah, sure... okay, great, no no, its no trouble at all... ill see you tomorrow... great, bye. (he hangs up the phone; to kessler) i dont believe it. that was her. she wants to stay here! jerry: if my father was moving this he had to have a cigarette in his mouth the whole way. (as his father) 'have you got your end?...your ends got to come down first, easy now, drop it down...drop it down, your ends got to come down.' george: you know, i cant believe youre bringing in an extra bed for woman that wants to sleep with you. why dont you bring in an extra guy too? jerry: look, its a very awkward situation. i dont wanna be presumptuous. george: all right, all right, one more time, one more time! what was the exact phrasing of the request? jerry: all right, she said she couldnt find a decent hotel room... george: a decent hotel-room... jerry: yeah, a decent hotel-room, would it be terribly inconvenient if she stayed at my place. george: you cant be serious. this is new york city. there must be eleven million decent hotel rooms! what do you need? a flag? (waving his handkerchief) this is the signal, jerry, this is the signal! jerry: (cynical) this is the signal? thank you, mr. signal. where were you yesterday? george: i think i was affected by the caffeine. george: ho, ho, ho, good dog, good dog... kessler: hey, he really likes you, george. george: well, thats flattering. kessler: oh, hes getting a drink of water. (pointing to the mattress) is this for that girl? jerry: yeah. kessler: why even give her an option? jerry: this is a person i like, its not how to score on spring break. george: right, can we go? cause im double-parked, im gonna get a ticket. jerry: yeah, okay. oh, wait a second. oh, i forgot to clean the bathroom. george: so what? thats good. jerry: now, how could that be good? george: because filth is good. what do you think, rock stars have sponges and ammonia lying around the bathroom? they, have a woman coming over, ive gotta tidy up? yeah right, in these matters you never do what your instincts tell you. always, always do the opposite. jerry: this is how you operate? george: yeah, i wish. jerry: let me just wipe the sink. kessler: why even give her an option for? kessler: (to george, pointing at the mattress) its unbelievable. george: yeah. kessler: hows the real estate-business? george: (feeling awkward) its uh, not bad, its coming along. why? did you need something. kramer: do you handle any of that commercial...real estate? george: well, i might be getting into that. kessler: (slaps george on the arm) you keep me posted! george: im aware of you. (to jerry) all right, lets go (opens the bathroom door) lets go! jerry: the dating world is not a fun world...its a pressure world, its a world of tension, its a world of pain...and you know, if a woman comes over to my house, i gotta get that bathroom ready, cause she needs things. women need equipment. i dont know what they need. i know i dont have it, i know that- you know what they need, women seem to need a lot of cotton-balls. this is the one im- always has been one of the amazing things to me...i have no cotton-balls, were all human beings, what is the story? ive never had one...i never bought one, i never needed one, ive never been in a situation, when i thought to myself i could use a cotton-ball right now. i can certainly get out of this mess. women need them and they dont need one or two, they need thousands of them, they need bags, theyre like peat moss bags, have you ever seen these giant bags? theyre huge and two days later, theyre out, theyre gone, the, the bag is empty, where are the cotton-balls, ladies? what are you doin with them? the only time i ever see em is in the bottom of your little waste basket, theres two or three, that look like theyve been through some horrible experience... tortured, interrogated, i dont know what happened to them. i once went out with a girl who left a little zip-lock-baggy of cotton-balls over at my house. i dont know what to do with them, i took them out, i put them on my kitchen floor like little tumbleweeds. i thought maybe the cockroaches would see it, figure this is a dead town. lets move on. the dating world is a world of pressure. lets face it a date is a job interview that lasts all night. the only difference between a date and a job interview is not many job interviews is there a chance youll end up naked at the end of it. you know? well, bill, the boss thinks youre the man for the position, why dont you strip down and meet some of the people youll be working with? jerry: wouldnt it be great if you could ask a woman what shes thinking? george: what a world that would be, if you just could ask a woman what shes thinking. jerry: you know, instead, im like a detective. i gotta pick up clues, the whole thing is a murder investigation. george: listen, listen, dont get worked up, cause youre gonna know the whole story the minute she steps off the plane. jerry: really? how? george: cause its all in the greeting. jerry: uh-huh. george: all right, if she puts the bags down before she greets you, thats a good sign. jerry: right. george: you know, anything in the, in the lip area is good. jerry: lip area. george: you know a hug definitely good. jerry: hug is definitely good. george: sure. jerry: although what if its one of those hugs where the shoulders are touching, the hips are eight feet apart? george: thats so brutal, i hate that. jerry: you know how they do that? george: thats why, you know, a shake is bad. jerry: shake is bad, but what if its the two-hander? the hand on the bottom, the hand on the top, the warm look in the eyes? george: hand sandwich. jerry: right. george: i see, well, thats open to interpretation. because so much depends on the layering and the quality of the wetness in the eyes. laura: guess who? jerry: hey, hey. laura & jerry: hey! jerry: its good to see you. laura: hi. jerry: this is my friend george. laura: hi, how nice to meet you. george: hi, how are you? jerry: this is laura. george: laura, sure. jerry: (to laura) i cant believe youre here. george & jerry: ooh yeah, the bags, sure. laura: oh, thank you. jerry: (aside, to george) now that was an interesting greeting, did you notice that, george? george: yes, the surprise blindfold greeting. that wasnt in the manual, i dont know. jerry: so uh, what do you think? laura: wow! this place isnt so bad. jerry: yeah, it kind a motivates me to work on the road. so uh, make yourself at home. (laura sits down on the couch, takes off her shoes and opens some buttons of her shirt.) so uh, can i get you anything? uh, bread, water...salad-dressing? laura: (laughs) actually, um, do you have any wine? jerry: uh, yeah, i think i do. laura: (referring to a lamp) oh, do you mind if i turn this down? jerry: uh, no, yeah, go right ahead. laura: uh, jerry, uh, i was wandering, would it be possible and if its not, fine for me to stay here tomorrow night too? jerry: uh, yeah, yeah, sure, why dont you stay? yeah, uh…what is your, what is your schedule for tomorrow? are you, are you doing anything? laura: no, id love to do something. uh, i have my seminar in the morning, then after that im right open. jerry: really? what would you like to do? laura: well... now i know this sounds touristy, but id just love to go on one of those five-hour boat rides around manhattan. jerry: (unenthusiastic) yeah, we could do that...why not, why not. (pouring the wine) im just, im really glad youre here. jerry: (answering) yeah, hello...yes...yes, she is, hold on. (to laura) um, its for you. laura: (to the phone) hello?... hi!... no no it was great, right on time... no, i, im gonna stay here tomorrow...yes, yes its fine... no, were going on a boat ride... dont be silly... im not gonna have this conversation... look, ill call you tomorrow... okay, bye. (she hangs up the phone.) never get engaged. jerry: (not excited) youre engaged? laura: you, you really have no idea what its like until you actually do it. and im on this emotional roller coaster. jerry: youre engaged? laura: you know, i cant believe it myself sometimes. you have to start thinking in terms of we. ugh, its a very stressful situation. jerry: (matter-of-factly) youre engaged. laura: yeah, yeah, hes a great guy... jerry: yeah. laura: you would really like him, you know, i cant wait to get on that boat. jerry: me too! jerry: i swear, i have absolutely no idea what women are thinking. i dont get it, okay? i, i, i admit, i, im not getting the signals. i am not getting it! women, theyre so subtle, their little...everything they do is subtle. men are not subtle, we are obvious. women know what men want, men know what men want, what do we want? we want women, thats it! its the only thing we know for sure, it really is. we want women. how do we get them? oh, we dont know bout that, we dont know. the next step after that we have no idea. this is why you see men honking car-horns, yelling from construction sites. these are the best ideas weve had so far. the car-horn honk. have you seen men doing this? what is this? the man is in the car, the woman walks by the front of the car, he honks. hey! this man is out of ideas. how does it...? i dont think she likes me. the amazing thing is, that we still get women, dont we? men, i mean, men are with women. you see men with women. how are men getting women, many people wonder. let me tell you a little bit about our organization. wherever women are, we have a man working on the situation right now. now, he may not be our best man, okay, we have a lot of areas to cover, but someone from our staff is on the scene. thats why, i think, men get frustrated, when we see women reading articles, like where to meet men? were here, we are everywhere. were honking our horns to serve you better. jerry: so, im on line at the supermarket. two women in front of me. one of them, her total was eight dollars, the other three dollars. they both of course choose to pay by the use of the... audience: cheque. jerry: cheque. now, the fact is, if its a woman in front of you thats writing the cheque, you will not be waiting long. i have noticed that women are very fast with cheques, you know, cause they write out so many cheques. the keys, they can never find in their purse, they dont know where that is, but the cheque book they got that. they never fumble for the cheque book. the cheque book comes out of a holster (jerry draws imaginary book from a holster.) who do i make it out to? theres my id. theres something about a cheque that, to a man, is not masculine. i dont know exactly what it is. i think to a man, a cheque is like a note from your mother that says, i dont have any money, but if youll contact these people, im sure theyll stick up for me... if you just trust me this one time- i dont have any money but i have these. i wrote on these. is this of any value at all? jerry: whats that one? elaine: coccoon ii the return. i guess they didnt like it up there. jerry: maybe they came back for chinese food. yknow maureen stapleton, if she gets a craving, shes probably screamin at those aliens, i gotta have a lo mein! elaine: okay, whatre we doing here? i have seen everything. jerry: oh yeah? i dont believe youve seen... this. elaine: oh, lovely. jerry: yeah. elaine: what do you think their parents think? jerry: so, uh, whats your son doing now, dr. stevens? oh, hes a public fornicator. yes, hes a fine boy... elaine: you know what? this would be a really funny gift for pamelas birthday. jerry: pamela? do i know her? elaine: yeah, you met her when we were going out. jerry: oh yeah, right... elaine: you have no idea who im talking about, do you? jerry: (quickly) no. elaine: blonde hair, remember? glasses? (pause) have you totally blocked out the entire time we were a couple? jerry: (a lightbulb goes on in his head) riverside drive. elaine: right! in fact... no, never mind... jerry: well, what is it? elaine: well, a bunch of people are getting together tomorrow night at some bar for her birthday, but... (jerry turns in disgust) you dont want to go to... that... no. jerry: wait a second, wait a second. we could work out a little deal here. elaine: what little deal? jerry: i will go to that, if you go with me to a little family wedding i have on saturday. elaine: a wedding? have you lost it, man? jerry: you know, my parents are coming in for this... elaine: theyre coming in? jerry: yeah, tomorrow. elaine: hey, did your father ever get that hair weave? jerry: no, no. still doing the big sweep across. elaine: why does he do that? jerry: doesnt think anyone can tell. so cmon, do we have a deal? elaine: a wedding? jerry: theres a lot of people to mock... elaine: all right, what the hell. jerry: great! woman: when youre dead, youre dead. thats it. youre not going anywhere... elaine: cmon lets go... jerry: was i supposed to bring something? elaine: you could have. jerry: i met her one time... elaine: it is not necessary. jerry: what did you say then? elaine: shh!!! pamela: hi elaine: hi, pamela, you remember jerry. pamela: (shakes jerry's hand) yes, we met. jerry: hi, happy birthday. pamela: thanks, ah, everybody, this is elaine and jerry. guests, jerry and elaine: hi jerry: i didnt bring anything. pamela: uh, i put you two right here. jerry: oh, okay (turns to rest of table) im sorry, i didnt know what to bring, nobody told me. vanessa: how big a tip do you think it would take to get him to stop? jerry: im in for five... vanessa: ill supply the hat. jerry: (thinking) uh-oh... what do we have here? vanessa: why dont you relax and take your jacket off? jerry: oh, i cant. uh, i have a tendency to get chilly. vanessa: how masculine. jerry: plus im wearing short sleeves, i dont want to expose my tattoos. (vanessa smiles; thinking) shes unbelievable! roger: (to vanessa) hey, this guy says he knows bricker. vanessa: oh, you know bricker! from where? jerry: (thinking) whats going on here? gotta be her boyfriend, shes too good to be alone. whats the difference, i cant manouver anyway with elaine next to me. vanessa: (to jerry) how do you know pamela? jerry: uh, friend of a friend. and you? vanessa: we went to law school together. elaine: (interrupting jerry's conversation) oh, jerry! jerry: (turning to elaine; thinking) oh no, not now. elaine: i had this dream last night and you were in it. jerry: oh really? (tries turning away in the hopes elaine gets the hint; thinking) oh god, i gotta get out of this. elaine: you were you, but, you werent you... jerry: no kidding. (thinking) why is this happening? please, make her stop! elaine: i think, i think we were in my house where i grew up, and you were standing there, you were looking out the window... jerry: (thinking) this is brutal. elaine: you turned around and you had these wooden teeth. jerry: how do you like that? (tries to turn away again; thinking)can i turn now? is this over? no, i cant, i cant. im stuck. elaine: (noticing jerry not wanting to listen; annoyed) jerry? are you listening to me? jerry: yes, i heard you. pamela: elaine, whats the name of that jewelry store you took me to that time? jerry: (thinking) thank you, pamela! (turns to talk to vanessa; to vanessa) so, youre a lawyer... vanessa: sagman, bennet, robbins, oppenheim and taft. jerry: (thinking) sagman, bennet, robbins, oppenheim and taft. sagman, bennet, robbins, oppenheim and taft... (to vanessa) of course, they handled my tattoo removal lawsuit. vanessa: oh, that was you? jerry: imagine, spelling mom with two os. vanessa: very funny! what do you do? jerry: comedian. vanessa: really? that explains it. jerry: (thinking; quickly) sagman, bennet, robbins, oppenheim and taft. sagman, bennet, robbins, oppenheim and taft. roger: are you ready? vanessa: we gotta run. happy birthday! jerry: (thinking) i cant believe it. i got nothing! i dont even know her name! sagman, bennet, robbins, oppenheim and taft. sagman, bennet, robbins, oppen... sagman... sag... jerry: that wasnt so bad, really. elaine: you know, um, you could use a little work on your manners. jerry: why? what did i do? elaine: wel-well, i just dont appreciate these little courtesy responses, like im selling you aluminum siding. jerry: i was listening! elaine: no! you couldnt wait to get back to your little... conversation. jerry: no, you were talking about the, the um, the dream you had. elaine: uh-huh... jerry: where you had, uh, wooden teeth. elaine: no! no! you had wooden teeth! you had wooden teeth! i didnt have wooden teeth, you did! jerry: all right, so i had wooden teeth, so what? elaine: so nothing! nothing. (annoyed sigh) jerry: apparently plato, who came up with the concept of the platonic relationship, was pretty excited about it. he named it after himself. he said, yeah, i got this new thing platonic. my idea, my name, callin it after myself. what i do is, i go out with the girls, i talk with them- dont do anything, and go right home. whatd you think? i think its going to be big! i bet you there were other guys in history that tried to get relationships named after them, but it didnt work. yknow, i bet you there were guys who tried to do it, just went, uh, hi, uh my names rico. would you like to go to bed immediately? hey, its a riconic relationship. jerry: hey! morty: ah, there he is! jerry: this is what i like, see? you come home and your parents are in your bed! helen: yknow, jerry, we dont have to do this. jerry: what are you talkin about? its fine, i love having you here. helen: tomorrow well go to a hotel. jerry: ma, will you stop? helen: no, why should we take over your apartment? jerry: i dont care. im sleeping next door. helen: your friend kramer doesnt mind? jerry: no, hes making a bouillabaisse. jerry: so, dad, lemme ask you a question. how many people work at these big law offices? morty: depends on the firm. jerry: yeah, but if you called up and described someone, do you think they would know who it was? morty: whats the matter? you need a lawyer? jerry: no, i met someone at this party, and i know where she works, but i dont know her name. morty: so why dont you ask someone who was at the party? jerry: nah, the only one i could ask is elaine, and i cant ask her. helen: why not? jerry: because its complicated. theres some tension there. helen: he used to go with her. helen: which one is she? morty: from maryland. the one who brought you the chocolate covered cherries you didnt like. helen: oh yeah, very alert. warm person. jerry: oh yeah, shes great. helen: so, how come nothing materialized there? jerry: well, its a tough thing to talk about uh. i dunno... helen: i know what it was. jerry: you dont know what it was. helen: so, what was it? jerry: well, we fight a lot for some reason. helen & morty: oh, well... jerry: and there was a little problem with the physical chemistry. helen: well, i think shes a very attractive girl. jerry: oh, she is, she absolutely is. helen: i can see if there was a weight problem... jerry: no, its not that. it wasnt all one-sided. helen: you know, you cant be so particular. nobodys perfect. jerry: i know, i know... morty: yknow jerry, its a good thing i wasnt so particular. helen: (hits morty) idiot. (to jerry) so whore you looking for, sophia loren? jerry: thats got nothin to do with it. morty: how about loni anderson? helen: where do you get loni anderson? morty: why, whats wrong with loni anderson? helen: i like elaine more than loni anderson. jerry: what are you two talking about? look, elaine just wasnt the one. helen: and this other ones the one? jerry: i dunno, maybe... morty: so ask elaine there for her number. jerry: i cant. shell get upset. i never talk about other women with her, especially this one tonight. helen: how could you still see her if your not interested? jerry: were friends. morty: doesnt sound like youre friends to me. if you were friends you'd-youd ask her for the number. do you know where this other one works? jerry: oh yeah. morty: well, go up to the office. helen: up to her office? morty: go to the building. she goes out to lunch, doesnt she? jerry: i guess. morty: so, you stand in the lobby, by the elevator, and wait for her to come down for lunch. jerry: you mean stakeout the lobby? helen: morty, thats ridiculous. just ask elaine for the number! morty: he doesnt want to ask elaine for the number. helen: so youve got him standing by the elevator like a dope! what happens when he sees her? morty: he pretends he bumped into her! jerry: yknow what? this is not that bad an idea. george: what does she look like? jerry: i dunno. hard to say. george: what actress does she remind you of? jerry: loni anderson. george: loni anderson?! jerry: what, theres something wrong with loni anderson? (pause) hey listen, thanks again for running over here. i appreciate it. george: yeah, sure. i was showing a condo on 48th street. besides, you think i wanna miss this? (chuckles) jerry: im a little nervous. george: yeah, me too... jerry: if i see her, what do i say that im doing here in the building? george: you came to see me. i work in the building. jerry: what do you do? george: im an architect. jerry: youre an architect? george: im not? jerry: i dont see architecture comin from you. george: (somewhat annoyed) i suppose you could be an architect. jerry: i never said that i was the architect. just somethin else. george: all right, shes not even gonna ask, if we see her, which is remote. jerry: well whaddaya want me to say, that i just wandered in here? george: were having lunch with a friend. he works in the building. jerry: what is his name? george: bert... har... bin... son. bert har-bin-son. jerry: bert harbinson? it sounds made up. george: no good? all right, uh how about art... cor..... jerry: art cor... george: ...velay. jerry: corvelay? george: yeah, right. jerry: well, what does he do? george: hes an importer. jerry: just imports, no exports? george: (annoyed) hes an importer/exporter, okay? (beat) elaine ever call you back? jerry: no, i guess shes still mad. george: i dont understand, you never talk to her about other women? jerry: never. (the elevator door opens.) wait a second. thats her. on the right. george: (anxious) i forgot who i am! who am i?! jerry: youre you. were having lunch with art corvelay. george: vandelay! jerry: corvelay! george: let me be the architect! i can do it! jerry: hey, hey. uh pamelas birthday party, didnt i see you there? jerry. vanessa: sure! hi! jerry: uh, this is george. (reaches for her name) im sorry... vanessa: vanessa. george: nice to meet you. jerry: ah, sagman, bennet, robbins, oppenheim and taft. vanessa: thats right! yea, whatre you doing here? jerry: oh, were meeting a friend of ours for lunch. he works here in the building. george: yeah, art vandelay. vanessa: really? which company? jerry & george: (turning to each other) i dont know. hes an importer. vanessa: importer? george: ...and exporter. jerry: hes an importer/exporter. george: (clears his throat) im, uh, im an architect. vanessa: really. what do you design? george: uh, railroads, uh... vanessa: i thought engineers do that. george: they can... jerry: yknow im sorry you had to leave so early the other night. vanessa: oh, me too. my cousin had to go back to boston. jerry: oh, that guy was your cousin! (walking in front of george so he gets the picture to leave) vanessa: yeah, and that woman was your... jerry: friend! george: ill just, uh, get a paper... jerry: so, um, do you date uh immature men? vanessa: almost exclusively... helen: bum bum bum bum... i have no letters... bum bum bum bum... jerry: (annoyed) ma, will you go already? helen: bum bum bum bum... jerry: what are you doing?! helen: wait, i just want to see something. jerry: you cant look in there, were playing! kramer: hi. jerry: hi. morty: (cleaning his shoes) good evening, mr. kramer! kramer: hey morty! (to jerry) salad dressing? jerry: look. helen: quo. is that a word? jerry: maybe! helen: will you challenge it? jerry: ma, you cant look up words in the dictionary! (to morty) dad, shes cheating! kramer: quo? thats not a word. helen: (to jerry) youre such a stickler... jerry: well put something down, youre taking twenty minutes on this. so is uncle mac and artie, theyre all coming over here before the wedding? helen: theyll be here at two oclock. oh, elaine called. she said shed be here at two-thirty. and she says hope your meeting went well with art vandelay? jerry: she said what? helen: just what i said, here. jerry: she knows! oh, i am such a jackass. helen: she knows what? jerry: she knows the whole stupid thing. vanessa and the elevator... helen: no, no, no, that wont do. he may have a z. morty: so, how did she find out? jerry: because, vanessa probably told pamela, and pamela probably told elaine. morty: so, what are you? afraid of her? jerry: yes. yes i am! (to helen) what else did she say on the phone? helen: whatever i wrote down. jerry: yeah, but what was the tone in her voice? how did she sound? helen: who am i, rich little? morty: well, she cant be too mad. shes still coming to the wedding. jerry: yeah, but now im nervous. helen: oh, stop it. jerry: quone? helen: ...30...31... jerry: quone? no, im afraid that im going to have to challenge that. helen: ...32... kramer: no, you dont have to challenge that. thats a word. thats a definite word. jerry: i am challenging. kramer: quone. to quone something. jerry: uh-huh. helen: im not playing with you anymore. morty: quones not a word. jerry: no good. sorry. there it is. get it off. helen: (to kramer) why did you make me put that down? kramer: nah, we need a medical dictionary! if a patient gets difficult, you quone him. carol: you want some funny material, you oughta come down to where i work, now thats a sitcom! jerry: you must have quite a time down there. carol: we got plenty of time. jerry: oh, im sorry. im just waiting for someone. uncle mac: watch what you say to this guy. hell put it in his next act! jerry: yeah, yeah... uncle mac: jerry, did i tell you that im writing a book? an autobiography. jerry: yeah, uncle mac, you mentioned it. uncle mac: its based on all my experiences! jerry: thats perfect. jerry: could you excuse me one second? im sorry. jerry: how do you do? (introducing himself) uh, jerry seinfeld. elaine: oh, how do you do? elaine benes. jerry: um, do you want to do this now, or do you want to wait until we get in the car? elaine: oh no, lets do it now. jerry: all right, the whole elevator business, let me just explain- elaine: okay. artie: jerry, were you goin with us? jerry: no, im gonna take my car. artie: thats why i brought the wagon. why the hell did i bring the wagon? jerry: anyway, you know why i didnt ask you, i mean i felt so uncomfortable, and you were so annoyed in the cab. elaine: well, jerry, i never saw you flirt with anyone before. it was quite the spectacle. carol: jerry, well see you there. bye, elaine. elaine: oh, bye. good to see you. artie: oh, we didnt meet. jerry: oh, im sorry. elaine, this is my cousin, artie levine. artie: (correcting jerry) levine. jerry: (sarcastically) yeah, levine. and im jerry cougar mellencamp. anyway, i admit it was a fairly ridiculous thing to do, but i mean, i mean, obviously we have a little problem here. elaine: yeah, obviously. jerry: i mean, if were gonna be friends, we gotta be able to talk about other people. elaine: couldnt agree more. jerry: good. elaine: good. jerry: good. elaine: great! jerry: great? where do you get great? elaine: its great to... talk about... other people... jerry: ...guys? elaine: yeah. jerry: uh-huh. yeah. so, anybody specific? elaine: no. a general guy. jerry: oh really? elaine marie benes... elaine: what? no, its not a big deal. jerry: no, thats great! thats terrific! elaine: no, we just met... jerry: doesnt matter. whats the young mans name? i would like to meet him. elaine: hmmm, i dont think so. jerry: well, what does he do? is he an artisan, a craftsman, a labourer of some sort? elaine: wall street. jerry: ah, high finance. bulls, bears, people from conneticut. elaine: and he happens to be pretty good lookin. jerry: (pause) all right, sir. elaine: and... hes hilarious. jerry: now thats not fair! so where did you meet this guy? elaine: i staked out his health club. jerry: uh huh. when youre on a stakeout, do you find its better to stand up against the wall, or kinda crouch down behind a big plant? jerry: yknow i think that even if youve had a relationship with someone, or lets say, especially if youve had a relationship with someone and you try to become friends afterwards, its very difficult. isnt this? its hard. because, you know each other so well, you know all of each others tricks. its like two magicians, trying to entertain each other. the one goes, look, a rabbit. the other goes, so? i believe this is your card. look, why dont we just saw each other in half and call it a night, okay? jerry: so i move into the centre lane, now i get ahead of this women, who felt for some reason i guess, that she thought that i cut her off. so, she pulls up along side of me, gives me the finger. it seems like such an arbitrary, ridiculous thing to just pick a finger and you show it to the person. its a finger, what does it mean? someone shows me one of their fingers and im supposed to feel bad. is that the way its supposed to work? i mean, you could just give someone the toe, really, couldnt you? i would feel worse if i got the toe, than if i got the finger. cause its not easy to give someone the toe, youve gotta get the shoe off, the sock off and drive, get it up and... (jerry pretends to drive with one foot in the air, giving the toe.) look at that toe, buddy. (he puts his foot down.) i mean, thats really insulting to get the toe, isnt it? jerry: is that it? got the cue tips, got the mini-umbrella, something boring to read on the plane. (jerry zips his bag ceremoniously.) thats it. done! elaine: (claps her hands) that is the single greatest packing performance i have ever seen. jerry: (proudly) i am...the master packer. elaine: (laughs) yeah, right, youre the master packer. jerry: what you must understand, elaine, (picking up the umbrella) packing is no different than leading men into battle. (jerry hits his bag rhythmically with his umbrella.) youve gotta know the strengths and weaknesses of every soldier in that platoon. from a collapsible toothbrush to a pair of ordinary black socks. elaine: (raising her hand) scuse me, master packer... jerry: yes. elaine: just gimme your keys. jerry: all right, sir. (he tosses elaine his keys. the apartment buzzer goes off; jerry presses the first button; to the intercom) george? george: (from the intercom) yeah. elaine: okay, so, now, is there anything else i need to know about this place? jerry: uh, yeah, the, uh, hot water takes a little while to come on. so, the best thing to do is to turn it on, do all your shopping, you come back and take a shower. elaine: okay, this is quite a place. jerry: theres more. the refrigerator. jerry: deduct a minimum of two days off all expiration dates. (he uses the umbrella to point to certain compartments in the fridge.) no meat, no leftovers, no butter. (he closes the fridge.) and i cannot overstate this no soft cheeses of any kind. is that clear? elaine: ill eat out. jerry: one more thing, benes, regarding sexual activity strictly prohibited, but if you absolutely must, do us all a big favour. do it in the tub. george: (to jerry) ready? jerry: yeah, one sec. george: hey, elaine. elaine: hi. george: coming to the airport with us? elaine: no, im staying here for the weekend. im getting a break from my roommate. george: oh, the actress-waitress? elaine: no, the waitress-actress. she just got some part in some dinner theater production of a chorus line. so, now all day long shes walking around the apartment singing, god, i hope i get it, i hope i get it! shes gonna get it right in her... george: so just kick her out. elaine: shes on the lease! george you have got to find another place for me. george: yeah, well...a little rough finding something good in your price-range. (to jerry) but you, my friend, may be in luck. jerry: im not looking. george: no no no, this ones different. this ones a beauty! jerry: yeah, whats it like? george: i havent seen it yet, but its a two-bedroom, its on the uh, west 83rd, bout a half block from the park? jerry: how much? george: uh, twice what youre payin here, but its a great building. its two bedrooms! jerry: two bedrooms? why do i need two bedrooms? i got enough trouble maintaining activity in one. (george gives elaine a look while jerrys back is turned. jerry turns around.) i saw that. elaine: you oughta at least take a look at it. jerry: really? why? elaine: cause then i could move in here. jerry: ohhhh... elaine: its time you got outta here anyway. george: yeah, tell im. but quickly, im double parked here. elaine: listen, jerry, this place is falling apart. you have no hot water, you cant have soft cheese... george: lets not forget the radiator. the steam has been on here for ten years. no human can turn this off. elaine: jerry, come on, youre doin okay now. you should at least take a look at this place. you shouldnt have to live like this. jerry: like this? you just said you wanted to live here. elaine: well, for me its a step up. its like moving from iceland to finland. george: jerry, what do you, you wanna, you wanna see the place or not? jerry: i cant think about it now. come on, im going to minneapolis. i got four shows this weekend. jerry: elaine. (jerry puts his bags down, sits down on the couch, picks up the remote control and points it at the spot the tv usually occupies. the tv is not there. he continues to point the remote at random things around the room, searching for the tv.) elaine! elaine: (from the bathroom) jerry! (elaine enters the living-room.) jerry, oh, hi, welcome back. how were the shows? jerry: great, i had fun. wheres the tv, wheres the vcr? jerry: what? elaine: they were stolen. jerry: stolen? when? elaine: a couple a hours ago. the police are coming right over. jerry: stolen? elaine: (looking at kramer) someone left the door open. jerry: (to kramer) you left the door open?! kramer: uh, jer, well you know, i was cookin and i, i uh, i came in to get this spatula...and i left the door open, cause i was gonna bring the spatula right back! jerry: wait, you left the lock open or the door open? kramer: (guiltily) the door. jerry: the door? you left the door open? kramer: yeah, well, i was gonna bring the spatula right back. jerry: yeah, and? kramer: well, i got caught up... watching a soap opera. the bold and the beautiful. jerry: so the door was wide open? kramer: wide open! jerry: (to elaine) and where were you? elaine: i was at bloomingdales... waiting for the shower to heat up. kramer: look, jerry, im sorry, im uh- you have insurance, right buddy? jerry: no. kramer: (shocked) how can you not have insurance? jerry: because i spent my money on the clapgo d-29. its the most impenetrable lock on the market today. it has only one design flaw. the door... (jerry pushes the door shut.) ...must be closed!! kramer: jerry! im gonna find your stuff. im gonna solve it, im on the case, buddy, im on the case. jerry: yeah, dont investigate, dont pay me back, it was an accident. kramer: (theatrical) i made a mistake. elaine: these things happen. kramer: im human. jerry: in your way. policeman: lets see, thats, one tv, a stereo, one leather jacket, a vcr and a computer...is that bout it? elaine: answering machine. jerry: (disappointed) answering machine. (jovially) oh, i hate the idea of somebody out there returning my calls. policeman: what do you mean? jerry: its a joke. policeman: i see. well, mister seinfeld uh, well look into it and uh, well let you know if we uh, you know, if we find anything. jerry: you ever find anything? policeman: no. jerry: well, thanks anyway. policeman: you bet. elaine: i didnt get that joke either. jerry: the crook has the machine. the messages arent for him. hes the crook. why would he answer- (jerry gives up on the explanation and turns around to see george standing behind him.) how did you get in here? george : i walked in, your lobby door is broken again. jerry: again? george: i dont know how you put up with this. elaine: yeah, tell im george. jerry: (to elaine) you would still wanna move in here? elaine: yes! you dont understand. im living with ethel merman without the talent. jerry: (to george) is that uh, other apartment still available? jerry: i got ripped off for about the...18th time? and now, the first couple a times you go through it, its very upsetting and your first reaction or one of your friends will say, call the police. you really should call the police. so you think to yourself, you know, you watch tv, you think, yeah, im calling the police. stakeouts, manhunts... im gonna see some real action. right, you think that. so, the police come over to your house, they fill out the report. they give you your copy. now, unless they give the crook his copy, i dont really think were gonna crack this case, do you? its not like batman, where theres three crooks in the city and everybody pretty much knows, who they are. very few crooks even go to the trouble to come up with a theme for their careers anymore. it makes them a lot tougher to spot. did you lose a sony? it could be the penguin. i think we can round him up, hes dressed like a penguin! we can find him, hes a penguin! elaine: oh, well, come on. this is an apartment, this is a home! this is a place to live. oooh, a fireplace, are you kidding me! does this work? george: i didnt know there was a fireplace. a fireplace, that's incredible. jerry: how do you get all that wood in here? elaine: they deliver it. jerry: they deliver wood? elaine: yeah. jerry: what do you tip a wood guy? george: i didnt know there was a fireplace. elaine: look! look at- look at this! theres a garden. george: a garden! i cant believe theres a garden! jerry: would i have to get a gardener? elaine: yeah, you can get a gardener. jerry: you tip him? elaine: you can. george: (to elaine) you dont tip a gardener! elaine: you can tip a gardener. george: you dont need a gardener. elaine: jerry, you can barbecue back here. jerry: they deliver the coal? elaine: sure, its...probably the same guy, who delivers the wood. jerry: oh, then i gotta tip him. elaine: oh, damn, this place is incredible, look at all this great light! jerry: i dont have any plants. george: i have plants. (snorts) elaine: jerry, look at this closet! look at this! im walking in it! (elaine walks into the closet.) its a walk-in. can you believe it? im nuts about this, what do you think? jerry: i like that. (he opens the closet. elaine walks out with an angry look.) what do you think, george? george: its your decision. jerry: im takin it, im takin the place. im gonna take it, this is gonna be my new place. im livin here...im movin. elaine: (laughing with joy) your movin? that means im movin. (she hugs jerry.) geeeeee (to george) isnt that incredible! george: (unenthusiastic) congratulations. elaine: what about the couch? jerry: you like the couch? ill tell you what im gonna do. elaine: what? jerry: youre movin in, youre a good friend, i wanna start you off on the right foot. give me...a hundred and fifty dollars. (elaine is shocked, jerry opens the door to the hall.) get it outta here right now, take it out the door, i dont even wanna see it, go, get it out. elaine: a hundred and fifty dollars? a hundred and fifty dollars for what? for this couch? jerry: yeah! elaine: for this couch?! jerry: okay, you tell me. what is it worth? elaine: okay, uh, ill tell you what. i could go as high as uh... (she takes a closer look at couch.) i dont know, maybe...twenty dollars? jerry: yeah? george: (from the intercom) yeah, its george. jerry: come on up. (jerry presses the second button and opens the apartment door. he walks back to the couch.) oh, all right, forget it, im gonna take it with me now... (he picks up the cushions.) im just gonna pack up the cushions right now... elaine: okay okay okay okay, you win. forty dollars. jerry: (continuing unphased) you wanna get the other end, cause i wanna get it in the hall. elaine: fifty dollars, okay? fifty dollars, is that all right? jerry: fifty dollars? elaine: uh-huh. jerry: thank you very much. elaine: thank you very much. george: hey, whats goin on? elaine: i just bought jerrys couch for fifty dollars. jerry: (to george) so did you bring the lease? (george takes the lease from his inside pocket and hands it to jerry.) all right, gee, three years, that kinda seems like a long time. george: (frantic) oh, jerry jerry jerry jerry jerry, listen, if, if you are feeling uncomfortable about this at all, at all. do not feel like you have to take it. jerry: why? george: if youre having second thoughts, if you didnt want it, dont worry about it because uh, you know, i, i...i could take it, you know. jerry: you could take it? you want it? george: no, i dont want it. i want it, if you dont want it. jerry: so you do want it. george: no i, i want it if you dont want it. jerry: you just said you wanted it! george: no, im saying, if a situation arose in which you didnt want it, i might take it. jerry: so take it. george: how can i take it? jerry: how can i take it? george: its your apartment! jerry: how can i want it now, if you want it? elaine: excuse me, uh, i dont mean to cause any trouble here, but george, if you take it, can i take your place? george: yes, but i am not taking it. jerry: i...am not taking it. elaine: well, one of you better damn well take it! jerry: well, whaddaya wanna do here? george: i, i dont know. jerry: do you wanna flip a coin? george: who flips? youll flip, ill call. jerry: okay, fine. (jerry takes a coin from his pocket.) this is the official flip. no crying, no guilt, winner takes all and thats it. agreed? george: im good. elaine: i dont know, who to root for, georges place has carpeting. jerry: all right, now you call it in the air. george: no catchin. jerry: no no. george: flip it. george: heads! jerry: tails! george: no, it hit the table, it hit the table. jerry: so what? george: interference! you cant count that! come on, are you crazy?! the coin cannot touch anything, it affects it. jerry: you didnt call no interference! george: you dont have to call that! thats a rule! jerry: i dont believe this. george: oh oh oh, all right, fine, jerry, you win. take it, just take it! jerry: i dont wanna win it like this! elaine, what do you think? elaine: id better not. jerry: well, ill tell you what. ill choose you for it. straight choose, three takes it, no disputes...thats it, you gotta win three. george: okay. (they walk around each other.) ok. ill choose you. whaddaya want? jerry: odds. george: i want evens. jerry: good. george: you got odds. jerry: you got evens. george: right, ready? jerry: for the apartment. both: once, twice, three, shoot! jerry: mine! both: once, twice, three, shoot! jerry: mine! both: once, twice, three, shoot! george: mine! both: once, twice, three, shoot! george: congratulations...congratulations. jerry: thanks. george: i'm just gonna...wash. (george walks to the bathroom; screaming) why did i put up two? why did i put up two? kramer: jerry, i think im on to something. i think i found your stuff. you know the englishman who lives down the hall? jerry: yeah. kramer: the last couple a days hes been acting very strange. i think hes avoiding me. jerry: hard to imagine. kramer: yeah! and get this i just got off the elevator with him and i tested him, i tested him, like i...this is what i said to him, like i, i was like this, i went, oh, by the way, i know about the stuff. kramer: ..you know, very casually, jerry: right. kramer: (cont'd) so that he was gonna take me into his confidence. elaine: so what did he say? kramer: what stuff? jerry: ooh, (to elaine) case closed! kramer: no, you dont understand, you see, he swallowed. see, the guy, he swallowed. oh, he was nervous about something! now, im gonna go over there, im gonna borrow some tea. if i dont get back in five minutes, maybe youd better call the police. jerry: okay, starting...now! kramer: yeah! jerry: one of the problems in life is that when youre a kid, you have a certain way of working out disagreements. and those laws do not work in the adult world. one of the main ways that kids resolve any dispute is by calling it. one of them says, i got the front seat i wanted the front seat! i called it. and the other kid knows hes got nothing to say he called it. what can i do? if there was a kid court of law, it holds up. your honour, my client did ask for the front seat and the judge would go, did he call it? well no, he didnt call- bang! (jerry imitates a judge banging his gavel.) he has to call it, case closed. objection overruled. george: i love the mirror in that bathroom! i dont know what in the hell it is. i look terrific in that mirror. (george sits.) i dont know if its the tile or the lighting... i feel like robert wagner. jerry: its a good mirror. (they look at their menus.) so, what are you gettin? george: i dont know, i cant eat. you, you cant have anything anymore. look at this, look at this. eggs out. coffee out. french fries out. blt out! i go to visit my grandparents three big brisket sandwiches, im sittin here with a carrot! theyre closing in on a hundred, im sayin to them, how can you eat that stuff? (they look at their menus again.) im so sick about losin that choose, you dont know. jerry: all right, forget it, forget it. im not taking the place! george: what?! jerry: how can i live there? george: why not?! jerry: look at you, youre still thinking about it. ill never feel comfortable. george: oh, get outta here. jerry: how can i ever have you over? youll sit there moping. george: i wont mope. jerry: youre already moping! would you take the place? george: no, impossible! its your apartment. jerry: you found the place. george: you won the choose. jerry: all right, forget it, its over, im not moving. george: well, me neither. jerry: definitely? george: definitely. jerry: alright, then just get rid of it. you wont have any problem. george: no, its not a problem, i can get rid of the apartment this afternoon. carol: what apartment? george: oh, its a great place, its uh two-bedroom uh, west 83rd bout half block from the park. carol: whats the rent? george: i dont know, what were doin here, this is ridiculous. jerry: she wanted to thank us for the apartment. elaine: i cant believe i lost the deposit on that u-haul. and i threw out my couch. jerry: if only the coin hadnt hit the table. george: the table is interference, you know it! jerry: it is not! george: it is too! elaine: my roommate starts rehearsal tonight on carousel. carol: hi. george: hi, carol. carol: i just wanted to introduce you to my husband, this is larry. carol: this is george, elaine and jerry. these are the guys who got us the apartment. larry: oh, you dont know how grateful i am, if theres anything i can ever do to repay you, i, i mean, were just so thrilled with this place. carol: its a dream. larry: im running in the park now, ive lost weight, were barbecuing every night and the rent is unbelievable. george: were really glad for you. elaine: couldnt be happier. jerry: its wonderful. carol: diane, diane, come here. carol: this is my new next door neighbour, diane. carol: (to diane) these are the guys, who turned this place down, can you believe it? (to jerry, george and elaine) diane gave me the greatest backrub today. shes a masseuse! diane: how, how could you guys have turned this place down, its such a great location and its...so close to the park. george: were aware of the proximity to the park, yes. diane: well, it was nice to meet you. george: nice meeting you. jerry: how late are the stores open? im thinking of maybe uh, buying a new tv and smash it over my head. man #1: i get a call from gilmour this morning, and get this theyre restructuring the organization in atlanta and i gotta be there on the first of the month. man #2: really? what are you gonna bout the apartment? man #1: well, what can i do? give it up. jerry, george & elaine: whats the rent? jerry: most men like working on things. tools, objects, fixing things. this is what men enjoy doing. have you ever noticed a guys out in his driveway working on something with tools, how all the other men in the neighborhood are magnetically drawn to this activity. they just come wandering out of the house like zombies. men, its true, men hear a drill, its like a dog whistle. just... (his head perks up) you know, they go running up to that living room curtain, honey, i think jims working on something over there. so they run over to the guy. now they dont actually help the guy. no, they just want to hang around the area where work is being done. thats what men want to do. we want to watch the guy, we want to talk to him, we want to ask him dumb questions. you know, what are you using, a phillips-head? you know, we feel involved. thats why when they have construction sites, they have to have those wood panel fences around it, thats just to keep the men out. they cut those little holes for us so we can see what the hell is going on. but if they dont cut those holes, we are climbing those fences. right over there. what are you using the steel girders down there? yeah, thatll hold. george: i had to say something. (chuckles) i had to say something. everything was going so well. i had to say something. jerry: i dont think you did anything wrong. george: i told her i liked her. why? why did i tell her i like her? i have this sick compulsion to tell women how i feel. i like you i dont tell you. jerry: we can only thank god for that. george: im outta the picture. i am outta the picture. (laughs) its only a matter of time now. jerry: youre imagining this. really. george: oh, no. no no no no. george: ill tell you when it happened. when that floss came flying out of my pocket. jerry: what floss? when? george: we were in the lobby during the intermission of the play. i was buying her one of those containers of orange drink, for five dollars. i reached into my pocket to pay for it, i looked down; theres this piece of green floss hanging from my fingers. jerry: ah, mint. george: of course. so, im looking at it. i look up, i see shes looking at it. our eyes lock. it was a horrible moment. i just.. jerry: so let me get this straight. she saw the floss, you panicked and you told her you liked her. george: if i didnt put that floss in my pocket, id be crawling around her bedroom right now looking for my glasses. jerry: and youre sure the floss was the catalyst? george: yes, i am. jerry: you dont think it mightve had anything to do with that? george: what? you dont like this? jerry: it looks like your belt is digesting a small animal. kramer: (to the phone) oh, theyve got a cure for cancer. see, its all big business. oh hey, jerry just walked in. hi, george. (to the phone again) yeah yeah yeah yeah take my number. 555-8643. okay, here he is. jerry: (to kramer) who is it? kramer: take it. jerry: who is it? kramer: its for you. jerry: (to the phone) hello? (disappointed) oh, hi joel. (jerry hits kramer with a magazine.) no. uh, i was out of town. i just got back. kramer doesnt know anything. hes just my next-door neighbor. uh, nothing much... tuesday? uh, tuesday, no. im meeting somebody... uh, wednesday? wednesdays okay... all right. uh, im a little busy right now. can we talk wednesday morning?... okay... yeah... right... thanks... bye. (jerry hangs up; to kramer) why did you put me on the phone with him? i hate just being handed a phone. kramer: well, its your phone. he wanted to talk to you. jerry: maybe i didnt want to talk to him. kramer: well, why not? jerry: he bothers me. i dont even answer the phone anymore because of him. hes turned me into a screener. now i gotta go see him on wednesday. george: what do you mean wednesday? i though we had tickets to the knick game wednesday. we got seats behind the bench! what happened? were not going? jerry: were going. thats next wednesday. george: oh. who is this guy? jerry: his name is joel horneck. he lived like three houses down from me when i grew up. he had a ping pong table. we were friends. should i suffer the rest of my life because i like to play ping pong? i was ten. i wouldve been friends with stalin if he had a ping pong table. hes so self-involved. kramer: thats for me. (to the phone) kramerica industries. oh, hi, mark. no no no. forget that. i got a better idea. a pizza place where you make your own pie... jerry: can you conduct your business elsewhere? kramer: (ignoring jerry) no no no. im talking about a whole chain of em. yeah. george: i dont know why you even bother with this ping pong guy, ill tell you that. jerry: i dont bother with him. hes been calling me for seven years. ive never called him once! hes got the attention span of a five-year-old. sometimes i sit there and i make up things just to see if hes paying attention. george: i dont understand why you spend time with this guy. jerry: what can i do? break up with him? tell him, i dont think were right for each other. hes a guy! at least with a woman, theres a precendent. you know, the relationship goes sour, you end it. george: no no no no, you have to approach this as if he was a woman. jerry: just break up with him? george: absolutely. you just tell him the truth. jerry: the truth. jerry: as a guy i dont know how i can break up with another guy. you know what i mean? i dont know how to say, bill, i feel i need to see other men. do you know what i mean? theres nothing i can do. i have to wait for someone to die. i think thats the only way out of this relationship. it could be a long time. see, the great thing about guys is that we can become friends based on almost nothing. just two guys will just become friends just because theyre two guys. thats almost all we need to have in common. cause sports sports and women is really all we talk about. if there was no sports and no women the only thing guys would ever say is, so, whats in the refrigerator? joel: ...so my shrink wants me to bring my mother in for a session. this guy is a brilliant man. lenny bruce used to go to him. and i think, uh, geraldo. jerry: you know, i read the lenny bruce biography, i thought it was really... interesting. he would- joel: (to the counter of the restaurant) hey hey hey hey, were starving here! weve been waiting here for ten minutes already! jerry: (testing joel) so, im thinking about going to iran this summer. joel: i have to eat! i mean, im hypoglycemic. jerry: anyway, the hizballah has invited me to perform. (joel shakes his head agreeing; jerry smiles) you know, its their annual terrorist luncheon. joel: yeah. jerry: (cont'd) im gonna do it in farsi. joel: do you think i need a haircut? claire: are you ready? jerry: yeah, ill have the egg salad on whole wheat. joel: (to the waitress) let me ask you a question. this, uh, this turkey sandwich here, is that real turkey, or is it a turkey roll? i dont want that processed turkey. (to jerry) i hate it. waitress: i think its real turkey. joel: is there a real bird in the back? waitress: no, theres not bird but- joel: well, how do you know for sure? look, why dont you do me a favor. why dont you go in the back and find out, okay? (the waitress leaves.) unbelievable. jerry: how can you talk to someone like that? joel: what are you saying? what, you like turkey roll? jerry: listen, joel. theres something i have to tell you... joel: (laughing) wait, youll never guess who i ran into. jerry and joel: howard metro. joel: he asked me if i still saw you. i said, sure, i see him all the time. were still great friends. anyway, howard says hello. (laughs) jerry: listen, joel, i dont think we should see each other anymore. joel: what? jerry: this friendship its not working. joel: not working? what are you talking about? jerry: were just not suited to be friends. joel: how can you say that? jerry: look, youre a nice guy, its just that... we dont have anything in common. joel: (starting to cry) wai-wait. what did i do? tell me. i want to know what i did. jerry: y-you didnt do anything. its not you, its me. its- this is very difficult. joel: look, i know i call you too much, right? i mean, i know youre a very busy guy. jerry: no, its not that. joel: (crying) youre one of the few people i can talk to. jerry: oh, come on. thats not true. joel: i always tell everybody about you. tell everybody to (to the rest of the coffee shop) go see his show! (to jerry) i mean, im your biggest fan! jerry: i know, i know. joel: i mean, youre my best friend. jerry: best friend- ive never been to your apartment. joel: i cannot believe that this is happening. i cant believe it. jerry: okay, okay. forget it. its okay. i didnt mean it. joel: didnt mean what? jerry: what i said. ive been under a lot of stress. joel: oh, youve been under a lot of stress. jerry: just, can we just forget the whole thing ever happend? im sorry. i didnt mean it. i took it out on you. were still friends. were still friends. still friends. okay? look, ill tell you what. ive got knick tickets this wednesday. great seats behind the bench. you want to come with me? come on. joel: tonight? jerry: no, next wednesday. if it was tonight, i wouldve said tonight. joel: do you really want me to go? jerry: (lying) yes. joel: okay. (jerry gives him some napkins to clean himself up) yeah, okay. great! that would be, thatd be great. so, next wednesday. jerry: next wednesday. joel: where is that waitress? (to the counter) hey! george: ...she calls me up at my office jerry: yeah. george: (cont'd) she says, we have to talk. jerry: ugh, the four worst words in the english language. george: that, or whos bra is this? jerry: that is worse. george: so we order lunch, and were talking. finally, she blurts out how its not working. jerry: really. george: so, im thinking, as shes saying this, im thinking great, the relationships over. but the egg salads on the way. so now i have a decision do i walk or do i eat? jerry: hm. you ate. george: we sat there for twenty minutes, chewing, staring at each other in a defunct relationship. jerry: someone says, get out of my life, and that doesnt affect your appetite? george: have you ever had their egg salad? jerry: it is unbelievable. george: its unbelievable. you know what else is unbelievable? i picked up the check. she didnt even offer. she ended it. the least she could do is send me off with a sandwich. jerry: how much could you possibly have in there? george: its my money. what should i do? throw it out the window? i know a guy who took his vacation on his change. jerry: yeah? whered he go, to an arcade? george: (sarcastically) thats funny. youre a funny guy. jerry: cmon, move up. customer: oh great, ewings hurt. george: ewings hurt? how long is he going to be out? customer: a couple of days at the most but... george: geez. jerry: oh, god. george: i got scared there for a second. the knicks without ewing. jerry: listen, george, little problem with the game. george: what about it? jerry: the thing is, yesterday, i kind of.. uh.. george: what? jerry: i gave your ticket to horneck. george: (not believing him) you what?! jerry: yeah, im sorry. i had to give it to horneck. george: no! my ticket?! you gave my ticket to horneck? jerry: cmon, cmon, go ahead, move up. george: why did you give him my ticket for? jerry: you didnt see him. it was horrible. george: oh, cmon, jerry. i cant believe this. jerry: i had to do it. george: oh, please. (to the teller) can you change this into bills? teller: im sorry, sir. we cant do that. jerry: do you want to go with him? you go. i dont mind. george: im not going with him. i dont even know the guy. (to the teller) look, they did this for me before. teller: look, i can give you these and you can roll them yourself. george: you want me to roll six thousand of these?! what, should i quit my job?! jerry: no, i do not like the bank. ive heard the expression laughing all the way to the bank. i have never seen anyone actually doing it. and those bank lines. i hate it when theres nobody on the line at all, you know that part, you go to the bank, its empty and you still have to go through the little maze. (walking on the stage like he is going through a maze) can you get a little piece of cheese for me? im almost at the front. id like a reward for this please. george: ...thirty-two, thirty-three- jerry: george. george: not now. jerry: could you stop the counting? george: nnnnnnngaaa! george: what?! jerry: can i make it up to you? ill give you fifty bucks for the jug. george: oh, yeah, sure. keep your money. jerry: well, then im not going to the game either. okay? ill give him both tickets. george: oh geeeee. (george pantomimes sticking a knife in his heart, and twists it.) go, go! jerry: i- no, i dont want to go. george: he was really crying? jerry: i had to give him a tissue. in fact, let me call his machine now and ill just make up some excuse why i cant go to the game either. george: wait a minute. wait a minute. as long as youre going to lie to the guy, why dont you tell him that you lost both of the tickets, then we can go? jerry: george, the man wept. kramer: oh, hey guys. man, im telling you, this pizza idea, is really going to happen. george: this is the thing where you go and you have to make your own pizza? kramer: yeah, we give you the dough, you smash it, you pound it, you fling it in the air. and then you get to put your sauce and you get to sprinkle your cheese, and then- you slide it into the oven. george: you know, you have to know how to do that. you cant have people shoving their arms into a six-hundred degree oven! kramer: its all supervised. george: oh, well... kramer: all of it. you want to invest? george: my moneys all tied up in change right now. kramer: no, im tellin you, people, they really want to make their own pizza pie. jerry: i-i have to say something. with all due respect, i just never- i cant imagine anyone in any walk of life, under any circumstance, wanting to make their own pizza pie... but thats me. alright kramer: thats you. jerry: im just saying..alright. kramer: okay, okay. i just wanted to check with you guys. jerry: okay. kramer: you know, this business is going to be big. i just wanted- okay. kramer: one day, youll beg me to make your own pie. jerry: (to the phone) hi, joel. this is jerry. i hope you get this before you- oh, hi. joel... oh, you just came in... listen, i cant make it to the game tonight... i, uh, have to tutor my nephew... yeah, hes got an exam tomorrow... geometry... you know, trapezoids, rhombus... anyway, listen, you take the tickets. theyre at the will-call window... and im really sorry... have a good time... well talk next week... okay... yeah, i dont... fine.. fine... bye. george: trapezoid? jerry: i know. im really running out of excuses with this guy. i need some kind of excuse rolodex. elaine: come on, lets go do something. i dont wanna just sit around here. jerry: okay. elaine: want to go get something to eat? jerry: where do you want to go? elaine: i dont care, im not hungry. jerry: we could go to one of those uh cappuccino places. they let you just sit there. elaine: what are we gonna do there? talk? jerry: we could talk. elaine: ill go if i dont have to talk. jerry: then well just sit there. elaine: okay. im gonna check my machine first. (elaine sees a pad of paper by the phone; reading) picking someone up at the airport, jury duty, waiting for cable guy... jerry: okay, just hand that over, please. elaine: oh, what is this? jerry: its a list of excuses, its for that guy, horneck, whos at the game tonight with my tickets. i have that list now so in case he calls, i just consult it and i dont have to see him. (elaine laughs.) i need it. (elaine starts writing on the list.) what are you doing? elaine: i got some for you. jerry: i dont need any more. elaine: no no no no no, these are good. listen, listen you ran out of underwear, you cant leave the house. jerry: (not amused) very funny. elaine: how about youve been diagnosed as a multiple personality. youre not even you. youre dan. jerry: im dan. can i have my list back, please? elaine: here, here. jerry seinfeld, i cannot believe youre doing this. this is absolutely infantile. jerry: what can i do? elaine: deal with it. be a man! jerry: oh no. thats impossible. id rather lie to him for the rest of my life that go through that again. he was crying. tears. accompanied by mucus. elaine: you made a man cry? ive never made a man cry. i even kicked a guy in the groin once and he didnt cry. i got the cab. jerry: couple of tough monkeys. kramer: oh, hi elaine, hey. (to jerry) hey, you missed a great game tonight, buddy! jerry: game? kramer: knick game. horneck took me. we were sitting two rows behind the bench. we're getting hit by sweat! jerry: wait. how does horneck know you? kramer: last week. when i, you know, gave you the phone. hes really into my pizza place idea! jerry: this is too much. elaine: wait, what pizza place idea? jerry: oh, no. kramer: you get to make your own pie! elaine: oh, that sounds like a great idea. it would be fun. kramer: yea. joel: (from the hallway) kramer. kramer: yeah. jerry: perfect. joel: hey. kramer: okay, who wants meatloaf? jerry & elaine: no thanks. kramer: (to joel) its gonna be hot in a minute. joel: so, i though you were tutoring your nephew? jerry: oh, we finished early. joel: m-hm, ill bet. so, are you going to introduce me to your nephew? jerry: elaine benes, this is joel horneck. elaine: hi. joel: whoa, nelson! this is elaine? i though you guys split? jerry: were still friends. joel: so, thanks again for those tickets. but next week, im going to take you. how about next tuesday night? (to elaine) and why dont you come along? elaine: oh, no no. tuesdays uh no good becasue weve got choir practice. jerry: right. i forgot about choir. elaine: we-were doing that evening of eastern european national anthems. jerry: right. you know, the wall being down and everything. joel: what about thursday night? i mean theyre playing the sonics. elaine: huh... thursday is no good because weve got to get to the hospital to see if we qualify as those organ donors. joel: you know, i should really try something like that. jerry: you really should. joel: well, lets just take a look here. joel: forty-one home games. let's see saturday night weve got the mavericks. if you dont like the mavericks, next tuesday lakers. i mean, you gotta like magic, right? lets see, on the road, on the road, on the road, on the road, back on the fourteenth. they play the bulls. you cant miss air jordan... jerry: you know, i really... ive come to the conclusion that there are certain friends in your life that theyre just always your friends, and you have to accept it. you see them, you dont really wanna see them. you dont call them, they call you. you dont call back, they call again. the only way to get through talking with people that you dont really have anything in common with is to pretend youre hosting your own little talk show. this is what i do. you pretend theres a little desk around you. the only problem with this is theres no way you can say, hey, its been great having you on the show. were out of time. jerry: went out to dinner the other night. check came at the end of the meal, as it always does. never liked the check at the end of the meal system, because moneys a very different thing before and after you eat. before you eat, money has no value. and you dont care about money when youre hungry. you sit down at a restaurant, youre like the ruler of an empire. more drinks, appetizers, quickly, quickly! it will be the greatest meal of our lives. then after the meal, you know, youve got the pants open, youve got the napkins destroyed, cigarette butt in the mashed potatoes. then the check comes at that moment. people are always upset, you know. theyre mystified by the check. what is this? how could this be? they start passing it around the table, does this look right to you? were not hungry now. why are we buying all this food? jerry: i think superman probably has a very good sense of humor. george: i never heard him say anything really funny. jerry: but its common sense. hes got super strength, super speed. im sure hes got super humor. george: you would think that, but either youre born with a sense of humor, or youre not. its not going to change even if you go from the red sun of krypton all the way to the yellow sun of the earth. jerry: why? why would that one area of his mind not be affected by the yellow sun of earth? george: i dont know. but he aint funny. elaine: i know, i know. im sorry im late. jerry: no problem. elaine: i dropped a grape. george: pardon? elaine: i dropped a grape in the kitchen and it disappeared. i couldnt find it. i was, i was literally on my knees for ten minutes looking for this stupid grape. i have no idea where it went. jerry: were you crying? i mean, its just a grape. youll find it. elaine: no, im just getting over an allergy attack. this guy im going out with... jerry: robert. elaine: robert. yes. thank you. he has two cats and im allergic to them. you know, i finally meet a normal man, and i cant even go into his apartment, you know. and, of course, my apartment is the actors studio so we cant go there. its really causing a lot of problems, you know. he wont even go away for the weekend because of these cats. george: guys with cats... i dont know. jerry: ive been thinking about asking this girl im, uh, seeing- elaine: vanessa. jerry: vanessa, thank you. ive been thinking about asking her to go away for a couple of days. george: oh, no. no no no no no. id have to advise against that. what, do you know this woman a month? lets see, youre going to be with her seventy-two hours. thats a dating decathlon. elaine: (balancing a spoon on her nose) hey, why dont you take her to that place in vermont i was telling you about? you know, that really charming place with the separate faucets for the hot and cold. shell love it. george: thats exquisite. listen, uh, if its not too much trouble, could you pass me that paper over there? jerry: you better find that grape before it mutates into another life form. there was once a mutant grape that terrorized an entire town in the texas panhandle. they brought in the army, nobody could stop it. apparently it had a pit of steel. george: up again?! this is incredible! im.. im getting it. elaine: youre getting what? george: a stock. jerry: what stock? george: did you ever meet my friend, simons? jerry: maybe. george: he knows this guy, wilkinson. he made a fortune in the stock market. now hes got some new thing. you know, theres supposed to be a big merger. he wasnt even supposed to say anything. you guys should think about doing this too. jerry: how highs it suppose to go? george: i dont know. but simons said that if i wanted to get involved, that wilkinson would tell me the exact right minute to sell. you wanna do it? jerry: boy... i dont know. elaine: id do it but i dont have any money. jerry: what kind of company is it? george: its called sendrax. theyve got some new kind of technique for televising opera. elaine: televising opera? george: some sort of electronic thingy. jerry: well, how much are you going to invest? george: five thousand... ten. ten thousand. five thousand. jerry: boy... george: cmon. wilkinsons got millions invested in this stock. its gone up three points since ive been watching it. jerry: what if i lose it? george: cmon, go for twenty-five hundred. well do it together. come on, come on. were in it together. jerry: all right. twenty-five hundred. george: thats it. waitress: yeah, can i take your order? george: (gesturing to jerry) check the raiser. jerry: my bet? all right. ill open with a tuna sandwich. elaine: tuna? jerry: oh, the dolphin thing? elaine: theyre dying in the nets. jerry: ohhh... you know, the whole concept of lunch is based on tuna. elaine: jerry, cant you incorporate one unselfish act in your daily routine? jerry: hey, when im driving, i let people in ahead of me all the time. im always waving everybody in. go ahead, go ahead, go ahead. ...all right. all right. ill have a chicken salad. elaine: and im going to have an english muffin with margarine on the side and a cup of coffee. waitress: okay. (to george) what about you? george: ill have the tuna. jerry: i have to say, those people talking behind us really ruined that movie for me. vanessa: why didnt you do something? jerry: what do you want me to do? i gave the guy the half-turn. (acts like he did in the movie) then i gave him the full-turn with the eye roll. (does the next look) i mean, beyond that, im risking a punch in the mouth. (to a stock boy) excuse me, do you have these in the puffs? stock boy: no puffs. just flakes. jerry : have you thought any more about that trip? vanessa: yeah, ive been thinking about it. jerry: you know, my friend told me about this great place in vermont. vanessa: i dont know. i just worry about trips like this. its a lot of pressure. jerry: its great! it speeds up the intimacy level. its like putting the relationship in a time compressor. where we would be six months from now we accomplish (snaps his fingers) three days. vanessa: oh, so you want to move our relationship into phase two? jerry: exactly. i love phase two. extra toothbrushes, increased phone call frequency, walking around naked. you know, the presents get a lot better in phase two. vanessa: really? could we go fishing up there? jerry: yeah. we can fish. what? blues, carp, marlin? vanessa: they have marlin in vermont? jerry: oh, big fighting marlin. (jerry acts like he is catching a marlin) vanessa: jerry, the stock is the same as when you checked it earlier. there are no changes after the market closes. the stock is still down. jerry : i know. but this is a different paper. i thought maybe they have, uh, different... sources. jerry: is that my paper? kramer: bad news, my friend. jerry: what? what news? kramer : sendrax. jerry: oh, cmon! its down again?! kramer: two and a half points. jerry: oh, i cant believe it. let me see that. (jerry takes the paper.) thats four and a half points in three days! thats almost half my money! kramer: hey, i told you. jerry: (sarcastic) yeah, you told me. kramer: its all manipulated with junk bonds. you cant win. jerry: theres one thing i dont understand. why does it please you? (to the phone) george costanza, please. kramer: hey, i dont care. im just telling you to (yelling) get rid of that stock, now! jerry: (to the phone) george, whats going on?! kramer: sell it, just say im selling! jerry: (to the phone) well, where is the guy?!... nothing?! almost half my moneys gone... well, call me right back. (jerry hangs up.) nobody can reach wilkinson. he hasnt been home or in his office in the past three days! kramer: you know, i cant believe you put your money in that sendrax. and you couldve invested in my roll-out tie dispenser. jerry: roll-out tie dispenser? what was that one? kramer: okay, youre in a restaurant. youve got a very big meeting coming up... jerry: okay... kramer: (looks at his shirt as if he had a tie on) oh man, you got mustard on your tie! jerry: (going along with it) oh no! kramer: you just (makes the tearing sound) tear it off, and vvvvrrrpppp you got a new one right here. then youre gone. jerry: youre gone all right. kramer: (looking at map) hey, where, where are you going? you gonna take a trip? the map... what... jerry: yeah, im going to vermont with uh vanessa for a few days. kramer: hey, can i use your place? i got a bunch of friends coming over this weekend. jerry: what friends? kramer: well, its just some people i met at a rock concert. (phone rings.) do you mind if they use your bed? (jerry give kramer a look.) cause theyre really good people, jerry. im telling you. you know, theyre anarchists. theyre.. theyre.. theyre.. huge. jerry: george- what?! youre kidding... well, whats wrong?... so, what are we gonna do?... great!... all right, ill speak to you later. (he hangs up.) wilkinson, the guy whos supposed to tell us when to sell the stock, hes in the hospital. jerry: so you dont know whats wrong with him? george: all simons was able to find out is that hes in the hospital. jerry: okay, fine. has simons been in touch with him? george: of course hes been in touch with him. hes left two messages. he just hasnt heard back yet, thats all. jerry: well, this is it. im selling. george: just give it a little more time. jerry: i never shouldve gotten involved in this. im a nervous wreck. im not cut out for investing. george: all right, all right. thats it. im gonna go down there. jerry: where? george: to the hospital. jerry: the hospital? george: im going to find out whats going on. all right? jerry: are you nuts? you dont even know the guy. george: so what? ill start talking to him, you know, casual, and ill work my way around to it. jerry: what if hes in an iron lung or something? what are you gonna do? (jerry knocks on imaginary glass.) how you feeling, mr. wilkinson? (he makes a hissing sound.) by the way, whats happening with sendrax? george: maybe hes resting. jerry: who goes to the hospital to rest? george: what are you, a doctor? jerry: okay, fine, fine. when are you going down there? george: today. im going today. just dont do anything until you hear from me. jerry: all right. george: (to the woman) boy, i have to get to a bathroom. dry cleaner: (to jerry) may i help you? jerry: yeah. i picked up this shirt here yesterday. its completely shrunk. theres absolutely no way i can wear it. dry cleaner: when did you bring it in? jerry: whats the difference? look at it! do you see the size of this shirt?! dry cleaner: you got a receipt? jerry: i cant find the receipt. dry cleaner: you should get the receipt. jerry: look, forget about the receipt, all right? even if i had the receipt- look at it! its a hand puppet. what am i gonna do with this?! dry cleaner: yes, but how do i know we did the shirt? jerry: what do you think this is a little scam i have? i take this tiny shirt all over the city conning dry cleaners out of money? in fact, forget the money. i dont even want the money. i just once, i would like to hear a dry cleaner admit that something was their fault. thats what i want. i want an admission of guilt. dry cleaner: maybe you asked for it to be washed. jerry: no! dry-cleaned. dry cleane: let me explain to you something, okay? with certain types of fabrics, different chemicals can react, causing- jerry: you shrunk it! you know you shrunk it! just tell me that you shrunk it! dry cleaner: (looks around making sure not too many people are listening) i shrunk it. jerry: i think the only reason we go to the dry cleaner is so i can say to the dry cleaner, well, its ruined. and of course, the dry cleaner can respond, its not our fault. were not responsible. we just ruin the clothes. that ends our legal obligation. you see, the whole problem with dry cleaning is that we all believe that this is actually possible. th-right? theyre cleaning our clothes, but theyre not getting anything wet. its all dry. i know theres gotta be some liquids back there, some fluids that theyre using. theres no such thing as dry cleaning. when you get something on your shirt, ever get something on your shirt and try to get it off like that (jerry brushes off his shirt.) thats dry cleaning. i dont think thats what theyre doing back there. they dont have eighty guys going, come on, hurry up! theres a lot of shirts today! jerry: bless you. elaine: thank you. what evidence is there that cats are so smart, anyway? huh? what do they do? because theyre clean? i am sorry. my uncle pete showers four times a day and he cant count to ten, so dont give me hygiene. jerry : so what are you gonna do? elaine: i dont know. i cant think of any solution, unless of course they should meet with some unfortunate accident. what do you think a hit man would charge to rub out a couple of cats? jerry: well, it couldnt be too expensive. thirteen, fourteen bucks a cat? elaine: what do you think, jerry? you wanna make twenty-eight bucks? jerry: im no cat killer. elaine: how about we go over there right now and we shave them? jerry: id really like to go, elaine. but, george is coming back from the hospital. i gotta wait for him. but otherwise i would definitely go. elaine: he actually went to the hospital? jerry: yeah. elaine: oh man, hes nuts. jerry: yeah, hes nuts. you wanta bump off a couple of cats. (enter kramer, holding a paper up to jerry.) i know, i know. its down again. kramer: how much are you down altogether? jerry: i dont know.. fifteen hundred dollars. kramer: wow. jerry: you dont have to say wow. i know its wow. (kramer smiling) and theres that smile again. well, what is that? (intercom buzzes.) its george. kramer: oh, look at this one by the bus stop. jerry, come here. take a look at this. jerry: i really dont need to look. kramer: what a body. yeeaahh. thats for me. jerry: yeah, and youre just what shes looking for too a stranger leering through a pair of binoculars ten floors up. kramer: im gonna go down there and try and talk to her. jerry: what? what? did you go down there? (george nods.) did he tell you whats gonna happen? (george shakes his head.) how long were you there? george: fifteen seconds. jerry: you told him you knew simons? george: yeah, i mentioned simons. next thing i know, im in the parking lot. perhaps they had some sort of a falling out. ill tell you one thing. i dont know what hes got. but for a sick guy, hes very strong. jerry: well, thats it. look, im going to vermont. i dont want to think about this. im selling. elaine: didnt work, huh? george: (laughs) not quite. elaine: we-well, what are you gonna do about the stock? george: im keeping it. im going down with the ship. jerry: so i know this guy. im getting all my sneakers at a discount now. vanessa: i know. you mentioned it. jerry: oh yeah, right. jerry: (thinking) oh god. get me out of here. what a mistake. what made me think this would work? and ive still got another day! ive got nothing left to say. wait... wait... got one. (to vanessa) thats a nice watch. do you wind it? vanessa: no, its got a little battery. jerry: well, thats good. jerry: (thinking) well, the drive home should be a delight. im speeding the whole way. let them throw me in jail. i dont care. (to vanessa) that's the manager? do you want me to see if we can get another room? vanessa: no, its okay. jerry: so, i guess you dont find the separate faucets for the hot and cold, charming? vanessa: not especially. jerry: well, what do you want to do this afternoon? vanessa: what can we do? its raining. jerry: we cold play sorry! we cold play steal the old mans bundle. (vanessa not amused; jerry thinking) maybe i can get an extension cord and hang myself. (to vanessa) what kind of perfume is that youre wearing? vanessa: oh, youve never heard of it. jerry: no, what? what kind is it? vanessa: i cant tell you. jerry: (thinking) yeah, thats normal. (to a man nearby) excuse me, sir. could i have a look at that business section? vanessa: that stock? i thought you got out of that? jerry: i did. im just curious. its been almost a week. i want to check it out. (he finds the stock.) six points? (to vanessa) its up six points! vanessa: i told you not to sell. jerry: you did not tell me not to sell. vanessa: i said the market fluctuates. remember? jerry: look, vanessa, of course the market fluctuates. everybody knows that. i just got fluctuated out of four thousand dollars! vanessa: thats probably why we're- jerry: what? vanessa: forget it. jerry: no, what? thats probably why.. vanessa: thats probably why were staying here, because you lost money on the stock. jerry: (thinking) so, what am i looking at here? twenty-nine hours to go. well, at least i got plenty of time to find out the name of that perfume... george: (laughing) have something else. cmon, have a little dessert? jerry : im good, thanks. george: elaine, get something! its all taken care of. elaine: im kinda full. george: so dont finish it. jerry: (acidly) shes full. so, big daddy. im just curious. how much did you clear on your little transaction there, all told? george: i dont like to discuss figures. jerry: how much? george: i dont know, what? eight thousand. its a hyundai. get out of here. i told you not to sell. simons made money, wilkinson cleaned up. jerry: so, wilkinsons out of the hospital now? george : no. youd be surprised. you dont recover that quickly from a nose job. elaine: oh god. jerry: is that still from the cats? elaine: no, i just have a cold. jerry: so, what ever happened with that? elaine: i gave him an ultimatum. george: he chose the cats? elaine: theyre very clean animals. jerry: i gotta say, thats pretty sad. losing out to a cat. elaine: almost as bad as losing out to a perfume. george: i told you those trips were relationship killers. too bad you cant get your buddy superman to fly around the earth at super speed and reverse time. youd get all the money back, you could have avoided the whole trip to vermont... elaine: superman can go back in time? jerry: we went over that. george: pst. (moves in close with elaine and jerry) wilkinsons got a bite on a new one. petramco corp. out of, uh springfield. i think. theyre about to introduce some sort of a robot butcher. jerry: a robot butcher? george: shhhhh. if you want to get in, theres very little time. (calling to the waitress) sweetheart.. (waitress approaches and tears off a check. george stops her.) no, no, no. that ought to cover it. (he hands her some money; she turns to leave; george stops her.) just a second. just a... let me jus-peek... (he looks at the check, then takes some money out of her hand. george urges jerry and elaine to eat.) come on, come on, come on... jerry: im not an investor. people always tell me, you should have your money working for you. ive decided ill do the work. im gonna let the money relax. you know what i mean? cause you send your money out there working for you a lot of times, it gets fired. you go back there, what happened? i had my money. it was here, it was working for me. yeah, i remember your money. showing up late. taking time off. we had to let him go. jerry: im always in traffic with the lane expert. you know this type of person? constantly reevaluating their lane choice. never quite sure, is this the best lane for me? for my life? theyre always a little bit ahead of you, can i get in over there? could i get in over here? could i get in there? yeah, come on over here, pal. were zoomin over here. this is the secret lane, nobody knows about it. the ultimate, i think the ultimate psychological test of traffic is the total dead stop. not even rolling. and you look out the window, you can see gum clearly. so we know that in the future traffic will get even worse than that. i mean, what will happen? will it start moving backwords, i wonder? i mean, is that possible? that someday well be going, (jerry pretends hes driving in reverse.) boy, this is some really bad traffic now, boy. this, is really bad. im gonna try to get off and get back on going the other way. george: she cant kill me right? jerry: no, of course not. george: people break up all the time. jerry: everyday. george: it just didnt work out. what can i do? i wanted to love her. i tried to love her. i couldnt. jerry: you tried. george: i kept looking at her face. id go, cmon, love her. love her! jerry: did you tell her you loved her? george: oh, i had no choice. she squeezed it out of me! shed tell me she loved me. all right, at first, i just look at her. id go, oh, really? or uh, boy, thats, thats something. but, eventually you have to come back with, well, i love you. you know, you can only hold out for so long. jerry: youre a human being. george: and i didnt even ask her out. she asked me out first. she called me up. what was i supposed to do? say no? (laughs) i cant do that to someone. jerry: youre too nice a guy. george: i am. im a nice guy. and she seduced me! we were in my apartment, im sitting on the couch, shes on the chair. i get up to go to the bathroom, i come back, shes on the couch. what am i supposed to do? not do anything? i couldnt do that. i wouldve insulted her. jerry: youre flesh and blood. george: i had nothing to do wtih any of this! i met all her friends, i didnt want to meet them. i kept trying to avoid it. i knew it would only get me in deeper. but they were everywhere! they kept popping up all over the place. this is nancy, this is susan, this is amy, this is my cousin, this is my brother, this is my father... its like im in quicksand. jerry: i told you when i met her. george: my back is killing me. jerry: you gotta go to my chiropractor, hes the best. george: oh yeah, everybodys guy is the best. jerry: im gonna make an appointment for you. well go together. george: please. they dont do anything. look, do i have to break up with her in person? cant i do it over the phone? i-i have no stomach for these things. jerry: you should just do it like a band-aid. one motion! right off! elaine: hi. jerry: hi. elaine: hey, what are you doing? george: im letting you in. elaine: oh no. no. i dont want to sit in the back. ill be left out of the conversation. george: no, you wont. elaine: yes, i will, george. ill have to stick my chin on top of the seat. george: okay. elaine: why cant you sit in the middle? george: please, it doesnt look good. boy, boy, girl. elaine: youre afraid to sit next to a man. youre a little homophobic, arent ya? george: is it that obvious? elaine: hello, jerry. jerry: hello. elaine: did you get a haircut? jerry: no, shower. so, where are we eating? elaine: tell me if you think this is strange. theres this guy who lives in my building, who i was introduced to a couple of years ago by a friend. hes a uh teacher, or something. anyway, after we met, whenever wed run into each other on the street, or in the lobby, or whatever, we would stop and we would chat a little. nothing much. little pleasantries. hes a nice guy, hes got a family. then after a while, i noticed there was not more stopping. just saying hello and continuing on our way. and then the verbal hellos stopped, and we just went into these little sort of nods of recognition. so, fine. i figure, thats where this relationship is finally gonna settle polite nodding. then one day, he doesnt nod. like i dont exist?! he went from nods to nothing. george: (singing; imitating tony bennett) you know, id go from nods to nothing... elaine: and now, theres this intense animosity whenever we pass. i mean, its like we really hate each other. its based on nothing. jerry: a relationship is an organism. you created this thing and then you starved it so it turned against you. same thing happened in the blob. george: i think you absolutely have to say something to this guy. confront him. elaine: really? george: yes. elaine: you would do that? george: if i was a different person. jerry: hello... hello. is glen there?... im sorry. is this 805-555-3234?... yes, i know i have the wrong number, but i just want to know if i dialed wrong or if... kramer: (to the intercom) come on up. jerry: (to the phone) oh, its you again. see, now if you had answered me, i wouldnt have had to do this. now thats two long distance calls i made to you why cant you... (the guy hangs up on jerry again; to nobody) why? why do they just hang up like that? thank you very much. kramer: taste this. jerry: no, i just had a sandwich. kramer: no, taste it. taste it. jerry: i dont want cantaloupe now. kramer: youve never had cantaloupe like this before... jerry: i only eat cantaloupe at certain times... kramer: ...jerry. this is great cantaloupe. jerry: ...all right! kramer: uh-huh. its good? jerry: its very good. kramer: good, huh? jerry: good. kramer: i got it at joes. jerry: uh-huh. kramer: forty-nine cents a pound. thats practically half than what youre paying at the supermarket. i dont know why you dont go to joes. jerry: its too far. kramer: its three blocks further. you can use my shopping cart.. jerry: im not pulling a shopping cart. what, am i suppose to wear a kerchief? put stockings on and roll em down below my knee? kramer: see, the other thing is, if you dont like anything, he takes it right back. jerry: i dont return fruit. fruit is a gamble. i know that going in. george: im outta there. i did it! its over. jerry: you did it? what happened? george: i told her. in the kitchen which was risky cause its near all the knives. i started with the word listen. jerry: uh-huh... george: i said, listen marlene, and then the next thing i know, im in the middle of it. and theres this voice inside of me going, youre doing it! youre doing it! and then she started to cry, and i weakened a bit. i almost relented, but the voice, jerry, the voice said, keep going, keep going. youre almost out! its like i was making a prison break, you know, and im heading for the wall, and i trip and i twist my ankle, and they throw the light on you, you know. so, somehow i get though the crying and i keep running. then the cursing started. shes firing at me from the guard tower. son of a bang! son of a boom! i get to the top of the wall the front door. i opened it up, im one foot away, i took one last look around the penitentiary, and i jumped! jerry: see, its never as bad as you imagine. kramer: i liked marlene. whats her number? george: uh, no, i, i dont think so. jerry: (to kramer) could you stop that smacking? kramer: george, i want you to taste this cantaloupe. george: oh no, thank you. kramer: its the best cantaloupe i ever had. george: no, really. no, no, thanks. kramer: jerry, tell him how good this cantaloupe is. jerry: its very good cantaloupe. (kramer leaves; to george) so thats it? youre out? george: except for one small problem. hah, i left some books in her apartment. jerry: so, go get them. george: oh, no no, i cant go back there. jerry, its so awkward and, you know, it could be dangerous sexually. something could happen, id be right back where i started from. jerry: so forget about the books. did you read them? george: well, yeah. jerry: what do you need them for? george: i dont know. theyre books. jerry: what is this obsession people have with books? they put them in their houses like theyre trophies. what do you need it for after you read it? george: theyre my books. jerry: so you want me to get the books? is that it? marlene: ...so, it mustve been ninety-five degrees that night, and everyones just standing around the pool with little drinks in their hands. i was wearing my old jeans and t-shirt. and i dont know, i was just in one of those moods. so i said to myself, marlene, just do it. and i jumped in. and as im getting out, i feel all these eyes on me, and i look up and everyone is just staring at me. jerry: so whatd you do? marlene: well, nothing. its no skin off my hide if people like to look. i just didnt see what the big attraction was. jerry: well, i have a general idea what it was. i could take a guess. marlene: hey, you know, jerry, just because george and i dont see each other anymore, it doesnt mean we shouldnt stay friends. jerry: no. marlene: good enough. im really glad we got that settled. jerry: i dont know how this happened. george: jerry, its not my fault. jerry: no, no. its not your fault. books, books, i need my books. have you re-read those books yet, by the way? you know the great thing? when you read moby dick the second time, ahab and the whale become good friends. you know, its not like marlenes a bad person or anything, but, my god! i mean, weve had like three lunches and a movie, and she never stops calling. (george nods.) and its these meaningless, purposeless, blather calls. she never asks if im busy or anything. i just pick up the phone, and shes in the middle of a sentence! george: it's standard. has she left you one of those messages where she uses up the whole machine? jerry: (disgusted) ohh! you know, and sometimes shell go, (imitates marlene) hello, jerry? and ill go, oh, hi marlene. and then its jerry... jerry & george: i dunno sometimes... george: what trying to get off the phone? jerry: (more disgusted) ohhhh! you cant! its impossible! theres no break in the conversation where you can go, all right then... you know, it just goes on and on and on without a break in the wall. i mean, i gotta put a stop to this. george: just do it like a band-aid. one motion. right off! (beat) she is sexy though. dont you think? jerry: yeah. yes, she is. receptionist: mr. costanza? george: yeah. receptionist: the doctor will see you now. george: (to jerry, sarcastically) yeah, doctor. im going to have to wait in that little room all by myself, arent i? (he picks up a crossword puzzle.) i better take this. i hate the little room. (george walks into the hallway that leads to the doctors office.) oh, hello, doctor. jerry: the waiting room. i hate when they make you wait in the room. cause it says waiting room. theres no chance of not waiting. cause they call it the waiting room, theyre gonna use it. theyve got it. its all set up for you to wait. and you sit there, you know, and youve got your little magazine. you pretend youre reading it, but youre really looking at the other people. you know, youre thinking about about them. things like, i wonder what hes got. as soon as she goes, im getting her magazine. and then, they finally call you and its a very exciting moment. they finally call you, and you stand up and you kinda look around at the other people in the room. well, i guess ive been chosen. ill see you all later. you know, so you think youre going to see the doctor, but youre not, are you? no. youre going into the next waiting room the littler waiting room. but if they are, you know, doing some sort of medical thing to you, you want to be in the smallest room that they have, i think. you dont wnat to be in the largest room that they have. you know what i mean? you ever see these operating theaters, that they have, with like, stadium seating? you dont want them doing anything to you that makes other doctors go, i have to see this! are you kidding? are they really gonna do that to him? are there seats? can we get in? do they scalp tickets to these things? i got two for the winslow tumor, i got two... jerry: so, how was it? george: i was in there for two minutes. he didnt do anything. touch this, feel that seventy-five bucks! jerry: well, its a first visit. george: whats seventy-five bucks?! what, am i seeing sinatra in there?! am i being entertained? i dont understand this. im only paying half. jerry: you cant do that. george: why not? jerry: hes a doctor. you gotta pay what he says. george: oh, no no no. i pay what i say. marlene: are you feeling weird? jerry: no, im fine. marlene: nothing really happened. jerry: yeah, i know. marlene: we just kissed a little. people kiss. jerry: yeah. marlene: well... night. jerry: (belated) good night. kramer: hey. jerry: hey. kramer: i got it! this time, i got it! jerry : all right. kramer: hips! see, its all hips. jerry: uh-huh. kramer: you gotta come through with the hips first. jerry: that is out there. kramer: joes? jerry: no, supermarket. kramer: well, is it good? jerry: its uh okay. kramer: let me taste it. kramer: see, that stinks. you cant eat that. you should take that back. jerry: im not taking it back. kramer: all right, ill take it back. im going by there. jerry: i dont care about it. kramer: jerry, you should care. cantaloupe like this should be taken out of circulation. jerry: all right. take it back. jerry’s message: leave a message, ill call you back. marlene: (from the phone) jerry, have you ever taken a bath in the dark? if im not talking into the soap right now, call me back. kramer: well? jerry: marlene. kramer: (smiles) oh. oh, marlene... jerry: yeah, i took her home one night we kinda started up a little bit in the car. kramer: i thought you were trying to get rid of her? jerry: i was. but, shes got me, like, hypnotized. kramer: does george know? jerry: no, hed go nuts. kramer: yeah, no kidding. jerry: i feel terrible. (kramer smiling) i mean, ive seen her a couple of times since then, and i know i cant go any further, but... shes just got this like, psychosexual hold over me. i just want her, i cant breathe. its like a drug. kramer: whoa, psychosexual. jerry: i dont know how im going to tell him. kramer: man, i dont understand people. i mean, why would george want to deprive you of pleasure? is it just me? jerry: its partially you, yeah. kramer: youre his friend. better that she should sleep with someone else? some jerk that he doesnt even know? jerry: well, he cant kill me, right? kramer: youre a human being. jerry: i mean, she called me. i havent called her. she started it. kramer: youre flesh and blood. jerry: im a nice guy. elaine: hi. jerry: (excited) oh, my little airplane lamp. elaine: you know, you have the slowest elevator in the entire city. thats hard to get used to when youre in so many other fast ones. jerry: well, the apartment elevators are always slower than the offices, because you dont have to be home on time. elaine: unless youre married to a dictator. jerry: yeah... because they would be very demanding people. elaine: right. exactly. so i imagine at some point somebodys going to offer me some cantaloupe? kramer: nope. no good. jerry: well, you know what they say. lucky in love, unlucky with fruit. kramer: well, im taking this back. elaine: so, i had what you might call a little encounter this morning. jerry: really? that guy who stopped saying hello? elaine: yes. jerry: you talked to him? elaine: yes. i spotted him getting his mail. and at first, i was just going to walk on by, but then i thought, no no no. no. do not be afraid of this man. jerry: right. elaine: so, i walked up behind him and i tapped him on the shoulder. and i said, hi, remember me? and he furrows his brow, as if hes really trying to figure it out. so i said to him, i said, you little phony. you know exactly who i am. jerry: you said "you little phony"? elaine: i did. i most certainly did. and he said, he goes, oh, yeah. youre jeanettes friend. we did meet once. and i said, well, how do you go from that to totally ignoring a person when they walk by? jerry: this is amazing. elaine: and he says, he says, look, i just didnt want to say hello anymore, all right? and i said, fine. fine. i didnt want to say hello anymore either, but just i wanted you to know that im aware of it! jerry: you are the queen of confrontation. youre my new hero. in fact, youve inspired me. im gonna call george about something right now. elaine: this cantaloupe stinks. george: (considers for a second) i dont care. jerry: youre kidding. george: no, i dont care. jerry: you mean that? george: absolutely. jerry: you dont care? george: no. jerry: how could you not care? george: i dont know. but i dont. im actually almost happy to hear it. jerry: i thought youd be upset. george: i guess i should be, but im not. jerry: am i a bad person? did i do something terrible? george: youre a fine person. youre a humanitarian. shes very sexy. jerry: that voice. that voice. shes driving me crazy. george: i know. i know. jerry: so i can see her tonight, and you dont care? george: see her tonight. see her tomorrow. go. knock yourself out. shes too crazy for me. jerry: all right. as long as youre okay. because i cant stop thinking about her. george: im okay. im fine. im wonderful. i never felt better in my whole life. jerry: good. and ill tell you what... you dont have to pay me back the thirty-five i gave to the chiropractor for the rest of your bill. george: (shocked and angry) you paid that crook?! jerry: i had to. george: he didnt do anything, jerry. its a scam! who told you to do that? jerry: it was embarrassing to me. george: oh, i was trying to make a point. jerry: why dont you make a point with your own doctor? (george gulps.) whats wrong? george: (gasping) i think i swallowed a fly! i swallowed a fly! what do i do? (he turns to a coffee shop patron at the counter.) what can happen?! jerry: so, you wanna come up for a few minutes? marlene: im sorry, jerry. i just dont think this is gonna work. jerry: really? i thought... marlene: i know, im sorry. jerry: gee, i just didnt expect it from the way youve been acting. marlene: you sure you want to talk about this? cause i sure dont. jerry: of course i want to talk about it. marlene: well, okay. i guess things changed for me on tuesday night. jerry: tuesday night? what happened tuesday night? marlene: i saw your act. jerry: my act? wha-what does that have to do with anything? marlene: well, to be honest, it just didnt make it for me. its just so much fluff. jerry: i cant believe this. so what are you saying? you didnt like my act, so thats it? marlene: i cant be with someone if i dont respect what they do. jerry: youre a cashier! marlene: look, jerry, its just wasn't my kind of humor. jerry: you cant go by the audience that night. it was late. they were terrible. marlene: i heard the material. jerry: i have other stuff. y-you should come see me on the weekend. jerry: women need to like the job of the guy theyre with. if they dont like the job, they dont like the guy. men know this. which is why we make up the phony, bogus names for the jobs that we have. well, right now, im the regional management supervisor. im in development, research, consulting... men on the other hand if they are physically attracted to a woman are not that concerned with her job. are we? men dont really care. menll just go, really? slaughterhouse? is that where you work? that sounds interesting. so whaddaya got a big cleaver there? youre just lopping their heads off? that sounds great! listen, why dont you shower up, and well get some burgers and catch a movie. jerry: my parents live in florida now. they moved there last year. they didnt want to move to florida, but theyre in their sixties, and thats the law. you know how it works. they got the leisure police. they pull up in front of the old peoples house with a golf cart, jump out, lets go pop, white belt, white pants, white shoes, get in the back. drop the snow shovel right there. drop it! i am not much for the family gathering. you know, you sit there, and the conversations so boring. its so dull. and you start to fantasize. you know, you think, what if i just got up and jumped out that window? what would it be like? just crashed right through the glass. you know. come back in, theres broken glass, everybodys all upset. no, im all right. i was just a little bored there. and uh no, im fine. i came back. i wanted to hear a little more about that hummel collection, aunt rose. lets pick it up right there. helen: you have so many nice jackets. i dont know why you had to bring this jacket. who wears a jacket like this? whats wrong with that nice gray one? you have beautiful clothes. they sit in your closet. morty, you cant wear this! morty: are you getting that? helen: i thought you were getting it. morty: should i pick up? helen: you want me to get that? morty: ill get it! helen: ill get it! helen: hello?... hello? jerry: hi. helen: hi. jerry: (to morty) would you make this thing lower! i can hear it on the street! morty: so, howd you do? jerry: we won. i made an incredible play in the field! there was a tag-up at third base and i threw the guy out from left field on a fly! well be in the championship game wednesday because of me. it was the single greatest moment in my life. helen: this is your greatest moment? a game? jerry: well, no. sharon besser, of course. morty: you know what my greatest moment was, dont you? nineteen-forty-six. i went to work for harry flemming and i came up with the idea for the beltless trenchcoat. helen: jerry, look at this sport jacket. is this a jacket to wear to an anniversary party? jerry: well, the mans an individualist he worked for harry flemming. he knows what hes doing. helen: but its their 50th anniversary. morty: your mother doesn't like my taste in clothing. helen: you know, i spoke to manya and isaac on the phone today. they invited you again. i think you should go. jerry: first of all, i made plans with elaine. helen: so bring her. jerry: i dont even know them. what is she, your second cousin? i mean, ive met them three times in my life. morty: i dont know her either. (gesturing to helen) she makes me fly all the way from florida for this, and then she criticizes my jacket. helen: at least come and say hello, have a cup of coffee, then youll leave. morty: how come he gets to leave? jerry: if i wind up sitting next to uncle leo, i am leaving. hes always grabbing my arm when he talks to me. i guess its because so many people have left in the middle of his conversation. morty: and its always about jeffrey, right? jerry: yeah. he talks about him like he split the atom. the kid works for the parks department. kramer: morty, are you coming in? morty: oh, yeah. i forgot all about it. kramer: (to jerry) hey, howd you do? jerry: we won. were in the finals on wednesday. kramer: yeah! jerry: (to kramer and morty) what is this about? kramer: im completely changing the configuration of the apartment. youre not gonna believe it when you see it. a whole new lifestyle. jerry: what are you doing? kramer: levels. jerry: levels? kramer: yeah, im getting rid of all my furniture. all of it. and im going to build these different levels, with steps, and itll all be carpeted with a lot of pillows. you know, like ancient egypt. jerry: you drew up plans for this? kramer: no no. its all in my head. morty: i dont know how youre going to be comfortable like that. kramer: oh, ill be comfortable. jerry: when do you intend to do this? kramer: ohh... should be done by the end of the month. jerry: youre doing this yourself? kramer: its a simple job. why, you dont think i can? jerry: oh, no. its not that i dont think you can. i know that you cant, and im positive that you wont. kramer: well, i got the tools. i got the pillows. all i need is the lumber. morty: hey, thats some big job. jerry: i, dont see it happening. kramer: well, this time, this time youre wrong. cmon. ill even bet you. jerry: seriously? helen: i dont want you betting. morty, dont let him bet. kramer: a big dinner with dessert. but ive got till the end of the month. jerry: ill give you a year. kramer: no no no. end of the month. jerry: its a bet. jerry: (to elaine) seriously, do you wanna switch chairs? elaine: no, no. im fine. uncle leo: jerry, are you listening to this? jerry: yeah, uncle leo. uncle leo: so, so, now the parks commissioner is recommending jeffrey for a citation. jerry: right. for the reducing of the pond scum? uncle leo: no, for the walking tours. jerry: oh, yeah. where the people eat the plant life. the edible foliage tour. uncle leo: thats exactly right. he knows the whole history of the park. for two hours hes talking and answering questions. but you want to know something? whenever he has a problem with one of these high-powered big shots in the parks department, you know who he calls? jerry: mickey mantle? elaine: (saving jerry from leo) jerry, jerry. did you taste these peas? (to manya) these peas are great! jerry: (eating a forkful) these peas are bursting with country fresh flavor. elaine: mmm... phenomenal peas. morty: are you ready for dessert? jerry: well, actually, we do have to kind of get going. manya: (surprised) youre going? elaine: oh uh, i dont really eat dessert. im dieting. jerry: yeah, i cant eat dessert either. the sugar makes my ankles swell up, and i cant dance. manya : cant dance? helen: hes kidding, manya. manya: is that a joke? helen: so, did you hear claires getting married? manya: yeah, yeah.. helen: i hear the fella owns a couple of racehorses. you know, trotters, like at yonkers. jerry: horses? theyre like big riding dogs. elaine: what about ponies? what kind of abnormal animal is that? and those kids who had their own ponies... jerry: i know, i hated those kids. in fact, i hate anyone that ever had a pony when they were growing up. manya: (angry) i had a pony. jerry: well, i didnt uh really mean a pony, per se... manya: when i was a little girl in poland, we all had ponies. my sister had pony, my cousin had pony... so, whats wrong with that? jerry: nothing. nothing at all. i was just merely expressing... helen: should we have coffee? whos having coffee? manya: he was a beautiful pony! and i loved him. jerry: well, im sure you did. who wouldnt love a pony? who wouldnt love a person that had a pony? manya: you! you said so! jerry: no, see, we didnt have ponies. im sure at that time in poland, they were very common. they were probably like compact cars.. manya: thats it! i had enough! isaac: have your coffee, everybody. shes a little upset. its been an emotional day. jerry: i didnt know she had a pony. how was i to know she had a pony? who figures an immigrants going to have a pony? do you know what the odds are on that? i mean, in all the pictures i saw of immigrants on boats coming into new york harbor, i never saw one of them sittin on a pony. why would anybody come here if they had a pony? who leaves a country packed with ponies to come to a non-pony country? it doesnt make sense. am i wrong? jerry: ill drive you to the airport. helen: no, were taking a cab. jerry: i just hope that whole pony incident didnt put a damper on the trip. helen: dont be ridiculous. it was a misunderstanding. morty: hey, i agree with him. nobody likes a kid with a pony. jerry: well, if you ever talk to her, tell her im sorry. elaine too. she feels terrible. helen: you know, you should give manya a call. jerry: maybe i will. kramer: oh, hi. i uh just came to say goodbye. kramer: need any help with those? morty: its nothing. i got it. so, how are your levels coming along? kramer: oh, well... i decided im not gonna do it. jerry: (laughing) really? what a shock. helen: goodbye, jerry. jerry: take care. helen: well call you. morty: bye, jer. jerry: bye, dad. take it easy. morty: bye, mr. kramer. kramer: yeah. so long, morty. jerry: so, when do i get my dinner? kramer: theres no dinner. the bets off. im not gonna do it. jerry: yes, i know youre not gonna do it. thats why i bet. kramer: ya well, theres no bet if im not doing it. jerry: thats the bet! that youre not doing it! kramer: yeah, well, i could do it. i dont wanna do it. jerry: we didnt bet on if you wanted to. we bet on if it would be done. kramer: and it could be done. jerry: well, of course it could be done! anything could be done! but it only is done if its done! show me the levels! the bet is the levels! kramer: i dont want the levels! jerry: thats the bet! (the phone rings; jerry answers it.) hello?... no- oh, hi... (kramer leaves) no, they just left... oh, my god... hang on a second. maybe i can still catch em. (jerry goes over to the window and opens it; calling out the window) ma! ma! up here! dont get in the cab! manya died! manya died!! helen: who did you talk to? jerry: uncle leo. helen: and whens the funeral? jerry: i dont know. he said hed call back. morty: you know what this means, dont you? we lost the supersaver. those tickets are non-refundable. helen: she just had a check-up. the doctor said she was fine. unless... jerry: what? helen: what? nothing. jerry: you dont think... what? the pony remark? helen: oh, dont be ridiculous. she was an old woman. jerry: you dont think that i killed her? morty: you know what the flight backll cost us? jerry: it was just an innocent comment! i didnt know she had a pony! morty: maybe we can get an army transport flight. they got a base in sarasota, i think. jerry: the whole thing was taking out of context. it was a joke. (the phone rings.) thats probably uncle leo. helen: hello?... yes, i know... well, its just one of those things... sure, sure, well see you then. helen: the funerals wednesday. jerry: wednesday? what, what wednesday? helen: two o clock, wednesday. jerry: ah helen: what? jerry: ive got the softball game on wednesday. its the championship. helen: so? youre not obligated. go play in your game. jerry: i didnt even know the woman. helen: so dont go. jerry: i mean i met her three times. i dont even know her last name. helen: jerry, no ones forcing you. jerry: i mean, who has a funeral on a wednesday? thats what i want to know. i mean, its the championship, im hitting everything. helen: i dont have a dress to wear. (to morty) and you. you dont have anything. morty: i got my sport jacket. helen: youre not wearing that to a funeral. morty: whats wrong with it? helen: it looks ridiculous. morty: what? im gonna buy a new sport jacket now? jerry: i dont know what to do. morty: (depressed) you know what this funerals gonna wind up costing me? oh boy! jerry: we dont understand death. and the proof of this is that we give dead people a pillow. and, uh, i mean, hey, you know. i think if you cant stretch out and get some solid rest at that point, i dont see how bedding accessories really make the difference. i mean, they got the guy in a suit with a pillow. now, is he going to a meeting, or is he catching forty winks? i mean, lets make up our mind where we think theyre going. elaine: i actually like ponies. i was just trying to make conversation. what times your game? jerry: two forty-five. elaine: and what times the funeral? jerry: two o clock. elaine: how long does a funeral take? jerry: depends on how nice the person was. but you gotta figure, even oswald took forty-five minutes. elaine: so you cant do both? jerry: you know, if the situation were reversed and manya had some mah-jongg championship or something, i wouldnt expect her to go to my funeral. i would understand. elaine: how can you even consider not going? george: you know, ive been thinking. i cannot envision any circumstances in which ill ever have the opportunity to have sex again. hows it gonna happen? i just dont see how it could occur. elaine: you know, funerals always make me think about my own mortality and how im actually gonna die someday. me, dead. imagine that. george: they always make me take stock of my life. and how ive pretty much wasted all of it, and how i plan to continue wasting it. jerry: i know, and then you say to yourself, from this moment on, im not gonna waste any more of it. but then you go, how? what can i do thats not wasting it? elaine: is this a waste of time? what should we be doing? cant you have coffee with people? george: you know, i cant believe youre even considering not playing. we need you. youre hitting everything. elaine: he has to go. he may have killed her. jerry: me? what about you? you brought up the pony. elaine: oh, yeah, but i didnt say i hated anyone who had one. george: (to jerry) whos going to play left field? jerry: bender. george: bender? he cant play left. he stinks. i just dont see what purpose is it gonna serve your going? i mean, you think dead peole care whos at their funeral? they dont even know theyre having a funeral. its not like shes hanging out in the back going, i cant believe jerry didnt show up. elaine: maybe shes there in spirit. how about that? george: if youre a spirit, and you can travel to other dimensions and galaxies, and find out the mysteries of the universe, you think shes gonna wanna hang around drexlers funeral home on ocean parkway? elaine: george, i met this woman. she is not traveling to any other dimensions. george: you know how easy it is for dead people to travel? its not like getting on a bus. one second. (snaps his fingers) its all mental. jerry: fifty years they were married. now hes moving to pheonix. elaine: phoenix? whats happening with his appartment? jerry: i dont know. theyve been in there since, like, world war ii. the rents three hundred a month. elaine: three hundred a month? oh, my god. eulogist: although this may seem like a sad event, it should not be a day of mourning. for manya had a rich, fulfilling life. she grew up in a different world a simpler world with loving parents, a beautiful home in the country, and from what i understand, she eve had a pony. (jerry throws up his hands.) oh, how she loved that pony. even in her declining years, whenever she would speak of it, her eyes would light up. its lustrous coat, its flowing mane. it was the pride of krakow. jerry: well, the games starting just about now. helen: it was good that the two of you came. it was a nice gesture. nephew: im not a doctor yet, uncle morty. im just an intern. i cant write a note to an airline. morty: youve got your degree. they dont care. they just want to see something. jerry: i just wanted to say how sorry i was... uncle leo: jerry, you wanna hear something? your cousin, jeffrey, is switching parks. theyre transferring him to riverside - so hell completely revamp that operation, you understand? jerry: yeah. uncle leo: hell do in riverside what he did in central park. more money. so, thats your cousin. morty: you dont understand, ive never paid a full fare. jerry: once again, i just want to say how sorry i am about the other night. elaine: oh, me too. isaac: oh, no no no. she forgot all about that. she was much more upset about the potato salad. elaine: so, i understand youre moving to phoenix? isaac: yeah, my brother lives there. i think manya wouldve liked phoenix. elaine: mmm, gorgeous, exquisite town. so, whats happening with your apartment? isaac: of course its very hot there. ill have to get uh air conditioner. elaine: oh, you can have mine. ill ship it out to you. (isaac isn't listening to elaine) but what about that big apartment on west end avenue? isaac: although they say its a dry heat. elaine: dry, wet... (trying to get through to him) whats happening with your apartment? isaac: i dont even know if i should take my winter clothing. elaine: i have an idea. leave the winter clothing in the apartment, and ill watch it for you and ill live there and ill make sure that nothing happens to it. isaac: oh, the apartment. jeffreys taking the apartment. elaine: oh, jeffrey. jerry: you know jeffery? elaine : yeah, from what i understand, he works for the parks department. helen: its raining. jerry: its raining? its raining. the game will be postponed. well play tomorrow. morty: believe me, i wouldnt bother you if the army hadnt closed that base in sarasota. here, scribble a little something here. nephew: i cant. ill get in trouble. morty: oh, for gods sake! george: who gets picked off in softball? its unheard of. jerry: its never happened to me before. elaine: i remember saying to myself, why is jerry so far off the base? jerry: ill have to live with this shame for the rest of my life. george: and then in the fifth inning, why did you take off on the pop fly? jerry: i thought there were two outs. elaine: i couldnt believe it when i saw you running. (laughing) i thought maybe they had changed the rules or something. jerry : it was the single worst moment of my life. george: (smiling) what about sharon besser? jerry: oh, well, of course. nineteen-seventy-three. elaine: makes you wonder, though, doesnt it? jerry: wonder about what? elaine: you know... (looking up) the spirit world. jerry: you think manya showed up during the game and put a hex on me? elaine: i never saw anyone play like that. jerry: but i went to the funeral. elaine: yeah, but that doesnt make up for killin her. george: maybe manya missed the funeral because she was off visiting another galaxy that day. jerry: dont you think she woulda heard i was there? george: not necessarily. jerry: who figures and immigrants gonna have a pony? jerry: what is the pony? what is the point of the pony? why do we have these animals, these ponies? what do we do with them? besides the pony ride. why ponies? what are we doing with them? i mean, police dont use them for, you know, crowd control. (jerry crouches down, and makes like hes riding a pony.) hey, uh, you wanna get back behind the barricades. hey! hey, little boy. yeah, im talking to you. behind the barricades! so somebody, i assume, genetically engineered these ponies. do you think they could make them any size? i mean, could they make them like the size of a quarter, if they wanted? that would be fun for monopoly, though, wouldnt it? just have a little pony and you put him on the... baltic, thats two down, go ahead. hold it. right there. baltic. yeah, thats it. fine. right there, hold it right there. jerry: i hate clothes, okay? i hate buying them. i hate picking them out of my closet. i cant stand every day trying to come up with little outfits for myself. i think eventually fashion wont even exist. it wont. i think eventually well all be wearing the same thing. cause anytime i see a movie or a tv show where theres people from the future or another planet, theyre all wearing the same thing. somehow they decided, this is going to be our outfit. one-piece silver jumpsuit, v-stripe, and boots. thats it. we should come up for an outfit for earth. an earth outfit. we should vote on it. candidates propose different outfits. no speeches. they walk out, twirl, walk off. we just sit in the audience and go, that was nice. i could wear that. jerry : i think ive seen enough. salesman: well, i might have something in the back. elaine: the back? they never find anything in the back. if they had anything good in the back, theyd put it out in the front. jerry: why dont they open up an entire store for the back? call it, just back. all back; no front. you walk in the front, youre immediately in the back. (jerry picks up a tie display, and shakes it rhythmically from left to right.) look, elaine, tie carwash. customer: oh, i just read that. thats terrific. jerry: (pointing to elaine) her father wrote that. customer: alton benes is your father? elaine: yeah. customer: i always felt he deserved a wider audience. elaine: im not so sure he wants one. elaine: hey, dont forget sunday, okay? you and george are coming, right? hotel westbury, eight oclock. jerry: i guess im coming. i mean... elaine: what? what, you dont want to go now? jerry: no, ill go. im going. elaine: no, jerry, you have to. i need a buffer. you know, i havent seen my father in a while and... you know... jerry: im worried i wont be able to talk to him. hes such a great writer. frankly, i prefer the company of nitwits. elaine: so, thats why were not together anymore. jerry: what is this? jerry: this is beautiful. these jackets never fit me right. elaine: try it on. elaine: wow, this is soft suede. jerry: this may be the most perfect jacket i have ever put on. jerry: how much is it? elaine: (shocked) oh my god. jerry: bad? (elaine nods.) very bad? elaine: you have no idea. jerry: i have some idea. elaine: no idea. jerry: ive got a ballpark. elaine: there is no park and the team has relocated. jerry: let me see that. (jerry looks at the tag.) that is high. elaine: oh man, that is a beautiful jacket, though. jerry: whats with the pink lining and the candy stripes? elaine: well, its just a lining. you can always have it changed. jerry: should i get it? i hate these moments. im hearing the dual voices now, you know, what about the money? whats money? salesman: it looks wonderful on you. jerry: hey. kramer: hey. new jacket? jerry: what do you think? kramer: its beautiful. jerry: is it me? kramer: thats definitely you. jerry: really? kramer: thats more you than youve ever been. hey, what is with the pink lining? jerry: i dont know. its got a pink lining. kramer: oh... so, what did you pay for this? jerry : i paid what it costs. kramer: how much? jerry: whats the difference? kramer: what, youre not gonna tell me? jerry: id rather not say it out loud. its embarrassing. kramer: over three hundred? jerry: yes, but lets just stop it right there. kramer: its over four hundred? jerry : really, im not answering anymore. kramer: is it over four hundred? jerry: would you? kramer: woah, nelson! jerry: i know, i know. kramer: what are you gonna do with the leather one? jerry: i dont know. kramer: well, are you gonna wear it? jerry: maybe. kramer: youre not going to wear this. jerry: do you want it? kramer: well, yeah. okay. ill take it. i like the jacket. jerry: okay, take it. kramer: heey, good karma for you. (kramer puts on jerrys old jacket and stands next to jerry, looking in the mirror.) oh baby. george: (singing) master of the house/doling out the charm/ready with a handshake and an open palm/tells a saucy talk/loves to make a stir/everyone appreciates a... jerry: what is that song? george: oh, its from les miserables. i went to see it last week. i cant get it out of my head. i just keep singing it over and over. it just comes out. i have no control over it. im singin it on elevators, buses. im singin it in front of clients. its taken over my life. jerry: you know, schumann went mad from that. george: artie schuman? from camp hatchapee? jerry: no, you idiot. george: what are you, bud abbott? what are you callin me an idiot? jerry: you dont know robert schumann? the composer? george: oh, schumann. of course. jerry: he went crazy from one note. he couldnt get it out of his head. i think it was an a. he kept repeating it over and over again. he had to be institutionalized. george: really? (jerry nods his head) well, what if it doesnt stop? oh, that i really needed to hear. that helps a lot! all right, just say something. just start talking. change the subject. lets just go, all right? i cant believe were having dinner with alton benes. jerry: i know exactly whats gonna happen tonight. im gonna try and act like im not impressed, hes gonna see right through it. george: yeah, hell be looking at us like hes backstage at a puppet show. jerry: let me just get my jacket. george: (singing) master of the house/keeper of the inn... (jerry re-enters the living room and modestly models his new jacket for george. george is impressed.) this is huge! when did this happen? jerry: wednesday. this jacket has completely changed my life. when i leave the house in this, its with a whole different confidence. like tonight, i mightve been a little nervous. but, inside this jacket, i am composed, grounded, secure that i can meet any social challenge. george: can i say one thing to you? and i say this with an unblemished record of staunch heterosexuality. jerry: absolutely. george: its fabulous. jerry: i know. george: and ill tell you something else, im not even going to ask you. i want to know. but im not gonna ask. youll tell me when you feel comfortable. so what was it? four hundred? five hundred? did you pay five hundred for this? (jerry coyly ignores georges questions, while george grows increasingly serious.) over six? cant be seven. dont tell me you paid seven hundred dollars for this jacket! did you pay seven hundred dollars for this jacket? is that what youre saying to me? you are sick! is that what you paid for this jacket? over seven hundred? what did you pay for this jacket?! i wont say anything. i wanna know what you paid for this jacket! oh my god! a thousand dollars?! you paid a thousand dollars for this jacket?! all right, fine. (george heads for the door.) im walking outta here right now thinking you paid a thousand dollars for this jacket, unless you tell me different. (jerry remains silent.) oh, ho! all right! ill tell you what, if you dont say anything in the next five seconds, ill know it was over a thousand. kramer: (to jerry) hey. hey, would you do me a solid? jerry: well, what kind of solid? kramer: i need you to sit in the car for two minutes while its double-parked. i gotta pick up some birds. jerry: birds? kramer: yeah. a friend of mine, hes a magician. hes going away on vacation. he asked me to take care of his doves. jerry: so take a cab. kramer: they wont take a cage full of birds. jerry: i cant. im on my way out. theres no way i can do it. kramer: george, do me a solid? two minutes. george: well, im going with him. id like to... ive never done a solid before. kramer: all right... yeah. all right, have a good one. jerry: (scoffs) two minutes. believe me, i know his two minutes. by his conception of time, his life will last over two thousand years. george: (singing) master of the house/quick to catch your eye/never wants a passerby to pass him by... jerry: schumann. (george stops himself, frightened. jerry looks around the lobby.) where are they? george: maybe he didnt show up. jerry: what, you dont want to do this? george: i dont think theres ever been an appointment in my life where i wanted the other guy to show up. (george notices an elderly man in a leather chair.) wait a second, is that him? jerry: yeah, i think it is. (they walk toward the man. jerry hesitates.) wheres elaine? george: im nervous. jerry: (to the man) excuse me. mister benes? alton: yeah? jerry: im jerry, elaines friend, and this is george. george: its a great thrill to meet you, sir. alton: sit down. want a drink? jerry: sure. alton: whatll you have? jerry: (to waiter) ill have a cranberry juice with two limes. george: and, ill have a club soda with no ice. benes: ill have another scotch with plenty of ice. george: you like ice? alton: huh? george: i said, do you like ice? alton: like it? george: dont you think you get more without it? alton: wheres elaine? jerry: well, we thought she was meeting you earlier. shes usually pretty punctual. dont you find that, george? george: yeah, yeah. shes punctual... and uh shes been late, sometimes. jerry: yeah, yeah. sometimes shes on time, and... sometimes shes late. george: i guess... (chuckles) today shes late. jerry: it appears that way. george: yup. jerry: yup. alton: looks like rain. george: i know, i know, thats what they said. alton: who said? george: the weather guy, dr. waldo. alton: i dont need anybody to tell me its gonna rain. george: no, of course not. i didnt- alton: all i have to do is stick my head out the window. (the waiter returns with the drinks, and distributes them to the men.) which ones suppose to be the funny guy? george: (pointing at jerry) oh, hes the comedian. jerry: im just a regular person. george: no, no. hes just being modest. alton: we had a funny guy with us in korea. tailgunner. they blew his brains out all over the pacific. theres nothing funny about that. jerry: would you excuse me a minute? im gonna go to the bathroom. ill be right back. george: i just wanted to tell you that i really enjoyed fair game. i thought it was just brilliant. alton: drivel. george: yea, well, maybe some parts. alton: (defensive) what parts? george: the... drivel... parts. oh my gosh, i just realized i have to make a phone call. i-i cant believe- would you- george: thank you for leaving me alone with him! jerry: that was brutal. i cant go back out there. george: well, lets just leave. jerry: elainell kill me. george: where is she? jerry: shes gotta be here soon. george: how could she leave us alone with this lunatic? ten more minutes, and thats it! im leaving. i have to tell you, this guy scares me. jerry: the waiter was trembling! george: if she doesnt show up, we cant possibly have dinner with him alone. jerry: how are we gonna get out of it? george: well say were frightened and we have to go home. jerry: yeah, thats good. hed clunk our heads together like moe. george: i dont know. just start scratching. tell him you have the crabs. he was in the military. hell understand that. jerry: all fathers are intimidating. theyre intimidating because they are fathers. once a man has children, for the rest of his life, his attitude is, to hell with the world, i can make my own people. ill eat whatever i want, ill wear whatever i want, and ill create whoever i want. alton: (to george) whod you call? george: (improvising) my uh uncle is having an operation. i just wanted to see how he was. alton: what kind of operation? george: bone marrow. manager: mister benes? alton: yes? manager: a message for you. alton: from elaine. she got tied up. shell be here in thirty minutes. alton: yeah, they shouldve taken care of castro when they had the chance. like we did in guatamala in fifty-three. jerry: well, guatamala... george: sure, guatamala... alton: all right, you boys get yourselves together. well head up to the restaurant. ill leave a note for elaine. im going to the bathroom. george: come on, lets go! jerry: what about elaine? george: to hell with elaine! jerry: shell be furious. george: were dying here! jerry: thats her! shes here! elaine: im sorry. im so sorry. where is dad? george: (contemptuously, imitating altons voice) hes in the bathroom. jerry: (to elaine) where have you been?! elaine: kramer! that... kramer! im just about to leave, he calls me up. he begs me to sit in his car for two minutes, so he can pick up these birds... jerry: oh, you didnt... elaine: well, he said hed drive me here right after. so, i am sitting in his car twenty minutes! he doesnt come down. i am freezing. then a cop comes by, tells me to get out of the car. hes a city marshal. hes towing the car away. kramer owes thousands of dollars in back tickets. he was going to tow it with me in the car! so, they tow the car. now, i am standing outside, and i am freezing, but i cannot leave because i have to tell him what happened to the car. so, finally, he finally comes down with his giant cage filled with doves. he said he was getting special instructions, that each dove has a different diet... so, were wandering around trying to get a cab, when two of these doves fly out! now were running down the street after these doves; i almost got hit by a bus! (elaine sits in altons chair and takes a deep breath.) so hows everything going over here? jerry: great. george: couldnt be better. elaine: good. cause dad can make some people a little uncomfortable. jerry: oh, no, no. george: get outta here.. elaine: man, kramer! i could kill him! jerry: i cant believe it. you know better than to get involved with kramer. elaine : he said hed give me a lift. jerry: ah, the lift. like the lure of the sirens song. never what it seems to be, yet who among us can resist? george: where do you come up with this stuff? alton: well, look whos here. elaine: oh, hi, dad. alton: hello, dear. alton: whos the lipstick for? elaine: no one. alton: hows your mother? elaine: fine. alton: how about you? are you working? elaine: yeah, im reading manuscripts for pendant publishing. i told you ten times. alton: pendant! those bastards. well all right, boys. well go to that pakistani restaurant on 46th street. youre not afraid of a little spice, are you? george: (singing) master of the house/doling out the charm/ready with a handshake and an open... alton: pipe down, chorus boy. elaine: ohh... its snowing. its beautiful. jerry: (to george) snow. snow, that cant be good for suede, can it? george: i wouldnt think so. jerry: what should i do? (to alton) uh, were taking a cab, arent we? alton: cab? its only five blocks. george: (to jerry) why dont you just turn it inside out? jerry: inside out! great. alton: wait a minute. what the hell do you call this? jerry: oh, i turned my jacket inside out. alton: well, you look like a damn fool! jerry: well, its a new suede jacket. it might get ruined. alton: well, youre not going to walk down the street with me and my daughter dressed like that. thats for damn sure. george: its uh, it's only a few blocks. jerry: (to the intercom) elaine? elaine: yeah. jerry: come on up. kramer: hey. jerry: hey. kramer: ive gotta feed the birds. jerry: so? kramer: you got any of those mini ritzes? jerry: i cant believe i do. kramer: yeah! well, are you going out? jerry: yeah. kramer: hey, wheres your new jacket? (jerry points to the jacket hanging in the bathroom. its ruined.) what? (kramer enters the bathroom, and sees the garment.) ohhh. what did you do to it? jerry: i was out in the snow last night. kramer: dont you know what that does to suede? jerry: i have an idea. (elaine enters; to elaine) we can make the nine-thirty at cinema three. elaine: okay. (to kramer) hello. (to jerry) listen, thanks again for coming last night. dad said he had a great time. jerry: is he still in town? elaine: no, hes driving back to maryland tonight. kramer: so, uh... what are you gonna do with that one now? jerry: i dont know. kramer: (smiling) well... elaine: (to jerry) i didnt want to tell you this, but usually he hates everyone. jerry: really? kramer: you gonna throw this out? jerry: well, i cant wear it. elaine: yeah, he like you though. said you reminded him of somebody he knew in korea. kramer: (to jerry) well, if youre just gonna throw it out, you know, i could take it. jerry: yeah, go ahead, take it. elaine: dad thinks george is gay. jerry: oh, because of all the singing? elaine: no, he pretty much thinks everyone is gay. kramer: hey, see, i like it like this. elaine: isnt that...? (jerry nods.) oh, is this from the snow last night? (jerry nods.) ugh... you know what you shouldve done? you shouldve turned it inside out. jerry: ill try and remember that. kramer: boy, its too bad you gave me this one too. jerry: yeah, too bad. kramer: im gonna have to do something about this lining. alton: (singing) master of the house/doling out the charm/ready with a handshake and an open palm... jerry: i had a leather jacket that got ruined. now, why does moisture ruin leather? i dont get this. arent cows outside most of the time? i dont understand it. when its raining do cows go up to the farmhouse, let us in, were all wearin leather. open the door! were gonna ruin the whole outfit here! is it suede? i am suede, the whole thing is suede, i cant have this cleaned. its all i got! jerry: the bad thing about television is that everybody you see on television is doing something better than what youre doing. you ever see anybody on tv like just sliding off the front of the sofa with potato chip crumbs on their face? some people have a little too much fun on television. the soda commercial people. where do they summon this enthusiasm? have you seen them? we have soda, we have soda, we have soda, jumping, laughing, flying through the air. its a can of soda! have you ever been standing there and youre watching tv and youre drinking the exact same product that theyre advertising right there on tv, and its like, you know, theyre spiking volleyballs, jet-skiing, girls in bikinis and im standing there, maybe im putting too much ice in mine. george: (excited) so then, as we were leaving, we were just kind of standing there, and she was sort of smiling at me, and i wasnt sure if she wanted me to ask her out, because when women smile at me i dont know what it means. sometimes i interpret it like theyre psychotic or something and i dont know if im supposed to smile back, i dont know what to do. so i just stood there like remember how quayle looked when benson gave him that kennedy line? thats what i looked like. jerry: so you didnt ask? george: no, i froze. jerry: counter. george: oh yeah. so wait, wait. a half-hour later im back in the office, i tell lloyd the whole story. he says, so why dont you call her? i says, i cant. i couldnt, i couldnt do it right then. for me to ask a woman out i gotta get into a mental state like the karate guys before they break the bricks. so lloyd calls me a wuss. jerry: he said wuss? george: yeah. anyway, he shamed me into it. jerry: so you called. george: right. and, and to cover my nervousness i started eating an apple, because i think if they hear you chewing on the other end of the phone, it makes you sound casual. jerry: yeah. like a farm boy. george: right. so i call her up, i tell her its me, she gives me an enthusiastic hi! jerry: wow. the enthusiastic hi. thats beautiful. george: oh, i dont get the enthusiastic hi, im outta there. jerry: all right, so youre chewing your apple, you got your enthusiastic hi... go ahead. george: so, were talking, and i dont like to go too long before i ask them out, i wanna get it over with right away, so i just blurt out, what are you doing saturday night? jerry: and? george: she bought. jerry: great day in the morning. george: then i got off the phone right away. jerry: sure, its like robbing a bank. you dont loiter around in front of the teller holding that big bag of money. you come in, you hit and get out. george: its amazing. we, we both have dates on the same night. i cant remember the last time that happened. george: i cant stand doing laundry. thats why i have forty pairs of underwear. carol: you do not. george: absolutely. because instead of doing a wash, i just keep buying underwear. my goal is to have over three hundred and sixty pair. that way, i only have to do wash once a year. jerry: (in an attempted scottish accent) come on, try it. let me hear you try a scottish accent. donna: thats irish. jerry: irish, scottish, whats the difference, lassie? carol: so, uh, thanks for dinner. it was great. george: yeah. (clears his throat) we should do this again. carol: would you like to come upstairs for some coffee? george: oh, no, thanks. i cant drink coffee late at night, it keeps me up. carol: (confused by his response) so, um, okay. george: okay. carol: goodnight. george: yeah, take it easy. donna: thanks again for the movie. jerry: youre welcome. donna: id invite you up, but the place is being painted. jerry: oh, thats okay. donna: unless you want to go to your place. jerry: okay... but theres no cake or anything, if thats what youre looking for. george: (frustrated) take it easy! huh! take it easy! jerry: i think if ones going to kill oneself, the least you could do is leave a note. its common courtesy. i dont know. thats just the way i was brought up. donna: values are very important. jerry: oh, so important. so what are you doing uh thursday night? you wanna have dinner? donna: thursdays great. jerry: tan pants. why do i buy tan pants, donna? i dont feel comfortable in them. donna: are those cotton dockers? jerry: oh, i cant begin to tell you how much i hate that commercial. donna: really? i like that commercial. jerry: you like that commercial? donna: yeah, its clever. jerry: now wait a second, you mean the one where the guys are all standing around, supposedly being very casual and witty? donna: yeah, thats the one. jerry: what could you possibly like about that? donna: i dont know. i like the, guys. jerry: yeah, theyre so funny and so comfortable with each other, and i could be comfortable too, if i had pants like that. i could sit on a porch and wrestle around, and maybe even be part of a real bull session. donna : hey, i know guys like that. to me the dialogue rings true. jerry: even if the dialogue did ring true. (donna starts to get annoyed that jerry won't let the conversation go) even if somehow somewhere men actually talk like that, what does that have to do with the pants? doesnt that bother you? donna: (annoyed) thats the idea. thats whats clever about it, that theyre not talking about the pants. jerry: but theyre talking about nothing. donna: thats the point. jerry: i know the point. donna: no one is telling you to like it. jerry: i mean, all those quick shots of the pants. just pants, pants, pants, pants, pants, pants, pants. what is that supposed to be? jerry: whats brutal about the date is the scrutiny that you put each other through. because whenever you think about this person in terms of the future, you have to magnify everything about them. you know, like the guyll be like, i dont think her eyebrows are even. could i look at uneven eyebrows for the rest of my life? and of course the womans looking at the guy, thinking, what is he looking at? do i want somebody looking at me like this for the rest of my life? jerry: im supposed to see her again on thursday, but can i go out with someone who actually likes this commercial? elaine: i once broke up with a guy because he didnt keep his bathroom clean enough. jerry: no kidding. did you tell him that was the reason? elaine: oh yeah, i told him all the time. you would not have believed his tub. germs were building a town in there they were constructing offices. houses near the drain were going for a hundred and fifty thousand dollars. elaine: hi. jerry: youre still thinking about this? george: she invites me up at twelve oclock at night, for coffee, and i dont go up. no thank you. i dont want coffee. it keeps me up. too late for me to drink coffee. i said this to her. people this stupid shouldnt be allowed to live. i cant imagine what she must think of me. jerry: she thinks youre a guy that doesnt like coffee. george: she invited me up. coffees not coffee, coffee is sex. elaine: maybe coffee was coffee. george: coffees coffee in the morning. its not coffee at twelve oclock at night. elaine: well some people drink coffee that late. george: yeah, people who work at norad, whore on twenty-four hour missile watch. everything was going along so great. she was laughing, i was funny... i kept saying to myself, keep it up, dont blow it, youre doing great. elaine: its all in your head. all she knows is she had a good time. i think you should call her. george: i cant call her now. its too soon. im planning a wednesday call. elaine: oh, why? i love it when guys call me the next day. george: of course you do, but youre imagining a guy you like, not a guy who goes, oh no, i dont drink coffee late at night. if i call her now, shes gonna think im too needy. women dont wanna see need. they want a take-charge guy a colonel, a kaiser, a tsar. elaine: all shell think is that you like her. george: that's exactly what i'm trying to avoid! elaine: well, she wants you to like her. george: yes, she wants me to like her, if she likes me. but she doesnt like me! elaine: i dont know what your parents did to you. kramer: hey, i just thought of a really funny thing for your act. all right, youre up there, youre on the stage and you go, hey, you ever notice how cars here in new york, they never get out of the way of ambulances anymore. someones in a life-and-death situation, and were thinking, well, sorry buddy, you shouldve thought of that when you were eating cheese omelettes and sauages for breakfast every morning for the last thirty years. kramer: so you gonna use it? jerry : i dont think so. kramer: its funny. elaine: it is funny. jerry: i like to use my own material. kramer: thats as good as anything you do. george: all right, i gotta make a call. everybody out, come on. jerry: why do we have to leave? george: because i cant call a woman with other people in the room. come on, lets go. elaine: oh, see, this is the problem. jerry: youre kicking me out of my house? george: yes. elaine: (encouraging) dont forget. george: (to elaine) right, alright. (to jerry) oh jerry, do you have any apples? jerry: dont do the apples. its enough already with the apples. carol: (from the phone; a recorded message) hi, its carol, ill get back to you. george: um, hi, its george, george costanza, remember me? the guy that didnt come up for coffee. you see, i didnt realise that coffee didnt really mean... well, whatever. anyway, it was fun. it was... it was fun, so... oh boy, um, so... you call me back. if you want. its up to you, you know, whatever you wanna do. either way. the balls in your court. so uh, take it easy. jerry: im just gonna get my jacket, ill meet you downstairs. whats the matter, did you call? george: got her machine. im dead, im a dead man. thats it. im dead, im a dead man. dead man. jerry: what did you say? george: i dont know what the hell i said. i gave her an ultimatum and theres nothing i can do. its a machine. the little light is blinking right now, come and listen to the idiot. hey everybody, the idiots on! jerry: after one date you try and improvise on her machine? george: now im in the worst position of all. elaine: yknow, my brother-in-law once left a message on this guys machine, and he blurted out some business information he wasnt supposed to, and it would have cost him fifteen thousand dollars, so he waited outside the guys house and when the guy came home he went upstairs with him and he switched the tape. george: he did that? elaine: yeah. george: somebody did that? jerry: shell call you back. youre overreacting. jerry: not once. donna: never? jerry: i have never seen one episode of i love lucy in my life, ever. donna: thats amazing. jerry: thank you. donna: is there anything else about you i should know? jerry: yes, im lactose intolerant. donna: really? jerry: i have no patience for lactose. and i wont stand for it. um, ill be right back. george: wait till you hear this! (george sees donna and no jerry.) whoa, ah, im sorry, i didnt, i had no idea. donna: wait, wait. hes in the bathroom. george: i just wanted to talk to him for a minute, but ill come back. donna: you dont have to leave. george: you sure? donna: yes. george: okay. donna: im donna. george: donna. oh, youre the one that likes that commercial! donna: he told you about that? george: (back-pedalling) no, he, he didnt actually tell me that, uh, we were talking about that commercial in fact i think i brought it up because i like that commercial. no, he, he would never tell me anything. he never discusses anything. hes, hes like a clam. youre not gonna mention this, to him... donna: (to jerry) so you go around telling your friends im not hip because i like that commercial. jerry: what? (to george) what did, what did you say? george: say? what? nothing, i... donna: you told him how i like the commercial. jerry: well, so what if i said that? donna: well, so, you didnt have to tell your friends. jerry: no, i had to tell my friends my friends didnt have to tell you. george: (to donna) why did you have to get me in trouble? donna: i dont like you talking about me with your friends behind my back. george: boy oh boy. jerry: i said i couldnt believe you liked that commercial. so what? donna: i asked some friends of mine this week, and all of them liked the commercial. jerry: boy, i bet you got a regular algonquin round table there. kramer: hey. jerry: oh uh, kramer, this is donna. kramer: oh. cotton dockers! george: hello! all right, we should be going. come on... kramer: what? where are we going? george: come on! donna: dont bother, im leaving. jerry: donna, really, youre making too much of this. kramer: one hundred percent cotton dockers. if theyre not dockers, theyre just pants jerry: please, donna... donna: i dont wanna hear it. george: i cant believe i said that. you know me, im a vault. jerry: dont worry about it, it wasnt working anyway. kramer: what happened there? jerry: ill tell you later. george: you are not gonna believe whats going on with this woman. george: okay, so you remember i made the initial call sunday, she doesnt call back. i call again monday, i leave another message. i call tuesday, i get the machine again, i know youre there, i dont know what your story is. yesterday, im a volcano i try one more call, the machine comes on, and i let fly like mussolini from the balcony, where the hell do you get the nerve? you invite me up for coffee and then you dont call me back for four days? i dont like coffee, i dont have to come up. id like to get one more shot at the coffee just so i could spit it in your face. jerry: you said that? george: i lost it. jerry: i cant blame you. i cant believe she never called you back. george: she did. today. jerry: what? george: she called my office. she said shes been in the hamptons since sunday. she didnt know if i was trying to get in touch with her. her machine broke, and shes been using her old machine and she doesnt have the beeper for it. jerry: so she didnt get the messages. george: exactly, but theyre on there waiting. she said she cant wait to see me, were having dinner tonight. shes supposed to call me as soon as she gets home. jerry: but what about the messages? jerry: elaines thing? how you gonna get in? george: ill meet her outside the building. jerry: but you know as soon as she gets in the apartment shes going right for that machine. george: unless she goes for the bathroom. thats my only chance. (george crumbles. he drops the cassette on the table.) who am i kidding? i cant do this, i cant do this. i dont even know how to work those stupid machines. jerry: theres nothing to it. you lift the lid, it comes right out. george: you do it for me. jerry: what? george: come on, itll be so much easier. jerry: how you gonna get me up there? george: ill tell her i bumped into you, im giving you a ride uptown. jerry: and who makes the switch? george: you do. jerry: i do. george : i cant do it. ill, ill keep her busy. jerry: i cant get involved in this. george: i think i may be in love with this woman. jerry: what if she sees me? george: oh, you are such a wuss. jerry: a wuss? george: yeah. jerry: did you call me a wuss? george: well there is traffic. it might take her till eight-fifteen. jerry: i got one problem. youre keeping her busy in the other room. now, what if she somehow gets away from you and is coming in? you have to signal me that shes coming. george: a signal, right, um, okay, uh, okay, the signal is, ill call out tippy-toe! jerry: tippy toe? i dont think so. george: you dont like tippy toe? jerry: no tippy toe. george: all right, uh, okay, i got it, um, ill sing. jerry: what song? george: how do you solve a problem like maria? jerry: what is that? george: oh, its a lovely song. (singing) how do you solve a problem like maria?... jerry: anything else? george: you pick it. jerry: lemon tree. george: peter, paul and mary. jerry: no, trini lopez. jerry & george: (singing) lemon tree, very pretty and a lemon flower... george: alright ok. you got the tape? jerry: standard. micro. george: how do you feel? confident? jerry: feel good. george: you nervous? jerry: not at all. george: get up, get up, its her! oh, the hell with this, im scared to death, just walk away, its off, cancel everything, go! carol: hey! what are you doing here? i thought i was supposed to call you when i got home. george: i, i couldnt wait. i was too anxious to see you. carol: oh, thats so sweet. george: oh, this is my friend, jerry seinfeld. i just bumped into him around the corner. isnt that a coincidence? the funny thing is, i see him all the time. jerry: all the time. carol: its nice to meet you. jerry: hi. carol: so, im starving. where are we gonna eat? george: you know, we could go uptown, and that way we could give jerry a ride home. carol: okay. lets go, im ready, whered you park? george: dont you wanna go upstairs first? carol: no, what for? ill just give my bag to the doorman. jerry: you know, i really need to use the bathroom. carol: oh well theres a bathroom in the coffee shop just next door. george: yes, yes, but uh, i have to make a call, so... carol: well they have a phone. george: i know jerry. he has this phobia about public toilets. i think we really should go upstairs. carol: (aloud) you know, i think i will go upstairs. i can check my machine. george: right, right. carol: the bathrooms on the hall to the right. jerry: uh, you know, why dont you go first, you just had a long trip. carol: no, im fine. jerry: um, you know, its the damnedest thing. it went away. carol: oh, thats weird. george: no, no that can happen. ive, uh, ive read about that in medical journals. its a freak thing, but... carol: well, let me just check my messages, and well go. george: uh, carol, can i talk to you for a second? right now? carol: sure. george: please, this is very, very important. george: (from other room) uh, tippy toe! tippy toe! lemon tree! carol: (to jerry) now i know who you are! youre a comedian. ive seen you, its driving me crazy. jerry: right. i am. george: carol, thats so rude. please, im serious, just for a moment, if you wouldnt mind. and then well talk to jerry. jerry: (calls) hey you two. im ready to go. carol: thats what you had to tell me? your father wears sneakers in the pool? george: (to jerry) dont you find that strange? jerry: yes. carol: well, ill just check my machine and well go. carol: no, nothing here, lets go. (carol, george and jerry head for the door. carol opens it.) oh, i forgot to tell you. after i talked to you today my neighbour called me and played my messages to me over the phone. george: oh, uh... carol: yours were hilarious, we were both cracking up. i just love jokes like that. jerry: i love my phone machine. i wish i was a phone machine. i wish if i saw somebody on the street i didnt want to talk to, i could go, excuse me, im not in right now. if you would just leave a message, i could walk away. i also have a cordless phone, but i dont like that as much, because you cant slam down a cordless phone. you get mad at somebody on a real phone you cant talk to me like that! bang! you know. you get mad at somebody on a cordless phone you cant talk to me like that! jerry: well, i painted my apartment again. ive been living in this apartment for years and years, and every time i paint it, it kinda gets me down. i look around, and i think, well, its a little bit smaller now. you know, i realize its just the thickness of the paint, but im aware of it. it just coming in and coming in. every-time i paint it, its closer and closer. i dont even know where the wall outlets are anymore. i just look for like a lump with two slots in it. kinda looks like a pig is trying to push his way through from the other side. thats where i plug in. my idea of the perfect living room would be the bridge on the starship enterprise. you know what i mean? big chair, nice screen, remote control... thats why star trek really was the ultimate male fantasy. just hurtling through space in your living room, watching tv. thats why all the aliens were always dropping in, because kirk was the only one that had the big screen. they came over friday nights, klingon boxing, gotta be there. jerry: what did you do? kramer: mousse. i moussed up. elaine: i guess it was just a matter of time. kramer: you know, i should've done this years ago. i mean, i feel like i've had two lives. my pre-mousse. and now, i begin my post-mousse. hey, tell me the truth, have you ever seen a better looking guy? jerry: well, looks are so subjective. elaine: i dont mean to interrupt or anything, but on sunday, my friend is having a brunch for the new york marathon. kramer: (annoyed that he forgot) oh, i keep forgetting to enter that! elaine: she lives right above first avenue, says she has a perfect view of the race. and she said i can invite some friends. jerry: maybe. harold: (o.s.) no, im not going up there. jerry: (to elaine) harold and manny. harold: im not going. jerry: boys, boys. harold: oh, jerry. jerry: i slid the rent under your door, harold. did you get it? harold: yeah, yeah... hey, jerry, would you like anything from mrs. hudwalkers apartment? manny: (in spanish) you can't give him anything from there! harold: i was only joking. (to jerry) he thinks im gonna give you mrs. hudwalkers things. manny: (in spanish) you offered them to him. harold: (to jerry) we have to go up there now and clean the apartment. its a good thing her rent was overdue. shed be rotting up there for a month. jerry: she died? mrs. hudwalker died? harold: ninety-four years old. i found her yesterday. she didnt have her wig on. it was horrifying. manny: (in spanish) harold, come on, hurry up! harold: (to manny) whats the matter with you? im talking! so, jerry, you know anyone who needs an apartment? jerry: are you kidding? you know my friend elaine? harold: oh yeah, i like her. she always says hello to me. jerry: its not promised to anybody? cause shed take it in a second. harold: well, manny wanted it for his brother, but he got deported. manny: (in spanish) what do you mean deported? it was a misunderstanding with the department of immigration. harold: whats the difference? its true! jerry: so, its okay? i could just tell her she can have it? harold: sure, sure. shes getting a bargain, too. its only four hundred dollars a month. manny: (in spanish) four hundred dollars? what are you nuts? someone will pay more. harold: okay... harold: okay! kramer: hey, harold, what do you think? harold: manny, look. kramer put mousse in his hair. manny: (in spanish) it looks worse. kramer: (not understanding him) hey, thanks. elaine: what was that all about? jerry: (coyly) oh, nothing important. elaine: whats going on? what is that look? jerry: what look? nothing. elaine: somethings going on here. jerry: i dont know if you should sit for this or not. sitting is good if you faint, but standing is good for jumping up and down. i cant decide. elaine: jumping up and down? what are you talking about? cmon. cough it up. jerry: oh, elaine. you know the way i am rarely ever thinking of myself. my only concern is the welfare and happiness of those close to me. sure, it hurts sometimes to give, and give, and give... elaine: would you please? jerry: what would you say if i told you that... elaine: told me what?! jerry: ...i got you an apartment in this building. elaine: (dumbfounded) no. jerry: yes. elaine: no. jerry: yes. elaine: you didnt. jerry: i did. elaine: you got me an apartment in the building?! jerry: i got you an apartment in the building. elaine: how did you... jerry: remember mrs. hudwalker? the ninety-four-year-old woman who lived above me? elaine: no. jerry: she died. elaine: (thrilled) she died?! jerry: she died. elaine: she died! jerry: and the rent is only four hundred dollars a month! elaine: get out! elaine: four hundred a month? only four hundred a month?! jerry: four hundred a month. elaine: and ill be right upstairs? jerry: right upstairs. elaine: right above you? jerry: right above me. elaine: oh, were neighbors. ill be here all the time! jerry: all the time. elaine: (overly excited) we can exchange keys so we can come in and out. oh, this is going to be great! jerry: all the time. jerry: the problem with talking is that nobody stops you from saying the wrong thing. i think life would be a lot better if it was like youre always making a movie. you mess up, somebody just walks on the set, and stops the whole shot. you know what i mean? think of the things you wish you could take back. youre out somewhere with people, gee, you look pregnant.. are you? cut, cut, cut, cut, cut, thats not gonna work at all. walk out the door, and come back in. lets take this whole scene again. people, think about what youre saying! george: thanks, see you later, donna. george: what happened to you? jerry: you cant believe what i just did. george: what? what did you do? jerry: i could tell you what i did, but you wouldnt believe it. its not believable. george: what did you do? jerry: how could i have done that? george: done what? jerry: i told elaine about an apartment opening up in my building. shes going to move in. george: elaines moving into your building? jerry: yes. right above me. george: right above you? jerry: yeah. george: youre gonna be neighbors. jerry: i know. neighbors. george: shes right above you? jerry: right above me. george: how could you do that? jerry: cause im an idiot! you may think youre an idiot, but with all due respect, im a much bigger idiot than you are. george: dont insult me, my friend. remember who youre talking to. no ones a bigger idiot than me. jerry: did you ever ask an ex-girlfriend to move into your building? george: did you ever go to a singles weekend in the poconos? jerry: shes right in my building! right above me! every time i come in the building, im gonna have to sneak around like a cat burglar. george: youre doomed. youre gonna have to have all your sex at womens apartments. itll be like a permanent road trip. forget about the home bed advantage. jerry: but i need the home bed advantage. george: of course. we all do. jerry: come in for two minutes and sit with me. george: i was just in there. its embarrassing. jerry: oh, whos gonna know? george: they saw me walk out. jerry: two minutes. jerry: my censoring system broke down. you know that little guy in your head who watches everything you say? makes sure you dont make a mistake? he went for a cup of coffee. and in that second ruined my life. george: my censor quit two years ago. he checked into a clinic. emotionally exhausted. jerry: so, is there any way out of this elaine thing? george: tough. jerry: you know, the water pressures terrible in my building. and she loves a good shower. george: i never heard of anyone would turned down an apartment because of a weak shower spray. jerry: if they were fanatic about showers, they might. george: for that rent, shed take a bath in the toilet tank if she had to. jerry: look at that woman feeding her baby greasy, disgusting, coffee shop corned beef hash. isnt that child abuse? george: id like to have a kid. of course, you have to have a date first... remember my friend, adam, from detroit? jerry: yeah, the guy with the flat head. george: hes a cube. anyway, he got married six months ago. he told me ever since hes been wearing a wedding band, women have been coming on to him everywhere he goes. jerry: yeah, ive heard that about wedding bands. george: i wonder if thats really true. jerry: that would be an interesting sociological experiment. you know, kramer has his fathers band. hed loan it to you. george: thanks a lot. ill give it back to you in a week. kramer: you know, i dont even know why youre fooling around with this ring. ive been telling you, get yourself some plugs. or a piece. george: im not doing that. kramer: oh, man. you know, youre crazy. youre a good looking guy. what do you want to walk around like that for? george: no, ill put half a can of mousse in my head like you. harold: i told you i dont like these sponges, theyre too small! i want a big sponge! harold: you cant pick up anything with these! theres no absorption! jerry: boys, boys. harold: hi, jerry. manny: hello, jerry. (in spanish to harold) you tell him. harold: okay manny: (in spanish to harold again) you tell him. harold: your friend cant have the apartment, jerry. jerry: what? harold: because somebody offered manny five thousand dollars for the apartment. i dont want to do it. manny wants to do it. manny: (in spanish) why are you telling him it's my fault? harold: because its true! why shouldnt i tell him? jerry: hey, hey. i understand. youre businessmen. manny: (in spanish) tell him that if his friend can come up with the same money then she can have the apartment. harold: oh, now, he says that if your friend has five thousand dollars, well give it to her. jerry: well, thats a lot of money. but, if thats the way its gotta be, thats the way its gotta be. jerry: you know, i used to think that the universe is a random, chaotic sequence of meaningless events, but i see now that there is reason and purpose to all things. george: what happened to you? jerry: religion, my friend, thats what happened to me. because, i have just been informed that its going to cost elaine the sum of five thousand dollars to get the apartment upstairs. george: (jubilant) five thousand dollars? she doesnt have five thousand dollars! jerry: of course she doesnt have five thousand dollars! george: so, she cant get the apartment. jerry: cant get it. george: so, she doesnt move in. jerry: no move. so, you see, its all part of a divine plan. george: and how does the baldness fit into that plan? jerry: (to the intercom) elaine? elaine: yeah. jerry: (to george) all right, this is going to require some great acting now. i have to pretend im disappointed. youre going to really see me being a phony, now. i hope you can take this. maybe you should go in the other room. george: are you kidding? i lie every second of the day. my whole life is a sham! jerry: cause you know, i love elaine. george: of course you do. jerry: but you know... not in the building. really, i feel terrible about this. my intentions were good. what can i do? tell me. elaine: (to someone in the hallway) no, ill be seeing you. (she enters the apartment; singing) "good morning, good morning.. (to jerry and george) have you ever gotten up in the morning and felt its great to be alive? that every breath is a gift of sweet life from above? elaine: oh, and before i forget, i have the checks for the first month, last months security deposit. (laughs) i have seventy-five dollars left in my account. jerry: well... theres a little bit of a problem. elaine: oh, i know. theres a weak shower spray, i know. ive already thought about it, and im switching to baths. as winston churchill said, why stand when you can sit? maybe ill get some rubber duckies. jerry: uh, no uh, someone offered harold and manny five thousand for the apartment. im sure theyd just as soon give it to you, but youd have to come up with that money. elaine: five thousand dollars? i dont have five thousand dollars. jerry: i know. elaine: (disappointed) how am i going to get five thousand dollars? jerry: i have no idea. kramer: (to elaine) hey, my new neighbor! elaine: im not moving in. kramer: what? elaine: they want five thousand dollars now. kramer: so, okay uh whats the problem? elaine: i dont have five thousand dollars. kramer: cmon, you can come up with five thousand dollars. (to jerry) jerry, you dont have five thousand dollars you can led her? come on. jerry: yeah, well, i didnt- is that something you want to borrow? elaine: no, thats too much money to borrow. kramer: loan her the money. you can afford it. jerry: she doesnt wanna borrow the money. kramer: oh, cmon. shell pay you back. whats five grand between friends? elaine: of course id pay you back.. kramer: yeah, so whats the problem? jerry: who said theres a problem? kramer: hey see he said hed loan you the money. elaine: well jerry, it might take a while for me to pay you back. maybe a few years. how do you feel about that? kramer: thats okay. he doesnt care. elaine: well, you know, money can sometimes come between friends. kramer: get outta here. elaine: let me think about it. kramer: whats to think about? elaine: i dont know... i dont know. five thousand... let me just take one more look at it. jerry: (to kramer) it was all over! taken care of. done! finished. five thousand. wheres she gonna get five thousand? she doesnt have five thousand. clean. good bye. shes gone. then you come in, why dont you loan her five thousand? what do you care? youve got five thousand. give her five thousand! kramer: you didnt want her in the building? jerry: no, i didnt! kramer: well, then what did you loan her the five thousand for? oh, look, maybe she wont take it. i mean, she did say that she was gonna think about it. jerry: people dont turn down money. its what separates us from the animals. kramer: i still dont understand what the problem is having her in the building. jerry: let me explain something to you. you see, youre not normal. youre a great guy, i love you, but youre a pod. i, on the other hand, am a human being. i sometimes feel awkward, uncomfortable, even inhibited in certain situations with the other human beings. you wouldnt understand. kramer: because im a pod? elaine: ill take it! roxanne: hi, elaine. elaine: oh, hi, roxanne. nice to be here. these are my friends. this is george, and this is jerry. jerry: hi elaine: jerrys the one who got me my new apartment. roxanne: so, youre elaines hero. jerry: yes, its my lifes work. roxanne: there are so few true heroes left in this world. george: yeah, my wife couldnt make it today. shes got something with her mother... who knows whats going on with her. dont let any one kid you, its tough. jerry: well, better load up on some carbos before the race. roxanne: oh, the marathon is great, isnt it? jerry: oh, yes. particularly if youre not in it. roxanne: i wish we had a view of the finish line. jerry: whats to see? a woman from norway, a guy from kenya, and twenty thousand losers. george: ...yeah, my wife started getting on me about the lawn today. im tellin you, its one thing after another. rita: is she here? george: uh no no, shes working. rita: what does she do? george: shes an... etymologist. you know, bees, flies, gnats. w-what about you? rita: i work for the director of madison square garden. its great! i can get free tickets to any sporting in new york. anyway, shes a very luck woman. enjoy the race. george: (calling after her) but.. roxanne: hi stan. joanne. elaine: jerry, this is joanne, and this is stan. theyre in my short story class with roxanne and me. jerry: hi how are ya? elaine: hey, jerry just got me a great apartment in his building! joanne: well, jerry, itll be nice having a close friend nearby. jerry: (no amused) fantastic. stan: she can pop in whenever she wants. jerry: i know. joanne: she doesnt even need to knock! jerry: its tremendous. stan: anytime of day. jerry: im in heaven. elaine: oh, rita come here. this is jerry. hes the one who got me the apartment. rita: oh, hi. (calling to someone) bob, this is the guy who got elaine the apartment. george: im sorry, i dont see the big deal about being a matador. the bull charges, you move the cape, whats so hard? susie: so uh, are you really married? because, ive actually heard of single guys who wear wedding bands to attract women. george: (laughs) youd have to be a real loser to try something like that. susie: thats too bad, because i really have a thing for bald guys with glasses. rita: hey everybody! here come the runners! elaine: (to jerry) so you and roxanne are hitting it off, huh? jerry: oh, i wouldnt quite say that. elaine: really? from a distance, you seemed to be coming on to her. jerry: im a guy it always looks like that. elaine: because, i was thinking... are you at all concerned that living in the same building will, yknow... cramp our styles? jerry: nah... elaine: because, i was worried that there might be a situation in which one of us come home with somebody, it could get a little uncomfortable. but, as long as youre okay with it, its fine with me. janice: ive never been able to be with just one person. i can, however, carry on strictly physical relationships which can last for years and years. its a shame youre married. george: umm, im not. its just a sociological experiment! janice: please... jerry: you have no idea what an idiot is. elaine just gave me a chance to get out and i didnt take it. (pointing to himself) this is an idiot. george: is that right? i just threw away a lifetime of guilt-free sex, and floor seats for ever sporting event in madison square garden. so please, a little respect. for i am costanza lord of the idiots! roxanne: (yelling out the window) youre all winners! george: but suddenly, a new contender has emerged... jerry: george, i didnt sleep at all last night. i decided i have to tell her. im just going to be honest. thats all... yes, im nervous... are you listening to me?... just put some soap on your finger. itll slide right off... then try axle grease... (kramer enters; to the phone) ill call you back after i talk to her... bye. kramer: well, its all taken care of. everythings cool. jerry: what? whats cool? kramer: elaine. jerry: what are you talking about? kramer: i just found a guy whos willing to pay ten thousand dollars for the apartment. jerry: you what?! get out! (pushes kramer) ten thousand? kramer: cash. jerry: who would pay that much? kramer: hes in the music business. jerry: elaine would never borrow that much money! (jerry hugs kramer, then grabs him by the cheeks.) kramer, my god, man! this is beautiful! i think im in the clear here. elaines not moving in. i dont have to confront her. she has no idea i never wanted her to move in. im golden! kramer: well, occasionally i like to help the humans. elaine: wow. youre right. that is loud. jerry: its just unbelievable. elaine: they rehearse all the time? jerry: all the time. ive been up there six times. they refuse to stop. i cant live like this. i dont know what im gonna do. im heading for breakdown! (to harold) cant you do something? harold: im not going up. it stinks up there. jerry: manny... manny: (in spanish) theyre allowed to play until eleven oclock! harold: im not the one who said eleven oclock. he makes up his own rules. elaine: boy, too bad. if i was up there, youd never hear a peep out of me. im as quiet as a mouse. kramer: oh, i love the one they do right after this one! (starts dancing) jerry: i dont know. what do you do when a neighbor is making, like, a lot of noise at three oclock in the morning? i mean, can you knock on someones door and tell them to keep it down? youre really altering your whole self-image. i mean, what am i, fred mertz now? whats happening to me? can i do this? am i a shusher? i used to be a shushee. theres a lot of shushing going on in movie theaters. people are always shushing. shh... shh... shhh... shhh... doesnt work, cause nobody knows where a shush is coming from. they just hear a shh. was that a shush? i think somebody just shushed me. some people you cant shush in a movie theater. theres always that certain group of people, isnt it? theyre talking and talking, and everyone around them is shushing them, and shushing them. they wont shush. theyre the unshushables. jerry: i have to tell you that i did some very exciting news recently, and i dont know if i should really tell you exactly what it is because its really not a definite thing yet. (crowd cheers him on to tell them) well, i will tell you what i know so far. according to the information that i have in the envelope that ive received, it seems that i may have already won some very valuable prizes. (audience applauds) well, thank you, thank you very much, well thank you. that's very nice to hear that. but, in all honesty, i have to say, i didnt even know i was in this thing. but, according to the readout, it looks like i am among the top people that they are considering. you know, thats what annoys me about the sweepstakes companies, they always tease you with that, you may have already won. id like once for a sweepstakes company to have some guts, come out with the truth, just tell people the truth one time. send out envelopes, you have definitely lost! you turn it over, giant printing, not even close! you open it up, theres this whole letter of explanation, even we cannot believe how badly you have done in this contest. jerry: (to kramer) to the right. george: that took awhile. jerry: dont get up. george: id like to help, but my neck.. george: so how long has it been in the basement? jerry: since my grandfather died. i was suppose to send it down to my parents in florida, but they didnt want it. they told me to get rid of it, but i felt funny and then i sort of forgot about it. and its been sitting down there for three years until he saw it. (to kramer) all right, so, just take what you want and lets get it out of here. george: whats in it? jerry: grandpa clothes, i cant wear em. kramer: you want these? knee socks. you dont wear knee socks. jerry: no, go ahead. look at this place. i cant wait to get it cleaned. george: i know someone wholl do it. shes good. shes honest. jerry: no, elaines got this writer friend from finland, rava. her boyfriend goes to columbia grad school, and hes suppose to do it. george: students cant clean. its anathema. (explaining) they dont like it. jerry: how long have you been waiting to squeeze that into a conversation? kramer: now this i like. george: wait a second. (george gets up and heads for the statue in kramers hands.) i cant believe this! let me see this. kramer: wait, wait, wait... george: let me just see it. kramer: come on... george: let me just see it for a second. george: oh my god, its exactly the same! jerry: what? george: when i was ten years old, my parents had this very same statue on the mantle of our apartment. exactly. and, one day, i grabbed it, and i was using it as a microphone. i was singing, macarthur park, and i got to the part about, ill never have that recipe again, and it slipped out of my hand and it broke. my parents looked at me like i smashed the ten commandments. to this day, they bring it up. it was the single most damaging experience in my life, aside from seeing my father naked. kramer: cmon, george. i saw it first. george: no, kramer. i have to have this statue. kramer: no, i got dibs! george: what? no dibs! i need this statue. cmon, give it! jerry: spread out, spread out you numbskulls. why dont you just settle it like mature adults? kramer: potato man! george: no, no, no potato man. inka-dink. kramer: okay...yea well uh start with me. george: yeah, good, good. jerry: inka-dink, a bottle of ink, the cork fell out, and you stink. jerry: not because youre dirty, not because youre clean just because you kissed the girl behind the magazine... jerry: and you are it! kramer: what?! wait a minute. no, no, no. what are you doing? no, no, oh, oh, okay. hes out. i get it. george: no, no, no, no, im it. i win. jerry: no, hes it. he wins. it is good. kramer: do over start with him. jerry: no, no, no, come on, kramer. now, you got the socks. kramer: all right, you can have it. (kramer tosses the statue to george.) george: (not expecting the statue to be thrown) dit. kramer: okay, im gonna take the suit, and the shoes, and the hat. jerry: all right, cmon. lets go. kramer: hey, i look like joe friday in dragnet. george: i cant believe i won at inka-dink. jerry: come on, lets go. george: yea. jerry: arent you gonna take it? george: no, no, no, i dont want to carry it around all night. ill pick it up later. george: (to kramer) what about your stuff? kramer: oh, uh, well - okay. jerry: all right, lets go. hey, you know, you owe me one. george: what? jerry: the inka-dink.. you were it. george: its bad? jerry: its very bad. rava: well, if they dont let you be my editor on this book, ill go to another publisher. its that simple. elaine: you told them that? rava: of course. elaine: (excited) this is so fantastic. i dont know how to thank you. jerry: (to rava) so, wheres this boyfriend of yours? i cant wait much longer. ive got a flight. elaine: oh, probably caught in traffic. rava: or maybe hes dead. jerry: so what do you write, childrens books? rava: thats ray. ray: ah, greetings, greetings, and salutations. i beg your forgiveness. my tardiness was unavoidable. rava, my love. elaine, my dear friend. and you must be jerry. lord of the manor. ah, my liege. a pleasure to serve you. jerry: all right... rava: and we have to get back to work. jerry: i gotta get to the airport. ray: your palace shall sparkle like the stars in heaven upon your save arrival, sire. jerry: the uh toilet brush is under the sink. jerry: i dont really feel that comfortable with a maid, either, because theres that guilt when you have someone cleaning your house. you know, youre sitting there on your sofa, and they go by with the vacuum, im really sorry about this. i dont know why i left that stuff over there. and thats why i could never be a maid, because id have an attitude. id find them, wherever they are in the house, oh, i suppose you couldnt do this? no, dont get up, let me clean up your filth. no, you couldnt dust. no, this is too tough, isnt it? jerry: he really did an amazing job. look! he uncoagulated the top of the dishwashing liquid! (jerry opens refrigerator.) he cleaned out the bottom of the little egg cups! come here, look at this. (he gets on his knees and points.) he cleaned the little one-inch area between the refrigerator and the counter. how did he get in there?! he must be like rubber man! elaine: theres no rubber man. jerry: why did i think there was a rubber man? theres elastic man... plastic man... elaine: im leaving. jerry: where are you going? elaine: to ravas house. ive gotta pick up her manuscript. jerry: oh wait. ill go with you. jerry: elaine, he windexed the little peep hole! elaine: (to rava) so, the meeting with lippman is all set. hes the editor-in-chief! i think because of your request- rava: demand. elaine: they're going to promote me to editor. rava: daantotin. (there is a sound of the front door being unlocked.) theres ray... late as usual. ray: well, this is an unexpected surprise and delight! the once and future king of comedy, jerry the first, gracing our humble abode. rava, were in the presence of royalty. jerry: hey, ray, listen, you really did a tremendous job cleaning that apartment. ray: but i didnt just clean your apartment. it was a ritual, a ceremony, a celebration of life. jerry: shouldnt you be out on a ledge somewhere? rava: the water is boiling. are you having tea? elaine & ray: yes. elaine: jerry? jerry! jerry: what? rava: (from the kitchen) ray, would you give me a hand? ray: yeah, im coming! jerry: i think thats the statue from my house. that looks like the statue from my house! elaine: what statue? jerry: i had a statue! elaine: you have a statue? i never saw a statue. jerry: my grandfather gave me a statue! elaine: since when? jerry: whats the difference?! thats the one! he ripped me off! this guy ripped me off! ray: do you take sugar? jerry & elaine: uhh... no. jerry: i cant believe it! this guy ripped me off! elaine: do you realize what youre saying? jerry: yes! this guy ripped me off! he stole that statue right out of my house! ray: lemon? jerry & elaine: uh... sure/yeah.. elaine: are you sure? jerry: pretty sure! ninety-nine percent sure. elaine: ninety-nine percent sure?! ray: ah, sweet elixir. its fragrant nectar a soothing balm for the soul. rava: ah those are the pastries, ray take care of that, i'm going to get elaine the manuscript. ray: ah, the pastries! elaine: maybe it just looks the same. maybe its just a coincidence. jerry: coincidence? this guys in my apartment and then, just by coincidence, he has the same exact statue in his apartment? elaine: i never saw the statue. jerry: i had a statue! what should i do? elaine: i dont know. jerry: ill call kramer. he can check my house. elaine: oh jerry, dont blow this for me. jerry: dont worry. (whispering into the phone) kramer! kramer!... its jerry!... jerry!... from next door!... never mind where i am!... yes, jerry seinfeld!... jerry: ma, i told you, just dip the bread in the batter, and put in right in the pan... okay, bye. (jerry hangs up; to rava) my mother. she forgot how to make french toast. you know how mothers are. rava: my mother left us when i was six years old. all seven of us. we never heard from her again. i hope shes rotting in an alley somewhere! jerry: my moms down in florida. shes got uh one of those condos. hot down there in the summer. you ever been down there? ray: i love these pastries. you know, in scandinavian mythology, the pastries were the food of the gods. jerry: listen, uh i just remembered... im... uh, getting a facial. elaine: oh, see you tomorrow morning. ray: how about dinner? jerry: no, i dont eat dinner. dinners for suckers. jerry: uh huh... yeah... okay, thanks anyway... bye. jerry: nope, the cop says its my word against his. theres nothing they can do. kramer: lets go get him. jerry: yeah, right. george: we cant just let him get away with this. jerry: do you realize how crazy he had to be to do something like this? he knew i was gonna know its missing, and he took it! and of all things to take! i left my watch, tape recorder, stereo. hes crazy. kramer: you wanna go get him? elaine: well, then, if hes crazy you should just forget it. george: forget it? i already called my parents. i told them to expect the surprise of a lifetime. my mothers making her roasted potatoes! elaine: george, do you realize that rava has asked me to edit her book? george: who is this rava? kramer: i say we get him. elaine: no! george: let me just call him. jerry: ill call him. (jerry picks up the cordless phone. he points to the rotary phone on the coffee table. kramer, george, and elaine struggle for it.) hello, ray?... hi, ray, this is ravas friend, elaines friend, jerry... the king of comedy, right. listen, you know that statue on your mantle, the one with the blue lady? (he covers the reciever and yells at kramer and george.) would you shut up?! (to the phone) yeah, you dont want to talk about it over the phone?.. you dont want rava to hear?... yeah, i understand... you know that coffee shop near my house, monks?... all right, tomorrow... one o clock... great, okay, bye. elaine: all right, look, look, look. lets say he stole it. george: oh, he stole it! elaine: cmon, you cant do anything about it. the cops wont do anything. what, are you going to fight him? why dont you just forget it? jerry & george: no. george: i thought you said one oclock. jerry: relax, hes late. hes always late. its part of his m.o. george: remember, dont take any crap. jerry: yeah, yeah. dont worry about it. george: ill be right here. jerry: thats comforting. shh. hes coming. (to ray) ray? ray: oh, jerry. i cant believe you asked me about that statue. do you know how much trouble you couldve got me into? jerry: well, i didnt... ray: rava was standing right next to me. i never told her where i got the statue. george: (muttering to himself) i wonder why. jerry: well, just give it back, and i wont say anything. ray: give it back? jerry: yeah. ray: what are you talking about? jerry: what are you talking about? george: what is he talking about? ray: im talking about the statue. jerry: yeah, me too. ray: give it back to whom? jerry: me. george: yeah, him. ray: you? jerry: yeah. me. ray: im not getting this. george: you already got it. jerry: ray, i had a statue in my house. you were in my house and then i saw it in your house. ray: what are you saying? jerry: what am i saying? george: take a wild guess. ray: are you saying i stole your statue? george: what a mind. jerry: well, i... ray: i cant believe what im hearing. jerry: i cant believe what im hearing. george: i cant believe what im hearing. ray: for your information, i got that statue in a pawn shop. george: pawn shop? jerry: a pawn shop? ray: yes. in chinatown with the money i earned cleaning peoples apartments. george: cleaning them out. jerry: oh, excuse me... look, ray, you were the only person in my house. ray: whats behind this? its rava, isnt it? george: again with the rava. ray: you want her. jerry: no, shes a little too cheery for me. ray: shes from finland, for crying out loud. finland! do you understand?! jerry: i know finland. theyre neutral. ray: is it me? do i rub you the wrong way? jerry: no, i actually find you quite charming. a bit verbose at times... george: oh, i find you so charming. you wuss. jerry: (to george) did you call me a wuss? ray: what did you say? jerry: i said luss. im at a luss. ray: i would just love to take you down to the shop where i got it. jerry: thats not necessary. (george slams his menu down on the table repeatedly.) you know, maybe its not that bad an idea. ray: and i would love to. nothing would please me more. but, unfortunately, the guy retired and moved to singapore. george: singapore?! do you hear this? ray: if you really want, maybe i can contact the guy in singapore and have him make a photostat of the receipt and send it over. george: thats it! thats it! i cant take it. i cant take it anymore! you stole the statue! youre a theif! youre a liar! jerry: george... ray: who is this? george: im the judge and the jury, pal. and the verdict is guilty! ray: whats going on here? george: guilty! ray: your friend is crazy. george: oh, im crazy! jerry: george, george... ray: ive got to get going. i have a class. george: oh ho! class, huh? at columbia? let me tell you something, pal. i called the registrars office. i checked you out. they have no record of a ray thomas at that school! you liar! ray: well, thats because im registered under my full legal name, raymond thomas wochinski. ray thomas is my professional name. george: you mean alias. ray: you are starting to make me angry! george: well, that was bound to happen. ray: (to jerry) i hope you think about what youve done here today. and if you want to call and apologize, you know where to reach me. jerry: hey, ray. ray: yes? jerry: how did you get the goop out of the top of the dishwashing liquid? it was like a brand-new nozzle! elaine: nervous? rava: why should i be? elaine: yeah. right. rava: your notes are very insightful. elaine: the book is great. did you go out last night? rava: no. we made love on the floor like two animals. ray is insatiable. elaine: they all are. rava: was jerry? elaine: i cant remember. rava: you know, ray is very upset over these accusations. elaine: oh, well, im staying out of this one. this is between them. i am not getting involved. rava: so you think he stole it?! elaine: well, you have to admit... the circumstantial evidence... rava: i admit nothing! man: will you put that cigarette out, please? elaine: well, i mean, he was in the apartment, and then its gone and its in your apartment. rava: maybe you think were in cahoots. elaine: no, no. but it is quite a coincidence. rava: yes, thats all a coincidence! elaine: a big coincidence. rava: not a big coincidence. a coincidence! elaine: no, thats a big coincidence. rava: thats what a coincidence is! there are no small coincidences and big coincidences! elaine: no, there are degrees of coincidences. rava: no, there are only coincidences! ask anyone! rava: are there big coincidences and small coincidences, or just coincidences? well?! well?! man: will you put that cigarette out?! rava: maybe i put it out on your face! (to elaine) its just like ray said. you and jerry are jealous of our love. youre trying to destroy us. elaine: shouldnt you be out on a ledge somewhere? george: ma, will you stop?... its just a statue!... how is it my fault?!... it was stolen. i didnt even touch it this time... okay, fine... i dont see why this should affect to potatoes!... okay... goodbye. (george hangs up.) she doesnt react to disappointment very well. unlike me. kramer: im not happy about this. elaine: why dont we just throw a molotov cocktail through their window? george: theres just no justice. this experience has changed me. its made me more cynical, more bitter, more jaded. jerry: really? george: (casually) sure, why not. elaine: well, how do you think i feel? instead of editing the first novel of a major young writing talent, i am proofreading a food allergy cookbook. jerry: cant you talk to your boss? elaine: i did. he loves rava. worse, he loves ray. and he didn't think youre funny at all. kramer: (talking to himself) im not happy about this. jerry: well, perhaps we can take comfort in the knowledge that in the next world, ray will be the recipient of a much larger and more harsh brand of justice.. george: yeah, hell have my parents. kramer: (from the other side of the door) police! open up! ray: police? kramer: freeze, mother! ray: hey. kramer: shut up. spread em. i said spread em! (looks around) youre in big trouble son. burglary, grand larceny, possession of stolen goods... and uh, uh... murder. ray: murder?! kramer: shut up! keep em spread! just make love to that wall, pervert! ray: i think you have me confused with somebody else. kramer: is your name ray? ray: yeah. kramer: yeah, youre the punk im looking for! ray: hey, hey, are you a cop? kramer: yeah, im a cop. im a good cop. im a damn good cop! (on that line, kramer points to ray, and ray turns back to the wall. kramer heads for the door.) todays your lucky day, junior, cause im gonna let you off with a warning. any more of this criminal activity, and youll be sorry. you got me? ray: got you? i dont even know what the hell youre talking about. kramer: good, good. lets uh keep it that way. jerry: all right, all right. whats the big hubbub, bub? george: kramer, i cant believe it. oh, youre my hero! kramer: yeah. jerry: kramer, what did you do? kramer: well, lets just say i didnt take him to peoples court. george: i feel like a huge weights been lifted off my shoulders. i... i... i feel happy! kramer, i dont know how to thank you! kramer: well, ill think of something. jerry: people are going to steal from you. you cant stop them. but, everybody has their own little personal security things. things that they think will foil the crooks, you know? in your own mind, right? you go to the beach, go in the water, put your wallet in the sneaker, whos gonna know? what criminal mind could penetrate this fortress of security? i tied a bow. they cant get through that. i put the wallet down by the toe of the sneaker. they never look there. they check the heel, they move on. jerry: whenever i see the news and they're hauling in some kind of terrorist, psycho, maniac, mass murderer guy. you notice he's always covering up his face with the newspaper, with the jacket, with the hat. what is he worried about? i mean what is this man's reputation? that he has to worry about this kind of exposure damaging his good name? i mean, what is he up for a big job promotion down at the office or something? afraid the boss is gonna catch this on tv and go "isn't that johnson from sales? he's up in that clock tower picking people off one by one. i don't know if that's that kind of man we want heading up that new branch office. he should be in bill collection. i think he's got aptitude." levitan: (on the phone) ha ha, she was great. you don't want to know. hey breaky, remind me to tell you what we did in lake george. (laughing) get this...i got it all on video. (laughing) george: that's it. this is it. i'm done. through. it's over. i'm gone. finished. over. i will never work for you again. look at you. (laughing) you think you're an important man? is that what you think? you are a laughingstock. you are a joke. these people are laughing at you. you're nothing! you have no brains, no ability, nothing! (knocking object over on desk) i quit! kramer: hey. jerry: hey. kramer: boy, i have really had it with newman. he wakes me up again last night at three o'clock in the morning to tell me he's going up onto the roof to kill himself. jerry: well, what'd you say? kramer: i said " jump." well, he's been threatening to do this for years. i said " look, if you're gonna kill yourself do it already and stop bothering me." at least i'd respect the guy for accomplishing something. jerry: what's his problem? kramer: no job. no women. jerry: he called the right guy. kramer: well, what am i supposed to tell him? how much there is for him to live for? why should i lie to him? jerry: all right, i'm leaving. i going to the laundry. kramer: why don't you use the machines down in the basement? jerry: fluff and fold. the only way to live. (snapping fingers in tune with words) i drop it off. i pick it up. it's a delight. kramer: how 'bout if i put a few things -- jerry: wait a sec. i don't wanna do -- kramer: well, you're going over there. jerry: i don't wanna mix in everything! my guys don't know your guys. you can't just lock 'em all in the same machine together. they'll start a riot. kramer: have you ever met my guys? jerry: no. i can't say as i have. kramer: well! jerry: all right. put 'em on top. kramer: ah! jerry: oh, beautiful. jerry: this stuff on top is my friends. could i get it done in a separate machine? vic: i'll have to charge you for another machine. jerry: whatever it costs. in fact, i would prefer it if the machines are not even touching each other. because something could, you know, jump across. george: guess what. jerry: how did you know i was here? george: kramer. guess what. jerry: i don't know. george: i quit my job. jerry: get outta here. george: i couldn't take it anymore. vic: you can have this on monday. (hands jerry a ticket) jerry: what happened? levitan? george: i go in to use his private bathroom, everybody uses it, and then i get a memo - a memo - telling me to use the men's room in the hall. well, (laughing) i mean we share it with pace electronics. it's disgusting! jerry: you and your toilets. george: i snapped! it was the last straw. (sighs) jerry: so, what are you gonna do now? are you gonna look for something else in real estate? george: nobody's hiring now. the market's terrible. jerry: so what are you gonna do? george: i like sports. i could do something in sports. jerry: uh-huh. uh-huh. in what capacity? george: you know, like the general manager of a baseball team or something. jerry: yeah. well, that - that could be tough to get. george: well, it doesn't even have to be the general manager. maybe i could be like, an announcer. like a color man. you know how i always make those interesting comments during the game. jerry: yeah. yeah. you make good comments. george: what about that? jerry: well, they tend to give those jobs to ex-ballplayers and people that are, you know, in broadcasting. george: well, that's really not fair. jerry: i know. well, okay. okay. what else do ya like? george: movies. i like to watch movies. jerry: yeah. yeah. george: do they pay people to watch movies? jerry: projectionists. george: that's true. jerry: but you gotta know how to work the projector. george: right. jerry: and it's probably a union thing. george: (scoffs) those unions. (sighs) okay. sports,...movies. what about a talk show host? jerry: talk show host. that's good. george: i think i'd be good at that. i talk to people all the time. someone even told me once they thought i'd be a good talk show host. jerry: really? george: yeah. a couple of people. i don't get that, though. where do you start? jerry: well, that's where it gets tricky. george: you can't just walk into a building and say " i wanna be a talk show host." jerry: i wouldn't think so. george: it's all politics. jerry: all right. okay. sports, movies, talk show host. what else? george: this could have been a huge mistake. jerry: well, it doesn't sound like you completely thought this through. george: (sighs) guess not. what should i do? jerry: maybe you can just go back. george: go back? jerry: yeah. pretend like it never happened. george: you mean just walk into the staff meeting on monday morning like it never happened? jerry: sure. you're an emotional person. people don't take you seriously. george: just..go back. pretend the whole thing never happened. jerry: never happened. george: i was just blowin' off a little steam. so what? jerry: so what? you're entitled. george: i'm emotional. jerry: that's right. you're emotional. george: never happened. jerry: never happened. jerry: to me the most annoying thing about the couple of times that i did work in an office. is that when you go in, in the morning you say hi to everyone and for some reason throughout the day you have to continue to greet these people all day every time you see them. i mean you walk in "morning bill, morning bob, how you doing? fine" ten minutes later you see him in the hall, "how ya doin'?" every time you pass you gotta come up with another little greeting. you know you start racking your brains you know you do the little eyebrow "hey" you start coming up with nicknames for them. "jimbo." george: how ya doin'? glenda: what are you doing here? george: what? i work here. glenda: i thought you quit. george: what quit? (laughing) who quit? dan: bill, how was your weekend? bill: oh, excellent weekend. what about your weekend? dan: fine weekend. george: yeah. good weekend. dan: went up to the cape. took the kids sailing. (laughing) lisa was a little scared at first, but that kids' gonna be a good sailor someday. george: aw, she's gonna be a fine sailor. levitan: ava, what happened to you friday afternoon? ava: oh, i got a little tied up. levitan: i'll bet you did. levitan: i wanna remind everyone that the tenth anniversary party for rick barr properties is gonna be wednesday afternoon at four o'clock in lasky's bar, on madison 48th. i want all of you to be there. this really means a lot to me. is that costanza over there? what are you doing here? george: what? levitan: am i crazy, or didn't you quit? george: when? levitan: friday. george: oh, what? what? that? are you kidding? i didn't quit. what? you took that seriously? levitan: you mean, laughingstock? all that stuff? george: come on. will you stop it. levitan: no brains? no ability? george: teasing. levitan: okay. i want you outta here. george: i don't know where you're getting this from. i....you're serious aren't you? oh, (laughing) you see? you see, you just don't know my sense of humor. dan, don't i joke around all the time? dan: i wouldn't say all the time. levitan: you can't win. you can't beat me. that's why i'm here and you're there. because i'm a winner. i'll always be a winner and you'll always be a loser. george: " i'll always be a winner and you'll always be a loser." this is what he said to me. jerry: well, so that's that. george: no. that's not that. jerry: that's not that? george: no. jerry: well, if that's not that, what is that? george: i've got some plans. i got plans. jerry: what kind of plans? george: what's the difference? jerry: you don't wanna tell me? george: i'm gonna slip him a mickey. jerry: what? in his drink? are you outta your mind? what are you peter lorre? george: you don't understand. he's got this big party coming up. he's been looking forward to this for months. this is gonna destroy the whole thing. jerry: what if you destroy him? george: no. no. no. no. no. don't worry. it's perfectly safe. i researched it. he'll get a little woozy. he might keel over. jerry: well, wha - what does that do? big deal. george: this is what they would do in the movies! it's a beautiful thing! it's like a movie! i'm gonna slip him a mickey! jerry: you've really gone mental. george: nah. jerry: where are you gonna get this mickey? i can't believe i'm saying "mickey"! george: i got a source. jerry: you got a mickey source? george: and elaine is gonna keep him busy. jerry: elaine? how did you rope her into this? george: i told her what a sexist he is. how he cheats on his wife. jerry: she knew that. george: but she didn't know he doesn't recycle. jerry: what is the point of all this? george: revenge. jerry: oh, the best revenge is living well. george: there's no chance of that. jerry: did you get your laundry? kramer: yeah. jerry: what's with you? kramer: he jumped. jerry: what? kramer: yeah. newman jumped. jerry: did he call you last night? kramer: oh, yeah. yeah. yeah. yeah. yeah. yeah. jerry: what did you say? kramer: i said " wave to me when you pass my window." jerry: whew. did he wave? kramer: no! he jumped from the second floor. mr. papanickolous saw him from across the street. he's lying out there faking. see, he's trying to get back at me. jerry: (realizing something) oh, my god! kramer: what's the matter? jerry: (tearing through his laundry bag) well, on thursday when i came home i had $1500 on me. for some reason i decided to hide it in my laundry bag and then i completely forgot about it...and then i took the laundry in on friday! oh, come on, let's go. kramer: where? where? jerry: to the laundromat. vic: i never saw it. kramer: okay. come on. give the guy his money. what -- what are you doing? vic: hey, you see that sign right there? (points to a sign saying "not responsible for valuables" jerry: oh, i see. so, you put up a sign so you can do whatever you want? you're not a part of society. vic: yea that's right, 'cuz this place is my country and i'm the president, and that's my constitution. i'm not responsible. jerry: so, anybody leaves anything here, you can just take it? you have a license to steal? you are like the james bond of laundry? vic: you ever hear of a bank? jerry: come on. let's go. kramer: no. you can't let him get away with this. elaine: which one is he? george: that's him over there. the one that looks like a blowfish. elaine: oh, yeah. i see him. george: yeah. hey, thanks for doing this. elaine: why pass up the opportunity to go to prison? george: this is by far the most exciting thing i've ever done. elaine: yeah. it is kind of cool. george: first time in my life i've ever gotten back at someone. elaine: i can't believe we're doing this. this is the kind of thing they do in the movies. george: that's exactly what i told jerry! elaine: really? george: yes! (both laugh) god, i've never felt so alive! jerry: maybe we should call this off. kramer: come on. what's the big deal? just gonna put a little concrete in the washing machine. jerry: and what's gonna happen? kramer: well, it'll gonna mix up with the water, and then by the end of the cycle it'll be a solid block! jerry: if only you could put your mind to something worthwhile. you're like lex luthor. kramer: you keep him busy. kramer: whoa! george: you go over there - elaine: yeah. george: you start flirting with him and i'll come by and, while you're keeping him busy, i'll slip it in his drink. elaine: wouldn't it be easier just to punch him in the mouth? levitan: come on! they're terrible. they got no infield. elaine: oops! (bumps into levitan) 'scuse me. levitan: yeah. greeny: i'm gonna get some food. you want some? levitan: nah. elaine: hi. levitan: hi. elaine: (sneezes) levitan: god bless you. elaine: oh! thank you. thank you very much. (blowing nose) really. i mean that. i am not one of those people who give insincere thank you's. no sir. no sir. when i thank someone i really thank them. so, thank... yoooou! levitan: (confused) you're welcome. elaine: people don't say " god bless you " as much as they used to. have you noticed that? levitan: no. elaine: (having trouble getting him to pay attention) so, i'm going to a nudist colony next week. levitan: (interested) nudist colony? elaine: oh, yeah. yeah. i love nudist colonies. they help me..unwind. aah! levitan: (laughing) i'd never been to a nudist colony. elaine: oh, really? oh, you should go. they're great. they're great. of course, when it's over, it's - it's hard to get used to all this clothing, you know. so, a lot of times, i'll just lock the door to my office and i'll just sit there naked. levitan: seriously? elaine: oh, yeah. i usually work naked a...couple hours a day. george: (whispering) glenda, can i ask you a favor? can i have this seat? glenda: (loud) what do you have to sit here for? there are plenty of other seats. george: (whispering) i can't explain. it's very important that i sit here. glenda: (loud) what are you doing here anyway? i thought you were fired. george: (whispering angrily) okay. okay. fine. elaine: i cook naked, i clean....i clean naked, i drive naked. naked. naked. naked. levitan: who are you? elaine: oh, you don't wanna know, mistah. i'm trouble. big trouble. jerry: (trying to divert vic's attention) what about the gentle cycle? you ever use that? jerry: do you think it's effeminate for a man to put clothes in a gentle cycle? jerry: what about fine fabrics? how do you deal with that kind of temperament? jerry: what about stone washing? you ever witness one of those? that must be something. what? do they just pummel the jeans with rocks? kramer: i didn't realize it was a full box. george: (trying again with glenda) i'm gonna count to three. if you don't give up the chair, the wig is coming off. glenda: i don't' wear a wig. george: one... (glenda seeing george is serious; gets up and leaves) elaine: no. no. no. no. no. i don't really have a phone. in fact, i - i really don't have an apartment. i kinda sleep around. elaine: i just like to have and few drinks and just let the guy do whatever he wants. would you close your eyes for a second? i wanna tell you a secret about my bra. george: hello, rick. levitan: heh heh heh hey! look who's here! george: that's right, ricky boy, it's me! levitan: you know something, costanza? i'm a very lucky man. george: oh! levitan: i've always been lucky. things just seem to fall right in my lap. george: boom! levitan: you wouldn't believe it if i told you. in fact, uh, i'm glad you're here. you know, maybe i've been a little rough on ya, huh? george: oh. levitan: why should we let petty, personal differences get in the way of business? i, uh, i want you to come back. (george is shocked) you can use my bathroom anytime you want. george: you want me to come back? uh... levitan: hey! how about a toast, huh? everybody, a toast! george: rick. levitan: everyone, i wanna propose a toast to ten great years at rick barr properties. george: uh, rick.. levitan: and all the people in this room, (clears throat) that made that possible.. george: rick. levitan: i'd also like to welcome back into the fold our..our little shrimpy friend, george costanza who, although he didn't really have a very good year -- how you blew that mcconnell deal, i'll never know. but, hey, what the hell, huh? we've always enjoyed his antics around the office. heh heh. anything you wanna add to this? george: drink up. (levitan takes a drink) george: i like history. civil war. maybe i could be a professor, or something. elaine: well, to teach something you really have to know a lot about it. i think you need a degree. jerry: yeah. that's true. kramer: (seeing jerry is with people) oh. jerry: what? (kramer hands jerry an envelope) my god, the money! the 1500! where'd you find it? kramer: it was in my laundry. jerry: in your laundry the whole time? i told you not to mix in our guys. what did we figure the damage on that machine would be? kramer: it was about 1200 bucks. newman: kramer! kramer: oh! that's newman. (goes over to the window) newman: i'm on the roof! kramer: (yelling up) well, what are you waiting for? jerry: elaine, come on, take a walk with me down to the laundromat. i gotta pay this guy the money.. george: (talking to nobody) i like horses. maybe i could be a stable boy. kramer: you wanna shoot some pool tonight? newman: i can't. i'm goin' to a movie. george: (talking to nobody) nah. it's probably a union thing. jerry: people like the idea of revenge. have you ever heard the expression 'the best revenge is living well' i've said this, in other words it means supposedly the best way to get back at someone is just by being happy and successful in your own life. sounds nice, doesn't really work on that charles bronson. kinda level. you know what i mean, those movies where his whole family gets wiped out by some street scum. you think you could go up to him, 'charlie forgot about the 357 what you need is a custom-made suit and a convertible. new carpeting, french doors, a divan. that'll show those punks.' [setting: night club] jerry: you know, i tell ya, i gotta say that i'm enjoying adulthood. for a lot of reasons. and, i'll tell you reason number one as an adult, if i want a cookie, i have a cookie, okay? i have three cookies or four cookies, or eleven cookies if i want. many times i will intentionally ruin my entire appetite. just ruin it. and then, i call my mother up right after to tell her that i did it. "hello, mom? yeah, i just ruined my entire appetite.. cookies." so what if you ruin.. see, because as an adult, we understand even if you ruin an appetite, there's another appetite coming right behind it. there's no danger in running out of appetites. i've got millions of them, i'll ruin them whenever i want! [setting: jerry's apartment] tv voice: (germanic) look, sigmund. look in the sky. the planets are on fire. it is just as you prophesied. the planets of our solar system, incinerating. like flaming globes, sigmund. like flaming globes.. ah, ha, ha, ha.. [setting: jerry's bedroom] [setting: coffee shop] elaine: what do you got, a cucumber? george: yeah, so what? elaine: you're bringing in an ouside cucumber? george: they refuse to put cucumber in the salad. i need cucumber. jerry: (trying to read the note) what have i done? i can't read this! ful-hel-mo-nen-ter-val? i got up last night, i wrote this down, i thought i had this great bit. elaine: no. let me see that. (takes the paper from jerry) don't-mess-with-johnny." jerry: johnny? johnny who? johnny carson? did i insult johnny on the tonight show? elaine: (joking) did you mess with johnny, jerry? george: let me see that. (studies the note) elaine: hey, where's kramer? jerry: i don't know. that's like asking "where's waldo?" george: (still holding the note) i think i'm having a heart attack. jerry: i don't think that's it. george: i'm not kidding. jerry: what does that mean? elaine: i think what he's trying to say is that he's having a heart attack. jerry: oh, he's having a heart attack. george: tightness.. jerry: c'mon. george: shortness of breath.. jerry: oh, this is ridiculous. george: radiating waves of pain.. jerry: i know what this is. you saw that show on pbs last night, coronary country. (to elaine) i saw it in the tv guide. i called him and told him to make sure and not watch it. george: there was nothing else on. oh, the left arm.. the left arm. jerry: (to elaine) he saw that show on anorexia last year, and ate like an animal for two weeks. george: why can't i have a heart attack? i'm allowed. jerry: so what do you want? you want me take you to the hospital? george: manhattan memorial, less of a line. jerry: i'll call an ambulance. (exits) waitress: is everything alright? george: we'll just take a check. (she leaves the check. george, in all his cheapness, can't help but to review the check. he finds an error) you made a mistake on the.. elaine: george! [setting: hospital room] man: ooohhh... argghhh.. george: are.. are you okay? man: ooooooohhh.. george: i'm george.. george costanza.. i've never been in the hospital a day in my life.. except when i had my tonsils out. you know, they never gave me any ice cream. i always felt that- man: shut up! jerry: well? what do you think? nurse 1: "salami, salami, bologna." definitely. jerry: "salami salami bologna"? doctor: (in a hurry) oh, your friend's fine. he didn't have a heart attack. i'll be in - in a few minutes. jerry: (sarcastic) what a surprise. (enters george's room overly sympathetic - leading george to think that the doctor told jerry something significant) hey, how ya doin' buddy? you need anything? do you want me to go out and get you a superman comic? george: no, no thanks. jerry: (still going along with the practical joke) you know, i was wondering.. you know that black hawks jacket you have? george: oh, sure, my black hawks jacket. i love my black hawks jacket. jerry: well, you know, i was thinking - if things don't exactly work out.. george: well, it wouldn't fit you. the sleeves are too short. jerry: no, i tried it on. it fits good. george: well, i didn't really think about what i was gonna do with all.. jerry: well, you know.. george: (reluctantly) well, okay. jerry: oh, and.. do you think it would be alright if i called susan davis? george: susan davis? (getting possessive) hey, wait a second.. jerry: well, it's not like we'd be bumping into you. george: i don't know.. you and susan davis? jerry: you know, if your future was a little more certain.. george: okay, go ahead. call her, get married, have babies, have a great life.. what do i care? i'm finished. (really depressed) it's all over for me. in fact, let's end it right now. jerry, kill me, kill me now. i'm begging you. let's just get it over with. be a pal.. just take the pillow and put it over my face. jerry: well, ah.. (takes his pillow) what? kind of like this? (violently smothers george with the pillow. george freaks out. he didn't think jerry would actually do it) george: what are ya doing?! whadya, crazy?! elaine: jerry! jerry: (acts like he was cought red-handed) elaine, what are you doing here? (takes the pillow off george, and puts it back on his bed) george: (to jerry) jerk off. jerry: (whispering) there's nothing wrong with him. i saw the doctor. he's fine. elaine: hi, george. how ya feeling? is anybody getting your apartment? george: i'll tell ya, if i ever get out of here, i'm gonna change my life. i'm gonna do a whole zen thing. take up yoga, meditate.. i'll eat right. calm down, lose my anger.. (sees jerry and elaine aren't listening. he snaps) hey, is anybody listening?! doctor: (to elaine) uh, hello. (to george) uh, mr. costanza? george: (panicky) uh, yeah. you know, doctor, i gotta tell you, i feel a lot better. doctor: well, we looked at your ekg's, ran some tests, did a complete work-up. george: (getting in a more panicked state) oh god, mommy! doctor: and you simply haven't had a heart attack. george: (relieved) i haven't? i'm okay? i'm okay? oh, thank you, thank you, doctor! i don't know how to thank you. jerry: (sarcastic) hey, that was really fun, george. can we go home now? doctor: no, actually, we'd like to keep him here overnight for observation, just to be safe. george: oh, sure. sure, anything. can you believe it? there's nothing wrong with me. doctor: well, i wouldn't go that far. george: (starting to panic again) what? oh my god. what? is it meningitis? scoliosis? lupis?! is it lupis?! doctor: have you ever had your tonsils taken out? george: my tonsils? yeah, when i was a kid. doctor: well, they've grown back. your adenoids are swollen too. george: really? elaine: (jokingly hits the doctor) whose tonsils grow back? (laughs) doctor: it happens. jerry: yeah, if you've been exposed to gamma rays. elaine: i still have my tonsils. everyone in my family has their tonsils. in fact, we were forbidden to socialize with anyone who didn't have their tonsils. doctor: that's interesting. because, no one in my family has their tonsils, and we were forbidden to socialize with tonsil people. jerry: (sarcastically) well, it's like the capulets and the montagues. george: (drawing attention back to him) excuse me! doctor: anyway, i strongly recommend they come out. george: what? you mean with a knife? doctor: yes. with a knife. you know, snip, snip. anyway, you'd be completely under, you wouldn't feel a thing. and when you wake up, you can have some ice cream. george: (angry) yeah, that's what they told me the last time. doctor: think about it. (turns to leave, but runs into elaine) excuse me. elaine: (flustered) oh, i'm sorry. (doctor exits) i just.. have to ask that doctor one more question. (leaves) jerry: women go after doctors like men go after models. they want someone with knowledge of the body.. we just want the body. kramer: hey. jerry: hey. kramer: boy, they got a great cafeteria downstairs. hot food, sandwiches, a salad bar.. it's like a sizzler's opened up a hospital! (sits and starts eating) so, how did you have a heart attack? you're a young man. what were you doing? are they gonna do a zipper job? oh, they love to do zipper jobs. jerry: (trying to shut him up) kramer. kramer: the really bad thing about the heart is the sex thing. see, you gotta be careful about sex now. you get that heart pumping and suddenly, boom! next thing you know, you got a hose coming out of your chest attached to a piece of luggage. jerry: kramer, george didn't have a heart attack. kramer: no? that's good. george: i have to have my tonsils taken out. kramer: oh man.. no.. george, we gotta get you outta here. get out! right now! they'll kill ya in here. jerry: (trying to calm george down) it's routine surgery. kramer: oh yeah? my friend, bob saccomanno, he came in here for a hernia operation.. oh yeah, routine surgery.. now he's sittin' around in a chair by a window going, "my name is bob" .. george, whatever you do, don't let 'em cut you. don't let 'em cut you.. george: well, what should i do, kramer? jerry: well, for one think, don't listen to him. kramer: i'll tell you what to do, i'll tell you what to do. you go to tor eckman. tor, tor, he'll fix you right up. he's a herbalist, a healer, george. he's not just gonna fix the tonsils and the adenoids, he is gonna change the whole way you function - body and mind. jerry: eckman? i thought he was doing time? kramer: no, no, he's out. he got out. see, the medical establishment, see, they tried to frame him. it's all politics. but he's a rebel. jerry: a rebel? no. johnny yuma was a rebel. eckman is a nut. george, you want to take care of your tonsils, you do it in a hospital. with a doctor. kramer: he's holistic, george. he's holistic. george: holistic.. that sounds right. jerry: george, you need a medical doctor. george: (to jerry) let me ask you something.. how much do you think it would cost to have tonsils and adenoids removed in the hospital? jerry: well, an overnight stay in a hospital? minor surgery? i dunno, four grand. george: uh-huh. and how much does the healer charge? kramer: first visit? thirty-eight bucks. george: oh, yeah? holistic.. that's what i need. that's the answer. [setting: healer's apartment] george: so, how do you like the way i talked you into comin' down here? jerry: don't flatter yourself, my friend. i'm here strictly for material, and i have a feeling this is a potential gold mine.. i still think you're nuts, though. george: all i know is i've been going to doctors all my life. what has it gotten me? i'm thirty-three years old. i haven't outgrown the problems of puberty, i'm already facing the problems of old age. i completely skipped healthy adulthood. i went from having orgasms immediately to taking forever. you could do your taxes in the time it takes me to have an orgasm. i've never had a normal, medium orgasm. jerry: (jokingly making fun of george) i've never had a really good pickle. george: besides, what's it gonna cost me? thirty-eight bucks? tor: (to jerry) would you not put your foot on that please? jerry: sorry. tor: what month were you born? george: april. tor: you should have been born in august. your parents would have been well-advised to wait. george: really? tor: do you use hot water in the shower? george: yes. tor: stop using it. george: ..okay. kramer: i'm off hot water. tor: kramer tells me that you are interested in an alternative to surgery. george: yes, yes i am. tor: (blows into george's face) i think we can help you. see, unfortunately, the medical establishment is a business like any other business. and business needs customers. and, they want to sell you their most expensive item which is unnecessary surgery. george: (still on the showers) can i use hot water on my face? tor: no. you know, i am not a business man. i'm a holistic healer. it's a calling, it's a gift. you see, it's in the best interest of the medical profession that you remain sick. you see, that insures good business. you're not a patient. you're a customer. jerry: (he thinks this, the audience can hear his thoughts) and you're not a doctor, but you play one in real life. george: (still on the hot water) what about shaving? tor: (to jerry) you're eating too much dairy. (to george) may i? (reaches over, and touches george's face) george: i guess so. tor: (feeling george's face) you see, you are in disharmony. the throat is the gateway to the lung. tonsillitis, adenoiditis, is, in chinese medical terms, and invasion of heat and wind. jerry: (again, we hear his thoughts) there's some hot air blowing in here.. tor: you know, i lived with the eskimos many years ago, and they used to plunge their faces into the snow. george: (once again, still on the shower) could it be lukewarm? jerry: too much dairy? you really think i'm eating too much dairy? [setting: doctor's car] doctor: ..the tongue.. yes, the tongue.. or, in medical terms, the glossa. it's a muscular organ.. consists of two parts.. the body, and the root.. you see, it's covered by this mucous membrane.. these little raised projections are the papillae, which give it that furry appearance. very tactile.. elaine: uh-huh. [setting: healer's apartment] tor: (pouring tea) your tea is ready now. this will solve your so-called tonsil problem. it's a special concoction. it contains crampbark. jerry: i love crampbark. tor: cleavers. jerry: cleaver, i once had cleaver as a kid. i was able to lift a car. tor: and some couchgrass. jerry: couchgrass and crampbark? you know, i think that's what killed curly. kramer: go ahead, drink it, george. jerry: excuse me, tor. may i ask you a question? you have intuitive abilities. you're in touch with a lot of this cosmic kind of things.. i have this note i can't read. i was wondering if- tor: (takes the note, then laughs when he reads it) oh, yes.. yes.. "cleveland 117, san antonio 109.. (hands note back to jerry) kramer: go ahead, drink it, george. george: (takes a sip) hey, it's not too bad.. [setting: ambulance] george: (in a state of hysteria) i'm an eggplant! i'm an eggplant! i'm a minstrel man! driver: (to assistant) i didn't take your chuckle, man! assistant: i had five chuckles. i ate a green one, and the yellow one, and the red one is missing! driver: i don't even like chuckles! jerry: (to assistant) maybe he doesn't like them. that's possible. george: my face! my face! get me to the hospital! assistant: i want that chuckle! you hear me?! jerry: (to assistant) i'll get you a chuckle. you want me to get you a chuckle? assistant: (angry, to driver) pull over! driver: pull over? did you say pull over?! you want a piece of me?! assistant: yeah! jerry: you're gonna fight? george: now?! i'm a mutant! kramer: (to driver) hey, let me drive. assistant: come on, man. pull over! driver: alright! i'm gonna mess you up, man! jerry: (pleading) really, gentlemen, please. george: my heart! my heart! (to assistant) where you going? are you crazy?! assistant: i'm gonna kick his ass. kramer: (to assistant) hey, you have keys? george: you can't leave! this is an ambulance! this is an emergency! jerry: all this for a chuckle. kramer: what's a chuckle? jerry: it's a jelly candy. it comes in five flavors. [setting: doctor's car] doctor: you see, taste buds run on grooves along the surfaces. elaine: can you let go of my tongue now? doctor: what? elaine: let go of my tongue! doctor: (lets go) oh, sorry. elaine: well, i should get going.. (the doctor leans in for a kiss. elaine stops him) what are you doing? doctor: i was going to kiss you good night. elaine: a kiss? with the tongue? the glossa with the bumps and the papillae? ..yech, i don't think so. (leaves) [setting: ambulance] jerry: you just can't leave him out there. driver: i told him i was gonna mess him up. kramer: well, can you call him an ambulance? driver: i told him i didn't take his chuckle. i don't eat that gooey crap! kramer: hey, watch the road! watch the road, man! driver: (turns back, facing kramer) hey, man, you want some of what he got?! jerry and kramer: watch out! [setting: hospital room] jerry: how ya doing? (george nods) can't talk? (george shakes his head. jerry gestures to his brace) hey, how'd you get the plastic one? (george raises his eyebrows) i like that. (george sticks his tongue out) so how's life without tonsils? (george quickly indicates with his arm that he wants ice cream) what? what's that? ..so, how much is this thing gonna cost you now? like, five, six thousand?.. (george signals that it's more) well, live and learn.. at least we lived. kramer went to eckman.. he feels better alreadyy.. (george motions for ice cream again) what are you doing? elaine: oh, poor george. oh, i'm sorry, but i can't stay long. i don't want to run into doctor tongue.. here, i brought you something. (takes out a pint of ice cream. george gets excited) oh, please, come on.. it was nothing. jerry: hey, check the tv. tv voice: (germanic) it's just as you prophesied. the planets of our solar system, incinerating. like flaming globes, sigmond. like flaming globes. ah, ha, ha, ha.. jerry: (pulls the note out of his pocket) that's it! that's it! flaming globes of sigmond! flaming globes of sigmond! that's my note! tha'ts what i thought was so funny?! ..that's not funny.. there's nothing funny about that. man in neighboring bed: shut up! man: aaahhhgggg! [setting: night club] jerry: i have a friend who's a hypochondriac, always thinks he's sick - never is. and they, you have another type of person, always thinks they're well, not matter how bad they really are. you know this type of person? very annoying. "feel great.. like being on the respirator.. intravenous heart/lung machine. i never felt better in my life." medical science is making advances every day in control health problems. in fact, it's probably only a matter of time before a heart attack, you know, becomes like, a head ache. we'll just see people on tv going, "i had a heart attack this big (holds out hands, gesturing bigness) ..but, i gave myself one of these. clear! (puts imaginary electrode panels to his chest) brrhht.. and it's gone!" jerry: what are you doing? all right, all right. what's the matter with that? what about that one? elaine: robert vaughn, the helsinki formula? jerry: he was good in man from uncle. elaine: guess whose birthday's comin' up soon? jerry: i know, i'm having my root canal the same week. elaine: oh, right. i hope you have a good oral surgeon because that can be very serious. (changes channel) hey, look at naked people. jerry: no, i don't wanna see the naked people. elaine: been a while? jerry: i have a vague recollection of doing something with someone, but it was a long, long time ago. elaine: i think my last time was in rochester. my hair was a lot shorter. jerry: i remember that it's a good thing. someday, i hope to do it again. (jerry looks at elaine) elaine: what? jerry: what? elaine: what was that look? jerry: what look? elaine: the look you just gave me. jerry: i gave a look? elaine: yes. jerry: what kind of look? elaine: i know that look. jerry: then what was it? elaine: why should i tell you? jerry: well, you're the big look expert. i wanna see how smart you are. elaine: trust me. i know the look. (pause) so... jerry: what? elaine: what about the look? jerry: i don't know. elaine: you got something on your mind? jerry: no. things pop into your head. you? elaine: things occur to me from time to time. jerry: yeah, me too. well, you can't expect to just forget the past completely. elaine: no, of course not. jerry: i mean, it was something we did. probably about, what? twenty-five times? elaine: thirty-seven. jerry: yeah, we pretty much know what we're doin' in there. (points to bedroom) elaine: we know the terrain. jerry: no big surprises. elaine: nope. jerry: what do you think? elaine: i don't know. what do you think? jerry: well, it's something to consider. elaine: yeah. jerry: i mean, let's say we did. elaine: what if. jerry: is that like the end of the world or something? elaine: certainly not. jerry: why shouldn't we be able to do that once in a while if we want to? elaine: i know. jerry: i mean, really, what is the big deal? we go in there. (points to the bedroom) we're in there for a while. we come right back out here. it's not complicated. elaine: it's almost stupid if we didn't. jerry: it's moronic. elaine: absurd! jerry: of course, i guess, maybe, some little problems could arise. elaine: we, there are always a few. jerry: i mean, if anything happened, and we couldn't be friends the way we are now, that would be really bad. elaine: devastating. jerry: because this is very good. (points back and forth between them to indicate friendship) elaine: and that would be good. (points to bedroom) jerry: that would be good too. the idea is combine the this and the that. but this cannot be disturbed. elaine: yeah, we just wanna take this and add that. jerry: but of course, we'd have to figure out a way to avoid the things that cause the little problems. maybe some rules or something. elaine: huh. jerry: for example, now, i call you whenever i'm inclined and vice versa. elaine: right. jerry: but if we did that, we might feel a certain obligation to call. elaine: well why should that be? oh, i have an idea. i have an idea. no call the day after that. jerry: beautiful. let's make it a rule. elaine: all right, sir. jerry: now here's another little rule. elaine: yeah. jerry: when we see each other now, we retire to our separate quarters. but sometimes, when people get involved with that, they feel pressure to sleep over. when that is not really sleep. sleep is separate from that. and i don't see why sleep got all tied up and connected with that. elaine: okay, okay. rule number two. spending the night is optional! jerry: well now we're gettin' somewhere. elaine: what about the kiss goodnight? jerry: tough one. you're call. elaine: it's brug-wa (?). jerry: fine. well. elaine: well. jerry: you ready? elaine: ready. jerry: so think you can handle this? elaine: definitely. (runs into bookshelf) kramer: hey. jerry: hey. kramer: got the paper? jerry: not yet. kramer: no paper? jerry: i haven't been out yet. kramer: well, what's taking you so long? (elaine enters from the bedroom. kramer is a little shocked) uh? oh, well, yeah... (he exits) george: what's the deal with aquaman? could he go on land, or was he just restricted to water? jerry: no, i think i saw him on land a couple times. so how's the job situation goin'? george: still lookin'. it's pretty bad out there. what about you? jerry: nothin' much. i slept with elaine last night. george: oxygen! i need some oxygen! this is major. jerry: i thought you'd like that. george: oh, this is huge! jerry: i know. george: all right, okay. let's go, details. jerry: no, i can't do details. george: you wha? jerry: i can't give details. george: no details? jerry: i'm not in the mood. george: you ask me here to have lunch, tell me you slept with elaine, and then say you're not in the mood for details. now you listen to me. i want details and i want them right now. i don't have a job, i have no place to go. you're not in the mood? well you get in the mood! jerry: all right, okay. we're in the apartment watching tv. george: where are you sitting? jerry: on the couch. george: next to each other? jerry: no, separated. george: time? jerry: around eleven. george: okay, go ahead. jerry: so she's flipping around the tv, and she gets to the naked station. george: oh, see? that's why i don't have cable in my house. because of that naked station. if i had that in my house, i would never turn it off. i wouldn't sleep, i wouldn't eat. eventually, firemen would have to break through the door, they'd find me sitting there in my pajamas with drool coming down my face. all right, all right. so you're watching the naked station. jerry: and then, somehow, we started talking about, what if we had sex. george: boy, these are really bad details. jerry: it pains me to say this, but i may be getting to mature for details. george: oh i hate to hear this. that kind of growth really irritates me. jerry: well. i'll tell you though. it was really passionate. george: better than before? jerry: she must've taken some kind of seminar or something. george: this is all too much. so what are you feeling? what's going on? are you like a couple again now? jerry: not exactly. george: not exactly. what does that mean? jerry: well, we've tried to arrange a situation where we'll be able to do this once in a while and still be friends. (george laughs hysterically and stands out of his seat) george: where are you living? are you here? are you on this planet? it's impossible. it can't be done. jerry: i think we've worked out a system. george: oh, you know what you're like? you're like a pathetic gambler. you're one of those losers in las vegas who keeps thinking he's gonna come up with a way to win at blackjack. jerry: no, this is very advanced. we've designed at set of rules that we can maintain the friendship by avoiding all of the relationship pitfalls. george: sure, all right. tell me the rules. jerry: okay. no calls the next day. george: (to himself) so you're havin' the sex, next day you don't have to call. that's pretty good. (back to jerry) go ahead. jerry: you ready for the second one? george: i have tell you, i'm pretty impressed with the first one. jerry: spending the night. optional. george: no, you see? you got greedy. jerry: no, that's the rule. it's optional. george: i know less about women than anyone in the world. but one thing i do know is they're not happy if you don't spend the night. it could be a hot, sweaty room with no air conditioning and all they have is a little army cot this wide (displays with french fry) you're not going anywhere. jerry: i think you're wrong. george: i hope i am. jerry: is this yours or the roommate's? elaine: the roommate's. jerry: would she mind? elaine: she keeps track of everything. jerry: well, that's too bad, 'cause i'm takin' it. elaine: thanks. jerry: well, guess i'll get going. elaine: oh. jerry: well, i got that root canal tomorrow morning. it'll be easier if i go home. elaine: fine, go away. jerry: i don't understand. is there a problem? (elaine is pulling a roll of paper towels about twenty feet long) i'm getting the impression there's a problem. elaine: just go. jerry: i'm having surgery tomorrow. elaine: oh, surgery. you're going to the dentist. jerry: but you said, it can be very serious. elaine: okay, so fine. go. jerry: what happened to the rules? remember? sleeping over was optional. elaine: yeah, it's my house, it's my option. jerry: it has nothing to do with whose house it is. elaine: oh, of course it does. (elaine's roommate, tina, enters) tina: hi. elaine + jerry: hi. tina: hi, jerry. jerry: hi. tina: such a great improv class tonight. elaine: oh really? tina: i had this improv where i pretended i was working in one of those booths. you know, in the amusement park, where you have to shoot the water in the clown's mouth and you have to blow up the balloon. elaine: uh, tina? could you excuse us for just one second? tina: oh, yeah. i'll excuse you. (she walks away) elaine: what are you doing? jerry: i can't go if you're mad. elaine: i'm not mad. jerry: you seemed a little mad. elaine: no, no. jerry, i'm fine really. it's okay. jerry: so you're okay with everything? elaine: definitely. are you? jerry: definitely. well, goodnight. elaine: goodn-- (he starts to kiss her) what're you doing? jerry: what? elaine: rules. tina: hey, who took my cake? (jerry exits quickly) george: what about jewelry? that's very nice gift. jerry: no, no. i have to be very careful here. i don't want to send the wrong message. especially after the other night. george: maybe i'll get her some jewelry. jerry: no, no. you can't get her anything better than me. whatever i spend, you have to spend half. george: what am i supposed to get, a bazooka? jerry: you don't understand. i'm in a very delicate position. whatever i give her, she's going to be bringing in experts from all over the country to interpret the meaning behind it. george: what does she need? maybe there's something that she needs. jerry: i think i heard her say something about a bench. george: a bench? what kind of a bench? jerry: i don't know, but she mentioned a bench. george: what, like at a bus stop? jerry: i don't know. george: like a park bench? jerry: i have no idea. george: who puts a bench in their house? jerry: forget the bench. george: i got it. you wanna get her something nice? how 'bout a music box? jerry: no, too relationshippy. she opens it up, she hears that laura's theme, i'm dead. george: okay, what about a nice frame? with a picture of another guy in it. frame says i care for you, but if you wanna get serious, perhaps you'd be interested in someone like this. jerry: nice looking fellow. george: what about candle holders? jerry: too romantic. george: lingerie? jerry: too sexual. george: waffle maker. jerry: too domestic. george: bust of nelson rockefeller. jerry: too gubernatorial. (?) george: let's work on the card. jerry: maybe you won't like it. elaine: oh, how could i not like it? of course i'll like it. jerry: you could not like it. elaine: just the fact that you remembered means everything. jerry: of course i remembered. you reminded me everyday for two months. oh, the card. (she opens) elaine: cash? jerry: would do you think? elaine: you got me cash? jerry: well this way i figure you can go out and get yourself whatever you want. no good? elaine: who are you, my uncle? jerry: well come on. that's $182 right there. i don't think that's anything to sneeze at. elaine: let me see the card. (reading) to a wonderful girl, a great pal, and more? (kramer enters) kramer: hey. oh, elaine. i'm glad you're here. stay right there. i'm gonna be right back. (he exits) elaine: pal? you think i'm your pal? jerry: i said, "and more." elaine: i am not your pal. jerry: what's wrong with pal? why is everyone so down on pal? (kramer enters with present) elaine: oh, what is this? you got me something? kramer: yeah. open it. elaine: oh kramer... (she opens it) the bench! you got me the bench that i wanted! (jerry looks irritated) kramer: that's pretty good, huh? jerry: great. kramer: remember when we were standing there and she mentioned it? i made a mental note of it. jerry: well goody for you. kramer: oh yeah, i'm very sensitive about that. i mean, when someone's birthday comes up, i keep my ears open. so what'd you get her? jerry: 182 bucks. kramer: cash? you gotta be kidding. what kind of gift is that? that's like something her uncle would get her. elaine: (reading card) think where man's glory most begins and ends and say my glory was i had such a friend. kramer: (to jerry) yates. elaine: oh kramer. (they embrace) jerry: could you excuse us please? kramer: what? jerry: we're talking. kramer: oh, the relationship. (he leaves) jerry: you know, we never had one fight before this deal. elaine: i know. jerry: never. elaine: ever. jerry: we got along beautifully. elaine: like clams. jerry: it was wonderful. elaine: a pleasure. jerry: so i think we should just forget the whole deal, and go back to being friends. elaine: i can't do it. jerry: you what? elaine: i can't do that. jerry: you mean it's... (she nods) no this. no that. no this or that. oh, boy. hmmm. what do you want? elaine: this, that, and the other. jerry: oh, sure. of course, you're entitled. who doesn't want this, that, and the other? elaine: you. jerry: (starts to correct then realizes) well... george: those birthdays. i told you. they're relationship killers. if a relationship is having any problems whatsoever, a birthday will always bring it out. jerry: i never should have made up those rules. george: what is it about sex that just disrupts everything? is it the touching? is it the nudity? jerry: it can't be the nudity. i never got into these terrible fights and misunderstandings when i was changing before gym class. george: you know what this means? i can't see her anymore either. jerry: why? george: it's break up by association. besides, she's mad at me anyway because of my birthday present. jerry: what did you end up giving her? george: 91 dollars. jerry: sorry about that. george: so what're you gonna do? jerry: well, if i call her, there's no joking around anymore. this is pretty much it. george: so, maybe this should be it. jerry: could be it. george: she seems like an it. jerry: she's at it as you get. imagine bumping into her on the street in five years with a husband. and she tells me he's a sculptor, they live in vermont... george: we'd have to kill him. jerry: we'd get caught, i'd get the chair. george: i'd go to prison as your accomplice. i'd have to wear that really heavy denim. go to the cafeteria line with the guy who slops those mashed potatoes onto your plate. go to the bathroom in front of hundreds of people. jerry: plus, you know what else. george: you better call her. kramer: hey. jerry: hey. kramer: you got the paper yet? jerry: yeah. kramer: well where is it? (elaine enters from bedroom with newspaper) hey, you done with that? elaine: no. kramer: well, you're not reading it now. elaine: all right, you can take it. but i want it back. kramer: oh yeah. so, ah, what're you guys gonna do today? elaine: ah, this. and that. jerry: and the other. kramer: boy, i really liked the two of you much better when you weren't a couple. (he exits) [setting: night club] jerry: men flip around the television more than women, i think. men get that remote control in their hands, they don't even know what the hell they're watching. you know, we just keep going, "rerun, don't wanna watch it.. " "what are you watching?" "i don't care, i gotta keep going." "who was that?" "i don't know what it was - doesn't matter, it's not your fault. it doesn't matter, i gotta keep going." women don't do this. see now, women will stop and go, "well, let me see what the show is before i change the channel." you see? men just fly. because women, you see, women nest and men hunt. that's why we watch tv differently. before there was flipping around, before there was television, kings and emperors and pharaohs and such had story-tellers that would tell them stories 'cause that was their entertainment. i always wonder, in that era, if they would get, like, thirty story-tellers together so they could still flip around. just go, "alright start telling me a story, what's happening? i don't want to hear anymore. shut up. go to the next guy. what are you talking about? is there a girl in that story? ..no? shut up. go to the next guy. what do you got? i don't want to hear that either. shut up. no, go ahead, what are you talking about?.. i don't want to hear that. no, the all of you, get out of here. i'm going to bed." [setting: coffee shop] george: (shocked) she's pregnant? leslie is pregnant?! oh, see, there is no justice. jerry: she's the performance artist, right? george: (sarcastic) yeah, performance artist. she's a real performer. a real trooper. jerry: what's her husband's name, again? chip? kip? skip? elaine: todd. jerry: todd. oh yeah. (to george) he's a kennedy. elaine: no, he's not. jerry: c'mon. he's a third cousin, or something. elaine: by marriage. jerry: oh, by marriage. (to george) we went to their wedding. you should have heard him talking about chappaquiddick - trying to blame the whole thing on bad directions. george: that woman was unequivocally the worst date of my life. elaine: oh, pardon me for trying to set you up with a beautiful, intelligent woman. george: what, you don't think i can attract beautiful, intelligent women? jerry: thin ice, george. thin ice.. george: (sarcastic) maybe for her new performance piece she'll give birth on stage. elaine: she stopped performing. george: (again, sarcastic) oh, what a huge blow to the culture. jerry: (gesturing to george) you believe this guy? he holds a grudge like khomeini. george: she dragged me down to that warehouse on the waterfront in brooklin to see one of her "performances". jerry: oh, and she cooks dinner onstage for some celebrity? george: god! she's cooking dinner for god! she's yelling and screaming, and the next thing i know, she throws a big can of chocolate syrup all over my new red shirt. elaine: it was an accident! george: oh, yeah, sure, accident, right. she was aiming right at me like she was putting out a fire! then, for the rest of the show, i'm sitting there with chocolate all over my shirt. flies are landing on me. i'm boiling - i'm fantasizing all the things i'm gonna say when i see her. and later, finally, backstage when i talk to her, i'm a groveling worm. "what kind of chocolate was that? do you throw any other foods?" jerry: (to elaine) he thought he still had a shot. george: and then, then, then she leaves with somebody else! never even, never even said goodbye! never called me back.. never apologized. nothing. like i was dirt. jerry: what ever happened with the shirt? george: i still have it. the collar's okay. i wear it under sweaters. elaine: i don't know what i'm gonna do. she asked me to give her a baby shower. jerry: asked you? you're not going to do that are you? elaine: anyone else, never. but, leslie - i have a problem saying no to. for some reason, i seem to want her approval. george: let maria shriver give her a baby shower. jerry: ask not what i can do for you - ask what you can do for me. george: (germanic) ich bin ein sucker. elaine: oh, would you two stop with the kennedys? why does everybody make such a big deal about he kennedys? what is this fascination?! who cares?! it's all so boring.. george: she doesn't deserve a baby shower. she deserves a baby monsoon. she deserves rosemary's baby! elaine: (to jerry) i do have one teeny little problem, though. george: never said goodbye. never apologized. nothing. elaine: see, i was gonna give the shower in my apartment.. jerry: but? elaine: my roommate has lyme disease. jerry: lyme disease? i thought she had epstein-barr syndrome? elaine: she has this in addition to epstein-barr. it's like epstein-barr with a twist of lyme disease. jerry: how did she get lyme disease? elaine: i don't know. she did some outdoor version of hair in danbury, connecticut. jerry: they still do that play? elaine: it's a classic. jerry: with all the nudity? elaine: i guess. she must've rolled over on a tick during the love-in. george: (still mad a leslie) never said goodbye. goodbye! jerry: explain to me how this baby shower thing works. elaine: what do you wanna know? jerry: well, i mean, does it ever erupt into a drunken orgy of violence? elaine: rarely. jerry: there's no hazing of the fetus, or anything, is there? elaine: no. jerry: when is this suppose to be? elaine: saturday. jerry: saturday?.. well, i have a show in buffalo on saturday. they're not gonna bust up my apartment, or anything, are they? elaine: i'll take full responsibility. you won't regret it. jerry: 'cause i've seen these pregnant women - and they sometimes misjudge their fetal girth. just like one wrong turn, and boom! and entire buffet is swept off the table. george: someday, before i die, mark my words - i'm gonna tell that woman exactly what i think of her. i'll never be able to forgive myself until i do. jerry: and if you do? george: i still won't be able to forgive myself - but at least it won't be about this. [setting: jerry's apartment] kramer: what are you doing this for? look at you.. jerry: quiet. i'm trying to get a picture. kramer: but you don't have to do this! this guy is waiting in my house. jerry: (pleading) leave me alone. kramer: it's a one-time fee. a hundred and fifty bucks. why live like this?! jerry: i'm not getting illegal cable! kramer: oh, so what are you gonna do? you gonna wait for the cable companies to resolve their dispute? they're gonna be in court for years. jerry: no, i read in the paper.. kramer: (sarcastic) oh, oh, the paper.. jerry: well, they might hook us up again. kramer: oh, god, you're so naive! all the cable companies care about is the "big mammoo." (jerry wacks the tv) oh, look at you! you're banging things.. pathetic. just wasting your life. i'm offering you fifty-six channels - movies, sports, nudity. and it's free! for life! jerry: stop shouting! you're ruining the reception. kramer: can you hear yourself? can, can, do you know what you're saying?! jerry: what you're suggesting is illegal. kramer: it's not illegal. jerry: it's against the law. kramer: well, yeah. jerry: (gesturing to the rabbit ears) just, just, hold this. can you hold that? kramer: (holding the rabbit ears) look, will you at least let me bring the guy over? he's an amazing man. he's a russian immigrant. he escaped the gulag. he's like the sakharov of cable guys.. he'll slow down your gas meter. he sells slugs, jerry. slugs for the subway. jerry: a real human rights nut, huh? kramer: yeah. he's intense, man. jerry: i don't know. what if i get caught? kramer: oh, you're not gonna get caught. look, let me get him. man, it's the nineties, it's hammer time! come on, just let me get him. jerry: you know, why don't we wait? because, i'm going out of town tomarrow. tabachnick: tomarrow okay. kramer: no problem. yeah, you'll have the whole thing installed by the time you get back. jerry: (mutters to himself) every time i turn on the tv, sirens are gonna go off. they're gonna track me down like a dog, i know it.. kramer: no, no, now look now, jerry, jerry, it's no risk. i swear. the mets have seventy-five games on cable this year.. jerry: (pauses, thinking about what kramer just said) put it in. kramer: you won't regret it. (jerry mutters some more, kramer rubs his hands together in anticipation, then starts dancing around with a reluctant jerry) jerry's gonna be a cable boy, a cable boy, a cable boy.. [setting: jerry's apartment] man: mr. steinfeld? jerry: seinfeld. man: we're with the fbi. you wanna tell us about your cable hook-up? jerry: my cable hook-up? what about it? man: it's been illegally installed, mr. steinfeld. jerry: it has? i've been out of town. how did you know? kramer: jerry, i had to tell them. i had to. i had no choice. they were onto the scam from the very beginning. man: you're in serious trouble, mr. steinfeld. jerry: wait a minute. wait a minute, hold on! we're just patsies. we're just a couple of users.. we never sold the stuff. what about the russian guy? the russian guy is the guy you want. tabachnick: mr. seinfeld, agent stone. fbi. undercover. kramer: no! jerry! (the fbi agents open fire. jerry's gunned down by a hailstorm of bullets. kramer leans next to a fallen jerry, cupping jerry's head in his hands) cable boy, cable boy.. what have you done to my little cable boy?.. [setting: airplane] jerry: excuse me. can i get something to drink? stewardess: i'm afraid not. jerry: what's with this airline? what are you, cutting out the drinks now? stewardess: no sir. we're flying into a blizzard. please fasten your seat belt. we're making an emergency landing. jerry: (sarcastic) are they gonna go over the instructions again? bill: my name is bill. i might be the last person you ever see. [setting: night club] jerry: i'm not afraid of flying, although many people do have fear of flying and, i have no arguement with that. i think fear of flying is quite rational because, human beings cannot fly. humans have fear of flying same way fish have fear of driving. put a fish behind the wheel, and they go, "this isn't right. i shouldn't be doing this. i don't belong here." [setting: george's car] george: sounds like a rough trip. jerry: oh, fire engines, ambulances all along the runway. and then, when we landed safely, they all seemed so disappointed. george: so, the college cancelled the gig? jerry: well, there was so much snow. the roads were closed. i really appreciate it - you picking me up. thanks again. george: (modestly) forget it. jerry: no, really.. an airport run. george: it's nothing. jerry: hey, it's one thing if i asked you "could you do me a favor?" ..but to suggest it?.. george (obviously up to something. jerry doesn't suspect anything - yet) whey you told me what you went through on the plane, it makes you stop and think. you appreciate having a real friend. jerry: (joking) you know, if richie brandes did this, i'd be suspicious, you know. he's always got some ulterior motive. george: (laughs nervously) ..ulterior motive. jerry: oh, wait a minute. wait a minute. don't take the bridge.. get off here. we can't go back to my place, elaine's having the shower. george: (obviously knows that, but pretends he doesn't) what, tonight? now? jerry: yeah, yeah. i forgot all about it. alright, it's no big deal. we'll just go back to your place. george: my place? no, no, no. i hate my place. i don't wanna go back to my place. jerry: you want to get a bite? george: yeah, i would. it's just, you know, i just ate a whole pot roast. jerry: well, so what should we do? george: shouldn't we at least drop off your bag? jerry: red shirt! red shirt! that's the red shirt! george: (nervous) what are you talking about? jerry: you're wearing the chocolate shirt! george: i am? what a strange coincidence.. jerry: a - ha! nice try, my friend, but you gotta get up pretty early in the morning.. george: (pleading) you gotta let me go over there. jerry: what are you gonna do? badger a pregnant woman at her own baby shower?! what are you, gonna take it off and make her rinse it in club soda? george: no, i'm gonna hold it under her nose so she can smell the scent of stale bosco that i had to live with for three years, and i'm gonna say, "remember this shirt, baby?! well, now, it's payback time!" [setting: jerry's apartment] leslie: we just bought an apartment on riverside drive. bernard goetz's mother used to live there. elaine: so, where's todd? leslie: up in hyannisport. elaine: oh my god, hyannisport? with the kennedys? who else is up there? is rose up there?! woman: (to leslie) so, when's your due date? leslie: march twentieth, nine a.m. woman: you know the time! leslie: i'm having a planned c-section. my therapist told me if i go through labor, i might get psychotic. elaine: leslie, leslie, whatever happened to sargent shriver? is he still with them? you don't hear much about him these days. is he out of the loop? leslie: (takes a bite of food) elaine, who catered this, sears? elaine: (whispering to kramer) what is this?! what are you doing here? kramer: we're putting in cable. elaine: the cable? no, no, no. i'm having a party here. you can't do this now! kramer: oh, we have to do this now. elaine: who's this guy? kramer: which one? elaine: both of the them. kramer: oh, they're soviet cable guys. elaine: okay.. does jerry know about this? kramer: oh yeah.. it's all authorized, yeah. elaine: you can't! you can't do this now! kramer: elaine, do you know how booked up this guy is? now, if i send him away now, it's gonna take jerry months to get him back.. he won't like that. elaine: alright. just do it fast and then get out. kramer: (snaps his fingers) anatoly! (the russians get to work on command. to elaine) look, it's gonna take a few minutes.. then, you and the gals can take a load off and watch something on lifetime. [setting: george's car] jerry: and what if we go up there? what are you going to say to her? george: (boiling) what am i going to say?! jerry: yeah. george: what did you go out with me for?! just to dump chocolate on my shirt and then just dump me altogether?! i don't deserve that kind of treatment! what, you don't have the common courtesy to return my calls?! to apologize! you think i'm some sort of a loser, that likes to be abused and ignored?! who's shirt can be ruined without financial restitution?! some sort of a masochist who enjoys being humiliated? you think you can avoid me like i have some sort of disease?! you have the disease! you have the disease! you may be beautiful and rich and physically .. just .. unbelievable, but you sicken me! you disgust me! you and everyone like you! jerry: you'll never say that to her face. george: watch me. [setting: jerry's apartment] kramer: (flirting with a female guest) yeah, i eat the whole apple. the core, stem, seeds, everything. elaine: (to kramer) kramer, kramer, look at him. (gestures to tabachnick) look! he's eating all the food! kramer: yeah, yeah. well, you know, there are many differences between american and soviet cultures that you're not aware of. see, in russian, the cable guy, they got the whole run of the house. yeah, that's tradition. (turns back to the woman) did you ever eat the bark of a pineapple? elaine: kramer! kramer: (trying to break up the fight) uh.. excuse me.. elaine: what are you doing here? i thought you were out of town for the weekend. jerry: the show was cancelled. there was a blizzard. elaine: i can't believe you told kramer it's okay to put the cable in during the shower! jerry, look,, look! they've eaten everything. leslie: jerry, what a surprise! i thought you sere out of town. jerry: well, leslie, sometimes the road less travelled is less travelled for a reason. elaine: (speaking confidentially to george) george, don't even think about it! don't even dream about it! george: (unconvincingly coy) about what? tabachnick: (sticks his head out the door) kramer, kramer, kramer.. george: leslie. leslie: yeah? george: george.. (she doesn't seem to recognize him) george costanza. leslie: hi. george: (laughs) you, i guess, you don't remember me.. but we actually, kind of um.. went out.. a couple of years ago.. once.. remember? leslie: vaguely. george: you took me to one of your shows.. leslie: and? george: and, um, it was quite good. in fact, you even incorporated me into the show. i'm not actually a performer. although, my parents felt i had talent.. mary: jerry?! (a woman, angry at jerry, approaches him. jerry looks confused) remember me? jerry: i'm sorry, i.. mary: (livid) mary contardi. no? doesn't ring a bell, jerry? we had a date, three years ago. you took me to one of your shows. jerry: (stammering) oh, i, i, think i remember.. mary: told me you had a great time! said you'd call me the next day. jerry: well, i'm sure i meant to call.. i probably just lost your.. mary: liar! liar! you were never going to call me! you thought you could waltz throught the rest of your life and never bump into me again! but you were wrong, jerry! you were wrong! what do you think, i'm some sort of poor, pathetic wretch?! jerry: no, i don't think that.. marry: some person who could be dismissed and ignored?! some insignificant piece of dust?! some person who doesn't deserve your respect and your attention?! you're the one that doesn't deserve my respect and my attention! you're the insignificant piece of dust! george: actually, i never had any formal training. i guess i'd be better suited for improvs, or something.. leslie: thanks a lot! elaine: i'm sorry you have to go. woman: yeah. i really have to be going. jerry: alright, listen, i've changed my mind about this whole thing. i don't want cable. kramer: don't be a fool. tabachnick: you don't want? jerry: no, i don't want. so, just tell me what i owe you for your trouble.. tabachnick: (confers with his assistant, then) four hundred dollars. jerry: (to kramer) four hundred dollars?1 you told me one-fifty! leslie: i'm going.. obviously. elaine: oh, leslie, i am so sorry about everything that went on here tonight. you know, i had no idea.. leslie: elaine, you know, i was watching you tonight, and i realized something. you're just like you were in college. elaine: (not sure if it was an insult or a compliment) oh, thank you. (leslie leaves. then elaine wonders to herself) "like you were in college"? leslie: (comes back, and yells in the direction of the bedroom) come on! let's go! george: (sheepishly to elaine) i'll be right back. (leaves) jerry: (defiantly) i'm not paying four hundred dollars! i don't even want the thing. what are you going to do?! [setting: jerry's apartment] george: every woman on the face of the earth has complete control of my life. and yet, i want them all.. is that irony? elaine: why can't i meet a kennedy? ..i saw john junior once downtown. i was on a bus. i hit the ding, but.. it didn't stop. jerry: alright, i said i had a good time and i'd call, but who takes that literally? kramer: (pops his head into jerry's apartment) hey, come on over, dr. zhivago's on cable in five minutes.. i'm making popcorn! (leaves) [setting: night club] jerry: what do you do at the end of a date when you know you don't want to see this person ever again, for the rest of your life? what do you say? what do you say? no matter what you say, it's a lie. "i'll see you around. see you around. if you're around, and i'm around, i'll see you around that area. you'll be around other people. you won't be around me. but you will be around." "take care now." did you ever say that to somebody? "take care now. take care, now. because, i'm not going to be taking care of you. so, you should take care, now." "take care. take care." what does this mean? "take off!" isn't that what you really want to say? "take off now." jerry: (a couple of days ago i used a public phone), go over time on the call, hang up the phone, walk away. you've had this happen? phone rings. it's the phone company... they want more money. don't you love this? and you got them right where you want them for the first time in your life. you're on the street, there's nothing they can do. i like to let it ring a few times, you know, let her sweat a little over there, then i just pick it up, "yeah, operator... oh, i got the money... i got the money right here... d'you hear that? (taps on microphone) that's a quarter. yeah, you want that don't you?" elaine: no, they've just got to get more cops on the force, it's as simple as that. george: cops. i don't even care about cops. i wanna see more garbage men. it's much more important. all i wanna see are garbage trucks, garbage cans and garbage men. you're never gonna stop crime, we should at least be clean. jerry: i tell you what they should do, they should combine the two jobs, make it one job, 'cop\garbage man'. i always see cops walking around with nothing to do. grab a broom! start sweeping. you sweep sweep sweep... catch a criminal, get right back to sweeping. elaine: you should run for mayor. jerry: ehh, nobody listens. elaine: where is someone? i'm starving. george: i think this is him right here. elaine: is there a table ready? restaurant manager (bruce): how many? elaine (to jerry): how many? jerry (to george): is tatiana coming? george: i don't know, i have to call her, tell her where we are. i'm very lucky she's even considering seeing me at all. jerry: really? i thought things were going ok. george: they were, it's kinda complicated. jerry: well what is it? elaine: how many? jerry: ah, alright, four. seinfeld. bruce: four. it'll be five, ten minutes. george: what do you wanna do? elaine: let's go someplace else, i am too hungry. jerry: we might as well just stay here, we haven't got that much time if we wanna make it to the movie. george: i gotta call tatiana. where's the phone? jerry (to elaine): tatiana... george: excuse me, are you gonna be very long? bruce: lashbrook, 4! jerry: so did i do a terrible thing? elaine: you mean lying to your uncle? jerry: i couldn't have dinner with him. 'plan 9 from outer space', one night only, the big screen. my hands are tied! george (to jerry): you know it's a public phone, you're not supposed to just chit-chat. elaine: jerry, get menus so when we sit down we can order right away. jerry: can't look at a menu now, i gotta be at the table. george: he knows i'm waiting. he sees me. he just doesn't wanna look. elaine: everything's gotta be just so with you, doesn't it? jerry: hey, i offered you those cookies in my house. elaine: health cookies. i hate those little dustboard fructose things. george: i just can't believe at the way people are. what is it with humanity? what kind of a world do we live in? elaine: what? jerry: there's a woman over there that looks really familiar. dark hair, striped shirt? elaine: i've never seen her before. jerry: i know this woman. this is gonna drive me crazy. man: oh, excuse me. elaine: i'm sorry. elaine: didja see that? those people, look, they're getting a table. jerry: well maybe they were here from before. elaine: no no no, they weren't here before. george (to guy): excuse me, are you going to be much longer? i have to make a very important call. elaine: find out what's going on! jerry: excuse me, didn't those people just come in? i believe we were ahead of them. elaine: yeah. bruce: what's your name? jerry: seinfeld. bruce: no, no, they were here before. keckitch(sp?), 2! elaine: did you ever notice how happy people are when they finally get a table? they think they're so special because they've been chosen. it's enough to make you sick. jerry: boy, you are really hungry. george (whistles to guy on phone): hey! george: if anything happens here, can i count on you? jerry: what? george: if we decide to go at it. jerry: yeah, i wanna get into a rumble... george: i have to get in touch with tatiana! and look at his little outfit. it's all so coordinated, the way his socks matching to his shirt. i really hate this guy. elaine: i'm gonna faint... jerry: george, who is that woman in the stripes? george: i don't know her. jerry: she looks so familiar. elaine: ya know, its not fair people are seated first come first served, it should be based on who's hungriest. i feel like just going over there and taking some food off somebody's plate. jerry: i'll tell you what, there's 50 bucks in it for you if you do it. elaine: what do you mean? jerry: you walk over that table, you pick up an eggroll, you don't say anything, you eat it, say 'thank you very much', wipe your mouth, walk away- i give you 50 bucks. george: what are they gonna do? jerry: they won't do anything; in fact, you'll be giving them a story to tell for the rest of their lives. elaine: 50 bucks, you'll give me 50 bucks? jerry: 50 bucks. that table over there, the three couples. elaine: ok, i don't wanna go over there and do it, and then come back here and find out there was some little loophole, like i didn't put mustard on it or something... jerry: no, no tricks. elaine: should i do it, george? george: for 50 bucks? i'd put my face in the soup and blow. elaine: alright, alright. here, hold this. i'm doin' it. elaine (through her teeth): i know this sounds crazy, but the two men who are standing behind me are going to give me 50 bucks if i stand here and eat one of your eggrolls. elaine (through teeth): i'll give you 25 if you let me do it. people at table: what? what is she talking about? what did she say? jerry: what happened? elaine: did you see that? george: what were you doing? elaine (laughing): i offered them 25, they had no idea... jerry: george, the phone's free. george: alleluia. george: excuse me, i was waiting here. woman at phone: where? i didn't see you. george: i've been standing here for the last ten minutes! woman: well i won't be long. george: that's not the point. the point is i was here first. woman: well if you were here first, you'd be holding the phone. george (yelling at her): you know, we're living in a society! we're supposed to act in a civilized way. george: does she care? no. does anyone ever display the slightest sensitivity over the problems of a fellow individual? no. no. a resounding no! guy: hey, sorry i took so long. george: oh that's ok, really, don't worry about it. elaine: how do people fast? did ghandi get this crazy? i'm gonna walk around, see what dishes look good. jerry: i told my uncle i had a stomach ache tonight. you think he bought that? george: yeah, well, he probably bought it. jerry: so what happened with tatiana? george: i shouldn't even tell you this. jerry: come on... george: well, after dinner last week, she invites me back to her apartment. jerry: i'm with you. george: well, it's this little place with this little bathroom. it's like right there, you know, it's not even down a little hall or off in an alcove. you understand? there's no... buffer zone. so, we start to fool around, and it's the first time, and it's early in the going. and i begin to perceive this impending... intestinal requirement, whose needs are going to surpass by great lengths anything in the sexual realm. so i know i'm gonna have to stop. and as this is happening i'm thinking, even if i can somehow manage to momentarily... extricate myself from the proceedings and relieve this unstoppable force, i know that that bathroom is not gonna provide me with the privacy that i know i'm going to need... jerry: this could only happen to you. george: so i finally stop and say, "tatiana, i hope you don't take this the wrong way, but i think it would be best if i left". jerry: you said this to her after. george: no. during. jerry: oh, boy. george: yeah. jerry: wow! so...? george: so i'm dressing and she's staring up at me, struggling to compute this unprecedented turn of events. i don't know what to say to reassure this woman, and worst of all, i don't have the time to say it. the only excuse she might possibly have accepted is if i told her i am in reality batman, and i'm very sorry, i just saw the bat-signal. it took me 3 days of phone calls to get her to agree to see me again. now she's waiting for me to call her, and she's elaine: i hate this place. i don't know why we came here, i'm never coming back here again. jerry (still trying to remember): who is that woman?! elaine: remember when you first went out to eat with your parents? remember, it was such a treat to go and they serve you this different food that you never saw before, and they put it in front of you, and it is such a delicious and exciting adventure? and now i just feel like a big sweaty hog waiting for them to fill up the trough. george: she's off. (goes over to the now available public phone) elaine: jerry, talk to that guy again. jerry: what am i gonna say? elaine: tell him we wanna catch a movie and that we're late. mr. cohen: hey, what stinks in here? bruce (laughing): mr. cohen! haven't seen you for a couple of weeks. mr. cohen: well, i've been looking for a better place. bruce: better place... want a table? mr. cohen: no, just bring me a plate and i'll eat here. bruce (laughing): give him a plate and you eat here... come on, i give you a table. jerry: excuse me... we've been waiting here. now, i know we were ahead of that guy, he just came in. bruce: oh no, mr. cohen always here. elaine: he's always here? what does that mean? what does that mean? bruce: oh, mr. cohen, very nice man. he live on park avenue. elaine: where am i? is this a dream? what in god's name is going on here?! george: she's not there. she left. she must've waited and left because those people wouldn't get off the phone. jerry: didja leave a message? george: yeah, i told her to call me here and to tell anyone who answers the phone to ask for a balding, stocky man with glasses. i better tell him i'm expecting a call. elaine: oh, jerry, here comes that woman... jerry: where do i know her? lorraine: hello, jerry! jerry: heeeeyyyy... how you doin'? lorraine: how is everything? jerry: good, good, good... what's goin' on? lorraine: oh, working hard. and you? jerry: oh, you know, working around, same stuff, doing... whatever. lorraine: you haven't been around in a while. jerry: i know, i know... well, you know. lorraine: you should come by. jerry: definitely. i plan to, i'm not just saying that. elaine: hi, i'm elaine. lorraine (shaking her hand): lorraine. catalano. jerry: i'm sorry, lorraine, this is elaine... lorraine: well it was nice seeing you, jerry. and nice meeting you. (she leaves) elaine (smug): oh, nice to meet you too, lorraine! jerry: oh my god, lorraine... that's lorraine from my uncle's office. i'm in big, big trouble. elaine: the one you broke the plans with tonight? jerry: yeah, she works in his office. now she's gonna see him tomorrow and tell him she saw me here tonight. he's gonna tell his wife, his wife's gonna call my mother. oh, this is bad, you don't know, the chain reaction of calls this is gonna set off. new york, long island, florida, it's like the bermuda triangle. unfortunately, nobody ever disappears. my uncle to my aunt, my aunt to my mother, my mother to my uncle... jerry: ...my uncle to my cousin, my cousin to my sister, my sister to me. elaine: you should've just had dinner with your uncle tonight and gotten in over with. it's just a movie. jerry: just a movie?! you don't understand. this isn't 'plans 1 through 8 from outer space', this is 'plan 9', this is the one that worked. the worst movie ever made! jerry: hey, i got news for you, if we're making this movie, we gotta get a table immediately. elaine: alright, ok. let's stop fooling around. let's just slip him some money. jerry: in a chinese restaurant? do they take money? elaine: do they take money? everyone takes money. i used to go out with a guy who did it all the time, you just slip him 20 bucks. george: 20 bucks? isn't that excessive? elaine: well what do you want to give him, change? george: it's more than the meal! jerry: oh, come on, we'll divide it up three ways. george: alright. 7,7, (points at himself) 6. i'm not gonna eat that much! jerry: i'm counting your shrimps. ok, who's gonna do it? george: oh no, i can't do it. i-i'm not good at these things, i get flustered. once i tried to bribe an usher at the roller derby, i almost got arrested. elaine: i guess it's you, jer. jerry: me? what about you? elaine: oh, i can't do that, it's a guy thing. jerry: the woman's movement just can't seem to make any progress in the world of bribery, can they? elaine: give me the money. elaine: how's it going'? bruce: very busy. elaine: boy, we are really anxious to sit down. bruce: very good specials tonight. elaine: if there's anything you can do to get us a table we'd really appreciate it. bruce: what is your name? (he turns the page over the money) elaine: no no, i want to eat now! (she gets the money from under the page) bruce: yes, we have sea-bass dinner tonight, very fresh. elaine (gives him the money): here, take this. i'm starving. take it! take it! bruce: dennison, 4! (goes over to 4 ladies) your table is ready. elaine: no no, no, i want that table. i want that table! oh, come on, did you see that? what was that? he took the money, he didn't give us a table. jerry: you lost the 20. elaine: well, how could he do that? george: you didn't make it clear. elaine: make it clear? jerry: what a sorry exhibition that was. alright, let me get the money back. bruce: your name? jerry: seinfeld. bruce: yeah, seinfeld 4! jerry: no no no, you see the girl there, with the long hair? bruce: oh yes, yes. very beautiful girl, very beautiful. is your girlfriend? jerry: well, actually, we did date for a while, but... it's really not relevant here. bruce: relationships are difficult. it's very hard to stay together- jerry: alright, listen, alright. how much longer is it gonna be? bruce: oh. in about five, ten minutes. george: so? jerry: there seems to be a bit of a discrepancy. elaine: so when are we gonna eat? jerry: five, ten minutes. george: we should have left earlier. i told you. jerry: i don't see any way we can eat and make this movie. elaine: oh, well i have to eat. jerry: well let's just order to go, we'll eat it in the cab. elaine: eat it in the cab? chinese food in a cab? jerry: we'll eat it in the movie. elaine: oh, who do you think you're going? do you think that they have big picnic tables there? jerry: well what do you suggest? elaine: i say we leave now, we go to 'skyburger' and we scarf 'em down. jerry: i'm not going to 'skyburger'. besides, it's in the opposite direction, let's just eat popcorn or something. bruce (holding a phone): cartwright? elaine: i can't have popcorn for dinner! bruce: cartwright? elaine (tries to snatch food off a waiter's tray): i have to eat! jerry: so they have hotdogs there. elaine: oh, movie hotdogs! i rather lick the food off the floor. george: i can't go anywhere, i have to wait here for tatiana's call. let me just check. george: excuse me, i'm expecting a call. costanza? bruce: yeah, i just got a call. i yell 'cartwright! cartwright!', just like that. nobody came up, i hang up. george: well, was it for costanza or... bruce: yes, yes, that's it. nobody answered. george: well was it a woman? bruce: yeah, yeah. i tell her you not here, she said curse word, i hang up. george: she called. he yelled cartwright. i missed her. jerry: who's cartwright? george: i'm cartwright! jerry: you're not cartwri- george: of course i'm not cartwright! look, why don't you two just go to the movies all by yourselves, i'm not in the mood. elaine: well me neither, i'm goin' to 'skyburger'. jerry: so you're not going? elaine: you don't need us. jerry: well i can't go to a bad movie by myself. who am i gonna make sarcastic remarks to, strangers? eh, i guess i'll just go to my uncle's. george: should we tell him we're leaving? elaine: what for? let's just get out of here. bruce: seinfeld, 4? jerry: hunger will make people do amazing things. i mean, the proof of that is cannibalism. cannibalism, what do they say, i mean, they're eating and, you know, "this is good, who is this? i like this person". you know, i mean, i would think the hardest thing about being a cannibal is trying to get some very deep sleep, you know what i mean? i would think, you'd be like, (pretending to wake up) "who is that? who's there? who's there? is somebody there? what do you want? what do you want? you look hungry, are you hungry? get out of here!" [setting: night club] jerry: i'm not a foodie. i don't, "oh, this is too rare. oh, it's too salty." just eat it and shut up. i'll eat anywhere, whatever they're having. i have eaten rotten rolls off of room service trays in hotel hallways. i have. it's not a joke. this is my life. i don't know, somebody left it. why would someone poison a roll, and leave it in a hallway for some comic coming down at two o' clock in the morning? why would they do that? sometimes you go to a nice restaurant, they put the check in a little book. what is this? the story of the bill? "once upon a time, there were some very hungry people.." what is this? a little gold tassle hanging down? am i graduating from the restaurant? what is this about? [setting: a restaurant] elaine: do you want some of mine? jerry: take some of mine. george: why do i get pesto? why do i think i'll like it? i keep trying to like it, like i have to like it. jerry: who said you have to like it? george: everybody likes pesto. you walk into a restaurant, that's all you hear - pesto, pesto, pesto. jerry: i don't like pesto. george: where was pesto 10 years ago? jerry: (gesturing to a man) look at that guy. (elaine starts to look, but jerry stops her) i'll bet you he's gettin' hair transplants. any time you see a guy that age wearing a baseball cap, ten to one - plugs. elaine: (elaine turns to look at the man, trying to make it sound like they aren't talking about him) the thing about that painting.. is with the colors and um.. (turns back to jerry) oh yeah, plugola. jerry: (to elaine) oh, one more thing about the car. let it warm up for a minute. george: that's a tough minute. it's like waiting in the shower for the conditioner to work. jerry: i don't understand why he couldn't take a cab. george: who? jerry: elaine is having a "houseguest." she's picking him up at the airport tonight. george: a guy? elaine: (slightly embarrassed) yes, a guy. jerry: he's from a.. yakima, right? elaine: seattle. jerry: everybody's moving to seattle. george: it's the pesto of cities. so..? elaine: (to jerry) you tell him. jerry: well, from what i can piece together, our friend here met a gentleman. elaine: ed. jerry: who was in town on a business venture, and um.. elaine: ..we shared an interpersonal experience. (george hits his glass with his fork. to jerry) go on. jerry: so they went out a few times, but apparently, when the fellow returned home, he discovered that the benes tattoo does not wash off so easily. elaine: on some people. george: oooh. jerry: so, he's coming in to stay with her for a week. elaine: it was just gonna be a weekend, but then somehow it became a week. manager: what happened? george: oh, the busboy left the menu a little close to the candle. manager: sorry to the disturbance. elaine: (joking, she snobbishly says) i'm never eating here again. jerry: (pats george on the back) nice going. thank you, that ought to get us a free dessert.. (they can see the manager chewing the busboy out from the dining room doorway) i think the busboy's in trouble. george: did i get him in trouble? because of what i said?! i just told him what happened.. he didn't do it on purpose.. (mangager and busboy are arguing. the busboy points in the direction of george) he pointed at me. why did he point at me?! elaine: i said i would never eat here again.. but, i, i.. he had to know i was kidding. jerry: (casually buttering a roll, like he's the innocent one) i didn't say anything. george: i can't believe it. he's going! he's fired! elaine: oh, i said it in a kidding way. george: i didn't know he'd get fired. jerry: (jokingly trying to put more pressure on elaine and george) he'll probably kill his family over this. george: what if he's waiting for me outside? he pointed at me! did you see him point?! jerry: (again, joking) a lot of ex-cons become busboys. they seem to gravitate twards 'em. george: was it my fault? elaine: was it my fault? jerry: (doesn't have a care in the world) ..maybe i'll try that pesto. [setting: jerry's apartment] jerry: look, i feel bad for him too, but he'll get another job. i mean, let's face it, it's not a profession where you embellish your resume and undergo a series of grueling interviews. george: (eating a sandwich) oh, like you really know busboys. jerry: oh, like you do. george: hey, at least i was a camp waiter. jerry: (scoffing) camp. george: it was a fat camp. those kids depended on me. jerry: elaine? elaine: (through intercom) yeah. jerry: busboys are always changing jobs. that's the business. i know. i work with these guys. i tallk to them in the kitchen at the comedy clubs. george: then why don't you try and get him another job? jerry: i'd love to, but i don't know anything about him. he could be one of those people that walks around the street pricking people with pins. elaine: i don't know if you people are aware of this, but i am one clever chickadee. george: what? did you get the busboy's number? elaine: his phone's been disconnected, but i was able to obtain an address - 1324 amsterdam avenue, apartment 4d. (hands george a card) now, i did my job. (to jerry) may i have the car keys, please? george: how did you get all this? elaine: does the word "charm" mean anything to you? jerry: no. (george grabs his jacket) so now you're going to his apartment? i really think this is nuts. george: (putting his jacket on) i'd like to apologize. i want to tell him i.. i.. didn't mean to get him in trouble. jerry: you, you're going now? george: yeah, i want to see if there's anything i can do.. maybe get him another job.. maybe i'll hear of something. jerry: maybe the fat camp. (to elaine) you're not going? elaine: i would, but i have to pick up ed at the airport. jerry: i just don't think you should go alone. can't you wait till after my set? george: it'll take to long. jerry: take the k-man. a little support.. george: (unsure) i don't a.. kramer: take me where? where? [setting: an apartment building hallway] george: look, i really appreciate your coming, but if you wouldn't mind - try not to say too much. kramer: what am i gonna say? george: i don't know. kramer: well, i'm not an idiot. george: certainly not. kramer: then we're cool. george: yeah.. yeah, we're - we're cool. (knocks lightly. kramer takes charge by knocking on the door louder. the busboy answers) uh, i'm sorry to bother you, i was in the restaurant earlier and i was wondering if i could talk to you for a few minutes about what happened. (he gestures for them to come in. they obey) i hope i'm not interrupting anything. it's just that i think i may have - without realizing it - been responsible for getting you fired. (nervously laughs) and.. and.. and i just want you to know that i didn't intend for that to happen. kramer: (patting george on the shoulder) he's a hell of a guy. george: this is a guy i know.. kramer. kramer: habla espanol? george: (to himself) oh my god. antonio: si. kramer: como se dice.. waterbed? george: (interrupting) anyway, i just wanted to let you know i'm really sorry that happened, and if i can help out in any way, i'll certainly be glad to do that. (pause) well, i guess that's about it. kramer: you got anything to drink? agua? george: oy uy uy.. (antonio points to the sink) we really should get going. kramer: let me get a glass of water. (heads tward the sink) george: hurry up. antonio: (notices that his cat is missing) pequita? pequita? (starts to panic) kramer: his cat's gone. antonio: (notes the door was left wide open) la puerta esta abierta. (starts screaming) la puerta esta abierta! (to kramer and george) who left the door open? (silence) who left the door open?! (kramer and george look at eachother) come on, come on! help me look! (all three head out the door to look) [setting: antonio's apartment] kramer: ..you know, cats run away all the time. you know, my aunt, she had a cat. ran away. showed up three years later.. you never know. they got things in george: (gestures for kramer to shut up) once again, antonio, i can't even begin to say how deeply, deeply sorry i am about everything. the job, the cat.. (a lamp breaks) the lamp. kramer: the wire was sticking out.. (fits the two broken pieces together) yeah. george: (hands antonio a card) here's my card. i'm in real estate, so, if you're ever looking for something bigger, something nicer.. (antonio is staring at him, angered) ..maybe not right now. anyway.. (extends his hand for a handshake. antonio doesn't move) kramer: you oughta get that wire fixed. (they go to leave) i got the door. (shuts the door, the broken lamp falls to the floor) [setting: jerry's apartment] jerry: (on the phone) george, stop worrying about this guy. it wasn't your fault.. come on, he's not stalking you. kramer: hey. jerry: (to kramer) hey. (to george) he doesn't even know where you live.. who told you to give him your business card?.. (intercom buzzes) that's elaine. (kramer buzzes her in. jerry talks into the phone) kramer.. (to kramer) george wants to know when you want to look for the cat again. kramer: it's been a week. it's up to the cat now. jerry: (into phone) kramer says it's up to the cat now. (to kramer) it'll be on your conscience. kramer: oh? how do you figure? jerry: (into phone) how do you figure? (to kramer) 'cause you're the one who left the door open. kramer: why was i in charge of closing the door? jerry: (into phone) why was he in charge of closing the door? (irritated at the phone message relay, to kramer) 'cause you came in after him! kramer: so! jerry: (into phone) so! (to kramer - getting even more angry) so, the last person in should close the door! kramer: let me talk to him. jerry: (to kramer) talk - call him from your house. (elaine enters. kramer leaves. to phone) he's calling you now.. okay. (hangs up) elaine: ed's downstairs. can i have the car keys? jerry: no hello? elaine: got any asprin? (finds some) hello. now, lookit, you guarantee this car will get me to the airport tomarrow? no problems? jerry: guarantee? ..hey, it's a car. elaine: because if there's even the slightest chance of any problem at all, i don't want to take it - because if i don't get this guy on a plane to seattle and out of my life, i'm gonna kill him, and everyone who tries to stop me. jerry: (jokingly asking) so, did you have a nice week together? elaine: i heard a little ping in the car last time. what was that ping? jerry: there's no ping. why are you so wacky? elaine: jerry, you cannot imagine how much i hate this guy.. and he hasn't even done anything! it's the situation. he's a wonderful guy, but i hate his guts! jerry: so, you two been, uh.. elaien: no! i told him i've been having my period for the last five days! i'm sleeping all squished over on the edge of my bed.. but, i've only got fourteen hours to go. nothing can go wrong now. i think i've taken care of everything. i've confirmed the plane reservation. i've checked the weather.. jerry: what's your airport route? elaine: i've got it all mapped out - i'm taking the tunnel. jerry: ..what about the van wyck? elaine: i spoke to a cab driver. for five bucks, he turned me on to the rockaway boulevard shortcut. jerry: oooh. elaine: now, lookit, this plane leaves at 1015. we're getting up at about eight. that gives us enough time, right? jerry: you still using that old alarm clock? elaien: oh, no, no. i bought a new one today. it's got everything - it's got everything... if you oversleep more than ten minutes, a hand comes out and slaps you in the face. [setting: night club] jerry: flying doesn't make me nervous - driving to the airport can make you very nervous because when you're flying, when you're getting on the plane, if you miss that plane, there's no alternative. on the ground, you have options. you have buses, you have taxis, you have trains. but, when you're taking a flight, if you miss it, that's it. no airline goes, "well, you missed the flight, we do have a cannon leaving in about ten minutes. would you be interested in that? it's not a direct cannon, you have to change cannons after you land." (imitates cannon operator) "i'm sorry, where you goin'? chicago? (cranks the cannon) oh, dallas? alright, wait a second.. (cranks cannon to dallas) dallas. that's about dallas. texas, anyway. you should hit texas. are you ready? make sure you get out of the net immediately, because we shoot the luggage in right after you." [setting: elaine's apartment] (elaine and ed are in bed. elaine awakes to find out that it's 9: 15 - they overslept. she gets frantic) elaine: (trying to wake ed up) get up! the alarm clock didn't go off! (shakes him) it's 915! you're gonna miss the plane! it's 915! ed: 915? elaine: yes! 915! ed: (going back to sleep) we'll never make it. i'll leave tomarrow. elaine: tomarrow?! are you crazy? no, now, now! let's go! (gets his suitcase from the closet, throws it on the bed, and frantically starts packing) you get dressed! get dressed! ed: can i shower? elaine: shower?! are you out of your mind?! ed: i gotta shower. i'll feel dirty all day. elaine: forget the shower! the shower's out. move it! put your clothes on! put your clothes on! (pulls out drawers of clothes, turning them over in the suitcase. he walks tward the door) where are you going? ed: the kitchen. elaine: the kitchen?! ed: i've got a bag of cashews in there. elaine: they're not making it! let's get your pants on! ed: what's the big deal if we don't make it? i'll just go tomarrow or the next day. elaine: no! you have your ticket! you have to go now! ed: i'll never make it. elaine: don't say that! ed: but it takes forty-five minutes to get there. that'll only leave me five minutes to get to the plane. elaine: shut up and pack! ed: and what if i don't make the plane? you'll have already left. then what will i do? elaine: you're talking too much! ed: where's my sweater? elaine: what?! ed: my brown sweater. elaine: what? what sweater? ed: my brown sweater. elaine: you didn't bring a brown sweater. ed: i brought a brown sweater. elaine: here! here! you want a brown sweater?! (recahes into one of her drawers, and grabs a brown sweater, then packs it) you got a brown sweater! ed: that's not mine. i can't take your sweater. elaine: it's brown! (takes clothes still on the hangers, and dumps them into the suitcase) ed: what are you doing?! elaine: no time for folding.. (looks around) i think that's it. (zips up the suitcase) ed: my shoes. you packed my shoes. elaine: shoes? shoes?! shoes?! shoes weren't invented till the fourth century! people walked around for thousands of years without them! (puts her coat on over her nightie. he picks up his suitcase, she grabs it from him, then pushes him out of her way) i got this. let's go! [setting: jerry's apartment] jerry: anywhere in the city? george: anywhere in the city - i'll tell you the best public toilet. jerry: okay.. fifty-fourth and sixth? george: sperry rand building. 14th floor, morgan apparel. mention my name - she'll give you the key. jerry: alright.. sixty-fifth and tenth. george: (scoffs) are you kidding? lincoln center. alice tully hall, the met. magnificent facilities. elaine: (slow, as if remember a dream) i never new i could drive like that. i was going faster than i've ever gone before, and yet, it all seemed to be happening in slow motion. i was seeing three and four moves ahead, weaving in and out of lanes like an olympic skier on a gold metal run. i knew i was challenging the very laws of physics. at queens boulevard, i took the shoulder. at jewel avenue, i used the median. i had it. i was there.. and then.. i hit the van wyck. they say no one's ever beaten the van wyck, but gentlemen, i tell you this - i came as close as anyone ever has. and if it hadn't been for that five-car-pile-up on rockaway boulevard, that numbskull would be on a plane for seattle right now instead of looking for a parking space downstairs. kramer: ..the busboy's coming! the busboy's coming! george: the busboy's coming? jerry: you don't mean here? kramer: yeah. i just buzzed him in. he's on his way up.. george: he's coming up?! (moves to the door) i'll check you out later. jerry: where are you going? george: i'm the one he wants! he's coming to settle the score. jerry: (trying to get george and kramer out) no. you three all know each other. there's no point in me getting involved at this stage of the game. kramer: no, he's not going to do anything. i guarantee it. george: oh, the hell with it. let him kill me. i.. kramer: antonio. in here! george: (nervous, his voice cracks) hey, antonio. how's it going? antonio: three nights ago, a gas main beneath the restaurant exploded, killing five people in my section, including the busboy who replaced me. if i am not fired that night because of you and your thoughtless, stupid, insensitive remarks, it would have been me. you saved my life. (hugs him again) george: (trying to be modest) ah, come on.. elaine: (into the intercom) yeah? ed: it's eddie. elaine: he's coming up. (buzzes him in) he's coming up.. antonio: and that very same night of the accident, while looking for pequita, i found a job in a restaurant where they pay me almost twice what i was making before - and when i returned to the apartment, pequita, perhaps frightened from the explosion, had miraculously returned. well, but now, i must go, for today i am starting my new and wonderful job. and i am very late. thank you, thank you, thank you all. (leaves) ed: hey, watch were you're going. you almost knocked my head off! antonio: hey, why don't you watch where you're going, okay? 'cause you bumped into me! ed: who do you think you're talking to, pal? antonio: hey, get your hands off me! ed: go to hell! [setting: coffee shop] jerry: he'll get another job. he's a busboy! george: it won't for a while. at least not until after the cast comes off. jerry: it was that fall down the stairs. that's what did it. george: that's not how it happened. it's when he fell on him with his knee. elaine: oh, that was awful. poor antonio. (waiter hands elaine two bags of food to go) ..thanks. george: so, much longer? elaine: till when - till he goes back to seattle, or till he can feed himself? george: (not wanting to make elaine mad) i guess it's not important. elaine: take care of yourselves. (leaves) george: i should probably get going too. if i don't feed pequita by seven, she goes all over everything.. take it easy. jerry: yeah.. (takes a bite of his sandwich as the waiter starts cleaning off the table) how ya doing? [setting: night club] jerry: first of all, i can't believe that people actually do fight. people have fist fights in life. i can't really believe that we have boxing either. it's really kind of an amazing thing. to me, the problem with boxing is - you have two guys having a fight that have no prior argument. why don't they have the boxers come into the ring in little cars, drive around a bit, have a little accident? they get out, "didn't you see my signal?" "look at that fender!" ..then you'd see a real fight. jerry: evry-every time somebody recommends a doctor, he's always the best. "oh, is he good?" "oh, he's the best. this guy's the best." they can't all be the best. there can't be this many bests. someone's graduating at the bottom of these classes, where are these doctors? is somewhere, someone saying to their friend, "you should see my doctor, he's the worst. oh yeah, he's the worst, he's the absolute worst there is. whatever you've got, it'll be worse after you see him. no, he's just, he's a butcher. the man's a butcher." and then there's always that, "make sure that you tell him that, you know, you know me." why? what's the difference? he's a doctor. what is it, "oh, you know bob! okay, i'll give you the real medicine. and everybody else, i'm giving tic-tacs." julianna: ...and usually for lunch i'll have a salad, and for dinner, i eat whatever i want. jerry: what do you think the worst part of being blind is? julianna: excuse me? jerry: you know, if you were blind, what do you think the worst part of it would be? julianna: i don't know. jerry: i think it would be not being able to tell if there was bugs in my food. how could you ever enjoy a meal like that? i'd constantly be feeling around with my lips and my tongue. julianna: well that's how my five-year old eats. he's a very picky eater. jerry: you hear about that kid that was kidnapped the other day in pennsylvania? julianna: no. jerry: he was at a carnival with his mother. she goes to get a hot dog, next thing you know she turns around, boom, he's gone. julianna: oh. jerry: imagine how sick a person has to be to do something like that. (she starts the quick hand chops on his back) and these people are all over the place. you never know who's crazy, i could be one of these people. julianna (visibly uncomfortable): have you seen any good movies? jerry: who takes care of your boy during the day? julianna: we have a woman. why? jerry: no no. i'm just saying. julianna: she had references. jerry: oh i'm sure she did, i'm sure they're impeccable. i'm talking about the ones that forge `em. jerry: (about the massage)you know i think this is really helping. julianna: i don't live near here, ya know! jerry: so she's giving me the massage and i'm just making conversation. elaine: i don't like to talk during a massage. jerry: neither do i, but i do it for them. i figure they're bored. george: yeah, i do that too. i feel guilty about getting the pleasure. i feel like i don't deserve it so i talk. it stops me from enjoying it. there's nothing to eat in here. elaine: oh! i forgot to tell you-- jerry: i'm in the middle of a story. elaine: oh, okay, go ahead. george: why don't you ever go shopping? jerry: well its not like it's a really funny story or anything. elaine: what happened? jerry: well so she mentioned that she had a son, and then for some reason, i launch into the story about the kid from pennsylvania who was abducted. elaine: oh, wasn't that terrible? jerry: yes, it was. george: not even an apple. elaine: she doesn't want to hear that, that was stupid. jerry: i know it was stupid. elaine: really stupid. (she takes a big sip from her bottled water.) jerry: hey, i just said it was stupid. george: what about this leftover chinese food? jerry: take it. elaine: i can't believe you said that. jerry: hey, would you stop it already? elaine: so, whatd she say? jerry: i don't know, she actually seemed to get a little paranoid. george: (he just took a bite of the chinese food ) this is terrible. what is this, ginger? i hate ginger. i can't understand how anyone can eat ginger. (puts the container back in the refrigerator.) elaine: i have a good masseuse you could go to. jerry: nah, she's really good and she's not just a masseuse, she's a physical therapist. there's a big difference. she uses the ultrasound, it's a real medical procedure. in fact, if you get a doctor's note, it's covered by insurance. george: physical therapy is covered by insurance? jerry: yeah. george: you don't have to pay for the massage? jerry: not if you have a doctor's note. elaine: so where do you get this note? jerry: well i've never actually done it but if i really wanted to i could probably get one from my friend roy, the dentist. george: right, your friend roy. elaine: what's the name of this physical therapist? jerry: i'll tell you, but don't ask her anything about her kid, she a little off. george: and you don't have to pay. george: we have a, three-o'clock appointments. receptionist: george and elaine, right? elaine: right. receptionist: could you fill these out for me please? and um, elaine, you'll be seeing julianna elaine: (quietly) ok. receptionist: and george, you'll be with raymond. george: excuse me, did you say 'raymond'? receptionist: yes. george: but, uh, raymond is a man. receptionist: that's right. george: i can't get a massage from a man. elaine: why not? george: what, are you crazy? i can't have a man touching me. switch with me. elaine: no, i don't want the man either. george: what's the difference, you're a woman. they're supposed to be touching you. elaine: he'd just be touching your back. george: he'd just be touching your back too. elaine: no, it could get sexual. george: i know. that's the point. if it's gonna get sexual, it should get sexual with you. elaine: i wouldn't be comfortable. george: i would? what if something happens? elaine: what could happen? george: what if it felt good? elaine: it's supposed to feel good. george: i don't want it to feel good. elaine: then why get the massage? george: exactly! raymond: george? george: yes? raymond: i'm raymond. (with a big smile) george: hello.(with not a big smile) raymond: are you ready? (smiling, he looks at elaine. she smiles back at him while looking all the way up there at the tall, handsome raymond.) raymond: and then julianna asked me if i wanted to join her here in the office. george: really. raymond: use to be a flight attendant. george: oh boy. raymond: ya know, why don't ya, open those pants, it's gonna be a lot easier that way. raymond: so what do you do? george: what? raymond: i said, 'what do you do?'. george: i-i don't know. raymond: you don't know what you do? george: nah. raymond: ohh-ho, come on. hey, you're very tense. george: hu, coffee. too much coffee (nervous laughter). raymond: okay, just take off those pants now, and i'll work the hamstring. george: oh, the hamstrings fine. raymond: but you wrote that it was tender. (holding the clip board) george: i wrote. pfft, *i* wrote. raymond: i'll check it out. (makes a notation on the form) george: are you sure? raymond: yeah, take 'em off. (continues writing) raymond: how did you hurt this? george: i don't know. raymond: you don't know? george: no. raymond: but you just told me-- george: korea. raymond: you hurt it in korea? george: what? raymond: the hamstring. george: korea. raymond: how? george: hamstring. raymond: how did you hurt the hamstring? george: hotel. elaine: how'd it go? george? jerry: no appointments at all? because my neck is still tight. what about thursday? and friday? oh boy. okay, thanks anyway. jerry: what's with you? george: a... ah... jerry: yes, a...? george: a man gave me... jerry: yes, a man gave you...? george: a man gave me... a massage. hu, hu jerry: so? george: so he... had his hands and, uh, he was uh jerry: he was what?! george: he-he was uh touching and rubbing. (nervous laugh) jerry: that's a massage. george: and then i took my pants off. jerry: you took your pants off? george: for my hamstring. jerry: oh. george: he got about uh, two inches from... there. jerry: really? george: i think it moved. jerry: moved? george: it may have moved, i don't know. jerry: i'm sure it didn't move. george: it moved! it was imperceptible but i-i felt it. jerry: maybe it just wanted to change positions? you know, shift to the other side. george: no, no. it wasn't a shift, i've shifted, this was a move. jerry: okay, so what if it moved? george: that's the sign! the test; if a - if a man makes it move. jerry: that's not the test. contact is the test, if it moves, as a result of contact. george: you think it's contact? it has to be touched? jerry: that's what a gym teacher once told me. kramer: hey. jerry: hey. kramer: i just saw joe dimaggio in dinky donuts. you know, i-i looked in there and there he was having coffee and a donut. jerry: joe dimaggio? in dinky donuts? kramer: yeah. joe dimaggio. jerry: no, i'm sorry, if joe dimaggio wants a donut, he goes to a fancy restaurant or a hotel. he's not sitting in dinky donuts. kramer: well maybe he likes dinky donuts. george: i don't even like to sit next to a man on an airplane 'cause our knees might touch. jerry: i can't see joe dimaggio sitting at the counter in little tiny filthy smelly dinky donuts. kramer: why can't joe dimaggio have a donut like everyone else? jerry: he can have a donut, kramer: yeah. jerry: but not at dinky. george: i don't even like to use urinals, always been a stall man. kramer: look i'm tellin-- (he does a double take and looks at george) i'm telling ya, that was joe dimaggio. george: the guy slept with marilyn monroe, he's in dinky donuts. what about this doctor's note? let's go see your friend roy. jerry: i never said i'd do that. george: what are you talking about, that's seventy-five bucks! i'm not working, i can't afford that. jerry: i don't know how i feel about it. george: oh, what are you, like, a quaker now? jerry: alright, alright. kramer: a stall man, huh? (small laugh) george: all right -- (gets up to leave) kramer: wha-ha-a-at? (makes a gesture with his hand) jerry: ...so we were just kinda wondering if it was possible for you to write us a note, and if you can't, believe me, it's fine. george: he didn't say he can't. jerry: i mean, if you feel funny about it, at all. george: he doesn't feel funny. jerry: if he does. george: do you feel funny? he didn't say anything. jerry: he feels funny. you don't have to do this. george: he knows that! jerry: roy, should we go? is this a breach of our friendship? george: oh, can you be any more dramatic? roy: don't be ridiculous. (notices george looking at a poster on the wall) holyfield. he's a good friend of one of my patients. he's got a hell of a body, doesn't he? george: how would i know? roy: do you like him? george: what do you mean, like him? roy: do you like him? george: i mean he's a good fighter and a nice guy but i don't like him. roy: how come you don't like him? george: why should i? jerry: what is the matter with you? george: nothing, why? you think something's wrong? am i different? roy: so, you want the notes? jerry: you don't have to, really. roy: nah nah, it's ok. jerry: we should probably get one for elaine, too, right george? (turns to george, who is staring intently at the holyfield poster) george? jerry: well what about the week after? jerry: no appointments at all? (motions to elaine to move over) elaine: what? (he bumps her with his butt to move over) jerry: can i - can i at least just talk to her so i can apologize? forget it. (hangs up) i can't believe this, i make one innocent comment, about some lunatic in pennsylvania and i'm cut off. this woman is insane. (looks at elaine for a moment) what's with you? elaine: what? jerry: well you were too close to me, i was all scrunched in there. elaine: hey, you scrunched me. i sat down here first. kramer: hey, i saw dimaggio in the donut shop again. jerry: uh huh. kramer: yeah. elaine: joe dimaggio? kramer: joe dimaggio, you know this time i went in and sat down across from him and i really watched him. i studied, his every move. for example, he dunks. elaine: joe dimaggio dunks his donut?! kramer: that's right. jerry: see, now i know it's not him. joe dimaggio could not be a dunker. kramer: oh, he's a dunker. elaine: why couldn't he be a dunker? kramer: and nothing diverts his attention. like, i'm uh, you know, i-i, like i'm sitting in there, you know. and, uh, i start banging on the table, you know, to uh, so that hell look up, you know, like i'm sitting there you know and uh, *bang* (slams the table) you know, *bang* he wouldn't move. so then i start doing these yelping noises. like, *yip* (high pitched yelping noises) *yip*. no reaction because the guy is so focused, you see, he can just block out anything that's going on around him. see, that's how he played baseball. he dunks like he hits. elaine: so then what? kramer: well, then the waitress, she comes up and she tells me to shut up or they're gonna throw me out. elaine: why didn't you just call out his name? jerry: what happened to you? george: these kids called me a mary. elaine: a what? george: i was jumping over a puddle, and for some reason i went like this. (george stretches out his arms in a ballet motion) and they called me a mary. so i chased them, and i tripped and i fell. kramer: yeah, you know kids, they can be very perceptive. elaine: hey, george? what is this? (laughing, elaine makes the same outstretched arm motion) what is that? no really, what is that? jerry: hello? oh, hi roy. what? oh my god. wel-- how did this happen? what can i do? oh. i am so sorry. okay. bye. (hangs up) that was roy. he's under investigation for insurance fraud. kramer (singing): ...just a man and not a freak, joltin' joe dimaggio. joe, joe. go, joe... jerry: i told you. george: told me what? jerry: i told you we shouldn't do it. george: he didn't say anything. jerry: he's got a house, a family, they could take away his license. you should have heard him. three notes, how stupid was that? we never should have got three notes. elaine: three notes? jerry: yeah, you, me and george. elaine: you got me a note? jerry: yeah. elaine: but i got my own note. jerry: you what? elaine: i got a note from my gynecologist. jerry: why'd you do that? elaine: i didn't know you were getting me a note. jerry: of course i was getting you a note. elaine: but you didn't say anything. ohhh jerry: neither did you, that's how he got caught. we sent in four notes from two doctors. george: no doctor-- elaine: wait a-- kramer: how can you do that to your friend? he's got a wife, kids, and a lot of other stuff. oh, yyyeeah. jerry: hi pam. pam: hello. george: hello. jerry: i just thought ahh maybe i could talk to roy, if um roy: pam, did the x-ray from mrs. sloan... hi. jerry: hi roy. george: how ya doing? roy: come on back, i have a patient but she's under. jerry: i don't even know what to say. george: me neither. jerry: i knew this would happen. george: me too. jerry: i mean the whole thing, it's just... george: tragic. jerry: well it's not tragic. george: no? jerry: no, it's... george: unsettling? jerry: okay. i mean, what if the-- pam: i hope you're both happy. (she turns and walks away) jerry: i'm not happy. george: me neither. i've never been happy. jerry: i mean i'm happy sometimes, but-but not now. george: in college, maybe. those were fun times. jerry: yeah, college was fun. george: yeah. jerry: yeah. pam: you know the whole practice is in jeopardy, you know that? (she turns and walks away again.) roy: don't mind her. jerry: oh please, i love her. george: i've just met her but i'm very impressed. roy: i can't understand, i've never had a problem with these notes before. jerry: well what's the next move, what's gonna happen now? roy: well, nothing really, as long as we get the physical therapist to go along with our story. jerry: what? the physical therapist? why? roy: she just has to say the complaint was related to a dental problem. george: how ya doing? jerry: hi. ah look, i know i don't have an appointment but it's really important that i talk with julianna. receptionist: i'm sorry, mr. seinfeld, she's not in. jerry: yeah, i know she's mad at me, but i really have to speak with her. receptionist: i told you, she's not here. jerry: you don't understand, ah receptionist: look, you have to leave. jerry: wait a second, don't you-- jerry: hi. hi. look, i don't know what you think -- julianna: please! jerry: --but, you see, let me just talk to you for a second, see, what i did is inadvertently sent an insurance-- julianna: i treated you, so please, just get out of the office! jerry: can't you just listen to me? julianna (releasing her child): run billy! run to the office and close the door! (to the receptionist) call the police! jerry: the police? raymond: what is the --. hi george. (stands there with a big smile) george: hello. jerry (to george): raymond? elaine: well, i mean it's only a six month probation, it's a slap on the wrist. jerry: yeah, i still don't see any dinner invitations forthcoming. george: men have been popping into my sexual fantasies. all of a sudden i'll be, in the middle. elaine: of what? george: and a guy will appear from out of nowhere. i say "get out of here! what do you want? you don't belong here!" elaine: what do they do? george: they talk back. they go, "hey george, how's it going?" i say, "get the hell out of here!" jerry: hey, it's the k-man. (he bangs on the glass to get kramer's attention, elaine laughs) maybe it's time you got a different hobby. kramer: man, ughhhh, wwwheh. i just came from roy's. i threw up from the gas. jerry: did he say anything? kramer: no no, he's fine. jerry (noticing something across the coffee shop): oh my god, it's... george (looking over): joe dimaggio. elaine: (gasps) kramer: where? jerry: having a cup of coffee. elaine: and he's dunking! kramer: yeah -- yeah. jerry: wow. look at him. the yankee clipper kramer: (quietly) yeah. jerry: here. george: you see? now that is a handsome man. (elaine and jerry look right at george) oh please. kramer: wait, wait hold on now, wait, wait *bang* (he slams his hand down on the table, startling jerry, elaine and george) *bang* (again) *yip* (another high pitched yelping sound) *yip* *yip* see? i told you. jerry: what causes homophobia? what is it, that makes a heterosexual man, worry? i think it's because, men know, that deep down we have weak sales resistance. we're constantly buying shoes that hurt us, pants that don't fit right. men think, "obviously i can be talked into anything. what if i accidentally wander into some sort of homosexual store, thinking it's a shoe store, and the salesman goes, 'just hold this guy's hand, walk around the store a little bit, see how you feel. no obligation, no pressure, just try it. would you like to see him in a sandal?'" song over the end credits: joltin' joe dimaggio http: //www.baseball-almanac.com/poetry/joltinjoedimaggio.shtml published: 1941 performed by: les brown sung by: betty bonney jerry: welcome everyone to the room...ah, the extra button....yeah ... what kind of a sicko would save these ...have them in a huge file, drawers that wide (small fingers opening imaginary drawers) where the hell is that ... i mean is it that hard to get round black buttons that they have to make it into such a great thing like this? ... is it such a great jacket ... the buttons are so unique, so one of a kind, you'll never find them - they save you the trouble of knocking your brain off - and we know they're going to fall off too that's the other thing ... patrice: everyone in my family's creative. and even though i'm working as an accountant now i'd really like to eventually live exclusively on my pappe-ay mache-ay hats george: i don't understand. paper machay hats? patrice: uh uh george: what if it rains? patrice: they're art. you hang them on the wall. george: oh, art! patrice: it's my creative outlet. one of my passions. george: any money in it? patrice: who so belongs only to his age, references only popenjays and mumbo jumbos george: of course, right. patrice: thomas carlisle, 1864. george: tommy c. jerry: these are the receipts from 85 and i'm going to do 86. kramer: i'm sorry. i thought it was a legitimate charity. i didn't know you'd get audited jerry: i don't blame you. i blame myself. kramer: no, blame me. jerry: ok, i blame you. kramer: don't blame me. jerry: what was i supposed to do? you knew i was on my first date with elaine. you come barging in here asking me to contribute money for a volcano relief fund for krakatoa. kramer: it was supposed to erupt. jerry: i find the whole thing very embarrassing. kramer: you know what my feelings are about this. i don't even pay taxes. jerry: yeah, tha's easy when you have no income. elaine: hi, jerry: hi elaine: kramer, do me a favour will ya'. if you insist o making pasta in my apartment please don't put the tomato sauce on the pasta while it's in the strainer. all the little squares have hardened red sauce in them. elaine: what's so funny jerry: kramer dating your room mate. it's funny. elaine: uh, it's a riot alice. kramer: when do you pit the sauce on? elaine: any other time. kramer: i like to strain the sauce. elaine: and ... i could really live without the tribal music ... and the make out sessions in the living room kramer: yeah, tina likes the couch. elaine: what are you doing? what is all this? jerry: oh he's uh, helping me sort my receipts. i'm being audited. elaine: o, your being auditted? what for? jerry: oh, i contributed money to a charity that turned out to be fraudulent. it's very boring. elaine: when was this? jerry: uh, along long time ago, in a galaxy far far away. elaine: i remember you donated to some volcano thing on our first date. jerry: volcano? really? elaine: oh, wait a minute. don't tell me that that was ... jerry: something to drink? elaine: what did you think, that would impress me? jerry: you got it all wrong. i was thinking only of the poor krakatoans elaine: like you this donation for 50 bucks and i'd start tearing my clothes off? jerry: those brave krakatoans east of java. who sacrifice so much for so long. elaine: now you're being audited because of it. you see that's karma. jerry: no, that's krama. elaine: so, waddya' going to do? jerry: it's all taken care of. elaine: how is that? kramer: (chuckles) jerry: an old friend of mine, whom you may have met, george costanza, has recently become intimate with a female accountant who was formally a highly placed official with an outfit known as the irs. and as we speak, at this very moment he is handing over to her all of my pertinent tax information. and she has assured us that the matter is well within her field of expertise. elaine: why is she doing this? jerry: i don't know. it must be love. george: i don't think we should see each other anymore. you're great but i'm i'm riddled with personal problems. patrice: what did i do? george: nothing it's not you. it's me. i have a fear of commitment. i don't know how to love. patrice: you hate my earrings don't you? george: no, no, patrice: and you didn't comment on the chop sticks. george: i love the chop sticks. i, i personally prefer a fork but they look very nice. patrice: you're not telling me the truth. i must have done something. george: i have a fear of intimacy patrice: don't give me cliches. i have a right to know. what did i do wrong? george: nothing. it's not you.. patrice: i want the truth. george: the truth. you want the truth? it is your earrings it is the chopsticks but it's so much more. you're pretentious. you call everyone by their full name you call my doorman, sammy, "samuel" but you didn't even say "samuel" you went "sam - u- el" papie-eh mach-eh what is papie-ay mach-ay? patrice: keep goin'. george: i, i think i made my point. i'm sorry if i was a little harsh. patrice: no, i asked for the truth. thank you for being so honest. george: can i uh, can i walk you back to work? patrice: i prefer to go alone. how much do i owe? george: oh, please ... ... four dollars is f... jerry: ... if this audit had happened to me and i didn't have this woman to help me i would have killed this man. i would have strangled the life out of him with my bare hands elaine: i don't blame ya' jerry: have you ever been through an audit? elaine: no. jerry: it's hell. it's the financial equivalent of a complete rectal examination. i would have killed this man. torn him limb from limb, ripped the flesh right off his bones ... jerry: yeah george: george jerry: come up - ah, there he is, the man himself, george louis costanza. here i am about to go to the electric chair and my oldest friend is dating the governor george: my whole life has been a complete waste of time, (chuckle) jerry: and there's so much more to go. george: now i know what i am supposed to do. it's so simple. tell the truth that's all. just tell the truth jerry: so what happened? you gave her my tax papers? ... my papers? george: oh, oh, your papers jerry: what happened you didn't give her the papers? george: no. i did. jerry: so? george: ...i broke up with her. jerry: you what? george: i broke up with her. jerry: i'm being audited! and you broke up with her? george: it's ok. it's fine. she'll do it. i'm sure she'll still do it. jerry: why will she still do it? she hates you now. people don't do you favors after you dump them. george: oh, no. we left on good terms. jerry: how is that possible? george: because i uh, i told her the truth. jerry: oh, my god. george: it's ok. jerry: it's unheard of ... george: she asked me to. jerry: so you lie! what did you tell her? george: i told her that she was pretentious. jerry: pretentious!? the woman has my tax papers. you told her she was pretentious? the irs. they're like the mafia. they can take anything they want elaine: how would you like it if someone told you the truth? george: like what? what could they say? elaine: there are plenty of things to say. george: like what? i'm bald? what is it specifically? is, is there an odor i'm not aware of? elaine: george, please. george: give me one. elaine: you sure? george: yes. elaine: what? elaine: forget it. you are very careful with money. george: i'm cheap? you think i'm cheap? how could you say that to me? i can't believe this. how could you say that to me? elaine: you asked me to. george: you should have lied. elaine: huh, so should you. jerry: ok, wait a second, wait a second, what happened to my papers? george: (ignoring jerry) i mean i'm not really working right now. elaine: i know. george: when i was working i spent baby. jerry: yeah, i know champagne, limos, cigars. what happened to the papers? george: she put them in her pocketbook. i guess she took them with her. elaine: pocketbook or a handbag? jerry: is that relevant? she took them. call her office. george: give me the phone. (dials) yea, hi i would like to speak to patrice. ... what? ... oh really? ... oh, ok, thank you, ... (hangs up) jerry: what? what? george: she never came back from lunch. jerry: this is no good. this is no good. call her house. george: (dials) hi, are you ok? no, no,.. huh, (hangs up) she hung up. jerry: not good. george: all right. there's nothing to be worried about. she's just a little annoyed right now. tomorrow i'll personally go over there. i'll apologize. i'll get the papers. don't worry. don't worry. (exits) jerry: not good kramer: yeah, it's a windshield. jerry: i can see that. what's it for? kramer: i found it on the road. jerry: yeah (to buzzer) elaine: (from intercom) i just finished working out are you busy? jerry: come on up. kramer: can you believe somebody threw this out? you know i'm going to make a coffee table out of this and surprise tina. jerry: wouldn't it be invisible? i mean, what, are you going to just sense it's in front of the couch? kramer: wow elaine: hell-oo kramer: hell-oo jerry: what's with you two? elaine: you haven't told him? jerry: tell me what? elaine: huh, go ahead, tell him. kramer: i, i saw her naked. elaine: he saw me naked. kramer, ... saw me naked. kramer: well, you know, ... it was an accident. elaine: who walks into a woman's bedroom without knocking. i want to know! kramer: i thought it was a closet. jerry: completely naked? kramer: completely naked. elaine: jerrryyy, how can i go on? kramer: all right. i'll tell you what. if it's going to make you feel any better you can see me naked. elaine: no thanks! kramer: no, i want you to see me naked. elaine: no, no no. kramer: no, i want to show you. elaine: no! jerry! jerry! jerry: ok, just a second lets not lose our heads here. kramer you know you are always welcome in my home but as far as mr. johnson is concerned, that's another story. elaine: what is this? kramer: well, it's a windshield. it's going to be your new coffee table. elaine: ah, i'm going to kill myself on that thiing. you can't even see it. jerry: you'll sense it. jerry: well, what happened? was she there? george: no, no she wasn't. jerry: you didn't get my papers? george: no, i didn't. jerry: well, where is she? george: a mental institution. jerry: why is it so difficult, uncomfortable, to be naked. it's because when you have clothes on you can always kinda make those little adjustments which people like to do ... you feel like you're getting it together, yeah, yeah pretty good (pulling at lapels, pockets etc.) feeling good looking good but when you're naked it's like it's so final you're, well that's it. (no movements) there's nothing else i can do. that's why i like to wear a belt when i'm naked. cause i feel it gives me something, i know i'm naked, but you know, (tugging and lifting belt) i like to get pockets to hang off of the belt that would be, wouldn't that be the ultimate? to be naked and still be able to do this (hand in pocket) i think that would really help a lot. jerry: a mental institution? kramer: you know what they do in there? did you see coocoo's nest? they put those electrodes in your head. george: it's not really a mental institution. it's more like a depression clinic. she went out to woodhaven and checked herself in. i'm, i'm sick over this. elaine: who told you this george: her roommate. i've driven women to lesbianism before but never to a mental institution. kramer: my friend bob sacamano had shock treatments. but his synapses were so large, it had no effect. jerry: you know i hate to raise a crass financial concern but was there any information as to the where abouts of my papers! george: she put them in her pocket book. she probably took them out there with her. jerry: so what now? george: i don't know. jerry: can we go out there? george: where? jerry: woodhaven. george: we could. george: i'm very nervous about this. i've never spoken to a mental patient before. jerry: my cousin douglas was in a place like this one time . he came over to my house for dinner. there was no soda and he went bezerk. he was screamin' "where's the pepsi, where's the pepsi?" george: i should be in a place like this. i envy this woman. ya' get to wear slippers all day. friends visit. they pity you. pity is very underrated. i like it it's good. plus they give you those word association tests. i love those. jerry: that'd be great. there's no wrong answer. george: potato jerry: tuberculosis george: blanket jerry: leroy george: grass jerry: tuberculosis george: oh, boy. here she comes. elaine: oh, my god. elaine: kramer! kramer: hey. elaine: will you please put something on. kramer: listen uh, you want some leftovers? i made some african food. there's, yambalas and uh, sambusa. tina: kramer, are you coming back to bed? kramer: yeah, yeah, i'll be right there baby. tina: oh, hi elaine. (returns elaine's ear rings) what did you think of the coffee table? elaine: it's invisible. kramer: so, is everything cool? or what? tina: yeah, um, you seem little bit dysfunctional. elaine: well, tina: come on elaine. just tell us the truth. elaine: the truth!, you want the truth? patrice: who are you? george: oh, this is my friend jerry. patrice: why are you talking like that? and what do you want? jerry: want, want? what could i possibly want? uh, i just came because i, i heard so many nice things about you from george. patrice: george thinks i'm pretentious. george: pretentious? who, who isn't pretentious? ha, ha, if everyone who was pretentious was in a mental institution, ... uh, obviously this isn't a mental institution. patrice: you're just trying to take it all back because you're feeling guilty i'm in here. george: no, that's not it at all. patrice: don't lie george. george : i'm not a lier! george: uh, we're cool. everything's cool (to security attendent) jerry: just chatting. friendly. george: all righty, no reason for us to uh, raise our voices. patrice: i know what you said. you can't change that. george: what i said? i say stupid things all the time i can't go two minutes without saying stupid things. jerry: it's one stupid thing after another. so let me ask you, when you come to one of these places, what do you bring your pocketbook? george: you should be the one criticizing me. i, i'm lucky to even know someone like you. patrice: you mean that? george: of course i mean that. i am incapable of guile. jerry: he's never guiled. you know some women keep a lot of important papers in their, uh, pocket books. like for example oh, someone else's personal financial papers. patrice: papers? oh, jerry, you're the jerome with the tax problem. you know after that day with george i got so cuckoo i threw out all your papers. so i'd love to help you but i'll need the copies. jerry: there are no copies. patrice: so are you saying you want to continue seeing me? jerry: who makes copies? elaine: the truth is ... i think you make ... a very nice couple. kramer: oh, tina: kramer, tina: here kramer? kramer: no, lets go to the couch... jerry: (on phone)yes, i'm trying to get a copy of a receipt for a computer that i bought there.... it was 1987 ... i remember i talked to a guy - he had like a maroon sport jacket - and he might have had a toupee - oh, it was a weave - ok uh, then i'll come bye ok, bye. jerry: anybody want to take a walk down to 48th street? i think i may have tracked down another receipt. elaine: i can't. i have to go visit tina in the hospital. jerry: george? george: i'm going to a poetry reading with patrice first time poets, in a burnt out building, down by the docks, supposed to be good. kramer: hey, are you going to the hospital now? elaine: yeah, i suppose i am. kramer: all right, great, great uh, we'll share a cab. jerry: you're going by 48th st. you can give me a ride. george: hey, i'm getting in on that. elaine: you know you're chippin' in. george: you're going that way anyway! jerry: i was audited last year. at first i thought well, irs kinda sounds like toys r us maybe won't be so bad. maybe they have a sense of fun about it, you know. but it's it's bad. it's an ordeal. and they don't do anything to keep your spirits up through the ordeal. i think they should take all your receipts and put them in one of those big lucite sweepstake drums and just kinda crank it around there. you know give me a feeling like you might win something. you know what i mean? then they can pull them out one by one and go "oh, i'm sorry that's another illegal deduction. but we do have some lovely parting gifts for you. jail!" [setting: night club] jerry: i have never seen an old person in a new bathing suit in my life. i don't know where they get their bathing suits, but my father has bathing suits from other centuries. my parents live in florida, and if you go down there and you forget your bathing suits then they want you to wear one of theirs. you know how that gets? "you need trunks son? i've got trunks for you. you can wear my trunks." fathers don't wear bathing suits, they wear trunks. it's kind of the same thing a tree would wear if it went swimming. so i get in the water with in thing and it's like floating around me somewhere. did you ever put on a bathing suit that you don't even know exactly where you are inside the bathing suit? you bump into somebody you know "no i'm parasailing, i'm waiting for the boat to come back." [setting: florida, evening, condo of jerry's parents] helen: (looking by the window) they were supposed to be here at 730. call the airlines again. morty: (searching in a kitchen drawer) what happened to the scotch tape? who takes the scotch tape? nobody returns anything around here. helen: oh i think that's them! morty: you what i'll do next time? i'll hide it so nobody can find it. all: hi, welcome, greetings, hugs, etc. morty: welcome to florida! elaine: hi mr. seinfeld! (hug) jerry: hey, there's the old man! (hug) morty: so, what took you so long? jerry: ahh, we waited 35 minutes in the rent-a-car place. helen: i don't know why you had to rent a car. we would have picked you up. jerry: what's the difference? helen: you could have used our car. jerry: i don't wanna use your car. helen: what's wrong with our car? jerry: nothing. it's a fine car. what if you wanna use it? helen: we don't use it. morty: what are you talking? we use it. helen: if you were using it, we wouldn't use it. jerry: so what would you do? you'd hitch? helen: how much is a rent-a-car? jerry: i don't know. 25 bucks a day. helen: what? you're crazy. morty: plus the insurance. jerry: oh, i didn't get the insurance. morty: how could you not get the insurance? helen: we'll pay for the car. jerry: you're not paying for it. helen: morty. (asking him to back her. he doesn't) jerry: god it's so hot in here. why don't you put on the air conditioning? helen: you don't need the air conditioner. so, you have your speech all ready? jerry: it's not a speech. do i have to make a speech? helen: of course, they're giving a testimonial for your father. you could do your comic routines. jerry: (ironically) oh yeah, that will go over real well with that crowd. elaine: (looking by the window) ooh, you have a lake? jerry: the lake isn't real. helen: the lake is real. morty: are you kidding? they built the lake. helen: but it's real. it's water. helen: where are you going with those? jerry: i'm gonna put elaine's stuff in here. helen: don't sleep in there. you can you use the bedroom. elaine: i can't take your bedroom. helen: i'm up at 6 o'clock in the morning. elaine: i can't kick you out of your bed. helen: we don't even sleep. jerry: ma. helen: but this is sofa bed, you'll be uncomfortable. jerry: (to morty) what about you? morty: why should i be comfortable? jerry: (to helen) what about him? helen: don't worry, he's comfortable. morty: i'll sleep standing up. i'll be fine. helen: will you stop? elaine: yeah, i'll just stay in here. (goes in the guest room) helen: jerry, (asking jerry to go in the kitchen so elaine won't hear) jerry. you don't have to stay on the couch on my account. the two of you could stay in there together. jerry: na, that's not such a good idea. helen: well i tought that... jerry: not now. she's right inside. helen: (quieter) what happened? jerry: i don't know. we decided we don't really work as a couple. helen: what does that mean? jerry: well... morty: (comes to the kitchen and with a loud voice) why are you whispering? jerry: shh! nothing, nothing. helen: elaine... morty: (still loud) what about her? jerry: (tries to explain to morty but elaine then comes out of the guest room to get more luggage, so he fakes a conversation) ...but you know, look at the sun-dried tomatoes. where were they five years ago? it just goes to show you. you never know what... huh (waiting for elaine to go back in the guest room) you know... huh... what could happen to a vegetable. it could just take right off at any time. (morty finally gets it. so jerry goes on quieter) we've tried all kind of arrangements, but we can't seem to be friends when we sleep together. morty: (morty goes on louder! did he ever whisper in any episode? -) why do you need more friends? you've got plenty of friends. helen: he's an idealist. morty: what the hell are you looking for? jerry: i'm looking. that's the point. i like looking. helen: he likes looking. morty: so look. helen: but how long can you look? jerry: i'm going for the record. helen: you know your father wouldn't say so but he's really glad you came. jerry: oh, come on. helen: this is a big thing for him. outgoing president of the condo association. (knock on door: this is jack and doris, neigboors) morty: aha! doris: so they arrived safely. morty: (to jerry) you remember jack and doris? jerry: nice to see you. this is elaine. elaine: hi. nice to meet you. jack: so jerry, you came all the way down here for this? elaine: and scuba diving. helen: scuba diving? who's going scuba diving? jerry: we're going scuba diving. we'll be back in time. helen: what do you have to go scuba diving for? jerry: for fun. helen: for fun? morty: jack have some spong cake. jack: no. thanks, no. morty: jack is emceeing tomorrow. he's in charge of the whole thing. jack: so jerry, your mother told me you're gonna do one your little comedy skits tomorrow? jerry: i don't think so. jack: no? listen morty you wanna settle up for last night? (morty nods) all right. i owe you 19.45$ (he gets his checks book and a pen from his pocket). morty: what did you have? you had the minute steak? jack: yeah. morty: did you have a coke or what? jack: i did not have a coke. morty: somebody had a coke. helen: oh i had a coke. doris: and i had the scampi. jack: so that's 17.10$ and the tax and the tip. morty: all right. make it 20 bucks. jack: it's 19.45$, morty. (he gives him the check) morty: 19.45$ ? jack: see? you know your father. he can't get a write to the penny, but that's why he was such a good president. jerry: what kind of pen is that? jack: this pen? jerry: yeah. jack: this is an astronaut pen. it writes upside down. they use this in space. jerry: wow! that's the astronaut pen. i heard about that. where did you get it? jack: oh it was a gift. jerry: cause sometimes i write in bed and i have to turn and lean on my elbow to make the pen work. jack: take the pen. jerry: oh no. jack: go ahead. jerry: i couldn't jack: come on, take the pen! jerry: i can't take it. jack: do me a personal favor! jerry: no, i'm not... jack: take the pen! jerry: i cannot take it! jack: take the pen! jerry: are you sure? jack: positive! take the pen! jerry: o.k. thank you very much. thank you. gee, boy! helen: jack, what are you doing? jack: stop it! doris: jack, we should go. (they go to the door) it was nice meeting you. elaine: mmm, nice to meet you. jerry: thanks again. jack: come on! doris: (to morty) she's adorable. (they leave) helen: (as soon as the door's closed) what did you take his pen for? jerry: what he gave it to me. helen: you didn't have to take it. morty: oh my god! she's gotta make a big deal out of everything. jerry: he offered it to me. helen: because you made such a big fuss about it. jerry: i liked it. should i have said i didn't like it? helen: you shouldn't have said anything. what did you expect him to do? (the camera shows elaine shaking her head at their dispute) jerry: he could have said "thank you, i like it too" and put it back in his pocket. helen: he loves that pen. morty: oh come on! helen: he talks about it all the time. every time he takes it out he goes on and on about how it writes upside down, how the astronauts use it. jerry: if he likes it so much, he never should have offered it. helen: he didn't think you'd accpet. jerry: well, he was wrong. helen: i know his wife. she has some mouth on her. she'll tell everyone in the condo now that you made him give you the pen. they're talking about it right now. (again we see elaine smiling at their argument) jerry: so you want me to return it? helen: yes. morty: he's not gonna return the pen. that's ridiculous. jerry: hey i don't even want the pen now! morty: jack can afford to give away a pen with all his money. believe me. he gives me a check for 19.45. he didn't have a coke. ho, ho, ho! elaine: here, let me see it. (she takes a pad to try the pen) hey, it writes upside down. [setting: condo's guest room] elaine: come in. jerry: are you o.k. in here? elaine: why is it so hot in here? how can they sleep like this? jerry: it's only for three days. today's over and we have tommorow. we leave on sunday. it's one day, really. elaine: oh man. what is with this bar? it's right in my back. it's killing me. jerry: oh you wanna switch? i'm sleeping on a love seat. i've got my feet up in the air like i'm in a space capsule. elaine: i am never gonna fall asleep. jerry: oh, no don't say that. you'll jinx me. elaine: how can they not put the air conditioning on? jerry: they're nuts with temperature. elaine: this bar is right in my back! it's making a dent. jerry: how about that guy writing a check for 19.45? elaine: i'm sweating here. i'm in bed, sweating. jerry: it's one day. half a day, really. i mean you substract showers and meals, it's like twenty minutes. it will go by like that. (snapping his fingers) [setting: condo, morning] morty: stay on 95 south to biscayne boulevard. then you make a left turn. put you blinker on immediatly, there's an abutment there. then you're gonna merge over very quickly, but stay on biscayne. don't get off biscayne. you understand me? jerry: stay on biscayne. helen: you're going underwater? jerry: yes. generally that's where scuba diving is done. helen: what do you have to go underwater for? what's down there that's so special? jerry: what's so special up here? elaine: oh! helen: what's the matter? elaine: my back. helen: what happened? elaine: that... that bed. the bar was right in my back. helen: (to jerry) i told you to let us sleep in there. jerry: then you would be hunched over. elaine: i don't even know if i can go scuba diving. jerry: you can't go? helen: so stay home. elaine: you can go. jerry: without you? that's the whole reason you came down here. helen: don't go. jerry: you sure? morty: maybe you should see a doctor. jerry: we'll stay in a hotel tonight. elaine: (whispering to jerry) yes! helen: no, we'll stay in there. jerry: why don't you get a new sofa? morty: nobody uses it. jerry: i'm buying you a new sofa. helen: oh jerry, don't talk crazy. elaine: mrs seinfeld, please. i am begging you. put the air conditioner on. helen: you're hot? elaine: i've lost 6 pounds. helen: i don't even know how to work it. morty: i keep telling her it's like an oven in here. evelyn: is everybody up? jerry: hi. how are you? evelyn: hello jerry. jerry: evelyn, this is elaine. elaine: (with pain) hi evelyn. evelyn: jerry you got thin. jerry: too thin? helen: oh stop worrying so much about how you look. evelyn: so where's the new pen? (everybody's surprised by this question) jerry: (jerry scratches his head and acts like he's not sure what she's talking about) what? evelyn: the pen. the one jack klompus gave you. helen: how did you know that? evelyn: blanche told me. helen: blanche? evelyn: that's some good pen. it writes upside down. elaine: the astronauts use them. helen: what did blanche say? evelyn: i don't know. she said jerry wanted the pen. jerry: i never really wanted the pen. morty: he gave him the pen. helen: morty. evelyn: why you don't like the pen? jerry: no, no, i... evelyn: cause if you don't like it, give it back to him. helen: is that what she said? evelyn: who? helen: blanche. evelyn: what are you talking about? helen: hello? oh hello gussy. what? jerry wouldn't do that. jack gave it to him. all he said was he liked it. i mean nobody put a gun to his head. (to jerry) you're giving him back that pen. (she continues the discussion with gussy but we don't hear it.) elaine: somebody please-- the air conditioner! morty: (morty gets up) oh! i forgot all about it. jerry: all i said was "i like the pen". morty: how the hell do you work this thing? [setting: still the condo, later] helen: maybe you shouldn't go tonight. elaine: no no, i wanna go. helen: but your back hurts. morty: maybe a couple of muscle relaxers would help. elaine: oh, oh, o.k. (helen holds her sweater tight against herself) you can turn down the air conditioning if you want. helen: no. i'm fine. elaine: you're not too cold? helen: no. jerry: don't be alarmed. morty: oh my god! what the hell happened to you? jerry: i'm o.k. my capillaries burst. helen: your capillaries? do you know what you look like? jerry: (to elaine on the floor) how are you doing? elaine: having a good time! jerry: is it my imagination or is it freezing in here? helen: what happened to your eyes? jerry: well i started to go under... helen: with the instructor? jerry: yeah, and i got about ten feet down and i felt this tremendous pressure on my mask. like my eyeballs were being sucked out of their sockets. helen: i told you... jack: excuse me. (to helen) doris would like to borrow red your pocketbook to go with her shoes. (to elaine on the floor) the shoes have to match the pocketbook. (to the others) what's she doing? yoga? elaine: my back hurts. jack: morty you gotta hurry up. get ready. morty: we got plenty of time. jack: (to jerry) what happened to you? jerry: i got in a fist fight with one of the ladies at the pool. helen: it's from scuba diving. jack: what's there to see underwater? (helen turns to jerry and makes a face like: give him back the pen) jerry: listen m. klompus, it was really a nice gesture of you to give me the pen, but i don't really need it. jack: you what? jerry: i mean it's a terrific pen, but i think you should keep it. (he hands the pen to jack) jack: well i mean... jerry: take it. jack: all right! (he smiles and take it) morty: you know jack, you've got a hell of a nerve taking that kid's pen. jack: whose pen? morty: his pen. jack: this happens to be my pen. morty: you didn't give it to him. jack: what are you talking about? he pratically begged me for it. morty: where do you come off with this crap? jack: listen, do you think i take everything everybody offers me? you offered me sponge cake yesterday. did i take it? morty: you said you didn't want it! jack: of course i wanted it! i love sponge cake! morty: then who the hell said you couldn't have any? i mean what the hell do i care whether you have sponge cake? jack: because i saw the look on your face last week when i took the scotch tape! morty: ahh! ahh! so you got the scotch tape! i've been looking all over for it! jack: don't worry about it! i'll give it back! morty: i don't want it! jack: i don't want it! morty: you know jack, do me a favor will you? take the pen and the scotch tape, and get the hell out of here! jack: listen do you think i give a damn? morty: aah! (jack leaves) the nerve of that guy! taking back that pen. well that's it for them. jerry: what is going on in this community! are you people aware of what's happening? what is driving you to this behavior? is it the humudity? is it the muzak? is it the white shoes? helen: i have no use for either one of them. i don't even want them there tonight. (she still has the pocketbook in her hands) jerry: isn't he supposed to be the emcee? morty: yeah, he's supposed to be the emcee. jerry: well. this should be a very interesting evening. elaine: (still on the floor) uh... what about those muscle relaxers? [setting: reception room, evening] photographer: say astronaut. elaine: say what? (laughing) say what? jerry: (jerry brings her back) you took too many of those pills. morty: astronaut? helen: say it. jerry, morty and helen: astronaut! elaine: (still laughing, she says it just as the picture is taking) astro...naut! morty: good. o.k. (the photographer walks away) what about last year when i took him to the hospital every day? did he ever say thank you? jerry: oh god. (foreseeing an arm's grabbing as he sees uncle leo entering with his wife stella) jerry: (to leo) uncle leo. leo: hello! stella: morty are you nervous? morty: what nervous? leo: (to jerry while he's grabbing his arm as usual) what's with the sunglasses? who are you? van johnson? jerry: i've got a black eye. stella: (to elaine in a childish voice) hello. jerry: oh uh, elaine, this is my aunt stella. helen: (shouting as she imitates marlon brando) stella! stella! jerry: (to stella) her back hurts. stella: humm... we saw you on "the tonight show" last week. leo: i thought johnny was very rude to you. he didn't even let you talk. jerry: no, no. leo: you need some new material. i've heard you do that dog routine three times already. elaine: (still with her imitation, shouting even louder) stella! stella! leo: listen, you should get your cousin jeffrey to write some material for you. morty: what are you talking? jeffrey works for the parks department! leo: you should read the letters he's written. he's funnier than the whole bunch of you! (jack enters with doris) oh, here's jack. we should sit down. stella: (to helen on a sarcastic tone of voice) this better be good. i'm missing "golden girls" for this. helen: (laughing hypocritically till stella walks away) i hate her like poison. (a few minutes later, the ceremony is about to begin. someone in the crowd yells: "hey jack let's get started!" everyone applause and we see, from left to right, all sitting on the same side of a long table, facing the public stella, leo, elaine, jerry, helen, morty, jack at the microphone, doris, and four other people.) jack: (on the microphone) ladies and gentlemen, as you know, every year, phase two of the pines of mark gables honors the previous year president. and this year we are honoring morty seinfeld (the crowd applause and someone yells morty!) a man who slept more hours on the job than ronald reagan. morty: (to helen) slept on the job? (she shushed him) jack: being president of the condo is not easy. it requires hard work, dedication, and commitment, and unfortunately he possesses none of these qualities. (everyone laugh except jerry, helen, and morty. even elaine who's still druggy) helen: (morty complains again to helen) he's joking. jack: his administration did excel in one department the hiring of incompetents. morty: (to jack, loud) that's what you say. jack: but we do owe him a debt of gratitude because by not fixing the crack in the sidewalk, he put mrs ziven out of commission for a few weeks. (morty is now the only one not laughing) morty: (loud) tell them when you took my son's pen back. tell them about that! (he gets up) jerry: dad! morty: (to the crowd) he gave my son a pen, and then he takes it back. tell them about that! jack: he gave it to me! morty: come on. that's enough, sit down! jack: i'm not sitting down! jack: ow! you broke my dental plate! (jack is touching his dental plate while morty reaches in jack's pocket to get the pen) doris! he broke my dental plate. you son-of-a-bitch! i'm gonna sue you. (he leaves the table and morty follows him and continue arguing with him. jerry now have the microphone in his hands and the crowd begins to think the ceremony is over.) helen: jerry, do your act. jerry: (in the microphone, but to helen) i can't. nobody's even listening. helen: they're all gonna leave. jerry: (to himself) oh god! (in the microphone) huh... hey! how you folks doing tonight? (everybody in the crowd is talking over jerry) man in the crowd: who are you? jerry: (still with his sunglasses) have you ever noticed how they always give you the peanuts on the planes? woman in the crowd: (to heckle jerry) not my harry. he flies first class. jerry: who ever thought the first thing somebody wants on a plane is a peanut? man in the crowd: i'd rather have a bottle of scotch! helen: (to jerry) do the dog routine. jerry: all i said was i liked the pen! elaine: (wakes up and yells very loud) stella! [setting: condo, morning] chiropractor: you could aggravate it. i wouldn't go anywhere for at least five days. elaine: five days? you want me to stay here for five more days? jerry: there must be some mistake. chiropractor: i'm afraid not. elaine: (discouraged) five days. here. helen: (to jerry, happily) so we have you for five more days! jerry: (to elaine) well there's really no point in me staying. i mean you just gonna be... elaine: excuse me? jerry: nothing. evelyn: good morning. jerry: hi evelyn. evelyn: (to helen) has morty decided on a lawyer yet? helen: i don't think so. evelyn: because my nephew larry could do it. he's a brilliant lawyer. he says jack has no case. helen: well i'll ask him when he gets up. evelyn: oh, and i spoke to arnold. and he says that according to the bylaws of the condo constitution, they need six votes to throw you out for unruly behavior. not five. doctor chernov is the one you'll have to suck up to. morty: aw! aw! oh my back! oh my back! it's that bar. who the hell could sleep on that thing? helen: i was very comfortable. evelyn: morty, arnold says they need six votes to throw you out. helen: it's in the constitution. morty: (to the chiro) who are you? chiropractor: i'm a chiropractor. morty: what are you kidding me? elaine: (to jerry) five more days? jerry: well today's almost over. and weekdays always go by fast. friday we're leaving. it's like two days really. it's like a cup of coffee. it will go by like that. (snapping his fingers) [setting: night club, closing monologue] jerry: is florida not hot and muggy enough for these people? they love heat. i mean if they ever decide to land men on the sun, i think these old retired guys would be the only ones that will be able to handle it. they'll just sit there on the sun, on the redwood benches, washcloth on the head going "close the door, you're letting all the heat off the sun. i'm trying to get a sweat going." jerry: so i'm on the plane, we left late. pilot says we're going to be making up some time in the air. i thought, well isn't that interesting. we'll just make up time. that's why you have to reset your watch when you land. of course, when they say they're making up time, obviously they're increasing the speed of the aircraft. now, my question is if you can go faster, why don't you just go as fast as you can all the time? c'mon, there's no cops up here, nail it. give it some gas! we're flying! gavin: travelling, of course, is the best education. do you know last year i was in over forty, forty-five countries, and i would have gone to more but i had just got a puppy, and he was too young to take with me. but now i won't travel without him. jerry: is he on the plane now? gavin: oh yes. yes, he's in the, he's in the baggage compartment. i don't know why they won't let him sit up here with me. he's a lot better behaved than most of the dregs you find onboard here. do you, do you have any pets? jerry: uh, just my next door neighbor. gavin: you're missing out on a relationship that could enrich your life in ways that you never could have thought possible. jerry: howbout picking up their, you know. you find that enriching? jerry: what's the matter? gavin: oh, i'm feeling a bit queasy. attendant #1: sir, we're gonna make an emergency landing in chicago and get you to a hospital. gavin: my dog. what about my dog? attendant #1: uh, you have a dog? attendant #2: do you know anyone on the plane, mr. palone? gavin: jerry? jerry: huh? how you feeling? gavin: would you take care of farfel? jerry: farfel? attendant #2: it's his dog. we're landing in chicago to get him to a hospital, could you take his dog to new york? jerry: the dog? the dog?? gavin: i'm sure it's only for a day or two. jerry: but, you know, what if, you know? gavin: give me your address and phone number, i'll call you. jerry: the dog? jerry: let go, farfel! let go, gimme that! gimme the sneaker you stupid idiot! shut up! (to elaine) so what would you do? elaine: well it's only been three days, i'm sure he's gonna call. jerry (to farfel): stop it! shut uuuuuup!!! (to elaine) do you believe this? do you believe what i'm dealing with here, i've got a wild animal in the house! he's deranged, maybe he's got rabies. i can get lockjaw. elaine: if only. jerry: look at this place. he's going everywhere, i can't go out of the house at night. i haven't performed in three days. this'll be my first night out of the house since i got back. elaine: hey, when you walk him, do ya... jerry: do i what? elaine: do you pick it up? jerry: yes, i pick it up. elaine: you pick it up?!? jerry: well you have to. elaine: oh, boy would i love to see that. jerry: shut up!! shut up farfel, stop it! (to elaine) i don't know what to do. i mean what if i take it to the pound then the guy shows up? elaine: maybe you should call the airline, they might know where he is. jerry: no, i tried. they don't know anything. (notices elaine making egg creams) you gotta put the syrup in first. elaine: no, milk. jerry: i'm telling you the guy's a drunk, he's probably on a bender. elaine: what is a bender anyhow? jerry: i don't know, they drink and they bend things at the bar. elaine: i can't believe he hasn't called. jerry: two hundred seats on a plane, i gotta wind up next to yukon jack and his dog cujo. shut up! one more day and you are pound bound! kramer: sorry, i can't watch the dog tonight. jerry: why? elaine: we're going to the movies, we're gonna see prognosis negative. kramer: i can't, i gotta get this ellen out of my life. jerry: you're breaking up? kramer: oh ho ho ho yeah, the sooner the better. i can't wait to do it. you know how there's some people you worry about whether you're going to hurt their feelings? with her, i'm looking forward to it. i'd like to get it on video, watch it in slow motion and freeze frame it. oh ho, yeah. elaine: kramer, i don't know how you lasted as long as you did. kramer: woah, you didn't like her? elaine: if you could see her personality it would be like one of the elephant man exhibits, you know where they pull off the sheet and everyone gasps. jerry: i can't believe someone hasn't killed her yet. kramer: how come you never said anything? jerry: well you can't tell someone how you feel about their girlfriend until after they stop seeing them. kramer: i tell you. jerry: you. i'm talking about people. elaine: are we still going to the movies tonight? jerry: no, i can't i gotta watch farfel, you and george can go without me. elaine: just me and george? jerry: sure. elaine: but we need you. jerry: what do you need me for? elaine: because... yeah? george: prognosis negative! (in a funny voice) elaine: because i relate to george through you, we're like friends-in-law. besides, you said we were gonna see prognosis negative together. can't you just put some newspapers down or something? jerry: no, i can't trust him, he gets insane. i won't enjoy myself. that's right, farfel, i'm talking about you! elaine: just me and george alone? george: let's go, people, let's go! it's prognosis negative time, wa ha ha ha!!! jerry: i can't go. george: can't go, why not? jerry: because i have to watch idiot farfel. george: i thought kramer was watching. jerry: he's breaking up with his girlfriend tonight. george: well so what's the problem, you just put some newspaper down. jerry: no, i don't want that smell in the house. george: you spritz a little lysol on it. jerry: no, it's like bo and cologne, they combine forces into some kind of strange mutant funk. george: so we're not going? jerry: nah. you two go. george: oh. you still wanna go? elaine: do, do you? george: if you want. elaine: it,s, it's up to you. jerry: go ahead. elaine: well, it's, i really wanted to see prognosis negative with jerry, uh, you wanna see ponce de leon? george: ponce de leon? okay. (to jerry) you sure you don't wanna go? jerry: i want to but i can't. elaine: oh! i tell you what. how about if i come back here first and i clean everything up and i open up the windows and if you're still not satisfied we can switch apartments for the night. jerry: no. george: what about this-- jerry: forget it. go ahead, you'll have a good time. elaine: i know, it's not that. george: it's just we want you to go. jerry: well, thank you very much. i'm telling you, one more day stinkbreath! jerry: on my block, a lot of ah, people walk their dogs, and i always see them walking along with their little poop bags, which to me is just the lowest function of human life. if aliens are watching this through telescopes, they're gonna think the dogs are the leaders. if you see two life forms, one of them's making a poop, the other one's carrying it for him, who would you assume was in charge? george: so how long did you live there? elaine: about three years. george: that's pretty long. elaine: hmm. george: it's not that long, really. elaine: yeah. george: and then you came here. elaine: yeah. so i've been here about six years. george (counting on his fingers): eighty-six, eighty-seven, eighty-eight, eighty-nine, ninety, ninety-one... yup. jerry: bad dog! bad dog! you go outside! outside!! what do you want from me? tell me! money, you want money? i'll give you money, how much?! kramer: i must have been out of my mind. look at you. why don't you do something with your life? sit around here all day, you contribute nothing to society. you're just taking up space. how could i be with someone like you? wouldn't respect myself. george: i like herbal tea. george: chamomile's good. lemon lift. almond pleasure. elaine: jerry likes morning thunder. george: jerry drinks morning thunder? elaine: yeah. george: morning thunder has caffeine in it, jerry doesn't drink caffeine. elaine: jerry doesn't know morning thunder has caffeine in it. george: you don't tell him? elaine (laughing): no. and you should see him, man, he gets all hyper, he doesn't even know why, he loves it! he walks around, going, "god, i feel great!" george (laughing): you don't tell him? elaine: no. george: that is so funny! elaine: i know! george: wait, have you ever seen him throw up?! kramer: please! please!! i take it all back, everything! i take it all back, every word! i love you! i love *you*! i can't live without you, i,ll, i'll do anything! jerry: that's right, gavin palone. what? are you sure? he was released on monday? *last* monday? did he leave a phone number or address? unbelievable. well thank you, thanks, thanks very much. (hangs up) that's it, farfel! party's over! start packing up your little squeeze toys buddy boy, you're checking out! elaine: it was weird because george and i get along so great in so many situations but this is the first time we ever really went one-on-one. jerry: oh, one-on-one's a whole different game. can't pass off. elaine: the only time it wasn't uncomfortable was when we were making fun of you. jerry: going to the dog pound, everybody! going to the dog pound, come on down. (to elaine) what? elaine: do you have to? jerry: what am i supposed to do? i don't want to do it. i like dogs. i'm not sure this is a dog. elaine: you know, the guy might have just lost your number. jerry: i'm in the book and i have a machine. elaine: jerry, do you know what they do to dogs at the pound? they keep them there for a week and then if nobody claims them, they kill them. jerry: really? how late are they open? jerry: what? elaine: what is it? kramer: i went back with ellen. jerry and elaine: ohhhhh, that's great. elaine: terrific. jerry: yeah, i really think you guys are good together. elaine: yes, she understands you and she is not demanding. kramer: do you think that i forgot what you two said about her? jerry: well i was just trying to be supportive, you know. i knew you were upset. kramer: from now on when we pass each other in the hall, i don't know you, you don't know me. elaine: oh, kramer, we didn't mean it. jerry: what are you doing? kramer: i'm getting my pot. elaine: kramer, we like her. jerry: kramer? what did we say that's so bad? elaine: i believe i referred to her personality as a potential science exhibit. jerry: i said, "how come no one's killed her?" probably shouldn't have said anything, jerry: well. elaine: well. jerry: everyone knows the first break-up never takes. (answers buzzer) yeah? george: prognosis negative! (again in a funny voice) jerry: okay, farfel, put your shoes on. elaine: jerry, can't you just give it one more day, it's not his fault. jerry: it's not my dog, i don't know where this boozehound is. elaine: alright, i tell you what. how about if you and george go to the movies, and i stay here and watch the dog tonight. jerry: i can't let you do that, what about prognosis negative? elaine: we'll see it sunday. george: tonight's the night, right? prognosis negative? elaine: i'm not going, i'm gonna watch the dog. george: what does this mean? jerry: well, we'll go see something else tonight. we'll see, uh, ponce de leon. george: what is with this dog, i thought we were taking it to the pound. jerry: she talked me into one more day. talk amongst yourselves, i'm gonna go to the bathroom. george: uh jerry, how long will you be in there? jerry: i don't know, regular human time? george: uh why don't you wait then go in the movies? jerry: why shouldn't i go here? elaine: well, you know, i mean, sometimes it's good to get there and make sure you get your seats and then go to the bathroom. george: and isn't it more fun using the urinal? elaine: yeah. jerry: oh yeah, urinals are fun. can i go?! george: hey, go. elaine: who's stopping you? george: what, are you doing me a favor? elaine: like we care if you go to the bathroom. george: how's it going? elaine: good. good. you? george: things are good. elaine: boy, he takes such a long time. george: i know. elaine: you know what he does in there? he gargles. george: jerry gargles? is that why he takes so long? elaine: yeah, he does it like six times a day. george: how come we never hear him? elaine: because he does it quiet. he does it quiet. lookit, just like this, watch. george: wait, wait, did you ever see him throw up?! elaine: we talked about that already. george: oh. george: i have nothing to say to anybody. i'm so uninteresting. i think i'm out of conversation. jerry: so what are calling me six times a day? george: all i know about is sports. that's it. no matter how depressed i get, i could always read the sports section. jerry: i could read the sports section if my hair was on fire. george: know what? ponce de leon is sold out. jerry: it is? oh yeah, you're right. what else is playing? george: nothing except prognosis negative. jerry: boy, i know she really wants to see that with me. elaine: gimme the jacket, furface, this is not seinfeld you're dealing with! when i get through with you, you'll be begging to go to the pound! elaine: shut up. shut up! (answers phone) hello? no, who's calling? oh my god, the dog guy. where have *you* been? yeah, well you better pick up your dog tonight or he has humped his last leg. george: i mean, i could understand if there was something else playing, but it's this or nothing. jerry: i don't know what to do. george: what is this 'saving movies' thing? something's playing, you go. jerry: i know, i know. george: so, what? we're gonna do nothing now, this is crazy. jerry: it is kind of silly. george: of course it is. jerry: i mean, it's just a movie, for god's sake. george: exactly. jerry: it's not like she's *in* the movie. george: right. jerry: am i supposed to ruin the whole night because she wants to see it? i mean, if i could have seen it with her, fine. but i can't control all these circumstances and schedules and peoples' availabilities at movies. george: and she'll still see it, you're not stopping her from seeing it. jerry: how does sitting next to a person in a movie theater increase the level of enjoyment? you can't talk during a movie. you know, this is stupid, c'mon, let's just go. george: good. jerry: saving movies. george: ridiculous! jerry: two for prognosis negative. i'm in big trouble. george: oh, you're dead. gavin: bell's palsy. the entire side of my, of, of my face was paralyzed. farfel! i couldn't, i couldn't, i couldn't even feed myself, i was completely incapacitated. quiet farfel! jerry: you know it's interesting, because i called the hospital and they said you were released on monday. gavin: yes, yes, that's true, but then i was taken to the bell's palsy center in, in, in, in rockford. absolutely first, first rate facility, top notch physicians. kramer: hey, c'mon, c'mon, get off me! gavin: he won't hurt you, he's just playing. kramer: hey you keep that mutt away from me. gavin: mutt? i'll wager his parents are more pure than yours. ellen: kramer, are you coming? jerry: oh, hi ellen. ellen: get in here. jerry: listen, it's really been a pleasure taking care of your dog for a week, but if you don't mind... gavin: pre-prediction. you'll be calling me to ask if you can come and visit him before the month is out. jerry: prediction. i never see you or him again for the rest of my life. elaine: we made plans. jerry: why don't we just rent a movie? elaine: i thought you wanted to see prognosis negative. jerry: no, it&mac226;s, it's supposed to be really bad, *really* bad. i mean it's long, there's no story, it's so unbelievably boring, i heard. i... elaine: jerry, you promised me we'd go. jerry: well, george told me the whole story, line for line, i mean i almost feel like i've seen it already and walked out on it. elaine: wait, george saw the movie? i saw him yesterday, he didn't mention it. jerry: you and george got together? elaine: yeah, i wanted to talk about how we have nothing to talk about. jerry: hello. kramer: hi, hi, hi, hi, hi. jerry: what's up? kramer: well, ah you were right. jerry: about what? kramer: ellen. we, uh, broke up again. jerry and elaine, together: awwwwww. jerry: too bad. elaine: i thought she was the one. kramer: i'll bring back the pot. elaine: okay, c'mon it's movie time. kramer: hey, what are you gonna see? jerry: prognosis negative. kramer: hey, that's supposed to be great. jerry: it's not. kramer: how do you know? jerry: i have an instinct for these things. jerry: i had a parakeet when i was a kid, that was the only pet that i really enjoyed. we used to let him out of his cage, and he would fly around and my mother had built, one entire wall of our living room was mirrored. she felt this gives you a feeling of space. have you ever heard this interior design principle that a mirror makes it seem like you have an entire other room? what kind of a jerk walks up to a mirror and goes, "hey look, there's a whole nother room in there. there's a guy in there looks just like me." but the parakeet will fall for this, you'll let him out of his cage, he flies around the room, bang! with his little head, he would just go 'click' ohh! and i'd always think, even if he thinks the mirror is another room, why doesn't he at least try to avoid hitting the other parakeet? jerry: does it seem to you that the ventriloquist dummy has a very active sexual social life? he's always talking about dates and women that he knows and bringing them back to the suitcase at night, there's always a sawdust joke in there somewhere you know, kinky things cuz he's made out of wood an' he can spin his head around, we're somehow expected to believe because the face is soo animated that they think we aren't noticing that the feet are just swinging there, dummy feet never look right do they? they're just kinda dangling there, always kinda askew you know? you always see just little ankle, those thin fabric ankles that they have you know. ya think 'i don't think this thing is real.' jerry: let me speak with the head librarian. ... because it's absurd. an overdue book from 1971? ... this is a joke right? what are you? from a radio station? kramer: enters jerry: ya' got me i fell for it. alright, ok i can be down there in like a half hour. bye. kramer: what's the problem? jerry: this you're not goin' to believe. the nypl says that i took out tropic of cancer in 1971 and never returned it. kramer: do you know how much that comes to? that's a nickel a day for 20 years. it's going to be $50,000 jerry: it doesn't work like that. kramer: if it's a dime a day it could be $100,000 jerry: it's not going to be anything. i returned the book. i remember it very vividly because i was with sherry becker. she wore this orange dress. it was the first time i ever saw her in a dress like that. in oticed since ninth grade she was developing this body in secret under these loose clothes for like two years. and then one day ... jerry: that orange dress is burned in my memory kramer: oh, memory burn. jerry: i wonder what ever happened to her. kramer: how did they ever find you? jerry: oh, computers, they're cracking down now on overdue books. the whole thing is completely ridiculous. jerry: it's george. wait 'til he hears we're going to the library kramer: you know i never got a library card. jerry: (to speaker) coming down. kramer: it's all a bunch of cheapskates in there anyway. people sitting around reading the newspaper attached to huge wooden sticks trying to save a quarter, ooh, jerry: i gotta go to the library. you want to go? kramer: yeah, kramer: the dewey decimal system, what a scam that was. boy that dewey guy really cleaned up on that deal. jerry: where's george reader: shhh. kramer: tryin' to save a quarter. jerry: i kinda like those sticks. i'd like to get them in my house. jerry: this woman's completely ignoring me. kramer: look at her. this is a lonely woman looking for companionship.. ... spinster. ... maybe a virgin. ... maybe she got hurt a long time ago. she was a schoolgirl. there was a boy it didn't work out. now she needs a little tenderness. she needs a little understanding. she needs a little kramer. jerry: eventually a little shot of penicillin librarian: yes? jerry: yeah i called before. i got his notice in the mail. librarian: oh, tropic of cancer, henry miller, uh, this case has been turned over to our library investigation officer mr. bookman. kramer: bookman? the library investigator's name is actually, bookman? librarian: it's true. kramer: that's amazing. that's like an ice cream man named, cone. librarian: lt. bookman has been working here for 25 years so i think he's heard all the jokes. jerry: can i speak with this bookman? librarian: just a second. george: jerry, jerry jerry: what? george: i think i saw him. i think it's him. jerry: who? george: did you see the homeless guy on the library steps screaming obsenities and doing some calesthetics routine jerry: yeah. kramer: yeah george: i think that's mr. hayman. ...the gym teacher from our high school. reader: shhh. jerry: (whispers) haymen, are you sure? george: he's older, completely covered in filth, no whistle, but i think it's him. jerry: george got him fired. he squealed on him. kramer: ooh tattle tale george: (yells) i didn't tattle reader: shh shh kramer: what did this guy do? what happened? george: there was an incident. i'd rather not discuss it. kramer: oh come on, you can tell me. george: some other time. kramer: what tonight? kramer: y'know i never figured you for a squealer. jerry: oh, he sang like a canary. librarian: mr. bookman's not here. jerry: not here? why was i told to come down here? librarian: he'll be out all afternoon on a case. kramer: he's out on a case? he actually goes out on cases? jerry: well what am i supposed to do now? librarian: i'll have mr. bookman get in touch with you. jerry: all right thanks. come on lets go george: let's see if it's hayman? kramer: hey, uh, i'll see you boys later. (turns to librarian) so uh, what's a guy got to do around here to get a library card? elaine: where's karen? secretary: she went to pick up lunch. elaine: well, she didn't ask me what i wanted. secretary: she must have forgot. elaine: how could she forget i've been ordering lunch every day here for 3 and a half years? secretary: i don't know anything. elaine: ah, you don't know anything. you see, "i don't know anything", means there's something to know. if you really didn't know anything you would have said "you're crazy." elaine: oh, hi mr. lippman. lippman: elaine, elaine: um, uh, i was wondering if you got a chance to look at that , um, biography of columbus, i gave you? lippman: yes i did. yes i did. ... maureen this water is still too cold. elaine: ooh yeah, it's freezing. ... hurts your teeth. elaine: i'm tellin' ya' somethin' is goin' on. he never likes anything i recommend. and then that lunch thing. jerry: so they forgot to get your lunch. big deal! elaine: what do you know. you've never worked in an office. (turns to george) see, george, you've worked in an office. jerry thinks i'm over reacting but you understand, ... lunch! george: i don't understand lunch, i don't know anything about lunch. listen. just because i got the guy fired doesn't mean i turned him into a bum - does it? elaine: what did he do? george: he purposely mispronounced my name. instead of saying, "costanza" he'd say, "can't stand ja". "can't stand ja" ... he made me smell my own gym socks once. jerry: i remember he made you wear a jock on your head for a whole class. and the straps were hangin' down by his ,... george: ok, ok, i never even had him for gym. jerry: i had him for hygene. remember his teeth. it was like from an exhumed corpse. george: little baked beans jerry: echh elaine: come on tell me what happened. george: well, ok. as i said the guy had it in for me. he actually failed me in gym. ... me! george: ... those spastic shnitzer twins ... heyman: can't stand ja ... can't stand ja george: yes, mr. hayman heyman: your underwear was stick'n out of your shorts during gym class. george: well i guess that's because i wear boxer shorts. heyman: boxer shorts, ha ha, well what brand? george: i'm not really sure, i... heyman: well let's take a look. george: he gave me a wedgie. jerry: he got fired the next day. elaine: why do they call it a wedgie? george: because the underwear is pulled up from the back and ... it wedges in.. jerry: they also have an atomic wedgie. now the goal there is to actually get the waistband on top of the head. very rare. elaine: boys are sick. jerry: well what do girls do ? elaine: we just tease some one 'til they develop an eating disorder. guy who ruined his life. george: i gotta go back to the library and talk to him. i gotta find out if i&mac226;m the guy who ruined his life. kramer: hey babaloo, you better get home. you know this guy bookman from the library he's waiting for ya. jerry: what's amazing to me about the library is it's a place where you go in you can take out any book you whant they just give it to you and say bring it back when you're done. it reminds me of like this pathetic friend that everbody had when they were a little kid who would let you borrow any of his stuff if you would just be his friend. that's what the library is. a government funded pathetic friend. and that's why everybody kinds of bullies the library. i'll bring it back on time ... i'll bring it back late. ... oh, what are you going to do? charge me a nickel? jerry: oh, i'm glad you're here, so we can get this all straightened out. would you like a cup of tea? bookman: you got any coffee? jerry: coffee? bookman: yeah. coffee. jerry: no, i don't drink coffee. bookman: yeah, you don't drink coffee? how about instant coffee? jerry: no, i don't have-- bookman: you don't have any instant coffee? jerry: well, i don't normally-- bookman: who doesn't have instant coffee? jerry: i don't. bookman: you buy a jar of folger's crystals, you put it in the cupboard, you forget about it. then later on when you need it, it's there. it lasts forever. it's freeze-dried. freeze-dried crystals. jerry: really? i'll have to remember that. bookman: you took this book out in 1971. jerry: yes, and i returned it in 1971. bookman: yeah, '71. that was my first year on the job. bad year for libraries. bad year for america. hippies burning library cards, abby hoffman telling everybody to steal books. i don't judge a man by the length of his hair or the kind of music he listens to. rock was never my bag. but you put on a pair of shoes when you walk into the new york public library, fella. jerry: look, mr. bookman. i--i returned that book. i remember it very specifically. bookman: you're a comedian, you make people laugh. jerry: i try. bookman: you think this is all a big joke, don't you? jerry: no, i don't. bookman: i saw you on t.v. once; i remembered your name--from my list. i looked it up. sure enough, it checked out. you think because you're a celebrity that somehow the law doesn't apply to you, that you're above the law? jerry: certainly not. bookman: well, let me tell you something, funny boy. y'know that little stamp, the one that says "new york public library"? well that may not mean anything to you, but that means a lot to me. one whole hell of a lot. sure, go ahead, laugh if you want to. i've seen your type before flashy, making the scene, flaunting convention. yeah, i know what you're thinking. what's this guy making such a big stink about old library books? well, let me give you a hint, junior. maybe we can live without libraries, people like you and me. maybe. sure, we're too old to change the world, but what about that kid, sitting down, opening a book, right now, in a branch at the local library and finding drawings of pee-pees and wee-wees on the cat in the hat and the five chinese brothers? doesn't he deserve better? look. if you think this is about overdue fines and missing books, you'd better think again. this is about that kid's right to read a book without getting his mind warped! or maybe that turns you on, seinfeld; maybe that's how y'get your kicks. you and your good-time buddies. well i got a flash for ya, joy-boy party time is over. y'got seven days, seinfeld. that is one week! kramer: what's wrong? marion: it's bookman the library cop. kramer: so i, i didn't do anything wrong. marion: i'm supposed to be at work. i could get fired. i shouldn't have come here. kramer: why don't ya' leave? marion: i can't. jerry: no way i'm payin' that! i returned that book in 1971. i have a witness sherry becker. she wore an orange dress. she gave me a piece of black jack gum. it's a licorice gum. what do ya' think of next i remember it. (thinks out loud, opens phone book) becker, ... becker, ... sherry: kevin went to a public school, he's the 14 year old? we were gonna' send marsha to a private school. cause in some way they don't learn ... enough ... i think. jerry: so sherry, what do you remember about that day at the library? sherry: i remember it like it was yesterday. it was a friday afternoon. i wore a purple dress. jerry: purple? ya' sure it wasn't orange? sherry: positive. and i was chewin' dentyne. i always chewed dentyne. remember jerry? dentyne? jerry: no black jack? sherry: uch! licorice gum? never! we were ah, reading pasages to each other from that henry miller book, jerry: tropic of cancer. sherry: no, tropic of capricorn jerry: tropic of capricorn? sherry: rememba? what holds the world togetha' ... "as i have learned from bitter experience is sexual intercourse ." jerry: wait a second. wait a second. you're right. i had both of them. jerry: george, here's the book. don't let anybody see it. don't let anything happen to it. george: jerry, it's me, george, don't worry, i'll return it jerry: ok, i'll see you after school. i.m late for hayman's hygiene. sherry: where ya' going? jerry: it was nice seeing you again. i just remembered something. i've got to go. (to old man that enters) it was george! kramer: read another poem. marion: pressed chest fleshed out west might be the saviour or a garden pest. kramer: wow, that is great. you should be published. kramer: you know, the library is kind of a cool place when it's closed. marian: oh, yeah. you don't have to be quiet. listen to the echo hello! kramer: hello! marian: hello! kramer: hello! marian: hello! bookman (emerging): hello! marian (turning, surprised): mr. bookman. bookman: i remember when the librarian was a much older woman kindly, discreet, unattractive. we didn't know anything about her private life. we didn't want to know anything about her private life. she didn't have a private life. while you're thinking about that, think about this the library closes at five o'clock, no exceptions. this is your final warning. got that, kewpie-doll? elaine: lippman want's to see me in his office see me! that can't be good jerry: maybe you're getting' a raise. elaine: maybe i'm getting' a wedgie. elaine: what? george: it's george elaine: george is on his way up. jerry: wait 'til i tell him about the book. kramer: (reading) sobs elaine: are you ok? what? what? kramer: it's marion's poetry. i can't take it (leaves sobbing) elaine: remember that biography i recommended? my boss hated it jerry: i'm right here. elaine: remember that columbus book? jerry: columbus, euro trash. george: well, it's definetly him. elaine: him? him who? george: him who? hayman him. elaine: hayman the gym teacher? you found him? george: oh, i found him. he was sitting on the steps of the library. i sat down next to him. he smelled like the locker room after that game against erasmus jerry: that was double overtime. george: so i said, "mr. hayman, it's me george costanza, jfk, ... " he doesn't move. so i said uh, "can't stand ya'", "can't stand ya'" he turns and smiles, the little baked bean teeth. i get up to run away, but something was holding me back. it was heyman. he had my underwear. there i was on the steps of the 42nd st. library , a grown man, getting a wedgie. elaine: at least it wasn't atomic. george: it was. jerry: so georgie boy, guess what happened to tropic of cancer george: how should i know? jerry: because i gave it to you. george: me? jerry: yeah, think. don't you remember you kept begging me to see it then finally i agreed. you were supposed to return it. i met you in the gym locker room. george: the locker room! jerry: here's the book. don't let anybody see it. don't let anything happen to it. george: jerry, it's me, george, don't worry, i'll return it tomorrow, no problem. jerry: all right, i'll see you after school. i,,m late for hayman's hygiene. heyman: can't stand ya'. george: yes mr. hayman. heyman: your underwear was stick'n out of your shorts during gym class. george: well i guess that's because i wear boxer shorts. heyman: boxer shorts, ha? well what brand? george: i'm not really sure, i... heyman: well let's take a look. george: (shouting) no no no! jerry: anyway, i hope there's no hard feelings. bookman: hard feelings? what do you know about hard feelings? y'ever have a man die in your arms? y'ever kill somebody? jerry: what is your problem? bookman: what's my problem? punks like you, that's my problem. and you better not screw up again seinfeld, because if you do, i'll be all over you like a pitbull on a poodle. jerry: (after bookman exits) that is one tough monkey! (turns to elaine) so you were saying? elaine: oh? so, i took your suggestion and i gave my boss marion's poems. the ones that affected kramer so much. jerry: oh, beautiful did he like them? elaine: no, ... he didn't! no, ... he didn't! jerry: (to george) was he out there? george: na, he's gone. i wonder what happened to him. jerry: i guess we'll never know. heyman: can't stand ya, (laughing) can't stand ya. (pan to tropic of cancer on ground) jerry: any day that you had gym it was a weird school day, you know what i mean because it kind of like started of kind of normal. you have like english, geometry, social studies and then suddenly you're like in lord of the flies for 40 minutes you know you're hangin' from a rope. you have hardly any clothes on. teachers are yellin' at ya' "where's your jock strap?" ya' know and kids are throwin' dodge balls at you. you're tryin' to survive ... then its history, science, language. there's something off in the entire flow of that day. [act one scene a int. escalator - going down to a garage. in single file: george, jerry and elaine, who's carrying a plastic bag with goldfish, and kramer who's having a rough time with a large, heavy box.] george: one left...what a joke. kramer: you can have this one. george: no, that's not enough btus for my living room...that was a complete waste of time. elaine: hey, i didn't get one either. jerry: why do i always have the feeling that everybody's doing something better than me on saturday afternoons? elaine: this is what people do. jerry: no they don't. they're out on some big picnic. they're cooking burgers. they're making out on blankets. they're not at some mall in jersey watching their friends trying to find the world's cheapest air-conditioner. george: you should see what my father used to go through before he bought a car. he'd go from state to state. he was away for weeks at a time. it was like he was running for president and he was going through the primaries. we'd get phone calls from motels in new hampshire. elaine: so we took a little ride. what's the big deal? george: well at least you accomplished something. you got fish. jerry: big accomplishment. george: fish. what do they do? elaine: what do you do? kramer: it's this way. george: what time is it? jerry: five o'clock. george: always late. always late. jerry: you're not late. george: i told them to meet me in front of my building at six-fifteen. elaine: who? george: my parents. it's their anniversary. i'm taking them out to dinner and a show tonight. you think we'll hit traffic? jerry: of course we'll hit traffic. it's rush hour. elaine: isn't it going the other way? jerry: there is no other way in new york. everybody goes every way all the time. elaine: but it's saturday. jerry: you got the picnic and burger traffic. george: i always get myself in this position. can't be on time. gotta rush. elaine: what's the matter? jerry: i have to go to the bathroom. why do they hide the bathroom in these malls? jerry: (cont'd) you want me to help you with that? kramer: no, no, i got it. jerry: (to george, rewoman) what do you think, georgie boy? george: did i need that pointed out for me? what is that going to do for me? how does that help me, to see her? i'm trying to live my life. don't show me that. kramer: if you like her, go talk to her. george: yeah, right. i'll just go up and say, "hi, how ya' doing? would you like a glass of white wine?" jerry before you got within twenty feet of this woman, she'd have her finger on the mace button. she's like an expensive car with one of those motion-sensor force field alarms. any sudden movement in the area could set her off. kramer: she's fat. elaine: oh she's fat? elaine: what? jerry where's the car? kramer: i thought it was here. george: you don't know where we parked? george: oh, this is great. kramer: blue-one. i thought it was blue-one. jerry: i thought it was green. i remember seeing green. elaine: i didn't pay attention. george: this is just what i need. elaine: i'm sure it's right around here. kramer: it looks familiar. i remember the elevator. george: there's elevators all over! it all looks the same. jerry: it's over there. i know where it is. elaine: it's black, right? kramer: dark blue. george: (mumbling) you come to a parking lot, you write it down. how hard is that? jerry: there it is!...no, no that's a toyota. jerry: (cont'd) hmmm...i thought it was... kramer: didn't we come in over there? jerry: i thought it was over there. elaine: how long can fish live in one of these plastic bags? kramer: about two hours. elaine: (she looks at her watch) you'd better find this car. george: it's this way... and they take off again, pairing off jerry: i really have to go to the bathroom. kramer: why don't you go behind one of these cars? j kramer: (cont'd) why? nobody's around. jerry: i'll wait. kramer: you know when you hold it in like that you can cause a lot of damage to your bladder. that's what happens to truck drivers. they hold it in all the time. eventually it starts coming out involuntarily. jerry: alright. kramer: jerry, are you aware that adult diapers are a six hundred million dollar a year industry? jerry: maybe i should just go anytime i get the urge like you...wherever i am. there's too much urinary freedom in this society. i'm proud to hold it in. it builds character. elaine: (re car) there it is!...no that's not it. elaine: (cont'd) hey, watch it. ...did you see that car? maniac. can you explain something to me? i got six questions wrong on my drivers test. that's the maximum. i read the book, i'm a college graduate. this is a country where fifty percent of its high school students can't locate europe on a map. how are they all passing that test? it's a mystery. george: ...six wrong? elaine: those school zones are a killer. jerry: (to kramer, rebox) will you let me help you with that? kramer: i'm gonna put it down behind that car. jerry: you're not worried somebody's gonna pee on it? kramer: (to george) pink eleven. remember that. george: oh i got it. (to jerry) that i'm supposed to remember. where the car is, that's insignificant. elaine: (looking at fish) i think they're laboring. kramer: look at this place. it's huge... george: i can tell you this. if i am not in front of my house at six-fifteen, when my parents get there, they will put me on an aggravation installment plan that will compound with interest for decades. jerry: parents never forget a foul-up. i once left a jacket on the bus when i was fourteen. last week i'm flying to chicago to do a show, "make sure you hang on to your jacket." george: where the hell is this car, kramer? kramer: it's got to be here. elaine: why are they using so many colors? and the numbers go up to forty. jerry: maybe it's not on this level. george: what? jerry: there are four different levels. maybe we're on the wrong level. how long was the escalator ride up? elaine: it felt like a couple of levels. jerry: you should always carry a pad and pen. george: i can't carry a pen. i'm afraid i'll puncture my scrotum. kramer: i have a pen. jerry: where was the bathroom in this mall? there are six-hundred stores, i didn't see one bathroom. what is this, like a joke? they finished building the mall and they go, "oh my god, we forgot the bathrooms." mother: (o.c.) don't you dare talk to me like that! you hear me? elaine: look at that woman. mother: i told you! i don't care! you'll have to wait. george: (to woman) hey, is that necessary? mother: (to george) why don't you mind your own business? george: i think hitting a defenseless child is my business. kid: (to george) you're ugly. george: ...what? kid: you're ugly. george: you are! kid: you are! george: i should've hit the little son-of-a-bitch. i can't stand kids. adults think it's so wonderful how honest kids are. i don't need that kind of honesty. i'll take a deceptive adult over an honest kid any day. kramer: (re car) i found it! elaine: he's got it. kramer: oh...no. jerry: all right, that's it. from now on no more calling out they found it, unless we're sitting in it. okay? elaine: jerry, look at my fish. jerry: his eyes look a little cloudy. george: oh are they gonna be furious. jerry: who's got the tickets? george i do. (to kramer) i thought you knew this mall. you said you'd been here before! kramer: it was easy the last time. elaine: my fish are dying right in front of me! we have to get someone to drive us around the parking lot to help us look for the car. jerry: no one's going to do that. elaine: excuse me, we can't seem to find our car. i was wondering if it would be possible if you're not in a hurry, to drive us around the garage for five minutes so we can look. man #1: (holding his hands up) ...sorry. elaine: five minutes. man #1: can't do it. elaine: we're not wilding. elaine: (cont'd) excuse me - i can't seem to find my car - do you think you could drive me... elaine: (cont'd) oh that's funny? is that funny? well tell me if you think this is funny these fish are dying! they're gasping for oxygen right now! they'll be floating in an hour. is that funny too? jerry: those are really ugly sneakers. where did you get those? kramer: right here at the mall. elaine: excuse me... elaine: (cont'd) sorry to have disturbed you. terribly sorry. but the fish will be dead. you do know that. they can't live in plastic. that's not me talking, that's science. jerry: it's amazing how shopping makes me have to go. all i have to do is walk into a department store and it's like some kind of horse laxative just kicked in. kramer: you drank a whole bottle of water. jerry: i know. kramer: so why don't you just go? jerry: no i can't. kramer: don't you get tired of following rules? jerry: you think i'm too cautious? kramer: why be uncomfortable if you don't have to? it's organic. jerry: organic. so's buddy hackett. kramer: buddy hackett? jerry: he's a comedian. kramer: i know. jerry: all right. all right. kramer: (pointing) you can go over here. jerry: i can manage. kramer: (turns away and spots george) george! (leaves scene) kramer: it'll take you ten seconds. jerry: okay, okay. i'll be right back. security guard: okay, let's go. come with me. jerry: but... security guard: come on. jerry: (starts to leave, to himself) ...kramer jerry: i've had this condition since i was eleven! i've been in and out of hospitals my whole life. i have no control over it. doctors have told me that when i feel it, the best thing to do is just release it. otherwise, i could die. security guard: well you're still not allowed. jerry: do you hear what i'm saying to you?! i'm telling you that if i don't go, i could die. die. is it worth dying for? security guard: that's up to you. jerry: so you don't care if i die. security guard: what i care about is the sanitary condition of the parking facility. jerry: it was life and death. security guard: uh huh. jerry: oh i'm lying. why would i do it unless i was in mortal danger? i know it's against the law. security guard: i don't know. jerry: because i could get uromysitisis poisoning and die. that's why!...do you think i enjoy living like this?...the shame, the humiliation...you know i have been issued a public urination pass by the city because of my condition. unfortunately my little brother ran out of the house with it this morning. jerry: (c0nt'd) him and his friends are probably peeing all over the place. you want to call the department of social services? oh, it's saturday. they're closed today. my luck. security guard: you can tell the police all about it. kramer: (calling out) jerry! elaine: jerry! george: unbelievable, i'm never gonna get out of here. the guy goes to pee, he never comes back. it's like a science fiction story. elaine: maybe he went to one of the other levels. i'll go look for him. george: oh now you're gonna go? elaine i'll be back in five minutes. george: if you go now, i know what's gonna happen. we'll find the car, jerry will show up, and then we'll never find you. elaine: no, no, i'll be back. george: oh what's the difference? we'll all be dead eventually. kramer: does that bother you? george: yeah, it bothers me. doesn't it bother you? kramer: not at all. george: see now that bothers me even more than dying bothers me, cause it's people like you who live to be a hundred and twenty because you're not bothered by it. how could it not bother you? kramer: i once saw this thing on t.v. with people who are terminally ill. and they all believed the secret of life is just to live every moment. george: yeah, yeah. i've heard that. meanwhile i'm here with you in a parking garage, what am i supposed to do? jerry: first of all you don't even know technically that i went. that's for starters. i mean i could've been pouring a bottle of water out there. you don't know. security guard: i know what you did. jerry: oh really, do you? well it just so happens that i did pour water out. i had a bottle of very tepid water and i poured it out. and i could see how you made a mistake, because pouring water out sounds very much like a person urinating. jerry: (cont'd) and you know when you think about it it's really quite an amusing case of mistaken identity. that's all it is. security guard: yeah i'm sure. jerry: you know this is not the first time this has happened to me. i always carry water because of my condition. it dehydrates me. it's a vicious cycle. elaine: and now he's gone. i'm sure he's looking for the car. five minutes, that's all. i just want to find him. man #1: i can't do it. elaine: but why? why can't you do it? man #1: i can't. elaine: no, see that's not a reason you can't. you just don't want to. man #1: that's right. elaine: but why? why don't you want to? man #1: i don't know. elaine: but wouldn't you get any satisfaction out of helping someone out? man #: 1 no, i wouldn't. jerry: (a new tack) all right, all right. i want to apologize. i was frightened, i said crazy things. i obviously offended you. i insulted your intelligence. the uromysitisis, the water bottle...i made it all up, and now...i'm going to tell you the truth. today my father and mother are celebrating their fiftieth, well i'm jumping ahead here, their forty-seventh wedding anniversary. we made arrangements to spend the evening together. they are supposed to be in front of my building at six-fifteen. jerry: (cont'd) what i haven't told you, or anyone else for that matter, is that my father's been in a red chinese prison for the past fourteen years. kramer: the guy's got a fat fetish. spector never dates a woman under two hundred-fifty pounds. george: (not interested) really. kramer: what does he do with all that fat? does he just jump up and down on it? does he gouge it like killer kowalski? george: who's killer kowalski? kramer: he was a wrestler. he would grab hold of someone's stomach and just squeeze it until they gave. george: i've gotta go to the bathroom. kramer: so go. george here? kramer: (shaking his head) you and jerry. george: don't you believe me? it's their fiftieth anniversary. you know this is gonna kill him. you're aware of that. kill him. on the biggest night of his life... security guard: oh your folks have an anniversary today too? jerry: (to george) was he also in a red chinese prison? george: (to jerry, somewhat impressed) a red chinese prison? kramer: george! george! elaine: jerry! (then she checks her fish) jerry: well what happened was my father was staying in the home of one of red china's great military leaders, general chang, who by the way came up with the recipe for general chang's chicken. you know, the one with the red peppers and orange peel at szechwan gardens? george sure, i have it all the time. very spicy. jerry: well general chang was a very flamboyant man. a complete failure as a general, but a helluva cook. elaine: (o.c.) jerry! jerry elaine?! elaine: (o.c.) jerry! over here... elaine: (cont'd) where have you been? jerry: i was arrested for urinating. george: (proudly) me too. elaine: you what? jerry: i have uromysitisis. it's very serious you know. elaine: look at my fish... (jerry examines it) is he... jerry: no, but he's not looking good... (elaine turns to two huge body builders in workout wear) elaine: (desperate) please, we can't find our car. please drive us around the parking lot to find our car. my fish are dying. man #2: can't do it. elaine: i can see not caring what happens to us, we're human. but what about the fish? the fish? man #3: sorry. (they keep walking.) elaine: that's right, go. go home to your dumbbells. work on your pecs. i'm really impressed. elaine: (cont'd) that's right you heard me. you got a problem with that? george: elaine, shut-up. jerry: hey, where's kramer? george: i don't know. (to elaine) where's kramer? elaine: i thought he was with you. george: see, i knew it. i knew this was gonna happen... george: (cont'd) look at the time, that's it. elaine: have we looked over there? have we checked that side? george: we came in over there! elaine: we didn't come in over there! jerry: where's kramer? jerry: hey george, there she is again. ... george: so what do you want me to do? jerry: ask her to drive us around. there's your opening. george: that is an opening. george: (cont'd) excuse me...i really... what's happened is that my friend forgot where he parked and if you're not in a big hurry, we'd really appreciate it if... amy: oh sure, i'll drive you around. george: you will? amy: sure. george: thanks a lot. i'm really late. my parents are waiting in front of my building and we're stuck here. amy: i wouldn't want to get lost in here. it smells like a toilet. people are such animals. george: yeah, right. jerry: filthy pigs. george: it's a blue honda... amy: this has happened to me too. it's very frustrating. elaine: hi, i'm elaine. jerry: jerry. amy: hello. elaine: it's very nice of you to do this. i've asked several people and they wouldn't even answer me. amy: i'm happy to do it. (to george) i'm amy. george: hi amy, i'm george. george: (talking in passenger window) i didn't mean anything by it. i don't even know l. ron hubbard! i didn't know you were... george: (cont'd) ...with that group. elaine: (shouting to amy) what about my fish? jerry: boy, those scientologists. they can be pretty sensitive. elaine: i'll say. elaine: what is it? (they discover what he's staring at) the car! jerry: the car! george: the car! elaine: we found it. i can't believe it! george: kramer, kramer's not here...i knew it. i knew it! i knew this would happen. (screaming) kramer! kramer! jerry: kramer! jerry: kramer. kramer: jerry? jerry: yeah, over here. kramer: boy i had a helluva time finding that air-conditioner. i looked everywhere. i completely forgot where i hid it. you know where it was? george: purple 23. kramer: right! purple 23. i could've used you. george: sometimes it's good to have a pencil to write these things down. kramer: what time is it? george: seven forty-five. kramer: well at least there's no traffic. george: right. kramer: what time does that play start? george: eight o'clock. kramer: that might be a problem. (to elaine) where's your little bag of... kramer: (cont'd) oh...(takes out parking stub) boy this garage is going to cost a fortune. you know how long we were here? george: she thinks i'm a nice guy. women always think i'm nice, but women don'tnice. jerry: this is amazing, i haven't seen one person go in to that restaurant since it opened. poor guy. george: why is nice bad? what kind a of sick society we are living in, when nice is bad? jerry: what's that smell? what are you wearing? george: what, a 'little' cologne. jerry: manly. george: monica wants me to wear it. jerry: so why didn't you say no? george: i'm too nice. jerry: look at this poor guy. his family is probably in pakistan -- they're waiting him to send back money. this is horrible. george: she wants me to take an iq test. jerry: that's because you're stupid enough to wear the cologne. george: no, she's taking this course in education for her masters. it's part of her research project, so i have to be a guinea pig. jerry: i've never been a guinea pig. i've been a sheep, a tody. george: you know, i can't talk to you anymore. jerry: all right, i'm sorry. go ahead, you're taking the iq test. george: yeah, and she's going to find i'm a moron. you know, people think i'm smart, but i'm not smart. jerry: who thinks you're smart? george: i'm not going to break a hundred on this thing. jerry: what thing? george: you don't listen when people talk to you anymore! jerry: oh, oh, the iq thing...yeah. george: i'm sure i have a low iq. i've been lying about my sat scores for 15 years. jerry: what'd ya get? george: what did i get or what do i say i got? jerry: what do you say? george: i say fourteen o nine (1409). jerry: 1409, that's a good score. george: psst, you're telling me. jerry: what did you really get? george: you are my friend. jerry: of course. george: i tell you everything, right? jerry: i hope so. george: well, this i take to the grave. jerry: he's serving mexican, italian, chinese. he's all over the place. that's why no one's going in. elaine: why do you keep watching? jerry: i don't know, i'm obsessed with it. it's like a spider in the toilet struggling for survival. and even though ya know he's not going to make it, y-y-you kind of root for him for a second. elaine: and then you flush. jerry: well, it's a spider. elaine: you know, sometimes people won't go in a place, if they don't see anyone else in there. elaine: do you have to do that? jerry, don't do that, that is so annoying. jerry: bazooka joe. jerry: the buzzer. elaine: it's your house. jerry: my house? you gotta be on the lease to press to buzzer. yeah? (to the intercom) intercom: it's george. jerry: come on up. elaine: casus belli. jerry: what's that? elaine: it's latin. i read it in some book. i don't know, i just wanted to say it out loud. jerry: come on, go in, go in! [watching dream cafe with binoculars again] elaine: have you gone in there? jerry: no, i'm afraid we'll start talking, and i'll gonna wind up going partners with him. george: hey. jerry: you know, i could probably shoot him from here. i'd be doing us both a favor. george: i'm wearing some cologne, all right? elaine: sure, fine. jerry: casus belli. elaine: casus belli. george: what's that? elaine: since when do you wear cologne? george: why is what i do is so important? why must i be always the focal point of attention? let me just be, let me live. jerry: hey, how'd you do on that iq test? george: i didn't take it, yet. elaine: what iq test? george: what's casus belli. jerry: oh, it's nothing... george: is it about me? jerry: why must you always be the focal point of attention? why can't you just be? (elaine laughs - hu) why can't you live? elaine: it's just a latin phrase george, it does not mean anything. now, what is this test? jerry: this woman he's dating is making him take this iq test for this course. elaine: oh, that sounds like fun. george: yeah, fun. iq tests are totally bogus. they prove nothing. elaine: you'll do well, you're smart. jerry: no see, he's not smart. people think he's smart, but he's not. elaine: wha'd you get on your sat's? george: it varies. jerry: you know, i don't even know my iq. elaine: huh, mine's 145. george: 145! jerry: get out of here! elaine: you get out of here! jerry: you get out of here! elaine: huhuhuhuhuhuhu (laughing) george: shst, you should take the test for me. elaine: huh. jerry: boy that'd be something, cheating on a iq test. george: haha (laughs) jerry: hey, remember in college when you passed lettick the test out the window? you became a legend after that. (stepping over elaine then george's legs to get to the large blue chair and sits down.) george: yeah, yeah i really had some guts back then. why don't we do it again? elaine: what? george: you could take the iq test for me. i could pass it to you out a window. we could do it, she lives in the first floor. elaine: are you serious? george: why not? elaine: where would i take the test? george: i don't know, she lives right around the corner. you could take it here or go to the coffee shop. elaine: no, that'd be too noisy. jerry: take it to dream cafe, you won't hear a peep. elaine: hey, what do you think? jerry: hey, i love a good caper. elaine: yeah, that's what is, isn't it? a caper. huh. george: you'll do it? elaine: what the hey. george: yeaah, beautiful... (they try to hit a high five, but george hits elaine in the forehead.) sorry... babu bhatt: welcome to the dream cafe. jerry: well, ah, i've been looking forward to it. babu: oh, ah how did you hear about us? jerry: eh, people, people are talking. babu: smoking or non-smoking? we are proud to offer both. jerry: ah, non-smoking would be great. babu: very good. my name is babu bhatt, i will be your waiter. a steaming hot folded face cloth for your pleasure. jerry: thank you. [throws the towel around like a hot potato.] babu: our specials are tacos, moussaka and franks and beans. jerry: well, ah w-what do you recommend my good fellow? babu: oh, the turkey. jerry: well then the turkey it'll be. and may i say you have a splendid establishment here, my friend. i'm sure you flourish at this location for many, many years. babu: you're very kind man. very kind, thank you. very kind... jerry: (thinks) very kind. i am a kind man. who else would do something like this? nobody. nobody thinks about people the way i do. all right, snap out of it you stupid jerk. you're eating a turkey sandwich. what do want, a nobel prize? george: you go in the living room. i'll take the test in here. monica: but why? george: i won't be able to, concentrate in front of you. monica: oh, i think you're making too much of this. iq tests don't mean anything. george: are you kidding me? [elaine walks past the window glancing in] this is the best tool we have today of measuring a persons' intelligence. monica: well, i certainly don't place any importance on it. george: well, i think you're wrong about that. [elaine walks past the window again, glancing in] and ah now if you'll excuse me, i'd really like to get started, please. monica: good luck. george: don't need it. n'huhuhu (laughs) elaine: what's been going on out there? i've been standing here 20 minutes. george: i'm sorry i'm sorry, here's the test. thanks again for doing this - hhe. elaine: all right, what time do you want me back here. george: ah, ah, twenty to three. elaine: ok. george: thanks again. elaine: all right. george: a-and don't settle for 145, you can do better, you're a genius. heheheh (laughs) jerry: thank you babu. you have quite a flair. you are quite the restaurateur i must say. babu: it is in deed my pleasure. jerry: oh, please... babu: oh, welcome to the dream cafe. (runs to get a menu.) our specials today... elaine: oh, no no no. i'll just have a tea and toast. (sits down across the table from jerry) babu: tea and toast. jerry: eat something! babu... elaine: um, ok, ah well i'll have the, th-ri-rigatoni. babu: oh, oh very good choice. very good. jerry: oh wow, so you got the test. you're cheating. elaine: i know. kramer: hey. jerry: hey. kramer: oh boy. woop... kramer: jerry let me ask you something, hi elaine... (pats her on the shoulder twice.) elaine: hey. kramer: this guy leaves this jacket at my mother's house two years ago. now, she hasn't spoken to him since and now he says he wants the jacket back. jerry: so? kramer: well, i'm not giving it back. jerry: why not? kramer: well because i meet a lot of women in this jacket, you know they're attracted to it. i mean why do you think my mother went out with him? kramer: oh, gees... elaine: ok, kramer: you're all right elaine: yeah, ok... (takes the test and moves to another table.) kramer: (eating some nachos) anyway, it's been two years. i mean isn't there like statue of limitations on that? jerry: statute. kramer: what? jerry: statute of limitations. it's not a statue. kramer: no, it's statue. jerry: fine, it's a sculpture of limitations. kramer: wait a minute, just wait a minute...elaine, elaine! now you're smart, is it statue or statute of limitations? elaine: statute. kramer: oh, i really think you're wrong. elaine: look, kramer, i have to take this test ok, i don't have a lot of time. kramer: what test? elaine: an iq test. kramer: hmm. why you takin' an iq test? elaine: it's for george. kramer: george? elaine: yeah, can-look ... can i explain it to you later? kramer: yeah, but why are you taking an iq test for george? elaine: would you please?! kramer: what, is it for a job or something? elaine: later! kramer: you're positive it's statute? elaine: yes, yes! (jerry shaking his head, like he can't believe what he's seeing) babu: welcome, welcome. a steaming hot face towel for your... (gives kramer a hot towel and kramer screams, elaine screams and kramer falls from his chair. he gets up and is dazed) monica: george? george: yeah? monica: the door is locked. george: oh, it's locked? monica: i need to get something. george: monica, i'm really focused here, this stuff's a killer. (turns to the next page) monica: george! george: wish i could. (raises the magazine up in front of his face and continues reading.) babu: nananeena, ladadeeda, laadadeeda, saadina.... laadadeeda sa saadina (singing too loud) elaine: babu! ba-if-if ya don't mind? babu: set. ok elaine: set. babu: i'll get it ... elaine: oh my god! it's all over the test! babu: oh, i did sc-i'm terribly sorry. jerry: oh my god. elaine: oh man! look at this... i'm out of time anyway. babu: please, forgive me, please... jerry: go ahead, i'll take care of it. elaine: uhh. babu: (opens the door for elaine) please, i'm very sorry. tell your friends! jerry: it's all right, she was cheating anyway. babu: you're a very kind man. jerry: babu, you're pakistani, right? babu: yes, pakistani, yes. jerry: babu, may i say something? babu: of course, you're very smart man, i listen. jerry: i am not a restaurateur by any means, but it occurred to me that perhaps you might serve some dishes from your native pakistan? as opposed to say t-the franks and beans for example. babu: but there are no pakistani people here. jerry: doesn't matter. you would have the only authentic pakistani restaurant in the whole neighborhood. babu: yes, you see everything, don't you? jerry: well, you know; not everything. i do what i can. babu: i close down today and when i open again it'll be all pakistani restaurant. thank you, thank you so much, you're very special person, very special. elaine: it was an accident. george: what did you go on a picnic? elaine: babu bhatt did it. george: babu bhatt? how i'm going to explain this? monica: time's up george. george: u-ok. (george closes the window and shoos elaine off. he opens the door to monica.) here you go. monica: how did you do? george: piece of cake; hu. monica: what happened to the test? george: what? oh i spilled some food on it. monica: food? what food? george: what are you talking about? monica: where did you get food? george: from my pocket. monica: your pocket? george: i eh, i had a sandwich in my pocket. monica: and coffee? george: yeah, had some coffee, yeah. monica: where did you get the coffee? george: where did i get the coffee? where do think i got the coffee, at the grocery store. (small laugh) monica: how did you get there? george: i walked. monica: how did you get out of the apartment? i didn't see you leave. george: i climbed out the window. monica: you climbed out the window? george: of course. monica: why didn't you go out the door? george: the door? why would i go out the door? the window's right here. monica: you're a fascinating man, george costanza. [jerry's apartment, jerry and elaine. jerry is looking dream cafe with binoculars. there's a sign on the window: closed for renovation.] jerry: the average person in a situation like this, they walk right by it. not me. elaine: you're very special. kramer: hey, do me a favor... some guy comes in looking for me, tell him you don't know where i am. jerry: of course, i always do. kramer: no, no it's that guy. he's really been bugging me about the jacket. elaine: just give it back to him. kramer: oh, he'll have to kill me. (leaves.) jerry: hey georgie! george: coming up. jerry: how'd you do on the iq test?! george: 85! jerry: what?!! george: 85, jerry! 85 iq ! elaine: 85? jerry: well, well, well... elaine: he's coming up? jerry: well, i'm no genius but, according to my calculations he should be here in a few seconds. elaine: yeah, but an 85, jerry, that's ridiculous. jerry: well, maybe the test was gender bias, you know a lot of questions on hunting and testicles... george: oh, hello professor. elaine: george, i cannot believe... george: please... elaine: no there has got be a mistake. george: you should've seen her face. it was the exact same look my father gave me when i told him i wanted to be a ventriloquist. jerry: but an 85? elaine: listen, there were too many distractions there. babu...what ever he's name was and kramer...i couldn't concentrate. elaine: jerry! it was! let me take it again. george: ooh ho hoo, forget it. elaine: oh, come on, come on. i?ll guarantee 140. what do you have to lose? george: you could do worse! elaine: no, no, come on. i guarantee it. george: all right, i'll ask her. elaine: ok, now where i'm going to take it. jerry: take it here, i'll leave, there'll be no distractions. jerry: well, congratulations my friend. you know, i'm sorry i missed the grand re-opening. i was out of town for about a week. babu: you see how i listen. i work very hard, borrow more money. jerry: i think it's fantastic. has a certain indefinable charm. babu: you wish to eat? jerry: let me tell you something babu. you go back in that kitchen -- tell your chef i want the works. babu: very good. elaine: (stretching) oh man... uunh. elaine: what are you doing? kramer: quiet. shh, don't say anything. elaine: what's going on? man behind the door: hey, kramer! i saw you go there! i'm not leaving until you gimme that jacket. (bangs on the door) open up kramer! elaine: wha'd you come in here for? kramer: ah, well i thought i'd throw him off. see, he knows where i live. elaine: well kramer, i have to return this test. i've got to get out of here. kramer: i thought you took the test. elaine: i had to take it again. kramer: how come? elaine: what's the difference?!! kramer: well, you can't leave now. elaine: what? man behind the door: come on, kramer! i want that jacket back! kramer: never! monica: come on george, open up. monica: well? george: how' you doing? monica: where's the test? george: hunh, you know, it's the damnedest thing. i went out the window again to, to get a cup of coffee... jerry: babu? babu...[waves babu to come to table] babu...you know, i got to tell you, i never do this, but the shrimp, it's just, it's a little stringy. you have any chicken? babu: the shrimp is stringy? jerry: well, maybe your refrigerator... babu: quiet!! jerry: no i... babu: you shut up! jerry: well i... babu: you make me change restaurant, but nobody come! you say make pakistani, babu bhatt have only pakistani restaurant. but where are people? you see people? show me people. there are no people! jerry: you know, i think i'll just take the check. babu: you bad man! you very very bad man! [leaves] jerry: (thinking) bad man? could've my mother been wrong? monica: are you looking for george? elaine: well eh, kind of.... monica: george left. elaine: oh. monica: is, that the test? elaine: oh, this...emm...yeah...here you go. monica: thanks. i hope you do a lot better this time. elaine: actually, you know i think i did. the first time i couldn't really cons...[monica closes the window]...entrate. jerry: you know what it was, bad location. george: come on, lets not stand here too long, we might run in to her. jerry: aren't you cold? where's your jacket? kramer: h-yeah... jerry: oh, sorry. kramer: i'm going upstairs. elaine: hey guys... jerry: hey. elaine: i just ran in to monica. you know what my iq is? 151. jerry: 151? elaine: yeah..heheah (laughing a bit) george: that's a good score. jerry: so, what are you up for? how about mexican? george: italian. elaine: no, chinese. jerry: you know, what would be great? jerry: ....hair that was on your shower soap today could be in your head tomorrow. how did they do the first transplant? did they have the guy take a shower , get his soap , rush it in there by helicopter, you know keep the soap alive on the soap support system ....looks it over. "we got the hair but i think we lost the zest." ....rejects the transplant with organs. is it possible that a head could reject the hair transplant . guy just standin' there and suddenly... ..bink! ( motions hair flying out of his head)........lands in someone's frozen yogurt. repairman: .....the gaskets that you have here are asymmetrical. jerry: ah..ha!.. really. ( jerry is barely listening to him ) repairman: so i took off the motor relay on the compressor....'cos you..you (stutters) you've got some discoloration jerry: oh! well whatever you have to do. repairman: i was working with one.....mount at a time 'cos you don't wanna disturb the position of the compressor. jerry: (sarcastically) no you don't.. george: hey! what are listening to? jerry: my show from last night. george: oh! you taped it? jerry: yeah , i was doing new material. george: hey! did 'ya ever do that thing on the toes that i said . jerry: huh? george: yeah! like the big toe is like the captain of the toes, but sometimes the toe next to the big toe gets so big that there's like a power struggle and the second toe assumes control of the foot. jerry: the" coup d-toe" george: yeah. did you do it? jerry: yeah! george: so? jerry: nothin'.....nothing at all. george: need to use the phone. jerry: who you calling? george: china. jerry: china really? george: yeah. i'll pay for it. jerry: what for? george: what for? . i'll tell you what for.... for hair. jerry: hair? george: the chinese have done it my friend. the chinese have done it. jerry: done what? george: discovered a cure for baldness. repairman: did you see that last night? george: it was on cnn ( kramer comes in and he is taping from a camcorder) this chinese doctor zeng zau. has discovered a cure for baldness. jerry: (to kramer) what's this? kramer: well i just got it. spector gave it to me , he's giving everything away...becoming a minimalist. george: is that the guy who likes fat women? jerry: doesn't the fat fetish conflict with the minimalism. kramer: (to george) you , you know what you should've done is watching that report on cnn last night. george: i did, i'm trying to call china. kramer: you can't call china now its like, what, three 'o clock in the morning there jerry: oh! my god!.... george: what? jerry: oh! god.. oh! man.....oh! brother!!! i can't believe what i'm hearing. this woman his talking to me on my tape recorder while i was on stage. this is wild. i've never heard anything like this in my life. listen to this. george: (george puts on the headphones) oh! my god... kramer: give me it..( tries to pull them off george's head) george: wa..wait.wait!......who is this woman? jerry: i don't know . i have no idea . i was just listening and she came on. george: this is like a penthouse letter...why can't i meet women like this? kramer: all right come on....again attempts to pull headphones off) george: wait ,wait, wait, wait!!!!.... where was the tape recorder? jerry: it was in the back of the room on the left, she must have been sitting right in front of it. george: my god!!! kramer: c'mon it's my turn. george: all right, all right, all, right!!( gives the headphones to kramer) how you gonna find out who this is? jerry: good question. kramer: where's the volume..(finds it) a, yai..ya...ya..ya!!!! george: what do the chinese have to gain by faking a cure for baldness? jerry: if it was real ,they would never let it out of the country. no baldness , it'd be like a nation of supermen. elaine: hi boys. both: hello... elaine: what's happening? jerry: tell her. i wanna hear her reaction. george: this woman left this really sexy message on jerry's tape recorder...... jerry: (pushes george) not that you idiot!! george: what?? jerry: the chinese , the chinese bald cure. george: i thought you meant the.. jerry: no i meant the bald cure. we were talking about the bald cure. elaine: what did she say? peter: seinfeld.....( from way in the back of the restaurant. cheesy plot device to have jerry leave the table for a minute so george and elaine can talk) jerry: hey! is that peter? ...i can't believe it. get me a cup of decaf. (leaves table) elaine: so did you hear this message? george: oh!, he he, it was unbelievable elaine: really! george: yeah. i can't get over it. elaine: huh! sexy? george: this woman drove us out of our minds elaine: like ...humm...how did she sound? george: she had this throaty , sexy kind of whisper. elaine: really , like a... like a....(leans over to george and whispers) jerry, i want to slide my tongue around you like a snake.....ooooooooooha ,oooooohaaaa..... george: oh! my god!!......you?.....you?...that was you?.... elaine: shhhhhh!!! george: how did ya?... elaine: i stopped at the club to see him and i was standing in the back while he was on, right?, and there was this tape recorder there and i.....got this impulse. ha ha ha ha....what? george: oh! no no nothing.... elaine: now listen , promise me you won't tell him okay.i want to have a little fun with this. george: i had no idea you were filled with such....sexuality.. elaine: oh! that was nothing. so listen, what about this bald thing? george: ah! some bald thing, a bald thing i dunno. it's nothing jerry: remember peter? george: peter? jerry: you remember peter. remember i told you how he went to the track that one time and he was yelling at this jockey and the jockey got off the horse and started chasin' him. elaine: so listen , what about this girl on the tape recorder? jerry: oh elaine....what do you think an enraptured female fan of mine might say? elaine: i don't know. jerry: she went on in some detail about certain activities, illegal in some states, for consenting adults. things you would know very little about. elaine: oh! really. jerry: well this type of things is very common when you're in show business. elaine: so what, are you gonna ask her out. jerry: no i can't she didn't leave her name or number. elaine: bummer...okay , good luck finding her . i'm taking off. george: wh.. where you going? elaine: home. george: why you going home for? elaine: well , i just came from the gym , unless i can shower at your place. jerry: sure. george: oh! my god. oh! man... jerry: i don't get it. why would a woman do that and then leave no way to get in touch with her. elaine: (coming out of the shower in a bathrobe) may be she realized she could never have you and she jumped off the george washington bridge. george: (phone rings ,picks up) operator? beijing? jerry: why are you doing this? george: why do i do anything? tsss...for women. jerry: elaine have you ever gone out with a bald man? elaine: no. jerry: you know what that makes you?...a baldist. george: oh. this i need. hello!! hello. i..i..is this the hair restoration clinic? ...does anyone speak english? elaine: ( to kramer who just got in with his camcorder) ooooh! you're taping. kramer: just be yourselves. ( elaine plays with her hair flirtingly) elaine: aah! okaaay. kramer: well we're talking with elaine benes; adult film star on the set of her new picture "elaine does the upper west side" elaine: ( to the camera) hi. how 're you doin'? kramer: i'm doin' fine. george: do you speak english?...english!! kramer: whooooa! here's the director jerry seinfeld . jerry , you discovered elaine benes? jerry: well yes i did that's true. a couple of a guys i knew in the coastguard told me about her.... and i sensed that she had the anger and intensity that i needed to make this film work. george: english. does anybody speak english .nobody speaks english. kramer: so what scene are you ready to shoot now , elaine? george: in this scene my co-star who's right over here ( goes over to george who is still on the phone) follow meeeee... is george costanza, he plays an airline pilot who's just returned from rome and i'm about to show him how much i've missed him. kramer: that's my chinese food...so george is this your first movie with elaine? george: (visibly disturbed) i...i..i dunno. kramer: so elaine in your movies is the sex real or is it simulated? elaine: oh. it's always simulated....except with george that's in my contract. george: all right, kramer that's it.....( pushes the camera) hello . english. does anyone speak english kramer: (to the chinese delivery boy) how much do i owe you? ping: $15.90. kramer: $15.90.? george: huh. excuse me (to ping) hum... do you speak chinese? ping: chinese....yeah. george: look...humm..i'm on with beijing with the hair restauration clinic. could you talk to them for me and tell them i'd like to place an order. ping: (sounds like) gwen , ayon. wonche son thai gettin my chon fai yu.(looks at george and laughs) george: they got a billion people over there and he found a relative. ping: ah fuka suma. if you send money they send cream. george: they send me? aw right ..ask 'em does it really work? ping: gym a gun sen tokomo. chin che .they say you grow hair, look a like stalin george: ask' em are there any side effects? ping: dowe o futo yum.... impotence. ....( makes a just kidding gesture) george: aw! funny he's a funny guy. ping: get a money order from the bank of china , be here three days after they get check. ping: (continues his phone call) ha pachini fair pousher pousher mouist i fai chin fousher... jerry: (as ping rambles on ) ...s'cuse me (ping looks up) kind of an expensive call. elaine: thanks for driving me home. what did i do to deserve this? george: yoohoo ,plenty......wh..wh..what are doing hum...you're going in? elaine: well ya. i guess so why? you wanna do something? george: yeah....euh...i dunno what? elaine: pffft....there's really nothing to do. george: ( becoming more and more awkward) yeah..... elaine: do you think of anything?.. george: no, no....(mumbles) elaine: i am up for anything. george: really...(he honks the car and is startled, elaine laughs)......i have to say...you were really good doing that porno thing....you're talented. elaine: i was just kiddin, around....... george: i thought the thing you said about the sex not being simulated . that was really funny. elaine: ( feeling awkward as well) yeah! that was a...f...fun ..mmm?. george: so all right i'll speak to you through jerry and everything. elaine: okay...thanks a lot for the ride. jerry: ..she was sitting at the table where i had my tape recorder...okay great. thanks again.. bye. ha ha..who do these women think they're dealing with? did she think she was gonna leave this incredibly erotic message on my tape and i was just gonna let it go. not bloody likely... kramer: what is that? jerry: that's my cockney accent. kramer: naw ,na , that's no good. jerry: lets hear yours. kramer: not bloody likely.. jerry: that's the worst cockney accent i've ever heard in my life.( george enters) hey! georgie boy , guess what i got. george: guess, what i got. jerry: oh! is that the bald stuff? george: from china. all the way from china. kramer: wait,wait wait...let me get the camera. george: no don't get the camera , we don't need the camera. listen i know your skeptical , but i really believe in the chinese. jerry: yes i am skeptical. george: why do you have to be so suspicious of every one. this is a great man zeng zau, he wants to help bald people. kramer: w..w..wa...wa..wait..wait wait.. now lets videotape your head for the before picture, so we can watch how it grows and stuff. sit down (george sits).....lean back...a little bit to the right. jerry: make sure you get this area here, where he needs the help.... george: all right, all right ( goes to the bathroom) kramer: he's a happy camper huh? jerry: happy camper , i don't hear that expression enough. kramer: remember that guy who took my jacket. the one i found at my mother's house. jerry: yeah. kramer: my mother told me that he got arrested for mail fraud jerry: no kidding? kramer: he's in jail. jerry: what happened to the jacket. did he take it with him? kramer: that's what i intend to find out. (george comes out of the bathroom and he's got white cream on his head) jerry: you can see it. you gonna walk around like that? kramer: it stinks. can you smell that?....you stink. jerry: how long are you suppose to leave it on for? george: all day. ( phone rings , jerry picks up) jerry: hello. elaine: it's elaine marie benes. jerry: well hello.. elaine: hello.. so did you ever find out who that woman was? jerry: yes , i got her number. george: is that elaine? jerry: yeah. george: hi elaine... elaine: i guess you figure you're in for a pretty wild night? jerry: well , as i said this type of thing is very common in show business elaine: well listen i'm going to (?) do you want me to stop by? george: did she say hello? jerry: what? i dunno. george: i mean , when i said hello did she say hello back? jerry: i don't know , who keeps track of hellos. george: isn't polite to say hello when somebody says hello? jerry: she's coming up. george: elaine's coming up? jerry: yeah. what's wrong, why? ( george runs back to the bathroom) kramer: how often do you cut your toe nails? jerry: i would say every two and a half to eight weeks. kramer: 'cos the other night , you know, i was sleeping with marion i rolled over and i cut her ankle with my big toe. jerry: the big toe; the captain. kramer: what? jerry: the captain of the toes. (phone rings) hello. elaine: jerry...jerry listen i got too much stuff this afternoon, i can't come over, forget it. jerry: okay....too bad. elaine: so humm....when you gonna call her? jerry: soon as i get off the phone wih you. elaine: good luck. jerry: okay , bye (to george) what happened , did you take it off? george: yeah, that was enough. jerry: that's it, you gave up? george: no no i'm working on a system...who was that? jerry: that was elaine , she changed her mind. she's not coming over. alicia: hello. jerry: hello is this alicia? .this is jerry seinfeld. alicia: yeah. jerry: this is jerry seinfeld. jerry: (to kramer) ...( words missing)...laugh , everything's nice and at the end of the night i go for a little contact. i get the pull back. this woman said the filthiest things i've ever heard in my life. i get the pull back. jerry: yeah.. george: it's george. jerry: come on up . (looks at his watch) ...what's he doing here now? kramer: so , you blew it? jerry: she must be psychotic or something. kramer: let me have her number. jerry: i'm not giving you her number. kramer: i know how to handle these psychotics. jerry: sheriff?........what's with the hat? kramer: (george takes off the hat , he's got that cream on again) pheeewwww! boy! you stink. jerry: what are doing here now? george: i have to talk to you about something . kramer: all right lets take a look to see what we got ( examines george's head) wait a second.. i think i see something here george. lets go to the videotape. george: aahh..no..no.. jerry: what's up? george: i can't tell ya now , he's gonna be back in a ten seconds. jerry: so just start it. george: i can't. jerry: oh! come om . he'll be over there for a half hour, he gets lost over there. c'mon so what is this about? george: all right.........i've become attracted to elaine.. kramer: all right....sit down george. george: kramer, can we do this later.. kramer: no, i got the tape right here. jerry: kramer, let's do this later. kramer: (ignoring them) now.. this is the tape that we made earlier and i think, that i see. a couple of buds right here. george: really? ..you think. jerry: kramer. i would like to talk to george for a minute, please. kramer: 'bout what? jerry: it's kinda private. kramer: like the big toe captain.. george: so now you're doing my bits? jerry: i'm not doing your bits!! kramer: okay , all right. i'm gonna take a look at this huh!.( leaves) jerry: does she know? george: no!! jerry: how did it happen? george: i can't say. jerry: well, why can't you say it? george: because i promised her. jerry: i thought you just said she doesn't know?? george: she doesn't. jerry: so how can you promise her? george: because she asked me to. jerry: what is this, an abbott and costello routine? george: all right you really want to know?...it all started when she told met hat...she was the voice on your tape recorder. jerry: what, elaine? george: yeah! she made me promise not to tell you .it's supposed to be a joke. jerry: (picks up the headphones) that was elaine... george: well let me hear....( they struggle for the headphones) jerry: wait a second. .just give me a second george: you heard it fifty times already. jerry: she's my ex-girlfriend i think i have precedence jerry: yeaaaah!!! elaine: hi, it's elaine is this a bad time? george: (yelling from the bathroom) don't tell her anything, she'll kill me!! jerry: okay, okay, i promise. (puts on the headphones again) wow!!! oh man...oh god.. oh brother....whoooaaaa!! whoaaaa (elaine enters he takes them off rapidly) elaine: (concerned) what's the matter? jerry: oooh! i got a pain in my side. elaine: (to george returning) hi george. something stinks in here.( george motions to jerry, she nods) jerry: what are you doing here? elaine: i was the one who talked into your tape recorder. jerry: i know, george told me. elaine: you told him!!!! george: he..he threatened me. jerry: where did you come up with all that stuff? elaine: that was nothing. george: elaine.. i have to tell you something... jerry: george no!! george: no no no no no no no.. jerry: george i'm telling ya.. elaine: what is it? george: i'm very attracted to you.. jerry: aye...... kramer: i've found a hair!!! yes ( goes up to the video machine and inserts the tape) hey, come here, come here ,take a look at this. george: ever since i found out that you let that message on jerry's tape recorder i... kramer: whoa!!!....that was you? elaine: it was a joke... kramer: wait..( picks up the walkman) oh my god...oh yeah....elaine , i can't believe that that is you. elaine: aah.... ( she stares at the three of them all lined up like the daltons, all looking at her with lust.) i think i'll get going... george: heuh. huh. stick around a while. jerry: it's early. kramer: we'll order chinese. george: where'd you meet her? jerry: i met her on an elevator. george: on an elevator? you met a woman on an elevator? jerry: impossible, right? george: you got less than sixty seconds. that's like dismantling a time bomb. what got into you? jerry: i don't know. she was so beautiful, it was like a pure reflex. the words just came out of my mouth. george: wow. what'd you say? jerry: you know, i'm the one responsible for those crop circles in england. george: wow. jerry: can you believe i did that? george: what did she say? isabel: what crop circles? jerry: not a good sign. george: not everybody knows what the crop circles are. (to the newsstand owner) do you know what the crop circles are? newsstand owner: crop circles? why don't you buy something? jerry: you got something in your teeth there. george: what? jerry: it's green. george: oh, man, it's spinach! i've been walking around like this all afternoon. jerry: did you bump into anybody you knew? george: i had a job interview. jerry: how'd it go? george: take a guess. interviewer: well, mr. costanza, we have nothing available at the present time, but should anything open up, we'll be in touch. george: ok, thanks. jerry: what do you need a job, you got audrey. george: yeah, right. jerry: what's the matter? george: oh, nothing. jerry: what? george: you won't think i'm a bad person? jerry: too late for that. george: 'cause believe me, i would only say this to you and maybe a psychiatrist, maybe. well, her nose is a little big. jerry: yeah, she's got a big nose. george: i mean, big would even be ok, a little beyond big. jerry: it's a schnoz. george: now, i'm aware that my own physical dimensions are perhaps a little short of perfection. jerry: a little. george: so who am i to be thinking about someone's nose? i mean, i should be grateful someone like her even looks at me. i have no job, nothing. but i have to say, i think about the nose. i don't want to think about the nose. i don't ask to think about the nose, but i think about it. i go to bed at night, i tell myself, 'don't think about the nose, forget the nose,' but i think about it. i look at her, i see nose. jerry: stop being so concerned with looks. jerry: have you said anything to her about it? george: i could never do that. you know the ironic thing is if she had a smaller nose, i never could have gone out with her in the first place. she'd be out of my league with a smaller nose. and i really like her, i know that. and i know one other thing. i'm not getting past that nose. jerry: alright, shut up, here they come. george: (waving) how can i not think about it? look at the size of this thing. kramer: so my mother's going out with this guy who leaves a jacket in her house so, you know, she gives it to me. well, two years later he shows up and he takes it back. and now he's in prison. he got arrested for mail fraud. so elaine, all you have to do is go over to the apartment, tell the landlord that you're his daughter and you want to bring him the jacket in prison. elaine: won't the landlord know i'm not the daughter? kramer: no no, he's never met her. she's in california. elaine: are you coming with me? kramer: oh, yeah yeah, i have to. i'm your fianc, peter von nostrand. george: why don't you just commit yourself already? audrey: what is so special about this jacket? elaine: he believes it possesses some extraordinary power over women. audrey: what's the smudge on your hand? kramer: oh, i got stamped at the reggae lounge last night. yeah, i'm going back there tonight, you know, i'm not gonna pay another cover charge. george: what, you didn't wash all day? kramer: yeah, i washed, just not the hand. you wouldn't believe the women at this club. ohh, man. audrey: it's amazing how many beautiful women live in new york. i actually find it kind of intimidating. kramer: well, you're as pretty as any of them, you just need a nose job. elaine: kramer! kramer: what? what? elaine: how could you say something like that?! kramer: what? what do you mean? i just said she needs a nose job. elaine: no no, there's nothing wrong with her nose! i'm so sorry, audrey. audrey: no, it's ok. elaine: what did you have to say that for? kramer: well, i was just trying to help out. elaine: yeah? well, you can kiss that jacket goodbye, mr. von nozzin. kramer: you see what happens when you try to be nice? audrey: elaine said i could stay with her another month until tina gets back. what are you thinking about? george: thinking? nothing. what could i possibly be thinking? audrey: you look like you've got something on your mind. george: oh, yeah, right. i wish i had something on my mind. (pregnant pause) so how about that kramer, huh? audrey: how about him? george: they way he just says stuff. audrey: he sure does. george: yeah. yeah, he's quite a character. audrey: so, what did you think? george: about the pizza? audrey: no, about the nose job. george: oh, the nose job. i don't know, what did you think? audrey: well, i've thought about it, but i don't know. george: yeah. (another pause) not that i care, one way or the other, but these doctors today really do amazing things, you know, if you were so inclined. and again, i'm not suggesting. audrey: i know, they're good. george: peter jennings had one. audrey: really? george: probably. they all do. in my high school, half my graduating class had them. of course, i'm from long island, so... audrey: uh huh. george: it's really nothing, it's like going to the dentist. audrey: i hate the dentist. george: it's a cleaning. audrey: so you really think i should do this? george: if it makes you happy, i don't focus on these things. i will tell you this unfortunately, we live in a very superficial society. i don't condone it, but it's a fact of life. audrey: well, maybe i should. george: what the hell. elaine: (barging in) aw, now you talked her into getting a nose job? george: me? i didn't say anything. elaine: you encouraged her to get one. george: i didn't encourage. no encourage. elaine: peter jennings had one? george: it's possible. elaine: well, i think you should accept her for who she is. audrey: no, george is right. i want to get one. elaine: i think it's a mistake. george: me too, really. unless you'd really like to get one. george: i'm going straight to hell, no two ways about it. jerry: well, it might not be hell but you're gonna run into some bad dudes. george: (checking his watch) hey, let's get the check, she's taking the bandages off at four o'clock. jerry: we have time. george: it's exciting, isn't it? she's gonna have a whole new face. jerry: it is exciting. george: of course, not as exciting as miss crop circles, but... jerry: please, please, isabel? she is the most despicable woman i have ever met in my life. i have never been so repulsed by someone mentally and so attracted to them physically at the same time. it's like my brain is facing my penis in a chess game. and i'm letting him win. george: you're not letting him win. he wins till you're forty. jerry: then what? george: he still wins but it's not a blowout. jerry: she wants to be an actress. she makes me read these moronic acting scenes with her, and i do it because i'm so addicted to the sex, i'm helpless, i'll do anything. so finally kramer comes in the other day. jerry: (holding up a piece of paper) i don't want to see this woman anymore but i haven't got the will power to throw out her number. please, help me. help me. kramer: (taking the paper and tearing it to pieces) i'm proud of you. jerry: so i'm never gonna see her again, i'm going cold turkey. george: good for you. jerry: i'll tell you, the sex... i mean, i was like an animal. i mean it was just completely uninhibited. george: it's like going to the bathroom in front of a lot of people and not caring. jerry: it's not like that at all. elaine: how do you even know the jacket is there? kramer: well i don't, i'm guessing. george: okay, look, audrey, before you take the bandage off just remember that i was the one that encouraged you to do this, you know? now that you're gonna be a great beauty, let's not forget how this all began. you know, like if you'd listened to your friend, elaine, audrey: george? george: yeah? audrey: enough. jerry: alright, are we ready? come on, let's get this show on the road. elaine: are you sure you want us here for this? audrey: yes. jerry: shouldn't a doctor do it? audrey: no, he said i could do it. okay, here goes. george: very exciting, very exciting, it's like watching a birth. elaine: it looks good. jerry: great job. kramer: you got butchered. jerry: let's put him over here. kramer: (to a fleeing audrey) where are you going? audrey: (with hand covering nose) to the doctor! kramer: wait, wait, wait, i'll go with you. elaine: how ya feeling? george: too much salt in my diet. elaine: can i get you anything? george: nah, i'm good. elaine: you sure? anything? george: mmm, no. boy, it really didn't come out too well, did it? elaine: no, it didn't. no, it didn't. george: it's like, all dented. elaine: seems to be. george: well, i'm sure they'll be able to fix it. you can't stop modern science. can't stop it, you can't stop it. can't stop science. can't be stopped, no way, no how, science just marches-- elaine: shut up, george. george: shut up? elaine: yeah. george: interesting. jerry: come on, kramer, seriously, give me her number! kramer: i don't have it, i threw it out. jerry: you're lying! you got it, i want that number! kramer: i told you, i threw it out. jerry: give it to me! kramer: you told me not to give it to you, you made me promise. jerry: well, i changed my mind, i want that number. kramer: you said, no matter what you do or say, i'm not to give you the number. jerry: i was lying, give it to me! kramer: no, you told me not to! jerry: i want that number! kramer: alright! (flinging pieces of torn paper to the ground) yeah! yeah! yeah! (jerry falls to the floor and starts arranging pieces) look at you! look at what you've sunk to! look at what you've become! look in the mirror, cause you need help, jerry. you need help, because i can't stand by and do it anymore. it's turning my stomach! i can't stand around here watching you destroy yourself. it's eating me up inside! audrey: the doctor said that they need to build the lateral wall of the septum. over here... george: yeah. audrey: you see this perinasal sinus cavity? george: oh, i got it. audrey: you see how it's collapsing? that's what's causing this huge dent. george: yeah, phew. audrey: so anyway, george, do you know what i was thinking about? george: what? audrey: remember we talked about taking a trip together? george: we did? audrey: yeah, we talked about going to hawaii? george: hawaii? audrey: anyway, i think it would be great to get away after all this. george: (removing his glasses) you know, hawaii could be a little tricky right now, there's a lot of high pressure winds down there this time of year, there's a lot of debris constantly flying around. wood, and uh, lava, pretty dangerous. audrey: i never heard that. george: oh yeah. my friend lived there. audrey: we could go to the caribbean. george: you know, i have to tell you something. you couldn't get me on a plane right now. i get those faa reports directly. my uncle sends them to me, he used to be a pilot, so. big investigation in the, uh, what's the word there, uh, offing. it's in the offing. but, you know, you shouldn't let that stop you from going. you could go. i don't mind. audrey: george, i don't think this is working. isabel: ever since you came back from the army, you've changed. i swear nelson, i don't even know who you are anymore. jerry: i'm nelson! isabel: that's not the line, jerry. jerry: alright, alright, i'm sorry. (reading) nothing's changed, alma, i just need more time. isabel: i swear, nelson, sometimes at night, when you're not around, i just go crazy thinking about you. jerry: well, you just need to relax. maybe a hobby, bowling is fun. isabel: yeah, bowling's good if you're really gross and ugly. jerry: (to himself uh oh. my organs are playing chess again. jerry's brain: well i'm getting a little tired of this. what do you say we play one for all the marbles? jerry's penis: oh brain, what are you doing? you cannot beat me. do you have any idea who you're dealing with? forget about it! jerry's brain: i can't take her anymore. i hate reading her stupid little acting scenes. jerry's penis: oh, so what? so you read from a little play. you can't put up with that for an hour to make me happy? you're so selfish. give me one hour, then i will take over, you will not have to think for the rest of the night. jerry's brain: what about tomorrow morning? do you have any idea what that's like for me? do you care? no, you don't care. so long as you get to do whatever it is you do. you disgust me. jerry's penis: oh, go read a book. jerry's brain: enough chatting, let's play. elaine: you know the only reason i'm doing this is because you took audrey to the hospital. kramer: (filling a pipe) yeah, yeah, ok, now uh, you're clear, you got everything? elaine: yeah. kramer: wait wait wait wait wait. (putting a ring on elaine's finger) here. elaine: what do i need this for? kramer: because we're engaged. elaine: we're engaged? kramer: um hm. elaine: kramer, this is too big. kramer: (lighting his pipe) it's my mom's. landlord: hello? elaine: oh, uh, hi. i'm wanda pepper, i'm albert pepper's daughter. my father asked me to come here and pick up his jacket for him. landlord: oh, hello miss pepper, it's a pleasure to meet you. (to kramer) and you must be professor von nostrand? kramer: yes, yes i am. landlord: i've read your book, professor, and i was quite intrigued by it. kramer: uh, yes. well, it's, uh, very intriguing. landlord: tell me, is it your contention that shakespeare was an imposter? kramer: my contention? landlord: yes, your contention. kramer: yes, that's my contention. elaine: i heard him contend that. landlord: it's too bad about your father. elaine: oh, it was a frame-up. landlord: a fine man, he spoke often of you. he's very proud of the work you're doing. elaine: oh, well, we're all proud of the work i'm doing. kramer: she does fine work. landlord: your father gave me strict orders not to turn the jacket over to anyone, but i suppose i can make an exception in your case. the closet's this way. elaine: how kind of you. landlord: you know, your father has a very extensive wardrobe. jerry's brain: what's the matter, fella? you look a little tired. ha ha ha ha ha! isabel: nelson, don't you see? you are a part of me, and i, i am a part of you. jerry's penis: it's killing me. (makes a move) jerry's brain: that's your move? jerry's penis: yeah. jerry's brain: well that's trouble, my friend. that's big trouble. checkmate! jerry's penis: (beginning to cough and struggle) getting weak... losing power... you haven't seen the last of me. i'll be back. you're nothing without me. nothing! jerry's brain: (before disappearing himself) punk. jerry: isabel, uh, i don't think this is working. elaine: daddy certainly does have an extensive wardrobe. landlord: he is a fine dresser and i'm sure i don't have to tell you he's quite popular with the ladies. elaine: my father, really? i had no idea. landlord: yes, they're crazy about him. there was one in particular, came around about two years ago, looked a lot like you, professor. could have been your mother. what was her name again? carter? kramer! that's it, babs kramer: you don't say? elaine: i found it! landlord: the woman used to walk around here half naked, sucking colt 45 from a can. her big fat stomach hanging out, orthopedic hose up to her knees, screaming down the hall, "come back to bed, albert, you big hairy ape, and bring back that box of danish!" kramer: so i grabbed the guy by the collar. elaine: yeah, and i yelled out, kramer! kramer, you're killing him!" jerry: so i assume the jig was up. elaine: yeah, pretty much. audrey: hi. elaine: hi! jerry: hey. audrey: (to george) hello. george: (smitten) audrey? my god, you look incredible! i can't believe it! audrey: (motioning to kramer) well, it was his doctor. he was wonderful. elaine: so, will i see you later tonight? audrey: not sure. kramer: (rising and putting his arm around audrey's shoulder) well, i'll check you guys out later. (to audrey) ready? audrey: (holding up her hand to show the stamp) i didn't wash. kramer: neither did i. we're off to the reggae lounge. elaine: (after they leave) isn't she beautiful? her nose is in such perfect proportion with the rest of her face. she's breathtaking! who would have though she's like-- george: (interrupting) elaine. shut up. jerry: how did you get fleas? george: because my cousin's imbecile dog was rolling around outside and they got in his carpet. jerry: maybe you can get yourself a little bowtie flea collar. george: that's not funny. so, are you coming to the party? jerry: i'd go, but long island, it's so far out, it smacks of desperation. the whole party, everyone's gonna be saying to me, "you came all the way out from manhattan for this?" george: you know ava's gonna be there. jerry: who? george: the nice one that works in my office. jerry: nah. george: i'll drive. jerry: oh, well, now you're talking. george: it's supposed to be a good party. jerry: what does that mean, good dip? george: no, there'll be girls there. jerry: there's girls everywhere. i go out of my apartment, there's girls in the elevator. they're in cafeterias, subways, so what? george: there's a hundred different things here. what's the difference between these two? (they each grab a box and check the ingredients) you got propylparabin? jerry: got it. george: you got isobutane-30? jerry: i got isobutane-20. george: a-ha. jerry: you got sorbitant sesquioliate? george: got it. jerry: i have aloe! george: you got aloe? i love aloe. jerry: where do they make yours? george: jersey. jerry: white plains. jerry: girls. there's girls right here in the store. look, look, there's one over there. look, there's another one. soon as i walk outside there'll be girls out there. what's the matter? george: i gave her a twenty, she only gave me change for a ten. jerry: are you sure? oh boy, here we go. george: (to the cashier) excuse me, i gave you a twenty dollar bill and you only actually gave me change for a ten. cashier: you gave me a ten. george: i'm positive i gave you a twenty. cashier: i know what you gave me. george: you owe me ten dollars. cashier: will you please step aside? next? george: alright, let's just examine the situation for a second. who, in this situation, would be more likely to make a mistake? me, who had access to my wallet, knew exactly what was in there? or you-- cashier: you. george: no, no, no, see you're not really listening. security guard: what's the problem here? george: no problem. there's no problem. she just owes me ten dollars, that's all. cashier: he's claiming short. security guard: alright, let's just take it outside. george: oh, so you don't believe me either? security guard: come on, let's go. george: you haven't won. you may think you've won, but you haven't won. do you know why? it's not over. this is not over. i'm not forgetting what's happening here. you have my ten dollars. i will get it back. alright, don't worry. it's not over. i'm going now. good bye. i will be back. elaine: well don't stand here, let's walk in, blend in, blend in. jerry: no, let's survey first. camp here. george: (waving eva. jerry: what could possess anyone to throw a party? i mean, to have a bunch of strangers treat your house like a hotel room. ava: so, guess who just sold 129 west 81st. george: oh no you didn't. get out, when? ava: yesterday george: i don't believe it. ava: ask mark. george: mark, is this true? jerry: yeah, this has got disaster written all over it. elaine: how did i ever let you talk me into this, i must have been out of my mind. jerry: now listen, let's keep an eye on each other tonight. in case one of us gets in a bad conversation, we should have a signal that you're in trouble so the other one can get us out of it. elaine: how old are you? jerry: thirty-six. what's the signal? howbout this? chicken wing? no, no, no, i got a better one. head patting. elaine: whatever you want. guy: you came all the way out from manhattan for this? jerry: yeah, yeah i did. guy: so what do you do? jerry: (patting his head i'm a comedian. guy: are you? lemme ask you something. where do you get your material? jerry: (still patting) i hear a voice. guy: what kind of voice? jerry: a man's voice, but he speaks in german so i have to get a translator. guy: how come you keep tapping your head. jerry: it's a nervous tic. i'm on l-dopa. guy: on the other hand, you take a guy like george washington carver. the man devoted his whole life to the peanut. imagine having so much passion for something. guy: ya know, people tell me i'm a funny guy. guy: i've often wondered if he ever worked with the pecan. elaine: yeah, me too. guy: now is that considered a nut, because i know the cashew is a legume. george: how's it going? jerry: great, how about you? george: i can't believe what's happening here. she hasn't taken her hands off me all night. she was always friendly around the office, but that was it. jerry: how do you account for this? george: i don't know, maybe a safe fell on her head. jerry: well, she obviously liked you all along. george: no, i would have picked up on it. i can always tell when a woman likes me, they always somehow let you know. with me, they could torture me, i wouldn't tell them. if anything i'd try to make them think i don't like them, then they think, "oh, look at this guy, he's not even looking at me, he must have something going for him." jerry: anyway, i'm ready to go. george: now? jerry: if not now, when? george: gimme a half-hour. jerry: okay, half-hour. guy: peanut brittle, peanut butter, peanut oil... jerry: (interrupting) can i talk to you for a second? elaine: oh, excuse me. (gets up to talk with jerry) what have you been doing, i've been smacking myself senseless. people think i'm a mental patient. jerry: hey, i was dying over there. elaine: this guy's going off on the peanut. now pay attention. ellen: yeah, i think i've seen you in a club. you talk about a lot of everyday things, right? jerry: right. ellen: yeah, i remember you. woman: i wonder what happened to my fianc. i know he's here somewhere. ellen? have you seen my fianc? ellen: he's upstairs. woman: are you going upstairs? tell my fianc i'm looking for him. i havelost my fianc, the poor baby. elaine: maybe the dingo ate your baby. woman: what? elaine: the dingo ate your baby! jerry: you ready? george: listen, i have a tremendous favor to ask. jerry: i do favors. george: i think something's happening here. jerry: what? george: i think she wants me to take her home. jerry: wow. george: what should i do? jerry: go! what could you do? george: what about you and elaine? jerry: we'll get a ride. george: are you sure? jerry: we'll be fine, what did she say? george: she told me she wants-- (pauses until a woman coming down the stairs passes) she told me she wants me to make love to her. jerry: what? she said that? george: yeah. jerry: get out of here. george: i swear. jerry: what did you say? george: i, i, i can't. jerry: what did you say? george: please, it's-- jerry: what? george: i... i... i long for you. jerry: i long for you? george: i was so shocked i was lucky i said anything. jerry: it's okay, that's not bad. george: i don't like when a woman says, 'make love to me', it's intimidating. the last time a woman said that to me, i wound up apologizing to her. jerry: really? george: that's a lot of pressure. make love to me. what am i, in the circus? what if i can't deliver? jerry: oh, come on. george: i can't perform under pressure. that's why i never play anything for money, i choke. i could choke tonight. and she works in my office, can you imagine? she goes around telling everyone what happened? maybe i should cancel, i have a very bad feeling about this. jerry: george, you're thinking too much. george: i know, i know, i can't stop it! elaine: well, right now i'm reading manuscripts for pendant publishing. jerry: (walking up) pendant? those bastards. elaine: excuse me. jerry: listen, george is going home with this ava from his office elaine: really? huh. what a world. so we can go now? jerry: uh, no, he's taking the car. elaine: well, what are we gonna do for a ride? jerry: i don't know. elaine: you don't know? jerry: maybe kramer can come pick us up. elaine: oh great, oh, this is great. how could you let him take the car? jerry: there's nothing i could do, it's part of the code. elaine: (noticing ava in a fur) oh look at that. look at what she's wearing. you see what she's wearing? jerry: yeah, yeah, alright. elaine: i can't believe she's walking around in that. jerry: just don't make a scene. elaine: hey, is that real fur? jerry: oh boy. ava: it better be or my ex-husband owes me an explanation. george: yeah, good night. elaine: you don't care that innocent defenseless animals are being tortured so that you can look good? george: could we talk about this some other time? ava: are you a vegetarian? jerry: here we go. elaine: yeah, i eat fish occasionally. ava: so you're a hypocrite. george: hey, i've eaten frogs, so nobody's perfect. anyway- ava: well, talk to me when you stop eating fish. elaine: fish don't feel any pain. ava: how do you know? do you communicate with fish? elaine: well, they're not kept in little cages. ava: ever seen a goldfish? george: goldfish. elaine: yeah, yeah i've seen goldfish. they're not unhappy. ava: oh yeah, right. swim around in a bowl for two weeks and get flushed down the toilet, that's a good life. (to george) let's go. elaine: oh yeah, that's right. go ahead, go ahead, maybe you can run over a squirrel! george: that's why we're here in america. jerry: you're beautiful. elaine: call kramer. jerry: alright. (approaches host) excuse me, this is your party, right? steve: no, i just live here. jerry: can i use your phone? steve: what's in it for me? jerry: a bigger bill? steve: he he, go for it. jerry: krame? sein. what are you doing? well, i'm stuck out here on long island. what are your thoughts about taking a ride? you sure? okay, but don't leave me hanging here. okay, great. let me give you directions. elaine: you sure you don't need any help? jenny: no, not really. jerry: i'm sure he'll be here any minute. jenny: (to steve) i want them out of here. elaine: call him again. jerry: i called, what should i do? (to jenny) we really appreciate this. jenny: (to steve) it's two o'clock in the morning. jerry: (noticing a coffee table book) oh, you got the civil war book. i saw some of that show, it was wonderful. elaine: six hundred and twenty million people died. jerry: thousand. elaine: thousand. six hundred and twenty thousand. the horror, the horror. (to jerry) the wife keeps giving us dirty looks. are you sure you gave him the right directions? jerry: yes. (to jenny) you're sure there's nothing we can do? jenny: no! (to steve) i am not going to bed with them in our house, this is ridiculous. jerry: you know a friend of my father's used to live right around here. mike wichter. he sold plastic straws. you know the ones? you could bend them. elaine: have you noticed, people don't use straws as much as they used to for some reason. jenny: you know, it doesn't look as if your friend is coming. jerry: oh, he's coming. jenny: maybe you should take a look at a train schedule. jerry: that's him. jenny: i'm going to bed! elaine: thanks a lot. jerry: thanks, great party. kramer: hey, how ya doing? steve: ah, look who's here. kramer: i'm sorry. jerry: hey, it's okay. kramer: i had the directions on the seat right next to me, they flew out the window. elaine: then how did you find the place? kramer: well i knew the exit on the long island expressway, and i thought that the address was 8713 riviera drive. uh uh, so i drove around knocking on everybody's doors that had those numbers; 8317, 7813, 3718, 1837, whoo. finally, i hit it. 8173. jerry: anyway, thanks a lot for letting us stay here, steve, i really owe you one. steve: no problem. jerry: and if you're ever in the city, you know, you want to come to a comedy club, whatever. steve: hey, i might take you up on that. jerry: (writing) here's my address and number. and really, thanks again. kramer: (to elaine) you better zip up. i couldn't get the top on the convertible up. elaine: but it's cold out. kramer: yeah, wait till we get on the expressway. jerry: george, i've been sick all week. elaine was too. eighty miles an hour, forty degree temperature for fifty minutes. do the math. yeah, maybe i will get out. hey, let me just stop off at the drug store first. okay, meet me down there in fifteen minutes then we'll go do something. yeah, selwyn's. okay bye. jerry: who is it? voice: mr. pocatello. jerry: who? voice: you mean you don't recognize my voice? steve: jerry, baby! jerry: do i know you? steve: boy this comedy's really frying your brain. jerry: i'm sorry, uh- steve: see, this is the kind of lasting impression i make on people. jerry: oh, okay. steve: you said if i was ever in the city, i'm in the city. jerry: you certainly are. what's going on? steve: i'm just waiting for a lift back to the island, he won't be ready until eleven, so i figured i'd give you a break. i thought i'd see what it was like to hang out with someone in show business. jerry: listen, i'm really sorry but i'm just on my way out to meet a friend. steve: oh, come on, you can come up with something better than that. jerry: no, really, i just got off the phone with him. steve: i understand. jerry: look, you can hang out here if you want. steve: don't be so enthusiastic. jerry: no, it's- steve: i'm not gonna steal anything. jerry: no, of course not, just close the door when you leave. steve: i think i can do that. jerry: really, i'm sorry. maybe another time. steve: yeah. let's have lunch. jerry: they guy's in my house right now. what a mistake that party was, i never should have gone. george: yeah, me either. jerry: oh, come on. george: what come on? have you ever dated a woman that worked in your office? jerry: i've never had a job. george: you know the anxiety you feel on a date? that's what i have every day now. my worst nightmare's come true, every day is a date. jerry: that's one of dante's nine stages of hell, isn't it? george: ava was one of the reasons i used to like going to work, she was a friend. now we sleep together and suddenly, i don't know how to talk to her. every time i go to the bathroom i pass her desk. i have to plan little patter. i spend half my day writing. then afterwards, i sit in my office and analyze how it went. if it was a good conversation, i don't go to the bathroom for the rest of the day. i see her laughing and talking with other people, they're all so loose and relaxed, i think, 'that used to be me. i want to go back there again.' jerry: what are you gonna do? george: i have no choice, i'm quitting. kramer: the party, long island? steve: kramer, right? kramer: hey, what are you doing here? steve: i'm waiting for my ride. kramer: where's jerry? steve: he split. let me ask you something. is there anything to drink in here or is that, like, a stupid question? kramer: well, jerry, he doesn't have anything. (sensing steve's disappointment) well, but i might have something. jerry: alright, i'm gonna get this. this looks good. george: how much is that? jerry: nine sixty. george: nine sixty? give it to me. jerry: why? george: don't worry, i got it. jerry: what do you mean, you got it? george: i got it. jerry: since when are you treating me to medicine? what are you doing? you're stealing this, aren't you? george: i'm not stealing it. they owe me ten dollars. they stole from me. jerry: you're a lunatic. george: i have to do this, it's a matter of honor. jerry: what do you say to a person like you? george: just walk. jerry: oh. security guard: scuse me. what do you got there? george: what? security guard: what do you got in your shirt? george: oh, i was gonna pay for this. security guard: (grabbing george by the elbow and walking him to the counter) come with me. george: (nervous) where are you taking me? i was gonna pay for it. cashier: um-hmm. security guard: you don't think i remember you? george: (more nervous) what are you talking about? security guard: i know who you are, i was watching you. george: (panicky) what are you gonna do? are you gonna call the police? jerry: can i still buy this or is this evidence now? kramer: so, i'm chasing these doves down the street and she's screaming at the top of her lungs, and then when the magician comes back from europe, two of them turned brown! well i followed the instructions! steve: (hysterical) ah, they turned brown!! brown!! (the laughter winds down) so let me ask you something, you know any women we could call? kramer: not really. steve: maybe we should call one of those escort services. i saw one of them advertised before on the cable station. kramer: (handing steve the phone) 555-love. steve: hey, you want in on this? kramer: no, i got a girl in the next building voice: now i want my money, mister, and i ain't leaving until i get it. now i am through playing games with you, i got things to do. steve: (drunk and slurring) oh jerry! jerry! look who's here, it's jerry jerry: what the hell? steve: jerry, this is patti. jerry: nice to meet you. patti: it's a pleasure to make your acquaintance, i'm sure. jerry: what the hell is going on here? steve: i don't know, but i gotta do this more often. (the buzzer goes off) ooh, there's my ride, finally. patti: i'm not gonna go anywhere until i get the rest of my money. steve: see ya, jerr. and tell kramer thanks and i'll call him tomorrow. jerry: oh, kramer huh? steve: yeah, he's a hoot. oh, goodbye, my dear. (trying to kiss patti's hand as she pulls it away) ouch. (to jerry) weekend of the 26th, come on out, we're having another party. patti: i ain't leaving. jerry: patti? patti: you got anything to drink? jerry: alright, how much does he owe you? patti: fifty dollars. jerry: (taking out his wallet and handing over bills grudgingly) fifty dollars. cop: this your apartment? jerry: yeah, but-- cop: you're under arrest for solicitation of prostitution. jerry: wait a second, i-- elaine: i brought you chicken soup. (to patti) is that real fur? jerry & cop: oh boy. george: you had sgt. chadway? me too. jerry: he was a nice guy. george: oh, great guy. jerry: was there a red-headed guy there? george: the one with the long sideburns? jerry: yeah. george: where does he come off? jerry: yeah, i know. there's no call for that kind of attitude. george: one of the guys in my cell threw a piece of gum at him. jerry: oh, we all hated him. jerry: do you believe this? the car was parked right out front. george: was the alarm on? jerry: i don't know, i guess it was on. i don't know my alarm sound; i'm not tuned in to it like it's my son. george: i don't understand, how do these thieves start the car? jerry: they cross the wires or something. george: cross the wires? i can't even make a pot of spaghetti. jerry: they stole my car. kramer: who did? jerry: they did. kramer: was it more than just one? jerry: what should i do, should i call the police? kramer: what are they gonna do? jerry: i'd better call the car phone company, cancel my service. george: maybe you should call your car phone. jerry: yeah, he's probably driving it right now. george: wait a minute, call the car phone, see what happens. jerry: are you serious? george: yeah, go ahead, call. jerry: i don't even know if i remember the number. jerry: what do i say if he picks up? car thief: hello? jerry: hello? is this 555-8383? car thief: i have no idea. jerry: can i ask you a question? car thief: sure. jerry: did you steal my car? car thief: yes i did. jerry: you did?! car thief: i did. jerry: that's my car! car thief: i didn't know it was yours. jerry: what are you gonna do with it? car thief: i dunno, drive around. jerry: then can i have it back? car thief: mmmm, nah, i'm gonna keep it. kramer: hello? car thief: yeah, who's this? kramer: kramer. car thief: hello, kramer. kramer: listen, there's a pair of gloves in the glove compartment. car thief: wait, hold on... brown ones? kramer: yeah. listen, could you mail those to me? or bring them by my building, it's 129 west 81st st. car thief: one-two-nine, okay. kramer: thanks a lot, uh here's jerry. jerry: (derisively at kramer) gloves. (into the phone) hello? car thief: jerry? jerry: yeah, let me ask you a question. how do you cross those wires? car thief: i didn't cross any wires, the keys were in it. jerry: sid left the keys in the car. alright, i gotta go. drive carefully. car thief: jerry, when's the last time you had a tune-up? because i can't find the-- jerry: sid left the keys in the car. george: who's sid? jerry: he's this guy in the neighborhood, parks cars on the block. george: what do you mean? jerry: he moves them from one side of the street to the other so you don't get a ticket. george: what, do you pay him for that? jerry: yeah, like fifty bucks a month. george: how many people does he do that for? jerry: the whole block, forty, fifty cars. kramer: he only works three hours a day. he makes a fortune. course he's been doing that for years, right jerry? george: could anybody do that? jerry: hey sid, what happened? sid: i'm sorry, jerry. maybe i'm getting too old for this stuff. jerry: you left the keys in the car? sid: well, you know they're making that woody allen movie in the block, and all those people and trucks everywhere, when i saw him i must have got a little distracted. kramer: you know i'm in that movie? george: you are? kramer: yeah, i'm an extra. george: how'd you get that? kramer: well, i was just watching them film yesterday and some guy just asked me. george: right out of the clear blue sky? kramer: clear blue sky! george: well, why didn't they ask me? kramer: i got a quality. sid: jerry, you got insurance, right? jerry: yeah, but no car. i'll have to rent one. sid: well i'm going down to visit my sister in virginia next wednesday, for a week, so i can't park it. jerry: this wednesday? sid: no, next wednesday, week after this wednesday. jerry: but the wednesday two days from now is the next wednesday. sid: if i meant this wednesday, i would have said this wednesday. it's the week after this wednesday. george: sid, who's gonna move the cars while you're away? sid: whoever wants to move them, why do i care who moves them? they can move themselves if they want. george: maybe i could move them until you get back. sid: what's a young man like you want to move cars for? you don't work? george: i'm in a transition phase right now. sid: well if you want to move the cars, move the cars. just don't forget to take the keys out, that's all. jerry: hello? yeah, the defroster's the one on the bottom, just slide it all the way over. you're welcome. elaine: i'm in awe of his intellect, when he talks it sounds like he's reading from one of his novels. jerry: owen march, i never heard of him. elaine: well, he's not a baseball player. jerry: yeah, that's true. well it sounds like it's going pretty good. elaine: yeah. well, there is one little problem. jerry: what's that? elaine: he's sixty-six years old. rental car agent: next please. elaine: well, go, go. rental car agent: can i help you? name please? jerry: seinfeld. i made a reservation for a mid-size, and she's a small. i'm kidding around, of course. rental car agent: okay, let's see here. jerry: sixty-six years old? elaine: yeah, well, he's in perfect health. he works out, he's vibrant. you'd really like him. jerry: why do people always say that? i hate everyone, why would i like him? elaine: what do you think, would you go out with a sixty-six year old woman? jerry: well, i'll tell you, she would have to be really vibrant. so vibrant, she'd be spinning. rental car agent: i'm sorry, we have no mid-size available at the moment. jerry: i don't understand, i made a reservation, do you have my reservation? rental car agent: yes, we do, unfortunately we ran out of cars. jerry: but the reservation keeps the car here. that's why you have the reservation. rental car agent: i know why we have reservations. jerry: i don't think you do. if you did, i'd have a car. see, you know how to take the reservation, you just don't know how to *hold* the reservation and that's really the most important part of the reservation, the holding. anybody can just take them. rental car agent: let me, uh, speak with my supervisor. jerry: uh, here we go. the supervisor. you know what she's saying over there? elaine: what? jerry: hey marge, you see those two people over there? they think i'm talking to you, so you pretend like you're talking to me, okay now you start talking. elaine: oh, you mean like this? so it looks like i'm saying something but i'm not really saying anything at all? jerry: now you say something else and they won't yell at me 'cause they thought i was checking with you. elaine: okay, that's it. i think that's enough, see you later. rental car agent: i'm sorry, my supervisor says there's nothing we can do. jerry: yeah, it looked as if you were in a real conversation over there. rental car agent: but we do have a compact if you would like that. jerry: fine. rental car agent: alright. we have a blue ford escort for you mr. seinfeld. would you like insurance? jerry: yeah, you better give me the insurance, because i am gonna beat the hell out of this car. rental car agent: please fill this out. elaine: what do you think, you think i'm making a big mistake? jerry: hey, if you enjoy being with him, that's what's important. elaine: i love being with him. i mean, i like being with him. it's okay being with him. elaine: i just don't enjoy being with him. jerry: well that's what's important. elaine: i'm meeting him for lunch at chadway's around the corner, do i have to break up with him face to face or can i just wait and do it over the phone? jerry: how many times you been out with him? elaine: seven? jerry: face to face. elaine: seven dates is a face-to-face break up? jerry: if it was six i could have let you go, but seven, i'm afraid, is over the limit. unless, of course, there was no sex. elaine: hmm... how's the pasta over there? kramer: whoa, whoa!! jerry: what is going on out there? george: i need like a bucket of water! i got a car overheating, i got an alarm that won't go off, i'm pressing 'one', i'm pressing 'two', nothing! what do i do?! help me! help me! kramer: hey, you know they were supposed to do my scene today? elaine: today?! kramer: you know they told me that they wanted me to walk down the block carrying this bag of groceries. elaine: yeah. kramer: so i start to walk, and i trip, and the grocery bag goes flying, and woody, woody starts laughing. elaine: he was laughing?! kramer: oh yeah, he was drinking something, it started to come out of his nose. jerry: so then what? kramer: i got a line in the movie! elaine: get out! jerry: that's great! george: you got a line in the woody allen movie? kramer: pretty good, huh? george: you're in the movie? is he in the scene? kramer: oh yeah, yeah, it's me and him. i might have a whole new career on my hands, huh? jerry: you mean *a* career. elaine: so was mia farrow there? kramer: uh, i didn't see him. elaine: what's your line? kramer: oh, well uh, okay i'm there with, uh, woody, you know, i'm at this bar and, uh, i'm sit-- you know it's woody allen, did i mention that? kramer: so i'm sitting there with woody and i say, i turn to him and i go, "boy, these pretzels are making me thirsty." george: is that how you're gonna say it? kramer: no, no, i'm working on it. elaine: do it like this. "these pretzels are making me thirsty." jerry: no. "these pretzels are making me thirsty." kramer: no, no. see, that's no good. see, you don't know how to act. george: "these pretzels are making me thirsty!!" george: that was no good? kramer: i didn't say anything. elaine: i'm gonna go break up with owen. george: what was wrong with that? i had a different interpretation! do you know anything about this pretzel guy?! maybe he's been in the bar a really long time and he's really depressed because he has no job and no woman and he's parking cars for a living! (out the window to honking cars) alright! alright! shut up! shut up! i hear you! i'm coming down! these pretzels are making me thirsty! jerry: oh my god. elaine: call an ambulance. jerry: boy, he took it hard. elaine: we were walking down the block right by your house and i was just about to break up with him then all of a sudden he started to twitch. jerry: (on the phone) hello? yes, i need an ambulance at one twenty nine west eighty-first street, apartment five-a. elaine: tell then to hurry! hurry! jerry: (to elaine) it's an ambulance. (to the operator) i don't know but he's unconscious. kramer: these pretzels are making me thirsty. (he bites into a pretzel.) boy, these pretzels are making me thirsty. jerry: kramer. kramer: what happened here? elaine: i don't know, i don't know, what should we do? we called an ambulance, does anyone know first aid? jerry: shouldn't you do something with the extremities? elaine: what extremities? kramer: what's an extremity? jerry: you raise the feet, get blood to the head. kramer: you raise the head, you get blood to the feet. elaine: okay, what about a cold compress? they always do that. jerry: i don't have a washcloth. elaine: well use a paper towel. jerry: you can't put a paper towel on his head. kramer: what about a big sponge? jerry: how you gonna hold it on there? kramer: use a belt. elaine: no no no no no, that'll, it'll drip all over him. jerry: should we walk him around? elaine and kramer: (at the same time) yes, yes. kramer: yeah, i've seen them do that. jerry: no, no that's for a drug overdose. kramer: maybe that's what he's got. elaine: no no no no, kramer, i just had lunch with him, he didn't leave the table. kramer: well he could have dropped acid when you weren't looking. elaine: he is not a drug addict! jerry: hey, you know what? maybe he's a diabetic, he might just need a cookie or something. elaine: a cookie! kramer: can you give him a cookie? elaine: how's he gonna chew it? jerry: we'll move his teeth, it happened to my uncle, the sugar revived him. elaine: careful, you're getting crumbs all over him. kramer: i got him chewing but i don't think he's gonna swallow. elaine: you know what, let's put a few cookies in a blender and he could drink it. jerry: cookies don't liquefy. elaine: yes they do, you can liquefy a cookie. kramer: alright i'll get a blender. jerry: what blender? i don't have a blender. kramer: you got a blender. jerry: i would know if i had a blender. elaine: where is the ambulance?! jerry: (on phone) hello, yes, i called for an ambulance like thirty-five minutes ago. elaine: i can't believe what's going on out here. jerry: this is an emergency, what's taking so long? (the door buzzer buzzes) wait a second, maybe that's them. (presses button) hello? voice: paramedics. jerry: come on up. okay, they're here. elaine: he seems to be breathing. jerry: ya know, i gotta tell you, he's a pretty good-looking guy. elaine: i know. jerry: those eyebrows could use a trimming, you ever mention that to him? elaine: almost. jerry: hey, look at this, c'mon, running wild there. elaine: it's not an easy thing to bring up. jerry: yeah, that's true. elaine: aw, you should see his bathrobe, man, it's all silk. jerry: yeah? does he wear slippers? i bet he wears slippers. elaine: he does, how'd you know that? jerry: i could tell. elaine: what happened, what took you so long?! paramedic: we got here twenty minutes ago but we couldn't move, the whole intersection is gridlocked, i've never seen anything like it. so finally we make the turn and this guy who's running around triple-parking cars slammed into us with a blue escort. jerry: blue escort? that's my rent-a-car! george: oh man. jerry: what happened to the car? george: sorry, you don't know what's going on out there! (looks at owen) who's he? elaine: this guy i'm seeing. george: what happened? jerry: we don't know! paramedic: who put cookies in his mouth? jerry and elaine: cookies? paramedic: you're not supposed to do that. jerry: so how'd you hit the car? george: i was moving it across the street, i looked up and i saw woody allen and i got all distracted. jerry: it's not even my car, it's a rental. kramer: what are you doing out there?! you're holding up the production of the movie! we can't shoot and woody, he's really mad at you. george: woody mentioned me? what did he say? kramer: he said, 'who's the moron in the blue jacket who's got the street all screwed up?' george: should i apologize to woody? kramer: alright, i'll tell you what. next time i talk to him, maybe i'll bring it up. i'll feel him out. sid: now you didn't tell me you didn't know how to drive. you should have mentioned that. george: well i know how to drive. sid: then how'd all those cars get damaged? why are people calling me up screaming on the phone? most of them cancelled out on me. jerry: can i get anybody anything? sid: moving cars from one side of the street to the other don't take no more sense than putting on a pair of pants. my question to you is who's putting your pants on? george: i put my pants on, sid. sid: i don't believe you. if you can put your pants on, you can move those cars. george: well i don't want to get into a big dispute about the pants. sid: who's gonna send money to my sister in virginia? her little boy needs surgery on his foot. now he'll be walking around with a limp because you can't park a few cars. george: maybe i could call my father. kramer: hey, you seen the paper yet? jerry: interestingly enough, no, inasmuch as it is my paper. kramer: yeah. there's an article in there about that writer. jerry: (reading) owen march, prominent author and essayist suffered a stroke yesterday in the upper west side apartment of a friend. kramer: uh huh, that's the guy that was here. you're the friend. jerry: (continuing) the extent of the damage would have been far less severe had paramedics been able to reach him sooner. sid: oh lord. jerry: (finishing) the commotion also delayed production of a woody allen movie that was shooting up the block. a spokeswoman for the legendary filmmaker said that mr. allen was extremely agitated and wondered if his days of shooting movies in new york were over. elaine: five seconds. jerry, i was five seconds away from breaking up with him. five seconds. the next words out of my mouth were, 'owen, it's over.' jerry: can he communicate? elaine: yeah, well, he nods. and i think he understands me, he seems to enjoy it when i read to him. jerry: alright, she's free. (steps up to the counter) hi, i called before, uh, my car got smashed. elaine: so listen, what should i do? i mean if i break up with him now it'll look like i'm abandoning him because of his condition, i'll be ostracized from the community. jerry: what community? there's a community? elaine: of course there's a community. jerry: all these years i'm living in a community, i had no idea. rental car agent: sir the estimate on the damage to your car is two thousand eight hundred and sixty-six dollars. jerry: hmm, well, i got the insurance and everything so... rental car agent: yes, now, uh, in your report you said that you were not the driver of the car at the time of the accident. jerry: that is right, somebody else was driving. rental car agent: alright, well, sir, you're only covered for when you're driving the car. jerry: uh huh, what's that? rental car agent: you're not covered for other drivers. jerry: other drivers? rental car agent: um hm. jerry: your whole business is based on other drivers. it's a rented car. that's who's driving it, other drivers. doesn't my credit card cover me or something? rental car agent: not that particular one. jerry: well i got a hundred cards, here, pick a card, take a card, any card you want, go ahead, whichever one, i don't care. rental car agent: sir, if you had read the rental agreement-- jerry: did you see the size of that document? it's like the declaration of independence, who's gonna read that? rental car agent: mr. seinfeld, as it stands right now, you are not covered for that damage and there is absolutely nothing that can be done about that. jerry: these pretzels are making me thirsty. elaine: ahh, it's good, isn't it? yankee bean. why yankee bean, huh? don't they have beans in the south? i mean if you order yankee bean in the south, are they offended? huh? (singing) yankee bean, yankee bean, i like my yankee bean. (she puts the bowl down and wipes owen's mouth with a napkin) owen, i think we have to talk. i mean, uh, *i* have to talk. it would be nice if *we* could, but, uh, whatever. um, don't get me wrong, i like coming here, and uh, feeding you and cleaning a little, and paying your bills, that's good stuff. good stuff! i have a wonderful time when i'm with you, wonderful! but at this point in my life, i'm not really sure that i'm ready to make a commitment to one person. i'm just not really sure that we have enough in common. for example, i like running in the park, bicycling, roller skating, tennis and skiing, and um, well, i'm gonna be brutally honest with you now, owen, it's a bitch to get here. it's two subways. i have to transfer at forty-second street to take the double-r. anyway, i mean, this doesn't mean we can't be friends. these pretzels are making me thirsty. elaine: can you die from an odor? i mean, like if you were locked in a vomitorium for two weeks, could you actually die from the odor? jerry: an overdose of odor? good question. george: do i smell? elaine: no no no no, i was just down on the forty-second street subway today, it is disgusting. guess who i bumped into. owen. jerry: ahh. george: he's alright? elaine: yeah, he's almost fully recovered. he told me he was just using me for sex. jerry: let me get that. george: no no no, i got it. jerry: please. george: no come on, let me, let me. i smashed your car, it cost you over two thousand dollars, jerry: (sarcastically) yeah, a cup of coffee should cover it. jerry: what are you doing here? kramer: i got fired from the movie. george: get out of here, why? kramer: well, you know they were gonna shoot it today, and uh, we rehearsed it twice, then woody yells 'action!' and i turn to him and i say, 'these pretzels are making me thirsty' and i took a swig of beer, ya know, and i slammed the glass down on the bar and it shattered. elaine: aww. kramer: well, one of the pieces must have hit woody. he started crying. and he yells out, 'i'm bleeding' and he runs off. anyway, this woman, she came up to me and she says, 'you're fired.' boy i really nailed that scene. jerry: aw, wait a--. oh. oh, for crying out loud. jerry: i'm sorry it's gotta be a little bit of a scary place to work. i don't know how you feel about it. you want to be standing there having people comming in all day going "i need knives. i need more knives. do you have any bigger knives? i'd like a bigger knife, a big, long, sharp knife, that's what i'm in the market for. i like them really sharp. do you have one with hooks and gouges like blades and kind of serrated? that's the kind of knife i'm looking for. i need one i can throw. i need another one i can just hack away with. do you have anything like that? jerry: oh yeah, like you know what you're talking about. george: like you do. jerry: well what do you think? they put the statue on a giant raft and a tugboat pulled it all the way from france? george: what do you think? the brought it over in pieces and screwed it together like a coffee table? jerry: i don't know. it's too early for a christmas party isn't it? george: why did france give that to us anyway? jerry: it was a gift. george: so countries just exchange gifts like that? jerry: if they like each other. george: there's elaine. jerry: see that guy he's talking with? that's her new boyfriend. george: really? they work here in the office? jerry: yeah. they're having a little fling so don't say anything. george: who am i going to tell? my mother? like i've got nothing better to talk about. jerry: you don't. he's a recovering alcoholic. george: really? jerry: yeah. he's been off the wagon for two years. george: "off the wagon"? jerry: i think it's off the wagon. george: i think it's "on the wagon". elaine: jerry, george, what are you doing here? jerry: what am i doing here? ba-boom (holding out a present) elaine: *gasp* my god! my watch! you found my watch! (pushing jerry) jerry: hey keep your hands to yourself if you know what's good for you. elaine: where did you find it? jerry: under the sofa cushion. elaine: and you stopped by just to give it to me? jerry: it's your christmas present. elaine: i though i'd never find it. george: well today's your lucky day. elaine: no. today's *your* lucky day. george: it will be my first one. elaine: you want to work here? george: huh? elaine: yeah one of the readers left and there's a job opening. dick, this is jerry and this is george. dick: hi nice to meet you. is this the guy? jerry: "the guy?" elaine: (softly to dick) dick. george: how can you just get it? elaine: my boss told me to find someone. i'm in charge of it. all you have to do is meet him. come on. come on, come on, here hold my drink. jerry: cranberry juice? elaine: and vodka. dick: i got the cranberry juice. dick: so... you're jerry. jerry: so... i'm jerry. (he puts down the drink) mr. lippman: (what is his name?) so have you ever done this kind of work before? george: well, you know, book reports. that kind of stuff. mr. lippman: how do you read? george: i like mike lubika. mr. lippman: mike lubika? george: he's a sports writer for the daily news. i find him very insightful... mr. lippman: no, no, no. i mean authors. george: lot of good ones. i don't even want to mention anyone because i'm afraid i'm going to leave somebody out. mr. lippman: name a couple. george: who do i like? i, like, uh, art, vandelay. mr. lippman: art vandelay? george: he's an obscure writer. betnik, on the village. mr. lippman: what has he written? george: venetian blinds. dick: (picking up the drink) i've got new for you. i'm funnier than you are. jerry: why don't get we together new years day and watch some football. elaine: where's my drink? jerry: there. (turns to george) so, how did it go? george: i think he was impressed. elaine: no, no, no, this is just cranberry juice. jerry: oh, uh, i think maybe dick picked up yours. elaine: dick? he can't drink. he's an alcoholic. i told you to hold it. jerry: i didn't know you meant *hold* it, i thought you meant hold it. elaine: one drink like that and he could fall right off the wagon. george: told you. jerry: i never feel comfortable in the women's department. i feel like i'm just a *little* too close to trying on a dress. george: do i really have to buy her something? jerry: hey the woman got you a job. the least you could do is buy her a gift. how about this? george: what is that? is that cashmere? jerry: yeah. she would love cashmere. george: who doesn't like cashmere? find me one person in the world that doesn't like cashmere. it's too expensive. jerry: look at this. it's 85 dollars marked down from 600. george: wow. excuse me, miss? sales woman: yes? george: how come this sweater is only 85 dollars? sales woman: (showing the dot) oh, here. this is why. george: what? i don't see anything. sales woman: see this red dot? george: oh yeah. jerry: oh it's damaged. (grabbing the sweater) george: (grabbing the sweater back) well it's not really damaged. 85 dollars huh? sales woman: there's no exchanges on this. george: you think she would care about the red dot? jerry: it's hard to say. george: i don't even think she'd notice it. can you see it? jerry: well i can see it. george: yeah, but you know where it is. jerry: well what do you want me to do? not look at it? george: pretend you didn't know it was there. can you see it? jerry: it's hard to pretend because i know where it is. george: well just take an overview. can't you just take an overview? jerry: you want me to take an overview? george: please. jerry: i see a very cheap man holding a sweater trying to get away with something. that's my overview. jerry: yeah so? elaine: he's acting very strangely. i think he started drinking again. jerry: oh boy, can you smell it? elaine: no. i can't smell it. jerry: well if you can't smell it then he hasn't been drinking. elaine: you don't always smell someone from a drink. jerry: yes you do. elaine: what about one drink? would you smell it from one drink? jerry: yes you would. jerry: i'll prove it. would you do me a favor? kramer: okay. jerry: would you take a drink and let us smell you? kramer: you can smell me without the drink. elaine: i suspect that this guy i'm seeing might be drinking but i can't smell it. kramer: okay, well what am i drinking? what do you got? jerry: i got a bottle of scotch my uncle gave me. it's hennigans. it's been here for two years. i've been using it as a paint thinner. kramer: all right. jerry: i don't smell anything. elaine: maybe we're too close to the bottle. jerry: yeah. george: (over the speaker) it's george. jerry: come on up. kramer: that is *damn* good scotch. i could do a commercial for this stuff. mmmmm, boy that hennigans goes down smooth. and afterwords you don't even smell. that's right folks. i just had three shots of hennigans and i don't smell. imagine, you can walk around drunk all day. that's hennigans, the no-smell, no-tell scotch. george: hello everybody. kramer: hey. (snuggling really close to george) i'm going to tell you what i think. i know you don't care what i think, but i'm going to tell you. i think that you are terrific. george: (uncomfortablly) thank you. elaine: hey what's that? george: it's an early christmas present. elaine: christmas present? for who? george: for you. elaine: *gasp* (pushing george) get out of here. kramer: say you got a big job interview, and you're a little nervous. well throw back a couple shots of hennigans and you'll be as loose as a goose and ready to roll in no time. and because it's odorless, why, it will be our little secret. (singing) h-e-double n... jerry: kramer. yeah that'll do. elaine: (opening the present) oh george, this is beautiful. is this cashmere? george: of course it's cashmere. elaine: oh, i love cashmere. george: well who doesn't. elaine: my, george this must have cost a fortune. george: ahh, money. elaine: jerry, how could you let him spend so much money? jerry: i tried to stop him. i couldn't. he just wants to make people happy. elaine: george, this is one of the nicest things anyone has ever given me. george: well good, good. take it off you're going to wear it out already. it's for special occasions this thing. kramer: what's that red dot on your sweater? elaine: what? george: just take it off. i'm getting hot just looking at it. elaine: uhh. this. it's like a red dot. george: what red dot? what are you talking about? jerry come here for a second. do you see anything here? jerry: (uncomfortable) uh, i don't know. uh, i don't know. elaine: what don't you know? jerry: i don't know. elaine: well do you see it or don't you? jerry: ahem. say that again? elaine: do you see it or don't you? jerry: do i see it... or don't i? that's the question. jerry: now what did you ask me again. elaine: you're still here. you're a dynamo. george: i can't believe i get paid for this. elaine: i'll see you tomorrow. george: how you doing? cleaning woman: hello. jerry: you had sex with the cleaning woman on your desk? who are you, how did you do that? george: hennigans. i was there sitting in the office and the cleaning woman comes in. i've always been attracted to cleaning women. cleaning women, chambermaids. jerry: yeah chambermaids, i'm attracted to them too. george: why is that? jerry: it's a woman in your room. so go ahead. george: so she starts vaccuming, back and forth, back and forth, her hips swivelling, her breasts, uh... (trying to think of a word) jerry: convulsing? george: convulsing? jerry: i don't know, i'm trying to help you. george: then i asked her if she wanted a drink. jerry: you don't drink. george: i know but i couldn't think of anything else to say to her. jerry: so you started drinking. george: so we started drinking, and i'll tell you i don't know if it was the alcohol or the ammonia, but the next think i knew she was mopping the floor with me. jerry: so how was it? george: well the sex was okay, but i threw up from the hennigans. jerry: good thing the cleaning lady was there. elaine: dick was fired. jerry: you mean to tell me if i had put that drink six inches over to the right, and none of this would have happened. elaine: you knew he was an alcoholic. why'd you put the drink down at all? jerry: what are you saying? elaine: i'm not saying anything. jerry: you're saying something. elaine: what could i be saying? jerry: well you're not saying nothing you must be saying something. elaine: if i was saying something i would have said it. jerry: well why don't you say it? elaine: i said it. jerry: what did you say? elaine: nothing. it's exhausting being with you. jerry: yeah? george: (over the speaker) it's george. jerry: come on up. elaine: hey, let me ask you something something. did george buy that sweater knowing the red dot was on it because it was cheaper? (jerry is unconfortable) ooookay, you just gave me the answer. jerry: no i didn't. elaine: yes you did, yes you did. i saw your expression. jerry: i didn't have an expression. i have a deviated septum. i have to open my mouth sometimes to breathe. elaine: how much did he save? jerry: frankly i am shocked that you would ask such a question (elaine sticking out her tongue like she isn't buying a word of it) of me, that you would think - the only surprise is how you could even think of that. that's what you were seeing. george: i have to talk to elaine. this cleaing lady is turning the screws on me. she's pushing for this whole relationship thing. she keeps calling me, threatening to go to the boss with this thing, i could lose my job, i gotta do something to keep her quiet. jerry: elaine is in the bathroom. she's wise to whole red dot thing. she's asking me all kinds of questions. george: did you tell her anything? jerry: no. george: do you swear? jerry: i'm not swearing. i don't want to swear. george: oh you told her didn't you. jerry: no. elaine: hey george, did you buy that sweater knowing that red dot was on it because you could get it at a discount? george: what? did i what? elaine: you did didn't you. george: elaine, i'm, i'm shocked. i'm shocked. here i go out in the spirit of the season (elaine looking like she's not buying a word of it) and spend all my savings to buy you the most beautiful christmas sweater i have ever seen to show my appreciation to you at christmas and this is the thanks that i get at christmas. elaine: well jerry told me that you did. george: you told her? how could you tell her? i told you not to say anything. jerry: i didn't tell her you stupid idiot. she tricked you. george: elaine you don't understand. i had 103 temperature when i bought that sweater. i was so dizzy i was seeing red dots everywhere. i thought everything in the store had a red dot on it. i couldn't distinguish one red dot from another. i couldn't afford anything. i have nothing. i haven't worked for a really long time. (jerry is standing right behind george. jerry takes out a hankerchief and starts fake-crying in it.) i mean look, i have no clothes, look at what i'm wearing. it's just a little red dot. george: this is for you. cleaning woman: oh, georgie, you bought this for me? oh i knew you cared for me. george: as you care for me. which is why it is very important that you never breathe a word of this to anyone about the... you know. what, with clarence thomas and everything. cleaning woman: okay, okay, can i open it now? george: yes of course go ahead. my guess is you're going to like this very much. cleaning woman: oh! is that cashmere? george: of course it's cashemere. cleaning woman: a cashmere sweater. oh georgie porgie! george: just a little something for christmas. cleaning woman: when i was a little girl in panama, a rich american came to our town and he was wearing the softest most beautiful sweater. i said to him, "what do you call this most beautiful fabric?", and he said "they call it cashmere". i repeated the words "cashmere, cashmere". i asked if i could have it, and he said "no. get away from me." then he started walk away. but i grabbed onto his leg screaming for him to give me the sweater and he dragged me through the street. and then he kicked at me with the other foot and threw some change at me. oh, but i didn't want the change georgie. i wanted the cashmere. george: i had a feeling you would like it. no, don't try it on now, try it on later. cleaning woman: wow, look at this. it feels so beautiful. george: take it off. you're going to ruin it. cleaning woman: (noticing the dot) what's this? jerry: i was in the men's room the other day and they had the hand blower, instead of the paper towels, you know this thing. i like the hand blower i have to say. it takes a little bit longer, but i feel when you're in a room with a revolting stench you want to spend as much time as you can. dick: the only stench is comming from you. audience: oooooh. jerry: oh, wait a second, i believe we have a heckler ladies and gentlemen. hey dick i don't know what your problem is. it's not my fault you're back on the wagon. dick: it's off the wagon. jerry: in the old days how do you think they got the alcohol from town to town? dick: i don't know. jerry: on the wagon. don't you think they broke into a couple of those bottles along the way? dick: you can't drink on a wagon it would be too bumpy. jerry: they had smooth trails. what about the cumberland gap? dick: what the hell do you know about wagons? jerry: i know enough not to get on them. mr. lippman: i'm going to get right to the point. it has come to my attention that you and the cleaning woman have engaged in sexual intercourse on the desk in your office. is that correct? george: who said that? mr. lippman: she did. george: was that wrong? should i have not done that? i tell you i gotta plead ignorance on this thing because if anyone had said anything to me at all when i first started here that that sort of thing was frouned upon, you know, cause i've worked in a lot of offices and i tell you peope do that all the time. mr. lippman: you're fired. george: well you didn't have to say it like that. mr. lippman: i want you out of here by the end of the day. george: what about the whole christmas spirit thing? any flexability there? mr. lippman: nah. wait, wait, she wanted me to give you this. elaine: you had sex on your desk with the cleaning woman. george: you never had sex in the office before? elaine: no. i once made out with someone but that was it. george: alright so you made out with someone. elaine: well that's not sex. george: kissing is sex. elaine: kissing is not sex. jerry: george? george: jerry. elaine: hey, did jerry leave that drink next to dick's on purpose? george: no. jerry: george? george: over here. elaine: what are you doing here? jerry: i'm taking the kid out to dinner to chear him up. elaine: hey jerry when do you consider that sex has taken place? jerry: i would say when the nipple makes its first appearance. elaine: so, george told me that you left the drink next to dick's on purpose. jerry: nice try. so guess who heckled me at the club last night. dick: merry christmas. elaine: oh my god that's dick. it's cape fear. george: hide, hide under the desk. elaine: ow, ow move over. jerry: get off of me. elaine: i've got no room. dick: is that cashmere? george: of course it's cashmere. dick: (noticing the dot) what's this? jerry: but in a way, i think i inadvertantly turned this guy into an alcoholic. i hate being around alcoholics because they're either telling you how much they love you or how much they hate you. and those are the two statements that scare me the most. but i think he's okay now because i have no idea how he feels about me. he's finally off the wagon. dick: you mean on the wagon. jerry: don't get smart. kramer: all right, coney island. ok, you can take the b or the f and switch for the n at broadway lafayette, or you can go over the bridge to dekalb and catch the q to atlantic avenue, then switch to the irt 2, 3, 4 or 5, but don't get on the g. see that's very tempting, but you wind up on smith and 9th street, then you got to get on the r. elaine: couldn't he just take the d straight to coney island? kramer: well, yeah... elaine: ok, what time is your job interview george? george: 945 jerry: remember, don't whistle on the elevator. george: why not? jerry: that's what willie loman told biff before his interview, in 'death of a salesman'. george: what, you are comparing me to biff loman, very encouraging. the biggest loser in history of american literature. elaine: all right, i'm gonna go. jerry: what time is the lesbian wedding? elaine: 930 george: lesbian wedding. how do they work bride and groom out, what do they flip a coin? elaine: yeah, they flip a coin. george: what, was that not politically correct? it's a legitimate question. jerry: i'm so tired. i'll fall asleep on that train (yawns) george: i get the feeling when lesbians are looking at me, they're thinking "that's why i'm not heterosexual". kramer: jerry, come on let's go, pick up the check so we can go. jerry: oh, i'm paying for breakfast? kramer: yeah. elaine: yeah. george: yeah. jerry: why do i always pay? what am i made of money? you bunch of deadbeats. george: how many tickets are you paying today? kramer: well, let's see speeding, running a red light, no license, no registration, no plates, no brake lights, no rear view mirror...yeah. (gives george a ticket) george: no doors? kramer: i'm fighting that one. you know, this is gonna cost me over six hundred bucks. george: i can't carry any changes in these pants, it falls out. violin player: thank you. george: that guy is not blind. jerry: so, can i convince anybody to come down to coney island with me? i got to pick up my car at the pound. george? george: i can't believe they actually found your stolen car. jerry: not only that they found it. it was simonized and the front end was aligned. george: that's amazing. jerry: so what do you say? run in the cyclone. hotdogs on nathan's is on me. george: what are you? satan? i'm close to a job here. it's my second interview with them. jerry: all right, biff. elaine, merry-go-round? elaine: i can't. i'm the best man. jerry: kramer, bumper-cars? kramer: i've gotta go to court, i'll get in trouble. what's the matter with you? jerry: could be years before i get back to coney island. i can't go to rides alone. subway announcement: 42th street. change to d,n,rr,2,3,4,5,7,c,e,f train. elaine: see'ya. woman: you looking for a job? george: me, why? woman: well, you're reading the classifieds. george: oh, no no no. i was just looking for stock-pages. here it is. looking for the quotes. gotta check to quotes. love a good quote. oh, ibm up a quarter. woman: you didn't look like someone who needed a job. george: me? no, no, i don't, i don't. doing very well, very well, yep. woman: so, you're in 'the market'? george: yeah i'm, eh, in 'the market'. woman: which market? george: which market, the, eh, big one, the big market, the big board. bull market, bear market, you name the market, i'm there. woman: so, do you work for one of those big broker-houses? george: they wish. i hate the big broker-houses. hate them with a passion. big broker-houses killed my father. woman: really? george: well, they hurt him bad. really hurt his feelings. it's a long story. i- i don't like to talk about it, but i swore then that i would never work for big broker-houses. see, all they care about is money. i'm about more than money, i'm about people, always gone my own way and i've never looked back. woman: i started riding these trains in the forties. those days a man would give up their seat for a woman. now we're liberated and we have to stand. elaine: it's ironic. women: what's ironic? elaine: this, that we've come all this way, we have made all this progress, but you know we've lost the little things, the niceties. woman: no, i mean what does 'ironic' mean? elaine: oh... woman: where are you up to, with such a nice present, birthday party? elaine: a wedding. women: a wedding? elaine: yeah woman: hah, i didn't know people still get married. it's hard today with men and women. elaine: you're telling me. woman: so, are they a nice couple? elaine: oh, very nice. woman: what does he do, if you don't mind me asking? elaine: she. women: she? she works, he doesn't. he sounds like my son. elaine: there is no he. women: there is no he. so, who's getting married? elaine: em, two women. it's, eh...lesbian wedding. women: lesbian wedding. elaine: aha, yep. i'm the...eh...bes tman. women (talks to man next to her): my luck. i don't talk to a soul in the subway for 35 years. i get a best man at a lesbian wedding. (leaves) elaine: no, no, no, you don't understand! i'm not a lesbian! i hate men, but i'm not a lesbian! elaine's voice: i'm really looking forward to this. i love weddings. maybe i'll meet somebody, umm maybe not. elaine's voice: oh, man. we're stopping? woman: well, this is where i get off. george: oh, you do? woman: eh, hey why don't you...oh nothing. george: no, no, what, what? woman: well, i was going to say why don't you get off with me, but you're obviously very busy on your way to some important meeting or something. george: yeah, well.... woman: yeah i knew it was a bad idea. george: hey, what's another million, give or take. i get off where and when i wanna get off. george: i'm stuck. pull a little, just a second. don't start the train! don't start the train!! man1: this, it's the fourth horse of the first race, pappanick. man2: how do you know it's going to win? man1: my ups-guy tells. guys who own the horses are regular customers. every horse he has ever given me has won. see, they've been sandbagging and looking for a good spot. he's been getting it light cause they've been using bug boy and the workout hasn't been published. now they are ready to run with it. they are gonna break his maiden. it's going to go to great price, maybe 301. i'm telling you, it's a lock. man2: but it rained last night. man1: exactly, this horse loves the slop. it's in his bloodlines. his father was a mudda', his mother was a mudda'. man2: his mudda' was a mudda'? man1: what did i just say? come on, let's go to the office, i'm going to call my bookie. (looks around to see if anyone is listening) hey, don't tell anybody. jerry: o-k. you realize of course, you're naked? naked man: naked, dressed. i don't see any difference. jerry: you oughta' sit here. there is a difference. naked man: you got something against naked body? jerry: i got something against yours. how about a couple of deep knee bends, maybe a squat thrust? naked man: who's got time for squat thrusts? jerry: all right, how about skipping breakfast. i'm guessing you're not a 'half-grapefruit and black coffee' guy. naked man: i like a good breakfast. jerry: i understand, i like good breakfast. long as you don't wind up trapped in a room with bib overalls and pigtails, been counseled by dick gregory. naked man: i'm not ashamed of my body. jerry: that's your problem, you should be. jerry: don't get up, please, allow me. elaine's voice: oh, this is great. this is what i need, just what i need. ok, take it easy i'm sure it's nothing. probably rats on the track, we're stopping for rats. god, it's so crowded. how can there be so many people? this guy really smells, doesn't anyone use deodorant in the city? what is so hard, you take the cap off, you roll it on. what's that? i feel something rubbing against me. disgusting animals, these people should be in a gage. we are in a gage. what if i miss the wedding? i got the ring. what'll they do? you can't get married without the ring. oh, i can't breath, i feel faint. take it easy, it'll start moving soon. think about the people on the concentration camps, what they went through. and hostages, what would you do if you were a hostage? think about that. this is nothing. no, it's not nothing, it's something. it's a nightmare! help me! move it! com'on move this fu(beep) thing!! why isn't it moving?!? what can go wrong with a train!?! it's on tracks, there's no traffic! how can a train get stuck. step on the gas!! what could it be? you'de think the conductor would explain it to us? 'i'm sorry there's a delay we'll be moving in 5 minutes'!! i wanna hear a voice. what's that on my leg?!! george: are you often on business trip? nice...oh, hey nice ice-bucket. woman: make your-self comfortable. george's voice: make myself comfortable. what does that mean? does she want me to take my clothes off? is she taking her clothes off? what if i take my clothes off and she still has hers' on? then i really look like an idiot. she could get offended and leave. so maybe i should leave them on, but what then if she takes her off? then she'll feel humiliated. 'make yourself comfortable'. i got this unbelievable woman and this 'comfortable'-thing can ruin me. i got it! i take my shoes off and sit on the bed. there, that's comfortable. she can't accuse me being unconvertible. george: gotta tell you i'm pretty comfortable. kramer: oh yeah, it's all set. they got the bug boy on him. guy: the bug boy. kramer: yeah, the little father has run his hard out. they're gonna break his maiden. guy: really? but, it's a little bit slow out there it rained last night. kramer: oh, this baby loves the slob, loves it, eats it up. eats the slob. born in the slob. his father was a mudda'. guy: his father was a mudda'? kramer: his mudda' was a mudda'. guy: his mudda' was a mudda'? kramer: what did i just say? kramer: hey, all right, 600 pappanick to win. naked man: they still have no pitching. goodin's a question mahk. ...you don't recover from those rotator cuffs so fast. jerry: i'm not worried about their best pitching. they got pitching. ...they got no hitting. naked man: no hitting? they got hitting! bonilla, murry. ...they got no defence. jerry: defence? please. ...they need speed. naked man: speed? they got coleman. ...they need a bullpen. jerry: franco's no good? ...they got no team leaders. naked man: they got franco! ...what they need is a front office. jerry: but you gotta like their chances. naked man: i luv their chances. jerry: tell you what. if they win the penant i'll sit naked with you at the world series. naked man: it's a deal! elaine's voice: why couldn't i take a cab. for 6 dollars my whole life could've changed. what is that on my leg? i'll never get out of here. what if i'm here for the rest of my life? maybe i'll get out in 5 seconds. 1 banana, 2 banana, 3 banana, 4 banana, 5 banana...no, i'm still here! still here! why don't they start moving? move! move!! move!!! *train starts moving, lights get back on* it's moving! it's moving! yes! yes!! *train stops again and lights go off* motherf(beep-beep)!!! george: eh, gee, i hope you have the key for these things. woman: oh, don't worry. i do. george: you know, my mother used to walk around on our apartment just in her bra and panties. she didn't look anything like you, she was really disgusting, really bad body. if you could imagine uglier and fatter version of shirley booth. remember shirley booth from hazel. really embarrassing, cause you know i had only mother in the whole neighborhood who was worse looking than hazel. imagine the taunts i would hear. woman: like what? george: like a "hey your mother is uglier than hazel. hazel really puts your mother to shame" george: what's going on? woman: it was a pleasure doing business with you george, but i'm afraid i have to get going. george: get going? but we haven't really, you know.... woman: eight dollars? eight dollars? george: what are you doing? you're robbing me? woman: i wasted my whole morning with you for eight dollars? george: wait, wait a second, what are you doing? woman: i'm taking your clothes. george: no, that's my only suit. it cost me 350 dollars. i got it at moe ginsburg. woman: bye george. george: no wait, you can't just leave me here! will i see you again? (the race is on and pappanick is slowly making ground. kramer is pounding himself imitating the jockey and shouts: yes, yes, yes... the winner is pappanick) kramer: yes! yes! i won, hey (shouts to cashier) naked man: i haven't had a hotdog at nathan's for 20 years. jerry: first we ride the cyclone. naked man: chilly out. jerry: aah, french fries. thug: give me the money. give me the money! blind violin player: (puts a gun to the thug's head) freeze, police! jerry: no, i never got the car. we were having such a good time, by the time i got to the police garage, it was closed. elaine: too bad. jerry: you wouldn't believe what this guy put away at nathan's. look at what we won! jerry: you want him? elaine: get that out of my face. jerry: so, you missed the wedding. you'll catch the bris! man at the counter: (yelling) hare krishna, hare krishna! george: how would you like a 'hare krishna' fist on your throat, you little punk? elaine: george? jerry: biff, what did you whistle on the elevator? george: you have my spare-key in your apartment, right? jerry: yeah, it's in the kitchen drawer. george: give me your key, i gotta get it. kramer: what happened? george: never mind what happened, just give me the key. jerry: come on, i'll go with you. elaine: here, pay. (gives the check to jerry) kramer: wait, wait, wait... george: ...pianist. a *classical* pianist. she *plays* the piano. she's a *brilliant* woman. i-i-i sat in her living room... she played the *waldstein sonata*! the *waldstein*! george: we did a crossword puzzle together, *in bed*. it was the most fun i ever had in my entire life. did you hear me? in my *life*! y'know? jerry: were you talking? i couldn't hear anything. george: i was telling you about noel. jerry: oh, noel! yeah, the one who plays bongos... george: [sarcastically] heh heh heh... so side-splittingly funny... jerry: all right, i'm sorry. what about her? george: what, you think i'm going to repeat the whole thing now? jerry: i know, you told me you like her, everything is going good. george: no everything is *not* going good. i'm very uncomfortable. i have no power. i mean, why should she have the upper hand. *once* in my life i would like the upper hand. i have no hand-- no hand at all. she has the hand; i have *no* hand... george: how do i get the hand? jerry: we all want the hand. hand is tough to get. you gotta get the hand right from the opening. george: she's playing a recital this week at the mcbierney school. you wanna hear her play? i got two extra tickets, you and elaine could go... jerry: yeah, that sounds like somethin'... george: then afterwards maybe we could all go out together. y'know she'll see me with my friends, she'll observe me as i really am, as myself. maybe i can get some hand that way. kramer: hey, smell my arm... smell it! george: with all due respect, i don't think so... jerry: that smells good, what is that? kramer: the *beach*! jerry: the *beach*? george: what, did you go swimmin'? it's 29 degrees out! kramer: i just joined the polar bear club. jerry: you joined the *polar bears*?! george: what the hell is a "polar bear"? kramer: well, it's these people-- they go swimmin' in the winter. they're terrific, i just took my first swim today. brrrrrrr! it's invigorating.... jerry: yeah... so's shock therapy. jerry: [with glee] what is that, a pez dispenser?! kramer: want one? yeah, i just bought it at the flea market. george: hey, what goes on there, exactly? jerry: you don't know? george: no, i-i-i know... [retreats back to his chinese take out] i know... jerry: you think they have fleas there, don't you? george: *no*... jerry: yes you do, biff. you've never been to a flea market, and you think they have fleas there. george: all right, i think they have fleas there. so what... elaine: i don't know how anyone does this. it must be *so* nerve racking... how do they warm up their fingers? jerry: they have a piano backstage they warm up on. elaine: *no*, we would have heard it. jerry: what, do you think they just crack their knuckles and come out? george: i told her we'd all go out afterwards, okay? and don't applaud when she stops playing the first time. it's not over yet. jerry: [quickly whispering] i resent that you said that! that's directed at *me*, isn't it?! jerry: is this okay? can i do this? (he claps) steve: something i said? [no response] it's john... mollika. elaine: oh, oh, *john*... oh, hi john... hi... steve: what're you doing down here? elaine: oh, i was just at this recital and jerry put a pez dispenser on my leg and i started laughing. mollika: jerry's in there? i heard you guys broke up. elaine: we did. we're just hanging out. mollika: really. ... you really look great. elaine: oh, uh, thank you. are you still friends with richie appel? mollika: oh, richie, he's been doing comedy in l. a. for a few years. he just got back a month ago. he's kind of messed up. on drugs. i don't know what to do for the guy. elaine: have you thought about an intervention? mollika: what's that? elaine: you get all his friends in a room, they confront himm to try to get him into rehab. it's a very popular thing now. mollika: he'd never listen to anyone. ... except of course jerry. he'd listen to jerry. jerry would have to be involved. he really respects jerry. elainelaine: i'm sorry. george, i'm sorry! george: what did you put the pez dispenser on her leg for in the first place? jerry: i dunno, it was an impulse. george: what kind of a sick impulse does that?? jerry: how could i know she would start to laugh? elaine: i'm sorry. i'm sorry. i *am*! jerry: can we just go in already? george: what are we gonna tell her? elaine: i'll tell her i was the one who laughed. george: no, don't say a word. if she thinks my friends are jerks, then i'm a *jerk*... elaine: [to jerry] oh, remind me to talk to you about something later. jerry: what about? george: hey, hey! we're discussing something! jerry: i know, but i'm distracted now. george: what are you? a *baby*!? all right. tell her. elaine: when i was outside i ran into john mollika. jerry: really john mollika, they guy that used to bartend at the comedy club. how's he doing? elaine: he's good. george: uh, can we cut to the chase? jerry: "cut to the chase"? george: yeah... jerry: what're you, "joe hollywood"? george: a lot of people say it. jerry: i would lose that. george: [accusingly] what's *that*? jerry: "lose that"? that's not a hollywood expression! george: [realizing full well it isn't] ...yes it is. elaine: anyway ... so john told me that richie is in town from los angeles and he's really messed up on drugs. so i told him that he should do an intervention. jerry: really, an intervention ... george: y'know people, we got a situation over here! elaine: yeah, but he want's you to be a part of it. jerry: me? why me? elaine: 'cause richie really respects you and he would listen to you. jerry: y'know these things are *really* hard to load... george: all right, ok, i'm goin' in. jerry: we've got to talk about this (to elaine) elaine: all right. george: hi, hi, hi, you were wonderful. noel: no.. george: oh, these are my friends, elaine and jerry, ... noel jerry: you play a *hell* of a piano. elaine: yeah, i was really moved, *really* moved. noel: well didn't you hear that person laughing? i couldn't play. i was *humiliated... elaine: well, i'm sure it wasn't *at* you. noel: well then, what was she laughing at? jerry: pez? noel: uh, no, no thank you. did you see her? george: me, uh, uh, no, ... jerry: anyone who would laugh at a recital is probably some sort of lunatic anyway. i mean only a sick twisted mind could be that rude and ignorant. elaine: maybe some mental defective put something stupid on her leg. jerry: even if this so called mental defective did put something on her leg she's still the one who laughed. noel: i'll never forget that laugh for the rest of my life. [exits] elaine: i'm sure she would apologize if she could. probably somebody is holding her back against every fibre in her being. george: if she want's to continue to have a fibre of her being she'll be very careful (hitting each other) george: all right, so are you ready, so we'll go out and get something to eat. noel: i don't feel like it tonight. jerry: we'll be outside elaine: yeah jerry: it was nice meeting you by the way, how do you warm up your fingers before you play? noel: i just crack my knuckles. george: we'll have a good time noel: i don't feel like it george: ah, come on noel: i said i don't feel like it! george: um, all right, um, uh, i'll call 'ya. i'll call you and we'll talk on the phone. a telephone communiqu. every thing is fine ok, uh, fine, .. [exits] jerry: you know i thing kramer might have been responsible for getting richie involved with drugs in the first place. elaine: what? how? jerry: a few years ago the comedy club had a softball team. kramer was our first baseman you couldn't get anything by him it was unbelievable. anyway this one game we came back to win from like 8 runs behind. so kramer says to richie why don't you dump the bucket of gatorade on marty benson's head? the club owner. so richie goes ahead and does it. elaine: so? what happened? jerry: what happened? the guy was like 67 years old, it was freezing out, he caught a cold, got pneumonia, and a month later he was dead. elaine: shut up! jerry: all the comedians were happy. he was one of these club owners nobodu liked anyway. but richie was never the same. elaine: whar about kramer? jerry: he's the same! jerry: are you sure you want me john. i have spoken to richie in two years. i don't have a good apartment for an intervention. the furniture, it's very non-confrontational. all right all right. goodbye. [to kramer] remember ricie appel? kramer: (looks shocked) oh sure, the guy i told to pour the gatorade that killed marty benson? jerry: right, we'll john mollika is organizing some kind of intervention for him. we're having it here. kramer: can i get in on that? jerry: what do you think? it's like a poker game? kramer: is elaine going? jerry: yeah kramer: well, i knew him as well as she did. jerry: yeah, but john invited her. kramer: so what are you saying, you don't want me to intervene? jerry: no, intervene, go intervene all you want. i am just afraid you might be interfering while we're intervening. george: it's george jerry: stop smelling your arm. kramer: you know i got a great idea for a cologne. the beach. you spray it on and you smell like you just came home from the beach jerry: hum, a cologne that smells like the beach. i can't believe i'm saying this, "that's not a bad idea." kramer: tell me about it! jerry: why don't you call steve d'jiff, he works in the marketing department at calvin klein. in fact he's a good friend of john mollika and richie also. george: well it's over. it's definitely over. jerry: she broke up with you? george: no, but i can tell she's going to. i can sense it. we had this terrible phone conversation. i was so nervous before i called i made up this whole list of things to talk about. jerry: what was on the list? george: let's see, how i'm very good at going in reverse in my car, why isn't postum a more popular drink, jerry: yeah, postum is under-ratted, george: anyway there was all this tension. i asked her if she wanted to go out to dinner and she said "no, maybe we could get together for lunch." you know what that means. jerry: what's wrong with lunch? george: lunch is fine at the beginning then you move on to dinner. you don't move back to lunch. it's like being demoted. i'll never do another crossword puzzle with her again. i know it. kramer: i like the jumble you ever do the jumble? george: i have no power do you understand? i need hand. i have no hand. kramer: break up with her george: what? kramer: you break up with her. you reverse everything that way. jerry: a preemptive breakup. george: a preemptive breakup. this is an incredible idea. i got nothing to lose. we either break up which she would do anyway but at least i go out with some dignity. completely turn the tables. it's absolutely brilliant. george: so, i am have to going to break up with you. noel: you're breaking up with me? george: i, ... am breaking up with, ... you. noel: wow. george: shocked? noel: i really am. george: never expected this did you? noel: i thought everything was fine. george: well, live and learn. noel: i don't understand. you're breaking up with me. didn't we have fun doing the crossword puzzles? george: kind of. noel: i'm very confused. george: well, i didn't mean to hurt you kid. noel: i thought,... george: now, stop it ... noel: what do you want, i can make you happy. george: when you're playing the piano do you think about me? noel: i don't know. george: this is what i'm talking about. noel: ok, i'll think about you. george: all the time. noel: all the time? ... ok, all the time. george: i can't hear you. noel: all the time. all the time. george: see, it's not so hard. kramer: go ahead smell, smell steve: yeah, so? kramer: do you recognize it? ... the beach. steve: what are you talking about? kramer: oh, i'm talking about the beach. steve: what about it? kramer: you know the way you smell when you first come home from the beach? well, i want to make a cologne that captures the essence of that smell. oh yeah. steve: that is the dumbest idea i have ever heard. kramer: oh, wait, did you here what i just said? steve: do you think people are going to pay $80 a bottle to smell like dead fish and sea weed? that's why people take showers when the come home from the beach. it's an objectionable offensive odour. kramer: so you don't think it's a good idea? [the intervention [note: double check this part for sure!!!!] guy: the membranes get dried and it just starts bleeding. since i was a kid so i have to stick tissue up there elaine: (very uninterested) uh, you have to work like that? guy: nobody minds nobody has ever said anything to me. other guy: are there any ice cubes? jerry: in the freezer. other guy: i looked. there aren't any ice cubes. jerry: well i guess there aren't any ice cubes. other guy: i can't drink this. it's warm! (walks away) guy: shouldn't we rehearse this a little bit before richie comes? steve: what's the plan? jerry: do i have to talk? i don't feel like talking. other guy: well, if he's not going to talk i'm not going to talk either. guy: no, we all have to talk. elaine: what's the order? guy: we'll go in alphabetical order. first roberta. roberta: why am i first? elaine: albano is your last name. roberta: that's not my name any more. i'm divorced. steve: i'll go first. kramer: hey. jerry: hey. kramer: is this the interference? jerry: intervention. other guy: what are you doing here? kramer: uh, is it all right if i stay for the intervention? steve: hey, this is for close friends only. kramer: i'm a friend. who do you think told him to pour the gatorade over marty benson's head? other guy: let him stay. kramer: hey, you know i got someone to make up that cologne for me, big mouth. steve: somebody's going to make that crap? old guy: kramer! kramer: hey, come on, these are some of my polar bear buddies. other guy: they can't stay. old guy: we're having a party here? jerry: no, we're having an intervention old guy: an intervention? who's intervening? jerry: there's a friend of ours on drugs and we're going to confront him. old guy: sure, we used to do that when one of our polar bears stopped coming. we would go to his house and say, "what you don't want to be a polar bear anymore? it's too cold for you?" guy: it's him. roberta: what should we do? elaine: hide! jerry: it's not a surprise party! yeah (to intercom) george: it's george jerry: yeah, come on up. ... it's not him. guy: if you don't go out with me it's because i'm a bar tender. elaine: look, i don't think this is appropriate right now. guy: is it because i have a tissue in my nose? elaine: you're getting warm. george: we just came from chadway's(?) what's going on. jerry: we're having the intervention for richie. george: oh, right, right, the intervention. should we leave? jerry: well, uh.. noel: (happily) elaine, hi. elaine: oh, hi noel jerry: well, you're looking well. george: jerry, let me tell you something, "a man without hand is not a man." i got so much hand i'm coming out of my gloves. i got to thank kramer. steve: even if i were dragged through manure i still wouldn't put that stuff on. george: (to kramer) this man is a genius. genius! steve: you think so? george: i don't think so i know so, kramer, come here i got to talk to you old man: the male kangaroo doesn't have a pouch only the female has it. the male has pouch envy. elaine: (chuckles) elaine: (laughs) noel: that laugh. that's the laugh. that's it. you're the one. elaine: no, no. it was an accident. it really wasn't my fault. it was jerry. noel: you put a pez dispenser on her leg during my recital?. jerry: i didn't know she would laugh. noel: you lied to me george, you lied to me. george: no, i, uh, um, wa, wa, what did i do? ... where are you going? noel: i ... am breaking up ... with you! george: you can't break up with me. i've got hand. noel: and you're going to need it. jerry: hey richie richie: so what's going on? jerry: it was pretty ugly from the get go. he's not listening, he's hostile, he's talking back. george: i can't do these puzzles. jerry: so he starts to get up he spots the pez dispenser on the coffee table george: ah ah pez dispenser. jerry: he picks it up - he stares at it - it's like he's hypnotized by it. then he's telling us this story about how when he was a kid he was in the car with his father, and his father was trying to load one of them george: well they're hard to load. jerry: tell me something i don't know. so as the father's trying to load it he loses control of the car and it crashes into a high school cafeteria. nobody's hurt but pez is all over the car. and the dispenser was destroyed virtually beyond recognition. george: poor kid. jerry: so as he's telling the story he starts crying. george: what did you do? jerry: what do you think? i gave him my pez dispenser. george: wow jerry: two hours later he checks into smither's clinic. i talked to the doctor yesterday. he's doing great on the rehab. he's hooked on pez. he's eating them like there's no tomorrow. george: what's a three letter word for candy? jerry: i can't do those things. jerry: let me ask you a question. if you named a kid rasputin do you think that would have a negative effect on his life? elaine: na. jerry: what are you doing? were going out for dinner in ten minutes. elaine: do you realize this is the last meal i am going to have for three days? jerry: yeah. george: its george. jerry: come on up. . . . i never heard of this. youve got to fast for three days to take an ulcer test. how you gonna do that? elaine: i dont know. how could i possibly have ulcers? who could have given me ulcers? jerry: i think ill take out the garbage. elaine: hey, have you ever fasted? jerry: well, once i didnt have dinner until, like 900 oclock, that was pretty rough. (exits to hall with garbage meets george) hey, do me a favour will ya? throw out my garbage for me. george: yeah, right. jerry: come on, its just down the hall. george: give me two bucks. ill do it for two bucks. jerry: ill give you 50 cents. george: theres no way i touch that bag for less than two dollars. jerry: come on. fifty cents. (??) a piece of drakes coffee cake george: youre not getting no drakes coffee cake for fifty cents. yae, hey, im all set. i got the ticket. im going to the cayman islands this friday. jerry: i dont get you. who goes on vacation without a job? what do you need a break from getting up at eleven? george: its an incredible deal. i dont know why you dont come with me. jerry: nah, i dont go for these non-refundable deals. i cant commit to a woman. im not going to commit to an airline. gina: hi. jerry: hi. gina: how are you? jerry: gina, do you know what a drakes coffee cake is? gina: of course, the plane cake with the sweet brown crumbs on the top. jerry: how much do they cost? gina: the junior? george: no, no the full size. jerry: no, no the junior. george: you didnt say "junior". gina: i havent had one of those since i was a little girl. jerry: really? you should be ashamed of yourself. i want you out of here! (martin enters the hall) how ya doing? martin: good enough. jerry: boy shes sexy isnt she? jerry: do you believe that guy? elaine: what guy? jerry: my neighbour elaine: oh, that creepy guy? jerry: yeah, did he think i was flirting with her? george: he didnt seem too pleased. elaine: maybe ill get a steak with french fried onion wings. george: hey, you know what? i just remembered something. i had a dream about that guy last night. this is amazing. jerry: whats so amazing? youve seen him before. george: i havent seen him for months. jerry: what was the dream? george: i was doing standup comedy in kennebunkport maine. ??? night club. the stage was on a cliff and the audience was throwing all the comics off. jerry: i think ive played there. george: ive had a lot of other paranormal stuff happen to me. jerry: youre a little paranormal elaine: hey, george, you know my friend goes to a psychic. george: really? elaine: uh uh, you should go some time. george: id love to go. make an appointment. jerry: psychics, vacations. how about getting a job? george: i just got fired. jerry: alright, come on, lets get out of here. elaine: i wonder what ghandi ate before his fast. jerry: i heard he used to polish off a box of triscuits. elaine: really? jerry: oh, yeah. ghandi loved triscuits. jerry: who is it? who is it? gina: its gina. jerry: who? gina: martines girl friend. jerry: martine? gina: you next door neighbour. jerry: oh, martin! george: its martine. i think hes dying. he tried to kill himself with pills. jerry: what? gina: come on. jerry: in my pajamas? i better get my robe. gina: we dont have enough time. jerry: itll take two seconds. gina: there is no time. jerry: we dont have two seconds? gina: all right. go ahead. jerry: nah, forget it. gina: no, go ahead. jerry: nah. ill just wear the pajamas. gina: will you just get it. jerry: are you sure? gina: forget it. come on. jerry: nah, ill go get the robe. jerry: thats not too bad. its not like a sunny von bulow comma. the doctor said he should snap out of it anytime. gina: you know why he did this? because i told him it was over. i did not want to see him anymore. jerry: really? its over? gina: i could not stand it another minute. yesterday he turned over a mans hot dog stand because he thought the man was looking at me. and then after he saw you in the hall. ach, he was crazy with jealousy. jerry: oh boy, did he say anything about me? gina: he does not like you. and all indications are he does not like drakes coffee cake. jerry: he said that? gina: he was screaming about it all night. how its too sweet and it falls apart when you eat it. jerry: im sorry if i caused any trouble. i was just being friendly. gina: i wasnt. jerry: you werent? gina: no, i have thought about you many times. have you thought about me? jerry: of course. gina: tell me everything. jerry: are you sure he cant hear anything? . . .martin, martin. gina: i wish he was not in a coma. i wish he was dead. i wish i could pull the plug out from him. jerry: i, would, i would wait on that. i know how you feel but. juries today, you never know how theyre going to look at a thing like this. gina: i saw you looking at your watch. you want to leave? go ahead. jerry: no, i just wanted to see what time it was. gina: are you afraid of him? jerry: no. gina: then kiss me. jerry: here? gina: yes, right here. jerry: is this the proper venue? gina: you dont want to? jerry: no, no, i want to. i, i very much want to. i, i desire to. i, i pine to. gina: then kiss me right in front of him. jerry: i cant. what if he wakes up? gina: a man is lying here unconscious and youre afraid of him? what kind of a man are you? jerry: a man who respects a good comma. if it was one of those in and out comas, maybe. but when a guys got a coma going like this you dont want to mess with it. kramer: hey. jerry: hey. kramer: did you hear about martin? jerry: yeah, i heard. kramer: i cant believe hes in a coma. kramer: hes got my vacuum cleaner. you know i loaned it to him. he never returned it. the carpets are filthy. what am i going to do? jerry: who told you about martin? kramer: newman! hes good friends with him. jerr: oh, big mouth newman. i should have guessed. kramer: hes got all of my attachments, you know. jerry: hey, let me ask you something. how long do you have to wait for a guy to come out of a coma before you can ask his ex-girlfriend out? kramer: what, gina? why wait? why not just call doctor kavorkian? jerry: you know i dont get that whole suicide machine. theres no tall buildings where these people live? they cant wrap their lips around a revolver like a normal person? kramer: so whats going on between you and gina? jerry: well, i went with her to the hospital last night. kramer: uh, uh. jerry: so were in the room and shes trying to get me to kiss her right in front of him. kramer: uh, uh, you see thats the great thing about mediterranean women. all right, so what did you do? jerry: nothing. kramer: ah, what kind of a man are you? the guy is unconscious in a coma and you dont have the guts to kiss his girlfriend? jerry: i didnt know what the coma etiquette was. kramer: there is no coma etiquette. you see thats the beauty of the coma, man. it doesnt matter what you do around it. jerry: so youre saying, his girl, his car, his clothes, its all up for grabs. you can just loot the coma victim. kramer: id give him 24 hours to get out of it. they cant get out of it in 24 hours, its a land rush. jerry: so if the coma victim wakes up in a month, hes thrilled, he got out of the coma. he goes home, theres nothing left? kramer: nothing left! thats why im trying to get that vacuum cleaner. because somebodys going to grab it. rula: martins spirit came to you as a warning. elaine: why would he come to george? rula: because george has heightened extra sensory perception. faygy get your finger out of your nose. george: i knew it. i always felt different. rula: you are. some coffee cake? george: drakes? rula: yes. george: did you buy this for me? rula: no, why? george: ha, because i love drakes coffee cake. rula: maybe i did. elaine: take it away. george: she hasnt eaten in two days. rula: whos pauline? george: pauline? . . . wait a minute. i got it. my brother once impregnated a woman named pauline. rula: do you think about her? george: when i hear her name mentioned. rula: cut these with your left hand. george: there was a woman, audrey. she had a very big nose. rula: i see an audrey, but with a small nose. george: yes, yes, she had a nose job. i loved her very deeply. will she ever speak to me again? rula: not in this life. elaine: should you be smoking? rula: does it bother you? elaine: youre pregnant. george: elaine. rula: i smoked when i had faisy. rula: ah oh. george: ah oh? what? what ah oh? rula: i dont know about this trip george. george: you can see the cayman islands in there? is something going to happen to me? what? elaine: its really bad for the fetus. do you know that. george: elaine, shes a psychic. she knows how the kids going to be. george: should i not go on this trip? rula: george, i am going to tell you something and i want you to really hear me. elaine: now listen. i just dont know how a person, with everything we now know about pre-natal care can put a cigarette in her mouth. george: elaine, what are you doing? elaine: its disgusting. rula: i dont belive it. i would like you both to leave. elaine: oh fine, i dont like to be around people who are just so irresponsible. rula: get the hell out. george: a plane crash? a heart attack? lupus? is it lupus? rula: do you want me to call the super? he was an israeli commando. george: if you dont say anything i will assume its a plane crash. rula: get out. george: not a plane crash. (leaving) is it a plane crash? gina: i do not like your toothbrush. there are no bristles. jerry: you can say what you want about me but ill be damned if im going to stand here while you insult my toothbrush. gina: it is too small for someone with such a big mouth (kisses kerry). let me ask you. what will you do if martine wakes up? run away like a mouse? jerry: no, more like the three stooges at the end of every movie. gina: who are these stooges you speak of? jerry: theyre a comedy team. gina: tell me about them. everything. jerry: well, theyre three kind of funny looking guys and they hit each other a lot. gina: you will show me the stooges? jerry: i will show you the stooges. gina: when? jerry: well, i dont really know where the stooges are right now but if i locate them you will be the first to know. gina: come, you walk me to a cab. jerry: well, uh, i uh, i dont want you to get upset or anything but uh, with martin and all, well maybe its not such a good idea for us to be seen together in the building, because, you know, he had a lot of friends here. gina: youre still afraid. you are not a man. jerry: well then what are all those ties and sport jackets doing in my closet? gina: are you going to walk me to a cab or not? jerry: yeah, all right. all right. kramer: you should just eat fruit. newman: i cant eat fruit. it makes me incontinent. kramer: ??? newman: hello gina. hello jerry. jerry: hello newman. jerry: do you think newman would tell martin if he wakes up? what kind of sicko would do that? he could kill me. george: people smoke, elaine. my mother smoked. it didnt hurt me. elaine: (jumps with fear to jerry) did you see that wall move? jerry: boy, its a good thing we came. george: could there be a native p0roblem in the caymans? maybe theres native unrest. elaine: hi, i havent eaten in three days. i was wondering how much longer it would be until i get my x-ray. nurse: well call you. jerry: george, i want you to promise me something. if im ever in a comma. in the first 24 hours get everything out of my apartment and put it in storage. george: how come? jerry: looters. elaine: how do we know that dog food is any good? who tastes it? jerry: shes really hungry. kramer: hey. elaine: kramer kramer: well, newmans upstairs visiting martin. george: would you buy my cayman island ticket? kramer: youre not going? george: no. kramer: why not? george: the psychic said something terrible will happen. kramer: i dig. kramer: i want my vacuum cleaner! i know you can hear me. look my mother, shes going to come and visit me. she sees that rug, shes going to kill me. newman: he cant hear you, you idiot. why dont you just buy another one. kramer: why would i buy another one when i spent a hundred bucks on this one? newman: i have a carpet sweeper you can use. kramer: i dont want a carpet sweeper. they dont do anything. newman: it gets my rug clean. kramer: the carpet sweeper is the biggest scam perpetrated on the american public since one hour martinizing. newman: well, you should take a look at my rug then. kramer: i wouldnt set foot in your house. jerry: hello. newman: hello jerry. jerry: hows he doing? kramer: he looks happy to me. newman: i hope he stays this happy when he wakes up. jerry: why wouldnt he? newman: no reason. jerry: hell have a lot of catching up to do, i guess. newman: ill bring him up to date. jerry: how up to date? newman: oh, all the way up. jerry: and nothing could change your mind? newman: well, it would take a hell of a lot. because a friend is something you earn. kramer: okay, jerry has a friend who has free tickets to the cayman islands for this weekend. hes not going. newman: i dont care much for the beach. i freckle. . . . is that a,.. jerry: drakes coffee cake newman: wow, where did you get that? jerry: from my house. i got a whole box of them. newman: boy, thats the full size. jerry: thats your big boy. newman: can i have a bite? jerry: i dont give out bites. i got another one. but im saving it for later. newman: just one bite? jerry: i dont think so. you know they, theyre so fragile. newman: all right! all right. i wont say anything. jerry: you swear? newman: i swear. jerry: on your mothers life? newman: on my mothers life. kramer: oh oh oh oh oh newman: oooh, elaine: and there it was, mountains of duck. and not fatty duck either, but juicy tender breasts of duck. george: sweetheart, no come here, sweetheart rula: pew, pew, pew, pew (breathing) george: how did i know you were here? something drew me here. this is phenomenal. rula: the nurse said she would be right back. theyre supposed to take me into the delivery room. george: oh, thats great. thats great. by the way i have to apologize for my friend the other day. friend? uh, uh i dont even know that woman. i met her on the bus on the way over. i couldnt get rid of her. uh, my psychic instincts were a little off .. rula: oh, wheres the nurse george: i dont know where the nurse is. sweetheart why dont you get a nurse for mommy? anyway i was just curious. remember the other day you were saying something about my trip. rula: dont take that trip. george: yeah, why? why? rula: (screams) eeey, beegit, beegit beegit. dx: all right, rula, its time to go. george: because? because? elaine: assassins! how dare they keep a person waiting like this! drakes coffee cake? give me that. newman: jerry, you better stop her or ill tell. jerry: elaine! no! no! martin: ooooh, ahhhh, george: are there terrorists on the plane? a hotel fire. is that it? malaria? yellow fever? lupus? is it lupus? newman: he did it right in this bed, martin. right in front of you. kramer: i want my vacuum cleaner! jerry: hey! newman: it was disgusting. jerry: what are you doing? were going out to dinner in ten minutes. george: i never assisted in a birth before. its really quite disgusting. jerry: what did she name the kid? george: you wouldnt believe it. rasputin. kramer: heey! george: hey. jerry: hey. george: when did you get back? kramer: a couple of hours ago. george: so how was it? kramer: george, i would like to thank you for the greatest four days i ever spent in my life. jerry: osh. kramer: they were shooting the sports illustrated swim suit issue right in the hotel pool. jerry: woah. (hitting george) kramer: not only that but at the hotel they opened up this area on the beach for nude bathing and all of the sports illustrated models went down there. jerry: wow! (hitting george) kramer: i was on the next blanket from elle mcpherson jerry: oh! (hitting george) kramer: we played backgammon in the nude. jerry: oh! (hitting george) kramer: shes a sweet kid. jerry: nude backgammon with swimsuit models! kramer: oh, you know what? the second day i was there i stepped on a jellyfish. now it kind of stung my foot. thats probably what rula was trying to warn you about. george: yeah, you gotta watch for the jellyfish. kramer: yeah. kramer: whats this? jerry: oh, its an invitation to a house warming from martin and gina. kramer: they moved in together? jerry: yeah, its some place down in the village. kramer: phew. jerry: yeah. elaine: its elaine. jerry: all right were coming down. kramer: hey, where ya going? jerry: were taking elaine to dinner. shes got to start the fast again. um, you want to go? kramer: um, id like to but a bunch of us from the islands, well be getting together. george: elle mcpherson going to be there? kramer: oh! i got to call her back. george: why even try anymore? there's no sense to it. i'm never gonna meet anybody, i should just accept it. jerry: oh, yes you will. george: no, i won't. jerry: yeah, maybe you won't. george: i mean it's hard enough to meet a woman you dislike, much less like. jerry: are my nostrils getting bigger? george: no. why must it be so difficult? why is there all this tension and hostility? why can't i just walk up to a woman on the street and say, "hi. i'm cynthia: there's just no men out there, you know? elaine: i know. cynthia: i mean the problem is that the good ones know they're good. and they know they're in such demand they're just not interested in confining themselves to one person. elaine: i hate the good ones. cynthia: is jerry one of the good ones? elaine: that's a good question, i think he thinks he is. cynthia: well, the mediocre ones are available, but they're so insecure about not being one of the good ones that they're always going, "well i'm not good enough for you, what are you doing with me?" and eventually i just go, "you're right." elaine: you know, maybe you need somebody between good and mediocre. cynthia: no, maybe i need somebody who has nothing, somebody who just has to appreciate being with me because he's so desperate. george: i mean it's gotten to the point where i'm flirting with operators on the phone. i almost made a date with one. jerry: oh, so there's still hope. george: i don't want hope. hope is killing me. my dream is to become hopeless. when you're hopeless, you don't care, and when you don't care, that indifference makes you attractive. jerry: oh, so hopelessness is the key. george: it's my only hope. cynthia: see, i wouldn't really mind so much, but i feel badly for my mother. i mean, if my mother weren't around, it wouldn't be so bad. but, i'm telling you, if i'm not married by the time i'm forty, i'm gonna have to kill her because it's the only fair thing to do. i just couldn't put her through that. elaine: well, at least you're not bitter. cynthia: who says i'm not bitter? elaine: aren't you too young to be bitter? cynthia: no, you can be young and bitter, just maybe not as bitter as i'm gonna be ten years from now, but i'm bitter. anyway, don't tell anyone. elaine: don't worry, your bitterness is safe with me. cynthia: um, order me a piece of cake. i'm gonna go throw up. jerry: look at my hands. look. filthy from the paper. you know, they should give you a wet-nap when you buy one, like at those rib joints. elaine: so what'd you do last night? jerry: went out with george, you? elaine: went out with cynthia. jerry: how was it? what'd you talk about? elaine: well, you know, the usual; the federal reserve, the rainforest. cynthia thought we should nuke the rainforest, you know, get rid of it in one fell swoop so we can at least eliminate it as a subject of conversation. what about you? jerry: we brushed on that. actually, george was in rare form. he just can't find anybody. elaine: i know, cynthia too. she's really given up. jerry: george too. jerry and elaine (together): yeah, right. jerry: i've never fixed anybody up. elaine: uh, me neither and i am not about to start with george. jerry: well why wouldn't you start with george? you think she's too good for george? elaine: i didn't say 'too good', did i say 'too good'? jerry: well you implied it. elaine: i didn't say it. jerry: because if you think she's too good for george, you are dead wrong. dead wrong. who is she? elaine: who is he? jerry: he's george! elaine: she's cynthia! jerry: so what? elaine: what, you don't think she's beautiful? jerry: i don't know, what's with the eyebrows? elaine: you know what your problem is? your standards are too high. jerry: i went out with you. elaine: that's because my standards are too low. and by the way, you know, women kill for eyebrows like that. do you know that? i mean women pluck their real eyebrows out of their head, one by one, until they're bald, jerry. bald above the eyes! and then they paint in these eyebrows to look like that. jerry: well let me tell you something about george. he is fast. he can run like the wind. and he's strong. i've seen him lift a hundred pounds over his head without even knowing it. and you wouldn't know it to look at him, but george can bait a hook. elaine: he can really do that? jerry: come on, let's do it, i think they'll really get along. elaine: what, are you into this? jerry: yeah, come on, it's a good match. elaine: no, wait a minute, wait a minute. they're gonna be telling us how their dates went. are we gonna share that information? jerry: naturally. elaine: well, wait a minute, we're gonna tell each other everything, i mean every secret? jerry: everything. elaine: what if it worked out? jerry (dialing): yeah right. george: out of the question. out of the question! jerry: why? george: no! i'm not gonna do that! that's one step away from personal ads! and prostitutes! no! no, i am not going down that road! what does she look like? jerry: she's good looking. george: how good looking? jerry: very good looking. george: really good looking? jerry: really very good looking. george: would you take her out? jerry: yes, i would take her out. george: oh, you hesitated. jerry: what hesitate? i didn't hesitate! george: no, something's off here, you hesitated. jerry: i'm telling you, she's good looking. george: what about the body, what kind of body? jerry: good body, nice body. george: how nice? jerry: nice. george: just nice? jerry: pretty nice. george: really good? jerry: really very nice and good. george: what about personality? jerry: good personality. funny. bright. george: smarter than me? i don't want anyone smarter than me. jerry: how could she be smarter than you? george: alright, let's see, let's see. what else. what else. oh yeah, what does she do? cynthia: first of all, what does he do? elaine: he was in real estate, um, now, he's not working right now- cynthia: he's not working?! how come he's not working? elaine: well, um, he, he got fired. cynthia: why did he get fired? elaine: uh. why? oh, right. um, well, he tried to poison his boss. cynthia: excuse me? elaine: such a long story, cynthia, seriously, i mean he just had some problems at work. cynthia: is he nuts? elaine: no, no, no, he's a really really funny guy. cynthia: what does he look like? elaine: pardon? cynthia: what does he look like? elaine: um, well, he's got a lot of character in his face. um, he's short. um, he's stocky. cynthia: fat. is that what you're saying, that he's fat? elaine: powerful. he is so powerful, he can lift a hundred pounds right up over his head. and um, what else. what else. oh, right. um, well, he's kind of, just kind of losing his hair. cynthia: he's bald? elaine: no! no, no, no, he's not bald. he's balding. cynthia: so he will be bald. elaine: yup. george: what kind of hair? jerry: you know, long dark hair. george: flowing? jerry: flowing? george: is it flowing? i like flowing, cascading hair. thick lustrous hair is very important to me. jerry: 'thick lustrous hair is very important to me,' is that what you said? george: yeah, that's right. jerry: just clarifying. george: let me ask you this. if you stick your hand in the hair is it easy to get it out? jerry: do you want to be able to get it out or do you want to not be able to get it out? george: i'd like to be able to get it out. jerry: i think you'll get it out. george: what about the skin? i need a good cheek, i like a good cheek. jerry: she's got a fine cheek. george: is there a pinkish hue? jerry: a pinkish hue? george: yes, a rosy glow. jerry: there's a hue. she's got great eyebrows, women kill to have her eyebrows. george: who cares about eyebrows? is she sweet? i like sweet. but not too sweet, you could throw up from that. jerry: i don't think you'll throw up. *she* likes to throw up. cynthia: has he ever been married? elaine: no. cynthia: has he been close? elaine: he once spent a weekend with a woman. cynthia: he didn't really try to poison his boss? elaine: yeah, he did. george: we had an incredible phone conversation. we talked for like twenty minutes. i threw away my notes in the middle of the call. you know, i thought she had a great voice timbre. is it timbre or tamber? jerry: i think it's tamber. george: why'd i think it was timbre? yeah, she could do voiceover commercials, why didn't you tell me about her voice? jerry: i didn't notice the voice. george: it's mellifluous! jerry: so, saturday night. george: she had to be impressed by that conversation, had to! it was a great performance. i am unbelievable on the phone. on the date they should just have two phones on the table at the restaurant, done. elaine: hi. george: hey! saturday night! elaine: i know! george: so, what did she say? elaine: she said you're getting together saturday night! george: that's it? elaine: yeah! george: she didn't mention anything about the conversation? elaine: no. george: now, you see, i don't get that. we had a relaxed stimulating, great conversation, she doesn't mention it? why doesn't she mention it? elaine: what? jerry: she could have mentioned the conversation. george: alright, alright, i'll go on the date, but that's that. kramer: hey. jerry: hey. kramer: you know my friend, bob sacamano? jerry: oh, the guy from jersey? kramer: yeah. he just got a job at a condom factory in edison. look at this, he gave me a gross. george: what are you gonna do with all of them? kramer: oh, well... come on, take some, jerry. grab 'em. jerry: no thanks, they look like they came out of a cereal box. kramer: come on, elaine, here, take half a bag. elaine: half a bag? what am i, a hooker? anyway, they look kind of cheap. george: i'll take one. it's possible. jerry: so where are they already, it's a quarter to twelve, they should be back by now, what did they do? elaine: i think they went out to dinner. jerry: wait, i got another call. that must be him. [clicks over] hello? george: yeah, it's me, i just got home. jerry: oh, hold on. [clicks back] it's george, he just got home. elaine: yeah, yeah, i got cynthia on the other line. jerry: alright, i'll call you back as soon as i'm done. elaine: remember our pact. full disclosure. jerry: of course. [clicks back to george] yeah, go ahead. george: alright look, i'm gonna tell you, but i made a pact with cynthia, we swore we were not going to tell you and elaine. jerry: you can tell me, i'll vault it. george: it's in the vault? jerry: i'm locking the vault. what? george: we had sex. jerry: oh my god, you had sex, how did that happen? george: i don't know. i closed my eyes and made a move. jerry: at your apartment? george: yeah. jerry: she didn't stay over? george: no, she left. listen, you can't mention any of this to elaine. cynthia will kill me, we made a deal. elaine: oh my god. cynthia: he was uncomfortable because it was our first time so he felt he would perform better if we did it in the kitchen. he said the kitchen is always the most sociable room in the house. and he was serious. elaine: so? how was it? cynthia: how good could it be? my head was on a hot plate. elaine: wait, i got another call, that must be jerry. cynthia: oh wait, don't you tell him any of this. elaine: yeah, ok. [clicks over] hello? jerry: so, what did she have to say? elaine: what did he have to say? jerry: he said they had a good time. elaine: her too. jerry: oh, good. elaine: anything else? jerry: nope. you? elaine: nope. jerry: you sure? elaine: yup. you? jerry: yeah. elaine: alright. well uh, guess everything is under control. jerry: yeah. okay then. elaine: alright. goodnight. jerry: goodnight. george: i left three messages. i can't believe this woman. she has sex with me, leaves ten minutes later then i never hear from her again. what kind of a person does this? i mean, she used me. i feel cheap and violated. jerry: well, i'm gonna do something about this. george: what are you gonna do? jerry: nevermind. disgraceful. leaves you sitting there on the kitchen floor like some kind of roach trap. wham, bam, thank you ma'am. sir, whatever. she's not going to get away with this. george: i keep wracking my brain to try and figure out what i did. i was smart, i was funny, i made great small talk with the waitress so she could see i could relate to the commoners, you know, i'm a man of the people. jerry: i'm gonna call her. george: no, don't call her. jerry: no, i'm calling her. george: no, jerry, don't call. jerry: no, forget it, i'm gonna call. george: i don't want you to call. jerry: get away from me, i'm gonna call her. george: give me the phone! jerry: george, do you wanna fight? do you wanna fight? george: jerry, i'm gonna kill you! kramer: hey hey hey!! come on! jerry, george, now stop it! jerry: i'll just call her when you leave! george: you can't do that, it's none of your business! jerry: it is so my business! kramer: hey hey hey! i don't want to hear another word out of either one of you! george: but tell him to give me the-- kramer: ay ay ay! the next one of you that opens up your mouth, says something, you're gonna have to deal with me. you know, i bet i know what this is about. it's about a woman, isn't it? george: no. jerry: yeah, but-- kramer: yeah yeah! you see, this is exactly what they want to do to you. they play one against the other. you can't let them manipulate you like that. jerry: but kramer-- kramer: noh noh noh! i want you guys to shake hands. come on, there are plenty of women out there for all of us, let's go. kramer: yes. you see? isn't that better than fighting? animosity? i mean, you wanna fight with somebody, you fight with me. oh, by the way george, you know those condoms i gave you? they're defective, don't use them. george: what? kramer: right. george: defective?! kramer: defective. george: (attacking kramer) how could you give me a defective condom?! kramer: i didn't even know they were defective. kramer: didn't even thin you were gonna use them. george: what do you mean you didn't think i wasn't gonna use them?! jerry: take it easy, you guys, just spread out! don't worry about it, if anything was wrong she would have called you already! cynthia: i missed my period. elaine: oh my god. cynthia: i am very worried, i am never late. elaine: but he used a condom, right? cynthia: i know, but these things aren't always foolproof. elaine: oh no. cynthia: what? elaine: was it blue? cynthia: yeah. how'd you know? elaine: just a hunch. jerry: ow! ow! twist off! twist off! twist off! jerry: oh, hi. soda? elaine: no thanks. jerry: so tell me. what's the problem with your little flaky friend? she doesn't return calls? elaine: who are you to talk about her like that? she'll call him when she's good and ready. you don't even know her. jerry: oh, i know her. i know her type. elaine: her type? what type? jerry: the type that doesn't return phone calls. i knew we shouldn't have done this, it was a bad idea in the first place, i told you! elaine: you told me? you pushed this whole thing on me, it was your idea! jerry: i was just trying to help your bitter, twisted friend. elaine: she's not bitter! jerry: well, bitter's a judgement call, but she's twisted! elaine: twisted? god, i did you a favor. jerry: i thought you said they had a good time, is there anything else you're keeping from me? elaine: are you calling me a liar? jerry: i'm calling you one if you are one, are you a liar? elaine: are you? jerry: get your finger out of my face. elaine: you get yours out, i was here first! jerry: i don't care. elaine: get it out! kramer: hey hey, alright, hey hey, stop it! come on, break it up! what's the matter with you? now don't you two see that you're in love with each other? i mean, why can't you face that already? you're running around out there looking for something that's not even there, when everything that you dream of is right here, right here in front of you. now why can't you admit that? by the way, when you see george give him these, these'll work. elaine: i knew those condoms were defective! jerry: how did you know they were defective?! elaine: because! because she missed her period! george: she missed her period? oh my god. i can't believe it! i'm a father! i did it! my boys can swim! i can do it! i can do it! cynthia: so he shows up. he's all out of breath. he's disheveled. and he tells me that no matter what happens, whatever i decide is fine with him and that i could depend on him, and that he would be there to support me in whatever way i need. elaine, i was speechless. elaine: wow. wow. you see? you think you know somebody. cynthia: i said to him, "i really appreciate this, but i just got my period." and so, i asked him to come in, he came in-- elaine: hi! george: sorry, we're a little late. we got so hung up in traffic. elaine: what happened? jerry: acting. elaine: very mature. jerry: thank you. hi cynthia. cynthia: hi. jerry: well this is a great place to sit you got here. cynthia: best seat in the house. (looking at george) right next to the kitchen. george: (hitting cynthia playfully with a napkin) stop it, stop it. jerry: so what are these? elaine: oh, we ordered some appetizers. start eating. george: (with a mouth full of food) this is good. oh, this is good. kramer: wide open, i was wide open underneath! i had three inches on that guy. you two were hogging the ball. george: me? it wasn't me i never even saw the ball. all you do is dribble. jerry: i have to dribble, if i give it to you, you just shoot. you're a chucker. george: oh i'm a chucker. jerry: that's right, everytime you get the ball you shoot. george: i can't believe you called me a chucker. no way i'm a chucker, i do not chuck, never chucked, never have chucked, never will chuck, no chuck! jerry: you chuck. geroge: kramer am i a chucker? kramer: you're a chucker. george: all these years i've been chuckin' and you've never told me? jerry: well it's not an easy thing to bring up. kramer: hey you know this is the first time we've ever seen each other naked. jerry: believe me i didn't see anything. kramer: oh, you didn't sneak a peak? jerry: no, did you? kramer: yeah, i snuck a peak. jerry: why? kramer: why not? hey what about you george? george: yeah, i ... i snuck a peak. ... but it was so fast i didn't see anything. it was just a blur. jerry: i made a conscious effort not to look. there's certain information i just don't want to have. kramer: uh, i gotta go meet newman. all right. i'll see you later. jerry: all right kramer: have a good one. jerry: all right george: see ya. george: look at this guy. does he have to stretch in here? jerry: you know who that is? that's george: keith hernandez? the baseball player? jerry: yeah, that's him. george: are you sure? jerry: positive. george: wow, keith hernandez. he's such a great player. jerry: yeah, he's a real smart guy too. he's a civil war buff. george: i'd love to be a civil war buff. ... what do you have to do to be a buff jerry: so biff wants to be a buff? ... well sleeping less than 18 hours a day would be a start. george: ho ho ho ho. you know i only got two weeks left of unemployment. i got to prove i've been looking for a job to get an extension jerry: hey, should we say something to him? george: oh, yeah i'm sure he loves to hear from fans in the locker room. jerry: well he could say hello to me. i wouldn't mind. george: he's keith hernandez. you're jerry seinfeld. jerry: so? george: what are you comparing yourself to keith hernandez. the guys a baseball player jerry, baseball! jerry: i know what he is. i recognized him. you didn't even notice him. george: what, ... you are making some wisecracks in a night club... wo wo wo. the guy was in game six two runs down two outs facing elimination. keith: excuse me. i don't want to disturb you, i'm keith hernandez and i just want to tell you what a big fan i am. i love your comedy. jerry: really? keith: i've always wanted to do what you do. jerry: what i do? you are one of my favorite ball players of all time george: mine too. keith: i love that bit about jimmy olson jerry: thank you. george: you know keith, what i've always wondered, with all these ball clubs flying around all season don't you think there would be a plane crash? ... keith: (to jerry) do you perform anywhere in new york right now? jerry: i'm performing in this club on the east side. you should come in. george: but if you think about it...26 teams, 162 games a season, you'd think eventually an entire team would get wiped out. keith: you know, i live on the east side. jerry: i'll tell you what, i'll give you my number and uh, just give me a call, tell me whenever you want to go. keith: or maybe just to get together for a cup of coffee jerry: oh. that would be great. george: uh, it's only a matter of time. keith: who's this chucker? jerry: it's been three days and he hasn't called. elaine: well maybe you should call him. jerry: i can't ... i can't elaine: why not? jerry: i don't know. i just feel he should call me. elaine: what's the difference? jerry: you don't understand, elaine. i don't want to be overanxious. if he wants to see me he has my number, he should call. elaine: yech, look at this ashtray. i hate cigarettes. jerry: i can't stand these guys. you give your number to them and then they don't call. why do they do that? elaine: i'm sorry honey. jerry: i mean, i thought he liked me. i really thought he liked me. we were getting along. he came over to me i didn't go over to him. elaine: no, jerry: why did he come over to me if he didn't want to see me? elaine: i know. jerry: what did he come over to me if he didn't want to see me? i mean here i meet this guy this great guy, a baseball player, best guy i ever met in my life. .. well that's it. i'm never giving my number out to another guy again. elaine: sometimes i've given my number out to guys and it takes them a month to call. jerry: hu, good, good,... well if he's calling in a month he's got a prayer! elaine: you know maybe he's been busy. maybe he's been out of town? jerry: oh, they don't have phones out of town? why do(?) people say they're too busy. too busy. pick up a phone!! it takes two minutes. how can you be too busy? elaine: why don't you just go ahead and call him? jerry: i can't call here, it's a coffee shop. i mean what am i going to say to him? elaine: just ask him if he wants a to get together. jerry: for what dinner? elaine: dinner's good. jerry: don't you think that's coming on a little too strong? .. isn't that like a turn off? elaine: jerry, he's a guy! jerry: ... this is all .. very confusing. mrs. sokol: you know you only have two more weeks before your benefits run out. george: yes and i was hoping ... to get a thirteen week extension. mrs. sokol: so where have you been looking for work? george: well you know what i've discovered mrs. sokol. it's not so much the looking as the listening. i listen for work. and as i'm looking and listening i am also looking. you can't discount looking. it's sort of a combination. it's looking, and listening, listening and looking. but you must look. mrs. sokol: can you be specific about any of these companies? george: specific, ah, lets see. i've walked in and out of so many buildings they all .. blend in together, i uh, .. mrs. sokol: well just give me one name. george: absolutely, uh, lets see there's, uh, vandelay industries, i just saw them. i got very close there. very close. mrs. sokol: and what type of company is that? george: latex, latex manufacturing mrs. sokol: and you interviewed there? george: yes, for a sales position. latex salesman, the selling of latex, and latex related products. they just wouldn't give me a chance. mrs. sokol: i'm going to need an address and a phone number for this uh, vandelay company... goerge: you like gum? 'cause i have a friend in the gum business. i got a gum guy. i make one phone call. i got boxes of delivered right to your door. mrs. sokol: the address! george: yyyddsshe(?) ... jose jimenez. you recognize it? mrs. sokol: no. george: jose jimenez, ... verrry funny. ..very funny. mrs. sokol: the address! george: uh, uh, vandelay industries, is uh. 129 west 81st street. it's a very small industry vandelay. it's one of the reasons i wanted to uh, work for them. mrs. sokol: the phone number. george: that's uh, kl5-8383. are you calling them soon because, they keep very strange hours. mrs. sokol: as soon as i'm done wit you! george: sure, well uh, you know i'll check in with you next week uh, i gotta run now because i got a full plate this afternoon. all right, really go to uh,. george: (frantically, takes phone and screams...) he'll call you back. kramer: (loungingly talking on phone) it's a par five. so you know i step up to the tee and i hit a beautiful drive right down the middle of the fairway. i mean you know my hook, right? jerry: elaine, how about this shirt? is this okay? elaine: jerry, ... he's a guy! kramer: well it's a dog leg left, so i play the hook right? .. hold on there's another call. george: (frantically) jerry, jerry? kramer: george? george: kramer put jerry on the phone. kramer: (angrily) yeah, look i'm in the middle of something. call back. george: kramer!! kramer no!! kramer: ... so the ball takes of and i'm waiting for it to turn. george: hitting phone kramer: yeah, i'll talk to jerry. yeah, [hangs up] . . . you know that was michael and carol. she's wondering when we're going to come over and see the baby. jerry: oh, see the baby again with the baby.. elaine: who are they? jerry: uh, he's this guy who used to live in the building and they keep calling us to see the baby. jerry: (imitates) ya' gotta see the babi - when are ya' gonna see the babi... can't they just send us a tape? elaine: you know if you waited a few more months it won't be a baby anymore then you wouldn't have to see it. jerry: uh uh because then it would be all grown up. elaine: yeah ha ha ha jerry: hey kramer what do you think of this shirt? kramer: (does a double take) it's too busy elaine: it looks like you're trying too hard to make an impression on him. you're not being yourself. kramer: what guy? jerry: i know he's just a guy but .. i like him. kramer: who are you talkin about? jerry: uh, keith uh hernandez. kramer: keith hernandez? newman: (enters) keith hernandez? george: do me a favor would you? would you change lanes? would you get outta this lane. you gotta get out of this lane. this lane stinks. they're all double parked here please get outta this lane. i'm beggin you please please. george: you know what, bad mistake my mistake do me a favor go back to the other lane - you'll never get there - forget this lane - y'a kn ow what this lane stinks - go back to the other lane - bad decision - go go go take this light - take this light - cabby: that's it get out!! george: get out? cabby: get out of my cab. george: wa, i'm not getting out of this cab george: no, no! you can't throw me out jerry: hellooo newman. kramer: i hate keith hernandez - hate him. newman: i despise him. elaine: why? newman: why? i'll tell you why... kramer: let me tell it .. newman: no, you can't tell it .. kramer: you always tell it .. newman: all right, tell it. kramer: ja ja ja - just tell it newman: june 14, 1987.... mets phillies. we're enjoying a beautiful afternoon in the right field stands when a crucial hernandez error to a five run phillies ninth. cost the mets the game. kramer: our day was ruined. there was a lot of people, you know, they were waiting by the player's parking lot. now we're coming down the ramp ... [cut to film of the day - like the zabruter film - with the umbrella man and everything - oh so brilliant parody!!!] ... newman was in front of me. keith was coming toward us, as he passes newman turns and says, " nice game pretty boy.". keith continued past us up the ramp. newman: a second later, something happened that changed us in a deep and profound way front that day forward. elaine: what was it? kramer: he spit on us.... and i screamed out, "i'm hit!" newman: then i turned and the spit ricochet of him and it hit me. elaine: wow! what a story. jerry: unfortunately the immutable laws of physics contradict the whole premise of your account. allow me to reconstruct this if i may for miss benes as i've heard this story a number of times. jerry: newman, kramer, if you'll indulge me. according to your story keith passes you and starts walking up the ramp then you say you were struck on the right temple. the spit then proceeds to ricochet off the temple striking newman between the third and forth rib. the spit then cam off the rib turned and hit newman in the right wrist causing him to drop his baseball cap. the spit then splashed off the wrist, pauses in mid air mind you- makes a left turn and lands on newman's left thigh. that is one magic luggie. newman: well that's the way it happened. jerry: what happened to your head when you got hit? kramer: well. uh, well my head went back and to the left jerry: again kramer: back and to the left jerry: back and to the left back and to the left elaine: so, what are you saying? jerry: i am saying that the spit could not have come from behind ... that there had to have been a second spitter behind the bushes on the gravelly road. if the spitter was behind you as you claimed that would have caused your head to pitch forward. elaine: so the spit could have only come from the front and to the right. jerry: but that is not what they would have you believe. newman: i'm leavin'. jerry's a nut. (exits) kramer: wait, wait, (exits) jerry: the sad thing is we may never know the real truth. george: (frantically) did anybody call here asking for vandelay industries? jerry: no. what happened to you? george: now, listen closely. i was at the unemployment office and i told them that i was very close to getting a job with vandelay industries and i gave them your phone number. so, when now when the phone rings you've got to answer "vandelay industries". jerry: i'm vandelay industries? george: right. jerry: and what is that? george: you're in latex jerry: latex? and what do i do with latex? george: ya manufacture it. elaine: here in this little apartment? jerry: and what do i say about you? george: you're considering hiring me for your latex salesman. jerry: i'm going to hire you as my latex salesman? george: right. jerry: i don't think so. why would i do that? george: because i asked you to. jerry: if you think i'm looking for someone to just sit at a desk pushing papers around, you can forget it. i have enough headaches just trying to manufacture the stuff. jerry: yeah. kramer: it's keith. jerry: all right we're coming down. george: keith hernandez? jerry: yeah, come on elaine, lets go. george: where are you goin? elaine: he's giving me a ride you know there had to have been a second spitter. but who was it? who had the motive? jerry: that's what i've been trying to figure out the past five years. george: what the hell are you two talking about? (all exit) jerry: well that was really fun, thanks. keith: yeah, it really was. jerry(mind): should i shake his hand? jerry: well, ... keith: uh, do you want to catch a movie this weekend? have you seen jfk? jerry: no, i haven't. jerry(mind): this weekend. wow! jerry: sure, that would be great. jerry(mind): damn, i was too overanxious, he must have noticed that. jerry: i mean, ... if you want to. keith: well, how about this friday? jerry: yeah, friday's okay. jerry(mind): go ahead shake his hand. you're jerry seinfeld. you've been on the tonight show. jerry: well, good night [holds hand out and shakes hand] keith: goodnight. oh, jer, by the way, the woman we gave a ride to earlier tonight, jerry: elaine? keith: yeah. what's her story? jerry: uh, i don't know, we used to go out. keith: would you mind if i gave her a call? jerry: for a date? keith: yeah. jerry: oh, no, uh, go ahead. you got a pen? keith: you sure you don't mind? jerry: .... (silence) jerry: so then we went to dinner. george: who paid? jerry: we split it. george: split it. pretty good. talk about game six? jerry: naw, i gotta wait until its just the right time. jerry: yeah elaine: it's elaine. jerry: come on up. george: so then what? jerry: uh, nuthin'. then he took me home. george: shake his hand? jerry: (smiling) yeah george: what kind of a shake does he have? jerry: good shake. perfect shake. single pump, not too hard, you know, doesn't have to prove anything, but, you know, firm enough to know he was there. george: so, uh, you gonna see him again? jerry: he asked me if i was doing anything friday night. george: wow! the weekend. jerry: so then as i was getting out of the car, ... elaine: hi jerry: hi elaine. elaine: sooo, how was your date? jerry: what date? it's a guy. elaine: so you know , ... he called me. jerry: already? george: keith called you? george: he he this guy really gets around. elaine: do you mind? jerry: i don't mind at all. why should i mind? what did he say? elaine: he asked me out for saturday night. jerry: oh, ya' going? elaine: i told him i was busy. jerry: ah, really. elaine: so, we're going out friday. jerry: friday? elaine: yeah. jerry: he's going' out with you on friday? elaine: yeah. jerry: he's supposed to see me on friday. elaine: oh, uh, i didn't know. jerry: we made plans. elaine: well, uh, i'll cancel it. jerry: no, don't cancel it. elaine: huh. well this is a little awkward, isn't it/ jerry: well, frankly it is. elaine: i've never seen you jealous before. jerry: well you're not even a fan. i was at game six - you didn't even watch it. elaine: wait a second wait a minute, you jealous of him or you jealous of me? jerry: any hennigans around here? jerry: vandelay industries, kel varnsen speaking. may we help you? ... oh hi keith. na, i was just jokin' around jerry: no. no. i don't mind at all. elaine: (quietly) no, no, no, i can cancel. jerry: sure, we can do something next week. elaine: (quietly) i can cancel. jerry: no, its no problem at all. elaine: (quietly) i,... jerry: okay, take it easy. (hangs up) that was keith. we're going to do something next week. kramer: hey jerry: hey what are you doing friday night? jerry: friday night? nothin', ... now. kramer: okay, wanna come with me and see the baby? jerry: fasten your seat belts. we're goin' to see the baby. kramer: come on, if you don't see the baby now you're never gonna see it jerry: all right, i'll go kramer: all right kramer: yallo. what delay industries? elaine: no no , .. george: (from bathroom) vandelay, say vandelay! kramer: na, you're way way way off.. well, yeah that's the right number but this is an apartment george: (from bathroom) vandelay, say vandel... (george falls) ... vandelay industries, ... kramer: no problem, ... no problem. [hangs up] ... how did you know who that was? jerry: and you want to be my latex salesman. mrs. sokol: just sign here please. george: i know who it was too. it was the guy who interviewed me. he was very threatened by me. why else wouldn't he hire me? i could sell latex like that (snaps fingers). mrs. sokol: sign that. george: who is this? (sees photo) mrs. sokol: it's my daughta' george: this is your daughter? my god! my god! i i hope you don't mind my saying. she is breathtaking. mrs. sokol: ya' think so? george: ah, would you take this picture away from me. take it away and get it outta here. let me just sign this and go. mrs. sokol: you know she doesn't even have a boyfriend. george: okay, okay. who do you think you're talking to? what are ya' you trying to make a joke, because it's not funny. i can tell you that. mrs. sokol: i'm serious. george: it's one think to not give me the extension but to tease and to torture me like this. there's no call for that. mrs. sokol: would you like her phone numba'? mrs. sokol: mrs. sokol i, i don't know what to say. i, uh, where should i sign this thing? mrs. sokol: no no no, don't worry about it. elaine: so tell me more about this game six. keith: well, there was two outs, bottom of the tenth, we're one out away from losing the series. elaine: ooooh ahhh kramer: (to baby) koochie koochie koochie koo jerry: (to baby) hello. how are you/ carol: so, wadda ya' think? do you love her? jerry: yes. i do love her. (to baby) you have a very nice place here. carol: so how do you think she looks like? kramer: lyndon johnson. carol: what? lyndon johnson? jerry: he's joking. kramer: i'm not joking. she looks like lyndon johnson. carol: jerry, i can't believe it took you so long to come see the baby. i kept saying to michael, "when is jerry going to see the baby?" jerry: i was saying the same thing. carol: let's take a picture. michael, get the camera. jerry: uh, you don't have to take a picture. mike: i don't know where it is. carol: it's in the bottom draw' of are dressa'. hurry up! he's such an idiot. jerry: jerry, you want to pick her up? jerry: i better not. kramer: i'll pick her up. carrie: thank you for a wonderful time george. george: glad you enjoyed it. carrie: i haven't had a big mac in a long time. george: millions and millions carrie: would you like to come up? george: [pause] would i like to come up? i would love to come up. i, i'm fighting not to. fighting! unfortunately i uh have to get an early start tomorrow. gotta' get up and hit that pavement carrie: but it's saturday. all the offices are closed. george: i got me an appointment with a hardware store. i'm not saying i want to do it for the rest of my life, but, uh, hardware fascinates me. don't you love to make a key? carrie: will you call me as soon as you get home? george: [pause] tonight? carrie: yes. george: will i call you when i get home? ha ha what do you think? ee, you kill me kill me carrie: well. good night.[puckers up] kramer: well it was an accident. right jerry it was an accident. ah, she's going to be all right. .. baby, baby, ah, baby. elaine: well, thanks for a nice evening. it was really fun. keith: yeah, it was. [mind] gosh, should i kiss her good night? elaine: [mind] is he going to try to kiss me? elaine: i love cajun cooking. keith: really, you know my mom's one quarter cajun. elaine: uh, my father's half drunk. ha ha ha ha keith: maybe they should get together. [mind] go ahead. kiss her. i'm a baseball player dammit. elaine: [mind] what's he waiting for? i thought he was a cool guy. keith: [mind] come on i won the mvp in 79. i can do whatever i want to. elaine: [mind] this is getting awkward. keith: well, goodnight elaine: good night elaine: [mind] who does this guy think he is? keith: [mind] i'm keith hernandez. elaine: uh, who else? mookie. mookie was there. do you know him? jerry: i don't know him. i know who he is. elaine: hum, he's such a great guy. you should meet him. you know he's the one who got that hit jerry: i know. he got the hit in game six. so, so then what happened? elaine: nuthin'. then he took me home. jerry: so, did you two, uh, have uh, elaine: what?! jerry: you know elaine: milk? jerry: no! elaine: cookies? jerry: did he kiss you good night? elaine: i dunno. jerry: what do you mean you don't know? elaine: all right. he kissed me. okay? jerry: well, what kind of a kiss? was it a peck? was it a kiss? was it a long make out thing? elaine: between a peck and a make out. jerry: so, you like him. elaine: i don't understand. before you were jealous of me. now you're jealous of him? jerry: ah, i'm jealous of everybody. jerry: hello. oh, hi. what's happening? what? oh um, sure, um, yeah, okay, uh. i'll see you then. yeah, yeah, bye. elaine: who was that? jerry: that was keith. elaine: what's going on? jerry: he wants me to help him move. elaine: help him move? move what? jerry: you know, furniture. elaine: so, what did you say? jerry: i said yes, but i don't feel right about it. i mean i hardly know the guy. that's a big step oin a relationship. the biggest. that's like going all the way. elaine: and you feel you're not really ready for, jerry: well we went out one time. don't you think that's coming on a little too strong? kramer: what's going on? jerry: keith hernandez just asked me to help him move. kramer: what? well, you hardly know the guy. what a nerve. you see wasn't i right about this guy? didn't i tell you? now, you're not going to do it are you? jerry: i said yes. kramer: you said yes!? don't you have any pride or self respect? i mean, how can you prostitute yourself like this? i mean what are you going to do? you're going to start driving him to the airport? jerry: i'm not driving him to the airport! .. kramer: yeah yeah jerry: hey kramer do me a favour . kramer: what? jerry: don't mention it to anybody. kramer: i wish you never mentioned it to me. [exits] george: i had a great time tonight carrie. and i am going to call you as soon as i get home. carrie: don't bottha george: bother, wa', what kind of bother? carrie: i would prefa' it if ya' didn'. george: why? is there anything wrong? carrie: it's over buddy. done. finished. so long. good bye. adios. sayanara. george: why? carrie: i bin thinkin about it. you got no job. you got no prospects. you're like biff loman. george: i went to the hardware store interview. carrie: you think i'm going to spend my life with somebody because he can get me a deal on a box of nails? george: i thought were a team. carrie: if i ever need a drill bit i'll call you. (exits car) george: carrie, could you do me a favour? could you not mention this to your mother? kramer: ya know i hate to brag but, uh, i did win eleven straight golden gloves. elaine: (chuckles) kramer: i wouldn't have brought it up but since you mentioned it. elaine: ha, i didn't mention it. kramer: well i won them anyway. elaine: well so what. i mean you played first base. i mean they always put the worst player on first base. that's were they put me and i stunk. kramer: elaine. you don't know the first thing about first base. elaine: ha ha well i know something about getting to first base. and i know you'll never be there. kramer: the way i figure it i've already been there and i plan on rounding second tonight at around eleven o'clock. elaine: well, uh, i'd watch the third base coach if i were you 'cause i don't think he's waving you in. you know i hate to say this but i think we're really hitting it off. get it? get it? kramer: funny. elaine: what are you doing? kramer: what's that? elaine: you smoke? kramer: yeah. elaine: i didn't know you smoked. kramer: is that a problem? elaine: uh, jerry: she likes him i mean she really likes him. george: how do you kn ow? jerry: who wouldn't like him? i like him. and i'm a guy. george: i suppose he's an attractive man, i , jerry: forget that. he's a ball player. mvp< 1979. i'm making wise cracks in some night club. this guy was in game six. they're a perfect match. they like go together. they're like one of these brother and sister couples that look alike. george: hate those couples. i could never bee one of those couples. there are no bald woman around. you know? jerry: you know i know this sounds a little arrogant but i never thought she would find anyone she would like better than me. ya know, i guess i had my chance and that's that. george: you know what i would like to do? i would really like to have sex with a tall woman. i mean really tall. like a like a giant like six five. jerry: really? george: what was the tallest woman you ever slept with? jerry: i don't know six three. george: wow, god! you see this is all i think about. sleeping with a giant. it's my life's ambition. jerry: so i guess it's fair to say you've set different goals for yourself than say, thomas edison, magellan, these types of people. george: magellan? you like magellan? jerry: oh, yeah,. my favourite explorer. around the world. come on. george: who do you like? george: i like desoto. jerry: desoto? what did he do? george: discovered the mississippi. jerry: oh. like they wouldn't have found that anyway. george: all right, i've got to go down to the unemployment office. wanna take a walk? jerry: no i can't i've got some stuff to do then i've got to meet keith at my apartment at three. i'm helping him move. george: what? the guy asked you to help him move? wow. jerry: i know isn't that something? kramer: he's got money. why doesn't he just pay a mover? jerry: i don't know he's got some valuable antiques, he's worried they'll break something. george: the next thing you know, he'll have you driving him to the airport.. jerry: i'm not driving him to the airport!! george: i gave. i gave everything i could mrs. sokol. but nothing was good enough for her. mrs. sokol: sign here please. george: ha, i don't know who she's looking for. i don't know. i'll tell you something. she's very particular, your daughter. very particular. what is she looking for some big hot shot businessman? well i've got my pride too. i'm not going to beg her. mrs. sokol: all right just sign it. people are waiting. george: you, uh, you like baseball? [picks up baseball from desk] mrs. sokol: that was autographed by the '86 mets. i saw every inning that year. george: funny, cause i happen to be very good friends with keith hernandez. mrs. sokol: you know keith hernandez. george: know him? would you, uh, like to meet him? mrs. sokol: oh, come on. come on. george: i can produce keith hernandez right here within the hour. mrs. sokol: all right. you got one hour. george: all right mrs. s. i and my good pal keith hernandez will be right back. george: 129 west 81st street and hurry. george: goodbye (exits cab) keith: better bring your gloves, it's freezing out there. it shouldn't take too long. i'd say maybe, oh, four hours. really though, jerry, there's not that much. first we got the bedroom, we got two dressers and the bed. jerry: is there a box spring? keith: what's that? jerry: is there a box spring? keith: yeah there's a box spring but it's attached to the headboard and we'll have to take that apart. then we got the couch. jerry: is that a sectional? keith: yeah. twelve pieces. coffee table. jerry: is that a thick marble? keith: three inches thick. got it in italy. but the big problem is going to be the convertible sofa. you see when you move it it tends to open up so it's going to be real difficult getting it down the stairs. jerry: stairs??? there's no elevator? keith: nah, it's a brownstone. three floors. jerry: i'm sorry i can't do this. i can't do it. i can't. it, it's too soon. i don't know you. i can't help you move. i'm sorry. i can't. i just can't. kramer: hello. keith: hello. kramer: oh, you don't remember me. keith: no should i [continuity error in fact he should from the basketball game] kramer: yeah, you should. i certainly remember you. let me refresh your memory. newman: june 14th, 1987. mets phillies. you made a big error. cost the mets the game. then you're coming up the parking lot ramp. keith: you said, "nice game, pretty boy." kramer: ah, you remember. newman: and then you spit on us. keith: hey, i didn't spit at you. newman: oh, yeah, right. kramer: no no no, well, then who was it? keith: well lookit, the way i remember it (back to the grainy 8mm film parody) i was walking up the ramp. i was upset about the game. that's when you called me pretty boy. it ticked me off. i started to turn around to say something and as i turned around i saw roger mcdowell behind the bushes over by that gravely road. anyway he was talking to someone and they were talking to you. i tried to scream out but it was too late. it was already on its way. jerry: i told you! newman: wow, it was mcdowell. jerry: but why? why mcdowell? kramer: well, maybe because we were sitting in the right field stands cursing at him in the bullpen all game. newman: he must have caught a glimpse of us when i poured that beer on his head. newman: it was mcdowell. kramer: oh boy. uh, look uh, keith, uh, we're sorry. newman: yeah, i couldn't be sorrier. i uh. keith: look guys, don't worry about it, i uh, well i guess i better get going. kramer: wait, uh what are ya' doing? keith: i gotta move. kramer: want any help? keith: i'd love some. kramer: i'd love to help you move. newman: me too. keith: ok guys, we gotta be careful of one thing. some of the stuff's very fragile we're going to have to handle it like a baby. kramer: no sweat. jerry: hello, oh hi elaine .. what's going on no he just left you broke up with him? me too .. what happened? oh smoking you know you're like going out with c. everet coope me nah i couldn't go through with it i just didn't feel ready so what are you doing now? oh, great idea, i'll meet you there in like thirty minutes. okay bye. george: keith, keith wa what happened? where's keith? jerry: you just missed him. he just left. what do you need him for? george: (out the window) keith, keith, up here. can you do me a favor? i need you to go to the unemployment office with me. i, i'm jerry's friend the guy from the locker room, i'm the chucker. it'll take five minutes. wait. wait. jerry: well biff/ what's next? george: i don't know. tall girl: excuse me. i was walking behind you and you dropped your wallet. george: it's all departures. i see nothing but departures. (to the woman beside him) do you know where the arrivals are? george: excuse me, sir, do you have the time? man: there's a clock over there. george: where? man: (pointing) there. george: but you have a watch on. man: it's right by the escalator. george: why don't you just look at your watch? man: i told you, it's right over there. george: let me see the watch. man: hey! what are you, some kind of nut?! george: you know we're living in a society! jerry: george. george: jerry. jerry. jerry: sorry, the flight was delayed, how long've you been waiting? george: i just got here. my car broke down on the belt parkway. jerry: oh i can't believe-- why don't you get rid of that piece of junk. george: one mile from the exit it starts shaking, really violently shaking, like it's having a nervous breakdown. it completely stopped dead. jerry: so you have no car? george: no. jerry: so what good are you? jerry: i'll tell you one thing, this chauffeur's gonna be waiting a while, o'brien's not showing up. george: how do you know? jerry: he was in chicago, the flight was overbooked, wouldn't let him on the plane. he kept screaming how he had to get to madison square garden. george: we should take his limo. jerry: yeah, right. george: wait a second. think about it. he's not showing up. wait till you see the line of cabs, its like forty-five minutes long. you said he's in chicago. jerry: he's definitely in chicago. george: well the guy's just standing there. jerry: how would we do it? george: we just go up to him, we say, "we're o'brien." jerry: maybe he knows o'brien? george: no, he doesn't know o'brien, if he knew o'brien he wouldn't have a sign. let's just do it. jerry: what if we get caught? george: what's gonna happen? they can't kill us. jerry: who's gonna be o'brien? george: i'll be o'brien. jerry: who am i? george: you're you. jerry: just me? george: yeah. jerry: okay. george: what, you don't want to be you? jerry: well if you're gonna be o'brien, why can't i be somebody? george: like who? jerry: dylan murphy. jerry: what, now you wanna be dylan murphy? george: well i like dylan. jerry: you could be colin. george: colin o'brien. jerry: i'm dylan murphy. george: i'm colin o'brien. george: are we really doing this? jerry: come on, man: (to george) hey, do you have the time? george: clock over there. (to chauffer) o'brien. chauffeur: yes sir. george: sorry we're late. chauffeur: here let me take that for you. george: oh thank you. chauffeur: i'll get the car and i'll bring it around front. george: thank you very much. dylan? jerry: colin? george: this is incredible! this is one of the greatest things i've ever done in my life! i'm gonna call my mother. jerry: what for? george: i dunno, i'm in a limo. (dials) hello ma? it's me. guess where i am. in the back of a limo. no, nobody died. it's a long story, i can't tell you now. because i can't. i said i can't. if i could, i would. would you stop it? alright, look, i'm getting off. no, i'm not telling you! how's this? i'm *never* telling you! i don't care! no! fine! never!! jerry: she happy for you? george: can he hear us? jerry: no. why? george: i thought i saw him look in the mirror suspiciously. jerry: he can't hear us. george: let's test him. hey, driver. what do you say we stop off, pick up your sister, have a little fun back here? no, he can't hear us. jerry: where's he dropping us? maybe we can get him to drop us right at my house? george: we'll ask him. (opens partition) my dear fellow, where are you dropping us? chauffeur: madison square garden, of course. i have the four passes. george: of course, the uh, the four passes. (closes partition) four passes to madison square garden? wait a minute. wait a minute! of course! chicago! the knicks are playing the bulls tonight! jerry: what? george: we are going to the knick game! michael jordan! jerry: we're going to the knick game! george: did i tell you?! did i tell you?! jerry: i can't believe it! you may have hit with this one! george: you see, you see? i see things as they are and i say, 'no!' uh, wait, you see things as they are not and you s- wait, uh, you see things, do you see things as they are? what do you say when you see things? jerry: lemme call elaine and kramer. george: if i see things as they are, i would ask 'why' or 'why not?' jerry: elaine? it's me. what are you doing tonight? great. george and i have tickets, four free passes to the knicks-bulls game, madison square garden. can you go? great, listen, call kramer, tell him to meet us on the corner at seven o'clock. alright. we're gonna pick you up in a limo. that's right baby-doll. hey listen, when we pick you up, i'm murphy and george is o'brien. i can't tell you now, it's a long story. i am serious. okay. okay bye. (opens partition) 'scuse me, driver, we have to make a little stop first. chauffeur: i know. jerry and george: he knows? george: where are we going? why are we pulling off here? jerry: maybe it's a shortcut. george: we're on the grand central, there's no traffic. jerry: (opens partition) 'scuse me, driver, why are we getting off this exit? chauffeur: pick up the other members of your party. george: right. the other members of our party. (closes partition) other members of our party? what other members of our party? i didn't even know we were in a party. oh, i'm telling you, the jig is up. jerry: it was a bad jig to begin with, we never should have started this jig. george: it was a good jig. jerry: it was a bad jig, a terrible terrible jig. what are we gonna do now? they're gonna know you're not o'brien. george: there could be more than one o'brien on a plane who ordered a limo. jerry: first of all, you don't look like any o'brien, period. george: well you should have been o'brien. jerry: i don't want to be murphy anymore; do i still have to be murphy? george: yes, you have to be murphy. jerry: it makes no sense now, me being murphy. george: you're murphy! jerry: i'm seinfeld! george: you're murphy!! look, let's just jump out of the car. jerry: we're doing sixty miles an hour! george: so we jump and roll, you won't get hurt. jerry: who are you, mannix? george: we're slowing down. are those the people? jerry: alright put your hands up over your face, pretend you're sleeping. woman: (reaches out to jerry) mr. o'brien? jerry: no, i'm, uh, dylan murphy. mr. o'brien had a long trip, he's sleeping. eva: (whispering) oh, well i don't want to disturb him. we're just rather excited to meet him face to face, finally. we're faithful readers of his newsletter. jerry: newsletter? tim: and of course, his great book, "the game". jerry: oh, yes, he's very proud of his work in the big game. so you've never uh, met him before? eva: no. jerry: never seen a picture of him? eva: never. jerry: not even on the book jacket? eva: there was no picture on the book jacket. jerry: (nudging george) hey o'brien, wake up, c'mon, we got company. wake up. george: hello. i'm o'brien. kramer: hey! elaine: hey! kramer: what, you took a cab? elaine: yeah? so? kramer: how much do you make? elaine: i'm not telling you. kramer: c'mon. elaine: no! kramer: i'll tell you how much i make. elaine: i know how much you make. i don't even know why i'm doing this, i don't even like basketball. kramer: you ever seen michael jordan? elaine: just in those commercials. kramer: maybe you'll see him do one of those three-sixty dunks. elaine: what's that? kramer: oh, it's like this, here, you guard me. elaine: huh? kramer: yeah. jerry: (checking his watch) i don't think we're gonna make the tip off. tim: you think someone's been tipped off? george: so, um, you've read "the big game", have you? eva: (fawning) yes i've read it and i've memorized it. george: tell me your impressions, i would love to hear what a young woman thinks of "the big game". eva: well, this is sort of embarrassing, but it's changed my life. the way you analyzed the game? the way you identify the major players? well it left me breathless. you're a brilliant, brilliant man. george: well, it's just a game. remember that, kids. tim: just a game. he's so humble. don't forget what you wrote in the epilogue, the fate of the world depends on the outcome of this game. george: well, i was exaggerating a bit, just for effect. jerry: he tends to exaggerate. george: okay, i mean it's serious but-- eva: we are really looking forward to your speech tonight. george: uh, my speech? eva: yes, your secretary faxed me the copy. would you like to look it over? jerry: well you might as well look it over. kramer: so what's going on, how did all this happen? elaine: jerry and george called me from this limo and they said we're all going to the knicks-bulls game. kramer: limo? i thought that george went to pick him up. elaine: he did. kramer: well then why would they take a limo from the airport? elaine: i don't know. kramer: that's pretty strange. did he say anything else? elaine: yeah. he said, um, he said it's really important that we call them o'brien and murphy. kramer: o'brien. why would he want to be called o'brien? george: ...and the jews steal our money through their zionist occupied government and use the black man to bring drugs into our oppressed white minority communities. jerry: you're not going to open with that, are you? eva: what was that you said about the myth of the holocaust? george: i said so many things. george: they're shooting! they're shooting! tim: (pulling out a gun) alright, get down! george: that's really very nice of you, eva. thank you. eva: but of course you know i would. i would do anything for you. anything. tim: nothing to worry about, it was just a flat tire. but rest assured, we're prepared to handle anything that might come up. jerry: nice looking lugar. jodi: i'm standing in front of the paramount adjacent to madison square garden where a growing number of vociferous and angry demonstrators are gathering to protest the very first public appearance of donald o'brien, the leader of the midwestern regional chapter of the aryan union, and reputed to be their most charismatic spokesman. the reclusive mr. o'brien is an advocate of the violent overthrow of the government. he has openly professed a deep admiration of adolf hitler. even david duke has denounced him as a dangerous extremist. there is a full house inside awaiting his arrival from the airport. sources tell me he is in route and should be arriving momentarily. police have set up barricades, but quite frankly bill and jean, i don't think they're any match for the emotional fuse that has been lit here tonight. reporting from the paramount, i'm jodi baskerville, back to you in the studio. kramer: something's very strange. george goes to the airport to pick up jerry. they come back in a limo with four tickets to the basketball game and wanna be called o'brien and murphy? o'brien. o'brien, why o'brien? dan: elaine? elaine: dan! oh, hi dan, how are you? dan: good. elaine: um, oh, this is um, kramer. dan: oh, kramer? elaine: what's going on? dan: oh, we're heading down to protest this big neo-nazi rally. the head of the aryan union is speaking, he's in from chicago. you should come. elaine: oh, can't, i'm going to the knicks-bulls game. dan: oh, well that's where the rally is. the paramount, right next door. elaine: oh, well, maybe we'll run into you. dan: yeah, yeah ok. it's really gonna be something, this is the first time he's ever appeared in public, no one even knows what he looks like. kramer: who? dan: the head of the aryan union; o'brien. jerry: what's taking him so long out there? george: didja see the way she was looking at me? jerry: she's a nazi, george. a nazi! george: i know, i know. kind of a cute nazi though. jerry: well we gotta make a plan before they come back, what are we gonna do? george: i don't know. jerry: let's just make a run for it. george: i can't run, i have a bad hamstring. jerry: how'd that happen? george: i hurt it in a hotel room. you know where they tuck the covers in real tight in those hotel rooms? i can't sleep like that so i tried to kick it out and i pulled it. jerry: i know, why do they make that bed so tight? you gotta sleep with your feet like that. george: for a mental patient. wait a minute, the phone, we'll call the police. george: 9... 1... 1. she said she'd do anything. hello, police? uh, yeah listen, we're in the back of a limo in queens-- george: --astroturf? you know who's responsible for that, don't you?! the jews! ah, the jews hate grass. they always have, they always will. tim: we'll be ready in a minute. george: would you excuse us for a minute tim boy, we're kind of in the middle of something. tim: with all due respect, mr. o'brien, we're just about to leave. george: tim, who's the head of the aryan union, you or me? tim: you are. george: and who's responsible for making hate mongering and fascism popular again? tim: you are. george: good. i think you forgot something. tim: i'm sorry. george: good. now get out. george: okay, what are we gonna do? jerry: i don't know. george: alright, how's this? we wait till we get to your street corner, we see elaine and kramer then we get out. they can't shoot us in the city. jerry: nah. no one's ever been shot in the city. kramer: i'm telling you, something's going on. i can feel it, sense it. elaine: i'm sure he was just joking around. kramer: oh no no no, this is no joke. o'brien's coming in from chicago, jerry's in a limo, says he's o'brien? that's not funny. oh my god. yes. yes! elaine: what is it? kramer: don't you see? there's always been something very strange about jerry, always so clean and organized. do i have to spell it out for you? the limo? the name? the rally at madison square garden? jerry, o'brien are the same person. jerry is the leader of the aryan union! elaine: jerry's a nazi?! kramer: i can't believe i didn't see it. elaine: listen, you idiot! just calm down! i know jerry, he's not a nazi. kramer: you don't think so. elaine: no, he's just neat. tim: you know it's funny. you don't look like an o'brien. george: me?? tim: and you really don't look like a murphy. jerry: i may not look like a murphy but i act like a murphy. george: he's extremely murphy. he's murphy to a fault. tim: where are you from? jerry: dublin. originally. parents came over here when i was eighteen. cereal famine. couldn't get a bowl anywhere. bad. 'tis a beautiful country though; lush rolling hills, and the peat, ah the peat. tim: sounds more like scottish. jerry: we were right on the border. kramer: maybe he's with the company. elaine: what? kramer: the cia! maybe they placed him in there to infiltrate the organization from within. elaine: what about his comedy act? kramer: that's the perfect cover! all that time on the road? look jerry, he's too normal to be a comedian. these comedians, they're sick, neurotic people. elaine: what about george? kramer: what about him, he's part of it. his whole personality is a disguise. no real person can act the way he does. elaine, i'm telling you they're with the organization. they're all part of it. he's in there with helms and hunt and liddy, that whole crowd. george and jerry, they probably know who killed kennedy! elaine: i'll bet they were even in on it. kramer: alright, what are we gonna do? i'm not gonna let him hurt you. (grabs and hugs elaine tightly) i'm not gonna. elaine: kramer, you're hurting me! george: those are my friends i was telling you about. we're gonna talk to them, pull over. elaine: get off of me!! kramer: o'brien. man #1: o'brien? is that him? man #2: yeah, that's him. man #3: look there's o'brien! man #4: filthy nazi bastard! all four men: let's get him!! george: what do i do?! what do i do?! jerry: get in the car! get in the car! kramer: (pointing to jerry) o'brien. long time no see. how's tricks, murphy? tim: why did you call him o'brien and him murphy? jerry: no, he was talking to me, he's cross-eyed. elaine: it could be very confusing. kramer: yeah? eva? eva: it's for me. (takes phone) hello? (cups receiver) it's o'brien. kramer: o'brien? well that's weird. eva: (gun drawn) who are you? jodi: a limousine has just pulled up it's being surrounded by a huge group of protestors, this has the makings of a very ugly scene. jodi: they are banging on the car, trying to flip it over. the police seem unable or unwilling to control the crowd, i would imagine mr. o'brien must be having some very grave doubts if he made the right choice for his first public appearance. eva: get out!! elaine: look, it's dan! hi dan! dan: elaine? elaine: hey! george: i am not o'brien! i am not o'brien! i'm not o'brien! ask anyone! jerry?! jerry?!! elaine: you know it's bad enough you have a car phone, you have to use the speaker? jerry: it's safer! plus it's more annoying to the other person. jerry: oh look at this guy. elaine: what's goin' on? jerry: oh there's a guy trying to get in front of me, he has to ask permission. yes. go ahead. get in, get in. elaine: did you get a thank you wave? jerry: no, nothing. how could you not give a thank you wave? hey buddy! where's my thank you wave? jerry: give me that wave! elaine: jerry, are you free on friday? jerry: yeah, i'm free, why? elaine: ah, god, i bumped into robin sandusky today, she asked me to have dinner with her and her husband. jerry: oh my god! you won't believe what i just saw! a car just bashed into a parked car, and sped off, right on my block! elaine: you gotta follow that car! jerry: what? elaine: you can't let him get away with that! jerry: elaine, the guy could be dangerous. elaine: what are you, yellow? jerry: i'm not yella. (in a cowboy voice) elaine: jerry, if you don't follow him, you're yella. jerry: wait, he stopped, he's parking. elaine: what? what? i can't hear you. jerry? jerry: uh, excuse me, uh, i was uh, driving behind you, uh, a few blocks back, and i, i couldn't help, uh, maybe you didn't realize, uh, i witnessed that, uh, um, you're tire's a little low. that can affect the performance of the twin high-beam suspension, not to mention your rack and pinion steering. jerry: so i wound up going out for a decaf cappuccino with her. george: boy! what a story! i'm speechless. speechless. i have no speech. jerry: you know, i really liked her. we talked. we flirted. and when she left, she reached out and touched my arm. jerry: he, he, he. (simulating her feminine laugh) george: i love when they touch your arm. i can't get enough of that. why is that? jerry: let's not even analyze it. george: so you didn't turn her in? jerry: i wanted to but i couldn't go through with it. george: gonna see her again? jerry: friday night. jerry: yep. elaine: it's me! jerry: come on up. jerry: by the way, elaine does not need to know about anything. george: hey, hey, hey! i dig. jerry: oh, you dig? george: yes! i see enormous potential here. jerry: why? george: because great couples always have a great story about how they met. that's why i've never been in a long term relationship. i've never had a good meeting story. jerry: i wonder if i'm nuts for pursuing this woman at all. george: i don't think so. jerry: look, she slammed into a parked car! she took no responsibility for mutilating the property of a stranger, then she sped off like a criminal! jerry: on the other hand, does that mean she should never be allowed to date again? you scratch one car and you're forbidden to have social contact for the rest of your life?! jerry: what am i drinking, milk? elaine: hey! jerry: hi. elaine: sweater. jerry: thank you. elaine: so? what happened? jerry: with that? elaine: with the car! jerry: what car? elaine: the hit and run! jerry: oh, right, right, right, right, right, right, right, the hit and run. well. actually, the guy went into queens. elaine: queens?! you followed him over the bridge? jerry: over the bridge. (making a pointing motion with his hand) george: oh, well i didn't know you went into queens jerry. jerry: yeah, queens. elaine: so? then what? jerry: so he gets out of the car, i say, "hey buddy! i saw you hit that car!" so he says to me, "what are ya gonna do about it?" jerry: so i said to him, "whatever's necessary." elaine: i am speechless. i am without speech. george: tell her about the shoving. jerry: what? elaine: what shoving?! jerry: oh, it was nothing. george: no! tell her. jerry: well he kinda lost his temper, and he was pushing me up against the car. so i went into a karate stance. (jerry assumes karate position and does two punches) elaine: you know karate?? jerry: i know a little. elaine: well, this is so, amazing to me! jerry what did do? jerry: he backed off. pretty pathetic actually. kramer: hey! (group does likewise) elaine: did you tell kramer? jerry: ah, nah! (waving his hand and walking away) kramer: what? what? what? tell me. elaine: jerry saw this guy crash into a car, and he followed him. kramer: good for you! what kind of a sick lowlife would do a thing like that? you know those people, you know they're mentally disturbed. (pointing a finger at jerry) kramer: they should be sent to australia. jerry: australia? kramer: yeah, yeah, that's where england used to send their convicts. jerry: but not anymore. kramer: no. elaine: hey kramer, kramer! kramer: yeah? elaine: what happened to you right here? (she pointing to her forehead) kramer: i don't know! kramer: you know i was watching entertainment tonight, and uh, suddenly i got dizzy. and the next thing i know i hit my head on the coffee table. elaine: well, that is, that is strange. kramer: yep. (mumbles off) elaine: alright, oh jerry, we're still on for friday night, right? jerry: oh friday, i can't, i'm sorry, i have a date. elaine: but last night you said you were free! (sounding very disappointed) jerry: we just met. kramer: maybe it was a reaction to the sardines. elaine: but i, i can't go alone! jerry: ask george to go with you. elaine: george, come on! i'll pay for you. george: you'll pay? i'm there. jerry: why do you even need anybody? elaine: because i hate being at a table alone, with a married couple. talking about their married friends, and their married furniture. they're always trying to make me feel like their life is so much better than mine. you know, i have a very exciting life. it's very exciting. (as she's closing the door to leave) robin: you went out with a bullfighter? elaine: yes, well, an ex-bullfighter now. michael: wow. robin: what was his name? elaine: his name? name, um, his name was uh, uh, eduardo carochio. george: pass the salt please. robin: where did you meet him? elaine: um, actually, i met him in switzerland, and he was fighting uh, is that the word they use? fighting? because they don't really fight the bull, they avoid fighting the bull. george: bread. elaine: i just love meeting new people. you know that's how you really do learn about life. george: god bless you. robin: thank you. george: i wasn't going to say anything, but then i could see that he wasn't going to open his mouth. (chuckles) woman: you know who's a good actor? anthony quinn. jerry: oh, anthony quinn, fine actor. but from what i understand, not a very good driver. hits everything on the road. but always leaves a note. woman: did you ever see zorba the greek? jerry: excellent film. in fact quinn said he never felt so good as when he left a note after smacking into a car. woman: come here. (moves in for a kiss) george: really, i was, i was only kidding around. robin: he was only joking michael. michael: you think you're so damn special because you say 'god bless you'? george: no, no, i don't think i'm special. my mother always said i'm not special. robin: he was only joking michael! sorry. michael: all right! take his side! robin: i am not taking his side. michael: well who's side are you taking?! robin: well i'm not taking your side! jerry: kirk douglas. now there's another very bad driver. but he's such an unbelievable guy, that when he hits someone, he doesn't even leave a note. he sits in his car and waits for the other person to show up so he can exchange license, registration, and apologize. george: i said 'god bless you'. was that so wrong? jerry: the question is, did you allow a space for the husband to come in with his 'god bless you'? because as the husband, he has the right to first refusal. elaine: it's me. jerry: come on up. george: yes, yes, i definitely waited. but let me say this once he passes on that option, that 'god bless you' is up for grabs. jerry: no argument. unless, she's one of these multiple sneezers, and he's holding his 'god bless you' in abeyance, until she completes the series. george: well i don't think she is a multiple sneezer, because she sneezed again later, and it was also a single. jerry: what if she's having an off night? elaine: hi! jerry: hi. elaine: well! if it isn't mister gesuntheit! george: oh ya, like there's something wrong with saying 'god bless you'. i was raised to say 'god bless you'. george: ah, shut up. elaine: what does it mean anyway? 'god bless you'. it's a stupid 'stuperstition'. jerry: a stupid what? elaine: whatever. jerry: you know, if you want to make a person feel better after they sneeze, you shouldn't say 'god bless you', you should say, 'you're soo good lookin''. elaine: yeah, yeah, that's better than 'god bless you'. anyway, she left a message on my machine, she wants you to call her. george: who? elaine: robin! george: why?! elaine: well i assumed she called to apologize, that's why she called me. jerry: entertainment tonight's on. george: where's the remote phone? jerry: bedroom. elaine: hey, grab jerry's sweater for me, would you? jerry: what's it like out? elaine: chilly out. jerry: can i take a sweater? elaine: yeah, you can take a sweater if you want to. jerry: scarf? elaine: nah, hey, shut this off, shut it off. jerry: what's the matter? what's going on? kramer: what happened?! elaine: what? kramer: i think i hit my head again! jerry: what is wrong?! elaine: hey, hey, wait a minute! let me ask you something. kramer, the last time you hit your head, was mary hart on tv? kramer: yeah. elaine: that is it! kramer: what? elaine: that is it! mary hart's voice, don't you see? there's something about mary hart's voice that's giving you seizures. just like, just like, just like that woman in albany! kramer: mary hart! george: god. elaine: what? george: well she apologized, and then she wanted to know if we could get together wednesday afternoon. jerry: get together? george: maybe she just wants to talk to me? elaine: married women don't 'get together'. they have affairs. george: oh my god, an affair. that's so adult. it's like with stockings and martinis, and william holden. on the other hand it probably wouldn't cost me any money. elaine: are you actually considering this? george: i can't have an affair with a married woman, that's despicable! elaine: yeah, it's like hitting a car and driving away without leaving a note. jerry: yeah. kramer: hey, you know who owns that car? jerry: what car? kramer: the one that was hit a couple of nights ago. jerry: yeah who? kramer: that blond across the street. you know the one with the long ponytail, she wears those blue sweatpants. jerry: the blond with the blue sweatpants! yeah, i think i've seen her. elaine: well i've got to get going. i'm meeting a guy with grey sweatpants. kramer: wait, wait, wait, how do you know it's not john tesh? jerry: the blond with the blue sweatpants! george: well, who is she? jerry: i've had a crush on this woman for year! i've always been afraid to approach her! she looks like she belongs on one of these hallmark cards. george: oh right, right! the blue sweatpants! gees, it's too bad you can't say anything because of angela. jerry: oh yeah. too bad. angela. lousy thug. i mean what kind of sick person does something like that? that woman belongs in prison! i mean, i actually owe it to society to do something about this! i can't sit by and allow this to go on. it's a moral issue is what it is! george: you can't compromise your principles! jerry: how am i going to live with myself?! george: can't live! jerry: i'm not religious, but i certainly know where to draw the line! george: this country needs more people like you! jerry: don't sell yourself short saying 'god bless you' to every tom, dick and harry in great personal risk. george: i believe strongly in that as you know. jerry: there should be more people like us. george: that's why the world's in the shape it's in. jerry: you're telling me. jerry: anyway, i just wanted you to know, that i'm going to do everything i can to make sure the party responsible is made to be responsible or something very close to that. becky: well god bless you. jerry: thank you very much. george: oh my god. i must be crazy. what have i done? robin: oh no, what's wrong? george: what's wrong? i'll tell you what's wrong. i just committed adultery! robin: you didn't commit adultery, i did. george: oh yeah. robin: if i didn't do it with you, i would have done it with someone else. george: well, i wouldn't want you to do that. you know there's a lot of losers out there. robin: maybe even someone who didn't say 'god bless you'. george: well, that's a given. robin: in three years with michael, not one 'god bless you'. george: must be hell living in that house. michael: hi, it's michael. elaine: hi, michael! michael: is robin there? elaine: robin? no, why? michael: uh, she said she was going to be with you. elaine: no i haven't spoken to her all day-uh, yeah right, um, as a matter of fact, um, she was here, and she uh, left a note, but i wasn't here, but i have the note, uh, right here. michael: if she's not with you, then where is she? elaine: well i, i don't know. michael: is she with your bald friend from the other night?! elaine: no, no, come on michael! michael: he's finished! i'm going to sew his ass to his face! i'm going to twist his neck so hard his lips will be his eyebrows! i'm going to break his joints, and reattach them! elaine: you're soo good lookin'. angela: now you listen to me, suck face! you tell anybody, anything, and i will carve my initials in your brain tissue! jerry: let me rephra- angela: i'll bash your skull into a vegematic like a bad cabbage, and i'll have a party on your head! jerry: hi elaine, this is angela. angela: i'll pluck all your body hairs out with my teeth! jerry: well i think i get the gist of it. angela: so you don't say anything to anybody about me hitting that car! jerry: what car? angela: good. i'm glad we understand each other. jerry: it's not complicated. elaine: very nice meeting you! elaine: come on up. elaine: well, well, well, mr. seinfeld! that must have been so frightening! when you confronted that guy, in queens! now, let's just see if i've got this scenario right. jerry: alright elaine. elaine: no, no, no, no, no. because i'm picturing 'french connection', kind of thing. you know? sort of a popeye doyle chase through the city! jerry: it was just a couple of blocks. elaine: oh no, no, come on. don't be so modest! george: hey. elaine: oh, did you check you machine? george: no, why, what's happening? elaine: michael called me today, and he asked me where robin was. george: yeah, okay. elaine: and i said i hadn't seen her. george: what?! elaine: no, no george! you don't understand! she didn't tell me she was using me as an excuse! okay?! but then i realized what was going on, and i said that she left a note. um, but he didn't really buy that. and then, and then he did mention your name. george: he mentioned my name?! what did he say?! elaine: he said he was going to sew your ass to your face. george: what? why couldn't you think of something?! elaine: well i don't know, he caught me off guard! george: you lie! how hard is it to lie?! jerry: it's not that hard. elaine: well who told you to sleep with her george?! george: it's not my fault! i wasn't going to do anything until you got her all juiced up with your story about having the affair with the matador! elaine: oh gosh! none of this would never have happened if you wouldn't have said 'god bless you'! george: oh don't- jerry: hold it! hold it! hold it people! matador? what matador? george: she told this couple she had an affair with a matador. jerry: a matador! well, well, well. uno momento por favor. pray tell, what was the young man's name? elaine: uh, eduardo, uh, carochio. jerry: eduardo, carochio! that's good. that's very good. kind of just rolls of the tongue. i wonder where on the upper west side a single girl might meet a matador? perhaps zabars? or les pizza! jerry: anyway, this person told me to tell you to get an estimate on the damage. becky: well, i already got an estimate. it's $875. jerry: $875? becky: that's right. jerry: uh, well, i'll tell you what. um, i'll give you a check, and then this person can pay me back. jerry: um, who do i make it out to? becky: becky gelke. g-e-l-k-e. jerry: so, what are you doing this weekend? becky: you have got some nerve! you smash up my car, you don't admit it, and now you want to ask me out on a date? jerry: i didn't do it! becky: yeah righ- jerry: you are soo good lookin'. becky: thank you. george: jerry, let's go! you ready? jerry: you sure you want to do this? i'm going to be on the road for three weeks! george: excuse me, i've got a maniac stalking me, i'm not staying in the city. jerry: alright! george: come on let's get out of here. kramer: how could you? jerry: what?! kramer: man! i never thought you were capable of this! jerry: what did i do? kramer: i just talked to becky gelke outside, she told me how you hit and ran. jerry: i- kramer: i don't even want to look at you anymore! all these years of friendship and you're nothing but a felon. you're an embarrassment to the building. jerry: i didn't do it! i just had to pay her to cover for somebody else! kramer: now you're not going to lie to me, are you? jerry: no, never. kramer: alright. well. glad we got that straightened out because i've got a date with her. jerry: you got a date with becky gelke?! kramer: yeah, going out with her saturday night. george: jerry, can we get out of here?! kramer: as a matter of fact, if it wasn't for you, i wouldn't have even had an excuse to talk to her. jerry: well i'm happy to help, in any way that i can. nina: (laughing) kramer, would you hold still? i cant do this if you keep moving. kramer: you sure you dont want me to take my clothes off? (beat) ill do it! nina: no, thats the last thing in the world i want you to do. kramer: well, why dont you take your clothes off? nina: i dont know... i dont think jerry would like that. kramer: (debonair smile) well, itd be our little secret. [cut to: jerrys apartment] george: (bursting out of the bathroom, fumbling with his fly) button fly! why do they put buttons on a fly? it takes ten minutes to get these things open! jerry: i like the button fly. george: (incredulous) what? jerry: that is one place on my wardrobe i do not need sharp interlocking metal teeth. its like a mink trap down there. (beat) what are you doing today? george: nothing. jerry: i have to go meet nina. want to come up to her lot, check out her paintings? george: i dont get art. jerry: theres nothing to get. george: well, it always has to be explained to me, and then i have to have someone explain the explanation. jerry: she does a lot of abstract stuff. in fact she's painting kramer right now. george: what for? jerry: she sees something in him. george: so do i, but i wouldn't hang it on a wall. [cut to: nina's studio again--same scene] kramer: are you getting the eyes? 'cause they're brown. (beat) or, really, they're dark brown, like rich, columbian coffee. nina: tell me about elaine. kramer: she and jerry were a big thing, like abe lincoln and mary todd. nina: but, they're still friends. kramer: oh yeah, they're like this (holds up two fingers together). nina: don't you think that's strange? kramer: why, what's the difference? nina: well, are you still friends with any of your ex-girlfriends? kramer: well, you know... i, uh... have many relationships. [cut to: the door outside nina's studio] george: you know, i'm a little nervous. jerry: why? george: well, you know... the friend meeting the new woman. i feel like i'm getting fixed up for a friendship. jerry: i don't know how long this is gonna last. george: really? i thought you liked her. jerry: i do... she's got like a jealousy thing. she doesn't like me having fun with anyone but her. (knocks on the door) george: you know, it's a miracle you're not married. (beat) hey, i'm not obligated to buy anything, am i? jerry: hi, nina. (smooch) this is my friend george. nina: how nice to meet you, i've heard a lot about you. (george nods) jerry: (walking over to where kramer is posing) hey, look at this guy! kramer: yeah! jerry: (to nina) i brought george up to see some of your paintings. nina: oh, are you interested? george: (looking uncomfortable) um... yeah! sure, sure i'm interested. kramer: george, you gonna buy a painting? george: (gritting teeth) yeah, sure. nina: are you an art-lover? george: i am an art-adorer! i adore art. nina: great! well, take a look around. pick out something you like. (george reluctantly begins to look around, while jerry strolls over to the painting-in-progress [kramer] and picks up a brush.) jerry: may i? (pantomimes making a big "x" across the painting) nina: (laughing) get outta here! (beat) here, play with this. (hands jerry a small white envelope) jerry: what's this? nina: my father gave me four tickets to the yankee game for saturday afternoon. owner's box, first row behind the dugout. jerry: (sincerely disappointed) oh, saturday... i'm working, i'm going out of town. nina: oh, well. i'm not gonna go without you. do you guys want 'em? kramer: (immediately) yeah. jerry: they're right behind the dugout, george, first row! george: behind the dugout, are you kidding? how did you get them? nina: oh, my father's the yankees accountant... it's the owner's box. george: all my life i've dreamed of sitting front row, behind the dugout! nina: (gesturing towards a small, ugly painting george was apparently look-ing at and happens to be holding) you like that one? [cut to: saturday, the game. george, kramer, and elaine are being lead to their seats] george: look at where we are! (referring to the seat usher) he's not stopping! he just keeps going and going and going! (the usher abruptly stops at the second row) we're not in the first row? usher: no, no, these are your seats. george: she said first row! right behind the dugout! elaine: well, it's the second row. it's just as good. george: i was all primed for the first row; i was gonna put my feet up on the dugout! elaine: would you shut up? these are great! you can't get any better than this. george: oh, there's better, (pointing at the row in front of them) right there, that's better. kramer: right. (elaine giggles) oh boy... okay, who wants a dog? (kramer hands out the hot dogs)what a great day! elaine: i could've been at my boss' son's bris right now. george: (amused) you're supposed to do that? elaine: (shrugs) yeah. (beat) what makes you think anyone would want to go to a circumcision? george: i'd rather go to a hanging. elaine: anyway, i called him back... i told him i had to go visit my father in the hospital in maryland. (george laughs) kramer: (screaming at the players on the field) you better catch it, man: george? george: yeah? man: hi. i'm leonard west, nina's father. george: hi! mr. west, this is my friend elaine-- elaine: hi! kramer: (screaming again) hey, 230 ain't gonna cut it in this town, babe! george: --and this is kramer. kramer: oh, hey. west: so how are the seats? george: okay. elaine: great, great. kramer: yeah. west: george, i heard you bought one of nina's paintings. george: yeah, it's being framed right now. i don't even know what it costs. (beat) not, uh, too expensive, is it? west: well, if you have a lot of money. west: (leaving) well, enjoy the game. (beat -- to elaine) i think you better take off that orioles cap. elaine: (thinking he's joking) yeah. i better! west: no, no, no. seriously. you're in the owner's box, and i don't think it's a good idea. elaine: you're not serious. west: yes, yes, yes, i am! elaine: well, did he say that? west: no, no, but he gave me the seats. i don't think he'd like it if you wore an orioles cap. elaine: well maybe you should ask him! west: i don't have to ask him! now are you gonna take the hat off or not? elaine: no! i don't have to take it off, why should i take it off? this is ridiculous!! george: just take the cap off. elaine: george, we are at a baseball game! this is america! west: look. either you take the cap off, or you'll have to leave. elaine: well, i don't care, i'm not taking it off. george: just take the cap off! elaine: no! kramer: hey! just wait a minute. we just got here! george: (to elaine) do you want us to go with you? kramer: (getting up) i'll go get your hat, george. elaine: (sarcastically, to george) stay! george: okay, we'll go! (meanwhile kramer is climbing over the dugout retrieve george's cap... the camera cuts to the field where the batter hits a pop fly to where kramer is: the ball knocks him squarely in the head, he falls off the dugout onto the crowd) elaine: ...and then the ball hits him in the head and he falls right over the railing! jerry: is he okay? elaine: well, yeah, he's fine! we took him to the emergency room, and you know, the x-rays were all negative. (beat) it was quite a day! jerry: this is the most amazing story i've ever heard--why did he want you to take off the baseball cap? that is so insane! elaine: i know! can you imagine that? jerry: how you feeling? kramer: oh, yeah, yeah, i'm fine, i'm fine. (beat--holds up newspaper) hey, we made the paper. eh? look at this- page 2, sports section... we're all in the picture. elaine: wha- a picture? kramer: a picture. elaine: our picture's in there?? kramer: uh-huh. elaine: (gasps) i cannot believe this! jerry: (pointing) there's george! kramer: yup, yup! elaine: ohmygod! lippman could see this! he thinks i was visiting my father! oh my g-i make up one little white lie and they put my picture in the paper! [cut to: lippman's office. lippman is at his desk, elaine enters.] elaine: hi, mr. lippman. lippman: how's your father? elaine: my, my father? lippman: yeah. you, you went to see him, right? elaine: yeah. lippman: uh-huh. elaine: i went to visit him. lippman: uh-huh. so, what was wrong with him? elaine: well, you name it, uh, neuritis, uh, neuralgia... lippman: but--but he's feeling better now? elaine: um, yup. yes, yes, it just... such a miracle, um. my visit must have buoyed (elaine says "boyed") his spirits. lippman: (correcting her) boo-eed. elaine: what--what did i say? lippman: you said "boyed." elaine: i did? lippman: yeah. lippman: well, i got a plane to catch. elaine: oh! where are you going? lippman: going to houston. it's a publisher's convention. (beat) can i have my sports section? elaine: ah. ...yeah. lippman: i've been saving it for the plane. i never miss the sunday sports section. elaine: there's nothing to read, it's just yesterday's news. you know, the yankees won, the mets lost, ricky henderson's unhappy... lippman: right, right. (starts to take the paper from elaine's hand; elaine holds on tight.) what, what are you doing? elaine: wha-- oh! (noticing her hand) oh, god! (laughs) that is the third time today i have done that! blaaah! (laughs again) grabbing news- papers... i'm just tugging at 'em... (laughs) lippman: gotta go. elaine: okay! well, you know, have a nice trip, and uh... alrighty! (beat) i'll just hold down the, uh, fort! [cut to: nina's studio. mr. and mrs. armstrong are admiring nina's "kramer."] mrs.arm: i sense great vulcrability. a land child crying out for love, an innocent orphan in the post-modern world. mr. arm: i see a parasite. mrs.arm: a sexually-depraved miscrient, who is seeking to gratify only his most basic and immediate urges. [cut to: another part of the studio where jerry and nina are arguing.] nina: she was a guest of my father's. she should've taken the cap off. jerry: it's preposterous! they ask someone to take off a baseball cap at a baseball game. (beat) how can you defend that? [cut to: armstrongs admiring painting again.] mrs.arm: he is struggled, he is man-struggled. he lifts my spirit! mr. arm: he is a loathsome, offensive brute, yet i can't look away. [cut to: jerry and nina again.] jerry: look, i'm really getting tired off all the fighting. maybe we should just end this before we really start hating each other. nina: oh, well, you wouldn't want that because you always have to remain friends! jerry: well, i like to remain friends with people i was friends with! nina: hey -- why don't you just go then! and -- oh, give this to george. tell him he owes me $500! [cut to: armstrongs] mrs.arm: he transcends time and space. mr. arm: he sickens me. mrs.arm: i love it. mr. arm: me too. [cut to: jerry's apartment.] george: five-hundred dollars?! what? jerry: that's what she told me! george: i'm not paying $500 for this! it's a piece of junk! jerry: that's what it costs! george: why did you even take it? you broke up with her! jerry: i wasn't thinking! i don't know. george: you weren't thinking. jerry: well, she framed it and everything. george: well, i'm not buying it. no way. forget it. no way i'm buying this! (beat) i mean, look at it! what is it? it's a bunch of squiggly lines! (beat) are you telling me you couldn't paint this? jerry: do you want me to paint you something? i'd love to paint you some- thing! george: i'm not paying for this. if you were going out with her, it'd be a different story. kramer: (entering, handing jerry a piece of paper) this was in front of your door. george: hey, kramer. kramer: hi, mike. jerry: (looking at the paper) wow, a letter from nina! kramer: (notices the painting) whoa, man! that is the ugliest thing i've ever seen! jerry: (reading note) oh my god! george: what? jerry: this is amazing, you can't believe this! george: what's it say? jerry: listen to this "i don't know what you expect to find out there, jerry, you know what you want better than me. but there's one thing i do know. i know i can stand here watching you destroy everything i've ever wanted in my life, wanting to smash your face with my fists, because you won't make even the slightest effort to offer happiness and still know that i love you. you mean so much to me that i'm will-ing to take all your abuse and insults and insensitivity." george: wow! kramer: (emotionally) she's deep. jerry: (reading on) "...'cause that's what you need to do to prove i'm not going to leave you. i'm sick and tired of running from places and people and relationships. you want me, that fight for me, becau-" kramer: you know jerry, she sounds like a poet! jerry: no one's ever written me a letter like this. maybe i was wrong about her! kramer: (pushing jerry towards the phone) yeah! get in there and give her a call. pick up the phone and call her! jerry: should i? kramer: (screaming) yes! you're damn right you should! (hysterically) fight for her, jerry, she's sure as hell fighting for you! jerry: all right, all right! i'll call her. [cut to: jerry's apartment, another day. jerry is helping nina put on her coat. the tv is on a horse race.] jerry: shot! (the sound of a shot on the tv is heard) i told ya! (the inter- com buzzes) yeah? george: (on intercom) it's george. jerry: come on up. (to nina) well, now we gotta get a posse together. i love a good posse. nina: what's the appeal of the posse? jerry: the appeal of the posse? the posse has tremendous appeal. get away from the job, camp out, you're with your friends... come on, it's a week-long game of hide-and-seek on horseback. nina: hello, george. george: hey, nina! (beat) i owe you some money, don't i? nina: well, i really love that piece. george: oh, yeah, me too, me too. boy oh boy oh boy...! you know, in fact, i've been thinking about it, and i feel like i'm stealing from you! five-hundred dollars! it's gonna be worth thousands soon! you know what? on second thought, i can't even accept it. nina: no, no no no, george! a deal's a deal. i want you to have it! george: this could be in a museum some day! it's not safe with me! it should really be in a doormanned building. nina: honestly, george, the money's not important. george: who said anything about money? (intercom buzzes) jerry: yeah? elaine: (on intercom) it's elaine. jerry: come on up. nina: elaine? jerry: ...yeah. nina: (rolling eyes) this person does not believe in telephones, does she? jerry: she likes the pop-in. i've told her how i hate the pop-in. (pointing to george) he likes the pop-in, too. george: i just popped in now. i'm a big pop-in guy. jerry: yeah. george: how 'bout kramer. jerry: huge pop-in guy! nina: well, i was leaving anyway, so, uh, we're on for tomorrow? jerry: yeah. nina: okay. jerry: okay! nina: bye. (just as nina is about to leave, elaine walks in.) elaine: (to nina) hello! elaine: (sarcastic) chatty gal. (beat) lippman's coming back tomorrow, i'll be fired! jerry: if he noticed, he would have called you from houston! elaine: no, he wants to torture me. [cut to: later on that night. george, elaine, and jerry are watching tv.jerry, with the remote, is furiously flipping through channels.] elaine: (annoyed) oh! would you gimme the clicker? i hate it when you're the clicker! you go too fast! (elain makes a grab for the clicker, instigating a tug-o-war between elaine and jerry over the clicker) jerry: (tugging at the clicker) i'm a great clicker! (gets the clicker back) great instincts. how dare you impune my clicking. elaine: you're all over the dial! you don't know what you want! i've never seen you stay on anything for more than 5 seconds. gimme that. jerry: let go! elaine: no, come on! i want it, jerry! jerry: let go, elaine! elaine: well at least let george do it! jerry: oh, george can't click! (george joins in the fight) george: (as jerry and elaine continue to whine) give it! give it! (he finally gets the remote away from them) pinheads. jerry: wait, wait a second! go back, go back to that. (they watch it a little longer) elaine: it's chapter 2, it's neil simon. jerry: (on to something) wait a second... wait a second!! (he watches the tv for another minute) the letter, that's the letter! elaine: what letter? jerry: this is the letter she wrote to me, she stole it right from the movie! jerry: "...'cause you don't even make the slightest effort to offer happiness still know that i love you!!" george: this is incredible! jerry: i always thought there was something funny about this letter! she copied it right out of chapter 2! she a thief, a bunko-artist! george: maybe i won't send her that check. elaine: you know, it's not really that terrible. jerry: what are you talking about? she completely misrepresented herself! (mimicking the letter) i don't offer happiness. i offer happiness! james caan doesn't offer happiness! [cut to: lippman's office. lippman is on the phone when elaine walks in and places something on his desk. after she does, she tries to leave but lippman, still on the phone, motions for her to stay in the room] lippman: (into phone)...yeah, yeah. but she wouldn't take the cap off? (beat) but didn't she know they were the owner's seats? (beat) aw, that's unbelievable. (beat) yeah. okay. alright lenny, thanks again. take care. (hangs up the phone, and then, to elaine) that was lenny west, my accountant, who is a hell of a guy. and he handles the yankees too; it's his biggest account. so every once in a while they throw him a couple of seats and last weekend he gave them to his daughter. she's an artist, by the way. anyway, her daughter gives 'em to some friends, you know. one of her friends shows up wearing a baltimore cap! (beat) you're from baltimore, right? elaine: um, oh, it's townscend, which is near baltimore. lippman: yeah, but you're an oriole fan, right? elaine: well, uh, fan. my father-- lippman: anyway, she refused to take the cap off; caused a whole big scene! elaine: really? lippman: yeah. elaine: so... impudent. lippman: yeah, so lenny gave me the tickets for tomorrow night. i'm inviting frank and marsha. 'wantcha to come. elaine: (pause) ah. i've-i've got plans, though, mr. li-- lippman: well, break 'em. you missed the bris, i want you at the game. elaine: (very reluctant) okay. lippman: good. (elaine stars to leave) oh--and elaine. you know the baltimore cap you got in your office? wear it. i'm gonna have a little fun with him. elaine: that will be fun. [cut to: nina's studio. nina is working on a painting. jerry is watching her, sitting on the sofa.] jerry: how's it coming? nina: good, good. jerry: seen any good movies lately? nina: no... not really. you? jerry: no. i like a good comedy. you know, like a neil simon? you like neil simon? nina: neil simon? uh, some of his stuff. jerry: i've seen most of it. i guess my favorite would have to be, uh... chapter 2. have you ever seen that? nina: i don't know... maybe. jerry: i have. funny, funny. in fact it was on tv just the other night. happened to catch it. (a knock is heard at the door) i couldn't help notice a stunning similiarity-- (jerry is interrupted as nina opens answer the door...) mr. arm: well, we've made our decision. we want "the kramer." [cut to: jerry's apartment, night. jerry and george are watching a baseball game and talking.] george: five-thousand? why would anybody buy kramer for $5000? (laughs) jerry: boy, the yankees cannot buy a hit tonight! george: so is it all over between you and... marsha mason? jerry: yeah. (picks up nina's painting george bought) and by the way, can you get this thing outta my house? george: tell you what, i'll make a deal with you. i'll sell it to you right now for ten bucks. tvvoice: uh, there's seems to be a lot of trouble in the area just behind the yankee dugout. george: behind the dugout, that's where we were sitting the other day. tvvoice: well, we're not going to show it, we don't want to encourage that kind of behavior. say, it's a young lady, and boy she's really going at it with the security guard. she's a fiesty one. and now they're getting the other security guard to come down. how do you like that seegers? boy, she's someting. (beat) and a ball to left field..." [cut to: the armstrong's dining room. mr. and mrs. armstrong are having kramer over for dinner.] kramer: ...then, when i was seventeen, i ran away from home and hopped a steamship to sweden. (beat) this steak is excellent, by the way. mrs.arm: more potatoes? kramer: yeah, sure. please. mr. arm: yes, yes. go on. you hopped a steamship to sweden? kramer: yeah. (beat) and, it was a big one. kramer: hey. i got some bad news for you, buddy. i think your car got stolen again. jerry: what are you talking about? kramer: well you parked it on eighty-fourth and columbus, right? jerry: yeah. kramer: yep, well i just walked by there and that car is gone. jerry: oh yeah, i know. kramer: well, where is it? jerry: what's the difference? kramer: well, there's no difference, you know, i'm just curious. jerry: you always have to know everything that's going on, don't you? kramer: what happened to the car? jerry: if i don't tell you it will kill you, won't it? kramer: yeah, yeah, it'll kill me. jerry: you have to know, you must know. kramer: i must know. jerry: well, i'm not telling you. kramer: oh, come on. jerry: nope. i don't think so. kramer: well, please? jerry: not today, pal. kramer: okay, i beg you. jerry: now see? just saying beg doesn't make it a real beg. you gotta put some beg into it. kramer: okay, please! please tell me! jerry: alright, i'll tell you, but your begging needs a lot of work. kramer: okay, okay, what is it? come on. jerry: i loaned the car to george. kramer: ah, george, alright. well, what for? jerry: george and elaine went to a flea market in westchester, okay?! kramer: alright. jerry: huh? kramer: huh. i mean, what do they want to go there for? jerry: will you stop it already?! kramer: you know, why didn't they ask me to go? jerry: i don't know! how am i supposed to know?! kramer: what, they don't like me? jerry: *i* don't like you! kramer: if they like me, why don't they ask me to go? oh yeah. george: i really think it looks good. elaine: ten bucks, how can you go wrong? george: all bald people look good in hats. elaine: you should have lived in the twenties and thirties, you know men wore hats all the time then. george: what a bald paradise that must have been. nobody knew. elaine: well, you can wear a hat all the time now. who's stopping you? george: no, i can't. what if i meet a woman? i'd always be worried about that first moment where i'd take it off and see that look of disappointment on her face. elaine: are you sure you like these sunglasses? kramer: well i'm very disappointed in george and elaine. and you know i'm somebody you don't want to have on your bad side. jerry: why not? kramer: because i'm like ice, buddy. when i don't like you, you've got problems. (notices some snacks on the table) oh, is this for the fight? jerry: yep. (checks watch) starts in thirty-five minutes. kramer: oh hey, you know i invited mike moffit. you don't mind, do you? jerry: no, i like mike. kramer: yeah, i just got off the phone with him, you know we had a great conversation. jerry: oh yeah? what did you talk about? kramer: well actually we talked about you. yeah. he had some pretty interesting things to say. jerry: oh yeah? what did he say? kramer: you have to know everything, don't you? jerry: no, come on, kramer. what did he say? kramer: why is that? why do you have to know everything? jerry: kramer, just tell me what the guy said. kramer: beg me. jerry: please, don't make me beg. kramer: no no no, i want you to beg me. and i don't want you to say it, i just want you to put some beg into it. go on. jerry: kramer, please tell me what the guy said. kramer: no no no, that's no good. no, i really don't think that's a beg. no, it's close, but uh... jerry: kramer! kramer: look, i can't say anything. you know, the guy told me the stuff in confidence, i'd be betraying a friend. jerry: well you can't just mention it and then not tell me. kramer: alright. i'll tell you but you can't say anything to him. jerry: i'm not saying anything, i'm putting it in the vault, i'm locking the vault, it's a vault! kramer: he thinks you're a phony. jerry: he what? kramer: i told you, he thinks you're a phony. jerry: a phony? he called me a phony? kramer: a big phone. a big one. jerry: why did you tell me that if i can't say anything?! kramer: you begged me. george: do you hear that? elaine: of course i hear that. george: you had to move the mirror? elaine: i wanted to check out my sunglasses. george: i went to look in the mirror, it wasn't there. you threw off my equilibrium. elaine: oh yeah, blame it on me because you can't drive, george. george: i can't drive? elaine: yeah. george: nobody drives like me. nobody. i'm doing things in this car, you have no idea they're going on. wanna see me make a right turn from the left lane? watch this. elaine: no, i really don't. george: and i can make a left turn from the right lane too. elaine: i'm sure you could. george: what are we gonna tell jerry about the car? elaine: i don't know. george: alright, start looking for spaces. elaine: oh, you're never gonna find a space on jerry's block, just put it in a garage. george: look, i have my system. first i look for the dream spot right in front of the door, then i slowly expand out in concentric circles. elaine: oh come on, george, please put it in a garage. i don't want to spend an hour looking for a space. george: i can't park in a garage. elaine: why? george: i don't know, i just can't. nobody in my family can pay for parking, it's a sickness. my father never paid for parking; my mother, my brother, nobody. we can't do it. elaine: i'll pay for it. george: you don't understand. a garage. i can't even pull in there. it's like going to a prostitute. why should i pay, when if i apply myself, maybe i could get it for free? (he hears a horn honking) what? what do you want? go around me, i'm looking for spaces. elaine: (pointing backwards) oh george, there's a space right there! george: (putting the car in reverse) oh beautiful! look at that, the dream space right in front of jerry's building. huh? dreams can come true, what did i tell you? elaine: you didn't even have to take it out to dinner. george: alright, now you're gonna see some parallel parking. (spitting into his hands and rubbing them together) how i wish you could make a living parallel parking. (turning around in his seat) it's all geometry, knowing all the angles, when to make that first turn and then when to swing it back in, that's the key. elaine: will you just park it already? george: there's nothing i can even impart to you, that's the sad thing. it's so inborn, i can't pass it on. (begins backing into the space) look at this guy. are you crazy, what are you doing?! hey! hey, you're stealing my space! elaine: george, wait, you don't know who this guy is, people kill for a parking space in this city. george: no no no, he's not getting away with this. elaine: george? george: hey, what are you doing? mike: i think i'm parking my car. george: you can't do that, you can't just sneak in from the back like that. mike: i'm not sneaking. i didn't even know you were parking, you were just sitting there three spaces up. george: well if you didn't think i was parking, why did you put it in head first? mike: well that's the way i park. anyway, you didn't start backing in until i pulled in. george: i was in the middle of a conversation. mike: hey, buddy, what can i tell you? george: the point is i was here first. mike: i was closer to this space than you were. george: but i'm backing in! you can't put it in head first! mike: i can if i have room! george: are you gonna move the car? mike: no, i'm not gonna move the car. george: jerk! mike: oh, you're not? george: do you believe this guy? elaine: come on, we'll put it in a garage. george: i am not putting it in a garage, it's my space. elaine: what are you gonna do, you just gonna leave it here like this? uh. i'm going upstairs. george: are you coming back down? elaine: yeah, i gotta tell jerry we're here. i gotta go to the bathroom. george: alright, just make sure he reserves the good chair for me. wait, what are you gonna tell him about the clanking noise in the car? elaine: me? no no no, you. you're gonna tell him. i'm not gonna tell- noo. george: oh, come on, you're good at this. elaine: what am i gonna say? george: i don't know, i don't know, you'll think of something. elaine: oh god, i need a drink, do you got any hennigan's here? jerry: yeah, under the counter. what happened? elaine: oh god. oh, jerry it was so terrible what we just went through on the way home. (pouring a big shot of scotch) you wouldn't believe it. (pushing a bag of chips off the counter) jerry: (bending down to pick up the chips) tell me what happened. elaine: (after pouring the shot in the sink while jerry was distracted and pretending to have downed it) okay. now listen. we were at the toll booth at the henry hudson parkway, okay?! and there were these, like, this pack of extremely wild teenagers in a convertible behind us, okay?! and for some reason, i don't know, they just started to taunt us! and so then we payed the toll, and then we went through, and then they started to follow us, alright?! so george tries to lose them, and, and, but they were in this really like a souped up car, you know?! and so he turned off the road really suddenly and the car was on two wheels and i was just screaming! and then, george is such a great driver. jerry: he is? elaine: oh, he is fantastic! and then they fired a gun right up in the air. jerry: a gun?! elaine: i think it was a gun. and then they followed us all the way into the city, and then they just stopped and they turned around and they went home. jerry: my god, are you okay? elaine: yeah, yeah, i'm alright. oh, by the way, the car hit a pothole and now it's making a clanking noise. jerry: well, i mean, as long as you're okay, that, that's the important thing. elaine: exactly. jerry: where's george now? elaine: oh, he's out in front of the building. he's arguing with some guy about a parking space. jerry: what are you talking about? elaine: look out the window, you'll see. jerry: (leaning out the window) hey georgie! george: hey! jerry: are you okay? george: yeah, i'm fine. jerry: crazy kids, huh? george: what? elaine: (desperate to distract jerry) ow!! (jerry looks over) it's my cuticle. mike: is that jerry? jerry?! jerry: oh, hey mike. george: what, you know jerry? mike: yeah, i know jerry. george: how do you know him? mike: what's the difference? george: because i know him too, and probably a lot better than you. mike: well, bully for you. hey, jerry! you know your friend here's a real piece of work! jerry: i'm coming down. mike: hey, will you tell kramer i'm outside? george: what, you know kramer?! elaine: hi. kramer: (acting standoffish) hello. jerry: hey, your friend mike's outside, he wants to talk to you. kramer: (out the window) hey, mike! come on up, the fight's almost starting! george: and you're watching the fight at jerry's? mike: yeah. george: oh great. elaine: you know that guy downstairs? jerry: yeah, he's a real phony. kramer: what's going on?! mike: hey, will you come on down? this guy's in my space! george: it's my space! kramer: i'll be down in a minute. elaine: are you going down? kramer: yeah. elaine: is anything wrong? kramer: (leaving) why should anything be wrong? elaine: (heading for the bathroom) be down in a minute. mike: hey pal, you're not getting that space. i mean, i'll sleep in my car if i have to. george: i'll die out here. bystander #1: he was down there. once he passed his front bumper, it's no longer his space. bystander #2: no, it doesn't matter. he was- mike: hey! jerry! long time no see! jerry: hi mike. (noticing george's fedora) indiana. mike: hey krame! you know this guy? kramer: yeah, yeah, i know him. mike: (to jerry) you're looking tremendous. what are you on some kind of regimen? jerry: yeah, twenty-five percent bran flakes. the forty percent was too much so i found a store to mix it up special for me, they take it down another fifteen percent. mike: (laughing way too loud and hard) ha ha ha ha!!! that's killer! killer! i love that! ha ha ha!!! you gotta use that, that's a definite!! ha ha ha!!! george: oh, come on. mike: hey! your friend here has some real problems. george: me? you see what he did here, you see how he tried to sneak into my space? mike: hey, just 'cause i went in front first doesn't mean i'm sneaking in. george: you only went in front first 'cause you saw me backing up and you didn't have room to parallel park! mike: i only went in front first 'cause i could make it in front first and if you pull out i'll show you! george: you've got a prayer. kramer: i go in front first all the time. jerry: front first, that's how you park when you're pulling a bank job. george: did you talk to him? elaine: yeah, it's all taken care of. george: you told him? what did you tell him? elaine: i did a number on him, it was a thing of beauty, you really had to have been there to appreciate it. george: i don't believe it, what did you say? elaine: i told him a pack of teenagers in a convertible were terrorizing us and they followed us into the city. george: a pack of teenagers? elaine: yeah, by the time i got to the end of the story, he was to relieved that we were alive he couldn't care less about the car. george: you are a genius, it's as simple as that. elaine: what can i say, you know? it's a gift. i only wish i could teach it but, you know it's inborn. kramer: by the way, thanks a lot for inviting me to the flea market. elaine: what? kramer: yeah, jerry, he told me all about it. george: oh great. jerry: i didn't know. elaine: oh, so that's why you were acting so funny. george: well i didn't know you wanted to go to the flea market. mike: a flea market? you went to a flea market?? george: hey, who's talking to you? elaine: we just didn't think of you. kramer: you said it, sister. george: what? every time i leave my house now i have to call everybody i know and ask them if they want to do what i'm doing? george: great move, telling him, by the way, real smart move. jerry: i didn't know i wasn't supposed to say anything! george: judgement, jerry, judgement! you exercised no judgement. jerry: you're right. my fault. elaine: kramer? i'm so sorry, really. george: yeah, i'm sorry. kramer: i'm sorry, i don't care for that sorry. george: what was wrong with that sorry? it was a good sorry. jerry, was that a good sorry? jerry: it was a so-so sorry. truck driver: hey! move this car, i gotta get through! george: you heard the man. i guess you gotta be moving your car. mike: and like you're not gonna just back it in if i do that? truck driver: well somebody better move something soon! i got a truck full of ice cream here! elaine: you see, they had to move the cars so the truck could get through, right? but these guys don't trust each other so they got these two nonpartisan drivers to move them. jerry: wild pack of teenagers, huh? george: yeah. jerry: amazing how they picked you, out of everyone, to terrorize. elaine: yeah. i know, i said to myself, 'why us?' you remember? george: uh huh. jerry: sounds like you did some pretty nifty maneuvering, george: well, you know, it's interesting, you know, under that pressure, what you're capable of. elaine: right. george: i learned a lot about myself. jerry: what did you do to my car?! george: i couldn't help it! elaine moved the mirror, i got discombobulated. elaine: oh, like you've ever been bobulated. jerry: i thought you said you were a good driver! george: no no, i never said i was a good driver, i said i was a good parker. jerry: i think you said driver. george: parker, i never said driver, i said parker, a great parker. mike: will you move it up a little bit? george: no no no, that's in the right position. mike: no no, i was further in. george: no you weren't. stop there, that's fine. mike: do you mind? george: do you? sid: hey, somebody better move these cars, you're making a commotion. jerry: hey sid. mike: who are you? sid: never mind who i am. i know who i am. do you know who you are? (to george) why is it every time you park a car in this block, everything gets disrupted and disjointed? george: sid, it's completely his fault. mike: oh, right. sid: why don't you start taking the bus? jerry: okay, george. come on, let's go. i'm putting it in a garage. the fight's starting in two minutes. george: don't do it! jerry: what are we gonna do, stay out here all night? george: yes! i'm not giving him the satisfaction, it's my space. elaine: why don't you just flip a coin already? george: no no, this is a matter of principle. that would just be saying that anybody could just pull into any parking space any way they want. well i'm making a stand here. i'm saying *no* to head first parking. i'm not putting up with that. we put up with too much crap in this city, we're not putting up with head first parking. elaine: you know, maybe if you hadn't been sitting there pontificating about what a great parker you were, you might have got the space. george: so you're against me now? angry man: he could have pulled up to the car and backed in, but he chose to go in head first. matthew: no he couldn't, because the other car was already backing in. angry man: no he wasn't. matthew: all that matters is who was there first. angry man: ahh, you're not even old enough to drive, you little puke. matthew: you just spit on me! angry man: don't you raise your voice to me! matthew: you're not my father. jerry: hey matthew. matthew: hi jerry. this guy's really a jerk. jerry: how ya doing? matthew: okay. jerry: hey, how's your father? i hear he's closing his store. matthew: what?! jerry: oh no, nothing. matthew: what's happened to daddy? he's going out of business? jerry: no, no, no, no. matthew: we're not going to have any money? we're out of money? jerry: no, of course not, of course not! matthew: mommy!? jerry says daddy's closing the store. he's going out of business. we don't have any money? maryedith: jerry?! what's the matter with you? jerry: i didn't-- maryedith: (to kramer) boy, i don't know about your friend, jerry. he says some pretty stupid things sometimes. kramer: oh, congratulations. maryedith: what for? kramer: well, you're pregnant. maryedith: what? kramer: you're not pregnant? maryedith: no, i'm not pregnant. kramer: are you sure you're not pregnant? maryedith: yes, i'm sure! kramer: that's weird. maryedith: come on, matthew. matthew: no. maryedith: come on, matthew! kramer: i thought she was pregnant. jerry: (to elaine) hey, do you think i'm phony? elaine: what? jerry: mike thinks i'm a phony. elaine: he thinks you're a phony? jerry: yeah, but i can't say anything because kramer wasn't supposed to tell me. elaine: oh, you have to say something. jerry: i can't, i told kramer i was vaulting it. elaine: you gotta open the vault. jerry: open my vault? elaine: open your vault. jerry: once i open the vault, it ceases to be a vault. elaine: you have no choice. jerry: oy ga-vault. newman: (to kramer) you wanna know why you can't go in front first? i'll tell you why. because it signals a breakdown in the social order. chaos. it reduces us to jungle law. kramer: when can you park head first? newman: never. mike: what are you asking this guy for? newman: who's talking to you? george: he's right. never. mike: oh yeah? what if you got ten car lengths? you have to pull all the way up to the front car? newman: well, i suppose if you got ten car lengths. george: when do you ever have ten car lengths? kramer: what about sundays and holidays? george: oh please. sheila: what's going on here? george: oh, this guy tried to sneak into my space. sheila: i really hate people who do that. i hope you don't let him get away with it. george: well, thank you for your support. sheila: hey, that's a great hat. george: really? you like it? i got it at a flea market today. newman: hey george, nice hat. george: yeah, thanks. newman: can i try it on? george: no! it, uh, it wouldn't fit you. newman: well sure it would. george: no! get out of here, newman. newman: come on, let me try it on. george: no, newman, stop it. sheila: let him try it on. george: i don't want him to! sheila: what is wrong with you? george: you wanna see?! (pulling off the hat to reveal the bald pate) there! there it is! (turning to newman) alright, here! you wanna try on the hat?! here! try on the hat! newman: stop it, george, stop it. i was defending your parking. george: alright, just keep the hat! jerry: alright, that's it. the fight's already started. i'm going upstairs, who's coming? elaine? elaine: it depends on who's going. (to george) are you going? kramer: i'm not going if he's going. newman: me either. george: i'm not going if he's going. mike: well i'm going. jerry: well if he's going then i'm not going. newman: but it's your house. jerry: i still don't have to go. elaine: well i don't want to go if jerry's not going. mike: why won't you go if i go? jerry: why? i'll tell you why. kramer: no. don't, jerry. jerry: like you didn't call me a phony? mike: what? (to kramer) thanks! real good! jerry! first of all, i think you completely misunderstood what i said. i meant it in a complementary way. i mean, you know when people say, 'he's bad', it really means he's good, sort of thing? you know, slang. jerry: use it in a sentence. mike: man, that michael jordan is so phony. (to kramer) why'd you tell him?!? kramer: he begged me. mike: he begged you?! jerry: alright, come on. who wants to watch the fight? cop #1: okay, who's cars are these? let's move 'em. let's go. george: officer, could i just explain something to you? cop #1: hey. let's go or i'm gonna write both of you a ticket in about two minutes. george: officer, he can't pull in head first. mike: officer, he backed up from down the street. he was double-parked, he was cop #1: alright, you move your car. it's his space, you can't go in head cop #2: wait a second. why can't he go in head first? he said the guy was just sitting over there. cop #1: what are you talking about? this guy was here first. cop #2: but he didn't take it. cop #1: hey, it's his space. cop #2: no, it's his space. george: well, you're gonna have to go to the bathroom! mike: well, you're gonna have to go to work! george: i don't have a job! mike: neither do i! referee: seven... eight... nine... ten. *ding* jerry's stand-up: so, i fly a lot. i like planes. i was on a plane the other day and i was wondering - are there keys to the plane? do they need keys to start the plane? maybe that's what those delays on the ground are sometimes. when you're just sitting there at the gate, maybe the pilot's just up there in the cockpit going (mimics looking for keys) "oh, i don't believe this. oh my god...i did it again." they tell you it's something mechanical, because they don't want to come on the pa system..."ladies and gentlemen, we're going to be delayed here on the ground for a little while, i uh...oh god, this is so embarrassing...i - i left the keys to the plane in my apartment." you see the technicians all running underneath the plane; you think they're servicing it, but they're actually looking for the magnet "hide-a-key" under the wing..."maybe he left it up there somewhere..." opening scene: jerry's apartment in the middle of the night. jerry comes out of his room. we hear his thoughts. jerry's brain: what is it about sleep that makes you so thirsty? do dreams require liquid? it's not like i'm running a marathon, i'm just lying there. jerry's brain: what the hell...? why is the door open? jerry: kramer, what are you doing here!? kramer: jerry, now calm down, it's okay. i'm sorry. i didn't want to wake you up! y'know, i was watching "thirty seconds over tokyo," and i - y'know, i wanted to get some popcorn, and i, uh...i used the spare keys that you gave me to come into your apartment to get your popper. jerry: you scared me! kramer: it's just me. jerry: that's enough! kramer: forgot the popper... (goes to the kitchen, grabs the popper, drops the lid, juggles it around, then exits.) jerry (from outside the door): c'mon...c'mon... jerry: kramer! what are you doing?! kramer: what does it look like i'm doing? what? jerry: get out! get out of the bathroom, i gotta go! kramer: alright, alright... jerry: c'mon! kramer: sorry. jerry: move it! move it! get going! kramer: my drain's all clogged up! (comes out of the bathroom in a towel, covered in soap suds.) jerry (from inside the bathroom): is that my towel? girlfriend: i'm really happy the movie was sold out. jerry: hey, did you ever pretend there's like, murderers chasing you, and you try and see how fast you can get your keys out and get into your apartment? girlfriend: i'm from witchita, so... jerry: oh. i see. there he is! (pretends the murderers are coming.) girlfriend: hurry, jerry! he's coming! hurry! jerry: the murderers! (jerry unlocks his door and they both run inside.) girlfriend: that was close! jerry: did you see the look on that guy's face? girlfriend: you were so fast with those keys. (they prepare to kiss, but are interrupted by kramer and his girlfriend coming out of jerry's bedroom, laughing and horsing around.) jerry: kramer! what the hell are you doing here?! kramer: hey, jerry! how are ya? i thought you were going to the movies. jerry: all right, that's it. hand 'em over. kramer: what? jerry: what, you know what, the keys. i want the keys. you've lost your key privileges. kramer: oh, come on! jerry: no, come on! kramer: what, what, i thought you went to the movies! jerry: it was sold out! kramer: now how was i supposed to know it was going to be sold out? jerry: that's the point. kramer: what point? jerry: just, look, just give the keys. kramer: just give me another chance! jerry: don't ask me! kramer: i'm asking you! jerry: i'm telling you. kramer: you're joking. jerry: i'm serious! kramer: it's not going to happen again! jerry: yes it will, now give me those keys! kramer (getting up): o.k., fine, go ahead, you take the keys! but you're going to regret this. (he angrily storms out. kramer then re-enters seconds later when he realizes he's left his girlfriend in jerry's apartment.) jerry: so put 'em in a safe place. elaine: i will. jerry: where? elaine: i don't know. i'll hide 'em. so, is kramer upset? jerry: i think so. i mean, he's acting really weird lately...he's different. elaine: well, maybe you should just give him the keys back. jerry: i can't. elaine (mouths the words): is that kramer? (jerry nods.) jerry: who's there? kramer (in hallway): uh, kramer. (jerry opens the door, kramer enters. elaine waves at kramer with the keys in her hand.) oh, hi...uh...you got the... elaine: oh, i'm not, uh... kramer: no, no, no, it's o.k. i don't care about the keys. it's my fault. i gave the keys away with my stupidity. i broke "the covenant of the keys." elaine: jerry, give him the keys back. jerry: elaine... kramer: i don't want the keys back! no, i'm glad the way things turned out. i was clingin' to those keys, man! like a branch on the banks of a raging river. and now i have let go. and i'm free...to go with the current. to float. (to jerry) and i thank you. jerry: take the keys. kramer: i don't want the keys! (jerry tries to force the keys on kramer, but kramer refuses.) jerry: o.k.! kramer: now, one more thing - i would like my keys back. jerry: your spare set? kramer: that's right. jerry: you want 'em back? kramer: yeah. yeah, i think it would be for the best. george: gee, kramer, i uh...i don't know what to say. kramer: say yes! yes, george. yes! george: should i give you my keys, is that the transaction, trading keys...? because elaine has my keys. kramer: well, you can get 'em back. george: i suppose i could. kramer: because you see, george, having the keys to jerry's apartment? that kept me in a fantasy world. every time i went over to his house, it was like i was on vacation. better food, better view, better tv. and cleaner? oh - much cleaner. that became my reality. i ignored the squalor in my own life because i'm looking at life, you see, through jerry's eyes. i was living in twilight, george. living in the shadows. living in the darkness...like you. george: me? kramer: oh, yeah. i can barely see you, george. george: alright, stop it kramer, you're freakin' me out. (the waitress comes over.) waitress: hi, are you ready to order? (george tries to order, but kramer interrupts.) kramer (moves over and sits next to george): do you ever yearn? george: yearn? do i yearn? kramer: i yearn. george: you yearn. kramer: oh, yes. yes, i yearn. often, i...i sit...and yearn. have you yearned? george: well, not recently. i craved. i crave all the time, constant craving...but i haven't yearned. kramer (in disgust): look at you. george: aw, kramer, don't start... kramer (moving back to the othe side of the booth): you're wasting your life. george: i am not! what you call wasting, i call living! i'm living my life! kramer: o.k., like what? no, tell me! do you have a job? george: no. kramer: you got money? george: no. kramer: do you have a woman? george: no. kramer: do you have any prospects? george: no. kramer: you got anything on the horizon? george: uh...no. kramer: do you have any action at all? george: no. kramer: do you have any conceivable reason for even getting up in the morning? george: i like to get the daily news! kramer: george, it's time for us to grow up - and be men. not little boys. george: why? kramer: i'm goin' to california. you know, i got the bug. george: yeah, i think i got a touch of something, too. kramer: no, the acting bug. ever since i was in that woody allen movie. george: "these pretzels are making me thirsty"? that was one line! you got fired! kramer: i know, i know, but man! i never felt so alive! now, are you coming with me? george: uh, no, i'm not. kramer: alright, suit yourself. but let's keep this between us - we're key brothers now. (gets up to leave.) george: you're not really gonna go to california, are you? kramer (points to his head): up here, i'm already gone. (kramer exits.) george: anyway, so he gave me his spare keys, now he wants to have my keys, so i need mine back from you. elaine: just 'cause you have his keys? why does he need yours? george: i don't know. he said he wants to be my "key brother." elaine: that's ridiculous. george (shakes huge keyring): that's kramer. elaine: i'll give you back your spare keys - but now i want mine back. george: what for? elaine: 'cause. i'll give 'em to jerry. george: jerry? why? elaine: 'cause he gave me his. george: so what? elaine: so, if he has my keys, i should have his. george: well, i don't see why if you have his, he should have yours. elaine: i just said the same thing to you. george: what? elaine: what? george: alright, listen, i'll give you your spare keys, but i don't have them with me. can i please have mine to give to back to kramer? elaine: yeah, o.k. i'll go get 'em. (george begins to leaf through papers on elaine's counter.) what are you doing? would you just put that down? (takes the papers away from george.) i gotta get some new friends. jerry: did you bring the keys? george: yes, but i still don't feel right about letting you into kramer's apartment without his permission. jerry: this could be an emergency! george: you never should have taken away his keys! jerry: i tried to give 'em back, he wouldn't take 'em. (jerry and george go out into the hallway to kramer's apartment.) george: how'd the mets do? jerry: they lost. jerry: kramer? newman (startling them): hello, boys. jerry: hello, newman. newman: you lookin' for someone? jerry: don't play coy with me, newman, i'm not in the mood! newman: coy? i'm not being coy. jerry (to george): is he being coy? george: yeah, coy. jerry: you're being coy. now where's kramer, newman? newman (coyly): who? jerry: listen, tiny. i wanna know where kramer is and wanna know now! newman: alright, go ahead and hit me, seinfeld. i got witnesses. jerry: turn around, george. george: sure. (turns around.) newman: george? jerry: now, you better tell me where kramer is, or are we gonna have to do this the hard way? (hits wall with his fist.) newman: help! help! jerry: where's kramer? newman: help! (elaine enters.) elaine: what's going on? newman: they're gonna beat me up! george: no we're not. jerry: we're trying to find out what happened to kramer. newman: you wanna know what happened to kramer? i'll tell you what happened to kramer. he was ticked off. about the keys. yeah, that's right - about the keys. thought he got a bad rap. jerry: bad rap? newman: yeah. from you. jerry: me? newman: you heard me. so he packed it up and split for the coast. la-la land. l.a. jerry: l.a.? jerry: i never should have taken his keys away. but he drove me to it! i had no choice! he wouldn't take 'em back. elaine, you saw it, remember? i said, 'take the keys back.' he wouldn't do anything. you saw it, didn't you see it? elaine: yeah, yeah, i saw it. (mutters under her breath) i mean, it's complete bullshit. jerry: huh? elaine: what...? jerry: no, what'd you say? elaine: nothing. i didn't say anything. jerry: oh, you didn't see it. elaine: yeah, i saw it. i saw it! i did, i saw it. yep. jerry: i heard you say something, there. elaine: i didn't say anything. jerry: i'm calling kramer's mother. (picks up the phone, dials.) (to elaine) i don't know what you said. but it was something. i heard something. hello? hello, mrs. kramer? mrs. kramer? could you turn the music down? could you turn the music down! george: ask her about kramer. jerry: she's drunk out of her mind. jerry (leaving a message on elaine's machine): elaine? are you there? it's me, i'm locked out of my apartment, i need my spare keys. where are you? i'm at the coffee shop. kramer (shouting over the cycle's engine): hey! you ever been in an accident? biker: about five years ago. i was going down this very road. same time of day, going about the same speed i'm going now...there was a rock in the road. couldn't have been more than a pebble. never really saw it! lost control of the bike, went flyin' about a hundred feet - came down right on my head. cracked it wide open! blood and stuff was just splattered all over the road, there...i broke every bone in my face. hey, you know, when they found me, my eyes were hanging out of their sockets? yeah, they pronounced me dead at the scene. i was in a coma for...well, they told me about a year...said i'd be a vegetable for life. yeah, but i showed 'em. ever since then i always wear a helmet! (the biker goes into a turn.) lean! (kramer yells.) jerry (applauding): georgie boy! way to come through with the keys! sit down, i'm buying you dinner. george: look, i gotta tell ya...i been thinkin' about it, i just don't feel right about letting you into elaine's apartment. jerry: don't feel right? what are you talking about? george: well, you know, i shouldn't have let you into kramer's, now you want to go into elaine's...she entrusted me with her spare keys, how can i just let you in? jerry: what is the big deal? george: just because you have someone's spare keys, it doesn't entitle you to break into their apartment. that's the reason you took away kramer's keys. jerry: first of all, you're not even supposed to have elaine's keys. you're supposed to give 'em back to her, so she can give 'em back to me, because she has mine. so technically, those are my keys. george: yes, well, if you had never taken your keys back from kramer, he never would have taken his back from you and given 'em to me, in which case i wouldn't have had to take mine back from her. jerry: well, i want those keys. (tries to grab the keys from george.) george: nope, no can do. jerry: george, give them to me, i want these keys. (they struggle over the keys.) i don't want to get physical! george: do you wanna fight? jerry: do you wanna fight? george: i'll fight ya! not the face! not the face! (the struggle continues.) kramer: and then, the evil ogre took back the magical keys from the handsome young prince. hippie #1: oh no. he didn't take back the keys, no way. kramer: yes! and then the handsome young prince was cast out into the cruel, cruel world. hippie #1: oh man, what a bummer. that ogre dude's pretty cold, huh? kramer: oh, he's cold. hippie #1: lemme tell you something, kramer. if that ogre dude pulled that crap on me (pulls out a knife) - i'd stab him! i'd cut him in half! i'd gut him like a fish, man! that's what i'd do! kramer: yeah, yeah...that'd be funny. (to driver) hey, you can drop me here! hippie #1: hey, what's the rush, man? kramer: well, you know, i gotta be goin' now. hippie #1: hey, kramer - have you ever killed a man? kramer: what do you think, junior? you think these hands have been soakin' in ivory liquid? (mimics choking somebody) hippie #2: don't leave, kramer, stay with us. you know so much about the world, we need you, please kramer! (they all start chanting) please, kramer! please, kramer! (scene ends with kramer trying to escape their clutches.) jerry: don't you see? you're just avoiding the middle man. you were gonna give her her spare keys, so she was gonna give 'em to me. so, all that's happening is that instead of giving them to her, you're giving them to me. it's just unfortunate that when she gave you yours, you didn't give her hers. 'cause then she would have given 'em to me, because she has mine. so then i would have never had to ask you for hers, so that i could get mine. george: you're right, how did i miss that? (begins unlocking the door, mutters under his breath) maybe because it's a crock of shit. jerry: what's that? george: nothing. jerry: i heard something. george: didn't say anything. (they go into elaine's apartment.) kramer: so, how long you been drivin' this thing? woman: goin' on four years. kramer: well, nothin's sexier than a woman behind the wheel of a semi. woman: nothin'? (they exchange a glance, then laugh.) listen to you, you're quite the sweet-talker. kramer: you know, i always wanted to drive the big rigs. i used to watch those commercials during the reruns of gomer pyle. woman: you want to give it a try? kramer: really? woman: do you know how to double-clutch? kramer: yeah. woman: well, come on! (they trade places and kramer gets behind the wheel. kramer turns out to be really rusty on the ol' double-clutch.) george: they were in here, i saw her put 'em in here! jerry: well, this is great. george: well, what do they look like? jerry: they look like keys, george. they look exactly like keys. (in disgust) "what do they look like." george: well, they're obviously not here. jerry: well, they've gotta be here somewhere. george: jerry, unless i pull down on this statuette and a hidden wall opens up, we have checked every square inch of this apartment! jerry (looking through some papers on the desk): what is this? "murphy brown"? george: what? jerry: by elaine benes? george: what? jerry: elaine's writing a "murphy brown"? george: lemme see this. (tries to grab the papers.) jerry: wait a second! (they fight over the paper.) george: gimme half! jerry: all right, here! george: why didn't she tell us? jerry (making fun): elaine is writing a sitcom...! (elaine enters the room behind jerry and george. jerry spots her and tosses his half of the script at george. george throws it back and paper goes flying everywhere.) elaine: you weasels! jerry: what? what? elaine: how dare you! george: we hardly read anything! jerry: it was funny! elaine: who gave you permission to come into my house and just go through all my things? you thought it was funny? jerry: well... (picks up some of the pages) from what i saw... elaine (grabs the papers from jerry): well, it's just a first draft! jerry: i was locked out of my apartment, i'm just trying to get my keys. elaine (turning on george): why did you let him in?! (shoves george.) george: he forced me to! jerry: i did not! george: yes you did! elaine: you! get out! get out! get out! jerry: elaine, wait! i need my spare keys! elaine: here! here's your damn keys, you keep 'em! i don't want 'em anymore! jerry: good! elaine (to george): and i want my keys back from you! george: what, you don't want me to hold your keys? elaine: no, you can't be trusted! george: alright, alright, fine. (gives the keys to elaine.) jerry (to elaine): and i don't want you to hold mine! elaine: good! i won't! jerry: good! don't! are these my keys? elaine: these aren't my keys! george: whose are these? elaine: i don't know! elaine: i just thought i could write it. jerry: is that something you want to do? elaine: i don't know. those writers make a lot of money. jerry: elaine, let me tell you something about show business. it's hard work! you don't just write a "murphy brown." you gotta watch the show, study it, get a sense of the characters, how they relate to each other. elaine: o.k., can i just watch the show? (mutters under her breath) god, what an asshole. jerry: what did you say? elaine: i didn't say anything. jerry: i heard something. (looks at the tv) elaine, elaine! it's kramer! kramer's on "murphy brown"! elaine (laughing): kramer's on "murphy brown"! jerry: look, there he is, he's sittin' at the desk! candice bergen: hi, i'm murphy brown, you must be my new secretary. kramer: oh, good morning, miss brown. candice bergen: and you are...? kramer: oh, i'm uh, steven snell. candice bergen: snell. well, hello, mr. snell. kramer: steven. candice bergen: steven. are you familiar with this computer system? kramer: oh - i'm familiar with it. candice bergen: steven snell? i know people...and i have a very good feeling about you. (exits.) george: kramer was on murphy brown? jerry: yeah. george: are you sure? jerry: yeah. george: murphy brown, the tv show. jerry: c'mon, will ya? george: kramer was on murphy brown? that son of a gun! jerry: something, isn't it? george: with candace bergen! jerry: i know! george: i've always liked her. remember her in 'carnal knowledge'? jerry: sure. george: did she show her breasts in that? jerry: she's not really the naked type. george: i can't believe i missed kramer. you know he asked me to go with him to california. jerry: he did? george: yeah, i turned him down. jerry: how come you didn't tell me? george: he asked me to keep it a secret. jerry: but you can never keep a secret. george: i know. this was like a record. my previous record was when joni hirsch asked me not to tell anybody that we slept together. kept a lid on that for about 28 seconds. jerry: well, you've come a long way. george: i've matured. jerry: hey listen, the tonight show called me, they want me to come out and do the show on the 28th and they're giving me two free tickets to la. you wanna go? george: a free ticket? jerry: yeah, in fact we could track down kramer. i always felt bad about the way he left, you know? that was a mess. i never should have taken back those keys. george: what about accommodations? jerry: all taken care of. george: is there a meal allowance? what about seat assignments? could i have the kosher meal? i hear the kosher meal is good. and i need clothes. gotta get a haircut. gonna have to, i have to refill my allergy medication. oh, do i need a hat? i need a hat, don't i? could we do the universal tour? they have that backdraft exhibit now, that looks very cool to me... kramer: so my acting technique, my personal acting technique is working with color, imagining color, then finding the emotional vibrational mood connected to the color. see, if you look through my scripts, you'll see that all my lines have a special color, so i don't memorize language, i memorize color. this way i can go through red, yellow, green, blue. and i have a full palette of emotions. studio guard: hey, didn't i tell you to get out of here? kramer: uh, did you? studio guard: c'mon, let's go. kramer: well, i was just-- studio guard: yeah yeah, you were just nothing. c'mon, let's go. kramer: alright, we'll talk about this a little later. are you an actor? voice: murphy brown. kramer: uh, yeah, uh, candace bergen please. voice: who's calling please? kramer: ah, well, just tell her that it's kramer. kramer: alright i'll uh, i'll call her at home. (to man waiting behind him) go ahead, it's all yours. helena: hello kramer. kramer: oh, uh, helena, how are you? helena: i haven't worked since 1934, how do you think i am? kramer: well, that's only uh, 58 years. helena: it was a three stooges short, "sappy pappy." i played mr. sugarman's secretary, remember? kramer: yeah, right, right, yeah, yeah, that was a shemp, right? helena: no, a curly. the boys played three sailors who find a baby, the baby's been kidnapped and the police think that they did it. kramer: uh huh, right. helena: but, but of course they didn't do it, the police had made an awful mistake. kramer: right. helena: moe hits curly with an axe, kramer: uh huh. helena: the stooges catch the kidnappers, kramer: right. helena: but it's too late. kramer: really. helena: the baby's dead. kramer: really? helena: the boys are sent to death row and are executed. kramer: well i don't remember that part. helena: i play mr. sugarman's secretary. kramer: oh, yeah, yeah, you were, you were very good. helena: yeah, it was sad for a three stooges, what with the dead baby and the stooges being executed and all. kramer: well, that was an unusual choice for the stooges. helena: would you like to buy me a fat-free frozen yogurt at the store, kramer? kramer: uh, well, uh, you know i can't right now, you know, uh, i got a very big meeting, i got these people interested in my movie treatment. so, uh, i guess we'll have to make it another time, alright? helena: well no! no, don't go out there, kramer, they'll hurt you, they'll destroy you. you'll never make it in this town, you're too sensitive like me, kramer: helena, you're wrong, you know i'm not that sensitive at all. helena: i was engaged to mickey rooney! he left me at the altar. kramer! kramer! jerry: what is this? george: what? jerry: we're going on a two day trip, what are you, diana ross? george: i happen to dress based on mood. jerry: oh. but you essentially wear the same thing all the time. george: seemingly. seemingly. but within that basic framework there are many subtle variations, only discernable to an acute observer, that reflect the many moods, the many shades, the many sides of george costanza. jerry: (referring to george's outfit) and what mood is this. george: this is morning mist. lt. coleman: what do you figure, 20? 21? lt. martel: close enough. lt. coleman: forensics ought to be able to nail it down. lt. martel: no id? lt. coleman: no id. lt. martel: no witnesses? lt. coleman: just the trees, johnny. pretty young thing. lt. martel: she was. not any more. somebody saw to that. lt. coleman: sure did, johnny. damn shame too. what do you make of it? lt. martel: i don't know, but i don't like it. jerry: look at this guy, he's like a cat burglar. he thinks if he goes through real slow the machine won't detect him. george: personally i'm a little nervous about going through these things. i'm afraid i'm gonna step through into another dimension. jerry: just go. george: heh he, i made it. security guard: empty your pockets please. security guard: walk through again please. security guard: are you sure you don't have any metal on you? bracelets? rings? anklets? jerry: anklets? security guard: a lot of men wear anklets. jerry: really? security guard: yeah. other security guard (to george): what do you have in your bag, sir? george: my bag? security guard: step over here please. jerry: over here? other security guard: do you have a knife in the bag? george: a knife? other security guard: open the bag, please. other security guard: what's this? george: moisturizer? other security guard: for your wife? george: no, i uh... i use it. security guard: spread your arms and legs please. jerry: (facing the lengthening line behind him) ladies and gentlemen, i implore you. other security guard: have a good trip. security guard: alright, go ahead. jerry: that's it? security guard: that's it. jerry: alright. george: c'mon jerry, let's go. what was that all about? jerry: i must have iron rich blood. george: here we go, la. jerry: the coast, george: la-la land. i got the window seat, right? jerry: who said that? george: i called it. jerry: oh no. george: what do you mean, oh no. kramer: oh ah, yeah, i'm here for the audition. receptionist: which audition, the music video, the horror movie, the exercise tape or the infomercial? kramer: uh, let's see... well. kramer: you scream good. chelsea: you too. chelsea: so, can i keep this treatment? kramer: oh yeah, yeah, i got 20 copies. chelsea: 'cause i can, uh, show it to my manager. he has connections with west german television money. kramer: really. chelsea: yeah, they're trying to put together a miniseries for me on eva braun. i mean think about it, is that a great idea? we know nothing about eva braun, only that she was hitler's girlfriend. kramer: um-hm. chelsea: what was it like having sex with adolf hitler? what do you wear in a bunker? what did her parents think of hitler as a potential son-in-law? i mean it could just go on and on... kramer: wait wait, hold it, hold it. look who's over there. don't look, don't look! it's fred savage. chelsea: big deal. kramer: he'd be perfect for my movie. this is a once-in-a-lifetime opportunity. (takes a deep breath) i gotta go over there, i gotta give him a copy of my treatment. chelsea: why are you breathing so hard? kramer: well, i'm just a little nervous. ok, i gotta relax. phew. wish me luck, huh? kramer: hey. oh, did i frighten you? i'm not crazy. i mean, i may look weird, but i'm just like you, i'm just a regular guy just trying to make it in this business. you know i really like your work, the, uh... fred savage: thank you. kramer: yeah, i can't remember the name of it. fred: thanks. kramer: yeah, my mind's a blank, i'm sorta nervous, you know, uh... fred: that's ok. relax, relax. kramer: ok, but i got this... kramer: stupid table. you know, i'm not normally like this, usually i'm very cool and charming, i don't mean to bother you or anything but i think it's fate that you happened to be here at the same time as me. fred (a little frightened and backing away towards the door): yeah, its fate, you know, can't avoid your fate. kramer: i got this treatment i think you'll be great in. fred: yeah. kramer: so i'd like to give it to you. fred: yeah, thank you, thanks a lot. bye! kramer: (bumping into a lamp) alright, excuse me. uh wait, wait. jerry: yeah, kramer. k-r-a-m-e-r. uh, i don't know, wavy? george, how would you describe kramer's hair? george: curly. jerry: wavy. george: what'd you ask me for? jerry: yeah, i'll hold on. hey george, did you see a piece of paper i had on the nightstand here, like crumpled up, like a napkin? george: nope. jerry: 'cause i had like three jokes on it, they were all perfectly worded just the way i wanted to have it. can't find it. hello? george (from the bathroom): hey, a shoe buffing machine! jerry: i don't know, 6-3, george, how tall is kramer? george: you got your own shampoo, conditioner, body lotion! jerry, body jerry: about 6-3. george: ooh, a shower cap! jerry: coming. lupe: hello. i have more towels. george: oh good, good, come in. come in, welcome. i'm george. and this is jerry, over there, on the phone, that's jerry. and you are, um? lupe: lupe. george: lupe. that's very nice, very nice. listen, are you going to be making up the bed in the morning? lupe: oh yes. george: fine. excellent. could you do me a favor? could you not tuck the blankets in? 'cause i can't sleep all tucked in. lupe: oh, yes, yes. george: yes, i like to just be able to take the blankets and swish them and swirl them, you know what i mean? you know, i don't like being all tucked in. i like to have a lot of room, you know i like to have my toes pointed up in the air. just like to scrunch up the blankets. lupe: yes, yes. it's too tight to sleep. george: exactly, you know what i'm talking about, right? lupe: oh yees, it's too tight. (gesturing towards jerry) him too? george: uh, jerry, you want your blankets tucked in? jerry: excuse me, what? george: you want your blankets tucked in? jerry: what blankets? george: when lupe makes up the beds in the morning. jerry: i don't know, whatever they do. lupe: i tuck in? yes? jerry: tuck in, tuck in. george: alright, so that's one tuck and one no-tuck. lupe: okay. george: yeah. one second sweetheart. jerry, i really think it'd be easier if you didn't tuck. jerry: excuse me, fine, you don't want me to tuck, put me down for a no-tuck. george (to lupe): two no-tucks. jerry: uh, hang on a second, you know what? changed my mind, make it a tuck. george: you just said you weren't tucking. jerry: i'm tucking! hello? hello? they hung up on me. they don't know where kramer is anyway. george: alrighty, so. that's one tuck and one no-tuck. got that? jerry: excuse me, um, did you see a piece of paper on the nightstand here earlier today crumpled up like a napkin? lupe: oh, yes, yes. i throw away when we clean the room. jerry: oh, okay, thanks. lupe: thank you. george: thank you. lupe: bye-bye. george: alright, lupe, bye-bye now. lupe: bye. george: bye-bye. jerry: i can't believe she threw that out. i had like the perfect wording of a whole joke i was gonna do about the x-ray counter at the airport, i was gonna do it on the tonight show, now i can't remember it. george: well what did you want her to do, you left it on the night table. jerry: they're not supposed to just take everything and throw it out! george: hey, hey, hey! it's not lupe's fault, you shouldn't have left it out. jerry: alright, just get your thing together and let's get out of here. george: alright, now. what mood am i in, what mood am i in? george: you shouldn't have tucked. jerry: i like it tucked. george: nobody tucks anymore. officer: hey, lieutenant. lt. martel: yeah. officer: this was found on her person. lt. martel: on her person? what kind of expression is that? officer: i don't know, sir. police lingo. lt. martel: oh yeah? what's your name, son. officer: ross. lt. martel: ross. do you see that person there, ross? officer: yes sir. lt. martel: she's dead. have you got that? officer: yes sir. lt. martel: good. now get out of here before you find yourself on transit patrol writing tickets to senior citizens with fake bus passes. officer: yes sir. lt. martel: i think we just caught a break. george: this is very exciting! you're on the tonight show, nbc, who else is on the show? jerry: i don't know. george: might meet a celebrity. jerry: i can't believe she threw out my napkin. george: what are you worried about, you know it. jerry: you gonna be alright here? george: yeah yeah yeah yeah, go. go about your business, i'll just wander around. jerry: alright, don't wander too far, i'll meet you back here in fifteen minutes. george: go, go, go, don't worry about it. george: hey. (pointing at him) corbin bernsen. corbin bernsen: how ya doing? george: big fan! big fan. corbin bernsen: yeah. george: hey, you grew a beard, huh? corbin bernsen: yeah, yeah. i'm doing a movie during my hiatus. george: hey. you know, do i have a case for you guys to do on l.a. law. corbin bernsen: really. george: ...so mind you, at this point i'm only going out with her two or three weeks. so she goes out of town and she asks me to feed her cat. so at this time, there's a lot of stuff going on in my life and, uh, it slips my mind for a few days. maybe a week. not a week, five, six days. corbin bernsen: yeah yeah yeah. so what happened? george: well, it's the damnedest thing. the cat dies. so she comes back into town, she finds the cat lying on the carpet stiff as a board. corbin bernsen: so you killed the cat. george: that's what she says. i say, listen. it was an old cat. it died of natural causes. so get this, now she tells me that i gotta buy her a brand new cat. i say listen, honey. first of all, it was a pretty old cat. i'm not gonna buy you a brand new cat to replace an old dying cat. and second of all, i go out to the garbage, i find you a new cat in fifteen seconds. i say, you show me an autopsy report that says this cat died of starvation, i spring for a new cat. so she says something to me, like, uh, i dunno, get the hell out of here, and she breaks up with me. now don't you think that would be a great case on l.a. law? george: i don't wanna tell you how to run your show. george wendt: oh, of course not. george: but really, it's enough with the bar already. george wendt: yeah, well. george: seriously, have they though about changing the setting? george wendt: doubt it, i doubt it. yeah. george: really? because people do meet in places besides a bar, huh? george wendt: well yeah, they do, heh heh. george: what about a rec room? huh? or a community center. george wendt (checking his watch, obviously uncomfortable): yeah, you oughta write one of those. george: yeah? george wendt: yeah, i'll bring it up with the producers, i gotta... uh... george: fabulous, i'll think about that george, thank you! jerry: how's it going? george: great! great! i actually just had two meaningful intelligent conversations with corbin bernsen and george wendt. jerry: really? george: yeah, yeah, not fan talk, not gushing, you know? actual conversation, i was incredibly articulate! jerry: you got toilet paper on your heel there. announcer: it's the tonight show with jay leno. tonight jay welcomes corbin bernsen, george wendt and comedian jerry seinfeld. corbin bernsen: oh yeah, yeah, people are always coming up to me trying to give me a great case for l.a. law, just a few seconds ago, right here, right outside in the hallway this nut, some sick nut comes up to me and says he's supposed to watch this girl's cat while she's away out of town. anyway he forgets to feed the cat, the cat dies, starves to death, he kills the cat, refuses to get her a new one, won't give her any money, won't pay her, and he wants arnie becker to represent him. nice guy. yeah, that'd make a *great* case for l.a. law. thanks a lot. helena: he's a very handsome man. passionate, intense, but troubled, strange. i think he may be in love with me. of course there's nothing abnormal about that, i have many suitors. george wendt: it's funny, 'cause even after all these years, we still get people giving us advice, how to improve the show. actually, a few moments ago i ran into a nut back there, he said, you know, that maybe we should think about, you know, not doing the show in a bar. the freak: so that's when i said, "hey, kramer, dude. you ever killed a man before?" and he said, "what do you think, junior? these hands have been soaking in ivory liquid? george wendt: the guy you talked to, what did he look like? corbin bernsen: short little bald guy with glasses. george wendt: yeah, yeah, that's the same guy i talked to. corbin bernsen: it never ends, does it? jerry: so i'm going through the airport and i have to put my bag on that little uh, uh, the uh, that uh, the conveyor belt. lt. martel: issue an arrest warrant, put out an apb. let's pick up this, uh, kramer. jerry: i was terrible. george: what are you, crazy? you were fine. jerry: nah, did you hear the end? i couldn't remember what i was trying to say, that whole thing about the, uh... george: conveyor belt. jerry: yeah. because she threw out my napkin. george: i can't believe, you're blaming lupe? jerry: yes, lupe. i'm blaming lupe. tv newscaster: our top story tonight, there has been a break in the so called 'smog stranglings'. police have just released a photo of the suspect being sought in connection with the slayings. he is known only as "kramer". george: he's on the lamb(?), he's on the loose! jerry: would you let go of my arm?! i'm trying to drive, you're getting us both killed! george: what are we supposed to do? what do you do on a situation like this? should we call a lawyer, should we call the police? jerry: obviously we're gonna call the police and tell that he's not the guy. george: hope he's not the guy. jerry: couldn't be the guy...nah. george: god, i'm starved, i'm weak from hunger. jerry: how can you think of food at the time like this? george: time like what? i'm hungry. my stomach doesn't know that kramer's wanted. jerry: i told you to have breakfast, you should've had breakfast! george: i couldn't have breakfast, it was lunchtime! the three hour time difference threw me. i wanted a tuna fish sandwich, they wouldn't serve me tuna fish sandwich, because they were only serving breakfast. jerry: you should've had some eggs. george: for lunch? who eats eggs for lunch? jerry: have you ever heard of egg salad? george: why didn't you say something then? jerry: i've gotta to tell you about existence of egg salad? george: i need food, jerry. i feel faint, i'm getting light headed. jerry: i've gotta call the police, there's a pay phone over there. george: pay phone in l.a., look it's a miracle. jerry: i don't have any change. you've got any change? george: no, i don't have any change. i never carry change. jerry: well, we need change and all i have is twenties. george: i have a ten. jerry: so, break it. george: i hate asking for change. they always make a face. like i'm asking them to donate a kidney. jerry: so, buy something. george: what? jerry: i don't know, some mints or tictacs. george: breath problem? jerry: no, i just want some change. george: tell me. jerry: your breath is fine. it's delightful, it's delicious. george: you know, i haven't eaten anything. jerry: i just wanna call the police! george: why don't you just call 911? jerry: but is this an emergency? george: of course it is. jerry: how is this an emergency? george: your friend is been accused of being a serial killer. i think that qualifies. jerry: all right, i'll call 911. think he did it? could've he done it? couldn't done it? how could've he done it? couldn't be? could it? hello 911? how are you? i'm sorry it was just a reflex...i know it's an emergency number...it is an emergency...my friend is being accused of being a smog strangler and i know he didn't do it...they're putting me trough to the detective in charge of the investigation...what is my name? who am i? i'm eh...george costanza... george: what's the matter with you? are you crazy? why are you using my name?! jerry: oh, don't be a baby! what are you scared of? george: what am i scared of? i'm scared of the same thing that you are, everything! why don't you just use your own name? jerry: your name is a good name, costanza. sounds like it's stands for something, they'll believe us. george: really? jerry: sure. george: you think so? jerry: oh yeah. yes i have some very important information regarding the smog strangler. (george leans close) would you suck a mint or something. can i come right now? i suppose, where are you located? where is that? i don't know where we are. where are we? george: i don't know. jerry: we don't know. he says ask somebody, ask that guy. george: excuse me, where are we? man: earth. jerry: hey, you know i'm on the phone with the police! some guy just gave me a wise answer. ask that woman. george: excuse me ms. which street are we on? woman: i don't know. george: you don't know? woman: i don't know. george: how come you don't know what street are you on? woman: you don't know. jerry: george, it says it here on the phone. it's 12145 ventura boulevard. aha, ok...do we know where the 101 is? (george shakes his head) no...do we know where 170 is? (george shakes his head) no...do we know where 134 is? (george just looks at jerry) no. aha, ok. (jerry hangs up) he's gonna send a black and white to pick us up. george: black and white? jerry: a cop car. george: why didn't you just say that? jerry: i thought it sounded kind of cool. george: oh yeah, real cool. you're a cool guy. jerry: oh, you are? i guaranty you, lupe is going to tuck your covers in. george: i'll bet you, how much? jerry: her tip. george: you've got a bet. jerry: ok. george: how much do you tip a chamber maid? police: which one of you is costanza? police: get in. george: hi, how are you guys? listen, does either one of you have like a mint or piece of gum or... george: jerry, would you do me a favor, close the window. jerry: hey, get out of here...hey officer, he's fooling around back here. cop: cut it up back there. george: he started it. jerry: i did not. you guys gonna go through some red lights? cop: i don't think so. jerry: but you could? cop: oh yeah, of course we could. we can do anything we want. cop 2: we could drive on the wrong side of the road. cop: yeah, we do that all the time. you should see the looks on people's faces. cop 2: shoot people... george: you guys ever shot anybody? cops: no... george: hey, can i flip on the siren? jerry: why are you bothering them for? george: i'm just asking, all they have to do is say no. cop: yeah, go ahead. george: wohoo, check it out. jerry: can i try it? cop: yeah, go ahead, hurry up. jerry: scared the hell out of that guy. george: you know what i never understood? why did they change the siren noise? when i was a kid it was always "waaaa, waaaa", you know now it "woo-woo-woo-woo-woo". why did they do that, did they do some research? did they find that woo-woo was more effective than waa? jerry: yeah, what about those english sirens, you know...eee-aaa-eee-aaa-eee-aaa... jerry and george: eee-aaa-eee-aaa-eee-aaa... cop: hey! kramer: i'm dizzy. jerry: nice shotgun. cop: thanks. jerry: clean as a whistle. george: you could eat of that shotgun. jerry: what is that, a 12 gauge? cop: yeah. jerry: 12 gauge. seems to be the most popular gauge. george: my favorite. jerry: mine too, love the 12 gauge. george: makes the 11 gauge look like a cap pistol. cop: what do got over there? cop 2: i don't know. cop: looks like a possible 5-19. jerry: 5-19? what's a 5-19? george: where? cop 2: think so? cop: looks like it. jerry: i can't believe this. a 5-19? george: where, where? i can't see. cop: this is car 23, we have a possible 5-19 in progress, over. cop 2: all right, let's pull over and check it out. jerry: pull over? you can't pull over. george: what are you doing? where do you think you're going? jerry: pull over? the lieutenant is waiting to see us. george: hey hey hey, we're in a rush here. jerry: we have an appointment! george: what are you doing?! jerry: great. george: there's a bag of pepperidge farm cookies up there. jerry: which flavor? george: milano. jerry: cops eating milanos. what crazy town is this? george: should i take some? jerry: i think that's a 5-19. george: i'm starving... jerry: they're busting this guy. george: they're cuffing him. jerry: i can't believe this. george: hi. jerry: hi, i'm jerry. george: george, how you doing? guy: what did you do? george: nothing. jerry: nothing. guy: oh yeah right, me neither. hey i didn't do nothing! cop: shut up. jerry: hot out. guy: brutal. george: what do you tip a chamber maid. guy: i don't know, five bucks a night. jerry: no, a dollar, two tops. guy: hey, you guys aren't cuffed. what are you, narks? george: narks? jerry: imagine, us narks? george: no no no, you know actually we are friends of a serial killer. guy: really? well, that's very nice. george: oh, thank you. jerry: suspected serial killer, he didn't actually do it. george: yeah well, we don't think. jerry: we're pretty sure. guy: a dollar a night? jerry: yeah, that's a good tip! guy: that stinks! jerry: i read it in ann landers. guy: oh, ann landers sucks! cop 2: hey, shut it up back there. police radio: attention all units, attention all units, all units code 3. all units in the area, code 3 in progress, 1648 north bartholis, units required for assistance in apprehension of 702. cop: that's smog strangler. jerry: kramer. cop 2: got him. let's go. jerry: i wanna see what's happening. george: i don't know why i'm doing this. kramer: jerry, george! lt. martel: you are under arrest in first degree murder and death of ms chelsea lang. reporters: why did you do it? what possessed you? kramer: i don't know... kramer: hey, how are you doing? jerry! george! jerry: we're doing fine. how are you? kramer: what me? fabulous, just fabulous. i've got a lot of auditions, a lot of call backs and i've got a lot of interest for my movie treatment. i'm in development, i'm in developed vehicles. and there's a lot of energy here, man. you know, the vibe, it's powerful. i'm just swept up at it. yeah, i'm a player. george: a player? kramer: yeah, a player... jerry: kramer, do you realize what's going on here? do you know why you're here? kramer: what? what this? i'll be out of here in couple of hours. hey, guess who i met today? rick savage, oh nice kid, really good kid. you know, we're talking about doing a project together. jerry: kramer, you've been arrested as a serial killer! kramer: so? i'm innocent! i mean you guys believe that i'm innocent, don't you? jerry? george? jerry: well, yeah...sure. police: kramer, let's go. the lieutenant wants to see you. kramer: ok, yeah. all right look, i'll be out of here by noon. maybe we'll have lunch together, huh? kramer: help me!! help me! kramer: i didn't kill anyone, i swear! i swear to god! lt. martel: don't you ever swear to my god, kramer. my god is the god who protects the innocent and punishes the evil scum like you, have you got that? kramer: you're making a big mistake. lt. martel: no! you have made the mistake, kramer. sickies like you always do. the only difference is that this time you're gonna pay. kramer: what? lt. martel: now you might beat the gas chamber kramer, but as long as i have got a breath in my body you will never ever see the light of day again. kramer: wow wow wow wow, you've got the wrong man!! it wasn't me! lt. martel: oh yeah, right. maybe it was one of your other personalities huh, the wise guy, the little kid, the bellhop, the ball player, maybe the door to door vacuum cleaner salesman, but not you right? no, you wouldn't hurt a fly. you just couldn't help yourself, could you kramer? you saw life brimming brightly with optimism and verve and you just had to snuff it out. kramer: ok, can i just talk to somebody? can i just explain... lt. martel: i'm not interested in your explanations, kramer! sure, i bet you've got a million of 'em. maybe your mother didn't love you enough, maybe the teacher didn't call on you in school when you had your little hand raised, maybe the pervert in the park had a present in his pants, huh? well, i've got another theory you're a weed. kramer: no... lt. martel: society is filled with them. they're choking the life out of the all pretty flowers. lt. martel: you see something even remotely pretty and you have to choke the life out if it, don't you kramer? lt. martel: you killed all the pretty flowers, didn't you kramer? you killed the pretty little flowers, didn't you? you dirty, filthy, stinky weed! didn't you? officer: lieutenant, it's for you. lt. martel: martel...yeah...yeah...yeah...yeah. officer: what it is, lieutenant? lt. martel: let him go. officer: what, but lieutenant? lt. martel: you heard me, let him go. they just found another body at the laurel canyon. go on kramer, get out of my sight. kramer: hey, how did you know about the guy in the park? lt. martel: i said beat it! kramer: hahaa! george: what? jerry: what happened? kramer: somebody got killed while they had me in custody. jerry: really? did you hear that? somebody else was killed! george: you're kidding? somebody else got killed? jerry: while you were in jail. so you're free. kramer: yes, i'm free. (singing) 'cause the murderer struck again! jerry: so kramer, what are you going to do? kramer: do? do? hey, i'm doing what i do. you know, i've always done what i do. i'm doing what i do, way i've always done and the way i'll always do it. george: kramer, what the hell are you talking about? kramer: what do you want me to say? that the things haven't worked out the way that i planned? that i'm struggling, barely able to keep my head above water? that l.a. is a cold place even in the middle of the summer? that it's a lonely place even when your stuck in traffic at the hollywood freeway? that i'm no better than a screenwriter driving a cab, a starlet turning tricks, a producer in a house he can't afford? is that what you want me to say? george: i'd like to hear that. jerry: yeah... kramer: well, i'm not saying that! you know, things are going pretty well for me here. i met a girl... jerry: kramer, she was murdered! kramer: yeah, well i wasn't looking for a long term relationship. i was on tv. george: as a suspect in a serial killing. kramer: ok, yeah, you guys got to put a negative spin on everything. george: what did they put on this tuna? tastes like a dill, i think it's a dill. jerry: so you're not gonna come back to new york with us? kramer: no no i'm not ready, things are starting to happen. george: taste this, is this a dill? jerry: no, it's tarragon. hey kramer, i'm sorry about that whole fight we had about you having my apartment keys and everything. kramer: ok, it's forgotten. george: tarragon? oh, you're crazy. jerry: well, take it easy. kramer: yeah, ok. george: yeah, take care. stay in touch. kramer: hey hey, whoa come on give me a hug... jerry: oh, no... george: no, you're crushing my sandwich. jerry: yeah, it's so nice when it happens to you. george: mint? jerry: no thanks. george: i've got to tell you, i'm really disappointed in lupe. jerry: it's been three days already, forget about lupe. george: do you think she gets to take any of those little bars of soap home? jerry: no, i don't. george: you would think that at the end of the week when they hand out the checks, throw in a few soaps. jerry: yeah, maybe they should throw in a couple of lamps too. george: i'll tell you something, if i'd own a company, my employees would love me. they'd have huge pictures of me up on the walls and in their home, like lenin. jerry: how much did you wound up tipping her? george: oh my god, i forgot! jerry: well, communism didn't work. kramer: hey! kramer: any mustard? this is empty. jerry: yeah, there's a new one in there. kramer: no no, i don't like this one. it's too yellow. any pickles? jerry: help yourself. kramer: yeah, all right. george: kramer, what are you doing here? kramer: getting something to eat. jerry: kramer, here! newscaster: authorities exposed today, that the latest suspect in the smog strangling was apprehended this week on an unrelated charge, but somehow managed to escape from the police car, in which he was being held. tobias lehigh nagy, who is also wanted in connection with a series of unrelated slains in the north west is still at large, his whereabouts unknown. he's described as 5'5" bald and reputedly a very generous tipper. george: what did they do for toilet paper in the civil war? jerry: what? george: i wonder what toilet paper was loike in the 1860's. did they carry it in rolls in their duffle bags? jerry: everything with you comes down to toilet paper. george: what? jerry: that's always the first question with you. why is that always your focus? george: all right, so what did they do? jerry: i don't know. maybe they gave out fig leaf clumps to all the soldiers. george: well i think it would be nice if there was some kind of historical record of it. jerry: maybe they should have a toilet paper museum. would you like that? so we could see all the toilet paper advancements down through the ages. toilet paper of the crusades, the development of the perforation, the first six-pack . . . stu: excuse me, jerry? i'm stu chermak. i'm with nbc. jerry: hi. stu: could we speak for a few moments? jerry: sure. jay: hi, jay crespi. jerry: hello. george: uh, c-r-e-s-p-i? jay: that's right. george: i'm unbelievable at spelling last names. give me a last name. jay: mm, i'm not- jerry: george- george: (backing off) huh? all right, fine. stu: first of all, that was a terrific show. jerry: oh thank you very much. stu: and basically, i just wanted to let you know that we've been discussing you at some of our meetings and we'd be very interested in doing something. jerry: really? wow. stu: so, if you have any idea for like a tv show for yourself, well, we'd just love to talk about it. jerry: i'd be very interested in something like that. stu: well, here, uh, why don't you give us a call and maybe we can develop a series. jerry: okay. great. thanks. stu: it was very nice meeting you. jerry: thank you. jay: nice meeting you. jerry: nice meeting you. george: what was that all about? jerry: they said they were interested in me. george: for what? jerry: you know, a tv show. george: your own show? jerry: yeah, i guess so. george: they want you to do a tv show? jerry: well, they want me to come up with an idea. i mean, i don't have any ideas. george: come on, how hard is that? look at all the junk that's on tv. you want an idea? here's an idea. you coach gymnastics team in high school. and you're married. and your son's not interested in gymnastics and you're pushing him into gymnastics. jerry: why should i care if my son's into gymnastics? george: because you're a gymnastics teacher. it's only natural. jerry: but gymnastics is not for everybody. george: i know, but he's your son. jerry: so what? george: all right, forget that idea, it's not for you....okay, okay, i got it. you run an antique store. jerry: yeah and...? george: and people come in the store and you get involved in their lives. jerry: what person who runs an antique store gets involved in people's lives? george: why not? jerry: so someone comes in to buy an old lamp and all of a sudden i'm getting them out of a jam? i could see if i was a pharmacist because a pharmacist knows what's wrong with everybody that comes in. george: i know, but antiques are very popular right now. jerry: no they're not, they used to be. george: oh yeah, like you know. jerry: oh like you do. kramer: ...and you're the manager of the circus. jerry: a circus? kramer: come on, this is a great idea. look at the characters. you've got all these freaks on the show. a woman with a moustache? i mean, who wouldn't tune in to see a women with a moustache? you've for the tallest man in the world; a guy who's just a head. jerry: i don't think so. kramer: look jerry, the show isn't about the circus, it's about watching freaks. jerry: i don't think the network will go for it. kramer: why not? jerry: look, i'm not pitching a show about freaks. kramer: oh come on jerry, you're wrong. people they want to watch freaks. this is a "can't miss." newman: kramer. jerry: hello newman. newman: come on lets go. i got the helmet. lets get the radar detector. kramer: all right i'll be back in a second. you guys coming to my party? (exits) jerry and newman: yeah, sure. jerry: what's this all about? newman: we're making a trade. i'm giving him my motorcycle helmet - he's giving me his radar detector. jerry: i didn't know you had a motorctcle. newman: well my girlfriend had one. jerry: you have a girlfriend? newman: i had a girlfriend and she was pretty wild. jerry: i never remember you with a girl. newman: nevertheless, ... jerry: this is a pretty bad deal for kramer. you know a radar detector is worth much more than that helmet. i think you're cheating him. newman: don't say anything. jerry: all right. jerry: you know you're getting gypped over here. kramer: really, ah, newman: we had a deal. are you reneging out of the deal? are you reneging? that's a renege. kramer: oh, stop saying 'reneging". newman: well you're reneging. kramer: i, okay, okay. i'm not reneging. newman: all right give it to me. let go ... kramer: you let go - come on ...(they fight over the items) jerry: gimme that - just gimme that. here. idiots! newman: thanks buddy. so long he he ...(exits) jerry: does that thing work? kramer: nah. jerry: ... i just got a postcard from elaine? george: really? jerry: yeah, they're in london now. they'll be back in a few weeks. george: i can't believe she got involved with a shrink. george: so, what's happening with the tv show? you come up with anything? jerry: no, nothing. george: why don't they have salsa on the table? jerry: what do you need salsa for? george: salsa is now the number one condiment in america. jerry: you know why? because people like to say "salsa." "excuse me, do you have salsa?" "we need more salsa." "where is the salsa? no salsa?" george: you know it must be impossible for a spanish person to order seltzer and not get salsa. (angry) "i wanted seltzer, not salsa." jerry: "don't you know the difference between seltzer and salsa?? you have the seltezer after the salsa!" george: see, this should be a show. this is the show. jerry: what? george: this. just talking. jerry: (dismissing) yeah, right. george: i'm really serious. i think that's a good idea. jerry: just talking? well what's the show about? george: it's about nothing. jerry: no story? george: no forget the story. jerry: you've got to have a story. george: who says you gotta have a story? remember when we were waiting for, for that table in that chinese restaurant that time? that could be a tv show. jerry: and who is on the show? who are the characters? george: i could be a character. jerry: you? george: yeah. you could base a character on me. jerry: so, on the show, there's a character named george costanza? george: yeah. there's something wrong with that? i'm a character. people are always saying to me, "you know you're a quite a character." jerry: and who else is on the show? george: elaine could be a character. kramer.. jerry: now he's a character. (pause) so everybody i know is a character on the show. george: right. jerry: and it's about nothing? george: absolutely nothing. jerry: so you're saying, i go in to nbc, and tell them i got this idea for a show about nothing. george: we go into nbc. jerry: "we"? since when are you a writer? george: (scoffs) writer. we're talking about a sit-com. jerry: you want to go with me to nbc? george: yeah. i think we really go something here. jerry: what do we got? george: an idea. jerry: what idea? george: an idea for the show. jerry: i still don't know what the idea is. george: it's about nothing. jerry: right. george: everybody's doing something, we'll do nothing. jerry: so, we go into nbc, we tell them we've got an idea for a show about nothing. george: exactly. jerry: they say, "what's your show about?" i say, "nothing." george: there you go. jerry: (nodding) i think you may have something there. jerry: so, the show would be about my real life. and one of the characters would be based on you. kramer: (thinks) no, i don't think so. jerry: what do you mean you don't think so? kramer: i don't like it. jerry: i don't understand. what don't you like about it? kramer: i don't like the idea of a character based on me. jerry: why not? kramer: well it just doesn't sit well. jerry: you're my neighbor. there's got to be a character based on you. kramer: that's your problem, buddy. jerry: i don't understand what the big deal is. kramer: hey, i'll tell you what - you can do it on one condition. jerry: whatever you want. kramer: i get to play kramer. jerry: you can't play kramer. kramer: i am kramer. jerry: but you can't act. kramer: phew! jerry: okay, fine. we'll use newman. kramer: newman? newman: use me for what? jerry: nothin' what do you want? newman: well, you'll never guess what happened to me today. i was uh, driving ( jerry and kramer turn away) home on the palisades parkway when i looked in the rear view mirror and what did i see? the fuzz. and it's funny because my new radar detector was on. i didn't hear a thing. isn't that strange? kramer: yeah. that's strange. newman: a radar detector, as i understand it, detects radar! with a series of beeps and flashing lights. but oddly, for some reason i didn't hear a thing except for the sound of a police siren. kramer: that's queer uh? newman: i want my helmet back! give me back my helmet and you're going to pay for that ticket. kramer: yeah, you better think again mojumbo. newman: you gave me a defective detector. ... jerry? jerry: buyer beware. newman: are you going to give me back that helmet or not? kramer: no. we had a deal. there are no guarantees in life. newman: no, but there's karma, kramer. jerry: karma kramer? newman: and one more thing. i'm not coming to your party. (exits) jerry: (to himself) salsa, seltzer. hey, excuse me, you got any salsa? no, not selzer, salsa. (george doesn't react) what's the matter? george: (nervous) nothing. jerry: you sure? you look a little pale. george: no, i'm fine. i'm good. i'm very good. jerry: what, are you nervous? george: no, not nervous. i'm good, very good. (a beat, then he snaps) i can't do this! can't do this! jerry: what? george: i can't do this! i can't do it. i have tried. i'm here. it's impossible. jerry: this was your idea! george: what idea? i just said something. i didn't know you were going to listen to me. jerry: dont' worry about it. they're just tv executives. george: they're men with jobs, jerry! they wear suits and ties. they're married, they have secretaries. jerry: i told you not to come. george: i need some water. i gotta get some water. jerry: they'll give us water in there. george: really? that's pretty good. jerry: oh god, it's joe devola. george: who? jerry: this guy's a writer, he's a total nut. i think he goes to the same shrink as elaine. jerry: oh god he saw me. devola: hello jerry. jerry: hey joe! how you doing? devola: you're under no obligation to shake my hand. jerry: oh, no, just a custom. uh, that's my friend george. you look good. devola: why shouldn't i look good? jerry: oh, no reason. you're into karate right? devola: you want to hit me? jerry: what are you doing here? devola: i dreopped a script off. jerry: ah, good for you. jerry: well, ... devola: you don't have to say anything. jerry: no, uh, hey i guess i'll see you sunday night. devola: why? jerry: kramer's party. devola: kramer's ... having ... a ... party? jerry: no, no, he's not having a party. he's doing something. i don't know what it is. it's nothing. he's not doing anything. devola: gee, i thought kramer and i were very close friends. jerry: no, i'm sure you are. i'm sure you are very close friends. very close. jerry: give my best to hinckley. george: what was that? jerry: i can't believe what i just did. i didn't know kramer didn't invite him. i better call kramer, ... receptionist: they're ready for you. george: okay, okay. look, you do all the talking, okay? jerry: relax. who are they? george: yeah, they're not better than me. jerry: course not. george: who are they? jerry: they're nobody. george: what about me? jerry: what about you? george: why them? why not me? jerry: why not you? george: i'm as good as them. jerry: better. george: you really think so? jerry: no. stu: (to jerry, laughing about one of his bits) the bit, the bit i really liked what were the parakeet flew into the mirror. now that's funny. george: the parakeet in the mirror. that's a good one, stu. jerry: yeah, it's one of my favorites. russell: what about you, george? have you written anything we might know? george: (quickly making it up) well, possibly. i wrote an off-broadway show, "la cocina." ..actually, it was off-off-broadway. it was a comedy about a mexican chef. jerry: oh, it was very funny. there was one great scene with the chef - what was his name? george: pepe. jerry: oh, pepe. yeah, pepe. and, uh, he was making tamales. susan: oh, he actually cooked on the stage? george: no, no, he mimed it. that's what was so funny about it. russell: so, what have you two come up with? jerry: well, we've thought about this in a variety of ways. but the basic idea is i will play myself- george: (interrupting) may i? jerry: go ahead. george: i think i can sum up the show for you with one word nothing. russell: nothing? george: (smiling) nothing. russell: (unimpressed) what does that mean? george: the show is about nothing. jerry: (to george) well, it's not about nothing. george: (to jerry) no, it's about nothing. jerry: well, maybe in philosophy. but, even nothing is something. receptionist: mr. dalrymple, your niece is on the phone. russell: i'll call back. george: (attempting to spell his last name) d-a-l-r-i-m-p-e-l? russell: (obviously dislikes george) not even close. george: is it with a "y"? russell: no. susan: what's the premise? jerry: ..well, as i was saying, i would play myself, and, as a comedian, living in new york, i have a friend, a neighbor, and an ex-girlfriend, which is all true. george: yeah, but nothing happens on the show. you see, it's just like life. you know, you eat, you go shopping, you read.. you eat, you read, you go shopping. russell: you read? you read on the show? jerry: well, i don't know about the reading.. we didn't discuss the reading. russell: all right, tell me, tell me about the stories. what kind of stories? george: oh, no. no stories. russell: no stories? so, what is it? george: (showing an example) what'd you do today? russell: i got up and came to work. george: there's a show. that's a show. russell: (confused) how is that a show? jerry: well, uh, maybe something happens on the way to work. george: no, no, no. nothing happens. jerry: well, something happens. russell: well, why am i watching it? george: because it's on tv. russell: (threatening) not yet. george: okay, uh, look, if you want to just keep on doing the same old thing, then maybe this idea is not for you. i, for one, am not going to compromise my artistic integrity. and i'll tell you something else, this is the show and we're not going to change it. (to jerry) right? jerry: (to russell) how about this i manage a circus.. jerry: i don't even want to talk about it anymore. what were you thinking? what was going on in your mind? artistic integrity? where, where did you come up with that? you're not artistic and you have no integrity. you know you really need some help. a regular psychiatrist couldn't even help you. you need to go to like vienna or something. you know what i mean? you need to get involved at the university level. like where freud studied and have all those people looking at you and checking up on you. that's the kind of help you need. not the once a week for eighty bucks. no. you need a team. a team of psychiatrists working round the clock thinking about you, having conferences, observing you, like the way they did with the elephant man. that's what i'm talking about because that's the only way you're going to get better. george: . . . i thought the woman was kind of cute. jerry: hold it. i really want to be clear about this. are you talking about the woman in the meeting? is that the woman you're talking about? george: yeah, i thought i might give her a call. i, i don't meet that many women. i meet like three women a year. i mean, we've been introduced. she knows my name. jerry: it's completely inappropriate! george: why? maybe she liked me. i, i mean she was looking right at me. you know, i think she was impressed. you know, we had good eye contact the whole meeting. jerry: oh, i forgot to call kramer. george: wait a minute let me call susan. jerry: no, no this is more important. george: she might be leaving to work any minute. jerry: no, i got to warn him that i told joe devola about his party. george: no. elaine: what is it? dr. reston: i was just thinking about this patient of mine. elaine: what? dr. reston: just wondering if he's taking his medication. elaine: well, come on we're on vacation. jerry: well we were standing uh, inn the waiting area there, and you know how devola is. he's all, ... (buzzer) kramer: yeah (to buzzer) george: (oc) it's george. jerry: and so, uh i felt very uncomfortable with him and you know i just blurted out something about your party. kramer: whoa, back up a second. jerry: well, i didn't know that you didn't invite him. kramer: why would you think i would invite him? jerry: i just a ssumed, ... kramer: assumed? never assume anything. i don't want that nut in my house. you know he's on medication. george: hello, oh, hello. you remember, ... susan, from n b c. jerry: of course. how are you? susan: fine, it's good to see you. george: and this is kramer. susan: hello. george: all right go ahead susan, tell him. jerry: tell me what? susan: well, i, (phone rings) jerry: uh, sorry, excuse me one second. hello. tel: hi, would you be interested in switching over to tmi long distance service. jerry: oh, gee, i can't talk right now. why don't you give me your home number and i'll call you later. tel: uh, i'm sorry we're not allowed to do that. jerry: oh, i guess you don't want people calling you at home. tel: no. jerry: well now you know how i feel. (hangs up) george: well, go ahead, tell him. jerry: kramer, are you drinking that milk? kramer: yeah. jerry: what's the expiration date on that? kramer: september third. jerry: the third? george: and susan the third? kramer: um, uh, ugh, ... susan: noooo... (kramer throws up on susan) george: i never should have brought her up there. should have known better. should have seen it coming. i didn't see it coming. jerry: i think she saw it coming. george: you know she was behind the idea. she was going to champion the show. that's what i was bring her up there to tell you. and she liked me. jerry: look just because kramer vomited on her doesn't mean the deal is dead. george: what, are you crazy? it's a traumatic thing to be thrown up on. jerry: vommiting is not a deal breaker. if hitler had vommited on chamberlin, chamberlind still would have given him chekoslovakia. george: chamberlind, you could hold his head in nthe toilet, he'd still give you half of europe. jerry: what happened to you? kramer: devola came after me. jerry: what? devola? see i told you this guy is crazy. i can't believe this. what happened? kramer: can i have a coffee. ... what, you know i was walking home and i had to pick up my helmet from the shop, you know. i gota new strap. and i had it on you know, and i was checking the strap out to make sure it fit. then suddenly i feel this kick hit me on the side of the head. it knocks me down, i look up and it's crazy joe devola. and he say's, "that's what i thin k of your party." jerry: boy, that is some kick. kramer: well, yeah, newman's helmet, it saved my life. look at that. jerry: wow, newman's helmet. george: holly. kramer: i got bad news for you buddy. devola says you're next. jerry: me, why? kramer: he doesn't like you. jerry: what does he want from me? i didn't do anything. see this is all elaine's fault. she took off to europe with his psychiatrist. he probably can't get his medication. now i got some nut after me. kramer: pass the cream. george: wait a second. (smells it). all right. jerry: (going through couch cushions) where the hell did i put this? kramer: what are you looking for? jerry: the remote, the remote, i can't find the remote. did i lost, i lost it. did you take it? did you put it some place? kramer: no, no, no. jerry: all right, what is this? kramer: (clueless) what is what? jerry: all right, very funny. i get it. kramer: you're in a weird mood. jerry: come on. go back to your apartment and fix it. kramer: fix what? jerry: your pants! kramer: what is this? what have i got one pant leg on for? jerry: don't you know? look-look at your face! you only shaved the right side of your face! what is this? a joke? kramer: no, t's a joke.. a joke... a joke... you think this is funny? jerry: go look at your face in the mirror. kramer: wha-huh-wha-huh... jerry: (pressing intercom) yeah? george: (on intercom) it's george. jerry: come on up. kramer: i don't believe this. jerry: you mean, you didn't know you were doing any of these things? kramer: no, i swear. jerry: i bet this is from that kick from that crazy joe davola. you better see a doctor and get some x-rays. george: (to kramer) ah! you're just the man i'm looking for. kramer: me? george: yeah, here you go. kramer: what's this? george: a dry-cleaning bill? jerry: from that woman at nbc? george: yeah. kramer: a dry-cleaning bill for what? george: for vomiting on her vest! kramer: oh, come on george! i didn't do that on purpose! george: well, i shouldn't have to pay for it! kramer: well, neither should i! jerry's the one who left the milk in the refrigerator. george: (to jerry) yeah, your milk. jerry: (pointing kramer) he drank it. kramer: i didn't know. jerry: all right, well, we should all chip in i guess. kramer: yeah. jerry: how much was it to clean the vest? george: eighteen dollars. jerry: can you get vomit out of suede? george: i don't know. kramer: yo-yo ma! jerry: what? yo-yo ma? kramer: what about him? jerry: you just said 'yo-yo ma'. george: what's yo-yo ma? jerry: he's a cellist. (to kramer) you should see a doctor today. george: all right, come on, come on, let's go. six dollars. jerry: i can't believe she sent you that dry-cleaning bill. george: i know! jerry: that doesn't really bode well for the show, does it? george: the show! forget about the show! we should take the idea to a different network jerry: oh, yeah. right. like anybody's ever gonna do this! how did you get me to go along with that? a show about nothing! george: it was a good idea. susan liked it. now, if he hadn't vomitted all over her, we'd be writing it right now. kramer: jeez! george: anyway. jerry: (interrupts) what are you doing? what's wrong with you? what're you doing? give me that phone! go to your apartment and lie down, i'll make an appointment for a doctor today. (on the phone) hello? oh hi! i'm sorry. no, that's my next door neighbor. he's not quite himself. he got kicked in the head. what? really? you're kidding! today? yeah! sure! we could make it. two o'clock? yeah, we would do that. okay. great! thanks a million! okay, bye. george: what? jerry: nbc! they wanna have another meeting about the idea. george: they wanna have another meeting? they wanna buy it?! they wanna but it?! oh! i tell you! we're gonna be rich!! what are we gonna get for this? fifty, sixty thousand? jerry: i don't know about sixty. george: oh, it's gotta be fifty! hee hee! you know how much ted danson makes, huh? jerry: ted danson! now, how are you comparing us to ted danson? george: i didn't say 'we're ted danson.' jerry: yes, you did. you said 'we're ted danson'! george: oh! jerry: you know, i think he wears a piece. george: yeah, don't worry. he can afford it. jerry: i'm ten minutes slow again! that's it for this piece of junk! i've had it. george: what, is that the one your parents gave you? jerry: yeah! but it never works. you know we're supposed to be there by two o'clock. we should take a cab. george: all right, we'll be a little late, i,m not taking a cab. jerry: i'll pay for it. george: it's not the money! jerry: well, what is it you object to? the comfort? the speed? the convenience? leo: jerry! jerry: uncle leo! leo: helloooo! jerry: hello there, how're you doing? leo: ha ha! how are you? jerry: good, good. leo: how's your mom and dad? jerry: good, fine. leo: what are you getting to be too much of a big shot now to give me a call? i don't hear from you anymore! jerry: oh, no. i've been kinda busy. it's all. leo: you know where i just came from? jerry: (not enthousiastic at all) oh, sure. danny. leo: he used to be in the pajama business. i used to be able to get pajamas for free. i used to come over and get pajamas all the time! jerry: oh, yeah, yeah. i remember. leo: the funny thing is i can't wear 'em. i get too hot. i sleep in my underwear and a t-shirt. if it gets too hot, i just get the t-shirt off! anyway, danny says to me 'you need any pajamas?' jerry: (interrupts) i-i'm sorry uncle leo, i really gotta get going. leo: oh. well. you gotta get going, so go. jerry: we, we got a big meeting with the president of nbc. leo: nobody got a gun to your head! jerry: (seems sincere) yeah, i'm really sorry, uh. leo: go. really. i understand. you got an appointment, go to your appointment. jerry: i'm sorry, really. leo: you know, i know plenty of people in hollywood too! jerry: sorry, really. kramer: (from inside) yeah? newman: come on, are you ready? let's go! kramer: for what? newman: what's the matter with you? i just talked to you fifteen minutes ago. kramer: what about? newman: the courthouse. you gotta go with me to the courthouse. i'm contesting a ticket today. kramer: i can't, i'm going to the doctor's later. newman: you gotta go with me. i mean, you-you're my alibi. you have to take the stand. kramer: well, i can't! newman: well, let me remind you of something. you wouldn't be here if it wasn't for me and my helmet. i saved your life! you would be dead! dead! you would cease to exist! you would be gone for the rest of eternity! you wouldn't even begin to comprehend what that means!! kramer: shut up! i'll get my coat! kramer: don't step on anything. jerry: you see the look on my uncle's face? did you see how insulted he was? what could i do? waht are we supposed to do? you can't leave. there's no excuse good enough to justify walking away from a conversation with one of my relatives. george: i didn't shave this morning. i don't feel like myself. jerry: you could be a fireman on a fire truck on the way to a fire. you bump into one of my relatives. 'i'm sorry uncle leo, there's a building full of people burning down. i really do have to be running.' he'll go 'go. go ahead. go to your fancy fire. if that's what you have to do.' george: look at this. jerry: why didn't you shave this morning? george: 'cause i shaved yesterday in the afternoon. jerry: why? george: because of the day before. it's a long story. jerry: is that joe davola? george: it's not him! jerry: i can't live tlike this. i'm being stalked. receptionist: mister seinfeld? they're ready for you. jerry: oh. george: mister seinfeld? what about mister costanza? i'm not here? jerry: all right. look. now, you promised you're gonna be a little more flexible on the nothing idea, okay? jsut a little. george: okay. a little. newman: okay, you're all set? you got your story? kramer: no. newman: when the cop stopped me, i told him that i was rushing home because my friend was about to commit suicide. kramer: uhm... newman: now, you're that firend. now, all we need is a reason why you were going to commit suicide. kramer: i never had an air conditioner. newman: no! that's no reason to kill yourself! kramer: why? it gets hot at night, you can't sleep. you ever tried to sleep in a really hot room? newman: every night i sleep in a really hot room, i don't want to kill myself. kramer: well, i slept in really hot rooms and i wanted to kill myself. newman: no, no, no. that's not gonna work. something else. kramer: i was never able to become a banker. newman: banker! so you're killing yourself because your dreams of becoming a banker have gone unfulfilled. you-you-you-you can't live without being a banker. kramer: yeah, yeah. if i can't be banker, i don't wanna live. newman: you must be banker. kramer: must be banker. newman (satisfied): okay, we'll go with the banker story. george: the story is the foundation of all entertainment. you must have a good story otherwise it's just masturbation. russel: and people really have to care about the characters. george: care? forget about care. love. they have to love the characters. otherwise, why would they keep tuning in? jerry: wouldn't tune in. george: would they tune in? jerry: no tune. russel: we like to look at the show as if it were in ekg. you have your highs and your lows and it goes up and down. george: the show will be like a heart attack! jerry: just a huge massive coronary. russel: so what you said last week about no story, you're a little flexible on that now. george: is-is that what i said 'no story'? because jerry had to tell me later. jerry: he couldn't believe it. george: (laughs, snorts) i said, i said 'get outta here! no story? is that what i said?' police officer: well, i informed him that he was exceeding the speed limit and uh, that's when he told me that he was racing home because his friend was about to commit suicide. judge: and then what happened? police officer: well, then he became very loud and hysterical. he was flailing his arms about as he told the story and then he threw himself on the ground and he grabbed me around the legs and then he begged me to let him go. and when i refused, that's when he began to scream 'my friend's going to die, my friend's going to die.' russel: look. i don't know how you two guys feel but we would really like to be in business with you. george: well, we would like to be in business. let's do business. we'll have some business. let's have business. jerry: we would love to be in business. we'll do business. we're in business. it's... it's business. this is business. george: yeah! stu: would it be possible to get a-a-a copy of 'la cocina'? jerry: your off-broadway play. george: oh, oh. uh, you know. it's the damndest thing. i, uh, i moved recently and my files, pfff, disappeared. now, i-i don't know if they fell off the truck or if there was some sort of foul play but let me tell you something. i'm not through with that moving company. jerry: (backs his story) hmm, hmm. george: that's my vow to you. russel: well, i got a feeling about you two. and even more than that. i place a great deal of confidence in that lady's judgment. george: oh! that's good judgment. that's a pile of judgment there. sure. jerry: oh! taht's judgment. yes, yes. judgment with earrings on. yeah. russel: (gets up) so, let's make a pilot. newman: i had gone up to westchester. i go there every tuesday. i do charity for the blind in my spare time for the lighthouse. i was in the middle of a game of parcheesi with an old blind man and i excused myself to call my friend as he was very depressed lately because he never became a banker. judge: i don't understand. newman: you see, it'd been his lifelong dream to be a banker and he uh, just the day before he was turned down by another bank. i believe it was the manufacturer's hanover on lexington and 40th street. that was the third bank to turn him down so i was-i was a little concerned. i wanted to see how he was doing. well, your honor, he was barely audible. but i distinctly recall him say... kramer: (interupts involuntarily) yo-yo ma! newman: so i sped home to save my friend's life and i was stopped for speeding. yes, i admit i was speeding but it was to save a man's life. a close friend. an innocent person who wanted nothing more out of life than to love, to be loved and to be a banker. judge: so then he didn't kill himself. newman: no sir. he did not. but only by thge grace of god. he's in the courtroom today george: see? jerry: yeah! george: i told you, i told you! ha ha ha! ooh ooh! jerry: now, all we gotta do is write it. george: yes! how're we gonna do that? susan: hey! congratulations! jerry: thanks. george: oh, thank you. jerry: thank you, thanks. george: thanks. gee, you know, i thought you were mad at me. susan: no. receptionist: mister seinfeld, you have a phone call. jerry: phone call? who knows i'm here? george: when you sent me the-the bill for the dry-cleaning. i thought the show didn't have a chance. susan: oh, it was only vomit. george: anyway, i-i would like to-to pay for the cleaning. susan: oh no-no, it's okay. *comment from transcriber yeah, she doesn't want to be paid, didn't she send the bill?* george: no-no-no, we all chipped in. we have the money. susan: well, it was eighteen dollars. george: okay, uh, eighteen dollars, and there it is. there you go. so maybe we could get together this weekend. susan: yeah. call me. george: all right, great. susan: bye. jerry: bye thanks. george: (chuckles) bye, thanks. (to jerry, when susan is far) i can't believe she took the money. jerry: why? george: i offered to pay. she should've said no. jerry: she did, you insisted. george: maybe this is what the pilot should be about, vomiting on somebody's vest. jerry: nah! george: how much are we gonna get for this? fifty, sixty thousand? jerry: oh, i d-i don't know. i d--- george: oh, gotta get fifty. gotta get fifty. all right, i tell you what. we go to the coffee shop, you call your manager. maybe they made an offer. jerry: okay. george: (excited, pushing jerry forward) all right, let's go, let's go, let's go, come on. george: thirteen thousand? jerry: thirteen thousand. george: a piece? jerry: no, for both! george: that's insulting! ted danson makes eight hundred thousand dollars an episode. jerry: oh, would you stop with the ted danson? george: well, he does. jerry: you're nuts! george: i'm sorry. i can't live knowing ted danson makes that much more than me. who is he? jerry: he's somebody. george: what about me? jerry: you're nobody. george: why him? why not me? jerry: he's good, you're not. george: i'm better than him. jerry: you're worse, much much worse. (crouches in booth) that's davola! george: (crouches too) what? where? where? jerry: outside! i saw him outside! elaine: what is it? boyfriend: oh, it's this patient. elaine: (sighing) again? boyfriend: i'm fairly certain. i forgot to leave him an extra prescription for his medication. elaine: well, so, he can live without his valium for a couple of days. boyfriend: nah, you don't understand. he could be dangerous. jerry: go outside and see if he's still there. george: i can't go out there, he knows we're friends. jerry: well, what are we supposed to do? i gotta take kramer to the doctor. george: tell the cop. jerry: good idea. cop: yeah, all right. just let me get a muffin. jerry: thanks. jerry: (back in booth) he's gonna get a muffin and then he'll walk us outside. this is a great way to go through life. george: i thought you said he was gonna get a muffin. jerry: (bossy) what are you doing? cop: what? jerry: what, are you ordering food now? cop: yeah! yeah, i decided to get a sandwich. jerry: what happened to the muffin? cop: i got a little hungry. jerry: all of a sudden you get hungry? cop: yeah! you got a problem with that? jerry: no! enjoy your lunch. george: i thought he was just gonna have a muffin. jerry: all of a sudden he gets hungry. george: you know, a muffin can be very filling. jerry: i know! newman: (interrogating kramer) mister kramer, you heard the testimony so far. would you please tell the court in your own words what happened on the afternoon of september 10th? kramer: what do you mean 'my own words'? whose words are they gonna be? newman: you know what i mean. kramer: (to judge) i was very upset that day. newman: and why was that? kramer: (to newman) would you let me say it? let me talk! newman: all right, all right. go ahead, go ahead. kramer: all right. newman: okay. kramer: (to judge) i was very upset that day because i could never become a banker. newman: and that failure to become a banker was eating at you. eating-eating-eating at you inside. kramer: (not convincing) uh, yeah. newman: it was your family that pushed you into banking , it was their dream for you... judge: mister newman. newman: your honor, i'm only trying to establish mister kramer's fragile emotional state, my entire case depends on it. judge: uh, continue. newman: as you were saying, mister kramer... kramer: what was the question? newman: you're telling how your parents pushed you into banking. kramer: uh, well, my father when i was a kid, he took me to the bank and he lifted me up and he pointed to the teller and he said 'sonny boy, take a good look at him, that's gonna be you some day.' newman: but you never became a banker, did you mister kramer? why? why did you fail? kramer: i don't know. newman: it was because you hated your father and you would do anything to displease him. isn't that true? judge: uh, could you get to the speeding? newman: yuh, yes. i intend to your honor. and then, on the afternoon of september 10th, you received a phone call did you not? kramer: (puzzled) phone call? newman: yes, a phone call! kramer: from who? newman: from me! kramer: from you? newman: yes, from me!! i called you remember? kramer: you called me? newman: yes, i called you, you idiot! because you were going to... you were going to... remember? kramer: what? newman: you were going to... judge: i'm afraid i'm gonna have to call a--- newman: yes, the banker!!! kramer: what banking? newman: a banker! a banker! your honor, your honor, your honor... judge: that's enough already. newman: your honor, mister kramer's obviously very distraught. kramer: i'm distraught!?! wooh-wooh-hoo! newman: (to kramer) you shut up! (to judge) i demand a recess so i can take him outside and help him regain hius composure. judge: that'll be seventy-five dollars. newman: (strangling kramer) what's the matter with you? we had it all worked out! jerry: do you see him? george: i'm not* sure. jerry: well, either you see him or you don't. george: all right. i don't. jerry: (looking at the cop) what is he doing? is he getting coffee? i think he's getting coffee.! george: what's with this guy? jerry: (still bossy) did you just order coffee? cop: yeah. jerry: this is really too much. cop: what is your problem? jerry: well, i'm sitting over there waiting for you to finish your sandwich for twenty minutes. now you're drinking coffee, that's gonna be another ten minutes. cop: well, you're just gonna have to wait. kramer: never said anything about the banking. newman: you're off your rocker. jerry: hey you guys! kramer: hey! jerry: what are you doing here? kramer: what are you doing here? jerry: hey, is davola outside? kramer: davola? jerry: yeah. kramer: no, i didn't see him. newman: crazy joe davola? george: (reading the tabs) jerry, yours is eleven dollars. jerry: eleven dollars for what? george: muffin, sandwich and coffee! jerry: (to kramer) hey, nbc okayed our idea. we're gonna make the pilot. kramer: you're gonna do the circus freak show, uh? jerry: no. newman: pilot? so what do you make for something like that? fifty? sixty thousand? george: what's the difference? the money is not important. jerry: (looking outside) hey newman, is that your red car? newman: yeah. jerry: i think you're getting a ticket. newman: deh! kramer: run, run! go, go, go! newman: hey! what are you doing? it's after six o'clock! you can't give me a ticket! hey, you're not gonna get away with this. i'll fight this. i got witnesses. kramer: i saw the whole thing! jerry: maybe this whole thing would be a good idea for the pilot. george: ah, get outta here. the vomiting is much funnier. jerry: oh, like you know what you're talking about! george: no, you do! jerry: so george and i went up to nbc and we told them the idea for a series now we're just waiting to sign the contract. helen: and they liked the idea? jerry: yeah. morty: what'ya got leather seats here? helen: since when is george a writer? jerry: what writer? it's a sitcom. helen: this is so exciting. when are you going to sign the contract? jerry: soon, there's a couple of problems. morty: jerry, i wanna tell you that meal was the worst. jerry: what do you expect? it's airline food. morty: they give you that *fish.* jerry: how could you eat fish on a plane? morty: because she puts up such a big stink every time i have a piece of meat. helen: what kind of problems? jerry: well, george doesn't think $13,000 is enough money. helen: what? he's not even working. morty: george is right. those people will try to get away with murder. believe me. they're all crooks. helen: jerry, i want you to sign that contract. jerry: we're going to sign it. we're going to sign it. in fact george is out with the woman from nbc right now. george: so, i'm uh, i'm afraid we're going to have to pass. susan: yu - you're passing? george: well, it's . . . much too low. susan: are you and jerry in complete agreement on this? george: tsh (snorts) ah, yeah, we've - we've talked . . . i believe i can speak for the both of us on this. susan: well be-because you know that, because this is your first show it's a pretty standard deal. george: standard? susan: yeah. george: is ted danson's deal standard? susan: ted danson? george: you know, the guy from cheers. susan: yeah, i know who he is. (laughs) you're not ted danson. george: i didn't say i was ted danson. susan: all right, i'll tell russell tomorrow. george: you tell russell. susan: oh, um, before i forget, . . . cuban cigars. it's a present from my father. george: oh... do i have to write him a note or something? susan: yeah, i am sure he'd appreciated that. george: well what would i say in the note? susan: ah, you're a writer. you'll think of something. george: oh-ohf (snorts) yeah, i'm a writer. (laughs) helen: were you waiting long at the gate? jerry: um, i don't even know? helen: where's that watch we bought you? jerry: oh uh ... jerry: that's enough with this piece of junk i've had it. (throws watch in garbage) george: wha-is that the one your parents gave you? jerry: yeah, but it never works. jerry: . . . it's uh, being fixed. morty: i got a guarantee on that watch. give it to me, i'll take it back to where we got it. jerry: it's at the jeweler. morty: you send me the bill. jerry: i'm not sending you the bill. helen: that watch was a gift. you shouldn't have to pay for it. gas station attendant: that's uh, $18.50. morty: here, i got it. jerry: what are you talking about? it's my car. let me pay for the gas. morty: no, no put it away . . . jerry: dad! morty: stop it. jerry: i have money. i make money. morty: yeah, yeah, you make money. jerry: you don't think i make money. that's what you think isn't it? helen: no, i don't think that. jerry: yes you do. that's what you both think. morty: i'm paying. jerry: dad i'm paying. morty: get out of here. jerry: you're not paying. morty: now jerry please, do not do this to your father. over my dead body jerry. i'll tell you right now, you're not going to do it. jerry: no don't do this. you're not doing this. i will fight you. no you don't... no. jerry: boy, you got a lot of stuff here. . . . dad, what are you doing? morty: nothing nothing. jerry: leave it. what about your back? helen: morty, what are you doing? morty: all right, all right. jerry: you come all the way up here to see a back specialist and you're lifting heavy suit cases. kramer: hey, morty. morty: hey, mr. kramer. ha ha ha. kramer: hey, mrs. seinfeld. hi helen: ha, ha, ha oh, what happened to you? kramer: oh, ah, well some guy kicked me in the side of the head. helen: what guy? kramer: ah, w-crazy joe devola. helen: why? kramer: well, i was having this party and i didn't invite him and then jerry, tipped him off. jerry: why did you tell this crazy guy that kramer didn't invite him to his party? jerry: i didn't know he wasn't invited. morty: hey, these are very comfortable pants. you know what i paid for these jerry? helen: so why did you say anything? jerry: it was a mistake. morty: they're good around the house -- and they're good for outside. helen: are you okay? kramer: oh, yeah, yeah. i was a little off last week, huh jerry -- yeah but the doctor says it was just a slight concussion helen: so what's the matter with this devola guy? jerry: he's got like a chemical imbalance. he needs to be on medication. kramer: oh, yeah, yeah. he's after jerry now. jerry: kramer!! helen: he's what?! jerry: he's joking. helen: he's after you? jerry: nooo. helen: why is he after you? jerry: he's not after me. helen: morty, do you here this? some crazy guy is after jerry. morty: i'll make a few phone calls. jerry: who you gonna to call? morty: what are you worried about? helen: i want to know what you did to this guy that he's after you. jerry: i didn't do anything. helen: well you must have done something. jerry: no, he just doesn't like me. helen: doesn't like you? how could anyone not like you? jerry: you know it seems impossible. helen: doesn't - doesn't like you? how could that be? jerry: ma, i know this may be hard for you to understand but i am sure there are many people who do not like me. helen: huh, jerry, don't say that. jerry: it's true. helen: no, it isn't! it's not true. you're a wonderful, wonderful boy. everybody likes you. it's impossible not to like you. impossible. morty? morty: maybe some people don't like him. i could see that. helen: kramer? kramer: yeah, i like him. hey jerry, what time you got? jerry: um, i haven't got my watch on. it's being fixed. kramer: when you getting it back? jerry: uh, next week. kramer: next week? how come it's takin' so long? jerry: huh? kramer: i said how come it's takin' so long? jerry: i don't know. they're, backed up. kramer: wait a minute, wait a minute, where did you take it? jerry: where'd i take it? kramer: yeah. jerry: where did i take it? where did i take it? (stabbing a knife into a cutting board) umm, to that place on, uh columbus and 85th. okay? kramer: what? jimmy sherman? jerry: yeah. kramer: yeah, i know the guy. i take my stuff in there all the time. yeah, i bet i can get your watch back by tomorrow morning. jerry: no, kramer, i don't want you to say anything to him. kramer: no, i'd be happy to. he's a friend of mine. jerry: i'd like to follow the regular procedures. i don't want any special treatment. kramer: hey, i'm going to get that watch back for you by tomorrow, buddy. you see. morty: bring me the receipt. kramer: i get that too. (exits) jerry: be right back. (follows kramer out) jerry: there's no watch ... i threw it in the garbage can on the street. it didn't keep good time. my parents gave it to me, but i didn't like it. so don't mention it again, okay! kramer: y-yeah, all right. jerry: all right. kramer: wait, wait, . . .y-yea, w-no dit dit g- (kramer noises) helen: what was that about? kramer: oh, no, uh, he's got my calamine lotion and uh, i told him not to return it. if he needs it he should keep it. he's got uh, he's got a thing on his ankle. helen: how can anyone not like him. morty: hi, morty seinfeld. i have a two o'clock appointment. receptionist: yes, mr. seinfeld. would you please fill this out. morty: all this? this whole thing? it's going to take me forty-five minutes. receptionist: i know. it's very long. morty: look at this. it's a book. employer's address. whydo they need this? you know i never had a back problem until that night i slept on the convertible sofa. (hu hu) my back was fine. helen: well, it's not the sofa. morty: you stick up for that sofa like i'm criticizing a person. helen: we got it from sullivan's. it's a good store. morty: well one day somebody's going to sleep on that thing and we'll get sued. i hope this doctor knows what he's doing. helen: leo says he's the best there is. morty: leo, i'm listening to leo now! helen: well you're lucky he was able to get you this appointment. you know what the waiting list is for this guy? morty: well, if he fixes my back i'll be happy. . . . (back to the form) have you ever had a sexually transmitted disease? that's it! . . . here, you got my name, you got my address. that's enough. receptionist: julie, you want to take him back? jerry: you what? you passed? how could you do that? george: ahhhhh (exhaling) jerry, my young friend, you're so nave. you are so, so nave. you know about a few things. you know about comedy, a little bit about relationships, some baseball, but you are so far out of your element here, you are embarrassing yourself. now listen to me. i'm negotiating. negotiation, this is what'cha do in business. jerry: let me explain to you what you just did. there are literally hundreds of people trying to get pilot deals with them this year. they go with maybe, five. okay, if we pass, that's it. they go to the next show. george: ooooo, i'm scared. . . . ohoooo they're not going to do the show. jerry: we're lucky they're even interested in the idea in the first place. we got a show about nothing. with no story. what do you think, they're up there going, hey maybe we should give those two guys, who have no experience and no idea, more money!? george: ohooo what are we going to do? i'm shaking! i'm shaking! jerry: well, i think you're wrong. george: well, we'll just see. jerry: yes we will. george: yes we will. jerry: i just said that. george: i know you did. jerry: so good for you. george: so good for you. jerry: what are you repeating everything i'm saying? george: what are you repeating everything i'm saying? jerry: well george is an idiot. george: well george . . . . morty: all right, all right, let's go already. they keep you in here a year. they don't give a damn. i could die in here. . . .(open the door and shouts into the hallway) excuse me! excuse me! what's going on? i'm here twenty minutes. could somebody please help me. helen: (enters) shhh. quiet! everyone can hear you. morty: twenty minutes. i've been waiting twenty minutes. helen: well the doctor must be busy. morty: well then what do they make appointments for if they can't keep them. huh, hha. look if i did that in my business i wouldn't have made a nickel. nurse: hello, mr. seinfeld. morty: i thought you forgot about me. nurse: we didn't forget. morty: haahhh! the velcro. i can't stand velcro. it's that t-e-a-r-i-n-g sound. i used to be in raincoats. i refused to put that in any of my lines. nurse: okay, mr. seinfeld, please come this way. we need some x-rays. morty: leave all my stuff here? nurse: leave it. george: oh hey, by the way. do you want a box 'a, cuban cigars? i smoked one last night. i got nauseous. jerry: no i don't want ?em. kramer: i'll take it. no, i'll take it. what is it? george: here you go. kramer: cigars? (hits the box) george: yeah, cubans. kramer: oh, yeah? george: yeah, the kind that castro smoked. you can't buy ?em anywhere. kramer: castro eh? pasto costillo homiga (nonsense spanish) jerry: yeah? voice: federal express. jerry: federal express? come on up. . . . federal express. i'm not expecting a package. kramer: wooo, you know what you just did? you let a burglar in the building. jerry: you think so? kramer: federal express? of course. that's the oldest trick in the book. you know it might not be a burglar it could be a murderer. jerry: so you want to just abolish all home package deliveries. kramer: yes. it's dangerous. kramer: wait det doit ... dit (kramer noises -- he prepares for a fight by rolling up a magazine) jerry: who is it? voice: federal express. kramer: okay, ... gidg gi gt (backs up and bends his knees, holding the rolled magazine - arm back, ready for a rumble) all: hiiiiiiiiiiiiiiiiiiii! kramer: i want one of those! elaine: hiiii kramer kramer: oh yes elaine: kramer, hi, i thought you went to california. kramer: well i came back for you. elaine: oh, shut up (pushes kramer) jerry: i missed you. elaine: really? you really missed me? jerry: yeah, . . . seriously. george: yeah, yeah, me to miss -- i miss. jerry: yeah, big missing goin' on (spreads arms wide) elaine: ahhhhhh haa ha ha kramer: hey, i'm going to be right back. i'm going to get a match. elaine: oh god, who's suitcase is this? jerry: oh, it's my parents. my father came up to see a back specialist. elaine: oh, god, it's probably from sleeping on that sofa. george: boy, you look really great. jerry: yeah. elaine: you lie. george: no, no you really look great. elaine: hu hu, ha ha ha. jerry: so tell us about the trip. how's dr. reston? elaine: oh, he's fine. jerry: things are good? elaine: yeah, you know (scratches cheek and sniffs) jerry: uh oh. elaine: what, uh oh? jerry: did you see that? george: yeah, i saw it. elaine: what? jerry: it's a tell. you gotta tell. elaine: what tell? what's a tell? jerry: when you ask someone about their relationship and they touch their face, you know it's not going too well. go ahead ask me how it's going with somebody. elaine: um, uh, who's it going with, uh, alice? jerry: good, going good (scratches chin) and the higher up on the face you go the worse the relationship is getting. you know it is like - pretty good - not bad - i gotta get out. (scratches chin, nose then covers eyes with hands) elaine: how high did i go? george: you almost did the nose. jerry: what are you eating my peanut butter out of the jar with your disgusting index fingers? this is a sickening display. (takes the peanut butter jar away from george) george: what? i'm not eating bread now. i'm off bread. jerry: (to george) you're off bread. (to elaine) so what happened is it over? elaine: no not quite. jerry: why not? elaine: well he was my psychiatrist, you know. i mean, he knows all my patterns. he knows in relationships that i always try to find some reason to leave, and so, he says as my doctor, he can't allow me to do this, so he's not letting me leave. george: what do you mean - "not letting you?" elaine: he has this power over me, okay. i mean he has this way of manipulating every little word that i say. he's like a svenjolly. jerry: svengali. elaine: what did i say? jerry: svenjolly. elaine: svenjolly? i did not say svenjolly. jerry: george? george: svenjolly. (licking a little bit of peanut butter from his finger) elaine: i don't see how i could have said svenjolly. jerry: well maybe he's got like a, cheerful mental hold on you. kramer: you know i can't find a match anywhere. george: you know what you should do? you should tell this guy you're seeing somebody else. that's the easiest way to get out of these things. elaine: no, it's not going to work with this guy. george: no, you just tell him ah, an old boyfriend has come back into your life. elaine: i don't think so. jerry: nice try. george: took a shot. kramer: this is a good cigar (hair is on fire, white smoke pouring from the back of his head) . . . . . . woooooooooow . . . (runs to bathroom, his arms in the air -- he bangs them in to the top of the hallway door jam and falls into the bathroom) morty: so, when do i get to see the doctor? nurse: he'll be in with the x-rays in a few minutes. you can get dressed. (leaves) morty: (checking pants) they stole my wallet. the bum stole my wallet. (opens door, shouts into the hallway) my wallet's gone! my wallet's gone! i had my wallet in my back pocket. it's gone. nurse: are you sure? morty: yes, i'm sure. i went in to get my x-ray, somebody takes my wallet. is that the operation here? dr. dembrow: mr. seinfeld, i'm dr. dembrow, i've been going over your x-rays. morty: i'm not interested in the x-rays. i want my money back. somebody stole my wallet. i had $225 in there. dr. dembrow: well, i don't see how something like that could have happened. morty: oh, you don't see. you don't see. well it happened. believe me. helen: (enters) what's going on? morty: they stole my wallet. helen: what? morty: yeah, while i was in getting x-rayed. dr. dembrow: all right, mr. seinfeld, i am sorry about your wallet but would you like me to look over these x-rays? morty: what kind of clip joint are ya running here? dr. dembrow: all right, fine. (leaves) helen: the least you could have done was heard your diagnosis. morty: i am not interested in his diagnosis. he's a bum. helen: you came all the way from florida to see him. morty: i want to know what kind of an office this is where you can't leave your pants in the room. you tell me. elaine: i'm sorry but there's somebody else. dr. reston: umm hm. elaine: well it's, nothing i planned on happening, you know. it just, kind of happened. dr. reston: tell me about him. elaine: well, there's not really much to tell, you know, he's just a guy, really. dr. reston: yes, well i assumed he's a guy. elaine: right... dr. reston: and you've known him how long? elaine: . . . years. many years (her voice cracks), um, (clears throat) we've been close friends and then recently something just you know *ehghh* happened. dr. reston: you mean sexually? elaine: yeah, yeah. sexu-ally. elaine: i think your um ... (points at the phone) dr. reston: excuse me. yes, oh yes, bobo. uh, no it's just east of madison. around 400 will be fine. all right bobo ... see you then. (hangs up) . . . i'm sorry where were we? elaine: well, i was just um, telling you about this, other guy. dr. reston: mm. elaine ... elaine: yeah dr. reston: do you remember your dream, where you have a sexual encounter with a chinese woman? elaine: yeah. yeah, (cough, cough) mm-hm. dr. reston: elaine, i'm concerned about you. elaine: oh, no no no no, don't concern yourself with me, because i'm - i'm good. i'm - i'm very good, i mean i'm really very, very good. dr. reston: elaine. have you been urinating a lot again? elaine: . . . no. dr. reston: and how often have you been seeing, um . . .? i'm sorry what is his name? elaine: h-his name? dr. reston: yes, his name. elaine: um, well what's the difference? dr. reston: are you afraid to tell me his name? elaine: no, no, i just - i just don't see how that's relevant. dr. reston: it doesn't matter if you don't see how. i see how. elaine: uh, his name, um, i don't - i don't even know, all right you want to know his name? i'll - i'll tell you his name. his name is . . . kramer. dr. reston: kramer. is that his first name or his last name? elaine: oh, i'm - i'm really uncomfortable talking about this. dr. reston: elaine, i want you to do me a favor. elaine: what? dr. reston: i want you to tell this young man to give me a call. it's very important that i speak to him. elaine: oh, oh no, no no no, i can't do that. dr. reston: you can do it and you will do it. elaine: no, i can't. dr. reston: you can and you will. elaine: okay, okay. yeah i'll have kramer give you a call. jerry: so you didn't even let the doctor treat you? morty: i wouldn't give him the satisfaction. helen: why did you leave your wallet in your pants? morty: what are you talking about? what was i supposed to hide it somewhere? helen: you could've taken it with you. morty: oh, yeah, i'll be lying on an x-ray table with my wallet in my mouth. leo: hello... jerry: hi uncle leo. leo: i just talked to dr. dembrow's son. he said they almost had to call the police. morty: what are you talking about? i'm the one who should have called the police. they stole my wallet. leo: you know how hard it was for me to get that appointment for you? you can't just walk in on this guy. he did me a personal favor. morty: all right, leo. leo: and you walked out without paying. morty: how was i supposed to pay? i didn't have my wallet. leo: well, i hope you send him a check. morty: what for? leo: what for? this man was nice enough to see you. he did me a personal favor. morty: that's the second time you said "personal favor". why do you keep saying that? leo: i said it once. morty: twice! and dembrow doesn't even know you. his son happens to live on your floor. helen: leo, where did you get that watch? leo: you know where i got this? (flashback) i found it in the garbage can. it kept terrible time. i brought it over to jimmy sherman right here on 85th and columbus. gave it to me back the next day. works great. what kind of idiot throws a way a perfectly good watch? helen: morty, doesn't that watch look like the one that we gave jerry. jerry: hey, where's the waiter. dad, what say we have some red meat tonight. let's live a little. . helen: let me see that. jerry: could we continue this another time. (the episode opens with a series of clips from 'the pitch', 'the ticket' and 'thewallet', illustrating the story so far. a rough precis would be: george turns down the offer from nbc for the show, telling jerry he's negotiating. susan gives george a box of cuban cigars from her father, which hepasses to kramer, who sets fire to his hair while lighting one. jerry's parents come to town, so's morty can see a back specialist - he slept on the fold-out. kramer tells jerry's parents that crazy joe davola is after jerry. jerry throws away a watch his parents gave him, because it doesn't keep time. uncle leo fetches it out of the garbage. jerry tells his parents his watch is at the jeweller for repair. at the doctor's, morty reveals his hatred of velcro and his wallet disappears. elaine returns from europe, eager to rid herself of the 'svenjolly' dr reston. george tells her to inform the doctor she's seeing someone else. elaine opts to say she's seeing kramer, and dr reston wants to meet him.) jerry: it's an entire industry of bad gifts, aren't they? all those executive gifts, any stupid, goofy, brass, wood thing, they put a piece of green felt on the bottom. "it's a golf, desk, tie and stress organiser, dad." but to me, nothing compares with the paperweight as a bad gift. there's no better way than a paperweight, to express to someone that, "i refuse to put any thought into this at all." where are these people working that the papers are just blowing right off of their desks? what, are their desks screwed to the back of a flat-bed truck going down the highway or something? what, are they typing up in the crow's nest of a clipper ship? what do you need a paperweight for? morty: (to leo) i don't understand this jeweller, jimmy sherman. (indicates jerry) he brings in a watch, it takes over a week to fix. he fixed yours in one day. jerry: oh, you know these jewellers, they're enigmas. they're mysteries, wrapped in a riddle. helen: (indicating to jerry) she's very attractive. jerry: she's okay. helen: just okay? jerry: she's nice. helen: she's better than nice. jerry: she's all right. helen: she's beautiful. jerry: she's not beautiful. helen: i think she's beautiful. jerry: so you ask her out. helen: i'm not gonna ask her out. jerry: why not? helen: if you don't think she's beautiful, there's something wrong with you. jerry: she's pretty. she's not beautiful. helen: i should drop dead if she's not beautiful. jerry: i think that's a little extreme. leo: (grudgingly) she's awright. morty: (oblivious to the above) two exact same watches. he tells you a week, and him a day. how could that be? something's fishy about this. george: he said what? susan: "the hell with them." george: "the hell with them?" susan: those were his exact words. george: (worried) oh boy. susan: he said, "we've got five hundred shows to choose from. why should we give two guys, who have no idea, and no experience, more money?" george: (still worried) he was pretty emphatic? susan: pounded on his desk. george: pounded? susan: (tossing her purse on the dash) i told you to take the offer. george: (getting animated) look i, i uh, i had nothing to do with this. it wasn't my decision. it was jerry! jerry told me no. i'm the creative guy. he handles the business end. susan: you said it was insulting. george: i was quoting him. why would i be insulted? i'm never insulted. you could call me baldy, dump soup on my head. nothing insults me. susan: well, there's nothing i can do. george: well, don't they make a counter offer? how can they just cancel the whole deal like that? what kind of a maniac is this guy? i mean he just, he says no, and that's it? susan: yeah, that's the way russell is. he doesn't like to play games. george: well, he has to play! he can't just not play. we're playing! look, i gotta see him, how do i get in touch with him? susan: you'll have to wait til monday. george: mon...? no, no, i can't wait til monday, that's impossible, i gotta talk to him now. where does he live? susan: (laugh) i can't give you his address. susan: give it back! george: gimme the purse! elaine: okay, so he just wants to talk to you. i couldn't talk him out of it. so you just tell him that you're my boyfriend and that we're in love, okay. can you do that? kramer: yeah, yeah, okay. i'm your boyfriend. elaine: okay. kramer: have we been intimate? elaine: yeah. yeah, we've been intimate. kramer: alright, how often do we do it? elaine: kramer, how is that important? honestly, do you really think he's gonna ask you that? kramer: elaine, he's a psychiatrist. they're interested in stuff like that. elaine: alright, alright. we do it, uh... (thinks) five times a week, okay? kramer: (suggestive) oooh, baby. (smiles) elaine: oh, man. alright, listen. just tell me something, what are you gonna say? kramer: i know what i'm gonna say. elaine: no, no, but i would like to hear it. kramer: no, no. i don't wanna say it out loud. kills the spontaneity. you know, gleason, he never rehearsed. (indicates phone) 'kay, go 'head, do it. elaine: (dialling) alright, okay. you talk to him. kramer: (playing with his hair) talk to him. elaine: hey, how's your hair? kramer: oh, well, yeah, it's good. elaine: (handing over the phone) you're not the type that should be playing with matches, seriously kramer. kramer: (listens) uh, yes. uh uh, doctor uh, reston, is he in? well, this is kramer and uh, he's expecting my call. elaine: (mouths silently) okay. kramer: (singing) ...johnny ...was a rebel. he rode through the land... kramer: ...yu uh, yes, yes uh, uh, doctor reston. uhm well, hello there. ahh yeah, well, i'm a good friend of elaine's... elaine: (animated, but quietly) no, no. not friends. kramer: ...well, actually uh, we're uh, we're not friends uh, we're uh, we're much more than friends... kramer: ...and uh, i'm afraid we have a bit of a problem. well, the point is, doctor uh, i'm very much in love with elaine... kramer: ...and uh, she's very much in love with me, and uh, well uh, we would uh, appreciate it if you would cease and desist, and allow us to pursue our courtship unfettered. elaine: (mouths silently) that's perfect! kramer: if not, i can assure you, doctor, that i can make things very unpleasant for you and your staff. if you have one. kramer: yes. yeah, but the point that i... (listens) kramer: ...ah, ye... (listens) well, no... uh, yeah, that's possible... kramer: (listens) ...well, i suppose i could, (turns away from elaine) but i'd have to shift a few things around, uhm... hold on for a second, will you? uh... kramer: ... uh, go ahead, yeah. (listens and makes a note) alright uh... yeah, yeah, okay... i look forward to it too. (listens) eh, hah, okay. so long. elaine: what happened? what'd he say? (indicates pad) what's going on here? kramer: uh, okay now. he uh, you know, he uh, wants to get together. elaine: (horrified) get together!! kramer: he wants to talk. elaine: well, why didn't you say no!! kramer: (momentary confusion) wha...? uh... (thoughtful) that's interesting. elaine: (frustration) ugh! naomi: did you enjoy your poisson? helen: it was... different. naomi: (to jerry) and how was yours? jerry: ah, very good. naomi: you should try our mousse. (a little flirtatious) it'll change your life expectancy. jerry: no thanks, just the check. helen: what's the matter with you? jerry: what? helen: why didn't you flirt with her? jerry: come on. helen: she was flirting with you. why didn't you say something? jerry: what am i gonna say? helen: you just sat there. jerry: well, you made me uncomfortable. helen: you're a comedian, couldn't you come up with something? leo: (to morty) where's the bathroom? jerry: in the back, on your right. jerry: dad! morty: will you stop it jerry. let go. helen: jerry. jerry: will you let me pay just once. morty: you're out of your mind. jerry: how you gonna pay? you don't even have a wallet! morty: don't worry about it. jerry: what're you gonna do? morty: what's the difference, we'll figure something out. helen: (to jerry) you're not paying. jerry: alright, fine. you figure something out. i'd be very curious to know how you pick up a check with no money. 'cause if this works, the whole monetary system's obsolete, we're back to wampum. (standing) i'm going to the bathroom. morty: how the hell am i gonna pay for this? leo: they give you some portion here, huh? jerry: uh, yeah. (broaching a subject) hey uncle leo, i hope i wasn't uh, rude to you that day i bumped into you on the street. uh, i really did have to get to a meeting. leo: (preening himself in the mirror) aw, no, no, i understand. i got plenty of friends in showbusiness. i know you're all very busy. jerry: so you found that watch in the garbage can, huh? leo: yeah. in fact it was right after i ran into you. jerry: oh, heh. you know, a friend of mine has a watch just like that. i'd love to replace it for him as a gift. leo: well, i haven't seen too many like (indicating watch) these. jerry: yeah, i know. maybe uh, you wanna sell me that one. leo: (sarcastic) aww, sure. (laughter) jerry: (pulling leo back in) hang on a second. i got a little proposition for you. doorman: (into phone) there's a george bonanza to see you. george: costanza. costanza. doorman: (into phone) george costanza. george: the guy who pitched him the show with the stories about nothing. (snaps fingers) jerry seinfeld. jerry seinfeld's friend. doorman: (into phone) seinfeld friend. (he listens) (to george) he says, call him monday. george: (into phone, frantic) mister dalrimple! mister dalrimple i have to talk to you! doorman: excuse me. george: it's about the show. it... no, it was... doorman: excuse me. george: ...it was all a terrible misunderstanding, sir. just five minutes. just five minutes of your time. (listens) thank you! thank you, mister dalrimple. doorman: (into phone) very good, sir. morty: you don't understand. i can't allow my son to pay for me. look, as soon as i get back to florida, i promise you i'll mail you a check. maitre d': why don't you just let him pay, and then you can pay him back? morty: no, no, he won't let me do that. maitre d': why don't you just put the money in his pants pocket, unsuspectingly? morty: he could wash them. maitre d': monsieur, we are running a reputable business. morty: don't tell me about business! i sold raincoats for thirty-five years! maitre d': aha, but you did not give them away, did you? morty: you don't understand my... maitre d': ah, monsieur, i cannot get involved with you and your family, ah. elaine: now look, don't take too long. kramer: (looking around) look at this building. what is this? elaine: i don't know. it's a building. kramer: (indicating) the door's on a diagonal. elaine: so what? kramer: (looking around) it's architecturally incorrect. elaine: (frustrated) just go. george: (sidling in) is this a bad time? i hope i'm not disturbing anything. russell: we were about to sit down to dinner. russell: (indicating) this is cynthia. george: (entering the apartment more fully) oh. oh, hi, hi. hi. nice to meet you. (peering at the table) what're you having, veal? russell: no. george: looks like veal. russell: it's not veal. george: well, it's a good looking piece of meat. (laughs nervously) wow, this is some place. a duplex, huh? (indicating) look at this, you got stairs in an apartment. all my life, i dreamed about having steps in an apartment. even one step. sunken living room. although, one step is really not all that sunken. (tries hard to elicit a laugh) russell: who gave you my address? george: no, that's a fair question. it is, uhm... (nervous chuckle) jerry, yeah. (to cynthia) jerry's a friend of mine. (to russell) he uh, he gave it to me. unbelievable how many addresses of people this guy has. george: he's got marlon brando's. i could go to marlon brando's house if i really wanted. george: course, i wouldn't, i mean uh, the guy is uh, well obviously (to cynthia, as she passes) the guy has his problems. russell: so, what's the surprise? you wanna talk about the show? george: well, you know, it's really very funny, because you know what we got here, really? we really, really, just have a terrible misunderstanding. you see, when i passed on the deal, i thought that's what jerry wanted me to say. y'know, i, i misinterpreted. cynthia: (bored) russell, where's the tv guide. george: oh, what time is it? eight thirty? i'll tell you what's on. you got major dad, blossom, very funny programme... russell: blossom's on monday. george: are you sure? oh, look who i'm talking to. the president of nbc. (forced laughter) russell: look mister costanza, it's too late now anyway. i already made a deal with another writing team. george: (worried) alright, alright. look, we're people, you and me, huh? businessmen. colleagues, if i may. let's not quibble. we'll do it for the thirteen thousand. thirteen thousand, and i never came up here, we never talked, alright. you take good care. (moving past russell toward the door) it was nice seeing you again, and nice meeting you. (to cynthia) cynthia, right? russell: alright, now look. these deals are already made. george: awright, lemme just say this. ten thousand dollars, alright, and now i'm going below what you wanted to pay. you have your dinner, have your veal, or whatever it is. enjoy... russell: mister costanza. george: alright, that's it. alright, good, eight thousand dollars. (to cynthia) cynthia, again, nice meeting you. have i commented on the shoes? i love suede, it's so thick and rich. did you ever, you ever rub it against the grain? alright, anyway... cynthia: (bored, frustrated) russell, can we eat? russell: (to george) alright. eight thousand. george: (pleased) you've made jerry very happy. george: may i just use your bathroom for a moment? jerry: alright, two hundred, but that's as high as i can go. i really think you're being unreasonable here! leo: jerry, i'd give you the watch. it's not the money, i happen to like it. jerry: look, i happen to know how much that watch cost. it's a sixty dollar watch, you paid forty to get it fixed. that's a hundred dollars. i'm offering you two hundred! leo: (indicating) i've never seen a band like this. jerry: aww, right. three hundred, plus fifty for the repair. three fifty, that's it! leo: you have it on you? jerry: yeah, i think i do. jerry: (under his breath) this is unbelievable. morty: what the hell is going on here? kramer: well, it uh, (offering his hand) it's a pleasure to meet you. reston: (shaking hands) thank you for coming in. kramer: thank you. reston: please, sit down. kramer: (quiet) okay. reston: could i offer you something to drink. uhm, coffee? anything? kramer: okay uh, yeah. i'll have a uh, you have a decaf cappuccino? reston: i don't think we have that. kramer: well, that's a little strange. reston: uh, why does that surprise you? kramer: well, it's uh, it's a very popular drink reston: this is an office. kramer: that's true. but, you know, i can't help but think that uh... reston: (interrupting) so tell me mister kramer... kramer: ...okay, yes, shoot. reston: tell me all about uh, you and elaine. kramer: oh, alrighty uh... kramer: well, what we have here, doctor, is uhm, an extraordinary situation. reston: is it? kramer: oh, you better believe it. davola: (singing) '...travelling along...' elaine/davola: '...singing a song, side by side...' elaine: wow. you really have a terrible voice. davola: do i know you? elaine: uhh, i don't think so. davola: 'cos you really look familiar. elaine: oh, well maybe you've seen me. my face is on uhm, mount davola: oh yes, of course, that's it. i guess i'm just used to seeing it on a much larger scale. elaine: oh yeah, right. i replaced uh, teddy roosevelt. davola: oh really. elaine: umm. trustbuster. bust this. kramer: you know, i never thought of it like that before, doctor. (points) you, are absolutely right. reston: i'm glad we agree. kramer: (reaching in pocket) hey, would you like a cigar? y'know, they're cubans. reston: i'd love one. kramer: yeah. you know, i think elaine is a wonderful woman. you two are gonna make a wonderful couple. reston: if you ever feel, a need to talk to someone... kramer: (lighting dr reston's cigar) uh huh. reston: ...about anything. you have my number. kramer: (lighting his own cigar) well, that's very kind of you. kramer: mmm, these are good, huh? kramer: (quiet) oh. elaine: i cannot believe i'm doing this. i never meet people like this. you're not a nut, are you? davola: no, i don't think so. jerry: i can't believe i'm doing this. i never do stuff like this. naomi: (joking) really? i give out my number to just about every customer who comes in here. jerry: oh. (chuckles) really? you don't seem that desperate. naomi: (playing it straight) oh yeah. actually, i'm a little disappointed. i kind of had my eye on uncle leo. jerry: uh huh. well uh, i'll give you a call, and thanks for the fish. by the way, you know why fish are so thin? naomi: why? jerry: they eat fish. kramer: hey. elaine: what happened? what took you so long? kramer: hey, he's a terrific guy. elaine: wha...? what are you talking about? what'd he say? kramer: well, we talked about a lot of things. elaine (o.c.): you talked about a lot of things? well... kramer (o.c.): yeah. elaine (o.c.): did you talk about us? davola (o.c.): i'm in love. i just met her outside in the street. her reston (o.c.): did you say elaine? jerry: how come the psychiatrist, every, the hour is only fifty minutes? wha, what do they do with that ten minutes that they have left? do they just sit there going, "boy, that guy was crazy. i couldn't believe the things he was saying. what a nut! who's coming in next? oh, no, another headcase!" morty: you shoulda told me it didn't work. jerry: i know, i know. helen: you didn't have to throw it out. jerry: i was always late. it was frustrating me. i'm sorry, i really am. helen: oh, that must be leo. jerry: i woulda taken you to the airport. helen: he has nothing to do. jerry: neither do i. (to intercom) yeah? george (o.s.): it's george. jerry: come on up. (to parents) it's george. morty: oh, it's george. helen: what ever happened with nbc and the deal? jerry: ah, george turned it down. helen: he turned it down? jerry: yeah. helen: why did he do that? jerry: because of ted danson. helen: what does ted danson have to do with it? morty: maybe he doesn't like ted danson. jerry: (fetching a drink from the fridge) hey, who knows, maybe we'll wind up getting more money. george: (to jerry) hey. morty: hey, georgie-boy, how are ya? george: hey, mr seinfeld. (shakes morty's hand) hey, mrs seinfeld. how are you? helen: what's the matter with you? george: what'd i do? jerry: what about nbc? did you hear anything? george: yeah, as a matter of fact, i did. george: we got a deal. morty/helen/jerry: (simultaneous) hey!/that's wonderful!/we got a deal! jerry: heyy! terrific. morty: you see, he had the right idea. hold out. that's how you get the big money, huh george? (slaps george on the shoulder) george: uh, please, morty. morty: no, no, no. he knows how to talk to these people. no-one's gonna take advantage of georgie. (slaps george's shoulder again) george: i'm just happy to be working with your talented son... jerry: aww... george: ...who's not doing this for the money. jerry: ...c'mon. george: you have no idea how refreshing that is. jerry: so what'd we get? george: (big smile) eight thousand dollars. jerry: beautiful! george: (quietly) that's uh, for the two of us. helen: four thousand apiece? jerry: lemme see if i understand this. in other words, you held out george: i was wrong, you were right. jerry: you know, the basic idea of negotiation, as i understand it, is to get your price to go... up. george: you're smart, i'm dumb. jerry: you know, this is how they negotiate in the bizarro world. helen: that's gotta be leo. jerry: (to intercom) yeah? leo (o.c.): leo. jerry: alright, we're coming down. morty: alright, let's get going. jerry: dad, before we go, i got a little something for you. jerry: a present. morty: a present? morty: hey! look at this, a wallet. exactly what i needed, y'see. jerry: c'mon, you lost your wallet, i figured i'd get you another one. helen: i hope you didn't spend too much on that. morty: i wanna tell you. this is one of the most thoughtful gifts anyone's ever given me. helen: he's something, you son, isn't he? jerry: ah hah, alright, let's go. morty: you're a terrific kid. jerry: okay. george: yeah, he's something, isn't he? helen: how could anybody not like you? george: (to jerry) you're very special. jerry: (pointedly) yeah, i'm good for about four thousand dollars. leo: hey, let's go! it's twelve (checks watch) uh, twelve twenty-two. morty: alright, leo. jerry: hey, uncle leo. leo: hi, hi... jerry: how you doing? jerry: this is some beautiful parking spot you got here. leo: yeah, i hate to give it up. jerry: yeah. hey, dad, you sure you don't need any more money? morty: jerry! jerry: alright, i'm just joking. listen, have a nice trip. helen: (hugging jerry) bye bye, jerry. george: bye mrs seinfeld, take care. morty: bye bye. (hugging jerry) thanks again for the wallet. george: (shaking hands with morty) morty, always a pleasure. jerry: take care now. so long. george: yeah, like he was really gonna take your money. jerry: oh, he took it. i put four hundred dollars in the new wallet. george: you're kidding. jerry: he lost all that cash. it was the only way i could give it back to him, otherwise he wouldn't accept it. george: man, would i like to see the look on his face. morty: you believe this? helen: what? morty: (indicates the new wallet) it's velcro. helen: you're kidding. morty: who needs this? morty: leo, let's go. jerry: ...main difference between the women's wallet and the man's wallet, is the photo section. true? women carry with them a photograph of every person they've ever met, every day in their whole lives, since the beginning of time. and every picture is out of date. you know what i mean? it's, "here's my cousin, three years old. she's in the marines now." "this is my dog. he died during the johnson administration." you know. you get stopped by a cop, no licence, no registration, (waves imaginary wallet) "here's fifty-six people that know me." cop goes. "alright, ma'am, just wanted to make sure you had some friends, move it along. routine pal check." jerry: have you ever called someone up, and you're disappointed when they answer the phone? you wanted the machine. you know, and you're always kind of thrown off, (left hand up to side of face, pretending its a receiver) you go "oh, i eh, i - i didn't know you were there, i ah - just wanted to leave a message saying, sorry i missed you." jerry: well this is it. naomi: oh, this is nice. thanks again for the chinese food. jerry: oh, you're welcome. you know i think i ate too much of that garlic. naomi: yeah, me too. jerry: no, i ate the whole plate. i didn't know those little things were garlic. i thought they were peanuts. naomi: (laughs) - nnnhhahahahahahahahahahahahahaha (obnoxious laugh). oh, you know what? i think naked gun is on. oh i've seen it. i laughed through that whole thing. you wanna watch? jerry: no, i mean, i don't think so. naomi: i thought you liked to laugh. i thought you were happy go lucky. jerry: no, no, no. i'm not happy, i'm not lucky, and i don't go. if anything i'm sad stop unlucky. naomi: ahahahahahahahahaha. jerry: that's not funny naomi. naomi: ah hahahaha. (points at jerry) jerry: i didn't mean to be funny there. why don't you check the tv guide. i think uh, holocaust is on. george: (on the answering machine) jerry, it's george. hey, hey are you all set for the weekend. this is going to be great. you're going to have a great time with naomi. george: (con't) all right, you know she's got that laugh. what did you say? it's like elmer fudd sitting on a juicer? george: (con't) a-anyway, i was thinking we would take two cars up to the cabin and that way if one of wanted to stay you know... jerry: this thing has never worked right. (holding the machine in his hand) naomi: you think i, laugh like elmer fudd sitting on a juicer? jerry: well, first of all elmer fudd is one of the most beloved internationally known cartoon characters of all time. "i'm going to kill that cwazy wabbit ... hahahahahaaa " come on. not only that, a juicer is one of the healthiest ways ... (naomi exits) it makes the juice ... it extracts the-the pulp and-and-and the vitamins, for-for long life and-and-and vitality. jerry: how could you leave a message like that on my machine.? george: well how could you just play your message in front of anybody? jerry: because i didn't think anyone would leave it! george: well, i didn't think anyone would play it. jerry: well, now she's not going away for this weekend. george: what do you mean not goin'? come on, we got plans here. call her up. jerry: nah, it's better anyway. i mean really. what was going to happen? i'm a comedian. how can i go out with a girl with a laugh like that? i mean izz-it's like ah, it's like coco chanel goin' out with a fish monger. you know, cause she's with all the perfumes and a fish monger's pretty bad smell. george: wh-well maybe you should ask elaine. jerry: yeah but if i ask elaine, then kramer will feel slighted. george: oh no no no no, don't say anything to kramer. susan can't stand him. he vomited all over her. jerry: yeah, .. wait a minute do you smell smoke? kramer: hmm. jerry: ah, kramer. kramer: hello boys, (in an irish accent) top of the morning to ya. what do you say? jerry: will you put that thing out before you start another fire. you had to give him a box of cigars. kramer: so, what are you guys doin' this weekend? jerry and george: uh uh, we're uh .. kramer: because i'm going to be playing golf at the westchester country club. mmh. jerry: westchester? isn't that a private club? kramer: oh, that's right buddy. it's private. it's very private. but i met the pro at the golf shop up on 49th st. -- i gave him one of these cubans and he invites me up to play a free round ... then he says anytime i lay one of these babies on him it's going to be the same deal. ha ha. idn't that beautiful. jerry: and george ye, hu, um ye, kramer: man, i'm going to be hitting the links all weekend. ffoooo (taking an imaginary swing, he makes the sound of a golf ball being hit) george: gee, that's-that's too bad. jerry: yeah, too bad. kramer: why? what wa? george: well, cause we were just saying we were going to ask you to come up to the country with us this weekend. susan's father has a cabin up there. but, eh, all right, well. kramer: well, what, they got any golf courses up there? jerry and george: no, no, no, no, no, no, no. george: no, no that's ah, that's pie country. jerry: yeah george: yeah, they eh, they do a lot of baking up there. kramer: uh huh. jerry: they sell them by the side of the road. blueberry, blackberry .... george: blackberry, boysenberry ... jerry: boysenberry, huckleberry ... george: huckleberry, raspberry... jerry: raspberry, strawberry ... george: strawberry, cranberry ... jerry: peach. elaine: i don't know. jerry: come on. i don't want to tag along with george and susan. if you're there it'll be a better group. elaine: what's that? jerry: ah, it's an autographed picture for my dry cleaner. i never know what to write on these things. i hate doin' this. elaine: "i'm very impressed"? ... ah you mean pressed caus' its like a dry cleaner? jerry: yeah, see that's why i hate it. so, come on, you going to go? elaine: well what about the sleeping arrangements? in the cabin! jerry: well, um same bed ... elaine: uh huh (very quietly) jerry: .. and uh, underwear and a tee shirt. elaine: what about me? jerry: well you'd be naked of course. elaine: uh, that's, ... mel: excuse me, jerry seinfeld? jerry: yeah. mel: my name's sanger, mel sanger. jerry: hi. mel: i drive that truck out there. jerry: oh, the yoo hoo? mel: yeah. jerry: i love yoo hoo. mel: yes, it's a fine product. anyway i saw you on the tonight show a couple weeks ago. i was watching the show with my son donald. he's got this rare immune deficiency in his blood ... the damnedest thing. doctors say he has to live in a plastic bubble. can you imagine that? a bubble. jerry: a bubble? elaine: a bubble? mel: yes, a bubble! mel: do you mind? may i? elaine: oh, sure. mel: ah, it'd break your heart seein' him in there. it's like a prisoner. no friends - just his mother and me. and i'm out there six days a week haulin' yoo hoo. we have sacrificed everything. all for the sake of our little ... bubble boy. mel: (in tears) excuse me, i ah ... elaine: oh right here (giving out paper napkins to mel and jerry and herself) mel: excuse me, anyway we were watching ya on tv. jerry: you get in the bubble with him? mel: no. he can see through the bubble. it's plastic. jerry: oh, i thought it was like an igloo. mel: no, it's clear. jerry: ah ha. elaine: who has the remote? (wipes a tear from her eye) mel: he does. elaine: the remote goes through the bubble? mel: yeah, he's in the bubble with the remote. jerry: so you have no control over the remote? mel: no, it's frustrating. jerry: mmm elaine: yeah, of course, yeah. (blows her nose) mel: so anyway, you're his favorite comedian. he laughed so hard the other night we had to give him an extra shot of hemoglobin. jerry: awe... that's nice! mel: tomorrow is his birthday and it would mean so much to him if you could find it in your heart ta' pay him a visit and, just say hello. jerry: hu, well, tomorrow, i, ... elaine: jerry! of course he'd pay him a visit. you'd be happy to. jerry: yeah, uh, ok, uh, tomorrow uh, where da ya - where do you live, uh, up town? upper west side? mel: no, up state. jerry: up state! hummm. jerry: he's a bubble boy. george: a bubble boy? jerry: yes. a bubble boy. susan: what's a bubble boy? jerry: he lives in a bubble. george: boy! susan: say, so what kind of a bubble? like an igloo? jerry: no, that's what i thought but apparently it's just a big piece of plastic dividing the room. susan: oh. george: what kind of plastic do you think it is? what do you think like that dry cleaning plastic? jerry: that's no good. he wouldn't last ten minutes in there. anyway what can i do, i promised i'd go visit him tomorrow. it's his birthday. i can't go to the cabin. susan: well, where does he live? jerry: i don't know, up state, falls, somethin' susan: wait a minute, this is right on the way to the cabin. george: well all right, beautiful, so you stop in. ya, ya visit the bubble boy for twenty minutes and then we can go. jerry: you think we can do it? susan: oh i know exactly where this is. you can just follow us. jerry: oh, great. ok we'll goin' away. i think i'm excited. george: (laughs) hu hu. susan: i'm excited. oh, you're going to love this cabin. my grandfather built it in 1947. it's it's incredible. jerry: ohh. george: all right there you go. it's a '47 cabin all right. so, we'll see you tomorrow. jerry: ok. kramer: well, george: and jerry very nice, very nice, nice. kramer: well, i'm off to the links. george: and jerry yeah. kramer: listen, i want to thank you for the invite up state. i'm sorry i can't make it. george: (clears his throat) susan: the what? george: uh, nothing, lets get going. come on. (laughs) hu hu. susan: did you ... (george grabs her hand) george: no, no, no we'll talk about it later. susan: is that one of the cigars my father gave you? (susan is pulled from the apt. and kramer looks out the door to watch them leave) elaine: hey, what's with george and susan? does he actually like her? jerry: ah, i don't know if he likes her as much as he likes it.? elaine: oh, that's nice! jerry: what's he doing? what is his hurry? elaine: well you know george. it's not good enough to get there. you gotta make good time. jerry: i know he once went from west 81st street to kennedy airport in 25 minutes. elaine: hmhmhm (laughing quietly) jerry: look at him. elaine: hmhmhm (laughing quietly) george: would you stop that please. would you just stop that? susan: why? george: knock it off, just sit in your seat over there you're distracting me. we're making incredible time here. i once went into kennedy airport from west 81st street to in uh, in 15 minutes. hu uh. oh, here hold this. it's uh, ten dollars for the tolls. jerry: what's he doing? is he out of his mind? do you see him? i don't even think i see him anymore. where is he? elaine: isn't that blue car him? jerry: no, no that's not him. what happened to him? i can't believe it. i lost him. that stupid idiot. now what are we going to do? elaine: it's no big deal jerry. we'll just meet him at the bubble boy's house. jerry: i don't even know where the bubble boy lives. i - i don't even remember the name of the town. elaine: wa',you don't have the directions? jerry: no, i was following him. elaine: how could you not take the directions? jerry: because, he's my directions. susan: i didn't see them george. jerry: we make all these plans - this idiot goes a hundred miles an hour - the whole weekend's over - incredible - just like that - elaine: poor little bubble boy. he's sitting there waiting for you in his bubble, or igloo thing, whatever. jerry: i don't know what to do. i don't know where i am. elaine: here just get off at this exit. we'll figure somethin' out. susan: we lost them. do you know that. we lost them! george: well it's not my fault. seinfeld can't drive. how hard is it to follow somebody? susan: well now what are you gonna do? george: it's fine, we'll just meet him at the bubble boy's house. susan: does he have the address? jerry: (answering machine) leave a message. i'll call you back. thanks. naomi: (on phone speaker) hi, jerry it's naomi. ah, listen, if its not too late i, changed my mind, i'd like to go to the cabin. kramer: wait, wai, ... ... yeah. hello!, hi, aw, this is kramer. yeah, i'm the next door neighbor. aw, well you know, ah jerry's left, uh, uh, but listen, ah, see ah, my golf game got canceled. uh, i'm thinkin' of going up myself... they got pies and ah, i got the directions right here. kramer: so then i drive all the way up to the country club and then i find out they got a tournament goin' on. do you mind if i smoke? naomi: no. kramer: these are cubans. (in fake spanish) maria, poquendo los scientos de estes con gleam. naomi: ha ha ha ha ha ha ... ha ha ha ha ha ha ... ha haaaa george: i don't know of this is the house. i don't see jerry's car anywhere. george: would you stop it. (susan playfully bites his ear lobe again) would you quit it please. someone is going to see us here. susan: so what? you are such a prude. george: hey, i am not a prude sweetheart. i swing with the best of them. (snapping his fingers 5 times) susan: okay, come on lets go in. george: what? susan: well we should at least tell them what happened. they might be very late if they make it at all. george: i can't go in there. i can't face the bubble boy. susan: what's the matter? george: i-i just don't react well to these situations. my grandmother died two months early because of the way i reacted in the hospital. she was getting' better. and then i went to pay her a visit. she saw my face. boom. that was the end of it. susan: okay, we're goin' in. come on. george: susan, wait please... (grabs her) please ... susan: come on george. george stop. george. george: susan, susan would you wai,.... jerry: (ranting) i can't believe how a little thing like george going too fast - and my whole weekend is gone - the plans, the packing, ... everything. elaine: your whole weekend? what about the bubble boy? jerry: why do you keep bringing up the bubble boy. you don't have to mention the bubble boy? i know about the bubble boy. i'm aware of the bubble boy. why do you keep reminding me about the bubble boy? jerry: i'll have a cup of coffee and a turkey club. waitress: how ?bout you? elaine: um, i'll just have a glass of water. jerry: (whispers) you can't just have water. elaine: why not? that's all i want. jerry: well this is not like a park bench where you just come in and sit down. it's a business. waitress: hold it a second. don't ?chu play on tv? jerry: oh, no. elaine: yes! yes. you saw him on tv. waitress: what's your name? elaine: jerry seinfeld. jerry: elaaaiinne... waitress: garry seinfield! i saw you on the tonight show. elaine: right. hey, wouldn't you like an autographed picture? waitress: oh, ha ha jerry: uh, i don't have anymore pictures elaine. elaine: he's lying. they're in the trunk (takes car keys) now you get to sign another one. jerry: i'm not lying. elaine: yeah, yeah he is. (as she leaves) jerry: she'll have a cup of coffee and a broiled chicken. mrs. sanger: see it's not really a bubble. a lot of people think it's an igloo. but it's really just a plastic divider. george: huh (quietly) george: and susan (nod) george: can you uh, go in the bubble? mrs. sanger: well, you have to put so many things on because of the germs. mel: the gloves, the mask, it's a whole production. george: so then he makes his own bed? mrs. sanger: well, that's one of the things we fight about. mel: would you like to meet him? george: uh, well, you know,... mrs. sanger: oh, he loves games. maybe you could play trivial pursuit with him. donald: hey ma what the hell do i got to do to get some food around here? i'm starvin'. and if it's peanut butter, i'm gonna shove it in your face. mrs. sanger: (embarrassed) ha...ha ha ha ha, ha. elaine: (laughing) hehehe -- one picture left in the trunk. jerry: uh, thanks! this is fun! yeah, this turned out to be a great weekend. elaine: where's my water? jerry: oh, it's comin'. - here ya' go. waitress: thanks. elaine: waddya' write? waitress: "nothing's finer than being in your diner." elaine: hu hu hu hu hu hu hu hu hu hu hu hu hu hu hu hu hu "ther - there is nothing finer than being in your diner."? jerry: no good? elaine: this is what you came up with? jerry: well. elaine: that is so lame. jerry, people are going to be reading that for the next twenty years and laughing at you. jerry: yeah, yeah, you're right. excuse me, excuse me. would you mind. i'd like to take the picture back. waitress: why jerry: i, i'm not happy with what i wrote. waitress: it's good. i like it. jerry: no, believe me it's not good. i'll mail you a new one with something really funny written on it. waitress: well, when you mail me a new one i'll send you back this one. jerry: no, look, you don't understand. i, i want the picture. waitress: right! (leaves) mrs. sanger: this is donald. george: hi. (waves to donald and laughs) hahahaha. susan: hello. donald: who are you? where's seinfeld? mrs. sanger: he's on his way. these are his friends. donald: what are you lookin' at? never seen a kid in a bubble before? george: tsst...'course i have. come on. my cousin's in a bubble. my friend jeffrey's uh, sister, also ... bubble ... you know. i got a lot of bubble experience. come on. donald: what's your story? susan: i-i-i have no story. george: she works for nbc. donald: how 'bout taking your top off? mrs. sanger: donald, behave yourself. donald: come on. mrs. sanger: i know. i know. why don't you play a game of trivial pursuit? george: ah, well, you know we gotta been running because of the ... donald: ooo. what? are you afraid? george: a-hu no, uh, it's just that ... donald: well i'm going to kick your ass. jerry: look, i was nice enough to give you the picture. i don't like what i wrote. i don't want it up there. now please just give it back to me. waitress: you are really startin' to get under my skin. jerry: i want that picture. waitress: well, you can't have it! in fact maybe you better just pay your check and get out. jerry: i'm not paying for anything until i get that back. waitress: well, you ain't getting' it back. jerry: well, maybe i'll just take it back. elaine: this chicken is really good. donald: ok, history ... this is for the game. ... how ya doin' over there? ... not too good! george: all right bubble boy. let's just play... who invaded spain in the 8th century? donald: that's a joke. the moors. george: oh, noooo, i'm so sorry. it's the moops. the correct answer is, the moops. donald: moops? let me see that. that's not moops you jerk, it's moors. it's a misprint. george: i'm sorry the card says moops. donald: it doesn't matter. it's moors. there's no, moops. george: it's moops. donald: moors. george: moops, donald: moors! kramer: hey! anybody home? oh boy. naomi: what should we do? kramer: ah, hold these (boxes of) pies. kramer: okay. george: help, someone. (bubble boy is strangling george) donald: there's no moops. you idiot. susan: stop it. let go of him! mrs. sanger: donald, stop it! now, let go of him donald. donald! donald: i'm going to kill him. george: you're choking me. mrs. sanger: donald, ... donald... donald: moors. say moors! george: moops, moops mrs. sanger: donald, no. ... donald, stop it .. jerry: what are you doing? you're choking me. elaine! waitress: are you going to pay for that? jerry: no, i want the picture back. man #1: something's happened to the bubble boy. they're rushing him to the hospital. waitress: what? (releases jerry) jerry: the bubble boy? he lives around here? man #1: that's his house right down the road. man #2: he got in a fight with some guy. guy1: what kind of person would hurt the bubble boy? man #2: some little bald guy from the city. man #1: come on -- vern, page, preston, don't you think we ought to do somethin'? kramer: naomi, come on let's get goin'. naomi: but that lake must be freezing. kramer: nah, it's good for ya'. retards the aging process. naomi: ready to go swimming? kramer: let's go.... ok. (he snaps the towel at naomi's backside) gotcha. naomi: ahaaaaaaha kramer: heyawaaa george: jerry! what happened to you? jerry: what happened to you? you were going like a hundred miles an hour. george: oh i was not. the bubble boy was tried to kill me. elaine: what? george: yeah, susan tell him. susan: it's a long story. george: yeah. donald: hey seinfeld! jerry: hey, happy birthday. elaine: hi. donald: thanks for showing up. you know your friend here tried to kill me. george: oh, you lying little snot. and he's a cheater. aren't ya' you little twerp? donald: moors george: moops donald: moors george: moops donald: moors george: moops man #1: there's the guy who tried to kill the bubble boy. get him! george: go, go, get out, ... jerry: fire engines? george: what? must be a big one. elaine: do you smell something? jerry: yeah, susan: smoke. george: yeah, (cough) definite smoke. elaine: arghhh, look it's a fire! (cough) jerry: holy cow! look at that! susan: it's my father's cabin! elaine: the cabin is on fire! george: (apprehensively) um. i just realized. ya' never gave me back the change from the tolls. elaine: how could this have happened? kramer: (singing) ... it's a big, wild, funky mountain man ... naomi: oh, my god, the cabin? jerry: what are you two doin' here? naomi: look at that. jerry: you didn't ... (makes motion like he's lighting a cigar) kramer: my cubans! (runs off to the burning cabin) ** pies - just in case you did not know what these two kinds of pies are: nan boysenberry: the edible fruit obtained by crossing the blackberry, raspberry, and loganberry. [ after rudolph boysen, 20th century u.s. horticulturist ] huckleberry: the edible black or dark blue berry of any of various north american shrubs. 2. a shrub yielding this berry. [setting: jerry's apartment] jerry: she hasn't told her father yet? george: no. we're supposed to tell him tonight. jerry: "we're"? what do you mean, "we're"? george: susan wants me to be there. jerry: you're meetin' the father for the first time? george: (reluctantly) yeah. jerry: (chuckles slightly) well, you'll make quite an impression on him when you tell him how you burned his cabin down. george: i didn't burn it down - kramer did! jerry: (laughs) i mean, the whole thing is ironic. think of it here the guy is nice enough to give you a box of very fine cuban cigars.. george: yeah, i know what happened. jerry: no, but wait, wait and then you dump them off onto kramer.. george: (getting frustrated) i know. jerry: (continuing) ..who, who proceeds to burn the man's cabin down with one of those very same cigars! (topping off his observation) it's very comical.. george: listen, maybe we shouldn't start writing today. i got a lot on my mind. jerry: (persisting) no, no, we put this off long enough. today's the day. george: (letting his conscious get the best of him) i wonder how susan's father's going to react to this. alright, what- what's the worst he could do? so you burn a cabin down.. jerry: (agreeing) c'mon. it's not even a house - it's, like, a cabin. george: we could build a cabin like (snaps) that. jerry: (blunt) well, maybe not us, but two men could. george: (looking over the writing materials they just bought) bics? what, d'ja get, bics? jerry: what, you got a problem with the pen now? george: well, i like a rolling writer. they're very smooth. jerry: alright, let's just get to work. (they both move into the living room - ready to start writing their script. jerry sits down) nbc pilot, seinfeld project. act i, scene a. george: (still standing) so, you're gonna sit there? jerry: (wanting to get started) just - just park yourself. (george reluctantly sits on the sofa) alright. act i, scene a. george: (offering) drink? jerry: no, no thank you. george: (uncapping his pen) alright, here we go. jerry: act i, scene a.. george: weren't you supposed to call elaine? jerry: (eagerly reaching for the phone) yes. (george turns the tv on, and begins watching as jerry dials the number) hi, is elaine there? oh, uh, hi, sandra. uh, yeah. i can hold. (to george) every time i call i gotta chit-chat with her assistant for, like, twenty minutes. (back into the phone) oh, hi, sandra. listen, i'm at a pay phone, and there's lots of people here waiting to use it. (yelling out for believability) i'll be off in a minute! (to sandra) yeah, could you just put me through to elaine? okay, thanks! (he turns to george) are you thinking of ideas? (george, picking his teeth with his finger, is absorbed into the television. he seems to not even notice jerry) listen, elaine, is there any way i could get through to you directly? every time i call sandra bends my ear for, like, twenty minutes. (pause) so we're on for later? elaine: yeah, i'll come by after work. hey, i got a rubber pencil thing happenin' here.. (sandra passes her doorway) uh, i gotta go. i gotta go. (hangs up) sandra! sandra? hi, can you come here for a second? jerry: okay, let's go. (george shuts the television off, ready to work) george: alright, here we go. you got it? jerry: yeah. george: here we go. jerry: okay, how about this i'm in my apartment, you come in. george: (holding out his arms - giving praise) it's beautiful. now, what do i say? elaine: could you do me a favor? um, when my friends call, could you not talk to them for too long? sandra: why? did jerry say something? elaine: no, no. sandra: he must have said something. elaine: oh, no, he didn't say anything. sandra: (near tears) i can't work for you! i can't. i'm leaving. (exits quickly) elaine: (calling out to sandra) no, sandra. i'm sorry, i'm sorry! i really am! listen, listen, jerry's under a lot of pressure right now. it's very hard being a stand-up comedian! sometimes they don't laugh! george: alright, let's go. jerry: here we go. kramer: hey. george: yeah, kramer, we're, uh, kind of in the middle of something here. we're trying to do a little work.. jerry: yeah, come on. (kramer gives out a frustrated sigh) what's with you? kramer: (complaining) no more golf. jerry: why? kramer: well, you remember i told you about the pro, you know, at the westchester country club, who's letting me play a round every time i give him a couple of those cuban cigars? jerry: yeah. kramer: (angered) yeah, well, i lost them all in the fire! (leaning over the couch, he addresses george) hey, george, maybe you can ask susan's father for more, huh? george: what are you, crazy? i can't ask the guy for more cigars after you burned down his cabin! kramer: why? what's one thing got to do with another? george: kramer, please. kramer: well, i can't go back to the public courses, now. i can't! i won't. i mean, you know what that's like? it's crowded, the grass has big brown patches in it, they don't rake the sand traps! not to mention the caliber of people you have to play with! george: kramer, i can't help you. you're gonna have to get them some place else. kramer: (opening the door) where? they're cubans. (leaves) george: (getting up) you know what? maybe i should take off. jerry: what?! george: well, you know, i gotta go to, uh, susan's parent's house for dinner.. and, you know, i want to shower first.. and i want to leave myself plenty of time. jerry: (looking at his watch) you got four hours! what about the script? george: i think we got a bite on it. (exits) [setting: the ross' house] mrs. ross: (to mr. ross) doesn't george look like your sister, sarah? mr. ross: (gruff) a slight resemblance. mrs. ross: (to george) her son's a podiatrist, you know. george: ohh, i have tremendous respect for people who work with feet. i mean, to dedicate yourself to the foot - you're toiling in virtual anonymity. i mean.. mr. ross: how are you enjoying those cigars i gave you? george: oh, uh, the cigars.. (chuckles nervously) i'm, uh, suckin' 'em down. i'm puffing my brains out, yeah. mr. ross: you know those cigars are made special for castro? george: (impersonating carson) i didn't not know that. weird. wild. (susan and george both laugh) mr. ross: what? susan: (explaining) he's doing johnny carson, daddy. mr. ross: i didn't care much for his jokes. susan: (to george) daddy never laughs. george: oh, well, so what? laughter - what is that? i mean, what is the point of opening your mouth and going "ha, ha!"? what is that? "ha, ha!"? mr. ross: you know, you can't get those cigars anywhere. mrs. ross: you and your cigars.. mr. ross: (shooting back at his wife) wear some more lipstick. susan: daddy, there's, um, there's something that we have to talk to you about.. mr. ross: oh, i forgot to ask you - how'd you like the cabin? george: (even more nervous than before) oh, the, uh, the cabin.. well, (clears throat) [setting: jerry's apartment] jerry: right after we get off the phone, then you go and tell her that?! well, of course she knows it was me who complained! now i'm responsible for this woman's quitting. oh, this is unbelievable! elaine: (full of guilt) i know! i screwed up. it's all my fault. would you call her? jerry: (caving in) ohh.. dial the number. (elaine picks up the phone, and starts to dial) how could you do this? elaine: (handing the phone over to him) i was just trying to help you. jerry: (muttering) oh, just trying to (rudely grabs the phone from her) help me.. (into the phone) hello? sandra? hi, uh, this is jerry seinfeld. (elaine now has her hand in a bowl of popcorn - grabbing a fistful) listen, i - i just want to tell you, (jerry sternly grabs elaine's hand - forcing her to drop the popcorn, then shoves her hand away. elaine sits back like a scolded child) there's been a terrible misunderstanding see, i told elaine that, uh, it was a real treat talking to you on the phone, and she thought i was being sarcastic, you know, 'cause i'm a comedian and all. she thought i meant (deeply sarcastic) "yeah, it was a real treat talking to her on the phone." (back to normal) you know, but i was really being sincere.. no, of course i like you.. tonight? ..um, uh, hold on a second. (to elaine, whispering) now she wants to have a drink with me. (elaine mouths out "just go" while making gestures. jerry, again, gives in. back on the phone) yeah, i think i can.. um.. yeah, i know where that is.. ok.. uh, i'll see you there. okay, bye. (hangs up, peeved) now i gotta have a drink with her. [setting: the ross' house] george: the cabin.. (laughs nervously) well.. (pauses as he thinks of a way to break the news, then decides to pass it off) susan? susan: uhh.. about the cabin.. mr. ross: (cutting her off) i love that place. my father built that cabin in 1947. my mother was recuperating from impetigo at the time, and dad thought it would be a good idea to get her out into the fresh air. she died there the following winter. and he passed away 10 years later to the day. his last words to me were, (mrs. ross, bored out of her mind, has obviously heard this story a million times - she mouths the words as mr. ross says them) "cherish the cabin." not, uh, "take care of your sister." (adding) she's a paraplegic. but, "cherish the cabin." (smiling, reflecting) and i have.. for 45 years. it's often been a.. sanctuary for me. george: (annoyingly butting in) kinda like superman's fortress of solitude. mr. ross: what? george: s, uh, superman - he, uh, built the fortress of solitude up at the north pole, to, uh, you know, sort of get away from it all.. mr. ross: when i go, i'm passing it on to her. (pointing at susan) mrs. ross: (drunk, she laughs out loud) i'll take a hotel any day. susan: daddy.. mr. ross: yes? susan: daddy, about the cabin.. mrs. ross: (laughing, she points to her shirt) look, henry, i spilled wine on me! (laughs again) mr. ross: (to susan) what about it? susan: well, the thing is.. mr. ross: what? what is it? susan: well, the - the cabin, is, kind of, uh.. george? george: (extremely blunt) burned. mr. ross: burned? susan: there was a fire, and it uh.. george: burned. mr. ross: (still trying to comprehend what has happened) the cabin burned? george: (laughs) yeah, burned. whoo.. mrs. ross: (laughing out loud) burned! (george laughs with her) mr. ross: was anything found? was it all burned to the ground?! did they find anything? susan: (solemn) no. nothing. mrs. ross: (laughing, she's obviously getting a kick out of her husband's misfortune) nothing! ha, ha, ha. george: eh, but, you know, mr. ross, if - if you look at the whole situating, what with it being your cigars, and everything, it's really rather ironic - one might even say, in a sense, comical.. (mr. ross has, by now, left the room. mrs. ross is pointing at george, nodding, laughing. as if to say he hit the bullseye. george calls out to mr. ross) really. think about it. [setting: jerry's apartment] sandra: (offended) i can't believe you said that! jerry: what?! sandra: (buttoning her jacket) how could you say something like that to me?! jerry: what? what?! you were the one who was talking dirty. i was just trying to keep up! sandra: that was a weird thing to say. jerry: why? it didn't mean anything. i was just trying to join in so you wouldn't feel embarrassed. sandra: ohh, i think you're really sick. jerry: (getting slightly offended) i'm not sick. (pointing at her) you - you said much sicker things than me. sandra: i'm leaving. (moves toward the door. jerry blocks her path) jerry: i really think you're making too much of this. sandra: (attempting to get past him) excuse me. (they both move to the door) jerry: let me walk you to a cab. sandra: (opens the door) that's ok. jerry: i mean, the main thing is that this is just between us, and that'll be the end of it. sandra: oh, really? (quickly walks out) jerry: (calling after her) i mean, people - they're not interested in things like this. they don't want to hear about it. they really don't. [setting: the coffee shop] jerry: so, we're.. uhh, drinkin' and talkin', and uhh, so, she starts rubbing my leg. george: wo-hoah! what did you do? jerry: (sarcastic) have you ever told a woman to stop touching your leg? george: yeah, right. jerry: i mean, i know it's the wrong thing to do. she works in elaine's office. i know it's wrong - but i can't get that hand off my leg. i mean, i'm looking at the hand, and i'm thinking, "that hand should not be on my leg." but i can't make my brain to get my mouth to say the words, "would you mind?!" george: yeah, woman have no problem getting the hand off. how do they do that? jerry: i don't know, they're working on a whole other level.. george: alright, so, go ahead. jerry: so we go back to my apartment.. george: (expressing shock) woah. whoa! woah! jerry: so, we're, uh, foolin' around there.. you know, it's getting a little passionate.. (scoots closer to george, to prevent others from hearing) and, uh, she starts with the dirty talking. george: (putting his hands up) alright, alright, hold on! (jerry has george's full attention) time out! woah, woah! (scooting in, giddy) what did she say? jerry: (modest) oh, you know, the usual.. george: no, i don't know. how do i know the usual? jerry: typical things. george: (picking up the ketchup) what typical? gimme typical. gimme some typical. jerry: she says, uh.. (mumbles something inaudible. george, so shocked by what he's just heard, accidentally squeezes the ketchup bottle - ketchup squirts out and files off-screen. george reacts deeply) george: (breathing deeply) that's very dirty. (jerry nods) that's absolutely filthy. jerry: ..and then she starts talking about her panties. george: (yelling out to a waitress) gonna need some water here! jerry: so i said something. george: ok, what did you say? jerry: (defensively) now, bear in mind, i am just trying to keep up. george: of course. jerry: okay? so, she's taking about her panties, so, uh.. so, i said, "you mean the panties your mother laid out for you?" george: (takes a few seconds to mull this one over. shooting jerry a confused look, he repeats it) "the panties your mother laid out for you"? (jerry nods) what does that mean? jerry: (throwing up his hands) i don't know! it just popped out. george: well, how did she react? jerry: she flipped out! just left. george: well, that's not offensive. (reflects) it's abnormal, but it's not offensive. jerry: look, the main thing is i don't want elaine to know about any of this. i mean, especially the panty remark. i mean, it's embarrassing. and she's never let me hear the end of it. jerry: she will tell her. she's going back to work. i talked her into it - how stupid was that? (changing subject as they both collect money to pay for the check) hey, so, susan's father took that news pretty hard, huh? george: yeah, yeah. he went into the bedroom and started sobbing. jerry: i guess he failed to see the humor in it. george: huh. (makes a "over his head" gesture with his arm) c'mon, let's go, go. we got a lot of work to do today. jerry: (getting up) alright, big work day. george: that's right. [setting: jerry's apartment] george: okay. jerry: let's go. george: here we are. jerry: right now. george: let's do it. jerry: you and me. george: okay. jerry: alright. george: what'dya got? jerry: (reading from his notebook) i got you enter, you go "hi", and i go, "hello." now.. we need something here.. kramer: oh, hey. george: don't be silly. jerry: come in, we're taking a break. kramer: (moving back into the room) oh, yeah? jerry: yeah! kramer: uh, george, did you talk to that guy about getting me some more cigars? george: (scoffs) no, i told you, i'm not gonna do that. kramer: (concluding) okay.. well, i guess i'm just going to have to take matters into my own hands, huh? (pause) alright, i'll see you guys. (leaves, despite "no, don't go!" and other various comments by jerry and george) [setting: united nations' permanent mission of cuba building] kramer: buenos dias. secretary: buenos dias. kramer: uh, habla ingles? secretary: si. kramer: giddy-up. ok, uh, (looks at a woman wearing dark sunglasses and sitting on a sofa behind him. he reacts oddly) um. i need to talk to someone. secretary: what is this about? kramer: uh, well, it's a very private matter, but it's extremely urgent. secretary: are you an american? kramer: oh, yeah. secretary: i see.. excuse me. (picks up the phone) kramer: okay. [setting: jerry's apartment] jerry: (stirring, he gets up to answer the buzzer) alright, let's get going. c'mon, c'mon now. (approaches the intercom) c'mon, let's get it together.. (through intercom) yeah? elaine: it's elaine. jerry: c'mon up. (slightly opens the door for elaine) george: (standing up, still waking up) alright, you know what we should do? we should go to the movies. get away from this script for a while.. jerry: (agreeing) yeah, we should. george: alright, i just have to go over to the ross' apartment and drop off susan's sunglasses. you'll come with me? jerry: yeah. wha - what, does she live with them? george: no, no, no, no. jerry: oh. elaine: hey, nice going, jerome seinfeld! jerry: what? elaine: i just got a message from sandra, she's coming back to work. jerry: well, then, you've just got to fire her! don't even think about it - there's no two ways about it. elaine: why? what happened? did you talk? jerry: talk? did i talk? it - you're darn right i talk to her! we talked up a storm - and i concluded from the basis of these talks that this isn't anybody you should be talking to. elaine: really? jerry: yes. elaine: really? you really think i should fire her? jerry: oh yeah. yeah, in fact, if george and i weren't so busy here working on the script, i'd do it myself. [setting: united nations' permanent mission of cuba building] man: (to secretary) expira te afuera. kramer: (standing up, greeting the men) buenos dias. man: what is your name, senor? kramer: uh, kramer. man: so, senor kramer, what is this about? kramer: (leaning in, confidentially) cigars. man: (confused) cigars? kramer: (definite) cigars. man: what about cigars? kramer: uh, see here, i.. (pulls out a paper ring from his pocket) i saved one of the cigar rings.. man: ohh.. (laughs, pulling a cigar from his inner coat pocket) you mean - one of these.. kramer: (pointing at the cigar, incredibly nervous) yeah, yeah. that- that's, uh, okay, so, uh, i'd like to buy a couple of boxes of those from you, yeah? man: (deeply sniffs the cigar's aroma) you do realize, of course, these are illegal in your country. kramer: um, wha - oh, illegal, huh? man: i like that jacket.. [setting: the ross' apartment] susan: hi! george: hi, how are ya? (they kiss) susan: hey, jerry. jerry: hi. susan: i thought you two guys were working today. jerry: ah, just - takin' a little break. george: (chuckling) yeah. uh, oh, here's your sunglasses. (hands them to her) susan: ok, thanks. come on in for a second. (they move into the living room. susan gestures to a man sitting on the couch reading the paper) this is my brother, ricky. he's home from college for the weekend. george: ohh, hey there, young fella. (they shake hands) what's your major? ricky: (blunt) i don't have one. george: well, you should always consider podiatry. (patting ricky on the shoulder) there's nothing wrong with the feet. (ricky looks critically back at george) susan: (now gestures to an old woman in a wheelchair) and this is my aunt, sara. sara: (staring at george) he doesn't look like me. mrs. ross: sara, what do you have on your wheels? sara: nothing, they're clean. mrs. ross: ricky, did you wipe her wheels off? ricky: (annoyed) yes. mrs. ross: (concluding) well, they're filthy. it's just a matter of common courtesy.. (wheels sara over to a spot off the rug) when you come in the house you wipe your wheels. susan: excuse me. (answer the door. it's her doorman, raymond, carrying a burnt box) hello, raymond. raymond: ah, yes, the man from the insurance company dropped this off this morning. he said it was the only thing left from the remains of the fire. susan: (accepts the box) oh, thank you. (as the doorman leaves, she turns to jerry and george) wow, i've never seen this before.. (opens the charred box) oh, they're letters. (hands the box to george) here. george: oh, sure. (holds the box out as susan takes out a few letters) susan: from.. (trying to read one) from john cheever. jerry and george: oh, wow. susan: (chuckles as she opens up one of the letters. she reads it) "dear henry, last night with you was bliss. i fear my.. orgasm (she now has everyone's attention) has left me a cripple. i don't how how i shall ever get back to work.. (jerry and george make odd faces as susan is still concentrating on the notes) i love you madly, john. (pause) p.s. loved the cabin." (george nods, and jerry gives a "oh, of course" reaction) george: well, we.. we, we, ah.. jerry: (looking at his watch ) yeah.. george: we really should be, uh, heading out.. jerry: yeah. (tapping his watch) look at the time. george: you know, the time.. mr. ross: the box! (rushes toward george, grabbing the box away from him, then the letters from susan's hands) my letters! gimme that! (now holding them against his chest, defensively) who told you to open this?! mrs. ross: (hysterical) who's john?! who's john?! sara: (yelling out) i knew it! mrs. ross: i want to know who john is! rickey: john cheever?! dad, you and john cheever?! mr. ross: (proclaiming) yes! yes, he was the most wonderful person i've ever known. and i love him deeply! in a way you could never understand.. (slowly walks back to his room, leaving everyone speechless. susan seems to be affected the most. a long pause passes. jerry gives george a signal that they should go) george: well, we really should be- jerry: yeah. george: uh, heading out. jerry really hates to miss the coming attractions. jerry: yeah, and, (pointing to his watch) because of the.. (slowly exiting) time. george: yeah, time is what he's indicating there.. jerry: (waving good bye) we'll see ya. george: uh, anyway, (waving bye to everyone) onward and upward. [setting: jerry's apartment] george: alright, here we go. jerry: alright, let's go. george: come on now. jerry: right now. george: here we go. jerry: you and me. george: you got it. jerry: no foolin' george: ok, so, what'dya got? jerry: (looking at his notebook) alright, i got, uh, you come in, you say "hi", and i say "hello". george: alright, so, we need something.. jerry: yeah.. how about this i say "how's it goin'?" george: "how's it going?" - beautiful. jerry: (getting up to answer the door) alright, did you get that line? george: (nodding, writing) "how's it going?" jerry: did you write it down? george: i'm writin' it. "how's it going?" jerry: okay.. (opens the door to a frantic elaine) elaine: real good! jerry: what?! elaine: do you know how much money you cost me today?! 429 dollars! jerry: what?! how? elaine: i got sandra transferred to another office upstairs, okay?! so, she blabs to lippman about my long distance calls to europe! jerry: what calls?! elaine: uh! i made a friend when i was in europe, okay?! and we've been in touch, and sandra told lippman! jerry: oh, did - did she say anything else to you? elaine: (confused) "anything else"? what do you mean "anything else"? jerry: so she just left the office - didn't say a word to you about anything? elaine: yeah! jerry: (smiling to himself) beautiful. elaine: why is that beautiful? jerry: oh, no, not beautiful. elaine: it's four hundred and twenty nine dollars! jerry: hey, look, i'm going to pay for that. elaine: no, no. jerry: (taking out his checkbook) no, i insist. i was the one who encouraged you to fire her - the whole thing was all my- elaine: (giving up too easy) okay. jerry: (pauses, noting elaine's quick accept) fault. (starts to write a check out, then stops, looking at the door) do you smell smoke? kramer: oh, hey! hey, jer, i want you to meet my new friends, here. (introducing each one) this is, uh, louis, jorge, and umberto. jerry: oh, how you doing? nice to meet you. kramer: yeah, we're heading up to westchester - gonna hit the links. jerry: oh. (notices louis' jacket) isn't that, uh, your.. kramer: (trying to avoid the issue) oh, yeah, yeah, okay, we're going. (to his three friends) vamanos, muchachos! elaine: (turns to george, he is now reading a book) hey, what are you reading? george: oh, uh, "the falconer" by john cheever. it's really excellent. elaine: (to jerry) john cheever, you ever read any of his stuff? jerry: uh, yeah, i'm familiar with some of his writing. (george shoots jerry a smirk, then returns to his book) alright, (hand the check to elaine) look, we gotta get back to work. we just had a big breakthrough here. elaine: (folding up the check) ok, i'll leave you two alone. jerry: (moving back into the living room) okay. elaine: (in the door way) maybe i'll go visit my mother. she just bought me some new panties (jerry pauses right before sitting in his chair) and they're - all laid out for me. (leaves, smiling to herself. jerry and george both look at each other, frozen in their places) jerry: (answering machine) leave a message and i?ll call you back, thanks. joe divola jerry, joe divola. *pbt* *pbt* *pbt* i have a hair on my tongue, i can't get it off, you know how much i hate that? course you do, you put it there. i know what you said about me seinfeld. i know you badmouthed me to the execs at nbc, put the kibosh on my deal. now i?m gonna put the kibosh on you. you know i?ve kiboshed before, and i will kibosh again. kramer: so, what do you think? jerry: about what? kramer: about the opera. jerry: nah, i don't wanna go. kramer: you gotta go. jerry: i-i-i don't like the opera. what are they singing for? who sings? you got something to say, say it! kramer: jerry, you don't understand, that?s the way they talk in italy, they sing to one another. kramer starts to sing in bad italian. jerry: all right, all right. kramer: that?s the way it was, you know. you listen to the language, its got that sing songy quality. it?s the language jerry, the language jerry: so why don't they talk like that now? kramer: well its, uh, well its too hard to keep up, you know, they were tired. kramer: better get that jerry: yeah? elaine: (intercom) it?s me! jerry: come on up. kramer: so, huh? jerry: i don't know kramer: oh come on jerry, its opening night, black tie, pagliacci! the great clown, the great sad tragic clown, like you. jerry: well it?s very flattering. how did you get these tickets, i heard they're impossible to get. kramer: oh, well i have many associates. jerry: i don't know, opera, it?s not my kind of thing. kramer: all right, you not gonna go i?m not gonna go, i?m gonna call the whole thing off. jerry: no, wait a minute, wait a minute, that?s not fair, what about george, susan and elaine, what do you need me for? kramer: you're the nucleus, the straw that stirs the drink. you're the miana! jerry: well i guess if i?m the miana i should go. all right, all right. elaine: hi! jerry: hi! kramer: hey! hi elaine! elaine: you got the tickets right? kramer: well no, i don't have them on me. elaine: what? that?s why i came all the way over here. kramer: my friends got 'em, i?m going to pick them up tomorrow. elaine: oh, i was gonna surprise joey with them, you got an extra one right? kramer: oh yeah! jerry: so i finally get to meet your pal joey. elaine: its killing you isn?t it? jerry: yeah, so joey?s a great lover of the opera elaine: listen, i got news for ya, its nice to be involved with somebody who?s interested in something other than nick at night. now he?s got a grip on reality, he's happy, he's well adjusted. jerry: well i?m looking forward to meeting him. elaine: i've got to go jerry: where are you going, what?s the rush? elaine: i'm going to surprise joey, i?ve never been to his apartment so i?m just going to 'pop in' jerry: oh, good, men love that! jerry: hey! kramer: you've got a message buddy. jerry: ooo, could be from that blonde kramer: oo yiggity diggigg joe divola: (answering machine message)'jerry, joe divola. i have a hair on my tongue' jerry: (shouting) kramer what am i going to do did you hear that that guy's gonna put a kibosh on me he's crazy he's out of his mind.... kramer: steady, steady, now calm yourself, come on, now get a hold of yourself, jerry: what the hell he's supposed to be on medication i don't understand he told me he's getting medication what happened to his medication!? kramer: ok quiet! quiet! now let me think! jerry: i'm gonna call the cops. that?s what i?m doing, i?m calling the cops. kramer: the cops? what are you calling the cops for? they?re not going to do anything! jerry: what do you mean they're not going to do anything, they're the cops, they gotta do something, he just put the kibosh on me, do you know what the kibosh means, its a kibosh! kramer: yiddigtkk ka kibosh. jerry: i mean it's a terrible mistake, i mean he thinks i ruined some deal of his at nbc, i don't know anything about any deal at nbc. kramer: call him and tell him jerry: that?s what i?ll do, i?ll just call him and tell him, i?ll tell him. that?s all i?ll do. he's a human being, i?ll talk to him. he'll understand. right? kramer: right.... don't mention my name jerry: oh, i got the machine. kramer: what?s his message like? jerry: nice! kramer: eh! jerry: (into phone) hello joe, listen this is jerry seinfeld, i really think there?s been a huge colossal misunderstanding, kramer: big! big! jerry: and i feel if we can just talk about this we can straighten the whole thing out, so listen, so call me back. bye. elaine: joey? joey? elaine: oh god, oh, its you! you scared me! joe divola: good. fear is our most primal emotion. elaine: you left your door open. joe divola: i know, i like to encourage intruders. elaine: (laughs) what?s all this? joe divola: do you like it? my home is a shrine to you. elaine: where did you get all these pictures? joe divola: i took them myself with a telephoto lens. coming out of your office, your apartment, shopping, showering. elaine: showering? joe divola: i developed them myself in my dark room. would you like to see? elaine: in the dark room? uh no, no thank you. not right now. i'm a day person!... are you all right? joe divola: why elaine: well i don't know, you just don't seem yourself? joe divola: who am i? who am i supposed to be? elaine: that?s a good question, good question, its very... exerstential! who are you? who am i? yeah, well. joe divola: what are you doing here? elaine: oh, nothing, i just stopped by to chat, you know, shoot the breeze. joe divola: were you able to get those opera tickets to pagliacci from that friend of yours? i'm really looking forward to it. elaine: oh, no, he couldn't get them. we're not going. joe divola: really? elaine: oh, dammit, you know i just remembered i gotta go, i left something on, the gas, the lights, the water in the tub. something is on somewhere so i?m just gonna get the uh.. joe divola: you know the story of pagliacci, nedda? elaine: uh.. i?m elaine! joe divola: he's a clown whose wife is unfaithful to him. elaine: oh. joe divola: do you think i?m a clown, nedda? elaine: do i think you're a clown? no, not if it?s bad to be a clown, if it?s bad to be a clown then you are definitely not a clown. but if its good to be a clown then, you know, i would have to rethink the whole thing. joe divola: you've betrayed me with another, haven't you, nedda? who is he. i want you to tell me who he is. i want his name. tell me his name. elaine: oh, like any man would ever look at me, come on, i?m gonna... get out of here. joe divola: pagliacci kills his wife. elaine: se, now that?s terrible, that is not a nice thing to do at all, i don?t know how this paliachi thing turns out but you know i would assume that there is big big trouble for that clown joe divola: you're not leaving jerry: (on phone) but officer, he threatened me! i don't understand, that?s not right! what if it was the president of the united states i bet you'd investigate. so what?s the difference, i?m a comedian of the united states, and i?ll tell you i?m under just as much pressure. alright, thanks anyway, ok bye. jerry: (cautiously) who is it? george: it's george. george: what, are you locking the door now? jerry: well, well, look at you. it?s a little skimpy there isn't it? george: do you know the last time i wore this thing? six years ago, when i made that toast at bobby leighton's wedding. jerry: ooo, that was a bad toast. george: it wasn't that bad. jerry: i never heard anybody curse in a toast. george: i was trying to loosen 'em up a little bit. jerry: there were old people there, all the relatives. you were like a red fox record. i mean, at the end of the toast nobody even drank. they were just standing there, they were just frozen! that might have been one of the worst all time toasts. george: alright, still her father didn't have to throw me out like that, he could have just asked me to leave. the guy had me in a headlock! susan's not going tonight you know. jerry: what do you mean not going? why not? george: i don't know, she said she had to pick up a friend of hers at the airport. it cost me a hundred dollars this ticket. jerry: why doesn't she pay for hers? george: that's a very good question. you know she and i go out for dinner, she doesn't even reach for the check. that?s all i?m asking for is a reach. is that so much to ask for? jerry: it's nice to get a reach. jerry: who is it? kramer: it's me! kramer: what, are you locking the door now? jerry: because of divola! get in here... how come you're not dressed? kramer: i am dressed. jerry: you're going like this? kramer: yeah. hey i want you to hear something. jerry: i thought you said people dress up when they go to the opera! kramer: people do, i don't. jerry: well what about me! if you're going like that, i?m not going like this. george: wait a minute, wait a minute, do you think i?m comfortable here. i can't change, i?ve got no clothes here! you've got to go like that, i can?t go like this alone! jerry: why should i be uncomfortable just because my apartment is closer to town hall than yours? george: that?s not the issue, we're friends, if i?ve got to be uncomfortable, you've got to be uncomfortable too! jerry: all right, all right, i?ll wear this. it's bad enough i?ve got to go to the opera i?ve got to sit next to ozzie nelson over here. jerry: would you turn that down! what is that crap! kramer: it's pagliacci! jerry: oh beautiful. listen, we've got a little problem here, we've got two extra tickets. kramer: why? what happened? jerry: well susan isn't going and elaine just left me a message her friend isn't going either. kramer: that?s fantastic! we'll scalp the tickets, we'll make maybe five hundred a ticket. george: what? really? kramer: yeah. george: people are looking for tickets here? kramer: what, are you kidding? opening night pavarotti and pagliacci. ha, we're gonna clean up! george: oh man! i knew i was gonna love the opera. jerry: oh yeah right. kramer: ok come on, let?s go get the tickets. george: all right, all right. jerry: all right, you guys listen, i've got to wait here for elaine, i'll meet you in front of the theatre. george: oh, wait, isn't scalping illegal? kramer: oh yeah! jerry: you sprayed him in the eyes with binaca? elaine: cherry binaca, it?s new. jerry: see, i don't get that. first they come out with the regular, then a year later they come out with the cherry. they know that we like the cherry, start with cherry! then come out with the regular! elaine: it's like i didn't even know him. he's like a totally different person. jerry: well you should hear the message from my nut. where's george and kramer, i want to get inside already, i don't like standing out here, i feel very vulnerable. jerry: hey, hey, what are you doing, that?s my quarter. man#1: no it's not, it's mine. jerry: i was just flipping it, it's mine. man#1: no, i dropped it, it's mine. jerry: all right, do you want the quarter, take the quarter, but don't try and tell me it's yours. man#1: well it is mine. jerry: what, do you think i care about the money? is that what you think? you want me to show you what i care about money? here look, here look at this, here's a dollar here look, there, that?s how much i care about money. man#1: you think i care about money, that?s how much i care about money, i don't care about money. jerry: oh yeah, well why don?t you just get lost. man#1: why don't you get lost. jerry: because i was standing here, that?s why. man#1: oh yeah? jerry: yeah! jerry: i kinda like this opera crowd, i feel tough... anybody else got a problem? park guy#1: hey clown! park guy#2: hey clown! park guy#1: make us laugh, clown! park guy#2: nice face, clown! park guy#2: make me laugh, clown! kramer: i got two, i got two huh, paliachi, who needs two, pagliacci, come on, the great tragic clown, come on, check it out, he laughs, he cries, he sings, pagliacci. hey, i got two beauties right here, check it out all right. man#2: hey, hey. are you selling. kramer: oh yeah, i?m selling. man#2: where are they? kramer: orchestra, row g, dead center, primo! you'll think you died and went to heaven. man#2: what do you want for them. kramer: all right, i?ll tell you what i?ll do. cause you look like a nice guy, a thousand dollars for the duce. man#2: i'll give you five hundred for the pair. george: ok, it's a deal! kramer: pzzzt. no. george: no? are you crazy? kramer: look, let me handle this. george: five hundred dollars, that?s a great deal! kramer: you're blowing this, the guys a pigeon. george: did you see that? the guy's walking away. what is wrong with you? that was a three hundred dollar profit. kramer: look, i know what i?m doing here george. george: this is not a metallica concert, it?s an opera alright, a little dignity, a little class, just give me my ticket, i will stand over here and sell it. kramer: oh, yeah. george: thank you very much. you just stand over there, i?ll stand over here. kramer: i know where i?m standing. george: alright. kramer: hey! george: (shouting) get your paliachi! jerry: where are they already? elaine: i guarantee they don't sell either one of those tickets. jerry: hey, look, there's bobby eighteen?s father-in-law, mr reichman. george and i were just talking about that today, i can?t believe it! that?s the guy who threw george out of the wedding. elaine: oh, yeah, when george made that bad toast! jerry: do you remember the curse toast? elaine: oh yeah, the curse toast. jerry: so, can you believe that message? now i?ve got to spend the rest of my life looking over my shoulder. elaine: me too jerry: crazy joe divola elaine: how do you know his name? jerry: what do you mean? why wouldn't i know his name? elaine: i never told you his name. jerry: i never told you his name. elaine: wait a second, who are we talking about here? jerry: joe divola. elaine: right, joe divola jerry: how do you know his name? elaine: i've been out with him three times, i should know the mans name. jerry: oh my god, its joe divola elaine: is he stalking you? are you kidding me? jerry: that madman is trying to kill me. elaine: oh, jerry, why didn't you tell me his name! oh my god, he accused me of seeing someone else, he said tell me his name, he said tell me his name!! jerry: oh! he said that! can you imagine what he'll do if he sees me with you! he'll think i?m the one who ruined his deal at nbc and took away his girl, he'll put a kibosh on me! elaine: oooohh, what about me! joe divola: excuse me elaine & jerry: aaahhhhh!! george: but this is pavarotti! man#3: three hundred dollars, that?s a lot of money. mr reichman: you know steven holstman (?) did a production at tunis last yeas and from what i understand, the moslems really took to it. george: all right, i?ll tell you what, you seem like a nice guy, let?s stop jerking around. give me.. two hundred and fifty dollars, i?ve got people waiting for me, i've got to get the hell out of here. mr reichman: scalping! i told them to put out extra security.. excuse me. george: hey pop, would you buzz off, i've got something cooking. mr reichman: costanza!? george: mr reichman? mr reichman: you've still got a mouth like a surd give me those tickets. mrs reichman: harold, no, harold, harold be careful of you're hair transplant! joe divola: anything is welcome, i accept change. jerry: i don't have anything, i gave it to that guy. joe divola: you know, you could just say no, you don't have to humiliate me. i may be dressed as a clown but i am a person. jerry: i'm telling you, the guy took..... joe divola: and i don't need people like you looking down their noses at me. i am just a street performer out here trying to make enough to get by. mrs reichman: doctor! doctor! is there a doctor anywhere! joe divola: what, are you showing off to your girlfriend here, is that it? elaine: i'm not his girlfriend. we dated for a while, but things didn't really work out. joe divola: you people make me sick. jerry: that is one angry clown! jerry: the hardest part about being a clown, it seems to me, would be that you're constantly referred to as a clown. "who was that clown?", "i'm not working with that clown, did you hire that clown?", "the guy's a clown!". how do you even start into being a clown, how do you know that you want to be a clown, i guess you get to a point where you're pants look so bad, it's actually easier to become a clown than having the proper alterations done. because if you think about it, a clown, if there isn't a circus around them, is really just a very annoying person. you're in the back seat of this guys volkswagen, "what, you're picking somebody else up? oh man!" jerry: (singing) camera, curtains, lights - this is it, we'll hit the heights - oh what heights we'll hit - on with the show this is it! elaine: you know, it is so sad, all your knowledge of high culture comes from bugs bunny cartoons. jerry: oh there's that clown again, what does he want from me. look i?m serious, i?m not kidding, i don't have the quarter, that guy took it. joe divola: i don't want any money. elaine: i smell cherry. joe divola: it's binaca. jerry: binaca? george: what did we say? two seventy-five? man#3: two fifty. george: two fifty? are you sure man#3: yeah, yeah, i?m sure. george: all right, all right, two fifty. susan: george! george: s-susan susan: i can't believe it, i?m so glad i caught you. george: what are you doing here, i though you were going to the airport. susan: oh, there was some problem with the plane, they landed in philadelphia. george: so what, they don?t have another plane? she couldn't take a bus? susan: she's coming in tomorrow. i made it! george: yeah you made it, how about that. susan: oh, i?m so excited, now we get to see the opera together. george: we get to go to the opera together! susan: who's that? george: that?s-that?s-harry fong, he's a very good friend of mine and he's a big opera buff. enjoy the show there harry!... you know what. jerry: come on, you gotta let us in usher: not without tickets. jerry: we have tickets, we just don't have 'em with us. usher: well that?s a problem. excuse me. jerry: you don't understand, someone's after us, a crazy clown is trying to kill us. usher: a crazy clown is after you? oh that?s rich. now clear the entrance so people with tickets can get through. jerry&elaine: we're with him, we're with him. kramer: are you guys ready? jerry&elaine: yeah, yeah!! kramer: have you seen george? jerry: we thought he was with you. elaine: come on, he's on his own, come on! kramer: these are great seats huh? elaine: yeah kramer: yeah jerry: boy, some cast, huh? pavarotti, aver martone. elaine: aver martone. i've heard of her, who's she playing? jerry: she's playing, pagliacci?s wife, nedda. elaine: nedda? jerry: yeah. elaine: oh my god.. man#3: excuse me, excuse me, excuse me. jerry: susan! what are you doing here? susan: my friend's flight couldn?t make it. jerry: where's george? man#3: i got his ticket. susan: he decided not to come. he said he was uncomfortable. jerry: uncomfortable? how does you think i feel?.. hey let me ask you something, how much did you pay for that ticket? man#3: one seventy-five. jerry: kramer, who'd you sell your ticket to? kramer: some nut in a clown suit! jerry: i had some friends drag me to an opera recently, you know how they've got those little opera glasses, you know, do you really need binoculars, i mean how big do these people have to get before you can spot 'em. these opera kids they're going two-fifty, two-eighty, three-twenty-five, they're wearing big white woolly vests, the women have like the breastplates, the bullet hats with the horn coming out. if you can't pick these people out, forget opera, think about optometry, maybe that?s more you're thing. jerry: we're dead. george: we're not dead. jerry: we are dead. george: come on. we got all day tomorrow to come up with a story. jerry: all day tomorrow? we had a month and a half to come up with something and we didn't do anything. george: so we'll do it tomorrow. jerry: let me ask you something. when's the last time you went skiing? george: about six years ago. jerry: i think you can take the lift ticket off your jacket now. george: women like skiers. jerry: so what? you can't meet anybody. you're going on with susan. george: yeah. right. jerry: hey, see those two women over there? i almost dated the one on the right. she's in the closet business. george: the closet business? what's the closet business? jerry: what is it your business? george: i'm interested. jerry: she reorganizes your closet and shows you how to maximize your closet space. she looked into my closet. george: so you thought she was good looking and figured this would be a good way to meet her. jerry: yeah. george: yeah. so what happened? jerry: so, she mentioned she had a boyfriend and then it hit me. what do i need more closet space for? (across the room) hi, marla. marla: (walks over to jerry and george) jerry. jerry: george, marla. george: marla. marla: george. jerry, stacey. jerry: stacey. stacey: jerry. jerry: george, stacey. george: stacey. stacey: george. jerry: george. george: jerry. marla. (realizing jerry's cue) stacey! (walks over to stacey) marla: so, how was your trip to berlin? jerry: trip to berlin? marla: remember? that's why you put off doing the closets. you said you were going to berlin for a while. jerry: oh, right, right. marla: the wall had just come down, and you told me you wanted to be part of the celebration. jerry: yes, yes, i did. but, you know, i was watching it on cnn, and they covered it so well i thought, "why knock my brains out?" marla: you, know my boyfriend went. jerry: really? marla: yes, i told him all about you going and he got all excited and decided to go. jerry: oh, did he like it? marla: i don't know. he never came back. (over to the other side of the bar) george: anyway, we met with nbc about a month ago and they gave us the green light to go ahead and write a pilot. in fact, we got a big meeting with them tomorrow. they gotta approve of the story before we can write. stacey: wow, what a great job. a writer. george: not a bad way to make a buck. stacey: sounds great. george: well, i'll tell you, stacey. it's a lot of hard work. but, it comes fairly easy to me. some people write symphonies. this is my gift. (raises ski lift ticket while stacey looks away) jerry: so, are you gonna go out with her? george: i might. jerry: what about susan? george: what? i'm not married. i'm not allowed to go out with somebody else? jerry: depends. george: depends on what? jerry: on many factors. george: like what? jerry: well, how long you've been seeing her. what's your phone call frequency? are you on a daily? george: no. semi-daily. four or five times a week. jerry: what about saturday nights? do you have to ask her out, or is a date implied? george: implied. jerry: she got anything in your medicine cabinet? george: there might be some moisturizer. jerry: ah hah. let me ask you this. is there any tampax in your house? george: (pause) yeah. jerry: well, i'll tell you what you've got here. george: what? jerry: you got yourself a girlfriend. george: ah, no, no. are you sure? a girlfriend? jerry: i'm looking at a guy in a semi-daily with tampax in his house and an implied date on saturday night. i would like to help you out, but... george: would you believe my luck? the first time in my life i have a good answer to the question, "what do you do?" and i have a girlfriend. i mean, you don't need a girlfriend when you can answer that question. that's what you say in order to get girlfriends. once you can get a girlfriend, you don't want a girlfriend, you just want more girlfriends. jerry: you're going to make a good father someday. george: well it's not fair, jerry. it's just not fair. all right, all right. that's it. i'm getting out of this thing. jerry: fine. break up with her. but you know what this means? george: no, what? jerry: the script, the pilot, the tv show. that's all over. george: why? what do you mean? jerry: figure it out. she's one of the executives at nbc that's gonna make the decision whether or not they pick up the show. she's one of our biggest fans. you drop her off, you think they're gonna pick us up? george: oh, right. oh no, man. jerry: you know, it's a very interesting situation. here you have a job that can get you girls. but, you also have a relationship. but if you try and get rid of the relationship so you can get the girls, you lose the job. you see the irony? george: yeah, yeah. i see the irony. all right. what about this? what if i can find some way to break up with her so that she'll still like me and it doesn't affect the deal. jerry: (sarcastically) oh, yeah. george: wait, wait. here me out. don't dismiss this. you're very quick to dismiss. don't dismiss. she's got a big crush on david letterman, i mean, a big crush. she talks about him all the time. suppose i go up to david letterman. he works at nbc; i work at nbc. i explain my situation. he agrees to meet her. they go out, they fall madly in love. and she dumps me for david letterman. jerry: this is your plan? george: no, no. i'm just thinking. jerry: i don't think you are. marla: let me tell you what i think. jerry: please, and be brutal. i have no closet sensitivity. marla: are you very fussy about your pants? jerry: i don't think i am. marla: because i have a very radical idea. can you handle it? jerry: try me. marla: here's what i'm proposing. we eliminate all this. the hangers, the bar, the shelves. and in its place install a series of hooks. we'll put everything on hooks. jerry: everything? marla: everything. the shirts, pants, sport jackets, pajamas. we could get eighty hooks on here. jerry: you're quite mad, you know. (kramer enters) oh, i don't believe this. (goes into other room) hey? kramer: hey. jerry: what are you doing? kramer: i'm watching the bold and the beautiful. jerry: no. kramer: what? jerry: this is not a good time. kramer: five minutes. what? jerry: what did you have to give your tv away to george for? kramer: because i've been watching too much. it was an addiction. i couldn't stop. it was, it was destroying my brain cells. jerry: yeah, but now you're in here all the time. (marla enters from other room) kramer: well, wow. jerry: marla, kramer. kramer: hey. jerry: why don't you go out? it's nice out. kramer: oh, no. there's nothing out there for me. jerry: there's weather. kramer: weather? i don't need weather. weather doesn't do it for me. jerry: i'm tellin' george to give you your tv back. kramer: no, no, i don't want it back. (pause) are you gonna watch the knick game tonight? jerry: i don't know. kramer: will you tape it? jerry: kramer... (points to marla) kramer: yeah. (he exits) jerry: so your boyfriend never came back from berlin. marla: never came back. jerry: oh, you must have been devastated being left for a wall. marla: it was about to end anyway. there was this... problem. jerry: ah hah. (buzzer) excuse me one second. yeah? elaine: it's me. jerry: come on up. oh, it's elaine, she's just a friend of mine. i don't know what she's doing here now. (buzzer) i'm sorry. what? elaine: i didn't get it. jerry: ugh. so you were saying there was this problem. marla: well, he wanted me to move in with him. jerry: snapple? marla: no thanks. jerry: go on. marla: well i wouldn't move in because... jerry: yes. marla: well because... jerry: yeah. marla: well because i'm a virgin. (elaine enters) elaine: hello! jerry: hi, um. marla, elaine. elaine: i'm sorry, i didn't know you had company. i just wanted to return your tape. jerry: oh, thanks a lot, two weeks late. now that costs me thirty-five dollars to see havana. elaine: i'm sorry, i really am. i just kept forgetting. marla: i should be going. elaine: no, no, i'm leaving. jerry: i like that thing in your hair there. elaine: oh yeah? this woman was selling them at this crazy party i was at last night. you'll appreciate this. snapple? marla: no thanks. elaine: i was talking to this guy, you know, and i just happened to throw my purse on the sofa. and my diaphragm goes flying out. so i just froze, you know, ahh! staring at my diaphragm. you know, it's just lying there. so then, this woman, the one who sold me this hair thing, she grabbed it before the guy noticed, so. i mean, big deal, right? so i carry around my diaphragm, who doesn't? yeah, like it's a big, big secret that women carry around their diaphragms. you never know when you're gonna need it, right? (sips the snapple) ahh. marla: i should be going. jerry: so we'll talk about the hooks then? marla: yes. (she exits) elaine: what? was it something i said? jerry: she's a virgin, she just told me. elaine: well i didn't know. jerry: well it's not like spotting a toupee. elaine: well you think i should say something? should i say something? should i apologize? was i being anti-virgin? jerry: no, no, i mean... elaine: 'cause i'm not anti-virgin. i'll be right back. (she leaves) jerry: elaine, elaine... (buzzer) yeah? george: it's george. george: she's a virgin? jerry: a virgin. george: wow. so what're you gonna do? jerry: i don't know. i'm very attracted to her. that accent, it's so sexy. george: i don't think i could do it. you know, they always remember the first time. i don't want to be remembered. i wanna be forgotten. jerry: you need a little pioneer spirit. you know, you don't have any of that lewis and clark in you. george: you know, sometimes those guys don't make it back. (looks in fridge) i'm really hungry. jerry: yeah, me too. george: we gotta get something. i don't want to go to that meeting on an empty stomach. let's get some chinese. you wanna order it? jerry: all right, but then we gotta get some work done. let me just call kramer, see if want anything. (calls) hey, we ordering chinese food. if you want anything-- (kramer enters quickly) let me know what it is and i'll order for you. kramer: i'm in. let's go for it. george: what do you want? kramer: i don't care, whatever. george: i'll tell you what. why don't we just get a couple of dishes and we'll just share 'em. kramer: okay. what are you getting? george: i'm gonna get a chow fung. kramer: what's a chow fung? george: it's a broad noodle. kramer: what do you mean, a broad noodle? george: it's a big flat noodle. kramer: well i don't want a big flat noodle. george: what kind of noodle do you want? kramer: who says i want a noodle? george: all right, look. i'm getting the chow fung. you don't have to have any. kramer: all right. i'll get pea pods and you can't have any of my pea pods. george: fine. kramer: get extra msg. elaine: look, marla. this whole sex thing is totally overrated. now, here's the one thing you've gotta be ready for is how the man changes into a completely different person five seconds after it's over. i mean, something happens to their personality it's really quite astounding. it's like they committed a crime and they want to flee the scene before the police get there. marla: so they just leave? elaine: yeah, pretty much, yeah. well, the smart ones start working on their getaway stories during dinner. how, you know, they gotta get up early tomorrow. what is about being up early? they all turn into farmers suddenly. marla: wow. it must be pretty good to put up with all that. elaine: eh. jerry: all right, let's go. we don't have much time before the meeting. george: where's the food? what happened to ping? jerry: don't worry, he'll be here. look, we only got about two hours. we just need to come up with one good story so we can get through this meeting. (buzzer) there's your food. george: hey, what about this? i'm in a car accident. the motorist is uninsured, you with me? jerry: yeah. george: my car's totaled. it's all his fault and now, he has absolutely no money. there is no way that he can pay me. so the judge decrees that he becomes my butler. jerry: your butler? george: right. he cooks my food, he cleans my house, he does all my shopping for me. and there you go, that's your program. jerry: what about me? george: don't worry, we'll find something for you. (knock of jerry's door) jerry: (getting the door) that's the stupidest idea i ever heard. sentenced to be a butler. (elaine, marla, and an injured ping are at the door) ping, what happened? elaine: there was a bit of an accident. ping: head hurts. head really hurts. jerry: what happened? elaine: marla and i went out for coffee and afterwards i was crossing the street and he was biking right towards me. so i got out of the way just in time, but then he ran into a parked car. he hit his head and everything went flying. george: something happened to the food? ping: i only saved one bag. jerry: should i call an ambulance? do you wanna see a doctor? marla: i'll get some ice. george: (after looking in the bag) the pea pods? all you saved was the pea pods? (kramer enters) kramer: hey, you got the food? jerry: yeah, here. kramer: what took you so long? hey, ping! ping: kramer. (kramer and george sit on the couch) kramer: yeah. where's yours? george: he dropped it. kramer: oh, that's too bad. elaine: you should slow down, you know that? it's dangerous to go that fast. ping: no, no. i have green light. you jaywalked. kramer: (to jerry) hey, you watchin' oprah? elaine: (to ping) i did not jaywalk. jerry: (to george) you're givin' him back that tv. ping: (to elaine) yes, you jaywalked. kramer: (to jerry) no, i don't want it back. ping: (to elaine) jaywalker. i could slap suit on you. george: (to jerry) we got work to do. what about the meeting? kramer: (to himself) hey, look. an hour with patrick swayze. jerry: a month and a half we had. we did nothing. i can't believe we put it off until today and then we couldn't do anything because elaine runs out to apologize to a virgin, crosses against a light, and knocks over a chinese delivery boy. now we're gonna make fools of ourselves, we got nothing. you're not even in show business. i gotta reputation. you drag me into the sewer with you. i've been on tv buddy boy. you know how fast word spreads in show business? it's like that (snaps in george's face) , like that! one bad impression, you're outta the business! george: all right, let's postpone it. let's get out of here. jerry: what do you mean? they know we're here. george: i'll fake an illness. (acts it out) my back! my back! i can't believe, my back. jerry: no, no, would you get up? george: i can do this, jerry. jerry: no. george: all right, i'll tell them my sister died. (starts fake crying) my poor sister died. she was standing and then she was laughing and then they shot her! that's the kind of sick city that we're livin' in. they shoot you for laughing. i must go and comfort my poor family. jerry, take me home so i can comfort my... my poor family. jerry: what? george: that's david letterman. i just saw david letterman walk by. i'll be right back. (he exits) woman: mr. seinfeld, they're ready for you. (she exits) jerry: yes, i was very wise to hitch my wagon to his star. (jerry enters meeting) man #1: hey, jerry. jerry: hi, how are you doing? nice to see you all here. hello. rita: hello, jerry. i'm rita kearson. jerry: oh, uh, nice to meet you. where's russell? rita: he, uh, had to go to la. there's a problem on the set of blossom. jerry: oh, poor blossom. (he sits) rita: anyway, he asked me to sit in for him. man #2: where's george? jerry: oh, he ran to say something to david letterman. susan: david letterman's on the floor? jerry: yeah, he just walked by. rita: well, i think we should get started anyway. jerry: yeah, good idea. rita: so how are you guys comin' along? jerry: good, good, we've got a lot of ideas. rita: good. (pause) jerry: have you ever been to a chinese restaurant and they tell you it'll be, like, five minutes for a table and you wind up waitin' there for, like, thirty minutes? well, we thought it would be very funny to do an entire show where all you're doin' is waitin' for the table. (they don't seem to like it) because we've all been in that situation. you know, you're waiting... and you're hungry... and you bump into somebody you know... when is russell coming back? rita: so that's the idea? jerry: well no, that's one. we have many others. we have an idea where, uh, i get into an accident with a guy who has no insurance and the judge sentences him to be my butler. (everyone laughs) you know he cooks for me, he has to cook for me... he cleans my house, he's doin' my shopping, you know? i'm walkin' around with one of those big neck collars. man #2: those collars are funny! man #1: once you see someone in those collars you start laughing immediately. (george enters) george: you tellin' 'em about the butler story? is that beautiful or what? hey, sorry i'm late. (looks at rita) russell? rita: i'm rita kearson. george: oh, rita. hey, mr. shermack, how're you doing, good to see you. jay, always a pleasure. (to susan) sweetie. (kisses her and then sits down next to jerry) yeah, yeah, that butler idea, that's beautiful. isn't that killer? (aside to jerry) i thought i was getting the butler. jerry: don't worry, uh, we'll find something for you. jerry: so letterman didn't spark to your idea, huh? george: no, he said there was nothing he could do, and next time i should probably break the prozacs in half. kramer: you, you guys wanna hold it down? i'm watchin' jeopardy. jerry: would you give him the tv back? kramer: oh, by the way, george. susan called for you a minute ago. george: i bet they're probably doing summersaults about us over there. you think they get butler stories like that everyday? (he calls susan) kramer: (to the tv) who is joseph cotton? giddee up! susan: hello? george: hi, it's me. it's georgie boy. what's going on? susan: what's going on? what's going on? i'll tell you what's going on. i'm fired! george: fired? why? susan: because you kissed me. you kissed me, you stupid idiot! rita called russell and he fired me over the phone. kramer: (to the tv) what is pi? ooh! giddee up again. george: but i had no... i didn't realize. susan: you didn't realize? how could you not realize? you're stupid! you're a stupid, stupid man! george: i just feel terrible this is just terrible. kramer: (to the tv once again) what is the cha-cha? ooh, yes indeed. susan: i'll speak to you later. george: (hangs up phone and pauses) this is great! he fired her! this is incredible, he fired her. i'm out, baby! i'm out! jerry: why did he fire her? george: because i kissed her in the meeting. russell found out, he fired her over the phone. finally, my stupidity pays off! kramer: what is here comes the judge, here comes the judge! jerry: you can't break up with her now. her life is shattered. you got her fired. you gotta be there for her. george: what? jerry: you gotta at least wait until she gets another job. george: another job? jerry: couple of interviews. george: oh, this is unbelievable. i'm stuck. every time i think i'm out, they pull me back in. marla: are you gonna leave after its over? you know, if we have sex. jerry: what? leave? where? why? marla: you know, the apartment. jerry: why would i leave? this is my apartment. marla: well what if it was my apartment? jerry: who gave you this idea i would wanna leave? marla: well elaine said men like to leave after it's over. jerry: listen, i wouldn't put too much stock into what elaine has to say about relationships. she comes from a broken home, and i mean that literally. a tree fell on her roof and cracked the whole structure. her parents got along beautifully, but her house was in bad shape. marla: maybe i should get going. jerry: what else did you say to her? elaine: nothin'. i was just givin' her the straight dope. jerry: more like a dope was giving it to her straight. another cup of coffee with you, she'll wind up in a convent. elaine: listen, there was a lot more i could've told her, believe me. jerry: what is that about leaving after sex? did i ever leave with you? elaine: you might've if i'd stayed. so you know what? i got served with papers today. ping is suing me. i need your virgin as a witness. you better be nice to her. jerry: i was trying to be. elaine: look at george. (on the other side of the restaurant) he lucked out, huh? jerry: oh, you're not kiddin'. who'd 've figured susan would break up with him? they had a good thing going. elaine: yeah, since she met him she's been vomited on, her family cabin's been burned down, she learned her father's a homosexual, and she got fired from a high paying network job. yeah, they had a real good thing going. george: what do i do? well actually, i'm a writer. in fact, i'm writing a comedy pilot for nbc right now. woman: a sitcom? how can you write that crap? carol, this guy's writing a sitcom. carol: a sitcom? come on, let's go. (they leave) woman: a sitcom. can you imagine? and he actually tried to use it to hit on me! [setting: monk's coffee shop] jerry: (to elaine) let me ask you a question. elaine: mm-hm. jerry: you're a hostage, captured by terrorists- elaine: (smiling, chewing) who, me? jerry: you, anybody - whatever. you're in the little room, you're chained to the floor, you're there for a long time.. do you think they would ever consider doing the laundry? elaine: (matter-of-factly) they have to, it's in the geneva convention. kramer: (imitating a turkish terrorist) you! take off your socks, your pants, your underwear. we're doing the wash. c'mon! take it off, take it off! kramer: hey, georgie. jerry and elaine: hi. jerry: (to george) what's the matter? george: (slowly shakes his head) my mother caught me. jerry: "caught" you? doing what? george: you know. (all three give him blank stares) i was alone.. elaine: (making a face of surprise) you mean..?! george: (nods) uh-huh. kramer: (laughing) she caught you? jerry: where? george: (not really wanting to embellish) ..i stopped by the house to drop the car off, and i went inside for a few minutes.. nobody was there - they're supposed to be working. (jerry and elaine look at each other - enjoying the story) my mother had a glamour magazine, i started leafing through it.. jerry: "glamour"? george: ..so, one thing lead to another.. jerry: so, what did she do? george: first she screams, "george, what are you doing?! my god!" and it looked like she was gonna faint - she started clutching the wall, trying to hang onto it. krmaer: (reflecting on the story so far) man.. george: i didn't know whether to try and keep her from falling, or zip up. jerry: what did you do? george: i zipped up! elaine: (wide-eyed) so, she fell? george: yeah. (noticing this makes him out to be the bad kid, he gets defensive) well, i couldn't run over there the way i was! elaine: no, i guess you couldn't have.. jerry: (in the middle of elaine's sentence, smiling) no, i wouldn't think so. elaine: (finishing it off) ..done that. george: so, she fell, and then she started screaming, "my back! my back!" so, i picked her up and took her to the hospital. elaine: (between chuckles) how is she? george: (somewhat angered) she's in traction. elaine: (still laughing) ok, i'm sorry. george: it's not funny, elaine. elaine: (stifling her laughter) i know. i'm sorry. i'm serious. george: her back went out. she's gotta be there for a couple of days. all she said on the way over in the car was, "why, george, why?!".. i said, "because it's there!" jerry: "glamour"? george: (vowing) well, i'll tell you this, though - i am never doing.. that , again. elaine: what, you mean, in your mother's house, or all together? george: (definite) all together. elaine: oh, gimme a break.. jerry: (skeptical) ohhh yeah.. right. kramer: oh, like you're gonna stop? jerry and elaine: c'mon.. george: you don't think i can? jerry: no chance. george: (daring) you think you could? jerry: well, i know i could hold out longer than you. george: care to make it interesting? jerry: sure, how much? george: a hundred dollars. jerry: (pointing) you're on. kramer: (butting in) wait a second, wait a second. count me in on this. (clicks his tongue) jerry: you? kramer: yeah. jerry: you'll be out before we get the check. elaine: (smiling) i want to be in on this, too. george and jerry: (rejecting) ohh, no. no, no, no.. elaine: why? jerry: (showing difference) it's apples and oranges.. elaine: what? why? (more 'no, no, no's from jerry and george. persistent) why? jerry: because you're a woman! elaine: so what? jerry: it's easier for a woman not to do it than a man. elaine: (sarcastic) oh. jerry: we have to do it. it's part of our lifestyle. it's like, uh.. shaving. elaine: oh, that is such bologna. i shave my legs. kramer: (making a point) not everyday. george: alright, look, you want to be in? elaine: yeah! george: you gotta give us odds. at least two to one - you gotta put up two-hundred dollars. kramer: no, a thousand! elaine: no, i'll - i'll put up one-fifty. george: alright, you're in for one-fifty. jerry: (nodding) okay, one-fifty. george: alright, now, how are we gonna monitor this thing? jerry: well, obviously, we all know each other very well, (elaine slightly laughs) i'm sure that we'll all feel comfortable within the confines of the honor system. kramer: alright. (holds out his pinkie at the center of the table) [setting: jerry's apartment] george: (stern) no, ma, i'm not gonna see a psychiatrist. n- i don't care if you do pay for it! no! discussion over. yeah, alright, i'll see you later. yes, of course i'm gonna come by. alright. (hangs up, slamming it down on the coffee table. he sits down next to jerry) my mother wants me to see a psychiatrist now. why?! because she caught me? (scoffs, shaking his head) you know, if everyone who did that had to go see a psychiatrist.. (laughing, he snorts) jerry: (waits for the rest of the sentence) ..yeah? george: (defensively) whatever. jerry: how is she? george: (shrugging it off) she'll be fine. i gotta go to the hospital to see her tonight. jerry: (answering to the intercom) yeah? elaine: it's me. jerry: come on up. (lets her in by unlocking the front door) george: hey, what are you doing tonight? jerry: (opens his door slightly for elaine) dating marla. george: oh, the virgin? jerry: yeah. george: any, uh.. progress, there? what's the latest? jerry: well, i got my troops amassed along the border - i'm just waiting for someone to give me the go-ahead. kramer: hey, look at this, c'mere. there's a naked woman across the street. jerry: where? kramer: second floor from the top. (pointing) see the window on the left? george: (in awe) wow! jerry: (also amazed) who walks around the house like that?! george: (suggesting) maybe she's a nudist. you know, those nudist colony people.. kramer: ..yeah.. (pause) yeah.. (slowly stands up, and walks out jerry's apartment - leaving jerry and george with the view, he shuts the door behind him) jerry: hey, let me ask you a question. in these nudist colonies, do they eat naked in the dining room? george: i would imagine it's all naked. jerry: what about the chamber maids? are they naked, too? george: (still focused on the nudist) they're naked, the gardeners naked.. the bellhops. (jerry makes a noise of astonishment) one big nude-a-rama. elaine: hey. jerry and george: (only turning back for a second) hey. elaine: well, (smiling) where's my money? who caved? jerry: (over his shoulder) not me. george: (also, over his shoulder) not me. elaine: what're you looking at? jerry: there's a naked woman across the street. elaine: (smiling, chuckling) this is gonna be the easiest money i've ever made in my life. (moving on to a new topic) so, my fried, joyce, is teaching an aerobics class. i'm gonna go tonight. jerry: (commenting) yeah.. the - the waitress should've taken it back. elaine: (realizes jerry and george aren't paying attention) so then, i got a call this morning. you know, i was, uh, chosen to go on the space shuttle. we're goin' to mars. jerry: (still staring at the woman) uh-huh. george: have a good time. kramer: (declaring) i'm out! elaine: what?! kramer: yeah, i'm out - i'm out of the contest. george: you're out?! kramer: yeah, yeah.. (notes their reactions) what? elaine: well, that was fast! jerry: well, it was that woman across the street. (to jerry) you know, you better be careful, buddy. she's gonna get you next. (walks out, shutting the door behind him) elaine: ..and then there were three. [setting: hospital room] estelle: i don't understand you. i really don't. you have nothing better to do at three o' clock in the afternoon? i go out for a quart of milk, i come home, and find my son treating his body like it was an amusement park! george: (stern, trying to shut her up) ma. estelle: don't give me "ma". it's a good thing i didn't hit the table. i could of cracked my head open. george: ma, people can hear you. estelle: (heavy in sarcasm) too bad you can't do that for a living. you'd be very successful at it. you could sell out madison square garden. thousands of people could watch you! you could be a big star! george: (getting up) alright, ma, that's enough! estelle: i want you to go see a psychiatrist. george: no! i am not going to see a psychiatrist! estelle: why? why not?! why won't you go? george: (like a kid) because i don't want to. estelle: i want you to go see somebody. george: well, i am not going. estelle: it's a good thing your father's in chicago. shelly: hello, aunt estelle. look at you - how did this happen? george: (snapping) is that important, really? what is this, a police investigation? the woman's been through enough. she has to relive the experience now?! nurse: hi, denise. six-thirty, time for your sponge bath. denise: mmm.. is it six-thirty already? i fell asleep. shelly: (seems not to notice what's going on beyond the divider) so, george, what are you doing now? i hear you got some kinda television, writing - thing? george: (slowly backing away, he's not at all committed to the conversation) yeah.. television. nurse: let me help you out with that. here, just slip it over your head.. denise: oh.. thank you. shelly: (nodding) well, it's about time. we thought you were gonna wind up on the street. (as the bath is going on, george is now completely mesmerized) what is it you're doing, exactly? estelle: george, you're cousin, shelly, is talking to you! [setting: new york health club] joyce: so, when was the last time you took a class? elaine: oh, it's been a while. joyce: (overly excited) are you psyched? elaine: (fake excitement) yeah. yeah, i'm really.. psyched. joyce: well, you're gonna thank me for getting you in here. elaine: why is that? joyce: (pointing, she directs elaine's attention off-camera) see the guy with the dark hair and the red shorts? elaine: (between breaths) oh, my god. (joyce nods) john f. kennedy junior's here! joyce: he's gonna be in your class today. elaine: (still unable to speak right) in my class? john kennedy's gonna be in my class?! joyce: i can get you a spot right behind him. he has got a great butt. elaine: yeah. butt. butt. great butt. john-john's butt. [setting: jerry's car] marla: let's slow it down a little. jerry: "slow it down"? marla: well, (reminding him of her virginity) you know.. jerry: ah, yeah.. i know. marla: you're okay with that, right? jerry: yeah, yeah.. of course. what, do you think i care about the sex? what kind of person do you think i am? that doesn't mean anything to me. (faint) i don't care about that. marla: so, i'll see you saturday night, then? jerry: (smiling, nodding) sure, saturday night. marla: alright, then. good night. jerry: goodnight. (she gets out. jerry leans forward, adding) not just a good night - a great night. (she shuts the door, he waves) [setting: jerry's bedroom] [setting: jerry's apartment] kramer: (singing) goood moorrrnninng! jerry: (out of it) yeah, good morning. kramer: ha, ha! nothing like some good solid sack time. (turns toward jerry's window) jerry: she's not there. she's doin' her wash. kramer: (turning back to jerry) oh. so, did you make it through the night? jerry: (over the top) yes, i'm proud to say i did! kramer: so, you're still master of your domain. jerry: (nodding) yes. yes i am. (kramer chuckles) master of my domain. but i will tell you this i am going over to (gestures to the nudist) her apartment, and i'm tellin' her to put those shades down! kramer: woah, woah, woah. what-what did you just say? jerry: i can't take it anymore! she's driving me crazy! i can't sleep, i can't leave the house, and i' here, i'm climbin' the walls. meanwhile, i'm dating a virgin, i'm in this contest - something's gotta give! kramer: do you hear what you're saying?! can you hear it?! (jerry puts on his coat) this is a beautiful woman walking around naked, and you want to tell her to stop?! that's the dumbest thing i ever heard! i mean, think comprehens- i'm not gonna let you do it. jerry: (persistent) well, i'm doin' it, get out of my way. kramer: (stopping him) no, no, no, no. you can't! you can't! this is something that comes about once in a lifetime! when we were boys, looking through our bedroom windows, we would think "why can't there be a woman out there, taking her clothes off?" and now that wish's come true, and you want to (makes a noise) throw it away?! jerry: look, i'm sorry- kramer: no, i'm not gonna let you do it, jerry. jerry: kramer, (trying to pass him) get outta my way! kramer: (frantic) no, no, no. don't do it. don't do it! for my sake! god knows i don't ask you for much! (pleading) now, come on. please, jerry. please! i'm beggin' ya! please! (claps hands) come on! please! jerry: alright.. (takes his coat off) kramer: yes! jerry: ..alright. kramer: (moving to the window) thank you, thank you, thank you. (sits in jerry's chair, looking out the window) jerry: she's not there! kramer: oh, i can wait.. [setting: monk's coffee shop] jerry: so the nurse was giving her a sponge bath? george: every night at six-thirty. the nurse was gorgeous.. then i got a look at the patient.. (laughs, then snorts) i was going nuts. jerry: oh, man. well, i guess you'll be going back to that hospital. george: (fake sympathy) well, my mother, jerry.. jerry: (pointing) but are you still master of your domain? george: (arms out) i am king of the county. you? jerry: lord of the manor. elaine: john f. kennedy jun-ya! jerry: what? elaine: (smiling) he was in my aerobics class. jerry: really? did you talk to him? elaine: no, you don't understand - he was working out right in front of me. so, listen, after the class was over, i timed my walk to the door so we'd get there at the exact same moment, and he says to me, (thinking the world of what he said) "quite a workout." george: "quite a workout"? what did you say? elaine: (smiling, proud) i said, "yeah." jerry: (adding, fake praise) good one. elaine: so then, listen, listen. so then, i showered and i dressed, and i saw him again, on the way out. (giddy and nearly out of breath) so we're walkin' and talkin', and he asked me my name - and i think i said elaine - but, i mean, who the hell knows.. and so then, he says to me "do you wanna split a cab uptown?" and i said, "sure" - even though i was going downtown. so, we get in the cab, and i mean, i have no idea where i'm goin', right? but this is john f. kennedy junior we're talkin' about! (deep breath) so, then, he says to me, "where do you live?" and i - and i - and i was close to your block, so i said your building. so he dropped me off in front, (laughs) and i had to take a cab all the way back downtown to my house.. (picks up a glass of cold water and presses it up to her forehead to cool her off) oh, god.. jerry: but the question is, are you still master of your domain? elaine: (sets the glass down) i'm queen of the castle. (pops a piece of food into her mouth) [setting: estelle's hospital room] estelle: you're back. george: of course i'm back. why wouldn't i be back? my mother's in the hospital, i'm going to pay her a visit. estelle: i know, but two days in a row? you didn't have to do this. george: you're my mother! what wouldn't i do for you? estelle: you know what you could do? i haven't eaten lunch or dinner. i can't eat this hospital food. maybe you could run down to the deli and get me a sandwich.. george: (smiling) you got it, ma. (she smiles back, nodding) a little later. (george sits back in a nearby chair, looking at the divider in anticipation) estelle: (let down) could you go now, george? i'm very hungry. i'm weak. george: well, wait a little while, ma. what's the difference? estelle: i don't understand why you can't do this for me! george: (standing up) i just got here, ma! i'd like to spend a little time with you. estelle: but if you wait, they won't let you back in! visiting hours are almost over! george: ten minutes! here, here, (fishes a box of tic-tacs out of his coat pocket and tosses them to her) have some tic-tacs. estelle: get the hell outta here. (angrily sets them aside) i'm sorry you came. nurse: (to patient) six-thirty. time for your sponge bath. estelle: george.. i'm huuunnnggry! george: (muttering, slow) hang on, ma.. hang on.. [setting: new york health club] joyce: hi! elaine: hi. joyce: did you get your hair done today? elaine: no, i just, uh, fixed it.. a little bit. (still looking around, she quickly checks her breath) joyce: you know who - isn't here. he was in the early class today. (elaine looses her composure) but i think you made quite an impression on him yesterday. elaine: (regarding herself) what? what? who? me-me-me? i made an impression? what impression? joyce: let me just put this back. (turns to put a stack of shorts away) elaine: no! no! now! tell me now! what did he say?! joyce: (uneasy) he asked about you. elaine: (ecstatic) he asked about me? john kennedy asked about me?! (hangs off the side of the counter, both feet in the air) what did he say? joyce: he wanted to know your situation. elaine: (quick) what situation? i have a situation? joyce: i-i told him you were single. elaine: that was good. that was very good. joyce: he said you were just his type. elaine: (frank) okay, you tryin' to hurt me? are you tryin' to hurt - you're tryin' to injure me, right? you're trying to hurt me. joyce: he also told me to tell you that he'll be in your neighborhood tomorrow around nine o' clock - so he's gonna stop in front of your building if you want to come down and say hello. [setting: jerry's apartment] jerry: alright, ma, i'll talk to you later.. nothing, i'm, i'm watching, uh, tiny toons here, on nickelodeon.. it's, i-i like kid shows. they have a very innocent, wholesome quality. okay, alright, i'll talk to you later. bye. (hangs up) kramer: (obviously watching the nudist across the street) oh, that's good. that's good. that's very, very good. oh, it's hot in there.. (jerry looks back at kramer in envy) it's hot in there. so, just walk around a little bit. don't be ashamed, don't be ashamed.. that's good, that's good.. yes, yes, yes.. jerry: (trying to block out kramer, he starts to sing along with the tv) the wheels on the bus go round and round, round and round, round and round. the wheels on the bus.. kramer: the woman across the street has nothing on, nothing on, nothing on.. [setting: george's room] [setting: jerry's apartment] george: all you got is instant coffee? why don't you get some real coffee? jerry: i don't keep real coffee in here, i get my coffee on the outside! (intercom buzzes. he answers it) yeah?! elaine: (through intercom) it's elaine. jerry: (shouting) come on up! (opens his door for elaine) george: where did you get those socks? jerry: i don't know. george: i think those are my socks! jerry: how are these your socks?! george: i don't know, but those are my socks! i had a pair just like that with the blue stripe, and now i don't have them anymore! jerry: (sarcastic) oh, yeah, that's right, well, you fell asleep one day on the sofa and i took them off your stinkin' feet. they looked so good to me, i just had to have them! george: yeah, well, they're my socks! jerry: they're my socks! george: oh boy.. jerry: what are we doing here.. george: ..oh boy. jerry: this is ridiculous. george: do you believe this? we're fighting. we're fighting. jerry: i haven't been myself lately. i've been snapping at everybody. george: me too. i've been yelling at strangers on the street. elaine: hello.. (pulls a wad of bills out of her purse, and starts to count it up) george: (shocked) you caved?! jerry: it's over? george: you're out? jerry: ohh-my-god. the queen is dead. george: i figured you'd cruise. at least through the spring. jerry: what happened? elaine: it was..uh.. john-john. jerry and george: ohhhhh.. john-john. jerry: but you made it through the day before. elaine: yeah, but yesterday, he told joyce, the aerobics teacher, that he wants to meet me outside here at nine o' clock tonight. jerry: why outside here? elaine: because he think i live here. remember when we shared a cab, and he dropped me off out in front? he's picking me up. jerry: alright, costanza - it's just you and me. george: and then, (smacks the money) there were two. elaine: (slowly) elaine benes kennedy junior.. [setting: jerry's apartment] marla: let's go in the bedroom. jerry: really? marla: yes. jerry: you sure? marla: yes. jerry: you really want to? marla: i do. i'm ready. jerry: okay.. marla: i know how difficult this must have been for you. jerry: (chuckles) you don't know the half of it. marla: what do you mean? jerry: well, it's kinda silly, but.. marla: contest?! a contest! this is what you do with your friends? jerry: no, it was just a bet. i mean, it actually started with george and his mother- marla: i don't want to hear another word. and to think how close i came to you being the one! i must have been out of my mind. elaine: marla? hi, oh, i'm glad i ran into you- marla: i don't want to have anything to do with you or your perverted friends. (confused, elaine moves closer) ooohh, get away from me! you're horrible. [setting: jerry's apartment] elaine: what happened? jerry: i told her about the contest. elaine: ohh. boy, she's a whack-o. george: (to elaine) hey, what happened? elaine: what? george: i thought you were meeting kennedy. elaine: (let down) he didn't show. george: yeah, he did. elaine: what? he's - he's out there? oh, my god. i-i gotta go, i gotta go.. george: no, no, no. he just left. elaine: what? george: yeah, he was talking to marla. jerry: marla? george: yeah, i think, you know, she was, like, crying, and he was consoling her, and then, she, uh, just got into his car, and they just drove away. elaine: (angered) he left with marla, the virgin? george: yeah. elaine: they drove away? george: yeah, drove away.. you know, i said 'hello' to him. you know, he's - he's- jerry: (moving to the window, shocked) oh my god in heaven! elaine: (makes a sound of surprise) is that..? george: kramer?! elaine: he's waving.. [setting: elaine's bedroom] marla: ohh, john. that was wonderful.. elaine: bah bah baaah, boo doo bah bah bah, boo doo waaaah, waah, waaaah... jerry: hey, could you do me a favour? [pause] could you shut-up? elaine: hey guess what? this window doesn't work. jerry: i hate rental cars. nothin' ever works the window doesn't work, the radio doesn't work... and it smells like a cheap hooker... [pause] or is that you? elaine: gimme ten bucks and find out... jerry: so, this worked out pretty good. them givin' me an extra ticket, y'know, you get a free trip to st. louis, i did my gig, you got to see your sister... elaine: yeah, worked out good. jerry: and here's the beauty-- elaine: what? jerry: george is pickin' us up at the airport. elaine: get out of here! why? jerry: you know that awning outside my building? elaine: yeah... jerry: he's always bragging about his vertical leap, so i bet him fifty bucks that he couldn't touch the awning. elaine: so what happened? jerry: he didn't come within two feet of the thing. he's wavin at it... so, i told him if he picks us up at the airport, he wouldn't have to pay me anything. elaine: hey, how we doin' on time? jerry: timed out perfectly. drop off the car, pick up the rental car shuttle, we walk right on the plane... elaine: hey! wait up! jerry: hey! wait up! driver: sorry. heh heh heh... skycap: where you goin'? jerry: uh, jfk. [to elaine] i need some small bills for a tip. you got anything? elaine: yeah, you want five? jerry: gimme ten. elaine: you're giving him *ten* dollars? jerry: well, we got three bags. elaine: that's a pretty big tip... jerry: that's what they get! elaine: they don't get that much. jerry: let's ask him. elaine: we can't ask him... jerry: let's see what he says. elaine: jerry, we don't have time for this... jerry: two seconds. [to skycap] excuse me, my friend and i here, we were having a discussion and we were wondering what you usually get for a tip. skycap: depends on the person, depends on the bag. jerry: uh, how about a couple of people like us. skycap: people like you? i wouldn't expect much, you don't even look like you know what you're doing... jerry: c'mon, seriously... skycap: well, since you asked, usually, i get five dollars a bag. elaine: what!? skycap: that's right. elaine: *five* dollars a bag? i don't think so. skycap: look, you asked, i told you. elaine: you got some nerve trying to take advantage of us... jerry: all right, look, we're late. thank you very much... elaine: you're lucky i don't report you... skycap: jfk... skycap: ...honolulu. elaine: wait up! jerry: you see? never be late for a plane with a girl. 'cuz a girl runs like a girl-- with the little steps and the arms flailing out... you wanna make this plane, you've gotta run like a man! get your knees up! jerry & elaine: the flight's been canceled?!?! ticket lady: everything into jfk's booked... no, wait-- i have two seats into laguardia-- but they're not together. it's boarding right now. jerry: we'll take 'em! elaine: we're not going to sit together? jerry: well, so what? it's not that long-- you'll read. elaine: well, what about george? he's supposed to pick us up at kennedy. jerry: we'll call him... elaine: there's no time. jerry: no time? [to ticket lady] is there time? ticket lady: there's no time. jerry: there's no time. all right, we'll call him from the plane. ticket lady: i have one seat in first class, and one in coach. the price is the same since your flight was canceled. (the two have that uncomfortable politeness that only comes about when you're down to the last piece of pizza. jerry breaks the silence: ) jerry: i'll take the first class. elaine: jerry! jerry: what? elaine: why should you get the first class? jerry: elaine, have you ever flown first class? elaine: no. jerry: all right then. see? you won't know what you're missing. i've flown first class, elaine-- i can't go back to coach. i can't... i won't... elaine: you flew here coach. jerry: yeah, that's a point... elaine: all right, fine. i don't care. if the plane crashes, everybody in first class is going to die, anyway. jerry: yeah, i'm sure you'll live. attendant #1: third row right... attendant #1: oh, you're in here, sir. welcome aboard. jerry: bon voyage, lainey! (elaine is robbed of her peek into the first class section by a drawn curtain and she goes to her seat. however, someone comes after her and: ) passenger #1: oh, excuse me... um, excuse me, miss, i think you're sitting in my seat... passenger #1: i never check my bags-- i can't stand that wait in the baggage area. elaine: great... [to herself] help me... (jerry gets to his seat, however, he also is in the wrong seat: ) tia: excuse me, i think you're in my seat... jerry: oh, sorry... my mistake... [to himself] thank... *you*! george: hey, thanks for coming with me. kramer: hey, what made you think you could touch that awning? george: i confused it with another awning. kramer: so how we doin' on time? george: we're perfect. i timed this out so we would pull up at the terminal *exactly* 17 minutes after their flight is supposed to land. that gives them just enough time to get off the plane, pick up their bags and be walking *out* of the terminal as we roll up. i tell you, it's a thing of beauty. i can not express to you the feeling i get from a perfect airport pickup. (starts looking around) what's going on? what are you doing? the long island expressway? what are you getting on the long island expressway for? do you know what the traffic will be like? this is a suicide mission! kramer: will you relax?! george: oh, i had it perfectly timed out the grand central, the van wyck! you destroyed my whole timing! kramer: this is the best way to go! george: do you know what happens if i miss him? i don't get credit for the pickup and i lose my 50 bucks... kramer: george, there's no traffic at this time. now, come on, man... george: really? kramer: if anything, we'll probably get there early. i'll have a chance to go to the duty free shop. george: the duty free shop? duty free is the biggest sucker deal in retail. do you know how much duty is? kramer: duty. george: yeah, "duty". do you know how much duty is? kramer: no, i dunno how much duty is. george: duty is *nothing*. it's like sales tax... kramer: i still like to stop at the duty free shop. george: i like to stop at the duty free shop. (they start to "sing", growing more excited after each iteration: ) george & kramer: i like to stop at the duty free shop! tia: so, he says, ``squeeze your breasts together'', and i say, ``i thought this was an ad for shoes''... jerry: oh my... tia: is that the new esquire? turn to page 146. jerry: wow! coming out of the shower... it's a good thing they gave you that washcloth to cover yourself up... what is this an ad for? tia: see those wrinkled jeans slung over the chair? way in the background, out of focus? jerry: uh-huh... kramer: how does it look on your side? [pause while george just stares at him] we'll get there... elaine: oh, look at this... he's sleeping and i have to go to the bathroom. maybe he'll wake up soon. what if my kidneys burst? is it worth it not to wake this man up to damage a major organ? i hope this disgusting slob appreciates what i'm doing for him... [to passenger on the other side of her, but still to herself] yeah, make a little more noise with your gum-- that's helpful. [on the bright side, kramer and george arrive at the airport. they're running to the terminal: nan george: they're not here! you cost me fifty bucks! kramer: look at you! you run like a girl! run like a man! lift your knees! george: look, we're wasting our time here! we're a half-hour late, they've probably took it off the board already. kramer: no, there it is, right there-- 133... and it's canceled. george: canceled? do i still get credit for the pick up? i was here! kramer: ok, c'mon... let's go check over at the ticket counter. grossbard: oh, there it is honey, gate 18a, 830... [he leaves] kramer: did you see that guy? george: no... what guy? kramer: that guy.. he was just... george: listen, you go over to the ticket counter, i'm going to go stop in the gift shop and pick up a copy of time magazine. there's supposed to ba blurb about jerry in it and i think he mentioned my name! kramer: [still lost] i know that guy... prisoner: gotta get my time magazine... never miss my time magazine. guard: yeah, get your magazine and let's get out of here. prisoner: hey, i was gonna take that! george: gee, i'm sorry... i got here first. prisoner: i don't care when you got here, i want the magazine... george: you don't understand, there's a *blurb* about me in this magazine! prisoner: a *blurb*?!? *you're* a blurb! check out the cover, idiot! guard: all right, let's go... prisoner: i want the magazine! george: umm... no. prisoner: you know what i would do to you, if i wasn't in these shackles... george: but you are blanche... you *are* in the shackles. oh, i can't wait to read my *time* magazine! laaaast copy, too. maybe i'll read it tomorrow-- in the park! it's supposed to be a beeyootiful day! have a nice life... sentence, that is! kramer: they're on a different flight. they're scheduled to land in a half hour, only at laguardia. george: laguardia? all right, let's go. c'mon... kramer: where do i know that guy from? elaine: [to herself, loudly] wake up, you human slug! wake up! *wake* *up*!! i can't hold it anymore! [to the slug out loud] excuse me, i've gotta go to the bathroom... jerry: oh my... that *is* refreshing... attendant: would you care for some slippers? jerry: sounds lovely! [to tia, motioning to put them on her] may i? tia: please! jerry: why, it's a perfect fit. you must be cinderella. george: my name is not mentioned in this blurb... kramer: it's grossbard! george: who's grossbard? kramer: when i lived on third avenue and 18th street 20 years ago, i had this roommate who was *always* behind in his rent. then one month, he asks me to loan him his share of the rent-- 240 bucks! he took the cash and >pfffft< disappears. well, i try to find him, i went to his girlfriend's house, even his family. uh-uh. i never got the money back! he screwed me! and that's the guy-- john grossbard! george: hey kramer, c'mon-- it was 240 bucks twenty years ago... kramer: no, i'm gonna turn around... i'm gonna get that guy... george: no-no-no, kramer. kramer! kramer! you *cannot* abandon people in the middle of an airport pickup! it's a binding social contract. we... we must go forward... not back. [elaine is still waiting to get into the bathroom-- there's someone in there. *finally*, a zz top reject comes out of the bathroom and, to paraphrase jerry in "the smelly car": ``i open the door, like a *punch* in the *face*, the stench hits me--''. elaine takes in a lungful of air and goes in. brave little soldier.] jerry: tia, did you see all the flowers in that bathroom? it's like an english garden in there. attendant: they're gardenias, mostly. jerry: i thought i smelled lilac. attendant: yes, there are a few of those, too... tia: it's almost overwhelming... captain: ladies and gentlemen, this is your captain speaking. due to equipment problems at the runway at laguardia, we've been instructed by the tower to re-route and land at jfk. we apologize for any inconvenience... elaine: [to anyone who'll listen] what'd he say? what'd he say? george: well, you're not gonna believe it... kramer: what? george: the plane's been re-routed *back* to kennedy. we've got 45 minutes. kramer: let's go. listen to the bell, grossbard-- it tolls for thee. attendant: we have some *delicious* chateau briande, my personal favourite. or, if you prefer something lighter, a poached dover sole in a delicate white wine sauce with just a *hint* of saffron. jerry: oh, saffron! that sounds good. attendant: and today we're featuring wines from the *tuscany* region... jerry & tia: tuscany! elaine: hi. can i get to my seat? attendant: you're just gonna have to wait... elaine: but you just passed it. i'm sitting right there next to that guy... attendant: you're not supposed to get up during the food service. elaine: well, nobody *told* me that! attendant: look. this plane is *full*. i got a lot of people to serve. now please... you're just gonna have to wait. george: there it is. gate 46... we got plenty of time. kramer: grossbard's plane leaves in ten minutes. i *still* got time to catch him! george: how you gonna catch him? he's probably boarded the plane already. kramer: gimme your credit card. george: my credit card? kramer: just gimme the card, don't ask me any questions. george: i'm not gonna give you my card unless you tell me what it's for! kramer: i'm gonna buy a ticket-- i'm gonna get on that flight. george: what, are you, nuts? you're gonna spend more on the ticket than you're gonna get back from grossbard. kramer: no, i'm not gonna use the ticket! i'm gonna get my money, i'll get off the plane and turn your ticket in for a refund. it's not gonna cost you a dime! now gimme the card. george: this is a *great* idea! here... use this one. i get frequent flyer miles with every purchase... wait! get two tickets. as long as your turning it in for a refund what's the difference? i'll get *double* the bonus miles. elaine: excuse me. i'm sorry to make you do this, but i got stuck in the aisle and the flight attendant wouldn't let me get through. there's no way to get around that cart... passenger #1: you're not supposed to get up during the food service. elaine: i'll try and remember that. [pause] where's my meal? passenger #1: he asked me where you were, and you were gone so long i thought you, uh, switched seats. elaine: excuse me? excuse me, but i didn't get a meal. attendant: are you sure? elaine: yes, i'm sure! i would know if a tray of food had been served to me. attendant: would you? well, the only meal left is a kosher meal. elaine: kosher meal? i don't want a kosher meal. i don't even know what a kosher meal is. passenger #1: i think it means when a rabbi has inspected it, or something. passenger #2: no, no. it all has to do with the way they kill the pig. passenger #1: they don't eat pigs! passenger #2: they do if it's killed right-- under a rabbi's supervision. passenger #3: oh, you know what? *i* ordered the kosher meal. elaine: then why didn't you take it? passenger #3: i ordered it six weeks ago, i forgot. elaine: you're eating my food! attendant: look, i got earplugs to collect. do you want it, or not. jerry & tia: mmmmmmmm! tia: this is the best sundae i've ever had. jerry: oh, man. you know what... they got the fudge on the bottom-- y'see? that enables you to control your fudge distribution as you're eatin' your ice cream. tia: i've never met a man who knew so much about nothing. jerry: thank you... jerry & tia: mmmmmm! attendant: more anything? jerry: more everything! kramer: look, i got super savers! c'mon. george: super savers? are they refundable!? george: you bought non-refundable tickets, you idiot! kramer: she talked me in to it-- she said it was the best deal. george: do you know how much this is going to cost me? kramer: look, i'll tell you what-- i'll split it with you george: look, i'm gonna go to the bathroom... attendant: excuse me... excuuuse me... elaine: what? oh, no... nothing for me thanks. attendant: what is your name? elaine: elaine benes? attendant: [checks her list] you're going to have to go back to coach. elaine: no, but there was nobody sitting here... attendant: yes, but you're still not allowed. these seats are very expensive. elaine: oh, no, please, don't send me back there. please, i'll do anything. it's so nice up here. it's so comfortable up here. i don't want to go back there. please don't send me back there... [she notices another attendant offering goods] oh, you got *cookies*! attendant: you're going to have to go back to your seat! elaine: ok, fine. i'll go back... you know, our goal should be a society *without* *classes*! [she goes through the curtain to, ick, *coach*] do you realise that the people up here are getting *cookies*! jerry: what is all the racket back there? you know, you're trying to relax on the plane and this is what you have to put up with. [to attendant] what is going on? attendant: sir, this woman tried to *sneak* into first class. jerry: oh, you see, that's terrible. the problem is, that curtain is no security-- there really should be a locking door. kramer: hey! that guy owes me 240 bucks! jerry: couldn't be... jerry: where are they already? i don't see them anywhere... i got my bags, i'm ready to go. elaine: yeah, *you* got *your* bags... elaine: the worst flight i have been on in my entire life. jerry: yeah, me too... tia: i'll call you. jerry: okay... [to a bamboozled elaine] it's a business thing... kramer: you guys ready? jerry: yeah. where's george? george: (can't be heard but looks like) kramer! george: i loved her jerry, i loved her. jerry: no, you didn't. george: and she loved me. hoo, ho, she really did. jerry: no she didn't. george: what am i going to do now? i can't live without susan. i gotta get her back. how? how, am i gonna get her back? elaine: [oc] not only didn't you love her, you didn't even like her. george: who says? elaine: you did. george: ah, ...a beautiful successful intelligent woman's in love with me and i throw it all away. uh oh boy. now i'll spend the rest of my life living alone. i'll sit in my disgusting little apartment watching basketball games, eating chinese take out. walking around with no underwear. because i'm too lazy to do a laundry. jerry: you walk around with no underwear? george: yeah, what do you do when you run out of laundry? jerry: i do a wash. george: who am i going to meet who is better than her? no one, jerry. no one's better than her. jerry: when you were with her you said you couldn't stand her. george: i loved her! jerry: you said goin up the steps of her apartment was like being taken to a cell. george: i would give anything to be going up those stairs again. george: i gotta call her. should i call her? jerry: george, i don't know if that is such a good idea? george: whyie? jerry: you need some professional advice. why don't you go see elaine's friend? she's a therapist. george: i'm not going to see that nut doctor she went to europe with. jerry: no, no no [elaine enters, flossing teeth] elaine what's the name of that friend of yours ... that's a therapist ... the woman. elaine: dana folley. jerry: right, dana folley. george: she any good? elaine: yeah, she's terrific. why? you thinking of going? george: wa, uh, ... elaine: tia? who's that? jerry: she's the model i met on the plane. elaine: she sent you a christmas card? jerry: um uh. and we're going out saturday night. george: my darling susan! my darling!!! jerry: what are you doing? elaine: ... date with fred. jerry: the religious guy? elaine: he's not that religious. jerry: let us pray. kramer: hey, you got any double crunch? jerry: yeah. jerry: kramer, should i call susan? kramer: now what does the little man inside you say? see you gotta listen to the little man. george: my little man doesn't know. kramer: the little man knows all. george: my little man's an idiot. elaine: see, she was clever. you know she put her picture on a card. i should do that. i never do anything like that. kramer: you want a picture like that on a christmas card? i can do that for you. ... george: she kept such a nice clean apartment. she was so sanitary. elaine: no, no, i was just thinking out loud i don't want my picture on a card. kramer: no, no, i'll take your picture. i'll take care of everything. george: she made a big breakfast every sunday. i don't know what she put in those eggs. kramer: all right, ... now, you come on over. i'll have my cereal and i'll take your picture. elaine: really? can you really take a picture? jerry: yeah, he's good. he takes good pictures. he's got equipment over there. elaine: all right, ha ha kramer: i don't know about that outfit though. elaine: why? what's wrong with it? kramer: well, we'll have to improvise. george: (singing) oh hey, if you happen to see the most beautiful girl who walked out on me. tell her i'm sorry. tell her i need my baby ... oh won't you tell her ... i love her. oh hey, ... jerry: george i'm afraid i'm going to have to ask you to leave. jerry: so, i'm thinking of putting in na tropical fish tank right here. tia: are you sure you're ready for that kind of comitment? jerry: well, i figure if it doesn't work out i can always flush them down the toilet. tia: that's horrible! jerry: what's that perfume you're wearing? tia: oh i completely forgot i want you to see this. the calvin klein ad i was telling you about came out today. jerry: what is that smell? tia: it's here somewhere. jerry: it smells like the beach. tia: exactly. jerry: oh my god is that the new perfume? tia: yeah. jerry: i can't believe this. my next door neighbour had the idea for this exact perfume last year. he even met with an executive at calvin klein. i can't believe they stole his idea. tia: are you sure? jerry: and you're the model for this perfume? jerry: uh, that's him. he just came home. ... uh, the door [jerry pushes his door against kramer's entrance] kramer: hey jerry: hey. kramer: hey, how ya' doing? [trying to enter] jerry: yeah, uh, i'll see you later. kramer: i just wanted to borrow your dust buster. jerry: all right come on in. ... just wait over here! just wait here and i'll get it for you. ... kramer this is tia. kramer: hello. kramer: how tall are you? tia: five ten. kramer: come on lets see - back to back. jerry: no! kramer! kramer: what's the matter with you? i just wanted to see how tall she was. jerry: oh, you're tall - she's tall i'm tall. what's the difference who's tall. we're all tall. kramer: what's that? jerry: what? kramer: that smell. what's that smell? jerry: (starting the dust buster) what smell? kramer: it's very familiar. i can't put my finger on it. it's very familiar. jerry: oh, they're all the same. here. [gives him dust buster] now if you'll excuse us, .. kramer: yeah, okay, so i'll see you tomorrow uh? jerry: okay. kramer: yeah. nice meeting you. tia: nice meeting you too. jerry: i'll see you later. jerry: ooow, that was close. kramer: [oc] the beach!!! kramer: you smell like the beach. what's the name of that perfume? you're wearing. tia: it's ocean by calvin klein. kramer: calvin klein? no, no. that's my idea. they, they stole my idea. y' see i had the idea of a cologne that makes you smell like you just came from the beach. jerry: i know look at this [shows ad] kramer: whooo, ... that's you! what is going on here? the gyp(?) he laughs at me then he steals my idea. i could have been a millionaire. i could have been a fragrance millionaire, jerry. ... they're not going to get away with this. dana: hello. george, come in. come in i've heard an awful lot about you. please sit down. george: well hello. um, ah, specifically the reason that i'm here, uh, i don't know uh what elaine told you but uh i broke up with my girlfriend a couple of weeks ago. actually she broke up with me [struggling with his coat zipper] and uh, well, i was the cause of it and uh, i just wanted to find out from you ... what's with this thing? dana: so uh, she broke up with you? ... george: yeah, and, ... why won't this go down? dana: it's all right don't worry about it. so, why did she break up with you? george: what is with this damn zipper? dana: it doesn't matter. you'll fix it later. tell me about your girlfriend. george: it's stuck on a piece of cloth here. i can't get the cloth out. dana: it doesn't matter, so ... george: this is a brand new jacket. boy this really burns me up, ... dana: george, george, look at me. okay, forget about the zipper. ... what's your girlfriend's name? george: ... susan. dana: okay, we're getting somewhere. george: uh, ha ha, ... it's just so frustrating. it's a brand new jacket. elaine: anyway so fred and i are going to do some volunteer work for that church on amsterdam. jerry: oh, volunteer work!. see that's what i like about the holiday season. that's the true spirit of christmas. people being helped by people other than me. that makes me feel good inside. look at what we have here. (mail). a christmas card from laine. you didn't have to go to all that trouble. elaine: it was no trouble. my assistant did the whole thing. jerry: i didn't even see the picture. how did it come out? elaine: well, you know. it's a picture? jerry: oh yeah. look at that. looks good. kramer did a good job. elaine: yeah, well. how hard is it to take a picture? jerry: ... um ... elaine: what? jerry: did you look at look at this picture carefully? elaine: carefully? jerry: because i'm not sure and and and correct me if i'm wrong but i think i see ... a nipple. elaine: what? jerry: here. take a look. what, what is that? elaine: (gasps) oh my god! that's my nipple. jerry: that's what i thought. elaine: that's my nipple. my nipple's exposed. i sent this card to hundreds of people! my parents. my boss. uh, nana and papa. jerry: didn't you look at the picture? elaine: oh god i didn't notice. oh, what am i going to do? you know your whole life you go through painstaking efforts to hide your nipple and then boom, suddenly hundreds of people get their own personal shot of it. kramer: hey! elaine: have you seen the card? kramer: what card? elaine: this car. kramer: yeah, yeah. of course. i took it. elaine: well did you notice anything unusual about it? kramer: no. elaine: well come here and take a look. kramer: yeah, so? elaine: so, what's that? kramer: that's a nipple. elaine: right!! kramer: ooo! elaine: aw, great!? didn't you see that? kramer: aw, no, no i didn't notice it. no, uh, elaine: it's because you made me wear that stupid shirt. jerry: well, maybe no one noticed it. you didn't notice it. let me go get newman. we'll see if he sees it. elaine: no. i don't want him looking. jerry: oh what's the difference. everybody else you know has it. elaine: oh my god. i sent one to the super in my building. my mailman. my ten year old little nephew. sister mary catherine. father chelios. oh my god fred! i sent one to fred. newman: okay. what is it? jerry: take a look at this card. tell me if you notice anything unusual about it. newman: your nipple's showing. jerry: okay. thanks. newman: anything else? jerry: no. newman: all right. see you later. jerry: what? so what? it's a nipple. a little round circular protuberance. what's the big deal? see everybody's got them. see i got them. kramer: i got them too. jerry: everybody's got them. dana: you see it's kind of got a little piece of cloth that's slipped underneath and it's ... george: pull it up a little bit. dana: uhg. well you hold it. wait, uh, damn it! i can't move it. god, i've never seen a zipper so stubborn. damn it! i almost had it. george: yeah, okey, wait wait. that will separate. dana: no. let me try... george: take it right off the chest... dana: ugh, .. george: you're gonna rip it. you're gonna rip it. dana: yeah!! ugh!!! arg!!! ... i am afraid we're going to have to stop. george: okay. uh, my mother is is going to pay for the sessions. ... oh,elaine? dana: yeah. george: (stares at card) jerry: no, no, no, no, oh, no. jerry: well every day for the past four days she hasn't returned one call. george: was it a scratch or a pick? jerry: it was a scratch. george: hey. it's me. jerry: don't you think i know the difference between a pick and a scratch? jerry: yeah? elaine: (oc) it's me. jerry: come on up. george: was there any nostril penetration? jerry: there may have been some incidental penetration. but from her angle she was in no position to make the call. george: so let's say in her mind she witnessed a pick. okay, so then what? jerry: is that so unforgivable? is that like breaking a commandment? did god say to moses thou shalt not pick? george: i guarantee you that moses was a picker. you wander throughh the desert for forty years with that dry air. ... you telling me you're not going to have occasion to clean house a little bit. jerry: let me ask you something. if you were going out with somebody and if she did that what would, would you do? would you continue going out with her? george: no. that's disgusting! elaine: you cannot believe what i'm going through. that card is plastered all over the office. everybody is calling me, nip! ... yeah. that's my new nickname at the office. nip! these guys keep asking me out for drinks. not only that, fred, you know the guy i told you about? he hasn't called me in three days. ... [sees card] oh please! george: hey. how come i didn't get a christmas card? everybody else got one. jerry got one, kramer got one. i thought we were good friends. i don't get a christmas card. i don't get it. elaine: you want a christmas card? you want a christmas card? all right here. [rubs george's head on her breasts] here's your christmas card. kramer: got any double crunch? jerry: yeah. i think i do. kramer: what's that perfume? elaine: what, ocean. kramer: that's mine. that's my smell. jerry you've got to get that model to get me an appointment with calvin klein. jerry: i can't she won't return my calls because she caught me in a pick at a light. kramer: i thought you said it was a scratch. jerry: but that's not what she thinks. george: why don't you call her agency. maybe she's been out of town and she didn't get the calls. jerry: all right. i'll call the agency. [elaine grabs card from george] hello. yes, i'm trying to get in touch with tia van camp. do you know if she's been in town? she's been in town. oh really. well thank you very much. [hangs up] she has been in town. she's at calvin klein's right now. kramer: let's go. george: it'll be different this time. susan: i need someone a little more stable. george: i'm not stable? i'm like a rock. i take these glasses off, you can't tell the difference between me and a rock. i put these glasses on a rock. you know what jumps into most people's minds? costanza! susan: people don't change. george: i change i change. two weeks ago i tried a soft boiled egg. never liked it before. now i'm dunkin a piece of toast in there and i'm loving it. susan: i'm not a soft boiled egg. george: and i am not a piece of toast. susan: i just don't think we have anything in common. george: that's okay. that's good. you think louie pasteur and his wife had anything in common? he was in the fields all day with the cows, you know with the milk, examining the milk, delving into milk, consummed with milk. pasteurization, homogenization, she was in the kitchen killing cockroaches with a boot on each hand. susan: why were there so many cockroaches? george: because. there was a lot of cake lying around the house. just sitting there going with all the excess milk from all the experiments [grins] susan: and they got along? george: yes! yes. you know. she didn't know about pasteurization. he didn't know anout fumigation. but they made it work! kramer: i want to talk to calvin. secretary: you can't go in there. kramer: let me talk to calvin. tia: kramer? kramer: yeah, uh. calvin klein: who are you? kramer: i'm here to talk about the ocean. calvin klein: oh, yes kramer. i uh, think i know something about this. will you excuse us tia? [tia leaves] kramer: now i don't want any trouble calvin. calvin klein: neither do i. jerry: hello there you are. tia: what are you doing here? jerry: well, i had to talk to you - i noticed you haven't been returning my calls. tia: well, i've been busy. jerry: because i - i thought we had a good time the other night, an' the only explanation i can come up with is that you think that you caught me (flustered, he indicates a nose pick) tia: (waving him off) i'd rather not talk about this.. jerry: but i was clearly on the outer edge of the nostril. tia: i know what i saw. (turns toward the elevators) jerry: but there - but there was no pick! i - i did not pick! there ws no piick! tia: i gotta go. (quickly walks away from jerry) jerry: no! no pick! [setting: calvin klein's office] kramer: all right, now here's the scoop, jockey. i, uh, i came in here last january to talk to one of your ffflunkies.. klein: (reflecting on kramer) interesting face.. kramer: yeah.. and, um, when i told him my idea about the beach cologne, you know, he - he laughed at me. klein: you're very lithe, aren't you? very graceful. kramer: well, yeah. klein: sit down, eh? (kramer, misjudging one side of the couch, sits down uncomfortably) you're very lean, but muscular.. kramer: you know, i try to take care of myself. i - i watch what i eat. ah, just recently i cut out fructose. klein: you're spectacular. kramer: (flattered) oh? [setting: elaine's office] elaine: i told you, fred - my friend's next door neighbor took it. fred: (incredulous) soo - what happened?! elaine: well, i-i-i must a missed a button. i forgot to button it. fred: i really don't see how you could miss a button like that. elaine: oh, you've never missed a button?! (phone rings, she puts it on speakerphone) yeah?.. receptionist: your sister, gail. elaine: oh, god - my nephew. (picks up the phone and hits the button) hi, gail!.. yu.. yu... yes, gail, i know how old he is. co-worker: (pokes his head into the doorway) hey, nip, ya need that manuscript or can i take it home? elaine: yeah, take it! take it!.. an' stop calling me "nip"! (co-worker takes it and quickly leaves. elaine goes back to the phone) it was an accident! well.. well.. it's gotta be somewhere. look under his mattress. [setting: susan's apartment building] [setting: calvin klein's office] woman: about the focus group? i had nothing to do with the focus group. what's your point? (she sees kramer emerge from another room. he's wearing only dress shoes, socks, and his briefs) my.. he's sexual, athletic.. an' without a trace of self-consciousness! klein: his buttocks are sublime! man: of course, his pectorals could use a little work - i suppose we could get him into the weight room. woman: (mesmerized with kramer's body) no, let's get him in the studio today. we can send these out immediately. man: you've done it again, c.k.! [setting: calvin klein office building] jerry: an' what if i did do it? even though i admit to nothing, and never will. what does that make me? and i'm not here just defending myself but all those pickers out there who've been caught. (elevator doors open) each an' every one of them, who has to suffer the shame and humiliation because of people like you.. (everyone but jerry is now in the elevator. jerry's still addressing them) are we not human?! if we pick, do we not bleed?! (elevator doors shut. a few people in the hallway are looking at him, he turns and addresses them) i am not an animal! [setting: elaine's office] elaine: i did not bare myself deliberately, but i tell you, i wish now that i had! (fred, shocked by her speech, flees. she calls after him, still standing at the hallway) because it is not me that has been exposed, but you! for i have seen the nipple on your soul! gx: so the minute i started up the steps to her apartment i knew i made a terrible mistake. going back with her. so we're in her apartment she goes into the bathroom. i'm cursing myself; now how do i get out of this? then it hits me like a bolt of lightening. the pick. jerry: the pick? elaine: the pick? george: she comes out of the bathroom, i'm in up to my wrist. you should have seen the look on her face. jerry: i think i've seen that look. kramer: i've got the magazine. the underwear ad came out. jerry: boy, they really worked on your pectorals. george: your buttocks are spectacular. elaine: oh my! kramer: what? elaine: i'm not sure but... i think i see your... % a night at the improv. jerry receives some disturbing news from the manager: the show has been delayed. jerry: you don't understand. i got this all timed out. i got another spot across town at 950, i'm not gonna be able to make it! kernis: i hear you, guy. jerry: and i'm doin' letterman monday. you know, i gotta work out the material! % in the background is the plot complication of the week: buckles. the manager assures jerry that buckles isn't on the menu. he just hangs around hoping that somebody drops out. kernis: why don't you come back and do the 11 o'clock spot? jerry: no, i'm supposed to meet my friends to see this movie ``checkmate'' at 1030. buckles: hey, jer! jerry: [not losing a step] heeeeyyyyyyyy..... [and out the door] george: excuse me, do you have a ticket? man: no. george: okay. good. % misunderstanding number one: when jerry shows up at the other comedy place, the manager tells him his spot was for 915, not 950. the manager had no choice but to give jerry's spot to... buckles: jerry! jerry: what are doing here? buckles: hey, do you think this is funny? ``why do they call it athlete's foot? you don't have to be an athlete to get it. i mean, my father gets it all the time, and believe me, he's no athlete!'' elaine: i've been *dying* to see ``checkmate''. george: well, if it's as good as ``ponce de leon'', i'll be happy. elaine: ``ponce de leon'', are you kidding me? i hated that movie! george: ``ponce de leon''? but that was great! elaine: oh, . that fountain of youth scene at the end, where they're all splashin' around, and then they go running over to the mirror to see if it really worked? i mean, come on! [laughing too hard to continue] that's stupid! george: lemme tell you sum'in. when ponce looked in that mirror and saw that he hadn't changed, and that tear started to roll down his cheek? ... i lost it. % apparently, a movie that can be interpreted on two levels. misunderstanding number two: kramer joins george and elaine after looking for them at the paradise twin around the corner. elaine hates the paradise because it's a multiplex; she'd rather see a movie on a big screen. something catches kramer's eye. kramer: listen, i'm gonna get a hot dog at payapa king. george & elaine: no, wait! george: you're not going to get back here in time! kramer: i'm starvin', i haven't had any dinner! elaine: you can get a hot dog in the theater. kramer: i don't wanna get a movie hot dog! [in tears] i want a papaya king hot dog! elaine: kramer, jerry is going to be here any second, and then this line is going to start moving, and we're going to end up in the front row. kramer: well, just save me a seat. elaine: no! i don't want to save seats. don't put me through that! i once had the fleece just ripped out of my winter coat in a seat-saving incident! george: i'm in line to buy. elaine: no, george, this is the ticket- line. george: no it's not, it's the ticket- line. elaine: then how come we're not moving? kramer: good question. george: is this the ticket holders line, or the buyers? man: holders. george: but i asked you before if you had a ticket, and you said no! man: i didn't. my friend was getting it. george: [furious] good. it's good to be accurate like that. elaine: can you believe him? kramer: he's spaced out. elaine: how long would *you* have stood in the ticket-holders line? kramer: [thinks for a while] elaine: [gives up] yeah, exactly... % the movie has sold out. ``real good, george. real good.'' it's now 10: 20, and kramer suggests they go watch the 1045 showing of "checkmate" at the paradise. elaine enters whine mode. elaine: i don't wanna go to a... miniplex multi-theater! george: it's the same movie! what's the difference? elaine: it's not a theater, it's like a room where they bring in pows to show them propaganda films. jerry: [to taxi driver] take the park! buckles: no no no, take 55th. buckles: jerry, i want you to do me a favor. no more fish! jerry: [rubbing his eyes hoping the nightmare will end] okay, i get your point! buckles: i had a point? george: hey, you know what else is playing here? ``rochelle rochelle''. elaine: sigh/ugh. george: i wouldn't mind seein' . elaine: yeah. you know, men can sit through the most boring movie if there's even the slightest possibility that a woman will take her top off. george: so what's your point? george: by the way, you owe me seven fifty. elaine: oh, all right. can you break a twenty? george: no, i don't have any change. elaine: oh, well, then i'll pay you later. george: or, i could take the twenty, then i could pay *you* later. elaine: yeah, you *could*... george: might be easier. elaine: i mean, how is that easier? i mean, then you would owe me twelve fifty instead of me owing you seven fifty. george: [trying to act as if he doesn't care one way or the other, but we know better] either way. elaine: yeah. george: so... can i have it? elaine: i tell you what, i'll get the popcorn and the soda. george: whaddya mean, you'll ``get'' the popcorn and the soda? elaine: i will buy your popcorn and soda. we'll call it even. george: i tell you what, you give me the twenty, and i will buy *you* a popcorn and soda, and i'll throw in a bon-bons. elaine: [exasperated] george, you're sappin' my strength. george: you go in and save seats. elaine: [in a panic] me!? but that's three seats! i can't save three seats! i told you about that guy who tore up my winter coat! buckles: jerry, i want you to have this piece of material. jerry: that's very nice of you, but i can't do the voices. buckles: jerry! don't start up with me! jerry: i gotta get out of this cab... buckles: but jerry, quit riffing! jerry: no, i'm not riffing. i'm ignoring! do you understand the difference? buckles: [pause] can you help me get on the tonight show? elaine: no, these are saved. man: all of them? c'mon, you can't take *four* seats. elaine: what, is that a rule? george: well, why don't *you* go, and i could save the seats. you said you didn't like saving anyway. elaine: [stopping someone from sitting in the seat next to her] no, *taken*, taken, taken. [to george] [shrugs] i'm getting the hang of it. george: why don't you give me the twenty, and i'll stop and get change, and then you and i can... uh... you-know, settle. elaine: can we do this later, george? george: psh. what's the point of even discussing it? [condescendingly takes her hand and pats it] you'll give me the money when you have it. [takes two steps, then reconsiders, then re-reconsiders] i, i trust you. kramer: could you do me a favor? if you see a guy that's five foot eleven, he's got uh a big head and flared nostrils, tell him his friend's going to be right back, okay? elaine: no, i'm sorry, these are taken. ... they're in the lobby buying popcorn. ... what are you doing? these are taken, these are taken! woman: which one? elaine: these two and this one. ... no! don't come over here! these are taken. go! go! these are taken! they're taken! they're taken!!! elaine: oh, take 'em. george: um, excuse me, have you see a guy with like a horse face, big teeth, and a, and a pointed nose? clerk: ... flared nostrils? george: yeah. clerk: nope, haven't seen him. buckles: jerry, could you do me a personal favor? and if i'm out of line, *please*, let me know. could i keep my trench coat in your closet for a few months? jerry: your trench coat in my closet? buckles: jerry, my closet is packed to the gills, i'm afraid to open the door. just for a few months. it'll make all the difference in the world. buckles: we should see ``rochelle rochelle''. i hear it's really hot. jerry: no thanks, maybe some other time. buckles: really? do you really mean that? jerry: no, i don't. buckles: you liked the athlete's foot bit, right? jerry: no. no. i was kidding. it's terrible. jerry: hi, i got some friends inside, i gotta get a message to 'em. mind if i walk through real quick? usher: [indicates ``okay''] kramer: hey, did that guy show up? clerk: the guy with the... horse face... and the big teeth... kramer: no, the guy with the big head and the flared nostrils. clerk: haven't seen him. there was a short guy with glasses... looked like humpty-dumpty with a melon hat. but he left. woman: so i got home, and he was vacuuming! i mean, he's twelve years old! who else but my alan would do something like that? woman: and then last night, he put on my high heels. oh, he put on such a show for us! he was dancing around, lip-sync'ing to ``a chorus line'', i mean you can see he's got talent. elaine: [annoyed] excuse me, excuse me. woman: what's the problem? elaine: [momentarily shocked, as if the answer were self-evident] you're talking. woman: it's the ``coming attractions''. woman: so anyway, he sings, he dances. and do you know what he's gotten into now? he is cooking! he does a crepe... usher: ticket, sir? george: uh, i just went out, i went to look for my friend? usher: do you have your stub? george: [as if the word were totally foreign] my `stub'? usher: mm hm. george: you don't remember me? usher: it's a big city, sir. george: i went in with a pretty woman? you know, kinda short, big wall o' hair, face like a frying pan? george: [whispering] elaine? [loud whisper] elaine! [louder whisper] elaine! george: [quite out loud, not even pretending to whisper] elaine! narrator: the village voice calls it a masterpiece. a young woman's strange, erotic journey from milan to minsk. narrator: it's a story about life. and love. and becoming a woman. ``rochelle rochelle'', now playing at paradise 2. elaine: uh, could i have a medium diet coke? clerk: do you want the medium size or the middle size? elaine: what's the difference? clerk: well, we have three sizes. medium, large, and jumbo. elaine: [momentarily perplexed] what happened to the small? clerk: there is no small. small is medium. elaine: what's... medium? clerk: medium is large, and large is jumbo. elaine: oh-kay. gimme the large. clerk: that's medium. elaine: right. yeah. [fearing the answer] could i have a small popcorn? clerk: there is no small. [flash of perky inspiration] child-size is small. elaine: what's `medium'? clerk: adult. elaine: do adults ever order the child-size? clerk: [chuckling] not usually. elaine: [laughs appreciably] okay, gimme the `adult'. clerk: do you want butter? elaine: is it *real* butter? clerk: [perkily] it's butter-*flavored*! elaine: [exasperated] what is it made of? clerk: [perkily] it's yellow! jerry: 44th and 9th. driver: have you got a cigarette? jerry: no. usher: ticket, sir? george: we've just been through this! you don't remember? we just had this exact same conversation a minute ago! usher: i need to see your stub. george: [realizing the only way out is to show the stub] i've got the stub. george: there you go, okay? that's my *other* friend's ticket. you happy now? you got two tickets. usher: ticket, sir? kramer: uh, no, see, my friend already bought me a ticket. i'm late, and she's inside. usher: go ahead. kramer: is that seat taken? woman behind elaine: it's all yours. driver: i'm very sorry, you give me few minutes. i have to stop for gasoline. jerry: gasoline? can't you get it after you drop me off? driver: [taken aback] no! impossible! it is on `empty'! man: you're soaking wet. who are you? rochelle: my name is rochelle, i'm from milan. i'm supposed to visit my relatives in minsk. man: here, stand by the fire. take off those wet clothes, you'll catch cold. rochelle: oh, my hand's so cold, i can barely get these buttons open. rochelle: oh, that's much better. much... elaine: i just went to get popcorn... ugh... [shakes more popcorn] i just went to get popcorn, okay? and and and somebody took my seat, and my coat is in there! usher: there's a seat in the front row. elaine: no no, i can't sit in the front row. usher: well, you're going to have to wait, then. elaine: i can't stand around here for *two hours*! usher: i could let you see ``rochelle rochelle''. elaine: [heavy sarcasm] oh. thanks. elaine: oh, hey, listen, by the way, have you seen a tall... lanky... doofus, with a, with a bird-face and hair like the bride of frankenstein? usher: haven't seen him. % from his pocket, kramer digs into his treasured papaya king hot dog. then discovers the source of his discomfort: he's sitting on a coat. jerry: hey, did i make it? kernis: sorry. jerry: oh, great. that's great. what a night. announcer: pat buckles, ladies and gentlemen. another round of applause for pat buckles! jerry: you got my spot? buckles: that athlete's foot bit killed! jerry: really... buckles: do you think i need to lose some weight? jerry: weight? naw. just need some more height. jerry: my whole night's ruined. i didn't do any sets, didn't do any movies... buckles: come on, we can still catch most of ``rochelle rochelle''. jerry: ``rochelle rochelle'', huh? buckles: a young girl's strange, erotic journey from milan to minsk. jerry: [his interest piqued] minsk? elaine: oh, gimme a break! jerry: elaine? elaine: jerry! jerry: elaine! voice: [whispered] shut up. george: jerry? jerry: george? george: elaine? elaine: george! [waves hi] jerry: hey, where's kramer? voice: [whispered] will you shut up? elaine: i don't know. does this movie stink or what! jerry: let's get outta here. [to buckles] i'll see ya. buckles: you're leaving? jerry: yeah. buckles: [holding out his coat] jerry, take the coat. please. one month. jerry: i don't want the coat. buckles: jerry! call me when you get home so i know you're okay! george: [studying his jacket] oh man! look at this! i sat in gum. oh, by the way, you owe me seven fifty. jerry: i didn't even use the ticket! george: i still paid for it! jerry: i only have a twenty. elaine: that's my coat! gimme that. where did you get that? kramer: it was on the seat... elaine: *you* took my seat!? george: you uh owe me for the ticket. kramer: yeah, right... elaine: what is that stain [on my coat]? kramer: it's yellow mustard. [to george] can you break a twenty? i always get confused in the movie theater by the, by the plot. it's embarrassing. it's an embarrassment to have to admit, but i'm the one that you see in the parking lot after the movie talking with his friends, going: ``oh, you mean that was the same guy from the ... ohhhhhhhhhh...'' nobody will explain it to you. when you're in the theater, you can't find out. [whispering to imaginary friends seated around him] ``why did they kill that guy?... why did they kill him?... who was that guy? what was the... i thought he was with them? wasn't he with them? why would they kill him if he was with them? oh, he wasn't *really* with them.... i thought he was with them. it's a good thing they killed him.'' george: so you're a lawyer. what kind of cases do you handle? cheryl: oh, everything. divorce, patents, immigration and naturalization. george: what is that, immigrants come over, you show them how to act natural? george: no, they're not funny at all. no, i have no funny friends. i'm the funny one. el clowno. elaine: look, i was nice enough to pick it up for you jerry: hey, i've been back four days, i want my mail. elaine: it's mostly bills, magazines and junk mail anyway. jerry: elaine, that's what mail is. without bills, magazines and junk mail, there is no mail. cheryl: here's my card. george: oh, ok. thank you. it was good talking to you. cheryl: nice meeting you. george: yeah. elaine: hi! jerry: hey, how ya doin? george: you would not believe what just happened. i was waiting for you and this woman was sitting at the counter. elaine: what, the one who just left? george: yeah, yeah, and we started talking, and she's this lawyer who's incredible! everything i said was funny! you know, she laughed at everything i said, she thinks i'm hilarious. you know in a way, it was almost too good. i started so good, i can't go any place but down now, ya know? i got no place to go. elaine: yeah, well, i guess it's all over. jerry: (looking behind the counter) hey, is that babu? it is! (walking over) hey, babu! babu: jerry! jerry: look at you, you got the job. babu: yes, yes, they give me job thanks to you. jerry: oh, i didn't do anything. babu: yes, you do everything, get me job, you get me a place to live in your building. jerry: come on. babu: you very very good man, you do everything for me. my family and i can never thank you enough for everything you do. george: you see, this is what i do with women. i start out too strong, now i have to become real, that's when it all falls apart. what good is real? they don't want real, they want funny. elaine: no they don't. george: ooooh, yes they do. elaine: nooo. george: ya gotta put on a show, ya always gotta give them a big show. you always have to be 'on' otherwise why would they like me? they'd just go for a better looking guy with more money. george: you mean that's true, i'm right?! jerry: ok, great, well, i'm glad everything worked out, babu. babu: oh, yes, yes, everything wonderful. jerry: ok, i'll see you around the building. babu: i'll see you *in* the building. jerry: (returning to the table) remember babu bhatt? george: who's he? jerry: remember that guy who opened the restaurant across the street from the building last year and he wasn't doing so well and i told him he should make it into all pakistani and that drove him right out of business? so, you uh, going with me to the auto show with me saturday? elaine: yeah, yeah. jerry: can you bring my mail then? george: what mail? elaine: i picked up his mail while he was on the road george: why didn't kramer pick it up? jerry: cause he's at that baseball fantasy camp in florida. george: oh yeah, right. when's he coming back? jerry: monday, i think. george: kramer goes to a fantasy camp. his whole life is a fantasy camp. people should plunk down two-thousand dollars to live like him for a week. do nothing, fall ass-backwards into money, mooch food off your neighbors and have sex without dating; that's a fantasy camp. jerry: hey listen, if you're gonna go out with this lawyer, why don't you have dinner with us and then maybe you can go to the auto show with her if you want, you know, have a little company, take the pressure off. jerry: ...he never heard of corduroy! cheryl: (howling with laughter) stop it, you're killing me!! jerry: he never heard of corduroy! true story, true story. george: no, no i don't think so. elaine: why? george: well i think i'm better off going one-on-one. jerry: i don't know why you want to play man-to-man when you could play a zone. george: she might not be comfortable. elaine: why? we're all very nice, we're very friendly. jerry: we'll be funny. george: no! no. it's not good, i don't think so. elaine: alright, well if you change your mind, we'll wind up as isabella's probably around seven. jerry: no, no isabella's, i don't want to go to isabella's. elaine: why? jerry: no, it's too trendy, no isabella's. george: (tasting the wine) excellent. like i really know what i'm talking about. george: toasting makes me uncomfortable. but toast, i love. never start the day without a good piece of toast. in fact, let's toast to toast. jerry: look who's here! georgie-boy! george: what are you doing here? i thought you said you hated isabella's? elaine: no, i talked him into it. george: what happened to the auto show? jerry: oh, we're still going, we're still going. elaine, do the spokes model. elaine: the turbo quadramatic transmission offers you the power and prestige to propel you well into the 21st century. george: cheryl, elaine, and uh, jerry. cheryl: would you like to join us? george: oh no no no, they don't want to join us. cheryl: oh no, it's ok, don't be silly. elaine: ok, well why don't we just put these two tables together? george: (as the others are repositioning the tables) no, no, you can't do that, they're round, it makes an 'eight' and, yeah, well alright. elaine: jerry? jerry, tell them that funny story you were telling me-- george: no! no. elaine: no george, it's so funny. we saw this cab driver's picture, right? george: (interrupting) you know we should really order, the service is so slow here, by the time you get anything... elaine: oh, cheryl, can i ask you a legal question? um, i'm being sued. cheryl: oh? what happened? elaine: well, i ran out to apologize to a virgin and i crossed against the light and i knocked over the delivery boy. cheryl: was he chinese? elaine: yeah. cheryl: is your last name benes? jerry: how did you know? cheryl: ping is my cousin! elaine: no! jerry: that's so funny! cheryl: i'm handling his case! elaine: what? you're cheryl fong? cheryl: that's right! elaine: oh my god, i can't believe it! that is such a coincidence! cheryl: yeah, i know! elaine: wow, well, i guess you don't have any advice for me on how to win the case? cheryl: will you excuse me? i have to make a call. elaine: tell ping i said hello. jerry: tell him you think you may have broken the case wide open. jerry: what? george: this is not good. this is not good. jerry: what's the matter? george: i just don't think it's such a great idea for you to sit here. jerry: why not? elaine: he thinks that if you're too funny, he might not look so funny. jerry: biff? george: what? jerry: you're not worried about that? george: no, of course not. jerry: i mean, so what if i'm funny? who cares? elaine: he thinks that if a woman sees a guy put on a better show, she'll walk out on his show, go see the other show. jerry: well, should we leave? george: maybe you don't have to be so funny. i mean, would it kill you not to be so funny all the time? that's all i'm asking. this woman thinks i'm very funny. now you're gonna be funny, so what am i gonna be? i'm gonna be a short bald guy with glasses who suddenly doesn't seem so funny. elaine: this is so ridiculous. can we just go over there? jerry: i don't have to be funny, i don't care. george: you don't? jerry: no way! it's completely under my control. elaine: no, it's not. you cannot not be funny. jerry: of course i can, am i being funny now? elaine: a little. jerry: oh, this is funny? i'm being funny? elaine: yeah. jerry: george, is this funny? george: it's funny! (to elaine) and it wouldn't kill you to not be so funny either. elaine: what? what did i do? george: hi. jerry: (subdued, almost somber) hello. welcome back. cheryl: sorry, it was my aunt's birthday and she makes such a big deal about it. elaine: well, nobody likes to get old, right? jerry: well, birthdays are merely symbolic of how another year has gone by and how little we've grown. no matter how desperate we are that someday a better self will emerge, with each flicker of the candles on the cake, we know it's not to be, that for the rest of our sad, wretched pathetic lives, this is who we are to the bitter end. inevitably, irrevocably; happy birthday? no such thing. george: funny guy, huh? elaine: here, take it. i was glad to get rid of it. jerry: well thank you very much, it's about time. elaine: oh listen, guess what? cheryl convinced ping to drop the case against me. jerry: drop the case? well, congratulations, that'll save you some money. elaine: yeah, no kidding. that lawyer was gonna charge me a fortune. jerry: (leafing through his mail) oh great, a birth announcement from arnie and joy harris. jerry: hear that? guess who's back. (opening the door) hey! kramer: hey. jerry: i thought you weren't coming back till monday. kramer: well, the camp ended a few days early. jerry: why? kramer: uh, well there was an incident. jerry: what happened? kramer: i punched mickey mantle in the mouth. jerry: what? kramer: yeah, i punched him and they took him to the hospital and then they canceled the rest of the week. elaine: you punched who in the mouth? kramer: mickey mantle. jerry: what happened? kramer: well, you know, we were playing a game and, you know, i was pitching, and i was really throwing some smoke. and joe pepitone, he was up, and man that guy, you know, he was crowding the plate. jerry: wow! joe pepitone! kramer: yeah, well, joe pepitone or not, i own the inside of that plate. so i throw one, you know, inside, you know, a little chin music, put him right on his pants. cause i gotta intimidate when i'm on the mound. well the next pitch, he's right back in the same place. so, i had to plunk him. jerry: you plunked him. kramer: oh yeah. well, he throws down his bat, he comes racing up to the mound. next thing, both benches are cleared, you know? a brouhaha breaks out between the guys in the camp, you know, and the old yankee players, and as i'm trying to get moose skowron off of one of my teammates, you know, somebody pulls me from behind, you know, and i turned around and i popped him. i looked down, and woah man, it's mickey. i punched his lights out. jerry: wow, this is incredible! babu: leave me alone! you can't do this to me! jerry: what's going on out there? babu: what are you doing? this is not right, people. you're making a very bad mistake, very bad. jerry: babu? (leaving) i'll be right back. elaine: (to kramer) yeah, so? kramer: then hank bauer, you know, he's screaming, "mickey! mickey! what have you done with mickey? you killed mickey!" elaine: so what'd you do? kramer: well, i got the hell out of there. elaine: they took babu away?! jerry: yeah, the immigration guy said his visa was expired. poor babu, everything was going so well for him. he had an apartment, he had a job. what a shame. jerry: i will, babu! i will help you, babu, don't worry! kramer: then hank bauer, you know, he's chasing me around, he trips over third base and knocks over clete boyer. jerry: (thumbing through his mail) uh oh. elaine: what? jerry: well this is interesting. elaine: what is it? jerry: it's a letter from the immigration bureau, it's babu's visa renewal application form. they must have put it in my mailbox by mistake. kramer: well, doesn't he need that? jerry: if you had given me my mail last week when i got home, this whole thing never would have happened. elaine: well, you should have come to my house to pick it up. jerry: yeah, so am i being funny now? elaine: no, actually, you're not being funny now. jerry: see, i told you i wasn't funny all the time. (george enters) hey george, look, i'm not funny now. george: no, and you weren't funny last night either. in fact, you got us both so depressed, she asked me to drive her home after dinner. jerry: oh look, i need to get in touch with cheryl. babu needs a lawyer, his visa's expired. george: what do you need her for? there's a million lawyers. jerry: yeah, but you said this is one of the things that her firm does. george: alright, alright, but no funny business, same deal as last night. jerry: ah, will you stop it already? george: jerry, please? jerry: how long is this gonna go on? george: till i'm comfortable. jerry: well, when is that gonna be? george: after consummation. jerry: consummation? i don't think you have enough material. cheryl: i actually have a friend in the immigration department who owes me a big favor. you're very lucky. jerry: (somber) that's wonderful news. thank you. cheryl: you're a very serious person, aren't you? jerry: well, with so many people in the world deprived and unhappy, it doesn't seem like it would be fair to be cheerful. cheryl: i understand. cheryl: i think it's curdled. jerry: i don't care. cheryl: do you ever laugh? jerry: not really. sometimes, when i'm in the tub. cheryl: that's so sad. what do you do? jerry: i'm a comedian. oh, let me get that. (reaching for the check) you've been so helpful. elaine: (entering as jerry heads to the register) hey, we're gonna go see babu now, right? jerry: yeah, i'll just pay for this. elaine: oh, i'm just gonna go say hi to cheryl. (walking over to the booth) hi. cheryl: hi. elaine: listen, gosh, i wanted to thank you so much for convincing ping to drop the case. cheryl: well, after we met, you were all so nice. i just couldn't go through with it. but between you and me, you would have paid through the nose. jerry: babu! babu: jerry! jerry, hello jerry! jerry: you remember elaine. babu: yes, yes of course! elaine: nice to meet you. babu: so nice of you both to come. jerry: oh, babu. babu: no no, you're both very kind, very kind. elaine: we try. jerry: we do what we can. elaine: we do what we can. babu: the problem is i never got my visa renewal form in the mail. i was expecting it. jerry: yes, well, see, here's the thing, babu. um, what happened was i was away for a couple of weeks doing some comedy shows. babu: comedy shows! you're a very funny man. jerry: well, elaine here was picking up my mail while i was away, because you know that little box can get very full. babu: oh yes, of course. tv guide, magazines, everything. you know, i would have picked up your mail, your box is right next to mine. jerry: oh, i don't want to bother you. babu: no bother! you get me job, you get me apartment, you very very good man. jerry: so yesterday, after they took you away, i looked in my mail and i noticed that the mailman accidentally put your visa renewal in my mail box. babu: come again? jerry: you see, i've been home for a week and elaine didn't give me my mail until yesterday, even though i asked her repeatedly for it. elaine: yeah, but babu, he could have come to my house to pick it up. babu: you had my visa application?! jerry: well not technically. babu: (extremely and suddenly agitated) i kill you!! jerry: well what about her? babu: i kill both of you!! jerry: babu?! babu: no babu! no babu! you bad man! you very bad man! you very lazy bad man! jerry: babu, i'm gonna fix everything! i have a lawyer who knows someone in the immigration department, they're gonna straighten the whole thing out, the wheels are in motion, things are happening even as we speak! babu: the wheels are in motion? jerry: the wheels are in motion, things are happening! george: jerry? cheryl: i'm very attracted to him. george: you think the person you were talking to is him? that's not even close to him. he's funny, jerry's funny. cheryl: he never said anything funny. george: he can't not be funny. cheryl: no no no, he's dark. and disturbed. george: dark and disturbed? his whole life revolves around superman and cereal. i convinced him to act like that so that you would think i was funnier. that's how disturbed i am! if you want disturbed, that's disturbed. you can't find sickness like that anywhere, you think sickness like that grows on trees? nobody is sicker than me, nobody. he's pretending, i'm the genuine article. cheryl: so you're telling me jerry's whole thing was an act? george: yes! and i put him up to it, because i'm sick! i'm the one that needs help. cheryl: i gotta go. george: well, should i call you later? cheryl: please don't. george: but, but i'm disturbed! i'm depressed! i'm inadequate! i got it all!! elaine: so, what's up with babu? how come he's not back? jerry: i don't know, i don't understand it. cheryl was supposed to take care george: it's george. jerry: c'mon up. jerry: babu must be back. babu's brother: babu, my goodness, what has happened to you? jerry: where's babu? babu's brother: he is in pakistan! jerry: who are you? babu's brother: i am his brother. he knew a lawyer, it was all going to be fixed. jerry: i'm sure the lawyer did everything they could. babu's brother: then where is babu? what happened to babu? show me babu! elaine: (offering a drink) snapple? babu's brother: no, too fruity. jerry: hey, what happened? i thought cheryl was gonna help babu get his visa. george: she didn't help him? jerry: no. george: where is he? jerry: he's in pakistan. george: oh boy. jerry: what do you mean, oh boy? george: well, last night she told me that she liked you. not you, the disturbed you, so i had to tell her the truth. jerry: told her the truth? well, you got babu deported. george: what do you mean, i got? you didn't give him his visa application. jerry: that's because she had my mail. elaine: yeah, well i wouldn't have had to get your mail if he hadn't gone to that fantasy camp. kramer: well, i just came back from mickey mantle's restaurant. jerry: how could you go in there? kramer: well, i had to. i had to apologize. i mean, i punched mickey mantle, my idol. it was eating me up inside! jerry: well, what happened? kramer: i got down in my knees and went, "go ahead, mickey. hit me. i'm begging you, mickey, please hit me. c'mon, hit me. i love you, mickey, i love you!" elaine: so, what did he do? kramer: well, the four of them, they picked me up by my pants and they threw me outside, right into a horse. voice: kramer? kramer: yeah? it's my chinese food. elaine: oh! ping! hi! listen, thank you so much for dropping that lawsuit against me. ping: not anymore. elaine: what? ping: cheryl call me last night, lawsuit back on. elaine: why? ping: she call you and your friends big liars. you think she nice girl? wait till you see her in court. she's a shark! they call her the terminator. she never lose a case. now you make her mad. she double the damages. hasta la vista, baby. babu: so his friend got the mail but she did not give it to him. and then he came to visit me. said the lawyer was called to help, he said the wheels were in motion, but there was no motion. there was nothing. and so they sent me back here. babu's friend: this is a terrible story, babu. what are you going to do? babu: i'm going to save up every rupee. someday, i will get back to america, and when i do i will exact vengeance on this man. i cannot forget him. he haunts me. he is a very bad man. he is a very very bad man. george (writing on a notepad): wait a second, wait a second...and then the butler says, "i'm not cleanin' it up! i'm sick of cleaning!" jerry (copying it down and grinning): that's funny, that's funny! "i'm sick of cleaning." that's very funny. george (laughing): i'll tell you something, i've never seen a pilot script as funny as this! jerry: yeah, it's funny! george: i mean, how funny is this? jerry (low voice): it's funny. george: i mean, we're not stupid, right? we know when something's funny! jerry: it cannot not be funny! now come on, let's stay with it, we gotta finish this today. george: okay. hey, you know what, maybe i should give it to my therapist to read. she's smart, i trust her. jerry: yeah, maybe i'll give it to elaine. george: hey, you know, we haven't brought the elaine character into the show yet. umm, we should try and get her into this scene. jerry: right, right. okay. (writing) elaine enters. george: right jerry: (thinks) what does she say...? george (thinking): i don't know, what do women say? jerry: i don't know. george: i don't even know what they think. that's why i'm in therapy. jerry: you know, if we bring elaine in, it's going to be so many people to keep track of. it's gonna be too hard, i'll forget where everybody's standing, you, me, kramer, the butler, it's too much. george: alright, forget elaine. jerry: alright. (they tear the pages out of their notepads. kramer enters.) kramer: hey. george: hey. jerry: hey. kramer (to jerry): you are never gonna believe who i just ran into today. jerry: who? kramer: your old flame. gail cunningham. jerry: did you talk to her? kramer: well, i was on my way to the y, and i saw her coming towards me? i didn't know what to do! because i remembered you had three dates with her and she wouldn't kiss you goodnight. so now i'm thinking you know, what is my duty to my friend? do i acknowledge her? do i you know ignore her? i mean, what is my responsibility here? jerry: so what happened? kramer: yeah, yeah, so she sees me and she goes, (imitates gail) "oh, hi! kramer!" you know? like nothing happened! like she never you know went three dates with you and refused to kiss you goodnight. jerry: yeah, i know about the three dates. kramer: you know what i did? i snubbed her. jerry: what do you mean, you snubbed her? kramer: i walked right by her - bffffft - never said a word. jerry (smiling): right by her? kramer: right by her! jerry (to george, hugs kramer happily): what you do say about a guy like this, huh! (george applauds.) you are some great friend, i tell ya, snubbed her! (seriously) not that i condone it. i've never condoned snubbing in my administration. but your loyalty is beyond question. kramer: yeah. well, you know, she was lucky i was in a good mood - coulda been a lot worse. elaine (throws the script at jerry): i'm not even in here! jerry: yeah, i know. elaine: well, i thought there was going to be a character named elaine benes. jerry: well, there were too many people in the room, we couldn't keep track of everybody. george, and the butler, and... elaine: you couldn't "keep track" of everybody? jerry: well, we tried. we couldn't. we didn't know how to, uh...(confessing) ...we couldn't write for a woman. we didn't know what you would say. even right now, i'm sitting here, i know you're going to say something, i have no idea what it is. elaine: you have no idea? jerry: something derogatory? (gail enters the coffee shop and walks over to the booth.) gail (to jerry): i thought i'd find you here. jerry: well, gail cunningham. elaine: hi, gail. gail: hi, elaine. (to jerry) hey, what is with your friend kramer? jerry: why? gail: he snubbed me. jerry: are you sure? gail: yeah, i'm sure. what did you tell him? jerry: nothing. (elaine grabs jerry's sandwich and is about to take a bite.) hey, where you goin' with that? gimme that. (takes back the sandwich.) elaine: i thought you were finished. jerry: i took two bites, how am i finished? (elaine coughs.) plus you're coming down with something? you want me to get sick? (offers gail the sandwich) bite? gail: so, how come? why did kramer do that? jerry: i don't know. once he leaves the building, he's out of my jurisdiction. gail: well, tell him that i am mad at him. jerry: alright. so, where ya cookin' now? gail: pfeiffer's. jerry: ah, the power lunch crowd. gail (to elaine): nice shoes! elaine: oh. thank you. gail: where'd you get 'em? elaine (modest): they're um, botticelli's. gail (impressed): ooh, botticelli's! look at you! i'm afraid to go in there. elaine: really. jerry: would you care to join us? gail: no, no, i gotta get to the restaurant. (looks at her watch.) oh! see ya. (exits.) jerry: see ya. elaine (irritated, imitates gail): "oh, look at you, the botticelli's." jerry: that bothered you? elaine: yes, it bothered me. so i bought a pair of shoes at botticelli's, i'm not allowed to shop there? that really embarrassed me. jerry: it did? elaine: yes! couldn't you see that? jerry (thinks): no. this is why you're not in the pilot. dana: well, george, i think you're beginning to get some perspective on things. i think we're making progress. george: yeah, i feel like i've grown. dana: good. so, let's pick up on this next week. george: great. (they both stand.) oh, by the way, did you get a chance to read the script? dana: yes, yes i did. george (beaming): well, what'd you think? dana (unenthusiastic): uh...it was...good. george: you didn't like it? dana: well, no, i - george: i can't believe this! what was wrong with it? what didn't you like about it? dana: it wasn't funny. george: it wasn't funny? what, are you kidding? dana: no, i didn't find it funny. george: you didn't find it funny?! this is what i'm paying for? dana: well, that whole storyline about a guy who gets into a car accident, doesn't have any insurance, so the judge sentences him to be a butler? i didn't really buy that. george: let me tell you who did, uh, buy it...um we pitched this story to russell dalrymple, the president of nbc, and he ate it up with a spoon. dana: george, if you're going to be in a creative field, you're going to have to learn how to deal with criticism. george: how's this for criticism? um...you stink. how do like that criticism? you know what's funny to me? that diploma up on the wall. that is my idea of "com-med-dee"! you sitting here, telling people what to do. dana: i think you'd better go. george: oh, i'm goin' baby. i'm goin.' (heads for the door, then stops.) it's jerry's fault. he took out all my good lines. he's such a control freak! george (immediately, to elaine): so, you send me to this therapist to help me with my emotional disorders, and she criticizes our script. (tosses the script to jerry.) what kind of a therapist is that? elaine: i guess she didn't think it was funny. george: oh, she didn't think it was funny. what is she, rowan & martin? we're supposed to meet with nbc tomorrow! she completely shattered my confidence. and i'm paying for this, she's my employee! jerry: i thought your mother's paying for it. george: and she slaves to earn every penny. so that someday, i might be able to walk up to a woman and say, "yes, i'm bald, but i'm still a good person." jerry (to elaine): you know, he's right. it's not her place to criticize the script, which reminds me - what did you think of it? you never told me. elaine: what did i think of it? (manufactures a cough instead of answering. kramer enters.) kramer (to jerry): hey, buddy, i got something to tell ya. (elaine runs towards to the bathroom in lieu of answering jerry's question.) jerry (catches elaine): hey, one second, you don't get off that easy. c'mon, tell me what you thought. elaine: well, you know, i... kramer: i just kissed gail cunningham. (jerry turns and looks at kramer, shocked. elaine grins and heads to the bathroom.) jerry: you what? kramer: yeah, i kissed her. jerry: you kissed her? kramer: right on the mouth. jerry: what kinda great friend are you? how do you go from snubbing to kissing? kramer: well, i saw her outside the y, you know, she came up to me, she started yelling because i snubbed her, and then we started talking a little bit, and i walked her to her building. and just before i left, i put my arm around her waist, i pulled her to me, and i - mmm - i planted one! (laughs.) jerry: and what did she do? kramer: she kissed me back. jerry: i don't get this. i go out with this girl three times, she doesn't want to shake my hand - why's she kissing you? kramer (realizing): because i snubbed her. you see? women, they like that! yes! i understand women. the snub is good, they love the snub! george: no they don't. i tried that once. i snubbed for a year. nothing. every woman i saw, i snubbed. you never saw people so pleased. (elaine returns from the bathroom.) kramer (to elaine): ooh, so...i understand you're buying your shoes now at botticelli's. elaine: what? who told you that? kramer: gail cunningham. elaine: i don't understand, why is this woman talking about my shoes? why are my shoes a topic of conversation? kramer: well, you know, we were just talking, and uh she mentioned how you're buying your shoes now at botticelli's. elaine (angrily): "how i'm buying my shoes now at botticelli's!" did you hear this? (shoves jerry and kramer.) jerry: so what? elaine: so what?! she is talking about my shoes! she is discussing my shoes! it is nobody's business where i buy my shoes! (storms over to the couch and angrily sits down. jerry, kramer and george look at elaine from the kitchen, comically puzzled by her outburst...) elaine: hey! gail! gail: ya. (noticing it's elaine) elaine...! elaine: why are you talking about my shoes? gail: what? elaine: my botticelli shoes. you've been talking about my botticelli shoes. gail: what are you talking about? elaine: did you or did you not tell kramer that i got my shoes at botticelli's? (a waiter comes over and puts a plate of food on gail's cutting board.) waiter: too spicy. he wants another one. you got that pasta primavera? gail: look elaine, i am very busy here. elaine: who else have you mentioned my shoes to, huh? i wanna know why my footwear is your conversation! gail: i am not discussing this. this is insane. waiter: you got that pasta primavera? let's go! gail: ya ya ya, here. waiter: here you are, mr. dalrymple. russell: thank you. waiter: sorry for the delay. enjoy your lunch. russell (opening the door): well, come in. (they shake hands.) jerry & george: hi. russell: awfully sorry to make you come up here, but i really wasn't feeling well enough to go back to the office, and well, it's the only chance i have to meet with you this week. jerry: are you alright? russell: well, it's my stomach. i think there must have been something in the pasta primavera i had for lunch. jerry: oh, where did you eat? russell: pfeiffer's. jerry: ah. i know the chef there. russell: yeah. the food's usually terrific. george: my cousin worked for bouchard's. they used to use the bouilla-base for a toilet. (jerry and russell are shocked.) russell: what are you saying? george: well, you didn't hear it from me, but needless to say, if you go in there - stick with the consumee. russell: well, we'd better get started, my daughter's going to be here soon. jerry: oh, you have a daughter? russell: yeah, she just turned fifteen last week. george: aw, that's a fun age. (jerry looks at george distastefully.) russell: alright. the script. now, i've read this thing three times...and everytime i read it...(looks nauseous, struggles not to vomit.) jerry: what? russell: excuse me for a second. (gets up and runs to the bathroom.) jerry: what? george: would you like a pepto-bismol? i keep them in my wallet...! (russell goes into the bathroom and shuts the door.) (to jerry) do you think he liked it? (from the bathroom, we hear russell violently heaving his guts.) jerry: i'm not sure. (the sounds of russell vomiting emanate from the bathroom. jerry and george sit there uncomfortably.) what was that dish he said he had...? george: pasta primavera. jerry: ah. you know, 'primavera' is italian for 'spring.' george: no! jerry: yeah. russell (coming out of the bathroom): really, i'm terribly sorry, it just, uh...all of a sudden it just hit me. george: so, you were saying how, um...about the script... russell: right. the script. your script needs some...it needs, um...(looks nauseous again. gets up and runs to the bathroom a second time.) george: more jokes? jerry: another ending? george: a different name for the butler? (russell throws up again.) jerry: maybe we should go. george: we haven't heard his notes yet, we don't know how he feels about our work. (russell throws up yet again.) russell (from bathroom): oh god. oh my god. jerry: i can't listen to anymore of this, the guy's losing a lung in there. (russell's daughter molly enters.) molly: hello. jerry: hi. george: hi. molly: i'm molly. jerry: oh, i'm jerry. george: george. jerry: we're here discussing our script with your father. george: he just read it. (russell vomits again. jerry and george look ashamed.) molly: daddy? are you okay? russell (from bathroom): yeah, yeah sweetie. i'm fine. (molly sits on the back of the chair.) george: so, you live with your mother, huh? molly: uh, yeah. george (to jerry): divorce is very difficult. especially on a kid. jerry: uh huh. george: of course, i'm the result of my parents having stayed together, so you never know. (russell comes out of the bathroom.) molly: daddy, are you alright? what's the matter? russell: it's just a stomach thing. molly: yuck. russell (to jerry and george): we're going to have to do this some other time, so if you'll give me your number, i'll call you later. (jerry and george nod. molly takes her jacket off.) george: you know, suddenly i'm in the mood for pasta primavera myself. (jerry nudges george to sneak a peek at molly's cleavage as she bends over and looks in her backpack. jerry has a quick look, but george stares, hypnotized. russell comes up behind george.) russell (angrily): get a good look, costanza? jerry: what were you doing? george: well, it's not my fault. you poked me! jerry: you're supposed to just take a peek after a poke. you were like you just put a quarter into one of those big metal things on top of the empire state building. george: it's cleavage. i couldn't look away. what am i, waiting to win an oscar here? this is all i have in my life. jerry: looking at cleavage is like looking at the sun, you don't stare at it. it's too risky. you get a sense of it and then you look away. george: all right. so, he caught me in a cleavage peek, so big deal. who wouldn't look at his daughter's cleavage? she's got nice cleavage. jerry: that's why i poked. george: that's why i peeked. (jerry opens the door to take some trash out, and meets kramer and gail in the hallway.) gail: hey! what is with your friend elaine? jerry: what? gail: she comes to my restaurant, comes right in my kitchen, and starts complaining that i'm talking about her shoes. jerry: she did? kramer: right in the kitchen. disgraceful. gail: so, i don't want people coming into my kitchen. i think she might have sneezed all over someone's pasta primavera. someone might have gotten sick because of her. (kramer and gail exit.) george: pasta primavera? jerry: is that what she said? (kramer pokes his head back in the door.) kramer (to jerry): she's somethin', huh? she's a wild one. she's wearin' me out. jerry: she is? kramer: she's sensual. you know, with the...cooking and all. (kramer grins happily at jerry and leaves. the phone rings. jerry tosses the trashbag to george.) jerry: hello? oh, hi stu. george (lazily swinging the garbage bag around): from nbc? jerry: (to george) yeah. (oh the phone) what's goin' on? what? really? oh my god....did he give you a reason?...oh boy. okay. alright. thanks. (hangs up.) dalrymple just cancelled the pilot. (george drops the bag, shocked.) jerry (to elaine): if you hadn't gone into her restaurant, this never would have happened. elaine: look, i don't like people talking about my shoes behind my back, okay? my shoes are my business. the two of you shouldn't have been looking at some fifteen year-old's cleavage anyway! george: he poked me! jerry: there was cleavage in the area. that's a reflex - (mimics nudging someone with an elbow) - cleavage-poke, cleavage-poke... elaine: but she was fifteen. jerry: you don't consider age in the face of cleavage. this occurs on a molecular level, you can't control it! we're like some kind of weird fish where the eyes operate independently of the head. george: alright, what's the difference. what are we gonna do now? he won't take our calls, we can't get into his office... jerry: you know what we could do? he eats at that restaurant, pfeiffer's? we could have gail call us, tell us the next time he's there, go there and talk to him. george: hey, now you're onto something. jerry: the whole thing is so stupid. like he wouldn't do the same thing if elaine walked by in a low-cut dress. george: yeah. well, maybe not elaine. jerry: no. george: but...somebody like gail, though. jerry: ya. elaine: what? what do you mean, gail? (kramer enters.) kramer: yah-hey. jerry: kramer, listen, i want you to ask gail to do me a favor. the next time russell dalrymple comes in the restaurant, ask her if she would call me. kramer: alright, i'll call her right now. jerry: ok. (kramer goes back to his apartment.) elaine (to george): what do you mean, gail? you don't think i can attract attention? you don't think i can put asses in the seats? jerry: look, sweetheart, you know you've got it all. but let's face it... (kramer comes back.) kramer: she said she'll do it. george: beautiful. jerry: beautiful. kramer (points at elaine's feet): but she wants the shoes. elaine: what? kramer: she says she wants those shoes. elaine: she wants my shoes? what kind of person is this? alright! she is not getting 'em! jerry: no, come on! i'll buy you another pair! elaine: no, these were the last pair of these that they had! jerry: i'll get you another one just like it! elaine: no, but these were the only really cool ones like this! don't you see how everybody likes 'em and how everybody talks about 'em? (jerry, realizing elaine's motivation, sits at the counter unbelievingly.) george (to elaine, in a somber tone): elaine, this pilot...it doesn't matter to me, it's not me i'm concerned about...it's my mother. i've been over to the hospital to see her... elaine: oh yeah, because she caught you jer - george: never mind! elaine: oh, come on, wait a second, this whole thing is ridiculous. how do i even know she wears the same size? kramer: alright, what size are you? elaine: seven-and-a-half. kramer: eh! bingo. gail (hands a plate to another chef): sauce this. (goes to the telephone and dials.) yeah, he's here. oh, and one more thing...bring the shoes. (hangs up.) jerry: hey! whattaya know! george: look who's here! jerry: fancy meeting you here! russell: oh. hello. george (notices russell's lunch): pasta primavera! back on the horse. jerry: you know, it's a funny thing, because after the pilot got cancelled, we hadn't heard from you. george: didn't hear anything... jerry: didn't know...we were wondering...what happened. russell: well, it just didn't seem to be the right project for us right now. (elaine walks by in a low-cut dress. jerry and george look at her as she moves to the table opposite russell.) so, what were you saying? george: oh...uh, because if it had anything at all to do with what you perceived as me leering at your daughter, i really have to take issue with that. i did not leer. (to jerry) did i leer? jerry: no leer. (elaine comes over to russell's table.) elaine (to russell): uh, excuse me, are you using that ketchup? russell (not noticing elaine's cleavage): uh, no. (elaine takes the ketchup and goes back to her table.) george: because, if i'm looking straight ahead, and something enters my field of vision, that's merely a happenstance. (elaine loudly snaps and unfolds her napkin at the next table to get russell's attention.) russell: under the circumstances, i don't really feel that we should be in business together. (elaine comes back over.) elaine: here's your ketchup back. you know, i had the hardest time trying to get some out. i mean, i just kept pounding and pounding on the bottom of it. do you have any trouble? russell (still not noticing elaine's cleavage): no. elaine (leaning forward): do you have a...ketchup secret? russell: no, i... (finally notices elaine)...don't have a ketchup secret. (smiles.) elaine (flirtatiously): because if you do have a ketchup secret, i would really, really like to know what it is. (russell is pleased, and smiles at elaine. elaine goes back to her table, sits down, and waves at russell.) russell (to jerry and george, reconsidering about the pilot): field of vision, huh? gail: how's everything? elaine: mmmm. jerry: really good. george: this pasta primavera is fabulous. jerry: very tasty. gail: how'd everything go with that nbc guy? george: great. jerry: the pilot's back on. in fact, elaine's going out with him tomorrow night. (gail nods and walks away.) listen, elaine, you know if russell mentions anything about the pilot, you'll of course tell him how much you liked it...? elaine: you know, i happen to have the script right here with me and, uh...on page 3, for example, suppose the elaine character comes in wearing a...a low-cut dress. and the butler is very distracted, and can't work. jerry: uh...that kind of comedy, that's a little broad for us. elaine: well, i'm sure it's right up russell's alley. george: well, it's a funny idea. jerry: it's funny! george: c'mon, funny is funny. jerry: funny is funny, we're here to entertain, right? elaine: alright, well, maybe i'll mention it to russell tomorrow night. jerry: if you can. george: yeah. where's he taking you, by the way? elaine: bouchard's, on 53rd. (george starts choking on his wine, and attempts to tell elaine something.) jerry: i think what he's trying to say is, "get the bouilla-base." (george nods 'yes' and continues to choke.) allison: i don't want to *live*! i don't want to *live*! george: because of me? you must be joking! who wouldn't want to live because of me? i'm nothing! allison: no... you're *something*. george: you can do better than me. you could throw a dart out the window and hit someone better than me. i'm no good! allison: you're good. you're *good*! george: i'm bad. i'm *bad*! allison: you're *killing* me! george: so what could i do? i couldn't go through with it. she threatened to kill herself. elaine: over you? george: yes. why, is that so inconceivable? george: i got two tickets to see "guys and dolls". elaine: i got him a two-line phone. jerry: unbelievable! she's not there. george: what paper does she write for? jerry: the works for the nyu school newspaper. she's a grad student in journalism. never been to a comedy club. never even seen me, has no idea who i am. elaine: never even seen you? gotta kinda envy that... jerry: y'know, you've been developing quite the acid-tongue lately... elaine: [proudly] really? elaine: hey, who do you think is the most unattractive world leader? jerry: living or all time? elaine: all time. jerry: well, if it's all time, then there's no contest. it begins and ends with brezhnev. elaine: i dunno. you ever get a good look at degaulle? george: lyndon johnson was uglier than degaulle. elaine: i got news for you. golda meir could make 'em all run up a tree. elaine: y'know, just because you two are homosexuals, so what? i mean you should just come out of the closet and be openly gay already. george: so, whaddya say? you know you'll always be the only man i'll ever love. jerry: [indignantly] what's the matter with you? george: [quietly] c'mon, go along... jerry: i'm not goin' along. i can just see you in berlin in 1939 goose- stepping past me "c'mon jerry, go along, go along..." jerry: y'know i hear that all the time. elaine: hear what? jerry: that i'm gay. people think i'm gay. elaine: yeah, you know people ask me that about you, too. jerry: yeah, 'cuz i'm single, i'm thin and i'm neat. elaine: and you get along well with women. george: i guess that leaves me in the clear... george: i just thought of a great name for myself, if i ever become a porno actor. jerry: oh yeah, what? "buck naked"? george: yeah, how did you know that? jerry: you told me that already like two months ago. george: allison bought it for me. jerry: how you gonna get out of *that* one? george: i dunno. i guess i have to wait for her to die. jerry: he's gonna hang around if that's alright with you? sharon: sure, i'd like to talk to him, too. george: jerry did you wash this pear? jerry: yeah, i washed it. george: it looks like it hasn't been washed. jerry: so *wash* *it*. george: you hear the way he talks to me? sharon: you should hear how *my* boyfriend talks to me... george: let me ask you something. what do you think of this shirt? sharon: it's nice. george: jerry said he didn't like it. jerry: i didn't say i didn't like it. i said it was o.k... george: no, you said you didn't like it... jerry: oh, so what if i don't like it. is that like the end of the world, or something? sharon: so how did you two meet? jerry: actually, we met in the gym locker room. george: yeah. actually it was in gym class. i was trying to climb the ropes and jerry was spotting me. i kept slipping and burning my thighs and then finally i slipped and fell on jerry's head. we've been close ever since. (george takes a hold of jerry's leg to stress the point and sharon, who obviously thinks she has a real story here now, asks another question: ) sharon: do you guys live together? jerry: [quizzically] live together? george: no, i got my own place. (jerry is about *this* close (picture my thumb and forefinger *really* close together) to figuring out what is going on here, when the "question fatale" is asked: ) sharon: and do your parents know? jerry: know *what*? george: my parents? they don't know *what's* goin' on... jerry: oh god, you're that girl in the coffee shop that was eavesdropping on us. i *knew* you looked familiar! jerry: there's been a big misunderstanding here! we did that whole thing for your benefit. we knew you were eavesdropping. that's why my friend said all that. it was on purpose! we're not gay! not that there's anything wrong with that... george: no, of course not... jerry: i mean that's fine if that's who you are... george: absolutely... jerry: i mean i have many gay friends... george: my *father* is gay... sharon: look, i know what i heard. jerry: it was a *joke*... george: look, you wanna have sex right now? do want to have sex with me right now? let's go! c'mon, let's go baby! c'mon! (not that that approach was going to work, or anything, but what minute chance they had of convincing her is blown away as the door bursts open and: ) kramer: hey, c'mon! let's go! i thought we were going to take a steam! george: no! jerry: no steam! kramer: well i don't want to sit there naked all by myself! kramer: happy birthday paruba! jerry: today's not my birthday. kramer: well, i beg to differ... jerry: look at this! a phone! a two-line phone! jerry: hey, where you going? elaine: i gotta go return something... sharon: jerry, it's sharon from nyu. i'm just calling to tell you that i'm not going to play up that angle we talked about and i'm sorry. jerry: thank you very much, that's great- >click< oh! hold on a sec, i got a call on the other line. >click click< hello? george: hey. jerry: hey, how ya doin'? y'know i got that reporter from the newspaper on the other line. george: so, what did she say? jerry: she says she's not going to play up that angle of the story. she thinks we're heterosexual. [sarcastically] i guess we *fooled* her. i'll get rid of her, hold on... >click click< sharon? hello? sharon, are you there? >click click< i'm back... george: y'know... i could hear you on the other line... jerry: what are you talkin' about? george: i heard what you said "sharon, are you there?". jerry: you heard me talkin' on the other line, are you sure? george: yes, i heard you! jerry: well, maybe she was disconnected. george: maybe she wasn't! maybe she heard the whole conversation! jerry: alright, hang on. let me call kramer and see if you can hear anything, hold on. >click click click<... kramer: yello? jerry: kramer, there may be a problem with the phone, hold on. >click click< george: "there may be a problem with the phone, hold on"! jerry: oh no! >click click< kramer, this phone's a piece of junk, goodbye! george: "the phone's a piece of junk, goodbye"! jerry: oh no! now she's heard everything! what are we gonna do?!? george: now she thinks we're gay, not that there's anything wrong with it... jerry: no, no, of course not! people's personal sexual preferences are nobody's business but their own! sharon: why don't you take a seat? elaine: thank-you. sharon: why don't you take your coat off? elaine: so she kept insisting i take off my coat. i refused, and then she forcibly tried to get me to remove it. jerry: she wouldn't take her coat off at my house, either. george: y'know there are tribes in indonesia where if you keep your coat on in somebody's house, the families go to war! jerry: so you don't take your coat off, and now everyone at nyu thinks i'm gay. not that there's anything wrong with that... george: not at all. george: two tickets to "guys and dolls"! i'm gonna go with you! jerry: "guys and dolls"? isn't that a lavish, broadway musical? george: it's "guys and *dolls*", not "guys and *guys*". jerry: "the collected works of bette midler". jerry: what do you got there? man #1: _the new york post_, they've got an article about you. jerry: "although they maintain separate residences, the comedian and his long-time *companion* seem to be inseparable..." oh no! the associated press picked up the nyu story. that's going to be in every paper! i've been "outed"! i wasn't even "in"! george: now everyone's going to think we're gay! jerry: not that there's anything wrong with that... george: no, not at all... jerry: "within the confines of his fastidious bachelor *pad*, seinfeld and costanza bicker over the cleanliness of a piece of *fruit* like an old married couple--" *i told you that pear was washed*! kramer: i thought we were friends... jerry: here we go... kramer: i mean, how could you two keep this a secret from me? jerry: it's not true! kramer: aaaah! enough lying! the lying is through! c'mon, jerry, the masquerade is over. you're thin, late thirties, single... jerry: so are you... kramer: yeah-- george: hello? mrs. s: george? george: mrs. seinfeld?!? mrs. s: oh, my god... jerry: oh, my god! [takes the phone] ma? mrs. s: jerry? jerry: ma! george: oh, my god! my *mother*!!! mrs. s: jerry? jerry: ma, it's not true! mr. s: it's those damn culottes you made him wear when he was five! mrs. s: they weren't culottes, they were shorts. mr. s: they were culottes! you bought them in the girl's department. mrs. s: by mistake! by mistake, jerry! i'm sorry! mr. s: it looked like he was wearing a skirt, for crying out loud! jerry: ma, it has nothing to do with the culottes! mrs. s: not that there's anything wrong with that, jerry. mrs. c: i open up the paper, and *this* is what i have to read about? i fell right off the toilet. my back went out again, i couldn't move... the super had to come and get help me up. i was half naked! george: it's *not* *true*! mrs. c: every *day* it's something else with you. i don't know anything about you any more. who are you? what kind of life are you leading? who knows *what* you're doing? maybe you're making porno films. george: yeah. i'm buck naked. mrs. c: jerry, i can see. he's so neat and thin. not that there's anything wrong with it. george: of course not... nurse: 630, scott. time for your sponge bath. george: alright, now the play is tomorrow night. so do you want to have dinner first, or do you just want to meet at the theatre? sailor: excuse me, sir? i don't mean to bother you. i just wanted you to know that it took a lot of guts to come out the way you did, and that you've inspired me to do the same, even though that may mean a discharge from the service. thanks. jerry: y'know, i think i'll pass on the "guys and dolls"... george: no. just imagine her reaction. elaine: yeah... george: oh, my god... jerry: what? george: she hasn't seen the article! when she sees it, she's gonna think-- *i'm out baby*!! i'm out!!!!! allison: yeah? so? george: yeah so?? allison: well this is nice. they mention your name. george: don't you see what it says here? don't you understand what that's implying? allison: no, what? george: i'm gay! i'm a gay man! i'm very, very gay. allison: you're *gay*? george: extraordinarily gay. steeped in gayness. allison: [matter-of-factly] i don't believe it. george: you don't believe me? ask jerry. allison: i will. george: what do you mean you will? that's a bad idea. jerry is a very private person. allison: [grabs george's lapels] i want to hear it from *jerry*... sharon: oh, can you ever forgive me? jerry: i dunno... [they kiss again] *alright*, i forgive you... sharon: y'know the funny thing is, i was attracted to you immediately. jerry: i was attracted to you, too. you remind me of lois lane. george: jerry! oh, my god! what are you doing!?! jerry: what!? george: you're with a *woman*! jerry: i know! what are you doin' here?!? george: i leave you alone for two seconds, and this is what you do! i trusted you! jerry: [forcibly removing g. from the apt] would you get the hell out of here! sharon: what's going on? allison: yeah, what's going on? george: alright, tell her. go ahead. jerry: tell her what? george: y'know. about *us*. george: alright, i'll tell you the truth. i'm not gay. my name's buck naked, i'm a porno actor. allison: *really*? kramer: we'll see you later... kramer: he's the *phone* man! kramer: not that there's anything wrong with that... i am not gay. i am, however, thin, single and neat. sometimes when someone is thin, single and neat people assume they are gay because that is a stereotype. they normally don't think of gay people as fat, sloppy and married. although i'm sure there are, i don't want to perpetuate the stereotype. i'm sure they are the minority though within the gay community. they're probably discriminated against because of that, people say to them "y'know joe, i enjoy being gay with you but i think think it's about time, y'know that you got in shape, tucked the shirt in and lost the wife". but if people are even going to assume that people that are neat are gay, maybe instead of doin' this: "y'know i think joe might be a little... [waves hand back and forth]", they should vacuum "y'know i think joe might be >vroom< [makes vacuuming motion]. yeah, i got a feeling he's a little >vrooom<..." george: oh, what's the point? when i like them, they don't like me, when they like me, i don't like them. why can't i act with the ones i like the same way i do with the ones i don't like? jerry: well, you've only got another fifty years or so to go before it'll *all* be over... george: maybe i need someone who doesn't speak english. jerry: yeah, how about a mute? george: a mute would be good. jerry: ah, where you gonna meet a mute? george: this is what my life has come to... tryin to meet a mute. george: i dunno, jerry somethin's missing. there's a void, jerry, there's a void... jerry: a deep, yawning chasm... george: there's gotta be more to life than this. what gives you pleasure? jerry: listening to you. i listen to this for fifteen minutes and i'm on top of the world. your misery is my pleasure. elaine: hey boys! jerry: hey! how you doin'? elaine: good. okay, well, it's all set. i start tomorrow. george: start what? elaine: i signed up to do volunteer work with senior citizens. george: *really*. elaine: yeah. god, i can't tell you how i feel! i mean, i feel *so* *good*! i *really* feel good. the strange thing is, i mean, i haven't even met the woman yet. george: volunteer work, huh? jerry: what're you gonna do down there? elaine: well, they say all it is is that you go over to their apartment and, i dunno, you take them for a walk and you get a cup of coffee and it's supposed to make them feel good. jerry: that's what i do with him [points at george] george: when did you get this idea? elaine: last time i had lunch with you here. you were going *on* and *on* and *on* about how you wanted to meet somebody who didn't speak english. jerry: what, do you break it in with her, then you try it out on me? george: and... and anybody can do this? elaine: yup. george: helping people... of course. of course! it makes perfect sense! how could i *not* be doing this!? i am gonna help somebody, dammit! elaine: [to jerry] what about you? jerry: nah, it's not for me. elaine: jerry, if anybody should be doing this, it's you. george: what *kind* of a person are you? jerry: i think i'm pretty much like you-- only successful. agency rep: this is a wonderful thing you're doing. they're so grateful just to have someone to talk to. and i can tell you that everyone who participates finds the experience extremely rewarding. george: well, i feel better already. i'm feelin' like a good person. agency rep: good luck. jerry: thank you. george: hey, what's your guy's name again? jerry: fields. sidney fields. *87* years old. *87*. how about your guy? george: ben cantwell. 85. huh... you think we'll make it to that age? jerry: *we*? no. kramer: so what's up, diggity dog? jerry: george and i just signed up with the senior citizen's volunteer agency. same thing elaine's doing. kramer: oh, that's too bad. now don't say i didn't try to warn you. jerry: what're you talkin' about? kramer: oh, jerry, i'm *surprised* at you! jerry: what? kramer: it's a *con*. these agencies are usually a front for some money laundering scheme. or they're bunko artists; bilkin' people out of their life savings, oh *yeah*. jerry: where do you *get* this? kramer: the alternative media, jerry. that's where you hear the truth. newman: kramer?! kramer!? where are you? kramer!?! kramer!!? kramer: i'm in here. c'mon... jerry: hello, *newman*... newman: jerry, george. [to kramer] so, did you ask him about the records? kramer: well-- jerry: what records? kramer: well, newman and i are going partners selling used records. newman: you know ron's records down on bleeker? they pay big cash for used records! kramer: yeah, so we thought if you had any of those big, y'know, old-fashioned useless records, y'know, just... lyin' around-- kramer: y'know, we'd take them off your hands, free of charge. george: let me ask you something. what do you do for a living, newman? newman: i'm a united states postal worker. george: aren't those the guys that always go crazy and come back with a gun and shoot everybody? newman: sometimes... jerry: why *is* that? newman: because the mail never stops. it just keeps coming and coming and coming, there's never a let-up. it's relentless. every day it piles up more and more and more! and you gotta get it out but the more you get it out the more it keeps coming in. and then the bar code reader breaks and it's *publisher's clearing house* day!!! ron: i'll give you five bucks. kramer: five bucks??? newman: well, you know how much those records are worth!? ron: yeah, i do... fi' dollars. newman: those records are worth more than five dollars! kramer: [in newman's ear] he's gyppin' us... newman: you're gyppin' us! ron: well, whattya got here, y'know, you got "don ho live at honolulu", you got "jerry vale sings italian love songs" you got sergio mendes, now come on... kramer: wait, wait, wait... sergio mendes has a cult following. newman: they follow him like a cult. kramer: he can't even walk down the street in south america... ron: look, that's his problem, alright? now you don't like it, too bad. kramer: [in newman's ear] i don't like it... newman: i don't like it. ron: well, then get the hell out of my store, alright? you bring me something decent, i'll give you some money. kramer: [in newman's ear] alright, well be back, jack. newman: alright, well be back... *jack*! jerry: hi, i'm jerry seinfeld, the agency sent me. housekeeper: agency? jerry: yeah, is this sid field's residence? housekeeper: sid fields. sid: what the *hell* is it? jerry: mr. fields? sid: what!?! jerry: hi, i'm jerry seinfeld, the agency sent me. sid: agency? what agency? the *cia*? jerry: no, no, the-- sid: who let you in here? jerry: the woman, she-- sid: oh *her*. she *steals* from me. steals my money. she says she doesn't speak english. my *ass* she doesn't speak english. plays that freakin' "voo-doo" music, tries to hypnotize me. she thinks she's gonna turn me into a zombie and then rob me blind. well, i wasn't born yesterday. i may drop dead today, but i sure as hell wasn't born yesterday. now get the hell out of my house... jerry: mr. fields, i'm here to spend some time with you. sid: oh, really. are you the boyfriend? i know she's got a boyfriend. are you going to *kill* me? i'm an old man for crying out loud, you gonna kill an old man, you coward?!? [jerry gets out card] jerry: no, mr. field, look, really i'm-- sid: i can't read that you fool... jerry: what's all this stuff? sid: trash. garbage. jerry: you're throwin' this out?? sid: i believe that's what you do with garbage, you idiot. (you can make out the albums pretty clearly. one is an apparent k-tel "classic": "22 explosive hits", i don't know the other one. anyone? i believe "the beatles" (the white album) is there also.) jerry: you don't want any of this? sid: well if i wanted it i wouldn't be throwing it away, *ein-stein*. jerry: you know i have some friends who would really like to have these. sid: well, take it. i'm sure as hell not going to give it to my family. jerry: well, do you want to go out for a walk, get a cup of coffee... sid: with you? i'd rather be dead. jerry: well, maybe i'll get goin' then. i just remembered i got an appointment to get my, um, tonsils out. sid: good. thank god. good riddance. [pause] oh listen, before you go, would you mind changing my diaper? haa!! ben: no, i feel great for 85. george: y'know the average life span for an american male is like, 72. you're really... kinda pushin' the envelope there. ben: i'm not afraid of dyin'. i never think about it. george: you don't? boy, i think about it a lot. i think about it at my age. imagine how much i'll be thinkin' about it at your age. all i'll do is keep thinkin' about it until it drives me insane... ben: i'm grateful for every moment i have. george: grateful? how can you be grateful when you're *so* close to the end? when you know that any second-- poof! bamm-o! it can all be over. i mean you're not stupid, you can read the handwriting on the wall. it's a matter of simple arithmetic, for gods sake... ben: i guess i just don't care. george: what are you talking about? how can you sit there and look me in the eye and tell that me you're not worried?! don't you have any *sense*?!! don't you have a brain!? are you so completely senile that you don't know what you're talkin about anymore!!?! george: wait a second, where are you going? ben: life's too short to waste on you. george: wait a minute, please-- ben: get out of my way... george: but mr. cantwell, you... you owe me for the soup... elaine: mrs. oliver? mrs. o: yes my dear. elaine: ooh! mrs. o: what's the trouble? are you alright? elaine: yeah. yeah. yes. yeah. mrs. o: it's my goiter, isn't it? elaine: did you say goiter? what goiter? mrs. o: this football-shaped lump jutting out the side of my neck. elaine: oh, *that* goiter. hey... heh heh heh... whaddya know... mrs. o: does it bother you? elaine: bother me? oh, phhbt... why would a little goiter like that bother me? no, not a bit. it's nothing. it's nothin', it's um, in fact, it's um, it's very distinctive, y'know? um, i mean you want to know something? i, i wish i had one. [pause] really. jerry: c'mon elaine, it's just a goiter... elaine: i don't know what i'm going to do. i can't look the woman in the face. i mean i keep thinkin' that that goiter's gonna start talkin' to me... you'd think they'd mention that before they send you over there "oh, by the way, this woman *almost* has a second head". but no, no, i didn't get any goiter information. jerry: they really should mention that in the breakdown height, weight, goiter. elaine: y'know you try to do some good. you want to be a good person but this is too much to ask. jerry: yeah, well, i'll tell ya, i'd rather talk to a goiter with a nice disposition than the nut they sent me to. elaine: hey georgie, what happened with your guy? george: i don't think it's gonna work out... jerry: whattya mean? george: he fired me. jerry: he fired you?!? elaine: *how* do you get fired from a volunteer job? george: i dunno. i was just talking to the man and he walked out on me! jerry: well, i dunno about you two, but i'm quitting. i hate my guy. he's a mean, mean guy. elaine: i wish i could quit... jerry: so quit! george: yeah, i'm a great quitter. it's one of the few things i do well. i come form a long line of quitters. my father was a quitter, my grandfather was a quitter... i was raised to give up. kramer: well, here's your *albums* [journey "escape" is on top, btw...] jerry: what happened? newman: five dollars. he offered us *five* dollars. kramer: hey, what kind of stuff are you listening to? you *embarrassed* me at that store. newman: that guy thought we were a couple of total squares. jerry: oh yeah, you and your *sergio mendes*... kramer: hey, hey, hey, hey, that guy can't even go to the bathroom in south america! jerry: well you shoulda seen the pile of albums this old guy i was visiting today was throwing away sinatra, duke ellington, al jolson, benny goodman... kramer: wait, wait, wait, now... he's throwin them out?? jerry: yeah, and then i asked him if my friend could have them and he said yeah. kramer: okay... newman: [in kramer's ear] the old coot's sittin' on a mountain of gold! kramer: yeah... jerry: but you're going to have to go get em. i'm not carryin' them all. kramer: yeah, but you've gotta come with us. jerry: yeah, i'm goin' there today. in fact you should see this house keeper he's got. she's from senegal [and, ala carson] wild, wild, stuff... george: senegal? george: so you don't speak *any* english at all? housekeeper: english? no. sid: hey, what are those bums doin' back there? jerry: well you said they could come and take the records. sid: it's like watchin' a couple of hyenas goin' through the garbage. george: you don't speak *any* english? housekeeper: no english. george: i would like to dip my bald head in oil and rub it all over your body. [no reaction] you don't understand! it's a miracle! you don't understand because you don't speak english! jerry: so mr. fields i just don't know if this arrangement is-- sid: hey, i don't like what's goin' on around here. i want all you bums outta here. kramer: now calm down, mr. fields... sid: now don't tell me to calm down... get your hands off of me! why you little... kramer: oooow! he's biting me! sid: my teeth! my teeth! jerry: where's his teeth! where's his teeth! george: i thought i saw something fly over here... jerry: well turn the light on... jerry: that's the garbage disposal! sid: my teeth! you idiots!!! mrs. o: and we would take long automobile trips-- elaine: oh, well, that sounds like a lot of fun... mrs. o: staring out the window-- elaine: uh huh... mrs. o: you'd see a long view of rolling pastures and-- elaine: well, that'll get you goin' right there... mrs. o: big, roaming cows-- elaine: cows, well that's fascinating... mrs. o: that's when i began my affair with mohandas. elaine: what? mrs. o: mohandas. elaine: ghandhi? mrs. o: oh, the *passion*. the *forbidden pleasure*-- elaine: you had an affair with ghandhi? mrs. o he used to dip his bald head in oil and rub it all over my body. here, look... [shows elaine a picture of the two together] elaine: oh, my god... the mohatma? ron: twenty bucks. newman: twenty bucks?!? are you out of your mind? ron: well, take it or leave it. newman: take it or leave it!? we got *al jolson* here, *al jolson*!! ron: now what the hell do i care about al jolson. i'd just assume her you sing "mammy". heh heh heh... kramer: [in newman's ear] this guy's nothin' but a piece of crap... newman: you are nothing but a piece of crap. ron: pardon me? kramer: [in newman's ear] a piece of crap... newman: a piece of crap. kramer: [in newman's ear] i find you extremely ugly... newman: i find you extremely ugly. ron: *do* you? kramer: [in newman's ear] you emit a foul and unpleasant odour... newman: you emit a foul and unpleasant odour. ron: oh, is that right? kramer: [in newman's ear] i *loathe* you... newman: i *loathe* you. ron: that's it. get out of my store! kramer: [in newman's ear] make us. newman: make us! ron: oh, i'll make you! agency rep: do you realize how irresponsible this is? our agency's sole purpose is to care for senior citizens. and in one fell swoop you've single- handedly destroyed our reputation. jerry: yes, but-- jerry: [into intercom] yes? tim: it's tim fields, mr. fields' son. jerry: alright, c'mon up. jerry: [to rep] i dunno what happened, we were just trying to take him to the dentist. agency rep: why were you taking him to the dentist? jerry: um, well, his false teeth got mangled up in the garbage disposal-- agency rep: what were his false teeth doing in the garbage disposal? jerry: well, after he bit my friend-- agency rep: bit your friend?! tim: what the *hell* is going on here? how do you *lose* a human being?! jerry: i, i'm sorry. tim: and who were these other people. what were they doing in the apartment!? jerry: well, i brought them up there to take his records-- tim: take his *records*? do you realize how valuable that record collection is? kramer: hey. jerry: there you are. did you find him? kramer: no, y'know we took the old man's records over to ron's and he tried to *screw* us so we got in a fight. newman: it was a real melee. kramer: yeah, a real brouhaha... sidra: oh, hi jerry. jerry: hi, sidra. i usually last about ten minutes on a stairmaster. unless of course there's someone stretching in front of me in a leotard, then i can go an hour. sidra (amused): really. jerry: oh, yeah. that's why they call it a stairmaster. you get up there and you stare. sidra (stepping off): well, i'm done. i think i'm gonna go take a sauna. jerry: alright, i'll see you thursday night, right? sidra: thursday night. jerry: alright. elaine: good workout? jerry (mimics smoking an "after sex cigarette"): tremendous workout. elaine: that's a pretty girl. jerry: tremendous girl. elaine: she's the one you went out with last night? jerry: yeah. i really like her. elaine: you know, uh...they're fake. jerry: what? don't say that! elaine: nah! they're fake! jerry: how do you know? elaine: i can tell. you know how you're always bragging how you can spot a lesbian? jerry: i'm not bragging, i happen to have a very keen lesbian eye. (a woman walks by jerry and elaine.) hi, how ya doin.' (jerry jerks a thumb at the woman to confirm his talent. elaine is skeptical.) elaine: oh, right. c'mon, don't you think they seem a bit too perfect? jerry: yes, they do! elaine: i never knew you were so into breasts. i thought you were a leg man. jerry: a leg man? why would i be a leg man? i don't need legs. i have legs. have you ever seen her naked in the locker room? elaine: no. jerry: oh, well, then i can't accept your testimony. maybe if you had seen her naked. elaine: i don't want to see her naked. jerry: well, i do. elaine: well, that's your problem. jerry: look, you made the allegation. the least you could do is follow up. elaine: jerry, what am i gonna do? i'm gonna go in there and spy on her in the sauna? jerry: yes! go in there! do a little investigative journalism. i need to know! elaine: but a few more dates and you can find out for yourself! jerry: don't be so sure. look at george - he's on his ninth date with betsy, he still hasn't gotten anywhere with her. elaine: what's his problem? jerry: well, every time he tries to make a move, something screws up. like on their last date, they were on the couch, but she was sitting on his wrong side. elaine: wrong side? jerry: yeah, she was on his right side. he can't make a move with his left hand. can't go left. elaine: he can't go left. jerry: no! i'm lefty, can't go right. what about women? do they go left or right? elaine: nah, we just play defense. george: can i ask you a question? would you mind switching seats? betsy: oh, actually, i really prefer to sit here. i don't hear very well out of this ear (points to her right ear) so, i always try to sit to the right of people. george: i'll shout. betsy: well, i really think i feel more comfortable here. george: c'mon, c'mon...(stands up and physically rolls betsy to the left side of the couch.) see, now, is that so bad? betsy: what? (the phone rings.) george (attempting to make a move): no, no, the machine'll get it... betsy: no, no, it's not on... george: they'll call back. betsy: but george, what if it's an emergency? george: in the whole world right now, there's maybe three emergencies. why would you think, on this entire planet, that you're one of those three? betsy: george, please. (gets up and answers the phone.) hello? what? (shocked) oh my god! george: alright, maybe four. elaine's brain: boy, i'm really sweatin.' good sweat, beads of sweat...sweatin' bullets. (notices sidra.) look at her. i don't need to see her naked to know those aren't real. why does she need to tie the towel around her? she's got a rack on her chest. (sidra takes her towel off and lies down.) oh god! sidra's takin' the towel off! (looks at sidra's chest.) whoa, doctor! that's it, i knew it! i knew it, they're definitely fake. betsy: so, when's the funeral? well, aunt clarice was so ill, i guess it was really a blessing. (george, on the couch behind betsy, is impatiently waiting for her to get off the phone so he can continue putting the moves on her. he shrugs, and crosses himself.) yeah, i'll fly home as soon as i can. (george waves goodbye, and mimics a plane flying through the air with his hand.) o.k. you, too. get some sleep. (betsy looks at george, and he manufactures a completely phony look of sorrow.) jerry: you're sure? elaine: positive! this chick's playin' with confederate money. jerry: well then, that's it. that's the end of that. elaine: what? just 'cause of that? jerry: just 'cause of that? it's like finding out mickey mantle corked his bat! elaine: oh, come on! you've dated women with nosejobs, what's the difference? jerry: you don't touch the nose! you don't aspire to reach the nose. you don't unhook anything to get to a nose, and no man has ever tried to look up a woman's nostril. elaine: you've put a lot of thought into this, haven't you? jerry: well, i take it very seriously. elaine: you know, sometimes when i think you're the shallowest man i've ever met, you somehow manage to drain a little more out of the pool. kramer: hey. jerry: hey. you know, i do kinda wonder what fake breast feel like. kramer: well, i know what they feel like. jerry: you? how do you know? kramer: well, i lived in los angeles for three months. elaine (laughs): i thought you hated los angeles. kramer: i do! i just miss the warm weather, y'know? jeez. oh man, i wish i could get away. jerry: real busy now down at the office? kramer: no. huh? you know who i saw at the health club? salman rushdie. elaine (laughing): yeah right, salman rushdie. yeah well, i can see that - you got five millions moslems after you, you wanna stay in pretty good shape. george: i know what the problem is - i like her too much. that's why i can't make a move. jerry: you put her on a pedestal. kramer: i put them on a dental chair. jerry: he puts 'em on a dental chair. george: i'm not her boyfriend. i want to be her boyfriend. kramer: whoo. it's like a sauna in here. george: that's funny. you're a funny guy. jerry: yeah, funny. yeah, i never heard that before. (to george) so, you goin' to the funeral? george: why, you think i should? jerry: what, are you kidding? it's a golden opportunity to advance the relationship. she's crying, you put your arm around her and console her...you're the consolation guy! george: i'm the consolation guy...? kramer: consolation guy is big. jerry: her aunt dying is the best thing that ever happened to you. kramer: it's like ten dates in one shot. jerry: this confers upon you instant boyfriend status. the family's there...you're taking care of things...you're gettin' the sandwiches...you're the rock! george: it's in detroit though, it's an expensive flight. kramer: why don't you get a "death in the family" fare? george: what? kramer: you go to the airlines, you tell them you got a death in the family? they give you 50% off the fare. george: really? kramer: in fact, listen...i'll go down there with ya. you know, we'll tell them there's a death in my family, you buy the ticket, i'll split it...then i'll get the bonus miles and you'll get to detroit for a quarter of the price! elaine's brain: boy, i'm gettin' a good sweat here. great sweat, good beads. nice beads. elaine's brain: ah, look who's here. "silicon valley." sidra (to her friend): so anyway, we go out on one date, he asks me out for a second, then out of nowhere he cancels the date and says he doesn't want to see me again. elaine: uh...sorry, i couldn't help overhearing. sidra: oh, that's o.k. elaine: did he give you a reason? sidra: yeah. he's going back to his old girlfriend. elaine: really? sidra: he said she's mentally ill. he's one of those guys who is obsessed with neatness and order? everything has gotta be just so. he would have made a great nazi. elaine: hey, does he ever talk about superman? sidra: yes! how did you know? elaine: oh, i know the type. sidra: so you can relate? elaine: oh, yeah. sidra (sits across from elaine and takes her towel off): you know, i've seen you around the club. my name's sidra. this is marcy. elaine: oh, hi. i'm elaine. (gets up to shake sidra's hand, but stumbles and falls "right into them.") elaine: so anyway, i stood up to shake her hand, then suddenly i lost my balance and i fell right into her. jerry: you fell on her? elaine: i touched 'em. jerry: you what? elaine: i...touched...'em. jerry: you touched 'em?! elaine: i needed them to help me break my fall! if it hadn't been for them, i could have really injured myself! jerry: wow. elaine: anyway...they're real. jerry: excuse me?! elaine: i think they might be real. jerry: oh, what do you know, you have no breast touching experience. elaine: i've touched mine! jerry: so have i. elaine: oh, right...i forgot. (smiles) jerry: anyway, touching two breasts doesn't make you an expert. elaine: alright, well anyway, i think they're real. and if they are, i must say they are...spectacular. jerry: aw, what are you doin' to me? (puts his head down on the counter.) george (to clerk): you see, my friend here, his aunt passed away last night. clerk (to kramer): oh, i'm very sorry. kramer: i saw her last week, she looked healthy and peaceful, but...she knew... clerk: you poor thing! kramer (breaking into tears): i...i... george: you don't think you can buy the ticket yourself...? no, there, there...you sit, and i'll purchase the ticket for you. clerk: you're a good friend. george: i understand you offer a 50%-off 'bereavement' fare...? clerk: yes, all you have to do is pay the full fare now, then return to any one of our counters with a copy of the death certificate, and we'll refund half your fare. george: the death certificate? clerk: yes, yes, we do need documentation or you know, people could take advantage. george: what kind of a sick person would do a thing like that? clerk: i know! but it happens. george: you want my friend to ask his uncle, a man who just lost his wife of 44 years, for a death certificate so that he can save a few bucks on a flight? clerk: that would be $387 round-trip. kramer (in a perfectly normal tone of voice): alright, so you'll need my frequent flyer number, huh? clerk: yes. jerry: i don't know, one minute you say they're fake, the next minute you think they're real...i don't know what to believe! elaine: hey, of the two of us, i'm the only one who's touched 'em. jerry: but you were just grabbing on to them to save your life. if you were drowning and i threw you a life preserver, you think you could tell me if it was an inflatable? elaine: i wouldn't have said anything if i knew you were going to stop seeing her! jerry: well, i don't mind someone with a phony personality, but i gotta draw the line somewhere. kramer: hey! jerry: hey. george off to detroit? kramer: yep! and, in two days, i'm off to puerto rico. elaine: hey kramer, by the way, i saw that guy at the health club...that is not salman rushdie. kramer: pffft - wrong. jerry: there's sidra. kramer: there's salman. jerry: where? kramer: talkin' to that woman. jerry: talkin' to sidra? kramer: if that's sidra, she's talkin' to salman. jerry: i don't think that's salman. kramer: well, i don't think they're real. jerry: if that's rushdie, they're real. kramer: if they're real, that's rushdie. jerry: well, i gotta know - i'm talkin' to sidra. kramer: i gotta know, i'm talkin' to salman. kramer: it's like a sauna in here, huh? i feel like i'm...back at the desert. "salman": you've lived in the desert? kramer: oh, yeah. yeah, i've uh...i've spent a little time in the mideast. you ever been to the mideast? "salman": yes, i've been there. kramer: my name's kramer. "salman" (shakes kramer's hand): sal bass. pleased to meet you, kramer. kramer: so, uh...what kind of work do you do? "salman": i'm a writer. betsy (to aunt may): have you met my boyfriend george? aunt may: no! (shakes george's hand.) betsy: george, this is aunt may, and father jessup. oh, and that's my brother, timmy. (timmy smiles thinly.) this is my boyfriend, george. aunt may: oh george, how nice of you to come all this way. george: well, i'm the boyfriend. otherwise, what's the point of being the boyfriend? this is where you have to be when you're the boyfriend. aunt may: betsy, dear, have you had anything to eat? betsy: i'm not very hungry. aunt may: they have some very nice snacks. father jessup: i'm about to get myself a snack. george: oh, no, no, no...you sit right here...i will get you a nice snack. father jessup: this is my third wake this month. it never gets any easier. george (loading up his plate with sandwiches): well, losing a loved is, uh...i mean, forget about it. (starts wolfing down the sandwiches.) father jessup: you seem to be of great comfort to betsy, we're very appreciative. george: oh - comfort, schmomfort. listen, father, can i ask you a question? in a terrible time like this...who would i get the death certificate from? kramer: c'mon jerry! jerry: oh, how can you be so sure? kramer: jerry, are you blind? he's a writer. he said his name was sal bass. bass, jerry! instead of salmon, he went with bass! he just substituted one fish for another! jerry: look, you idiot, first of all, it's salman, not salmon! kramer: jerry, jerry, you're missing the big picture! jerry: alright, maybe it is, but listen, i gotta get ready - sidra's coming over in a few minutes, so if you don't mind... kramer: what, did you ask her? jerry: i'm gonna find out tonight. kramer (nods): oh, yes indeed... dr. allenwood: why do you need a death certificate? george: well, dr, allenwood, uh...i was hoping to compile an - admittedly, rudimentary - scrapbook of her life. something that betsy could have, and hold onto. dr. allenwood: well, i suppose i could make a copy of it. george: oh, that would be wonderful. dr. allenwood: it was very nice meeting you, george. george: likewise. timmy: what are you doing? george: what? timmy: did...did you just double-dip that chip? george: excuse me? timmy: you double-dipped the chip! george: "double-dipped"? what are you talking about? timmy: you dipped the chip. you took a bite. (points at the dip) and you dipped again. george: so...? timmy: that's like putting your whole mouth right in the dip! from now on, when you take a chip - just take one dip and end it! george: well, i'm sorry, timmy...but i don't dip that way. (takes a chip.) timmy: oh, you don't, huh? george: no. (dips the chip) you dip the way you want to dip...(bites the chip) i'll dip the way i want to dip. (dips the chip again.) timmy: gimme the chip! (grabs george and the chip goes flying.) gimme the chip! (they struggle in front of the snack table.) sidra: i don't know what i'm doing here, i must be crazy. (moves to the couch and sits on the left side. jerry tries to run over and beat her to it, but doesn't make it. he sits down on the right side.) jerry: hey, would you mind switching seats? sidra: why? jerry: oh, i don't know...i just like sitting to the left of people, makes me feel like i'm driving. sidra: o.k....(they switch places.) jerry: how ya doin'? sidra: good. how you doin'? jerry: good, feel good...you know that jayne mansfield had some big breasts. really big, huge...just coming out the top of her dress, they were like, chokin' her. sidra: i hear that's how she died. jerry: have you noticed that women today are, you know, they seem...bigger. sidra: well, a lot of women are having them done. jerry: really? sidra: yeah. jerry: how do you like that. sidra: a lot of people ask me if i've had mine done. jerry: aw, you know people. sidra: it gets a little tiring, it's really none of their business. jerry: oh, the nerve. you know, some people have asked me if you've uh, done that. sidra: what do you tell them? jerry: whatever you want me to tell them. sidra: well, i think you'll find out soon enough. (they prepare to kiss. there's a loud bang on the door.) aren't you going to get that? jerry: no. sidra: what if it's an emergency? jerry: oh, there's no emergency... kramer (in hallway): jerry! c'mon, it's an emergency! jerry: excuse me. (gets up and answers the door.) alright, what is it? you're interrupting! kramer: well, you know, i'm packing for puerto rico, i need to borrow your bathing suit. jerry: this is an emergency? you need a bathing suit? kramer: well, i like yours. jerry: i don't know, my bathing suit? that's a little familiar, i don't want your...your boys down there. kramer: c'mon, what's wrong with my boys? jerry: your boys should stay in their neighborhood. kramer: alright, c'mon! jerry: alright. it's in the top drawer. hurry up. (kramer goes to get the suit. elaine enters.) elaine: hi, jer. jerry: oh, hi, elaine. elaine: oh...hi, sidra - sidra: hi...elaine? (kramer comes back into the living room.) jerry (to elaine): what are you doing here? elaine: i'm looking for kramer. kramer: yeah, she was just showing me pictures of places i can visit when i go to puerto rico...you know, when you two went down there? jerry: oh. yeah. alright. (pushes kramer and elaine out the door, then sits next to sidra on the couch.) so, where were we? sidra: i was just leaving. jerry: right, you were leaving. sidra: i can't believe you sent a woman into the sauna to do that. jerry: that was an accident! sidra: i think you're both mentally ill. (leaves, then opens the door again.) and by the way...they're real, and they're spectacular. (sidra leaves.) betsy: stop it, george! get out! get out! i never want to see you again! dr. allenwood: go back to new york! get out! clerk 2: alright sir, now all i need is a death certificate and you'll be on your way. george: well, you see, what happened was...the doctor - the very same doctor that was attending to my late aunt - suffered an untimely stroke, and lost the use of his right hand, so...obviously i was unable to get the death certificate. however, i do have this. (reaches inside his coat and takes out a polaroid photo.) clerk 2: what's this? george: that's a picture of me next to the coffin. clerk 2: nice try. george: not even close, huh? jerry: you can't just *have* an adultery-- you *commit* adultery. and you can't even *commit* adultery unless you already *have* a commitment. so you have to make the commitment before you can even think about committing it. there's no commit without the commit. then, once you commit, then you can commit the adultery. then you can get caught, get divorced, lose your mind and they have you committed. but y'know some people actually *cheat* on the people that they're cheating with. which is like, y'know, being in a hold up and then turning to the robber next to you and goin' alright, gimme everything you have, too''. george: you met her at the supermarket? how did you do that? jerry: (flips a roll of paper towels in the air) produce section. *very* provocative area. a lot of melons and shapes. everyone's squeezing and smelling... it just happened. george: (laughs-hu) so when're you gonna see her? jerry: tonight. george: what's her name? jerry: i... don't... know... george: how could you not know her name? jerry: i was a little nervous, i got distracted. it has something to do with a car, or a fish... jerry: look at that. why do i get bananas? they're good for *one* day... george: oh my god, i forgot to tell you. i got a letter today from the state controller's office. y'know when i was going to public school back in brooklyn, every week i used to put fifty cents in the lincoln savings bank. jerry: yeah, i did that too. george: yeah, you remember the, the little eh, bank book, there? jerry: sure. george: alright, so i haven't put anything in it since sixth grade, i completely forgot about it. the state controller's office tracks me down. the interest has accumulated to 1,900 dollars. 1,900 dollars! they're sending me a cheque! jerry: wow! george: hu-yeah, interest. it's an amazing thing. you make money without doing anything... jerry: y'know i have some friends who try and base their whole life on that principle. george: really? who? jerry: nobody you know... george: maybe i'll go down to the track. put it all on a horse... jerry: why don't you put it in the *bank*? george: the *bank*? this is *found* money. i want to *parlay* it. i wanna make a big score! jerry: *oh*, you mean you wanna *lose* it... kramer: yeah... all right....ya got it, eh. jerry: yes i did. kramer: yes. george: what's with the gloves? kramer: well, i'm staining my floors, y'know, i don't want to get my hands dirty... george: huh. what, the whole apartment? kramer: the whole apartment. and i'm buying that fake wood wallpaper. i'm gonna surround myself in wood. it's gonna be like a log cabin. 'cuz i *need* wood around me. wood, jerry [snaps fingers]... wood. jerry: wood is good. kramer: definitely. jerry: so we're still going to the health club to play racquetball right? kramer: yeah, yeah, whenever you're ready. jerry: o.k., soon as elaine gets here. kramer: yep. jerry: what, you rented "home alone"? george: yeah. jerry: i thought you saw that already... george: no, i saw "home alone ii". jerry: oh, right... but you *hated* it! george: well i was lost, i never saw the first one. by the way, you mind if i watch it here? jerry: what for? george: because if i watch it at my apartment i feel like i'm not doing anything. if i watch it here, i'm out of the house; i'm doing something. jerry: all right.. go ahead. jerry: yeah? elaine: (on the intercom) it's me, are you ready to go? jerry: no. come on up. kramer: i can't work with these! jerry: what's wrong? kramer: well, you bought me dishwashing gloves. there's no *fine touch*... jerry: you said "gloves"... kramer: no, no, these are too thick. (removes the gloves/tosses them on the kitchen counter) kramer: oooh, is that "home alone"? george: yeah. the *original*. elaine: hey boys-o! everyone: (in unison) heyyyyyyyy. kramer: hey, how's it goin'? elaine: hello. jerry: (to kramer) hey (snaps fingers) get your stuff, let's get going. elaine: well wait a minute, there's a slight change of plans. jerry: what? elaine: eh, remember roy, the artist? jerry: oh, the "triangle" guy. elaine: yeah, exactly, the "triangle" guy. jerry: yeah, you liked him. what happened with him? elaine: yeah i did. he was very talented. he was, ah just, i don't know a little too... jerry: artsy? elaine: fat. jerry: oh. (unh - very quiet sigh) elaine: he was a fat, starving artist, y'know. that's very rare. jerry: yeah. elaine: anyway, he's in the hospital, he's having surgery and i feel like should go visit him. jerry: what's wrong with him? elaine: unh, something with his spleen. anyway it'll just take five minutes, o.k., and then, the hospital is right on the way. kramer: yeah. (putting hand to his mouth, hatching a thought) jerry: all right we'll wait for you. kramer: yeah, maybe i can get some rubber gloves there huh, yea. elaine: listen, jerry can you do me a favor? (clears throat) could you, go into the room with me to visit him because ah, i don't want him to think that i'm, y'know... interested. jerry: oh, you want me to pretend to be your boyfriend. elaine: well... jerry: well i think i can do that. i believe i've played that role before to some critical acclaim. elaine: aha ha ha (laugh) kramer: all right, lets go. jerry: all right (picks up his sports bag) kramer: yep yep yep. elaine: what's with him? jerry: y'know a lot of people have asked that... elaine: roy! roy: *elaine*! what a *surprise*. (sitting up) elaine: (gasp) oh, my *god*! i hardly recognize you! you look so... roy: yeah, ya know, i've lost some weight... elaine: a *lot* of weight. (enthusiastically) roy: i know. elaine: aha hu, you look *terrific*. roy: thank you. so do you. elaine: ah hahaha hhuu ha (flirty laughing) elaine: ah, this is... uh... you *really* lost weight. roy: thank you. jerry: jerry, uh, i'm the boyfriend. (puts his arm around elaine's shoulder, but she shrugs it off twice) hospital voiceover: doctor wittenberg, outside call. doctor wittenberg, outside call. woman: ahaaaaaaaaaa! (scream) kramer: (a bit startled) ahh. hospital voiceover: doctor wittenberg, outside call. kramer: ah, the mother lode! (the door squeaks a bit as he pushes it open) elaine: i can't believe it! you were *huge*! like blubber! i couldn't even get my arms around you... roy: yesss, i remember. elaine: ahahaha. well that's the positive thing about getting sick, you get to lose weight. roy: elaine, it wasn't the illness. it was you. elaine: me? roy: (quietly- yeah) after you stopped seeing me, i was devastated. i couldn't eat for weeks. elaine: *get* *out*! roy: really, it's the truth. elaine: jerry, did you hear this? he couldn't eat for weeks... jerry: that's terrible... elaine: i had no idea i had that kind of effect on you. roy: you did. jerry: you know i can't get this *damn thing* to sleep. (about the yo-yo) elaine: now listen roy, tell me something. when, are you gettin' out of here? roy: next thursday. elaine: okay, i'll tell you what. how about on friday i take you out for a *big* meal because *you* are getting *too* thin... jerry: honey... aren't we going to the poconos next friday? elaine: no that's the week after. jerry: no, i believe it's next week. elaine: you're wrong. jerry: no i'm not... elaine: shut up... kramer: pay dirt! (holding up the hand full of gloves. he looks behind himself as the door closes) elaine: uh roy, this is uh kramer -- he's one of our friends. roy: oh, how do you do? kramer: yeah... i do great, yeah. doctor: hi roy. roy: oh, hey dr. siegel. jerry: hey doc, check this out. [does an around-the-world with the yo-yo] kramer: heey. jerry: i *just* learned that. (proudly holding the yo-yo) doctor: a-hu. (the doctor is at a loss) doctor: i just wanted to stop by -- see if you had any questions about tomorrow's operation. kramer: ah, yeah yeah, i have a - i have a question, um -- what do you know about inter-abdominal retractors? doctor: are you asking because you saw "20/20" last night? kramer: i sure am. doctor: well that report was about *one* very specific type of retractor and i can assure you we do not use that retractor in your friend's procedure. kramer: but you *will* use... a retractor. doctor: we have to... kramer: mmm-hmm... (turns and walks away, makes a face, raises his eyebrows, nodding his head, then turns back to the group.) doctor: tell you what. you're obviously concerned about your friend's welfare. a few of my students will be observing tomorrow's operation from the viewing gallery. how would you like to watch it with them? kramer: i'd love to watch the operation, yeah! jerry: i dunno... kramer: oh, come on jerry. you gotta see the operation. they're gonna cut him open -- his guts'll be all over the place... jerry: yeah, that's true... kramer: ...they'll saw through bone. uuuuuuuing yutyutyutyutn naannnaaa [makes saw noises while gesturing over roy's chest] you'll see what's *inside* bone... george: ttu (wipes nose and sniffs) ttu. jerry: hey. george: hi... jerry: what are doing, you crying?? george: no... (takes off his glasses and wipes his eyes with his sleeve) jerry: you crying from "home alone"?? george: the old man got to me. jerry: alright, just get yourself together... i dunno if i can be friends with you anymore after this display. george: oh shut up! what are you doing back so soon, anyway? (puts the tape back in it's case.) jerry: oh, i never even got to the gym. kramer got the gloves, wanted to come home and start working on his floor. george: oh. how's the guy? jerry: oh, he's okay. in fact him and elaine are getting ah, pretty chummy. now elaine wants me to buy some of his art. (opens the fridge and gets a bottle of water.) george: hnh. that's nerve... jerry: yeah, so she and "triangle boy" can go out to fancy restaurants. (takes a sip of water) george: y'know what it is? it's "clara nightingale syndrome." he falls ill; she falls in love. jerry: you mean florence nightingale. ** (** footnote: see short bio at end of script **) george: what'd i say? clara? jerry: yeah, you must have meant clara barton. ** (** footnote: see short bio at end of script **) george: clara barton? what did she do? jerry: i'm not sure, but i think she was nice. (takes a sip of water) george: susan b. anthony** i think i'd have a problem with. (** footnote: see short bio at end of script **) jerry: yeah, i think you would. george: so, you gonna buy his art? jerry: no. why don't you buy it? you got 1,900 dollars. george: yeah, that's what i want-- triangles. alright, i'm outta here. have fun with what's-her-name. jerry: i will. george: y'know, now you gotta ask her her name. it's so embarrassing. jerry: no, it isn't. i can find out. george: yeah? how? jerry: there are ways. jerry: y'know i remember when i was a kid growin up, kids would make fun of my name like you wouldn't believe-- "jerry jerry dingleberry", and-hu "seinsmelled"... woman: "seinsmelled"? jerry: yeah. a-hu. what about you? did people make fun of your name? woman: are you kidding? they were merciless! what do you expect when your name rhymes with a part of the female anatomy? woman: (con't) of course, not everybody can be as sweet as you are. woman: oh, oh jerry... jerry: oh... *you*... george: now let's try "breast"... celeste... kest... jerry: no. george: rest... sest... hest... jerry: "hest"? that's not a name. george: what, you should've just asked her. jerry: i know, i should've asked her. george: what're you gonna do now? jerry: i dunno. i can't ask her now; i've already made out with her. once you make out with a woman, you can't ask her her name. george: aretha! (points finger at jerry) jerry: no... george: bovary! (points finger again at jerry) jerry: alright, that's enough. (sips coffee) george: alright, well you know what'cha gotta do, you gotta go through her purse. y'know, the-the credit cards, driver's license... jerry: how am i gonna do that? george: when she goes to the bathroom. kramer: ah, (smacks hands) there you are. my date stood me up. listen, will you guys go to the operation with me? jerry: you asked a date to go to the operation? kramer: yeah... so c'mon, (smacks hands and rubs them together) what d'you say? george: what kind of operation is it? kramer: spleenectomy. george: isn't that where they remove the-- kramer: no no, don't ruin it for me, i haven't seen it yet! ah-c'mon, what d'you say? george: mulva! (again pointing finger at jerry -- kramer watches the exchange back and forth) jerry: mulva? (waves off george with his hand) kramer: c'mon, c'mon. you wanna go? (pats jerry a couple times on the shoulder quietly) c'mon. yeah, yeah, yeah. jerry: alright, alright. just let me finish my coffee... then we'll watch 'em go slice this fat bastard up. (sips coffee) doctor: now we'll open the peritoneal cavity, exposing the body's internal organs. nurse-- retractor. jerry: what are you eating? kramer: junior mints. do you want one? jerry: no... kramer: now, i can't see..... psst.... psst... kramer: ... cou, ye, ge... kramer: y-ea (pours a few more junior mints into his hand and eats them) jerry: where'd you get those? kramer: the machine. you want one? jerry: no. kramer: here, take one. jerry: i don't want one. kramer: no, they're good! take one.. jerry: i don't want any! kramer: just take one. jerry: no! stop it! kramer, stop it! [as they struggle to force the junior mint on each other, jerry pushes kramers' hand away and -- in slow motion with the sound of a beating heart to emphasize the event -- the junior mint is launched into the air towards the operating table and, well, in a word: "bingo" -- with a small "splat" sound -- falls into roy, the patient. the surgical team looks around puzzled as to what just happened -- but they continue on with the operation) jerry: (pointing at the operation he mouths the words) did it go in? kramer: ge-- jerry: ...over the balcony, bounced off some respirator thing *into* the patient! george: what do you mean "into the patient"? jerry: into the patient, *literally*! george: into the hole? jerry: yes, the hole! george: didn't they notice it? jerry: no! george: how could they not notice it?!? jerry: because it's a little mint. it's a *junior* mint. george: w-ca-what did they do? jerry: they sealed him up with the mint inside. george: they *left* the junior mint *in* him? jerry: yes! george: i-i guess it can't hurt him... people eat *pounds* of those things. jerry: yes they *eat* them. they don't put them next to vital organs in their abdominal cavity! jerry: yeah. elaine: it's me. jerry: come on up. kramer: hey. this wallpaper is *very* good. my place looks like a ski lodge! jerry: why did you force that mint on me? i told ya i didn't want the mint! kramer: well, i didn't believe you. jerry: how could you not believe me?!? kramer: well who's gonna turn down a junior mint? it's chocolate, it's peppermint-- it's *delicious*! jerry: that's true. kramer: it's very refreshing! jerry: well, just don't say anything about this to elaine... elaine: prognosis... negative. jerry: prognosis *negative*!? elaine: he's not doing well, the doctors don't know what it is. they're baffled. jerry and kramer: oh, my god... elaine: just my luck, y'know... just when he's getting thin and attractive. y'know jerry, you should buy some of his art. that would really lift his spirits. george: it's that bleak? (pours a glass of milk) elaine: mmm... (elaine goes to the bathroom) george: y'know if the guy dies, the art could really be worth something... jerry: we gotta confess. kramer: really? jerry: yes! kramer: we could be tried for murder... jerry: i can't have this on my conscience. we're like leopold and loeb! ** (** footnote: see short bio at end of script **) kramer: you're not gonna say anything, you got that? jerry: i'm telling and you can't stop me! kramer: you're *not*!!! george: hey elaine? put me down for some of that art. 1,900 dollars worth. jerry: oh yeah, that's the spot... woman: what're you so tense about? jerry: oh, nothing really, just a homicide. [she finds the right spot on his back] oh that's terrific... mulva. woman: what? jerry: mulva? woman: mulva? jerry: oh my eh, my aunt's name is mulva. she's-she's a masseuse. woman: huh. jerry: yeah. woman: um, i'm going to the bathroom. i'll be right back. jerry: oh, good idea... woman: what are you doing? jerry: oh, i was just looking for er, some... gum or... mint. woman: oh, i have junior mints. jerry: no! [throws her purse back at her] no, i mean, no thank you, nah... kramer: any news? jerry: [whispering] no, no news. you better get out of here. kramer: oh. jerry: oh no, wait a second... wait a second... i-i don't know the name of this woman in the bathroom, so when she comes out, you introduce yourself and then she'll be forced to say her name. kramer: 10-4. jerry: o.k. (closes the apartment door) woman: oh, hello. kramer: hello, i'm kramer. woman: nice to meet you. kramer: see you later. (he promptly turns and leaves) woman: well, i better get going. i don't want to be late for the play. (grabs her coat.) jerry: oh, okay. woman: y'know my cousin knows the producer. i may get to go backstage and meet olympia dukakis. jerry: oh, hey, there's a name you don't forget. woman: mm. bye jerry. jerry: bye. woman: oh, hi. george: oh, hi, i'm george. (they shake hands) woman: oh, nice to meet you, george. george: yeahaha, i gave it a shot (pats jerry on the arm)... so, any word on the "artiste"? (puts a video in the vcr) jerry: no, i haven't heard anything. george: hehe. well, i got my triangles. (sitting on the couch) jerry: really... george: yup, y'know, they really spruce up the apartment. jerry: yeah, i'm sure... jerry: well, i-i gotta call the hospital. i gotta tell 'em what happened. george: no-no jerry. i wouldn't do that. jerry: why? george: ehh, you could get in trouble. jerry: look, i gotta try and help the guy. george: who are you to play god!? every man's time comes! if his number is up, who are you to interfere!? jerry: yes i'd like to speak with dr. siegel... it's about roy kordic's condition... george: w-what? what? jerry: oh, that's *fantastic*! george: he didn't get better, did he? jerry: thank you very much. o.k. bye-bye. he's gonna be okay! george: where's the luck? there's no luck. 1,900 dollars down the drain. roy: you saved my life, george. you buying my art is what inspired me to get better. i'll never forget what'cha did for me. george: oh, well th-that's great. it's really great. hm hm mm. kramer: y'know, art's a great investment. elaine: and they're gonna look great in your apartment, george. george: yes i look forward to many years of... looking at the triangles. well, i'll ah, i'll wait for you outside. roy: hey, george... george: yeah. kramer: awe, alright jerry: that's nice. george: thanks roy. roy: heeyy - there's the guy who saved my life. (points at the doctor.) doctor: y'know... i don't want to totally discount the emotional element in your recovery but, i think there were other factors at play here. jerry: what do you mean? doctor: i have no medical evidence to back me up but, something happened during the operation that staved off that infection. something beyond science. something perhaps, from above... kramer: mint? doctor: those can be very refreshing. roy: so elaine... where are we going for our big dinner on friday? (takes a big mouthful of spaghetti) elaine: uh-m, uh i'm so sorry roy, but actually, we are going to the, poconos on friday, right honey? (pointing to jerrythe boyfriend?) jerry: i don't think so... elaine: we are... that means that we ah, we are... jerry: i believe we're not... elaine: (catching another glimpse of roy eating) hunh, please can we go to the poconos? jerry: well, i'll think about it... woman: great seats. you could see the actors spitting. jerry: really... woman: uh-huh. and afterwards we went backstage and olympia dukakis autographed my playbill. jerry: oh, wait a second, you got her autograph? woman: yeah. jerry: do you have it with you? woman: yeah, it's in my purse. jerry: ah, le'me see. (hands jerry the playbill) woman: y'know i really think i'm falling for you, jerry seinfeld. (stands up, a quick kiss on the cheek and hugs him.) woman: oh, well, i really think i'm falling for you... [opens the playbill and flips five pages till he finds and reads autograph] .....joseph puglia... woman: i had it autographed for my uncle. jerry: yeah, i-i know... woman: (licks he lips) you don't know my name, do you? jerry: yes i do. woman: what is it? jerry: it-it rhymes with a female body part. woman: what is it? jerry: mulva... jerry: aub, ah, gipple? jerry: loleola? jerry: oh! oh! *delores*! jerry: ages zero through ten, candy is your life. there's nothing else. family, friends, school-- they're only obstacles in the way of getting more candy. and you have your favorite candies that you love. you know the ones i love those... i hate those...''. ``i hate those... i love those...''. and only a seven year old kid could actually taste the difference between like a red m&m and a light brown, m&m. that's two totally different things when you're seven years old. "well, your red is more of a main course m&m, but the brown it's more of a mellower flavor; it's an after dinner m&m, really''. jerry: ...and it *is* embarrassing, because a doggie bag means either you are out at a restaurant when you aren't hungry, or you've chosen the stupidest possible way to get dog food that there is. how about the doggie bag on a date? that's a good move for a guy, huh? lemme tell you something if you're a guy and you ask for the doggie bag on a date, you might as well have them just wrap up your genitals too. you're not going to be needing those for awhile, either. jerry: is that bothering you? elaine: no, not at all... elaine: oh, could you please hurry? jerry: [mockingly] "please hurry". look at you. look at what you've become. elaine: what? what have i become? i haven't "become" anything... jerry: oh, *carl* can't wait a few more minutes? elaine: i don't want to keep him waiting... jerry: he'll like you more... elaine: that's impossible... wife: andrew, why do you have to pick your teeth at the table? husband: leave me alone. jerry: yeah, i'm wanting to get married *real* soon... jerry: so, where am i dropping you? elaine: his place... jerry: this guy's got quite a racket. i take you to dinner and then drop you off at his apartment... elaine: *and* he gets the rest of my chicken... jerry: so, is tonight "the night"? elaine: you never know... jerry: oooh! bay-bee *doll*! jerry: boy, do you smell something? elaine: do i smell something? what am i, hard of smelling? of *course* i smell something. jerry: what is it? elaine: i think it's b.o.! jerry: what? elaine: it's b.o. the *valet* must have had b.o. jerry: it *can't* be. nobody has b.o. like this. elaine: jerry. it's *b*.*o*. jerry: but the whole car smells. elaine: so? jerry: so when somebody has b.o., the "o" usually stays with the "b". once the "b" leaves, the "o" goes with it. elaine: i can't believe you ski! carl: i'm a great skier. elaine: yeah? what else? carl: let's see... i ski, i fish, i pillage, i plunder... elaine: [delightedly] oh! you "pillage and plunder"? carl: ...when i travel. elaine: see? finally, *finally* i get to meet a man who pillages and plunders! i'm so lucky. george: this'll only take a second. kramer: yeah, i'm going to poke around... george: [to himself] hey, whatd'ya know? look at that! a *lesbian* sighting. oh-ho! my lucky day. they're *so* fascinating. why is that? because they don't want us. you gotta respect that... george: [to himself] oh, my god! it's susan! what do i do? susan: george? george: [to himself] argh! [to susan] susan! hi! oh, boy! what are you doing here?! susan: renting a video! what do you got there? george: oh, ... some stupid movie... susan: this is mona. george: oh, hi... mona: pleasure to meet you. george: yes. well... mona: well, i'll let you two, uh... catch up. susan: you okay? george: yeah. yes! i just haven't seen you in a long time. susan: and you didn't expect me to be holding hands with a woman. george: oh, *please*! me? c'mon! that's *great*! are you kidding? i think thats fan*tastic*! i've always encouraged experimentation! i'm the first guy in the pool! who do you think you're talking to? susan: i *know* who i'm talking to. george: of course you do... it's just, uh, y'know, i-i never *knew*, uh, that, uh... susan: i liked women? george: there you go. george: so, uh, how long has this been going on? susan: since you and i broke up. george: ssssso, after me, you... went that way? susan: yeah. george: oh, i think that's fantastic. good for you. nice. that's very nice. susan: so, what have you got there? george: oh, i, uh-- susan: oh, ``rochelle, rochelle'' george: it's a foreign movie... a *film*, is what it is, actually. susan: yeah... a lot of nudity in that, huh? george: no, no, no... just a *tiny* bit... it's not even *frontal* nudity. it's... *sidal* nudity... clerk: next. george: oh, that's me. susan: alright, well... good seeing you, george. george: yes, good to see you, too. and good luck with, uh... with the whole thing, there. clerk: uh, what are you returning? george: [embarrassed pause] ``rochelle, rochelle''. clerk: ah, ``rochelle, rochelle''... "a young girl's strange, erotic journey from milan to minsk"... clerk: uh, that'll be, uh... $3.49. george: $3.49? it says $1.49. clerk: well, you didn't rewind it. there's a $2.00 charge for not rewinding. george: what! there's no signs here! this is an outrage! kramer: george, don't give him any money for that. it'll cost you less to keep it another day, rewind it and bring it back tomorrow. don't give him the satisfaction. george: i'm not giving you the satisfaction. i'm gonna watch it again... jerry: so, this morning i go down to the garage to check the car out. i figure by this time, the odour molecules have had at least twelve hours to de-smellify. i open the car door, like a *punch* in the *face*, the stench hits me-- it's almost as if it had *gained* strength throughout the night... elaine: y'know i can think of at *least* six known offensive odours that i would *rather* smell than what's livin' in your car. jerry: what about skunk? elaine: i don't mind skunk. jerry: horse manure? elaine: i *loooove* horse manure. jerry: well, i've never seen anything like this in my life. in fact, i went to the car wash, they want 250 dollars to detail it, and get the smell out. i'm not payin' for that. that's not my responsibility. in fact, i'm drivin' up to that restaurant now, and *demand* they pay for it. elaine: absolutely. elaine: listen, lemme ask you something. when you're with a guy, and he tells you he has to get up early, what does that mean? jerry: it means he's lying. elaine: wow... jerry: why? is that what he told you? elaine: yeah, last night. oh, come on... men *have* to get up early some time... jerry: no. never. elaine: jerry! i'm *sure* i've seen men on the street early in the morning. jerry: well, sometimes we do actually have to get up early, but a man will *always* trade sleep for sex. elaine: is it possible i'm not as attractive as i think i am? jerry: anything's *possible*... jerry: what's the matter with you? kramer: steinbrenner! he's ruinin' my life... jerry: oh yeah, steinbrenner... kramer: i don't think i can take another season with him, jerry. he'll just trade away their best young prospects, just like he did with beuner, mcgee, drabek... mcgriff... jerry: i know the list... kramer: what's that smell? jerry: what smell? kramer: ooooh... you stink. jerry: whatd'ya mean i stink? kramer: you *stink*. why don't you go take a shower? jerry: i showered! oh, wait a second... since i showered, i've been in the car! elaine: so? jerry: don't you see what's happening here? it's attached itself to me! it's alive! elaine: if it attached itself to you, then... oh, my god! that's why carl said he had to get up early! because i stink! jerry, he thinks i have b.o.! me! kramer: what happened? jerry: what happened? my car *stinks* is what happened. and it's destroying the lives of everyone in it's path. george: what is that? b.o.? jerry: yeah. george: this is *unbelievable* b.o. jerry: i know... i was at the car wash this morning and the guy told me in his 38 years in the business, he's never smelled anything like it. george: so, let me ask you. do you think i could have done this? jerry: no, no. it's the valet guy. george: no, no, i mean, driving susan to lesbianism. jerry: oh... no, that's ridiculous. george: what if her experience with me *drove* her to it? jerry: suicide, maybe, not lesbianism. george: the woman she's "lesbianing" with? susan told me she's *never* been with a guy. george: oh, this isn't even b.o.! this is *beyond* b.o.! it's *b*.b.o.! jerry: there should be a b.o. squad that patrols the city like a "smell gestapo". to sniff 'em out, strip 'em down, and wash them with a big, soapy brush... george: y'know, the funny thing is, somehow i find her more appealing now... it's like if i knew she was a lesbian when we went out, i never would've broken up with her. jerry: lemme see if i understand this... on second thought... jerry: here he is... that's the guy! (rolls up window) no, thank you, go back... go back... i'll park it! you go back! restaurateur: what do you mean-- "stunk up"? jerry: i mean the car *stinks*! george, does the car stink? george: stinks. jerry: stinks! restaurateur: well, perhaps *you're* the one who has the odour... jerry: hey, i've never smelled in my *life*, buddy! restaurateur: really? well, i smell you now. jerry: that's from the car! restaurateur: well, maybe *you're* the one who stunk up the car, rather than the car stinking up you! george: oh, it's the chicken and the egg... jerry: thank you very much... well, then go out and smell the car; see which smells worse. restaurateur: i don't have time to smell cars. george: forget about smelling the car. smell the valet. go to the source... jerry: you've gotta smell the car restaurateur: i'm a busy man jerry: c'mon! one whiff! restaurateur: alright, one whiff... restaurateur: alright! i give up! i admit it! it stinks! now will you let me out! jerry: alright, will you pay for the cleaning? restaurateur: yes! 50 dollars! i'll give you 50 dollars! restaurateur: i'm not paying for *that*. they've already got my seven dollars... [sarcastically] "...erotic journey from milan to minsk"... carl: the valet had such bad b.o.? elaine: oh, man, just *rampant*, **mutant** b.o. the "o" went from the valet's "b", to the car, to me. it clings to everything. jerry thinks it's an entity. but i showered and i shampoo'ed, so... carl: that's a relief... elaine: what? carl: it's still there... elaine: no, no, no! it *can't* be! i shampoo'ed! i rinsed! i repeated! george: listen, i gotta ask you i was a little concerned that perhaps i was responsible in some way for your, uh... metamorphosis. clerk: that'll be $98.00. george: what $98.00? clerk: that's what i said. $98.00. george: how could that piece of *crap* cost $98.00!? george: so, was it me? susan: oh, don't be ridiculous! is that what you wanted to talk to me about? [gives him the $35] here. george: oh, thanks. thanks a lot. i'll pay you back. susan: yeah, *sure*... i gotta go. george: listen. let me ask you something. if you and mona were ever to... dance, how do you decide who leads? i mean... do you take turns? do you discuss it beforehand? how does that work? susan: you're an idiot. george: why? that's a *legitimate* sociological question. susan: i'll see ya. and george, by the way... you stink... real bad. george: it's not me! it's the car! mona: i didn't think i'd come. kramer: i knew you would. mona: oh, kramer! car washer: we spray everything with ozium-d, let it de-ionise, vacuum the spray out with a de-ionising machine. hit it with high-pressure compressed air, and wet-dry vac it to extract the remaining liquids. we top it off with one of our seven air-fresheners, in your case, i would recommend the jasmine, or the potpourri. jerry: let's do it. hairdresser: the first thing we're gonna do is flush the follicles with the five essential oils. then, we put you under a vapour machine, and then a heated cap. then, we shampoo and shampoo and condition and condition. then, we saturate the hair in diluted vinegar-- two parts vinegar, 10 parts water. now, if that doesn't work, we have one last resort. tomato sauce. elaine: tomato sauce? jerry: wait a minute! it still smells! it still smells! carl: it still smells. jerry: it still smells! george: how could it still smell after all that? jerry: i don't know! george: well, what are you gonna do? jerry: i'll tell you what i'm gonna do, i'm selling that car! george: you're *selling* the car!? jerry: you don't understand what i'm up against. this is a force more powerful than anything you can imagine. even *superman* would be helpless against this kind of stench. and i'll take anything i can get for it. george: maybe i'll buy it. jerry: are you crazy? don't you understand what i'm saying to you? this is not just an odour-- you need a *priest* to get rid of this thing! elaine: i still smell! jerry: you see! you see what i'm saying to you? it's a presence! it's the beast! susan: kramer! kramer! kramer, open up, i know you're in there! jerry: susan! susan: kramer! jerry: what is going on? susan: you know what's going on? first, he vomits on me. then, he burns down my father's cabin. and now, he's taken mona away from me. george: he stole your girlfriend? susan: yes. she's in *love* with him. george: amazing. i drive them to lesbianism, he brings 'em back. jerry: that's the *least* of what you've accomplished... elaine: wait a minute, wait a minute. kramer, kramer... hold on a second. i don't get this. this woman has *never* been with a man her *entire* life-- kramer: i'm kramer. george: i know what you're going through. women. who knows what they want? susan: i just don't know what she sees in *kramer*. george: listen. you're beautiful. you're intelligent. you'll meet other girls... susan: you think so? george: yes, i know so. you happen to be a very eligible lesbian. susan: you're very sweet... george: hey, i know what i'm talking about. i gotta be honest with you, i gotta tell ya... ever since i saw you holding hands with that woman, i can't get you out of my mind. susan: really? george: yeah, you're just so... hip. george: oh, my god... susan: what? george: it's allison. i dated her right after you. she's obsessed with me. allison: george? george: allison! hi! oh, my god! how are you? allison: good. you know, you owe me $50... george: right. i don't have it on me. allison, this is susan. susan, allison. allison: nice to meet you... susan: nice to meet you... allison: that's a beautiful vest... susan: thank you... kramer: i don't understand it. i was with her last night in my apartment; it was very romantic. y'know with that fake wood wallpaper, the atmosphere is *fabulous* in there, now. it's like a ski lodge. salesman: what year did you say this was? jerry: '90. kramer: anyway, we were on the couch, i move to hug her, next thing she tells me she's leaving; she's got to get up early. jerry: that's strange... salesman: how many miles you got on this thing? jerry: 23 000. kramer: and i was looking good, too. i had a nice, new shirt on, i'm wearing *your* jacket... jerry: wait a second... my jacket! i wore that in the car! the beast! salesman: i can't sell this car. jerry: this... **thing**... has got to be stopped! hairdresser: so, what do you want to do? elaine: sauce me. jerry: i have a friend who is about to get married, they're having the bachelor party and the bridal shower on the same day... so it's conceivable that while she's getting the lingerie, he'd be at a nude bar watching a table dancer wearing the same outfit. that is possible. but to me, the difference between being single and being married, is the form of government. you see, when you're single, you are the dictator of your own life. i have complete power. i can give the order to fall asleep on the sofa with the tv on in the middle of the day, no-one can overrule me! when you're married, you're part of a vast decision-making body. before anything gets done there are meetings. committees have to study the situation. and this is if the marriage works. that's what's so painful about divorce you get impeached and you're not even the president! george: hey, is it my imagination, or do really good looking women walk a lot faster than everybody else? elaine: we don't walk that fast... george: no seriously... elaine: seriously, we don't. george: the better looking they are, the faster they go! i mean, i see they out there on the street, they're zooming around, like a blur. like they have a motor on their ass. elaine: (yelling to jerry in the bedroom) hey jerry, come on, let's go. we're gonna miss the previews! elaine: hey, how are we gettin' to scott drake's party on saturday night? jerry: oh, drake's party, i forgot to buy a present. george: i gotta buy a present now? elaine: of course you do, it's an engagement party. george: it never ends, this present stuff! engagement present! then they get married, you gonna have to get them something for that! then the baby, there's another present. then the baby starts getting their presents. i don't even like drake. jerry: you don't like the drake? george: hate the drake. elaine: i *love* the drake. jerry: how could you not like the drake? george: who's the drake? elaine: "who's the drake"? jerry: the drake is good! elaine: so listen, what are you gonna get him? george: i haven't even met the fiancee! whatever! (leaves for washroom) jerry: elaine, look. i drew this triangle free-hand. it's a doodle. it's perfect! elaine: so what? that's easy. jerry: easy? elaine: hi! hey, have you gotten your present yet for the drake? kramer: uh, no, no, not yet. jerry: do you like the drake? kramer: i *love* the drake! i'm looking forward to meeting the drakette! elaine: i'm lukewarm about the drakette. kramer: (looking at jerry's doodle) that's a nice triangle... jerry: it's isosceles kramer: ooh, isosceles. i love the name isosceles. if i had a kid, i would name him isosceles. isosceles kramer. elaine: hey, you know what, maybe we should all chip in for the gift. jerry: the chip-in! elaine: hey, a pretty good idea, huh? jerry: yeah! kramer: yeah, the chip-in, defenitely! jerry: you know what, let's go to that mall in liberal(sp?) before we go to the party. we'll have to take your car, it's got the most room. kramer: no, no! my car's not running. jerry: what about your father's car? george: no, no, no. out of the question. i was over there today. he's got the good spot in front of the good building in the good neighbourhood. i know he's not gonna wanna move. jerry: are you serious? george: you don't know what that spot means to him. once he gets it, he doesn't go out for weeks. jerry: how about this, you put your car in the good spot, that'll hold the good spot in front of the good building, and we can get the good car! george: good thinking! jerry: good to meet you! elaine: so what are we gonna get him? jerry: we could get him anything we wanted, we're chippin' in. george: i like this area. i could live out here. kramer: yeah, we ought to all get a house and live together. jerry: yeah, that's a good idea. i'll tell you what chuckles, i give you permission to sublet my room right now. george: look at this. there's no spaces here. (to another car) excuse me, are you gettin' out? man in car: no! kramer: why don't you take a handicap spot... george: you think? elaine: no, no! we'll find a space. there's spaces in the other lot. george: i don't want to walk that far. elaine: what if a handicapped person needs it? kramer: oh, come on, they don't drive! jerry: yes, they do! kramer: have you ever seen a handicapped person pull into a space and park? jerry: well there's spaces there, they must drive! kramer: well they don't. if they could drive, they wouldn't be handicapped. elaine: so if you can drive, you're not handicapped? george: look, we're not gonna be that long anyway... we have to get to the "party"! kramer: i got news for you handicapped people, they don't even want to park there! they wanna be treated just like anybody else! that's why, those spaces are always empty. george: he's right! it's the same thing with the femenists. you know, they want everything to be equal, everything! but when the check comes, where are they? elaine: what does that mean? george: yeah! alright, i'm pulling in. kramer: yeah, go ahead. elaine: george! george: oh, come on, it's five minutes. kramer: make sure we don't forget where the car's parked. jerry, george, elaine: don't worry. we won't forget! jerry: do you believe the deal we got on this? a big screen tv? at that price? elaine: what a sale, huh? and how about that store, delivering it tonight? we're gonna be swimming in 'thank you's... george: what did i get the veggie burger for? you got a veggie burger, so i had to get the veggie burger, i'm allover crums... jerry: no-one's gonna have a better gift than this big screen tv! good for them, love the drake! elaine: got to *love* the drake! jerry: hey, what's going on over here? elaine: must have been an accident... jerry: (to a woman) hey, what's going on? woman: some jerk parked in a handicap spot, so this woman in a wheelchair had to wheel up this incline, and half way up her batteries gave up, and she rolled backwards into the wall. taken her to st. elizabeth's... jerry: is she ok? woman: i don't know. we're just waiting here for the owner of this car to show up. may not get out alive! thug! taking up a handicap spot? he's gonna pay! jerry: son's of bitches! good luck finding them... him... whatever. i'd like to stick around and get my hands on him myself, but i gotta take off. george: how are we gonna get out of here? they'll kill us! elaine: (to george) are you happy now? kramer: who would think these people we're gonna be here? jerry: i don't know... elaine: what about the party? what about the drake? george: screw the drake! jerry: i love the drake! kramer: let's just take a bus back to the city. george: can't leave the car here! kramer: why not? george: it's my father's car! man: let's smash it! everybody: yeah! yeah! jerry: let's get out of here. george: what are we gonna do? how are we gonna get out of here? jerry: the thing is, even if we go back by the car, and there's nobody there, how do we know they're not all hiding, waiting for us? elaine: well, they have to give up some time, they can't stay out there all night? jerry: what are we, john dillinger? how did this get to be the crime of the century? it's not like we stuck a broomstick in her spokes and she went flying... george: what i don't get is, just because the battery is dead, you think she'd be able to roll up the hill with her hands! kramer: you'd think... george: i mean, batteries have gone dead before, aren't they prepared for that? kramer: most of them don't even have batteries. george: must be one of those rich, spoiled handicapped people, who didn't want to do any work, and just wanted to sit in her wheelchair and take it easy. kramer: yeah... george: well, i'm sorry! elaine: our big screen tv is probably arriving right now... george: how are we gonna get out of here? we need a plan! jerry: i got it! (snaps his fingers) we give the keys to elaine. elaine: me? jerry: yeah! you're a woman! men don't hit a woman! elaine: oh, they won't? jerry: not if they don't know you... elaine: i'm not going for this, kramer should go! it was all his idea! kramer: no chance in hell! jerry: what if we created some sort of diversion? what if we all went by the car and started screaming "there he is, there's the guy that took the handicap spot!" and then, when they all run into the other direction, we'll jump in the car! george: that's good, we'll give it a try... elaine: that's good... jerry: that doesn't work, we'll give 'em kramer! kramer: huh? jerry: (as george picks up a broken piece of his car) you know, a lot of these scratches will buff right out... frank: eight years have i had this car. not a scratch on it! eight years! frank: a beautiful mercury! i special-ordered that bench seat! george: dad, that other car cut us off! they had swastikas all over it... they were hurling racial epiphates at us... i could have been killed! estelle: (to frank) i told you not to give it to him! frank: (to george) you know, my insurance doesn't cover this? the whole thing is a total loss! mahjong lady: frank, the important thing is, he didn't get hurt! frank: no it isn't! mahjong lady: so what are you doing now, georgie? george: i'm uh... writing a pilot for nbc... frank: where the hell is my paper? mahjong lady: you're writing a pilot? estelle: with his friend, jerry seinfeld... the comedian... mahjong lady: so what's it about? george: well, jerry's car gets hit and the other driver doesn't have any insurance, so the judge mahjong lady: this is the same situation! frank, maybe you ought to make him your butler! estelle: every time you're with that kramer, something happens... he's a real trouble maker! george: nah, he didn't have anything to do with it... estelle: he's all together crazy, that one! jerry? i used to think was nice... i don't know what happened to him... jerry: (to the drake) so it was a good party, huh? oh... you're welcome, you're welcome... (to elaine) they loved the tv, *loved* it! elaine: oh, yeah... jerry: (to the drake) oh, wait a second, i'll ask her.. that's a great idea. (to elaine) drake wants to know if we want to come out to minneolis this afternoon, since we missed the partly last night, to maybe get something to eat? elaine: sure! jerry: (to the drake) sure! ... okay... don't worry, i'm taking my car! ... okay... okay, see you later... bye... jerry: the drake is great! elaine: hmm.. he's so nice! i'm really happy for them. jerry: yeah. well, i don't know if i'm happy for them, i mean i'm glad they're happy, but, frankly, that doesn't do anything for me. jerry: yes? george: it's me. jerry: come on up. kramer: hey. i just came from st. elizabeth's. jerry: st. elizabeth's hospital? why? kramer: well, the handicapped woman? i went to see her. elaine: you went to see her? kramer: yeah. jerry: wow, what happened? kramer: i'm in love. jerry: what? kramer: yeah, she is the most beautiful woman i have ever seen. i love her jerry, i really love her. i'm gonna ask her to marry me. she's got everything i've always wanted in another human being. except for the walking. jerry: oh, what's the difference, you don't go out that much. kramer: ah, i'm glad you're here. george: what? kramer: alright, now, we gotta go out. we gotta buy a wheelchair. george: a wheelchair? what for? kramer: well, you know i went to the hospital today, and i saw the woman, you know, and the wheelchair is totalled, we gotta get her another one! george: doesn't she have collision? kramer: george, i'm in love with her! george: well, my father works for the united volunteers, maybe he can get her one. kramer: no! she needs it now! george: what about these two? aren't they gonna chip in? kramer: well... elaine: hey, we told you not to park there! george: can't we just fix the old one? kramer: alright, alright. fine george! don't chip in! but some day, we're gonna be driving along, we're gonna look out the window, and see her crawling along 5th avenue! is that what you want? george: alright, alright! we'll buy her a wheelchair! wheelchairs, engagement presents.. it never ends! salesman: this is out best model. the cougar 9000. it's the rolls royce of wheelchairs. this is like... you're almost glad to be handicapped. kramer: so now, what's this got? salesman: inductive joystick, dynamic braking, flip-up arms, it's fully loaded. i put stephen hawking in one of these two months ago, he's lovin' it! it's rated number one by hospital supply and prosthetic magazine. george: how much? salesman: 6200. george: do you have something a little more... less expensive? jerry and elaine: hey drake! hi drake! jerry: hey alison! hey, there's the tv, elaine, look at that! elaine: my god this is fantastic! tell me, were you guys just blown away or what? the drake: oh yeah, yeah... it's fantastic... jerry: i am gonna make good use of this! i'm watching every superbowl here, every big fight.... elaine: oh man, there is nothing like a really big tv, huh? jerry: so where're we eatin'? the drake: well, actually... jerry... elaine: i'm *really* hungry! the drake: ... we just broke up... jerry: when did this happen? the drake: about 20 minutes ago... hey, i am really sorry about this guys... whew! jerry: (looking at the tv) look at the picture on this thing... elaine: oh, cristal clear! jerry: they know how to make 'em... elaine: are there any good italian restaurants around here? the drake: (through his sobbing) gagliano's... that's pretty good... jerry: well... we should... elaine: get movin'... jerry: yeah... hey, drake, what ever happens, i am sure it'll be for the best. elaine: take it easy. bye-bye alison! elaine: oh, the remote! okay, i'm just gonna put it on top of the television... salesman: alright, this one is about 8 years old. not a scratch on it, it was owned by some lady who only used it to go from the bathroom to the kitchen and to feed her cat. kramer: but this'll get you around? salesman: oh sure, it just doesn't have any of the thrills of the cougar. george: like what? salesman: for example, your tremor-damping. kramer: now what's that? salesman: it helps to control the direction regardless of the operator's tremors or spasticity. kramer: well, is it alright if i try it? salesman: hop in! kramer: oh yeah! salesman: i tell ya... salesman: when i see someone enjoying themselves like that, it reminds me why i got into this business in the first place. george: how much? salesman: how about $240? george & kramer: we'll take it! elaine: drake gave her the tv? jerry: he gave her all the gifts; he felt guilty. elaine: well, she can't keep it, it's not fair, that's *our* tv! jerry: i know it is! elaine: boy, i am really starting to dislike the drake! jerry: i hate the drake! maybe the whole thing was a scam. anybody can just get engaged and get presents and just keep them all. maybe they're on their way to chicago tomorrow and do the whole thing all over again. elaine: they don't know anybody in chicago. jerry: don't worry, they'll make friends fast with that nice tv. george: hey. jerry: hey, guess what? the drake broke up. jerry: i don't know about defraying. george: why? jerry: we're not gettin' that tv. george: what do you mean? the engagement is off, we get the tv back. that's business. elaine: the drakette took it. george: she can't take it. it's not hers, it's theirs. once there's no theirs there's no hers, it should be ours. elaine: well, she has it! george: (upset) i *told* you the drake was bad! i hate the drake! george: maybe we should call her. elaine: well, who's gonna call? jerry: you are. elaine: what? why is it me who always has to do these things? jerry: because that's your thing! elaine: what? calling people i hardly know, and demanding they return expensive gifts, that's my "thing"? jerry: yeah, that's your thing. elaine: alright, gimme the phone... it's my "thing"... jerry: (to george) you know, i'm thinking about getting a yo-yo. george: really? jerry: yeah. george: i could see that... (alison through phone): hello? elaine: alison! hi, this is elaine... (alison through phone): i gave all the gifts to charity. elaine: oh, okay... well thanks a lot... sorry again about you and the drake... (alison though phone): i hate the drake. elaine: everybody does. bye-bye.... elaine: she gave it to charity. jerry: charity?!? that's apalling. george: how could anybody be so selfish and inconsiderate! kramer: well, i gave her the wheelchair! you should have seen the look on her face. and then she told me, that the old wheelchair, that wasn't any good anyway! so you see george, the whole incident was a god blessing! yeah! george: you mean a blessing in disguise? kramer: yeah.... lady: and i would also like to personally thank our gracious host frank costanza, who has earned the silver circle award and is our unanimous choice for the united volunteer representative of the month! lady: due to his tireless effort, he personally raised over $22,000. that's a lot of wheelchairs! lady: on behalf of the united volunteers of greater new york, we thank you! frank: well... thank you very much! cop: mr. costanza? frank: yes? cop: you're under arrest. frank: under arrest? what for? cop: reckless endangerment of public safety, and violation of traffic code 342-a. frank: what's that? cop: parking in a handicap spot. let's go... frank: george! george! jerry: your father got arrested? for what? george: parking in a handicap spot. right in the middle of his united volunteers meeting. when he got back, he chased after me with a baseball bat. jerry: ho-ly! george: between the car getting totalled, the towing charge and the fine, there's no way i can ever pay him back... jerry: so what are you gonna do? george: i agreed to become his butler. jerry: what? jerry: what's the matter? kramer: it's over! jerry: what's over? kramer: me and lola.... george: the woman we bought the wheelchair for? kramer: yeah, she dumped me! jerry: she dumped you? kramer: she dumped me! she rolled right over me! said i was a hipster dufus. am i a hipster dufus? jerry & george: (hesitatingly) ... no... kramer: said i'm not good looking enough for her. not good looking! jerry, look at me, look at my face, huh, am i beautiful? george, am i beautiful? george: ...you're very attractive... kramer: yeah... she says she doesn't wanna see me again. told me to drop dead! jerry: drop dead? george: boy, even i never heard that one... jerry: she's pretty rough! kramer: yeesh-jip! george: well, we just blew 240 bucks on a wheelchair. jerry: 240 bucks? george: well, it was slightly used... jerry: used? frank (picking up his shoes): i don't think you did such a good job on these... george: what!? frank: you're supposed to your face there! do you see your face in there? frank: yeah? ...oh really?...oh... how about that?... right down a hill huh? okay! alight! bye! frank: george, forget about the shoes. want you to do something for me (scribbles something on a piece of paper). this handicapped woman had an accident. somebody gave her a used wheelchair with defective brakes. george: sons of bitches! frank: anyway, i want you to pick up this big screen tv, and deliver it to her. george: big screen tv? frank: do you think you can handle it? allison: yes? george: hi, we're from the united volunteers, we've come to pick up the tv. allison: oh great, it's right over there. kramer: ooh, it's a big one! george: who's got the receipt? elaine: i do. george: will they give us cash? jerry: that's their policy. george: i hate this mall, there are never any spaces here... kramer: why don't you park in front of the hydrant? george: what if there is a fire? kramer: what are the chances of that? [setting: night club] jerry: to me, the whole concept of fear of success is proof that we are definitely scraping the bottom of the fear barrel. are we gonna have to have aa-type meetings for these people? they'll go "hi, my name is bill, and the one thing i'm worried about is to have a stereo and a cream-colored couch." according to most studies, people's number-one fear is public speaking. number two is death. *death* is number two! now, this means to the average person, if you have to go to a funeral, you're better off in the casket than doing the eulogy. [setting: jerry's] kramer: why can't i play kramer? jerry: look we've been through this already. you're not an actor! kramer: neither are you. jerry: i know. so why do we need two people in the show that can't act? kramer: oh come on jerry. how hard is it to act. you say something, i'll pretend it's funny. jerry: my grandmother's in the hospital. kramer: ha ha ha. your grandmother's in the hospital! jerry: this is real believable. kramer: what you didn't think i was really laughing? jerry: it stinks. kramer: let me see you do it. jerry: say something funny. kramer: alright. i've never been to mars but i imagine it's quite lovely. jerry: ah.......... kramer: mine was better than that! come on look. (starts to laugh again, jerry too) george: why are two pretending to be laughing? jerry: we're acting. (they stop laughing) george: oh, real good. (george makes a face like you stink) any word from nbc? jerry: no. george: i don't understand. they're supposed to be casting this week. something's wrong. maybe they're not doing it. kramer: (to jerry) well at least let me audition. jerry: (to george) he wants to play kramer in the pilot. kramer: (to george) yeah! george: out of the question. kramer: oughh! george: (to jerry) how could we not hear anything? what's with this russel? what's he doing? (jerry raises his arms and shoulders like he doesn't know) [setting: peter mcmanus cafe, an italian restaurant] russell: i really appreciate you coming. elaine: oh, that's o.k. i don't have much time though. so... russell: all right, first of all, i want to apologize for all the phone calls. it's just--it's just-- (awkward pause) i don't understand, we went out once... elaine: that was two months ago. russell: yes i know. i just-- i can't get you out of my mind. ever since that-- that day in the restaurant when we met... (we see a flashback from 'the shoes' of elaine showing her cleavage and asking russell for his ketchup secret) elaine: russell, you are the president of nbc. you can have any woman you want. (picks up the bowl of munchies on the table) russell: but i want you. elaine: god i hate these mixtures. why don't they just put pretzels on the table. even peanuts would be good, but i don't know how eats these cheesy things (she does). russell: is it something i said... or did? elaine: um... look russell... you're a very sweet guy. but i got to be honest with you. i don't like television... and that's your world. that's your life. i mean maybe if you were in... i don't know... greenpeace or something, that would be different, but network television... i mean, come on, russell, you're part of the problem. russell: oh elaine, we're doing some really very interesting things right now. we've got some very exciting pilots for next season. we have one with a bright young comedian, jerry seinfeld. elaine: oh yeah, oh yeah. i've heard of him. he's that "did you ever notice this? did you ever notice that?" guy. russell: yeah. anyway it's a ground breaking show. elaine: really? what is it about? russell: (a little more enthusiast) well, really, it's very unusual. it's about nothing. elaine: (surprised) what do you mean it's about nothing? russell: (starts doing george at the first meeting with nbc in 'the pitch') for example, what did you do today? elaine: um, i got up. um, i went to work. then i came here. russell: there's a show. that's a show. elaine: russell, see, i'm really not interested in this stuff and i do have to go to work (she gets up). so... russell: (stops doing george, he's down again) elaine, when--when--when are we gonna see each other again. elaine: i'm sorry russell. i'm sorry o.k.? bye-bye. (russell, still sitting watches her leaving). [setting: jerry's] jerry: hello? yeah he's here. (to kramer) hey! it's for you. george: he's getting phone calls here now? (he's standing near the counter and eating chips out of a big bag) jerry: (to george) again with the sweat pants? george: what? i'm comfortable. jerry: you know the message you're sending out to the world with these sweat pants? you're telling the world "i give up. i can't compete in normal society. i'm miserable, so i might as well be comfortable." (george is baffled) kramer: (to the phone) hold on a second i got another call. hello? yeah, he'll call you back. (jerry and george look at each other) jerry: (to kramer) who is it? kramer: that's nbc. jerry: nbc!?! give me the phone! kramer: i'm in the middle of a conversation here. jerry: get off the phone! kramer: (to the phone) look, i'll call you back. (hangs up) jerry: you know i'm waiting to hear from them. who was it? kramer: russell dalrimple's secretary. jerry: all right. now you're doing something to help me. (to the phone) hello yeah it's jerry seinfeld returning the call. uh-huh.. o.k. great thanks a lot. (hangs up)(to george) casting tomorrow at nbc. 400. we're in business baby, the pilot's on. you're gonna successful. (george looks disappointed) [setting: dana's office] george: what if the pilot gets picked up and it becomes a series? dana: that'd be wonderful george, you'll be rich and successful. george: yeah, that's exactly what i'm worried about. god would never let me be successful. he'd kill me first. he'd never let me be happy. dana: i thought you didn't believe in god? george: i do for the bad things. dana: do you hear what you're saying? god isn't out to get you george. what... what is that on your lip? george: what? dana: it's like a discoloration. it's white. george: (gets up and picks a mirror) yes. yes, it's white. why it's white. dana: you'd better get that checked out. george: better get that checked out? dana: i would. george: what kind of a therapist are you? i'm telling i'm scared that something terrible is gonna happen to me, right away you start looking for tumors? dana: i'm trying to help you. george: what are you like a sadist? no matter how bad somebody feels, you can make 'em feel worse. i bet you're rooting for a tumor. (pointing to her) dana: i think you'd better go. george: oh i'm going baby! i'm going! (he leaves) [setting: jerry and george in a cab at a light] jerry: where? george: right here. (showing his lip) jerry: get out of here, it's nothing. (jerry knows george is hypochondriac. see 'the heart attack') george: (to the cab driver) excuse me, do you see anything on my lip here? cabbie: yeah, it's like a discoloration. george: oh, my god. cabbie: yeah, it's all white. george: (to jerry) it's all white jerry! it's all white! jerry: would you stop? cabbie: i would get that checked out if i were you. george: again with the checked out. i'm not going to the doctor. if i don't to the doctor, then nothing will happen to me. if i go he might find something. jerry: if you go, maybe they'll catch it in time. george: catch what in time? jerry: whatever it is. george: you think it's something? cabbie: ah! i hate these bums with their filthy rags. no no no, i don't want it, get away, get away from my car (he starts his wipers) jerry: (to george) you know these squeegee-- oh my god! it's crazy joe devola. joe devola: (through the opened window's cab) good luck on the pilot jerry. (the cab pulls away) [setting: nbc] stu: (to george) yeah i think i see it. it's like a white discoloration. george: (to jay) what do you think it is? jay: it's like a... white discoloration. (we understand now why a sitcom needs so many producers) casting director: o.k. guys, are we ready to start? jerry: yeah, where is russell? i thought he was gonna be here. stu: oh you know i don't know. i saw him in the hall this morning, i said hello to him. he walked right past me. jay: he must be worried about the fall schedule. stu: ah, it's a real bear. george: yeah. so what's going on? we're gonna shoot the pilot and then it's gonna be on tv the following week? stu: yeah. right. casting director: this is mark matts. he'll be auditioning for the role of george. (the guy looks very cool and casual, and has a lot of hair) mark: hey how you doing? jerry: (thinking) they've gotta be kidding. george: (thinking) this guy's perfect. casting director: o.k. let's read this. i'll be reading jerry's part. mark: anyone call for vandelay industries? (george is the only one in the room to find mark funny) casting director: no. why? mark: listen to me. i told the unemployment office i was close to a job with vandelay industries and i gave them your phone number. so, when you answer the phone now, you've got to say "vandelay industries". casting director: i'm vandelay industries? mark: right. casting director: what is that? mark: you're in latex. casting director: what do i do with latex? mark: i don't know, you manufacture it. casting director: this is michael barth. another george. (he's in sweat pants, bald, with glasses) all: hi michael. how you doing? jerry: everything all right? michael: i just came from the podiatrist. i have a mole on my foot. i've got a little gangrene, they're probably gonna have to amputate. (everyone laugh except george) casting director: any questions? michael: yeah. what are we looking at here? is this guy like a real loser? george: no, not a loser! casting director: let's start with the second scene. you have it here? michael: a man gave me a, you know, massage. (everyone laugh except george) casting director: so? michael: well, he-- he had his hands, you know, and uh, he was, huh, ... casting director: he was what? michael: he was you know... he was touching and rubbing. (loud laughter) casting director: that's a massage. michael: i think it moved. casting director: this is melissa shannon. melissa: hi. all: hi. how you doing. casting director: melissa is reading for elaine. melissa: it's like a bald convention out there! (she saw george) sorry. i, uh, made a faux pas. jerry: no you didn't. he knows he's bald. melissa: so how about that guy wearing sweat pants? i mean did he do that for the part or does he walk around like that? (jerry approves with a nod, george drops his notepad on the coffee table) casting director: o.k. shall we start? (melissa and the casting director sit down) jerry: (getting up) uh, you know what? i'll read with her. melissa: oh, great. jerry: alright, want to start? melissa: yeah. jerry: o.k. melissa: ahem. what was that look? jerry: what look? melissa: that look you just gave me? jerry: i gave a look? melissa: yes. george: thank you! thank you very much. (jerry and melissa stop and look at george) casting director: let's see some more kramers. all: hi. how you doing? tom: (to jerry and very seriously) how you doing? jerry: (smiling and surprised at the way tom is talking) good. casting director: what is this about? tom: (standing) levels. casting director: levels? tom: yeah. i'm getting rid of all, all my furniture. all of it! i'm building... levels... with steps... completely carpeted... (making the gesture of carpeting steps) with pillows. (everyone laugh. he sits down) like ancient egypt. casting director: i don't know how you're gonna be comfortable like that? tom: oh! i'll be comfortable. (laughter, applause. he gets up, goes to the coffee table) george: very nice jerry: very good george: very nice tom, that was terrific. tom: may i? (pointing the box of raisins) george: sure. thank you for coming in. (tom eats some raisins) jerry: (to george) it was a wonderful reading. george: yeah. really. tom: well, bye. george: take care. take it easy. (tom leaves with the casting director) stu: now, i thought he was really good, very funny. jerry: yeah, i liked him. george: what happened to the raisins? jay: yeah, there was a box of raisins there! george: did he just steal the raisins? stu: you think he stole them? casting director: (enters with the real kramer) this is martin van nostrand. jerry: (to kramer) what are you doing here? casting director: you two know each other? stu: wait a minute, i know you. you're the guy from the calvin klein underwear ads. kramer: that's true. kramer: (acting very bad) i saw joe dimaggio in dinky doughnuts again, but this time, i went in. (pause, stops acting) oh! uh, where's the bathroom? stu: i think if you go down the hall, it's on the right at the very end. kramer: yeah. be right back. (kramer leaves) (we see kramer, groaning and holding his stomach, running down the hall, and opening the bathroom's door. someone in there says: "sorry buddy, full house." we then see kramer outside leaving the building and running across the street to a restaurant "sorry, customers only" ...running into a movie theater "hey you need a ticket!" ...running through the park...) [setting: monk's] elaine: so who's playing elaine? jerry: oh, don't worry about it. very talented, very takented young actress. elaine: really? jerry: yes. elaine: who is it? jerry: she's an eskimo, actually. elaine: oh, my god (not in the mood to be kidding) jerry: she came down from juno by sleigh, she was in the iditarod. got to the finish line, just kept going. she's got the dogs with her in the hotel room. elaine: listen, was russell at the casting? jerry: no, he didn't show up. elaine: you know, i'm a little bit worried about him. i don't understand. we had one date two months ago. am i that charming and beautiful? jerry: no. no you're not. elaine: why do i keep setting you up? jerry: i don't know. elaine: (to the waitress) could we get a little more? (she doesn't listen and walks away) aghh... you know ever since this new owner took over, the service here is *really* slow. jerry: yeah. have you noticed anything else that's different since the new management? elaine: mmm. they're putting a little lemon in the tuna. i love that. jerry: beside that. look at the waitresses. elaine: yeah? (we see that all the waitresses have big breasts) jerry: what physical characteristic would you say is common to all of them? elaine: ah... jerry: i mean look at this. every waitress working here has the same proportions. wouldn't you say? elaine: yes, i would say. jerry: what's going on here. how is that possible? elaine: do you think it's a coincidence? jerry: no. i haven't seen four women like this together outside of a russ meyer film. elaine: (to the waitress) hi. excuse me. who does all the hiring waitresses here? waitress: he does. (pointing to the manager, mr. visaki) in fact we're looking for another girl if you know anyone. (she walks away) elaine: you know what? that's discriminatory. that is unfair. why should these women have all the advantages? it's not enough they get all the attention from men, they have to get all the waitress jobs, too? jerry: hey that's life. good-looking men have the same advantages. you don't see any handsome homeless. [setting: doctor's clinic] george: you see, it's right here. it's all white... doctor: oh yeah. yeah. i've never seen this before. george: you've never seen this before? doctor: i'm gonna have to take a biopsy on that. (george grabs the doctor's arm) george: (dramatically) a what? doctor: a biopsy. george: a biopsy? doctor: yeah. george: cancer? is it cancer? do i have cancer? doctor: well i don't know what it is. [setting: jerry's] george: a biopsy! jerry: what did he say? george: he said he didn't know what it was. jerry: alright. so? george: when i asked him if it was cancer, he didn't give me a "get outta here". that's what i wanted to hear "cancer? get outta here?" jerry: well, maybe he doesn't have a "get outta here" kind of personality. george: how could you be a doctor and not say "get outta here"? it should be part of the training at medical school "cancer? get outta here!" "go home! what are you crazy? it's a little test. it's nothing. you're a real nut. you know that?" (jerry gives him half of his sandwich to hopefully shut him up) i told you that god would never let me be successful. i never should've written that pilot. now the show will be a big hit, we'll make millions of dollars, and i'll be dead. dead jerry. because of this. (showing his lip) jerry: can't you at least die with a little dignity? george: no i can't. i can't die with dignity. i have no dignity. i want to be the one person who doesn't die with dignity. i live my whole life in shame. why should i die with dignity? jerry: hey. what happened to you yesterday? kramer: i got mugged. george: you got mugged? jerry: mugged? kramer: well, i wouldn't have minded it so much but i was running home to go to the bathroom. jerry: why didn't you use the bathroom in the building? kramer: it was full. i tried a few other places, you know, but that didn't work. i mean it was an emergency jerrry. i was really percolating... so i decided to run home through the park and then these two guys they stopped me and... jerry: yeah? elaine: it's me. jerry: come on up. kramer: but now i have a big problem, buddy. jerry: what is it? kramer: well, i waited so long i-- i missed my chance. jerry: you didn't go? kramer: no. and now i can't get it back. jerry: the % thing to do is just not think about it. kramer: how could you not think about it? elaine: hey. kramer: (mumbles and leaves) elaine: what's the matter with him? jerry: he's a little backed up. elaine: oh... george: elaine. elaine: so i spoke to some of my sisters about that coffee shop. jerry: oh, the sisters (he sits at the table) george: (to jerry) have you seen the waitresses in there lately? i never had so much coffee in my life. elaine: so we decided i should go over there and apply for a job myself. george: apply for a job? what for? elaine: because, it's discriminatory (she comes back wearing one of jerry's shirts, untucked) george: it's a coincidence. jerry: this is what you gonna wear? elaine: yeah. jerry: you're not gonna get the job. elaine: exactly. jerry: (to the phone) hello. oh, hi. yeah i guess we could do that. at what time? all right. i'll see you there. o.k., bye. (hangs up) elaine: who was it? jerry: tv elaine. she wants to get together and talk about the part. elaine: what about the dogs? jerry: they're having sex in the hotel room. [setting: peter mcmanus cafe, same table as earlier] (jerry and tv elaine: sandi robbins) sandi: so, the elaine character is based on someone you know. jerry: yes. sandi: and she's really your ex-girlfriend? jerry: uh, huh, yeah. sandi: i want to get to know her from the inside. what is she like? tell me about her. jerry: well, she's fascinated with greenland. she enjoys teasing animals, banlon, and seeing people running for their lives. she loves throwing garbage out the window, yet she's extremely dainty. sandi: how would she eat a hamburger? jerry: with her hands. sandi: what about pasta? jerry: also with her hands. sandi: seriously... i want to experience everything she's experienced. jerry: everything? sandi: everything. jerry: all right she cuts her pasta with a knife. sandi: that's good. what's her favorite movie? jerry: shaft. sandi: you got to get me a picture. what about sex? jerry: she likes talking during sex. sandi: oh... dirty talking? jerry: no. just chitchat, movies, current events, regular stuff. you know sandi-- (looking at his watch) sandi: elaine. jerry: what? sandi: call me elaine. jerry: all right. elaine. sandi: how does elaine kiss? jerry: well-- sandi: does she kiss... like this? (she kisses jerry) jerry: actually she has a thing where she spirals her tongue around, it's like-- sandi: like this? (kisses again but with the spiral) jerry: i think you got it. [setting: monk's] kramer: i like to eat spaghetti with just a fork. because i can keep the strands long, and i can slurp it out to my mouth. like this look. (faking to slurp spaghetti) now sex, i like the bottom. let them do all the work. you should be writing this stuff down... (waitress comes to take the order) bran lakes...100%. i got a big problem. tom: i'll have a hamburger. that's it. kramer: yeah, that's good. oh, now i like to play golf. tom: this stuff doesn't matter to me. see, i'm gonna do the character like me, not like you. kramer: you gotta play him like me. i'm kramer. tom: i'm kramer. kramer: whoa, i'm kramer. mr. visaki: (foreign accent) what can i do for you? would you like a table. elaine: no, i'd like to apply for a waitress job. mr. visaki: (looks elaine up and down) have you ever waited on tables before. elaine: oh yeah. i've been a professional waitress for the last 10 years. i've worked all over the city. these, uh, are my references. i'm sure you'll find that i'm more than qualified. mr. visaki: i don't think i need anyone else right now. elaine: you're in big trouble mister. and i mean trouble with a capital 't'. (she leaves) mr. visaki: what? what did i do? [setting: the equal employment opportunity commission office] elaine: anyway there's at least four of them, and they're all huge. and one is bigger than the next. it's like a russ meyer movie. fred: who's russ meyer? elaine: oh, he's this guy who made these terrible movies in the 70's with these kinds of women. he's obsessed. he's obsessed with breasts. that's hard to say. fred: anyway, go on. elaine: um... well, there's not really much more to tell. he was looking for waitresses, and i went in to apply for the job. and, he looked me up and down and he rejected me. fred: (to a guy in the hall at the water cooler machine) paul. come in for a second. i want you to listen to this. paul: (to elaine) hi. elaine: hi. fred: paul, woman here claims there's a restaurant on the west side that's only hiring large-breasted women. paul: (to elaine) really? [setting: nbc, pilot's set] tom: what do you mean made up? jerry: it's made up. haagen-dazs is made up. it's not danish. tom: you're crazy. jerry: no i'm not. (to michael) george. is haagen-dazs danish? michael: what do you mean danish? george: (to the guy next to him) this guy stinks. (speaking of michael) jerry: danish. is it from denmark? michael: no, they make it in new jersey. it's just a danishy name. tom: i can't believe that. they fooled *me* jerry. rita: (to jay) boy, talk about a show about nothing. (jay, the integral producer, smiles stupidly) george: uh, excuse me. (stopping them from rehearsing) excuse me. (he walks to the guy's in charge of yelling "take #!") this--this is not right. may i? (the guy looks at george with a bothered face. george then walks up to tom and takes him away from jerry and michael to talk to him in private)(to tom) you see, you're going "they fooled *me* jerry!" (george shakes his head with disapproval) you wanna hit 'fooled' more "they *fooled* me jerry!". you see the difference? tom: i'm not gonna say it like that. george: just a suggestion. (chuckles and walks back to the yelling guy) yelling guy: (with the same bothered face and while he's looking at george) all right everybody, take a five. george: (very casual and raising his hand in the air) yep. that's five! jerry: george? (walks away to talk privately. george, still casual, taps on jerry's shoulder) i don't have a lot of experience with this acting stuff. but from what i can gather, they're a little touchy about being told how to say the lines. george: why is that? jerry: i don't know, but they don't seem to like it. by the way how am i doing? george: oh, you're fine... you're fine. (looking at tom in the back and then quieter to jerry) so you think this guy playing kramer took the raisins? jerry: why would he steal a box of raisins? george: yeah, it's bizarre. (they both look around them suspiciously) rita: (to jay about russell) what's with him? (to russell) russell? (louder) russell? russell: what? rita: you o.k.? russell: yeah. no, uh, i was just thinking of something. i'll be back in a second. (he gets up and leaves) sandi: what's the matter? jerry: nothing. sandi: you're acting weird. is anything wrong? jerry: no. sandi: are you breaking up with me? jerry: are we going out? sandi: you're breaking up with me, aren't you? (almost crying) jerry: do you want me to break up with you? sandi: if that's what you want. jerry: i don't even know what you're talking about. sandi: fine. break up with me. jerry: all right. we're broken up. sandi: (little pause) can we still be friends? (jerry raises his head, staring ahead and wondering what's going on) george: remember when you came to audition for us? tom: yeah. george: there was a box of raisins on the coffee table. did you, by any chance, take them with you when left? tom: what are you talking about? george: well we were all eating the raisins. and i remember you--you were eating some of the raisins. and then you left, and the raisins were gone. and i was just wondering if, you know (chuckles), maybe you took them with you. tom: are you accusing me of stealing the raisins? george: oh, no, no-- tom: (angry) why would i steal a box of raisins!? george: no you wouldn't. nobody would. it's just that... they were missing, and... well i'm just inquiring. (chuckles nervously) tom: let me give you a word of advice. o.k.? i want you to stay away from me. i don't wanna talk to you, and i don't wanna hear anymore of your stupid little notes and suggestions. i don't like you. so if you got any other problems whether it's raisins, prunes, figs, or any other dried fruit, just keep it to yourself and stay out of my way, o.k.? george: mm-hmm. mm-hmm. all right. i don't think we're gonna have any problem with that. (chuckles nervously) good talking to you tom. really. russell: (nervously, almost desperately) elaine. elaine. what do you want? what can i do? is it my job? is that what it is? elaine i can't go on like this. will you call me? would you call me? well, why? all right. may i call you? elaine? elaine? (she hung up. an employee walks by, bumps into russell and spills coffee accidentally on him) david: excuse me mr. dalrimple. i am so sorry. russell: all right. all right. what's your name? david: david richardson. russell: get out! you're fired! david: but mr. dalrimple-- russell: don't talk back to me. didn't you hear what i say? get out! you want me to call the cops? i make and break little worms like you every day. do you know how much money i make? do you have any idea! do you know where i live? i can have any woman in this city that i want. any one. now, get out! (david leaves. everyone on the set is looking at russell) what are you all looking at? go back to work! back! now! (they do, russell leaves) [setting: jerry's] george: the doc called and said the lab's backed up and now i'm not gonna get the results for another two days. jerry: ah! you're fine. there's nothing wrong with you. i'm the one who's dying. george: what do you mean? jerry: because i can't act! i stink! i don't what i'm doing! george: come on you're... uh... you're fine. jerry: this show's gonna ruin my entire career. i don't know how i got involved in this. george: what about me? i was a total failure. everything was fine. now this thing's gonna be a success and god's gonna give me a terminal disease. jerry: this actress playing elaine, she's out of her mind. george: the guy playing kramer threatened me. jerry: why? george: 'cause i asked him about the raisins. jerry: you mentioned the raisins. george: oh yeah. jerry: did he take 'em? george: i don't know. jerry: well if he didn't take 'em, what happened to 'em? george: that's what i'm trying to find out. jerry: hey. kramer: hey. jerry: any luck? kramer: no. no, nothing. i got no... peristalsis. jerry: what about bran? kramer: i tried bran-- 40%, 50% 100%. the bran isn't working for me. jerry: well my friend, (jerry puts his hand on kramer's shoulder) it may be time to consider the dreaded apparatus. kramer: pfft! hold it right there. if you're suggesting what i think you're suggesting, you're wasting your time. i am not jerry, under any circumstances, doing any inserting in that area. jerry: oh, it's not that bad! george: yes it is. elaine: well it's all taken care of. i filed a report. an investigation is underway. jerry: (to elaine) so, you going to the taping tomorrow night? elaine: no. i don't think i should go. i really don't wanna bump into russell. he called me the other day. he won't quit. jerry: oh, come on you gotta go! he's harmless. he's got a little crush on you. elaine: jerry, this is not a crush. this is a complete fixation. he makes me very uncomfortable. jerry: we need you there! elaine: (to kramer) hey are you gonna go? kramer: no. no. i'm gonna stay home. i want to be close to my home base in case there's any news from the front. (he leaves) [setting: nbc, pilot's set, the taping] sandi: (to her hairdresser) no! pick it up more in the front! it's got to be higher! higher! make a wall! a wall! assistant dresser: sandi, are you in wardrobe? sandi? jerry: try elaine. assistant dresser: elaine? sandi: yes? wilton: elaine? it's me-- wilton marshall. remember? camp tioga-- 1978? remember? elaine: oh, right. wilton: wow! you know you haven't changed a bit. michael: i can't remember my lines!!! jerry: just relax, you'll be fine. michael: i can't relax. i don't know what line! i don't know any of 'em! jerry: you're just like george. george'd do the same thing. you're just like him. it's amazing! michael: help me jerry! help me! rita: (to stu) where is russell? stu: you know i don't know. i thought he was coming. i assumed he wouldn't miss it. jay: he hasn't been well. stu: (to rita) can i tell you something in confidence? i think it's a woman. rita: how pathetic. george: this is george costanza, i'm calling for my test results. negative? oh, my god. why! why! why? what? what? negative is good? oh, yes of course! how stupid of me. thank you. thank you very much. (he hangs up) george: (he walks casually to tom, and taps his arm) listen. i know we've had our problems in the past, but we got a show to do tonight. time to pull together as a team. life's too short. i say, let's let bygones be bygones. if you took the raisins, if you didn't take the raisins-- they weren't even my raisins. i was just curious because it seems like a strange to do to walk into a room, audition, and to walk out with a box of raisins. anyway, whatever. if you ever want to tell me about it, the door to my office is always opened. in the event that i get an office. you'll come in, we'll talk about the raisins. we'll have a nice laugh. tom: how would you like it if i just pulled your heart out of your chest right now, and shoved it down your throat? pat hazell: are you ready to meet our cast? (crowd applause) all right. jerry: good evening, folks. how you doing? (small reaction from the crowd) well, you sound like a great crowd. we have a show we're gonna put on for you tonight. it's a new tv show. it's what they call a pilot. and we hope it becomes a series. it's called 'jerry', and i'm playing jerry-- joe devola: (getting up then shouting) sic semper tyrannis! (he jumps over a balcony and on the stage. the crowd is yelling) [setting: jerry's] george: sic semper tyrannis? what is that, latin? jerry: yeah, it's what john wilkes booth yelled out when he shot lincoln. george: really? what does it mean? jerry: it means "death to tyrants". george: i can see that. elaine: see, now this is exciting! this is exciting! did i miss anything already? jerry: no, it starts in five minutes. you were there at the taping, what's the big deal? elaine: nah, now it's on tv. it's different. i told everybody i know to watch it. george: yeah, me too. jerry: hey, what about russell? did you hear from him? elaine: no. jerry: strange. even not showing up at the taping... kramer: hey, pistol-packin mama, you swing that gal around, allemande left with the old gray hag, around and around you go. yee-ha!! jerry: well, well, well. elaine: congratulations. kramer: well, thank you. george: you went for the big "e". kramer: wet and wild. jerry: all right. come on sit down. it's about to start. kramer: oh, yes. elaine: hey, what's this? look. a wallet. jerry: a wallet? let me see that. elaine: here. jerry: ah, man! it's my father's wallet! the one he thought they stole at the doctor's office that time. george: shh! this is it! jerry: how do you like that? (the show begins. there are three different settings while the show is on tv. each line or description will be preceded by the right setting: nan (jerry's doing his stand-up routine at a comedy club. there's the music theme and we don't hear what he is saying, but the closed captions put that: nan we see the title 'jerry', then, sitting at the comedy club, we see: nan micheal, sandi, and tom, and finally jerry, and the four of them make a toast while it's written: "created by jerry seinfeld and george costanza". elaine: bravo! george: you hurt me. michael: hey. jerry: hey george. michael: new sneakers? jerry: yeah. michael: what do you need new sneakers for? jerry: i like sneakers. michael: how do you make a decision which one to wear? i'd go crazy if i have to decide which sneakers to wear every day. jerry: nah, you're crazy anyway. susan and allsion: (to each other while they recognize one of george's behaviors in michael) george! sid: what kind of stupid show is this? hey! it's that idiot that took all my records! (the houskeeper starts laughing) marla: john, what are you doing? come back to bed. john: (with a boston accent) this show looks interesting. isn't he that seinfeld fellow you went out with? marla: ooh, he's horrible! horrible! john: nevertheless... the drake: ah, that jerry's a funny guy. huh? got to love the sein! allsion: hate the sein! (while she adjusts the tiny antenna) ping: i can't believe you liked him. cheryl: i thought he was dark and disturbed. ping: real perceptive. donald: this is a piece of crap! mother: donald, you used to like him. donald: what a sellout! give me that remote! mel: no, donald. kramer: come on jerry, the commercials almost over. jerry: all right. elaine: you know jerry i really like this guy who's playing the butler. jerry: oh yeah. he's good. you know he's john ritter's cousin. elaine: really? jerry: yeah. jerry: hello, charles. charles: hello. so, where do you want me to start today? jerry: why don't you start in the bedroom? charles: (to himself, upset) start in the bedroom... tom: hey. jerry: hey. the butler's here. tom: he is? listen. when he's finished, send him over to my house. jerry: i'm not sending him to your house. tom: why not? jerry: because the judge decreed he'd become my butler, not my friend's butler. tom: jerry, he is your butler. you can give him any order you want. that's what butlers do. jerry: but i don't want to. kramer: jerry, my house is a pigsty, come on. jerry: yeah? sandi: (from the buzzer's speaker) it's elaine. jerry: come on up. charles: i need more pledge. jerry: more pledge! i just bought two cans last week and i don't even have any wood in the house! charles: well, it goes fast. sandi: (to charles, very friendly) hello. charles: hello. (he goes back in the bedroom) jerry: what's all this about? sandi: we had a date. jerry: you had a date? you went out with my butler? who said you could go out with my butler? sandi: why do i need your permission? jerry: because he's my butler! morty: that's terrific! helen: how could anyone not like him? c.k.: i like his style. he has a sort of casual elegance. tia: but he picks his nose. c.k.: nevertheless... sal bass: he's a member of our health club. isn't he? sidra: yeah... sal bass: you know that kim novak has some big breasts? jerry: ever notice a lot of butlers are named jeeves? jerry: you know i think when you name a baby jeeves, you've pretty much mapped out his future, wouldn't you say? not much chance is gonna be a hitman i think after that. (with a british accent) "terribly sorry sir, but i'm going to have to whack you". [setting: back to jerry's] all: (applauding and shaking hands) wooh! yeah! elaine: wow! that was great! that show was so funny. it was really funny. i'm not just saying that cause i know you. honestly. jerry: let's go out and celebrate! (they all get up) elaine: that was so good. jerry: come on let's eat something. (phone rings) elaine: you know what i think this thing is gonna get picked up george. you guys are gonna be rich! george: do you really think so? elaine: oh yeah. george: and god didn't kill me. jerry: (to the phone) hello? rita: hi jerry, this is rita kierson. jerry: oh, hi rita. rita: i'm calling to let you know that russell dalrimple is no longer with this network. jerry: oh, my god. did he get fired? rita: to be honest with you. nobody really knows. he seems to have disappeared. jerry: russell's disappeared? rita: in any event, i've been made the new president of nbc. as you may or may not know, russell and i did not see eye to eye on many, many projects. and as my first order of business, i'm, uh, passing on your show. jerry: you're passing already? but the show just ended two minutes ago! rita: well, i just got the job. goodbye, jerry. jerry: yeah, see ya. (he hangs up) elaine: what-- what are you looking at me for? george: it was you! elaine: what did i do? jerry: do you realize his obsession with you cost us a tv series? elaine: i didn't know that he'd fall for me and i'd drive him insane. i mean, you know, that's not my fault. george: yes it is! you're very charming! elaine: i can't believe this? what happened to him? where the hell is he? jerry: no one knows. [setting: greenpeace raft on the ocean, following a whaler] russell: she works for pendant publishing. she's the most beautiful woman i've ever seen. you know, i used to work for nbc, but when i go back to her this time, she'll respect me. man on raft: you'd better get down. they might start firing soon. (harpoon fires) [setting: monk's] jerry: hey look at this. what is going on here? george: well, well, well. elaine: nothing has changed. how did this happen? (she sees the two guys of the equal employment opportunity commission at a table) ah, these are the two guys i talked to at the equal employment opportunity commission. hey! what are you two guys doing here? i thought you were gonna do something about this. now you're eating here? fred: oh no. that's why we're here. we're checking things out. paul: yeah, we're checking it out. elaine: (to paul) you're checking it out? man: (to fred and paul) see you back at the office, guys. mr. visaki: fred, paul, lunch and dinner? boy, you guys ought to move in. how about a piece of pie on me? sophia! take care of these fellows. elaine: (to the manager) hey! come here a second. i want you to know something. you are not gonna get away with this! mr. visaki: get away with what? elaine: ah, "with what?" you know what. with the waitresses. how they're all... alike. mr. visaki: of course they're alike. they're my daughters. elaine: (embarrassed, but smiling) oh, your daughters. george: you must be very proud mr. visaki. (shaking his hand) and may i say sir they're lovely girls, absolutely lovely girls. it's nice to see such fine upstanding women in gainful employment, mr. visaki. mr. visaki: oh, here's a table for you. george: a table right here. mr. visaki: peggy! george: peggy! (they all sit) his daughter peggy. peggy's coming over to serve. jerry: what a family! mr. visaki: my daughter peggy. george: ah! peggy. good to see you. elaine: hi peggy. george: thank you very much. (peggy leaves the menus and walks away) so guess what i got do tomorrow? jerry: what? george: start looking for a job. kramer: you know what you ought to do george? you should work for greenpeace. you those people they attack the whalers out on the open sea. george: are you crazy? you take your life in your hands with those nuts. [setting: greenpeace raft] man: keep fighting matey! get your head above the water! i've got you matey! i've got you! matey! (he loses the rope) i'll remember her name! elaine benes! i'll write to her. i'll tell her all about you and what you did out here! goodbye, matey! goddbye! [location: monk's] jerry: so, what's her name? george: karen. jerry: is she nice? george: great. jerry: so you like her? george: i think so. jerry: you don't know? george: i can't tell anymore. jerry: well do you feel anything? george: feel? what's that? jerry: all right, let me ask you this when she comes over, you're cleaning up a lot? george: yeah. jerry: you're just straightening up or you're cleaning? george: cleaning jerry: you do the tub? george: yeah. jerry: on your knees, ajax, hands scrubbin', the whole deal? george: yeah, yeah. jerry: okay, i think you're in love! george: tub is love? jerry: tub is love. george: hah. jerry: so there you are. you've got a nice girl and a clean apartment. george: yep. there's one liiiittle problem. jerry: sexual? george: yeeeaaah. (jerry and george lean in to make their conversation a little more private) well..... i've never really felt confident in uh..... one particular aspect. jerry: below the equator? george: yeah. jerry: nobody does. you know, nobody knows what to do. you just close your eyes and you hope for the best. i really think they're happy if you just make an effort. george: i-i don't know. last time i got the tap. jerry: you got the tap? george: you know, you're going along, you think everything's all right and all of a sudden you get that tap. (george taps his own shoulder). you know it's like pfffff (whistling sound), all right that's enough, you're through. jerry: the tap is tough. george: it's like the manager coming out and asking you for the ball. jerry: well maybe she just wanted to move on to other business. george: no, no, this wasn't moving on. i got the hook. i wish i could get a lesson in that. jerry: it's a very complicated area. george: you can go crazy trying to figure that place out. jerry: it's a haaazy mystery. george: anyway, i think everything else is okay. unless of course she's faking. elaine: who's faking? george: nothing. elaine: faking what? george: nobody's faking. elaine: ah! orgasm? george: she's not faking! elaine: how do you know? george: i know. i can tell. it's one of my powers. why, did you ever fake? elaine: of course. jerry: really? george: you faked? elaine: on occasion. jerry: and the guy never knows? elaine: no. jerry: how can he not know that? elaine: because i was gooood. jerry: i guess after that many beers he's probably a little groggy anyway. elaine: you didn't know. jerry: what? elaine: you didn't know. jerry: are you saying... george: i think i'll have a piece of cake. jerry: with me? elaine: well... jerry: you faked with me? elaine: ye. jerry: you faked with me? elaine: yeass. jerry: no. elaine: yeass. jerry: you faked it? elaine: i faked it. jerry: that whole thing, the whole production, it was all an act? elaine: not bad huh? jerry: what about the breathing, the panting, the moaning, the screaming? elaine: (points in the air as is to point out each things jerry asked) fake, fake, fake, fake. jerry: i'm stunned, i'm shocked! how many times did you do this? elaine: uuuhm, all the time. jerry: all the time?! george: we got a chocolate malt in here! jerry: but i'm so good. george: i'm sure you are. elaine: jerry, listen, it wasn't you. i just didn't have 'em back then. jerry: she faked. jerry: maybe they've all been faking. elaine: i'm sure they're not. george: maybe karen is faking. [location: jerry's apartment] kramer: she was probably joking. jerry: no no, it was no joke. kramer: she didn't have any? jerry: no. none. kramer: (raising hand) she faked 'em all. jerry: (raising hand) faked 'em all. kramer: well so she faked 'em, so what? jerry: the woman had an orgasm under false pretences. that's sexual perjury. kramer: you know i heard her screaming from my apartment? she woke me up a few times. jerry: how did she do it? she's like meryl streep this woman. and i had to work the equipment. i'm not unskilled, i'm in the union. if she'd at least told me, maybe i could have done something about it. kramer: yeah i could have helped you out. jerry: what could you have done? kramer: i could have given you some pointers. i know how to press those buttons buddy. jerry: i'm feeling very inadequate about the whole thing. kramer: aaaaah. jerry: don't aaaaah! i'm supposed to do something with her later? i don't even think i wanna see her. kramer: giddy-up. jerry: hello... oh hello elaine. elaine: so we're having dinner tonight? jerry: i don't know, i'm not really in the mood. elaine: why? what's wrong? you're not still thinking about this afternoon are you? jerry: what, the grilled cheese? naaah, they always burn the toast. elaine: nooo, the other thing. jerry: oooh that. well... elaine: oh come on, jerry. making to much of a big deal about it. jerry: yeah i guess. so you wanna meet at that place at seven thirty? elaine: okay. jerry: all right. elaine: all right, see you later. jerry: bye. elaine: bye. [location: elaine's office] elaine: rene, can you come here a second? let me ask you something ummm, have you ever... you know... faked it? rene: yeah, sometimes. elaine: really, like when? rene: like if we went to a broadway show, if we had really good seats. (elaine is sitting there, jaw opened shaking her head yes) well you know, if it's enough all ready and i just wanna get some sleep. [location: jerry's apartment] jerry: i really don't feel like seeing her. kramer: you know, i faked it. jerry: (confused) what?! kramer: yeah. jerry: you faked it? why would you do that? kramer: well you know, if it's enough already and i just wanna get some sleep. jerry: yeah, but why would you... (kramer is eating a peach then disgusted he spits it out) bad peach? kramer: it's terrible! jerry: did you get that at joe's? kramer: yeah, of course i got it at joe's. jerry: that's surprising, his fruit is usually the best. kramer: you know what i'm gonna do? (heading for the door) i'm gonna return this. jerry: you're returning used fruit? kramer: jerry this peach is sub par. [location: joe's] joe: so what do you want me to do? kramer: i want restitution. joe: restitution? you want restitution? why should i give you restitution? kramer: because it's no good. joe: when you put that fruit out, that's where it ends for me. kramer: it's still your fruit, you gotta stand behind your fruit. joe: i stand behind my fruit. kramer: so... joe: hey, you got a bad peach? that's an act of god. he makes the peaches. i don't make the peaches, i sell the peaches. you have a problem? you talk to him. kramer: you know this whole place is going vrrrrrrrrrrrrt, downhill. i could have come in here last week with a bad plum but i let it go. joe: well let me put a solution for ya do your business elsewhere, i don't want your business. kramer: oh now you don't want my business. joe: no, i don't want your business and from this moment you're banned from the store, you're banned! kramer: but what am i gonna do for fruit? [location: restaurant] karen: (moaning) mmmmm, mmmm, hmmhmmhmmm (lights a cigarette) mmmm (takes a puff) woo george: (thinking of the moans) heh. (karen takes another puff of her cigarette) you seem like you really enjoyed your risotto. (chuckles) you have a very contented air over there. (chuckles again) you look very contented, very satisfied. (pauses) are you satisfied? karen: i'm very satisfied. george: i-i'm sure if you weren't satisfied you would probably say something wouldn't you? karen: i probably would. but then again i'm an enigma. george: hey listen... umm, instead of the movie... uh, maybe we'll go back and uh you know...(nudges her head with his head) karen: maybe. george: so... uh you feel okay about that whole thing... what we do in there... you're generally okay with everything in there? karen: generally. george: do you uh feel the way you feel after the risotto? karen: well no, i feel full after the risotto. george: yeah...(scratching his head) full. [location: (another) restaurant] elaine: oh god, mmmm, mmm, mmm, mmmmm, mmm, ah, woo jerry: satisfied? elaine: mmm, hey, you know what? you wanna go see that new meryl streep movie? jerry: meryl streep? elaine: you don't like her? jerry: ah, she's okay. elaine: i love her jerry, she's so authentic. i really believe everything is actually happening to her. there's no acting there. jerry: yeah. you don't want coffee or anything do you? elaine: i really admire actors, you know. it's just such an incredible skill. jerry: yeah, yeah, can we get off of this? elaine: what's the matter? jerry: nothing. elaine: you're not still thinking about that are you? jerry: nooo. elaine: oh good. jerry: give me another shot! elaine: (shocked) what? jerry: another shot, i want another shot. elaine: you mean...? jerry: yes! elaine: oooh no, i don't think so. jerry: come on! one shot, i can do it, i know i can do it! elaine: jerry, we're friends! we can't do that, it would ruin our friendship. jerry: oh friendship... friendship, shmanship . elaine: jerry no, that's important to me. jerry: we won't ruin the friendship. elaine: ya, yes we will! jerry: elaine... elaine: no jerry, it is out of the question. you know what sex does to a friendship, it kills it. jerry: a half hour, give me a half our. elaine: no! jerry: okay, fifteen minutes. i guarantee you fifteen minutes, i can make it happen! elaine: noo! jerry: you're worried i'll be able to do it aren't you? elaine: what, no, it doesn't matter. jerry, i don't care. jerry: that's it, that's it. you like having this over me, you don't want me to do it. elaine: that is so ridiculous. jerry: come on, elaine! elaine: no. jerry: elaine?! elaine: no! [location: karen's bedroom] george: it's jerry's fault. karen: jerry? george: jerry and elaine. they made me nuts. karen: oh i don't care, george, really it's all right. george: so you feel okay? karen: well, it's not like after the risotto. [location: jerry's car] jerry: well good night. elaine: i still don't understand why we had to walk out on that movie. jerry: oh that meryl streep, she's such a phony baloney. elaine: goodnight. thanks for a really fabulous evening (sarcastic). jerry: oh what, you're upset? elaine: yes i'm upset, can't you tell? jerry: no i can't, maybe you're faking. elaine: i'm really, really sorry i told you that. jerry: i'm sorry too. elaine: well stop being such a baby. jerry: you're a baby! elaine: you're a baby! [location: jerry's apartment] george: it's all your fault! you and elaine! all that orgasm talk. she did have an orgasm, she didn't have an orgasm. orgasm this, orgasm that. i got so focused on it. i started to panic and boom, i lost it. i tried everything, i was talking to him 'please wake up, do something.' jerry: they're mysterious little fellows aren't they? george: i hate him! jerry: you know it happens to everybody. it happened to houdini. and he could get out of a trunk under water with his hands in chains! but he had a problem with that. the miracle is that it ever happens. george: it's like a magic trick. sometimes i think it would be easier to bend a spoon mentally than to make that transformation. kramer: hey. jerry: hey. kramer: hey listen, if i give you money would you go out and get me some fruit? jerry: why can't you get it? kramer: well i got banned from the store i can't go back in there now. jerry: what happened? kramer: well you know, we had a fight over the peach and uh well joe doesn't want my business. george: hey, was that a joke about houdini? jerry: (to george) no. (to kramer) i told you not to say anything. kramer: jerry, what am i gonna do for fruit? jerry: well you'll have to go to the supermarket. kramer: the supermarket? that's impossible! they don't have a decent piece of fruit at the supermarket. the apples are mealy, the oranges are dry. i don't know what's going on with the papayas! jerry you gotta go to joe's, you gotta get me some fruit! jerry: oh so what i'm going to buy all your fruit now? george: well if houdini couldn't do it, what chance do i have? jerry: hello... oh hi patty, thanks for calling me back. i-i just wanted to ask you a question when we we're going out did you have orgasms?... okay, thanks... no that's it... ya, okay, bye. jerry: patty lawrence had 'em! kramer: alright look i'm gonna make you a fruit list, all right? jerry: yeah. jerry: hello elaine? patty lawrence had orgasms what do you think about that? and i got calls in to six other women and i bet you they confirm an orgasm too. so what do you have to say now elaine?... hello? [location: outside joe's] jerry: why do i feel like i'm doing something wrong? kramer: all right now here's the list. (hands jerry the list) jerry: all this? it's too much. what do you need five mangos for? kramer: i like mangos. jerry: avocado? i don't know how to pick out an avocado. kramer: well they gotta be soft. jerry: how soft? kramer: not too soft. better too hard than too soft. jerry: (looking over the list) hmm ah. i'm not going through this every week, i tell you that right now. and what are these? plums? what is that? kramer: yeah now get the ones that are red on the inside. jerry: uh huh. well how do i know what they look like on the inside? what do they look like on the outside? kramer: oh! and get some plantains. (grabs the list to write them down) jerry: plantains? kramer: yeah. jerry: what the hell is a plantain. kramer: it's part of the banana family. it's a delicacy. jerry: (grabbing the list from kramer) you're not getting any plantains. jerry: hey joe. joe: how's it going? jerry: good, just getting some fruit for myself. uh, gotta have fruit in the house. i like it as a snack. wholesome, natural, chock-full of vitamins. alright let's see... mangos... four plums with red on the inside... avocado... (looks at joe; joe gives him a weird look)ooo, just right... and three plantains uh ought to do it. joe: all right, all right, just hold it right there. jerry: what? joe: this fruit isn't for you. jerry: (shocked) wha, what are you talking about? joe: you think i don't know huh? mangos, plantains, plums with the red on the inside, that's kramer! jerry: i can't buy mangos and plantains? joe: all right, get out! jerry: you're making a big mistake, joe! joe: i'll tell you something else i don't what your business anymore either. jerry: are saying you're banning me from the store? joe: that's exactly what i'm saying. jerry: i'm banned?! joe: you're banned. [location: jerry's apartment] george: all right, where do you want it? jerry: put it over there. kramer: yes! oh look at this, these mangos are beautiful! oh these are beautiful, (smells them) you did good george. george: all right i gotta get going. jerry: what are you doing? george: i got a date with karen. i don't know what i'm gonna do. nothing happening down there. jerry: you're thinking about it too much. you're putting too much emphasis on it. george: i knew this was gonna happen some day. it was inevitable. i've known it ever since i was a little kid. i've been waiting for it. kramer: this mango is delicious! george: that reminds me, i'm not getting you guys any more fruit. that guy was eyeballing me the whole time. he gave me the creeps. all right, you owe me twenty-eight sixty. jerry: sorry, i don't have any cash. kramer: i only got hundreds. george: you see... all right i knew it. kramer: come on, come on, we're gonna pay you! here have some mango. george: i don't want any mango. kramer: come on, take some. it's good. george: very good. juicy. kramer: ya. george: ripe. boy, this joe's got some terrific fruit. kramer: mmm. jerry: what? george: i feel like i got a b12 shot. this is like a taste explosion! kramer: ya i told you. jerry: what is it? george: i think it moved. oh my god, i think it moved. yeah, give me the big piece. i'll see you later. elaine: hi george. george: i'm back, baby, i'm back! kramer: want some mango? elaine: noo, thanks. jerry: well well, if it isn't the first lady of the american theatre. (elaine smiles and rolls her eyes at him) what brings you here? elaine: just gonna return some of your things that were in my house. jerry: oh and i've got some things of yours here. elaine: i know. jerry: well i'll get them. elaine: i'm waiting. jerry: all right. (goes into his hallway and comes back) you got my fins? elaine: yeah i got your fins. you got my poker chips? jerry: i got your poker chips. you got my goggles? elaine: they're next to the fins. you got my cards? jerry: they're next to the poker chips. elaine: all right and that just about... does it. jerry: i guess. elaine: okay, welp... see you around. jerry: yeah, see you. elaine: all right, let's go, i give you half an hour. jerry: (shocked) what? elaine: come on! jerry: are you serious? elaine: look, jerry, we have to have sex to save the friendship. jerry: sex... to save the friendship. (elaine drops her bag, takes off her jacket and walks into jerry's bedroom) well, if we have to (un-tucks his shirt) we have to. [location: karen's bedroom] karen: mmmm, oh george, oooh. george: please, it's not necessary. karen: mmm what's not necessary? george: the little extra moan you threw in there. laying it on a bit thick, don't you think? karen: what are you talking about? george: what am i talking about? come on. (laughing) you don't think i bought all that? (does a little move) karen: what, what? george: you're very good. very good with the moanings and the gyrations. y-you really had me going there for a minute. karen: you think i was faking? george: come on 'oh george, oh geeeooorge!' come on! not that i don't appreciate the effort that was put into it. karen: i'd like you to leave. george: what? karen: i said, i would like you to leave. come on, just get your clothes on and get out. george: but why? karen: because i said so. (pushes george off the bed) george: i-i-i can't find my glasses. karen: well hurry up. george: i need to look for my glasses. karen: (seen through george eyes all blurry) get out! get out!! get out!!! [location: jerry's bedroom] jerry: it's all george's fault. all that talk about impotence. it got to me. and that orgasm stuff orgasm this and orgasm that. it's a lot of pressure! elaine: you know i'm a little hungry. you wouldn't happen to have any of that mango left? the female orgasm is kinda like the bat cave, very few people know where it is and if you're lucky enough to see it you probably don't know how you got there and you can't find you way back after you left. there are two types of female orgasms: the real and the fake. and uh i'll tell you right now, as a man, we don't know. we do not know, because to a man sex is like a car accident and determining the female orgasm is like being asked 'what did you see after the car went out of control?'. 'uh i heard a lot of screeching sounds, uh i remember i was facing the wrong way at one point. and in the end my body was thrown clear. [setting: jerry's apartment] george: i can't believe this. jerry: oh, it won't be for that long. george: how can i do this? how can i move back in with those people? please, tell me. they're insane. you know that. jerry: hey, my parents are just as crazy as your parents. george: how can you compare you parents to my parents?! jerry: my father has never thrown anything out. ever! george: my father wears his sneakers in the pool! sneakers! jerry: my mother has never set foot in a natural body of water. george: (showing jerry up) listen carefully. my mother has never laughed. ever. not a giggle, not a chuckle, not a tee-hee.. never went 'ha!' jerry: a smirk? george: maybe!.. and i'm moving back in there! jerry: i told you i'd lend you the money for the rent. george: no, no, no, no. borrowing money from a friend is like having sex. it just completely changes the relationship. kramer: alright. i'm ready. (to george) you know, i still don't understand - why do you want to move back in with your parents? george: i don't want to! i'm outta money! i got 714 dollars left in the bank. kramer: well, move in here. jerry: (stopping the notion) what's that? kramer: why doesn't he just move in here? george: (sarcastic) yeah, yeah. i'm gonna move in with him. he doesn't even let you use the toilet! kramer: you can move in with me, if you want. george: (sincerely) thank you.. i, uh.. that might not work out. [setting: the costanza's house] estelle: careful! careful with the suitcases! we just painted! kramer: hello, mrs. costanza. jerry: (quietly) hello, mrs. costanza. estelle: (not really noticing jerry said hello) hello, kramer. close the door. kramer: well, i gotta bring in more stuff. (heads for the door) estelle: more stuff?! kramer: yeah. (exits) estelle: (to george) how much is there?! george: (annoyed) there's more. estelle: so, how are ya, jerry? jerry: fine, mrs. costanza. (attempts to get estelle to laugh) hey, i got a terrific joke for you.. estelle: (sits down on the couch) nah, not interested. jerry: no, no. it-it's really funny. there's these two guys- estelle: (interrupting) tell it to the audience. (george gives jerry an 'i told you so' look) here, (picks up a plate full of sandwiches) i made some bologna sandwiches. george: bologna?! no one eats bologna anymore! estelle: what are you talking about?! (to jerry) have a sandwich. jerry: (setting down a box) no thanks. estelle: oh, stop it! you don't want one, kramer? kramer: uhh.. no thanks. (goes back out the door) estelle: i think you're all a little touched in the head. (puts the plate down) you're so worried about your health.. you're young men. jerry: i really don't eat it. estelle: what am i gonna do with all these sandwiches?! will you take them home? give them to someone in your building? jerry: i don't know if i'd feel comfortable handing out bologna sandwiches in the building.. kramer: (enters with a box) alright, that's it. anything else? george: (muttering) no, that's it. kramer: oh, i gotta go move the car. alright (leaves) jerry: well, i guess we'll be going.. (heads for the door) george: (runs over to him, not wanting him to leave) what? you're going? jerry: yeah. george: wha - what are you doing later? jerry: oh, elaine and i are going out to dinner with kramer and his new girlfriend. george: really? jerry: yeah, you can't believe this woman. she's one of those low-talkers. you can't hear a word she's saying! you're always going 'excuse me?', 'what was that?' george: yeah.. may - maybe i'll meet ya? estelle: no, george. we're going out to eat tonight with your father. george: (mutters) oh.. okay.. talk to you later. jerry: yeah, take it easy. (leaves) george: oh, my god.. (buries his face into his hands) [setting: a restaurant] elaine: okay, well, he had this idea of a pizza place where you make your own pie! (laughs) jerry: right. eliane: you remember that? kramer: yeah, well, that was a good one. jerry: well.. elaine: what's that? jerry: excuse me? jerry: yeah.. yeah. elaine: yep. yeah.. kramer: you know that, uh, leslie (points to her) is in the clothing business? she's a designer. elaine: (interested) oh? kramer: in fact, she's come up with a new one that is going to be the big new look in men's fashion.. it's a, a puffy shirt. (leslie mumbles to kramer) well, yeah, it - it's all puffy. like the pirates used to wear. elaine: oh, a puffy shirt. jerry: puffy. kramer: yeah, see, i think people want to look like pirates. you know, it's the right time for it.. to be all puffy, and devil-may-care.. kramer: (still laughing) that's true.. (gets up) i'll be right back. (walks off laughing. jerry and elaine are left with the low-talker. a moment passes) elaine: uh, o... (remembers something they could talk about) jerry's going to be on the "today" show on friday. jerry: yeah, that's right! elaine: yep.. yep. um, he's promoting a (pauses) benefit for goodwill, you know, they, uh, they clothe the (clears her throat) poor, and the homeless.. jerry: (points at elaine) and the indigent. elaine: and the indigent, yeah.. i, i do volunteer work for them. i-i set the whole thing up, and i got jerry to do it. jerry: sure. elaine: ohh, yeah. yeah.. yep. jerry: uh-huh. elaine: yep. jerry: yep.. elaine: mmm [setting: a restaurant] estelle: maybe you should take a civil service test. george: (studying the salt shaker) i'm not taking a civil service test. frank: look at this, george. (takes a coin out of his pocket) you ever seen a silver dollar? george: yes, i've seen a silver dollar. elaine: why don't you want to take a civil service test? george: to do what?! work in a post office? is that what you want me to do? frank: would you believe when i was 18, i had a ssssilver dollar collection? estelle: i don't understand. you get job security - you get a pay check every week.. george: i'm a college graduate. you want me to be a mailman? frank: (still looking at his coin) you know, i couldn't bring myself to spend one of these. i got some kind of a-a-a-a-a phobia. estelle: so what are you gonna do?! george: i don't know. i do know that i have some kind of a talent - something to offer. i just don't know what it is yet! frank: i bet that collection would be worth a lot of money today. (does a form of magic trick making the coin disappear as he shows george an empty hand) george: (looks fed up with his parents) oh my god.. frank: i don't like this waiter. (holds up his hand to get the waiters attention - starts snapping) look at him.. he sees us.. he doesn't want to come over. george: (needing to get away from his parents, he gets up) i need some air.. estelle: george, where are you going?! george: (walks off) i got a lot of thinking to do. george: oh, i'm sorry. i'm terribly sorry.. (bends down, and starts picking up her things) woman: look at what you've done! you spilled my bag! george: (stuttering) i, i, i, .. here, let me - let me help you.. woman: no, no ,no. it's all right. (begins helping him pick her things up) george: it - it's just that i'm here with my parents, and my mother wants me to take a civil service test - and to tell you the truth, i don't even think i'd pass it.. so.. woman: hmm.. george: what? woman: (looking at both his hands intensely) your hands. george: what about them? woman: they're quite exquisite! george: they are? woman: (mesmerized) extraordinary! have you ever done any hand modeling? george: hand modeling? (shakes his head 'no') woman: (fishes a card out of her purse, then hands it to george) here's my card. why don't you, uh, give me a call? (walks off) [setting: jerry's apartment] jerry: (shrugs) i - i don't get it. george: me neither! jerry: what is it? george: i don't know. jerry: they're hands! george: this woman just set me up for a job! jerry: (gets up, and displays his own hands) well, what about my hands? i don't see how your hands are any better than my hands. george: what, are you kidding? (points at the flaws of jerry's hands) the knuckles are all out of proportion. you got hair over there - where do you get off comparing your hands to my hands?! this is a one-in-a-million hand. (points to his own hand) jerry: well, that's what comes from avoiding manual labor your whole life. george: this is it! it happened to me, jerry! i was sitting in the restaurant, the two nut jobs were talking - i couldn't take it any more. i got up, and (makes a noise) i bop into this woman.. jerry: it's just like in the movies. kramer: hey. (he's carrying a suit cover. he hangs it on jerry's coat hooks) jerry: hey. kramer: hey, george! (holds out his hand. george shakes it - a hand buzzer goes off. george starts freaking out. kramer laughs) george: oh!!!! what are you, crazy?! are you, crazy?! kramer: what?! george: you coulda damaged my hand! kramer: (laughing) but, it's only a toy! jerry: (explaining) george has become a hand model. kramer: a hand model? jerry: yes. kramer: (to george) really? let me see your hands. george: (defensively) you can look at them, but do not touch them. (holds them out) kramer: let's see.. (studies them) oh, those are nice. you know, i've never noticed this before? they're smooth.. creamy.. delicate, yet (turns to jerry) masculine. george: (takes two oven mitts from his back pack) alright, (puts them on) i gotta get going. jerry: oven mitts? george: (embarrassed) that's all i could find. (a moment passes) would you mind getting the door? kramer: yeah.. jerry: alright. (jerry opens the door for george) george: thank you very much. (walks out) kramer: you're not going to believe what happening with leslie. you know, ever since you agreed to wear the puffy shirt on the today show, she's been getting all these orders from boutiques and department stores.. jerry: uh-huh.. (finally realizes what kramer said, he looks up) since i said what? kramer: agreed to wear the puffy shirt. (starts unzipping the suit cover) jerry: what are you talking about? kramer: when you said that you'd agree to wear the puffy shirt on the today show. (takes the ridiculous puffy shirt out of the cover) jerry: (goes up to it) this? kramer: yea. jerry: i agreed to wear this?! kramer: yeah, yeah. jerry: but, when did i do that? kramer: when we went to dinner the other night. jerry: what are you, crazy?! kramer: what were you talking about when i went to the bathroom? jerry: i don't know! i couldn't understand a word she was saying! i was just nodding! kramer: (makes his pop sound) there you go. jerry: where i go? you mean she was asking me to wear this ridiculous shirt on national tv, and i said 'yes'?! kramer: yes, yes! you said it! jerry: but, i - i didn't know what she was talking about. i couldn't hear her! kramer: (takes it off the hook, and starts walking toward jerry with it. he backs defensively backs away from it) well, she asked you. jerry: i - i can't wear this puffy shirt on tv! i mean, look at it! it looks ridiculous! kramer: well, you gotta wear it now! all those stores are stocking it based on the condition that you're gonna wear this on the tv show! the factory in new jersey is already makin' em. jerry: they're making these? kramer: yes, yes. this pirate trend that she's come up with, jerry, this-this is gonna be the new look for the 90's. you're gonna be the first pirate! jerry: (like a little kid) but, i don't want to be a pirate! [setting: the costanza house] estelle: i knew it. i knew it.. i always knew you always had beautiful hands. i used to tell people. frank, didn't i use to talk about his hands? frank: (looking up from his paper) who the hell did'ya ever mention his hands to? estelle: (getting annoyed) i mentioned his hands to plenty of people! frank: you never mentioned them to me! george: (snaps, then points to the coffee table) hand me an emory board. estelle: i always talk about your hands - how they're so soft and milky white.. frank: no! you never said milky white! estelle: (getting angry) i said milky white! george: (to estelle) scissor. (she gets the scissors from the coffee table and hands them to george with the point facing him) don't hand them to me with the point facing out! estelle: i'm sorry. george: you're sorry?! estelle: (apologizing) i'll try to be more careful. george: (stern, angered) i hope so. (takes the scissors) estelle: georgie.. (nudges george's arm, disrupting his work with the scissors) oh, georgie, would you like some jell-o? frank: (to estelle, referring to the jell-o) why'd you put the bananas in there?! estelle: (yelling) george likes the bananas! frank: (trying to match her tone) so let him have bananas on the side! george: alright! please, please! i cannot have this constant bickering!.. stress is very damaging to the epidermis! now, i have an important photo session in the morning - my hands have got to be in tip-top shape, so please - keep the television down, and the conversation to a minimum. estelle: (meek) but georgie.. what about the jell-o? george: (definite) i'll take it in my room. (walks off) [setting: a today show dressing room] kramer: yeah, come in. stagehand: i just wanted to let you know he's got about five minutes. kramer: giddy-up. (stagehand leaves) jerry! five minutes! kramer: now that's a great looking shirt! (gets up, admiring the shirt) aye captain! (growls like a pirate) yeah! i'm glad i ironed it. it's perfect. (walks around jerry, inspecting the shirt) look at it! it's fantastic! jerry: (resisting) kramer, how am i gonna wear this?! i-i can't wear this! kramer: (reassuring) hey, this look's better than anything you own. you know, in two months time, everybody's gonna be wearing the (imitates a pirate) pirate look! kramer: yeah. elaine: hi, kramer. guess what - i just saw bryant gumbel, he said he might help out at the benefit! kramer: great. elaine: (between laughs) what is that?! kramer: it's the puffy shirt. look at it, eh? whatd'ya think? is it cool or what? elaine: (to jerry) why're you wearing that now? jerry: (obviously mad at the situation he's in) 'why am i wearing is now?? i'll tell you why i'm wearing it now - because the lowtalker asked me to, that's why! and i said 'yes'. do you know why? because i couldn't hear her! elaine: when did she, (snickers) when did she ask you this? jerry: when we were at dinner, when kramer went to the bathroom. elaine: i didn't hear anything. jerry: (yelling out) of course not! nobody hears anything when this woman speaks! elaine: (just now making the matter serious) well, you can't wear that on the show. kramer: (to elaine, muffled, low, and threatening) elaine, you want to stop? elaine: (turning around to kramer) wha- what? no. (back to jerry) jerry, you are promoting a benefit to clothe homeless people. you can't come out dressed like that! you're all puffed up!.. you look like the count of monte cristo! jerry: (arms out, complaining) i have to wear it! the woman has orders for this shirt based on me wearing it on tv.. they're producing them as we speak! elaine: (arguing) yeah, but you're supposed to be a compassionate person! that cares about poor people! you look like you're gonna.. swing in on a chandelier! stagehand: (looking down at a clipboard, enters) okay, let's go. (looks up, points at jerry's puffy shirt) is that what you're wearing? [setting: a photographer's studio] man: i've never seen hands like these before.. woman: they're so soft and milky white. photographer: you know who's hands they remind me of? (pauses for effect) ray mckigney. man: ugh.. ray. photographer: he was it. george: who was he? photographer: the most exquisite hands you've ever seen.. oh, he had it all. george: (hands still out, even though they've stopped looking at them) what happened to him? man: (clears throat) tragic story, i'm afraid. he could've had any woman in the world.. but none could match the beauty of his own hand.. and that became his one true love.. george: you mean, uh..? man: yes. he was not.. master of his domain. george: (makes a gesture saying he understands. the man nods) but how.. uh..? man: (quick, to the point) the muscles.. became so strained with.. overuse, that eventually the hand locked into a deformed position, and he was left with nothing but a claw. (holds hand up, displaying a claw-like shape) he traveled the world seeking a cure.. acupuncturists.. herbalists.. swamis.. nothing helped. towards the end, his hands became so frozen the was unable to manipulate utensils, (visibly disgusted by this last part) and was dependent on cub scouts to feed him. i hadn't seen another pair of hands like ray mckigney's until today. you are his successor. (george looks down at his hands) i uh only hope you have a little more self-control. george: (smiling to himself) you don't have to worry about me. (nodding, gloating) i won a contest. photographer: ok, let's get to work. [setting: the today show] bryant: (talking directly to the camera) back now, 746. on tuesday the 19th here in new york there will be a benefit for the goodwill industries - a used clothing organization that provides services to the needy. one of the performers will be comedian jerry seinfeld. (turns to face jerry) jerry, good morning. jerry: (mumbling out) thank you, bryant. bryant: (pointing out) and speaking of clothing, that is a very, very unusual shirt you have on. jerry: (looking down at the shirt; mumbling) oh, thank you. bryant: you're all kinda, (waves his hands around) kinda "puffed up". (chuckles) jerry: yeah, it's a puffy shirt. bryant: (laughing) you look kinda like a pirate. jerry: (nervous laughter) yeah.. like a pirate.. (attempting to get on another subject) anyway, ah, you know, we're hoping to, um, raise enough money.. with this.. uh.. bryant: (rudely interrupting, still snickering at the shirt) you.. ah, look, i'm sorry, it is just a very unusual shirt. it could be kind of a whole new look for you.. you know, you could put a patch over an eye, you could be kind of like the pirate-comedian. jerry: uh-huh, yeah. (smiling, nodding, clearly wanting bryant to shut up) bryant: are you going to be wearing the shirt at the concert? jerry: (losing it, mad) look, it's not my shirt. bryant: (confused) whose shirt is it? jerry: what's the difference? i agreed to wear it. it's - it's a puffy shirt. i feel ridiculous in it, and i think it's the stupidest shirt i've ever seen, to be perfectly honest with you. (nodding) leslie: (off camera, shrill, high pitched yelling) you bastard! bryant: (to jerry) did you hear that? jerry: (pointing off screen, nodding) that i heard. [setting: photographer's studio] photographer: (instructing george) alright, a little to the left.. little higher, little higher. good. perfect! perfect. george: like that? photographer: just like that. hold it. (takes picture) good, ok, let me get just one more, one more. (takes another picture) good, that's it. you're done. george: that's it? photographer: (smiling) that's it. man: (pulling a slip of paper out of his coat pocket) and here's your check. (george accepts) thank you very much. (pats him on the back) it was an honor. woman: it was great working with you. (somewhat coy) your hands are beautiful. george: (modest) oh, thank you very much. (chuckles) woman: you know, i was wondering - if you're not doing anything later, maybe you'd like to get together..? [setting: park] [setting: today show dressing room] leslie: you ruined me! you ruined my career! jerry: oh, just keep your voice down. everyone can hear you. leslie: (shouting out) oh, i don't give a damn! jerry: (reasoning) you know, if you talked this loud to begin with, i wouldn't be in this costume in the first place! george: (quick, excited talking) hey, hey! you can't believe this. look at this check! (hands it to jerry) they told me i had the most beautiful hands they'd ever seen in their lives - except for this mckigney guy - this great looking girl gave me her phone number.. i got it! i got it all! i'm busting. jerry, i'm busting! elaine: hey, i've never noticed your hands before. let me see. george: alright. (holds them up) elaine: (obviously not impressed, dull) yeah, real nice. george: (turning back to jerry, he takes the check back. he just now notices the shirt jerry's wearing, and snickers, pointing) nice shirt.. (laughs, jerry shrugs) what is this? is this what you wore on the show? jerry: yeah. george: what, have you completely lost your mind? kramer: (faint, trying to shut george up) hey.. george: who's dressing you? (laughs) you look like a complete idiot! you know, i wouldn't wipe my- (unable to take anymore, leslie gets up and shoves george violently. his hands go straight for the hot iron sitting on the dressing room table. george screams out in agony) aahhhh!!!!! (his voice is heard outside the building, on the street, and in the park were a bunch of pigeons are scared by the yelling) [setting: a restaurant] elaine: you ready? george: ow! hot! hot! elaine: (sincere) i'm sorry. george: (reflecting on his life gone wrong) this mckigney guy had a few good years.. (to kramer, bitter) how could you forget to turn off an iron? kramer: well, i was excited because jerry was putting on the puffy shirt. george: my whole life is ruined because of the (mocking, bitter tone) "puffy shirt". jerry: (pointing out) it didn't do me any good either! that benefit was the worst show i ever did. some of those heckles were really uncalled for "avast ye matey" - what the hell does that mean?! "20 degrees off the starboard side - the spanish galleon!" - there's no comeback for that! elaine: (reflecting) well, it got me fired from the benefit committee. kramer: you know all those stores canceled out on her? she's finished. (concluding) we're (leslie and him) finished. jerry: really? what happened? kramer: (showing pure irony) i just can't be with someone who's life is in complete disarray. jerry: what happened with all the shirts? kramer: they gave them all to goodwill. homeless man: ahh, can you spare a little change for an old buccaneer? jerry: (while digging in his pocket for some money, he looks over the shirts one last time) you know, it's really not a bad looking shirt.. elaine: do you ever spit on anybody from here? jerry: no. you? elaine: no. do you ever think about it? jerry: yeah. elaine: me too. kramer: hey. jerry: hey. kramer: well i got it! jerry: you got me the air conditioner? kramer: what do you think? jerry: beautiful! elaine: what air conditioner? kramer: well my buddy works in an appliance store and he got us thirty percent off. jerry: is it a good one? kramer: good one? it's the commando 8. jerry: commando 8? kramer: 12,000 btu's. elaine: i thought you hated air conditioning. you've never had an air conditioner. kramer: yeah, but amy likes air conditioning. elaine: oooh, you're getting an air conditioner for amy. (in a wining voice) amy doesn't like the temperature up here. she's a little hoooot. jerry: all right. kramer: okay, so, i'm gonna measure the window up, okay buddy? jerry: yeah. kramer: yeah. (george enters the apartment wearing goggles) yeah, rock on! george: i gotta get out of this city. jerry: so you're tunneling to the center of the earth? (elaine laughs silently) george: i'm at the health club and while i'm in the pool, some guy walks off with my glasses. who steals prescription glasses? elaine: you don't have an old pair? george: i broke 'em playing basketball. jerry: he was running from a bee. (elaine laughs) george: now if i wanna see anything i gotta wear these. elaine: george, those are prescription goggles? what is there to see in a health club pool? jerry: there's a lot of change down there. george: when i find that guy, this much i vow those glasses will be returned to their rightful owner. jerry: we're behind you, aquaboy. godspeed! george: what kind of a sick, demented person wants another person's glasses? elaine: yeah, especially those frames. kramer: you know what you ought to do? go see my friend dwayne at j & t optical on columbus avenue. he'll give you thirty percent off. george: yeah, come on. jerry: hey, he just got me thirty percent off on an air conditioner. george: really? kramer: retail is for suckers. george: wow. uh, what do i have to do? kramer: you just gotta mention my name. george: that's it? kramer: that's it. (smacks george on the forehead with a ruler) george: what about these? elaine: they look good. i liked the other one too. i've liked about five of them. george: well, it's a tough decision. i have to wear these every day. i'm deciding on a new face. jerry: (bored) come on, george. pick a face and go with it. elaine: now those look good, they're very bold. george: yes, they are bold. jerry, what do you think? jerry: (while looking at posters of women wearing glasses) i think these women would be pretty good looking if they weren't wearing glasses. elaine: hi there, little doggy. (to owner) do you mind if i pet your dog? dog owner: it's okay with me. elaine: hey little doggy. (elaine pets the dog and he bites her) aaah! dwayne: hey, you can't have that dog in here. jerry: are you okay? did he bite ya? george: can you believe that guy? elaine: i'm okay, it's just a nip. george: he just walked away! and once again i'm standing here like a little man. well not this time! (george leaves the store and follows the dog owner) you! dog man! elaine: my leg looks pretty bad. jerry: oh i'm gonna take you over to the emergency room. elaine: okay. jerry: (to george) hey, any luck? did you catch 'em? george: uuh, no, no. jerry: all right, i'm gonna take elaine over to the hospital. george: (in a really strange way) good, good, do that. jerry: what's the matter? george: oh, no, nothing. jerry: what is it? george: i can't tell you. elaine: (pulling on jerry's pants from the ground) jerry, can we go? jerry: yeah, yeah, in a second, in a second. (and to george) what do you mean you can't tell me? george: i can't tell you, don't ask. jerry: i'm asking! elaine: jerry, my leg. jerry: yeah, yeah, take care of it. (jerry throws her some toilet paper) come on, george, what is it? george: i saw amy making out with your cousin jeffrey. jerry: what? george: they were right outside! jerry: amy and jeffrey? george: yes! jerry: are you sure? george: yes, positive. jerry: but you can't see, there's no lenses in those frames. george: i know! i was squinting. elaine: okay, listen, jerry, you just catch up with me okay? you can just follow the trail of blood. jerry: we're gonna have to talk about this later. (elaine holds the door open for jerry while holding her leg) thank you. taxi! george: (to the store owner) excuse me, what do you think of these? dwayne: oh, we just got those in. it's a very exciting new frame. george: yes, it is exciting! all right, this is gonna be my new face. dwayne: all right, do you have a prescription? george: yeah. (george hands over the prescription) kramer... dwayne: what? george: kramer... dwayne: what about him? george: you do know kramer? dwayne: yes... george: well, i'm mentioning his name. dwayne: why? george: because... you know... dwayne: no, i don't know. look, i'm gonna need a deposit on these. elaine: oh, come on. cousin jeffrey? it's not possible! jerry: why not? they could have met. she loves the park, he works for the parks department. elaine: jerry, that is so ridiculous. but, george didn't even have his glasses on! jerry: but he was squinting. elaine: so what? squinting doesn't make that much of a difference. jerry: are you kidding? i've seen 'em squint. he can squint his way down to like twenty, thirty vision. once we were driving down from the catskills and he lost his glasses. he squinted his way from wortsborough down to the tappan zee bridge! he was spotting raccoons, on the road! docter: okay. elaine: okay? that's it? i don't need a shot? docter: not shot, dog bite. elaine: no, no, no. i know i wasn't shot. do i need a shot? docter: not shot, dog bite. woof woof, not bang bang. jerry: nah, look at this. cable's out. amy: oh that's okay, we don't have to watch tv. jerry: no, no, no. no trouble at all, it's a principal the thing. (jerry picks up the phone and dials the number) i like them to know that i know what's going on. that they're not... getting away with anything. oh, i'm on hold. so, what did you do yesterday? amy: yesterday? jerry: yeah, you remember yesterday? beautiful day... good day to be... out. amy: i didn't do anything. jerry: (laughing) oh you must have done something. amy: no, nothing really. jerry: didn't go out of the house? didn't take a walk... on columbus avenue? amy: well, i did go out for a little while. jerry: well, your day's getting more interesting already. (jerry shows the phone) ah, see, told me they'd be back in a minute and they lied. amy: you can't thrust anyone. jerry: no you can't. (hangs up the phone) now let's cut the ball, sister! you think i don't know about you swapping spit with somebody yesterday on columbus avenue? amy: what are you talking about? jerry: look, my friend saw you. amy: saw me? with who? jerry: you tell me. amy: there's nothing to tell. jerry: there isn't? amy: no. jerry: oh... all right... wanna get some pizza? amy: i had a feeling this was to good to be true. jerry: why? amy: i knew there had to be another side to you. jerry: no, no, there's no side! amy: there is a side, an ugly side. jerry: no, no, no ugly side. amy: look, i think i'm gonna go. jerry: why? amy: it's really hot in here. jerry: uuh, so we can still go out on friday though? amy: yeah. when you getting an air conditioner? jerry: it's coming! it's a commando 8! 12.000 btu's! it's gonna be like a meat locker in here. jerry: i was an idiot for listening to you! george: hey, i saw what i saw. jerry: ooh, everything was going so well. she hadn't seen any flaws in me. now she sees a side. george: what side? jerry: a bad side, an ugly side. george: ooh, so what? jerry: so what? i wasn't planning on showing that side for another six months. now you make me throw off the whole learning curve. george: why don't you just ask jeffrey? jerry: ah, he'd just deny it. george: there must be some way to find out. jerry: amy said nothing happened. george: what, you're gonna take her word over mine? i'm your best friend! jerry: yeah, but you're blind as a bat! george: i was squinting! remember that drive from wortsborough? (snapping his fingers) i was spotting those raccoons. jerry: they were mailboxes, you idiot. i didn't have the heart to tell you. george: (noticing something) hey look, a dime. george: heh, mercury head. you mind? jerry: (stunned) no, keep it. (elaine enters the apartment) hey what happened to you? you buzzed five minutes ago. elaine: there was a dog in front of the building and it spooked me. i couldn't come in until he left. jerry: a little white dog? elaine: yeah. jerry: snowball? you were afraid of snowball? elaine: i'm afraid of dogs now. jerry: he's like a squirrel. elaine: well he frightened me. george: did you get the shot? elaine: no. he said i didn't need a shot. george: you got bit by a strange dog and you didn't get a rabies shot? elaine: what, you think i should have? jerry: you know, you should just go back to the optical store and ask dwayne if he knows the name of the owner of the dog. elaine: all right, that's a good idea. i'm gonna do that. kramer: the ac is on it's way. george: pardon me, i went to see your friend dwayne... there was no discount. kramer: what? george: that's right, no discount! kramer: well did you mention my name? george: yes, i mentioned your name. kramer: and? george: pbbbs, bubkis! kramer: now i don't believe this. that guy owes me big time. i got him off sugar! look, i'm gonna go down there with you right now. george: all right, let me just... i'm gonna grap an apple. jerry: hey, kramer, elaine's afraid of snowball! kramer: little snowball? he runs on batteries! elaine: you know, george, that's an onion. george: yes it is. elaine: he couldn't tell an apple from an union and he's your eye witness? george: i saw them making out, you can believe it. jerry: i don't know what to believe! you're eating unions, you're spotting dimes, i don't know what the hell is going on. kramer: look, all you gotta to do, is get amy and jeffrey together somewhere, that's it. jerry: hey wait a second, wait a second. i'm going over to jeffrey's apartment tomorrow night to pick up these paul simon tickets. i'm gonna surprise amy. all i gotta do is bring her with me. and then when jeffrey opens the door, it's howdy doody time. kramer: right this way, mister doody! george: (crying from the onion) you'll see i'm right. kramer: hey, dwayny. dwayne: oh hello kramer. kramer: what is going on here? dwayne: what are you talking about? kramer: i'm talking about the thirty percent discount. elaine: uhm excuse me... uh... a man came in here... george: elaine, don't interrupt, they're discounting something. dwayne: who said anything about a discount. kramer: ooh, how quickly we forget. you owe me buddy. dwayne: for what? kramer: remember this? dwayne: what are you doing? kramer: six months ago you were eating four of those for breakfast and chasing it with a ring ding. and two butter fingers on the train. sounds familiar? dwayne: put that away! kramer: remember that night i found you at dinky donuts? you were all *hopped* up on cinnamon swirls! they wouldn't serve you anymore! you wouldn't even have any teeth if it wasn't for me taking you over to joe's fruit stand and stuffin' cantaloupe down your throat! so much for gratitude... yeah, yeah, yeah! dwayne: all right, all right, all right! i'll give him the discount, just put that thing away! this squares us. elaine: can i just have the name... dwayne: out! kramer: we'll see you dwayne. jerry: i don't know what to tell you, elton. elaine: (while reading a book) oh oh, listen to this, this is not good, listen to these symptoms for rabies anxiety, irritability. i got those, i'm irritable! jerry: (to george) who picked these out? george: i did! jerry: they're ladies' glasses! you know all you need is that little chain around your neck so you can wear 'em while you're playing canasta. george: well elaine was supposed to help me. elaine: hey! i got bit by a dog! i had to go to the hospital! i was bleeding to death! i can't solve every little problem you have! jerry: hey, hey. elaine: i'm sorry... sorry. kramer: commando 8 has arrived! jerry: take it to the window. kramer: 12.000 btu's of raw cooling power. (kramer places the air conditioner in the window) installed! george: that's it? you don't have to screw it in or anything? kramer: no, just plug it in and the commando 8 does the rest. (and to jerry) i'll seal that up later, right? jerry: just in time for amy. george: oh yeah, when are you gonna execute that plan? elaine: i've got such a headache. oh, that's another symptom! kramer: of what? jerry: rabies. kramer: oh that's fatal, you don't want that! elaine: i know i don't want it! i don't need you to tell me what i don't want, you stupid hipster dufus! jerry: hey, hey, what is this? what's going on here? elaine: i'm sorry, kramer, i'm sorry. kramer: no, no, it's all right. i had a friend who had rabies once. (george's eating chips) may i have one of those, madam? george: madam? what are you calling me madam for? kramer: they're ladies' glasses. kramer: now look here, see it's right here gloria vanderbilt collection. george: he sold me ladies' glasses! elaine: i... i think i'm... i'm having trouble swallowing. i can't... i can't swallow. kramer: she's got rabies, just like my friend bob sacamano. she's delirious. (elaine drinks some water and drools) she's foaming at the mouth! elaine: is this gonna hurt? docter: yes, very much. elaine: what if jeffrey's not home. did you ever think of that? jerry: oh he'll be home, it's friday night. that's the big night on the nature channel. elaine: let me tell you this there is no way cousin jeffrey is dating amy. he looks like a horse! jerry: he does look like a horse. elaine: yeah, he's got a real horse face. (elaine, while looking out the window) here, look at this! it's the guy with the dog! (she opens the window and screams) hey! hey! you down there! remember me? i had to get shot because of your stupid dog! dog owner: hey who are you calling stupid? jerry: hey, shall we spit on him? elaine: no no no no, come on, let's go downstairs. kramer: (singing) oh myyyy papayaaaa. (the air conditioner wobbles) the air conditioner! (kramer tries to keep it from falling by holding it's cord, but it snaps) i think it got the dog! george: ah, oh boy. blind man: excuse me, uh i'm new here, would you mind walking me back to my locker? george: oh uuh, sure, why not. (the blind man hangs on to george's arm) hey, that's the guy. blind man: what guy? george: the guy that stole my glasses. this time i got 'em! (george follows the man onto the street, dragging the blind man with him) would you pick it up a little? blind man: where the hell are we going? george: he's getting on a bus, damn! (to the blind man) those are nice glasses. blind man: i don't like 'em, they pinch my nose. george: is that right? george: dwayne, my friend and i would like to exchange frames. could you put his lenses in my frames and mine in his? dwayne: (while eating a candy bar) yeah, we can do that. george: and i'd like a discount. dwayne: why should i give you a discount. george: listen, you're lucking i'm not asking for a whole refund. (trying to speak quietly) you gave me ladies' frames! blind man: what's that about ladies' frames? dog owner: i'm trying to track down that lady that was in here the other day, the one that was messing with my dog. george: yeah, well, she's trying to track you down. dog owner: well i would love to talk with her. (george chuckles) she lives on 81st street, right? george: no, that's jerry. dog owner: really? you wouldn't happen to know what apartment he's in, would you? george: yeah, 5a! dog owner: thanks a lot! amy: so what are we doing here? jerry: oh, you'll find out. amy: i don't know, you're acting very mysteriously. jerry: well, i'm very mysterious by nature. (jerry knocks on the door) a lot of women find that attractive. amy: i find it annoying. jerry: oh? uncle leo: helloooo! jerry: uncle leo?! uncle leo: come on in. jerry: this is amy. uncle leo: hello amy. jerry: unlce leo, what are you doing here? uncle leo: jeffrey went out tonight. jerry: ooh! very convenient. uncle leo: i'm supposed to tape this nature show for him, he loves nature. botany, zoology. you know his botany teacher from college stays in close touch with him? they became friends! jerry: oh really? uncle leo: that's pretty rare! i mean, actual friends! like equals! they have dinner together, they have discussions... jerry: uncle leo! did he leave any tickets here for me? uncle leo: oh yeah yeah, i'll get 'em. jerry: thank you. amy: what tickets? jerry: to the paul simon concert in the park! amy: we're going to the paul simon concert? jerry: that's right, lady! amy: oh what a great surprise! jerry: i thought you'd like that. amy: oooh, so that's why you've been acting so mysteriously. jerry: now you know. that, and that alone, is the reason. uncle leo: you know jeffrey's favorite animal the leopard. amy: why is that? uncle leo: he likes the spots. oh uh, here's the tickets. jerry: thank you. uncle leo: oh uh, he asked me to give you a message. he said that uh he's very sorry and uh he hopes you'll forgive 'em. jerry: (to amy) aha! so it's true! you were making out with him! amy: what are you talking about, i don't know jeffrey. oh so this is why you brought me up here? jerry: oh very convincing, but it's not gonna work this time. uncle leo: what are you talking about? all he meant was that he was sorry that the seats aren't very good. jerry: oh... oh... wanna get some pizza? george: boy, these really do pinch the nose. blind man: tough luck! a deal's a deal. george: oh my god it is them. jerry: i still don't know how you spotted that dime. i think you planted it. plus i had to pay that vet bill for the stupid dog. i don't know how that guy got my name. george: yeah. hmm. boy these really do pinch. i tell you, if i ever find the son of a bitch that stole my glasses... jerry: so, does he like you? elaine: what do you think? jerry: you like him? elaine: yeah, yeah like him, definitely like him. i like him a lot. george: so, what's wrong with him? elaine: nothing, and i've looked. george: well, i'm sure you'll find something. jerry: so, how did you meet him? elaine: in the office. jerry: so, he's a writer. elaine: yeah. jerry: yeah, big surprise. elaine: so, i was sitting at the reception desk, i was looking pretty hot. i was wearing my sling back pumps. george: what are those? elaine: ask your mother, (making fun of george's living situation) you live with her now, don't you? anyway, so then this guy comes up to me and starts feeling my jacket through his thumb and his forefinger like this. jerry: so, what did you do? elaine: i said "so, what do you think?". and he said, "gabardine?". and i said, "yeah." that was it. george: wow, just felt your material? elaine: yeah...jake jarmel. george: sounds like a cool guy. jerry: sounds like a jerk. felt your material, come on. george: jerry, where did you get that sweater? jerry: oh, what do you think? i found it at the back of my closet. george: i think that's what the back of closets are for. elaine: hey, that's barry. look it's barry. (taps on the window) jerry: (taps on the window) hey... elaine: hi. george: who's that? jerry: that's barry prophet, he's our accountant. george: i don't know how you can let this guy handle all your money. elaine: oh, he doesn't handle my money, he handles jerry's money. he just does my taxes. jerry: hey barry, how you doing? barry: hey, how are you? jerry: this is my friend george. barry: hi george. (shakes george's hand) elaine: hi, what are you doing on this neighborhood? barry: nothing really. (sniffs; looks around) you, eh, you eat here? jerry: yeah, so how's my money? barry: well it's still green. (sniffs twice) jerry: what, you got a cold? barry: no, no. elaine: wow, look at that ring. barry: (showing off the ring to elaine) oh, uh you like that? (elaine not amused gives barry a polite laugh; barry sniffs) say uh, where's the bathroom? jerry: bathroom uh, bathroom's uh right over there. barry: (turns looking in the direction jerry mentioned) oh, great. jerry: did you see that? elaine: see what? george: yes, i saw that. elaine: what? jerry: what was all that sniffing? elaine: i don't know. jerry: you don't think...? elaine: oh, no! come on jerry. george: he was definitely sniffing. jerry: i mean what if, what if, this this guy has got all my money. plus he has got some kramer's money with him. this guy could write checks to himself right out of my account. elaine: no, i have known this guy since college. he doesn't do drugs. jerry: then, what was all that sniffing? elaine: maybe it's the cold weather. jerry: today's not cold. george: all right, i gotta get going. my parents are expecting me. elaine: (making fun of george as he leaves) don't forget to wash your hands before supper. frank: why do you need all that ketchup for? george: this is my ketchup. i bought this ketchup just so i could have as much as i want. frank: so i, i talked to phil casacof today. estelle: phil casacof? frank: yeah, you know my friend, the bra salesman. he says they are looking maybe to put somebody on so i got you an interview next friday with his boss. george: next friday, what time? frank: 2 o'clock. george: that's my whole afternoon! i was going to look for sneakers. frank: you can look for sneakers the next day! estelle: he doesn't know anything about bras. george: i know a little. besides, what do you have to know? frank: well, it wouldn't hurt to go in the and be able to discuss it intelligently. maybe you should take a look at a few bras? (to estelle) where is you bra? give him a bra to look. estelle: i am not giving him a bra. frank: why not? estelle: because i don't need him looking at my bra. frank: why, so he'll go to the interview and he wouldn't know what he's talking about!?! george: do we have to...? frank: you don't even know what they're made from. george: they are made from lycra-spandex. frank: get out of here! lycra-spandex? estelle: i think they are made from lycra-spandex. frank: wanna bet? how much you wanna bet? estelle: i'm not betting! frank: take a look. estelle: all right, i'll get a bra. frank: (yelling to estelle as she leaves)i don't know what the big problem is getting a bra?! george: she doesn't want to get a bra. frank: i'm not saying go to the library and read the whole history, but it wouldn't kill you to know a little bit about it. george: all right, it wouldn't kill me. frank: how long it takes to find a bra? what's going on in there? you ask me to get a pair of underwear, i'm back in two seconds...you know about the uh cup sizes and all? they have different cups. george: yea i-i know about the cups. frank: you got the a, the b, the c and the d. that's the biggest. george: i know the d is the biggest. i've based my whole life on knowing that the d is the biggest. estelle: here, here's the bra. frank: let me see it. estelle: (reading the bra) 100% lycra-spandex. frank: let me see it. estelle: i told you. here, think you know everything? frank: hmm, that's surprising. all right, what else? you got the cups in the front, two loops in the back. all right, a guess that's about it. george: i got it. cups in the front, loops in the back. (puts the bra on the table) estelle: you got ketchup on it! kramer: sniffing, what do you mean sniffing? jerry: sniffing, with his nose. kramer: jerry, he probably had a cold. jerry: no, i asked him. kramer: so, what are you saying? jerry: i don't know, you know, what if...? kramer: drugs? you think he's on drugs? jerry: i don't know. kramer: jerry jerry: all i know he was sniffing. kramer: listen, we went in on a cd together. jerry: i know. kramer: and newman gave you money too. so, i didn't even meet this guy. you know, we trusted you. jerry: look, it doesn't necessarily mean anything yet, it just means he was sniffing. kramer: well, what else? was he nervous? did he use a lot of slang? did he use the word 'man'? jerry: no, he didn't use 'man'. kramer: i mean when he was leaving did he say "i'm splittin'"? jerry: no, but in one point he did use the bathroom. kramer: whoh! jerry: do you think that's a bad sign? kramer: yes!! yes, that's what they do! they live in the bathroom! all right, what are we going to do? we are going to get our money back, right? jerry: i don't know. (takes off his sweater) this sweater really itches me. you want it? kramer: (grabbing the sweater) yeah. elaine: hello.... hello, oh... jake: well, you notice anything? elaine: you have cleaned out the whole apartment and you're making dinner. you're perfect, you're a perfect man. jake: ooh... elaine: did anyone call? jake: you got a few messages, i wrote them down. elaine: where are they? jake: lets see, they are (looking for the paper; finds it; hands it to elaine) here they are. elaine: thank you. (looking at the messages) oh ya, heh, i'll call you back. ooh, myra had the baby! oh, my god that's wonderful! who called? jake: she did. elaine: she did? oh, that's so great! jake: where do you keep the corkscrew? elaine: in the drawer on the right. hmm... jake: what? elaine: nah it's nothing. jake: what is it? elaine: it's nothing. jake: tell me. elaine: well, i was just curious why you didn't use an exclamation point? jake: what are you talking about? elaine: see, right here you wrote "myra had the baby", but you didn't use an exclamation point. jake: so? elaine: so, it's ya nothing. forget it, forget it, i just find it curious. jake: what's so curious about it? elaine: well, i mean if one of your close friends had a baby and i left you a message about it, i would use an exclamation point. jake: well, maybe i don't use my exclamation points as haphazardly as you do. elaine: you don't think that someone having a baby warrants an exclamation point. jake: hey look, i just chalked down the message. i didn't know i was required to capture the mood of each caller. elaine: i just thought you would be a little more excited about a friend of mine having a baby. jake: ok, i'm excited. i just don't happen to like exclamation points. elaine: well, you know jake, you should learn to use them. like the way i'm talking right now, i would put an exclamation points at the end of all these sentences! on this one! and on that one! jake: well, you can put one on this one i'm leaving! jerry: you're out of your mind you know that. elaine: why? jerry: it's an exclamation point! it's a line with a dot under it. elaine: well, i felt a call for one. jerry: a call for one, you know i thought i've heard everything. i've never heard a relationship being affected by a punctuation. elaine: i found it very troubling that he didn't use one. jerry: george was right. didn't take you long. kramer: anything new with that guy on drugs? elaine: oh, he's not on drugs. kramer: then why the sniffing? who walks around (sniff, sniff) sniffing? elaine: all right, here, you call him right now. see if he's sniffing right now. jerry: good idea. (jerry calls barry's office) voice on the phone: prophet and goldstein. jerry: yes, i'd like to speak to barry prophet, please. voice: i'm sorry he's out of town this week. jerry: out of town? voice: yes, he went to south america. jerry: south america? kramer: south america? jerry: i'll call back, thank you. (hangs up the phone) he went to south america! kramer: yyyeeaaah!! elaine: so what? jerry: who goes to south america? elaine: people go to south america. jerry: yeah, and they come back with things taped to they're large intestine. elaine: so, because of a few bad apples you're gonna impugn an entire continent? jerry: yes, i'm impugning a continent. kramer: well, i say we're going to take our money right now! newman: hey, hey... jerry: hello newman. newman: hello jerry. (to kramer) so, any news? kramer: yeah, he skipped out and *ptruut* went to south america! newman: south america?! (to jerry) what kind of snow blower you get us mixed up with? elaine: look it, gentlemen. the fact remains you still have no proof. this is all speculation and hearsay. kramer: wait, there is one way to find out. we set up a sting. you know like abscam. like abscam jerry. elaine: ohh, what are you gonna do? you gonna put on phony beards and dress-up like arab sheiks and sit around in some hotel room. i mean come on... jerry: wait a second. maybe there is someway we can tempt him and find out... newman: if we put our three heads together we should come up with something. kramer: what's today? newman: it's thursday. kramer: really? feels like tuesday. newman: tuesday has no feel. monday has a feel, friday has a feel, sunday has a feel.... kramer: i feel tuesday and wednesday... jerry: all right, shut up the both of you! you're making me nervous. where is he already? he should've been out of work by now. newman: hey, you know this is kind of fun. kramer: yeah, maybe we oughta become private detectives... jerry: yeah maybe you should. kramer: maybe i will. newman: yeah, me too. jerry: all right, what are you gonna say to him? kramer: just gonna find out if he's interested. newman: hey, hey maybe i should go with him? jerry: no, you stay here in the car. newman: who made you the leader? jerry: all right newman, one more peep outta you, you're out of the whole operation! newman: alright. jerry: there he is. he's going into that bar. kramer: all right, i'm going in. jerry: be careful kramer. newman: i shoulda gone in with him. jerry: no, you stay here in the car. i may need you. newman: what you need me in the car for? jerry: i might need you to get me a soda. kramer: i'll have a brewsky, charlie. bartender: the name's mitch. kramer: oh, there's nothing like a cold one after a long day, eh? barry: yeah. kramer: oh yeah, i've been known to drink a beer or two. but then again, i've been known to do a lot of things. (waiter opens the counter which hits kramer on the head) cigarette? barry: (sniffs) no, i never touch them. kramer: i suck'em down like coca-cola. well here's to feeling good all the time. (kramer drinks the beer and smokes the cigarette at the same time. barry sniffs) looks like you've got yourself a little cold there, eh fella? barry: i don't think so. kramer: me neither. jerry: you should try this new dental floss glide, it's fantastic. newman: i use dental tape. jerry: you should try this. newman: i don't wanna. jerry: not even once? newman: no. jerry: you're an idiot. newman: why, because i use dental tape? jerry: right, anyone who uses dental tape is an idiot. kramer: south america? barry: yeah, yeah. kramer: well that's a burgeoning continent. barry: well, they are expanding their economic base. kramer: tell me about it. barry: (sniffs) excuse me, i gotta goto the bathroom. kramer: i'm hip. barry: hip to the what? kramer: to the whole scene. (sniff) barry: what scene? kramer: the bathroom scene. (moves his knows as you would if you sniffed) barry: listen, don't take this personally, but when i'm coming back i'm sitting over there. kramer: what ever turns you on. newman: no, no i don't like it. jerry: what do you mean you don't like it? how could you not like it? newman: i like the thick tape. barry: heeyy!! what kind of a nut are you? farkus: so, basically george the job here is quite simple. selling bras. george: well, that interests me very much mr. farkus.very much indeed, sir. farkus: have you ever sold a woman's line before? george: no, but um i have very good report with women, very good, comfortable. and from the first time i laid eyes on a brassieres, i was enthralled. farkus: hum. tell me about it. george: well, i was 14 years old. i was in my friends bathroom. his mother's brassieres were hanging on the shower rod and i picked it up, studied it. i thought, i like this. i didn't know what way or what level, but i knew i wanted to be around brassieres. farkus: that's an incredible story. you have a remarkable passion for brassieres. george: well, they're more than an underwear to me mr. farkus. two cups in the front, two loops in the back. how do they do it? farkus: well, i think i can say, barring some unforeseen incident, that you will have a very bright future here at e.d. granmont. george: thank you mr.farkus, thank you very much indeed sir. farkus: see you monday 9 o'clock. george: if you don't mind, sir. i'll be here at 8. farkus: excellent. george: so long, mr. farkus. ms. de granmont: what you're think you're doing? george: oh, nothing... ms. de granmont: farkus, get out here! farkus: yes, ms. de granmont? ms. de granmont: farkus, who is this pervert little weasel? farkus: uh, this is costanza, he's our new bra salesman. (george's offers his hand to shake) he's supposed to start on monday. ms. de granmont: if he's here on monday, you're not. take a pick. farkus: (to george) get out! (to ms. de granmont) i'm terribly sorry ms. de granmont... elaine: you wanted to see me, mr. lippman? lippman: i was just uh going over the jake jarmel book and i understand you worked with him very closely on this. elaine: yes (clears her throat) yes i did. lippman: and uh, anyway i was just reading your final edit and um, there seems to be an inordinate number of exclamation points. elaine: uh well um, i felt that the writing lacked certain emotion and intensity. lippman: ah, (reads an excerpt) "it was damp and chilly afternoon, so i decided to put on my sweatshirt!" elaine: right, well... lippman: you put exclamation point after sweatshirt? elaine: that's that's correct, i-i felt that the character doesn't like to be ch-ch-chilly... lippman: i see, (reads another excerpt) "i pulled the lever on the machine, but the clark bar didn't come out!" exclamation point? elaine: well, yeah, you know how frustrating that can be when you keep putting quarters and quarters in to machine and then (prrt) nothing comes out... lippman: get rid of the exclamation points... elaine: ok, ok ok ... lippman: i hate exclamation points... elaine: ...ok i'll just.... jerry: 'dear barry. consider this letter to be official termination of our relationship effective immediately.' kramer: exclamation point. elaine: you still have no proof. kramer: elaine, he was sniffing like crazy around me. jerry: 'i will expect all funds in form of cashier checks no later than the 18th'. kramer: double exclamation point! newman: will that take care of ours too? jerry: yeah, i'll give you yours as soon as i get my money back. newman: hey, you want me to mail it? i'm on my way out anyway. jerry: yeah, thanks. newman: it'll be my pleasure. newman: see'ya later. jerry: you know this... kramer: hey, ralph. jerry: hi ralph. ralph: what's up fellas? that'll be 14.30. jerry: all right. kramer: mushrooms, you got mushrooms jerry? jerry: yeah. kramer: what's the matter? you've got a cold? ralph: no man (sniffs again) kramer, what is this? kramer: it's a sweater. ralph: what is it made out of? kramer: i don't know, jerry gave it to me. jerry: mohair, i think. ralph: mohair, that figures, i'm allergic to mohair. jerry: you mean you just started sniffing? ralph: yeah, mohair does it to me every time. jerry: i was wearing that sweater in the coffee shop when barry came in. kramer: jerry, i was wearing it in the bar. elaine: the sweater! the sweater made him sniff! see, i told you he wasn't a drug addict. jerry: oh no! the letter, newman, it's got exclamation points all over it! kramer: not to mention the picture of him on the toilet. jerry: the what?? newman: after you. woman: thank you. woman: get your hands off of me! johnny!!! johnny! frank: what do you mean you felt the material? what, with your fingers like this? george: so what, what is so bad about that? estelle: who goes around feeling people's material? what can be gained by feeling a person's material? it's insanity! frank: what ever happened to "why, that's a lovely dress you have on. may i have this dance?"!! elaine: you are really lucky newman never mailed that letter. jerry: sorry i'm late, i just came from a meeting with my lawyer. elaine: what is this? jerry: it's a letter from your friend barry prophet's lawyer. elaine: he is filing a chapter eleven. why, what's going on, why is he filing a chapter eleven? jerry: bankruptcy, bankruptcy...as in i've taken your money and spent it on drugs! elaine: what do you mean, i thought it was the sweater. kramer: all right, what about the money? jerry: what about the money? apparently if i had dissolved my relationship with him prior to his filing chapter eleven, i've could've got the money back. which i would've done, if a certain imbecile had been able to get to a mailbox and mail a letter!! newman: pair of bear claws, please. woman: nice. jerry: think so? woman: yeah, what is it? jerry: half silk, half cotton, half linen. how can you go wrong? stan: ...and then baby's head comes out, and i'm screaming and my brother who's been videotaping the whole thing turns green, his eyes roll up in his head and he blacks out, he drops the camera, the camera breaks, and then, the placenta comes flying out. elaine: whoa. stan: and then doctor says... jerry: (interrupting) thanks, that's enough. stan: will you look at that kid. sucking away. sucking like there's no tomorrow. suck, suck, suck... jerry: (looking away) yeah, yeah, yeah. stan: look at that jerry, look at that. sucking, sucking... jerry: yeah, i looked. i saw. stan: this doesn't make you uncomfortable, does it? jerry: no, uncomfortable? not at all. (aside to elaine) my friend's wife's breast sticking out - why would that make me uncomfortable? stan: look at him. jerry: so how long do they do this? stan: jus, a year or two. jerry: no break? stan: after that comes the weaning. jerry: so after the sucking, comes the weaning. elaine: first the sucking then the weaning. jerry: well, you gotta wean. stan: gotta wean. elaine: must wean. george: what about that spot i got? jerry: yeah, i saw the spot. george: you open the door to the car, boom, you walk right into the hospital. eh, you can't beat that spot. (starts doing a little dance) i am on a roll. i'm just willing these great parking spots. jerry: george... george: maybe the baby would like to see my spot. a positive, uplifting message to start his life out with. huh, you can still get a great space in this city - if you apply yourself. jerry: (to elaine) where's kramer? shouldn't he be here by now. elaine: did you give him the room number? jerry: ya, 1397. kramer: 1937, 1937, 1937... patient: excuse me. do you know where the elevator is? kramer: uh ya, it's right around the corner there. kramer: 1937. kramer: oh! god, it's a pig man! a pig man! stan: ..so anyway, jerry, elaine, we have something we want to ask you. george: you gotta look at this. i pulled it in perfectly equidistant from the car in front of me and the car behind me. jerry: will you shut up george. elaine: i'm taking a cab home. i can't this anymore. jerry: you were saying stan? i-i'm sorry about that. stan: myra and i would like you and elaine to be the godparents of steven. elaine: huuh, wow. jerry: me? godfather? stan: yes. jerry: (a la "don corleone") never go against the family, elaine. elaine: what? kramer: hey, i just saw a pig man! a pig man! ya know he was sleeping and then he woke up and he looked up at me an-and he made this horrible sound, this (quells like a pig). george: kramer, what the hell are you talking about? kramer: i'm talking about the pig man. i went into the wrong room and there he was. george: a pig-man? kramer: a pig-man. half pig, half man! elaine: that's great kramer... so-so, anyway, tell us what's involved in being a godparent. jerry: (a la "don corleione") elaine, never ask me about my business!.... (sheepish) "godfather." stan: the most important thing is you help with the bris. jerry: the bris? kramer: a bris? you mean circumcision? stan: ya. kramer: i would advise against that. elaine: wha, kramer. it's a tradition. kramer: ya well, so was uh sacrificing virgins to appease the gods, but we don't do that anymore. jerry: well, maybe we should. george: (knocks on the window) hey, why are all those people milling around my car? kramer: i don't know. jerry: maybe they're admiring your spot. kramer: they're all looking up. george: hey, there's a guy up the roof. kramer: whoa. that's the guy that i told where the elevator was. george: oh well, i hope he doesn't jum... george, elaine, kramer, jerry, & stan: oh my! george: my car! my caaaaarrrr! elaine: a mohel! what the hell is a mohel? jerry: a mohel is the person that performs the circumcision. elaine: where am i going to find a mohel? (looking through the yellow pages, muttering) motels, models... how do you find a mohel? jerry: oh, finding a mohel is a piece of cake. any idiot can find a mohel. i have to hold the baby while they do it. that's a tough job. how would you like that? elaine: hey jerry, you ever seen one? jerry: you mean that wasn't uh. elaine: yeah. jerry: no.. you? elaine: ya. jerry: what'd you think? elaine: (shakes her head) no, had no face, no personality. it was like a martian. but hey, you know that's me. jerry: hey. george: well i just got the estimate. it's going to cost more to fix that roof than the car's worth, so i'm going over to see that hospital administrator today. someone is gonna pay for this damage and it's not gonna be me. jerry: ah, you're screwed. george: i know, swan dives from twenty floors up, lands right on top. what do i got a bulls eye up there? he couldn't move over two feet? land on the sidewalk. it's city property. elaine: well i have to interview a mohel. jerry: how about our little elaine huh? attended the finest finishing schools on the eastern seaboard. equestrian competitions. debutante balls. look at her now. interviewing mohels. kramer: yea! jerry: what's the matter? elaine: are you alright? kramer: don't even question my instincts, because my instincts are honed. (repaper) look at that. jerry: what now? kramer: look look. jerry: (kramer shows jerry and elaine the paper) "hospital receives grant to conduct dna research".." government funds genetic research at area hospital" ... yeah, so? kramer: pig-man, baby. pig-man. elaine: if i hear about this pig-man one more time... kramer: hey, i'm tellin ya the pig-man is alive. the government has been experimenting with pig-men since the fifties. jerry: oh, will you stop it. just because a hospital studying dna research doesn't mean they're creating a race of mutant pig-men! kramer: jerry wake up to reality. it's a military thing. they're probably creating a whole army of pig warriors. george: i tell you something. i wish there were pig-men. you get a few of these pig-men walking around suddenly i'm looking a whole lot better. then if somebody wants to fix me up at least they could say, "hey he's no pig-man!" jerry: believe me, there'd be plenty of women going for these pig-men. whatever the deformity is there's always some group of perverts that's attracted to it. "oo that little tail really turns me on." elaine: (mumbles) that's just about enough jerry: oh, what's the matter this doesn't interest you? elaine: oh, no, it's fascinating, but could you do me a favor, could ya tape the rest of the pig-men and the women who love them discussion and i'll listen to it the next time i'm here. i've gotta go find a mohel. kramer: you know, you should call this off, elaine. it's a barbaric ritual. elaine: well, perhaps one day when the pig-men roam free it will be stopped kramer. until then, off with their heads. george: but kramer, isn't it a question of hygiene? kramer: it's a myth. besides, it makes sex more pleasurable. george: yeah. so how does that help me? jerry: (to george) hey george, you ever see one? george: yeah, my roommate in college. jerry: so what'd you think? george: (thinks for a second) i got used to it. jerry: alright, i'm waiting. i-i want to see the pig-man. show me the pig- man. kramer: oh, don't worry. i'm gonna show you, and you'll never be the same. jerry: maybe he's just a guy with a nose like this. (holds his nose up like a pig) you know a lot of people have a nose like this, they're not necessarily pig-men. kramer: believe me, jerry, somewhere in this hospital the anguished "oink" of pig-man cries out for help. jerry: well, if i hear an anguished "oink", i'm outta here. i-i don't see any pig-men. look (he points at passerby) human, human, human... (he looks down corridor, with alarm.) (with mock alarm) wait a second! (grabs kramer) kramer: what?! jerry: oh, it's george. george: alright the administrator's on the third floor. i'll meet you guys back at the car. kramer: wait wait george. you got room in the car for the pig-man huh? george: the pig-man can take the bus. kramer: george, if the pig-man had a car, he would give you a ride. george: how do you know? what if pig-man had a two-seater? kramer: be realistic george. george: i'll tell you what, if pig-man shows up, we'll squeeze him in. i'll see you later. kramer: yea. mrs. sweedler: mr. costanza, come in, come in. it's been a very trying couple of days around the hospital. doctors, patients, everyone, just grief stricken over this unfortunate occurrence. george: well, i join them in their grief. mrs. sweedler: horrible thing. flew right past the children's wing. all the sick children, in the playroom, looking out the window, just traumatized by the incident. apparently, they thought he was flying. you know how children are, "oh look. a man is flying. a man is flying" and then, splat... george: that's where i come in. umm, on splat. uh, you see, mrs. sweedler, or is it hospital administrator sweedler? mrs. sweedler: mrs. sweedler's fine. george: mrs. sweedler thank you. y-you see, this tragedy affected me in a very, very personal way. mrs. sweedler: how is that? george: yes, well you see, the deceased landed on my car. the uh splat, as it were, actually occurred on the roof of my car. now of course i can't help but feel that had it been a convertible this whole tragedy might have been averted but i've never been the kind of guy to buy a convertible, what with the baldness and everything. mrs. sweedler: well i have known bald men who owned convertibles. they wore a hat. george: yes but then everything is all pulled down and it's jus.. anyway. the damage, unfortunately, has marred an otherwise fine automobile, rendering it virtually undriveable. mrs. sweedler: (stiffening) yes, well, that is a shame. george: yes, a shame. that is exactly how i would put it. now mrs. sweedler, with all due discretion and sensitivity, and taking in the whole scope of the situation, i just can't help but think that, the hospital is somehow responsible for compensating the other, still living 'victim' of horrendous, horrendous tragedy. mrs. sweedler: mr.constanza. george: yes. mrs. sweedler: a man plummeted tragically to his ultimate demise - george: yes. mrs. sweedler: ... and you greedily, callously want to profit from it? george: (pulling out estimate out of his pocket) well, profit. i think you'll see from the estimate that i'm not really profiting that much. they might be a little high, but.. mrs. sweedler: get out! get out, now! get out of my office. george: should i leave this..? mrs. sweedler: get out! kramer: excuse me. what happened to the man, that was in this room before? resident: i don't know what you're talking about. kramer: you know. (he pushes his nose up with his thumb). resident: no. kramer: (still holding his nose up ) this doesn't look familiar to you? resident: uh, sir? kramer: look, i know what's going on. the oink, oink. resident: yes well if you'll excuse me. i really have some patients i have to attend to. kramer: (tough talking) now listen to me you little quack, there was a half man, half pig in that room over there. now where is he?! where is he?! resident: half-what? kramer: you know what i mean - pork, sausage, (a la porky pig) a-deek-a-deek-a- deek th-th-th-that's all folks. resident: i think he's been released. kramer: he's lying. jerry: alright kramer, enough of this. let's go find george. kramer: alright you go ahead. jerry: kramer. jerry: where's the mohel? elaine: he'll be here. jerry: he's late already. elaine: relax. you'd think you were getting whacked. jerry: i don't know why he asked me to be the godfather. we're not even that close of friends. just cause we're on the softball team, i'm the pitcher, he's the catcher he thinks we have a special relationship? elaine: i thought pitchers and catchers did have a special rapport. jerry: well maybe in hardball with all the signals and everything but i'm just lobbing it in. we don't have any conferences. he doesn't come out to the mound and encourage me. elaine: what about me? i mean i just watched a few games with her sitting in the stands. jerry: don't they have any closer friends. they're level jumping on our friendship. elaine: yes it is level jumping. george: so uh... been to a bris before? woman: no. george: i've been to a few of em. if you uh start to get woozy later, which is quite common, stay close to me. i'll get you through it. (chuckles) woman: i'm a cardiologist. i think i'll manage. george: oh. kramer: we're not talking about a manicure. imagine, this is going to be his first memory. of his parents just standing there while some stranger (does some motions of cutting; myra sobs more) cutting off a piece of his manhood and then serves a catered lunch. stan: (seeing myra run away sobbing) myra? elaine: kramer, what's the matter with you? kramer: me? elaine: (to everyone) oh, that's the mohel. all: (adlib) it's the mohel! the mohel is here! thank god, the mohel is here. elaine: hello. mohel: (to elaine) hello, hello (shaking hands with jerry) hello, i'm the mohel. jerry: hello. mohel: (cont'd) (shakes stan's hand) it's very nice to meet you all... (a pan clangs to the ground. the mohel snaps.) oh! what was that?!? jeez. scared the hell out of me. my god. i almost had a heart attack! (the crowd grows uneasy) (calming down) ok, i'm fine, i'm fine. anyway, we're here to perform the mitzvah of the bris... (the baby starts crying) (with increasing tension) ...is the baby gonna cry like that? is that how the baby cries, with the loud, sustained, squealing cry, 'cause that could pose a problem. do you have any control of your child 'cause this will be the time to exercise it when baby is crying in that high-pitched, squealing tone that can drive you insane!!! elaine: did you find the place alright? mohel: did i find it alright? could you send me to a more dangerous neighborhood? i'm dreading walking back to the subway, someone shouldn't crack me over the head and steal my bag, because i'll be lying there and people will spit on me and empty my pockets. i'll be lying in the gutter like a bum, like a dog, like a mutt, like a mongrel, like an animal! god forbid anybody should help me or call an ambulance. oh no, that's too much trouble to pick up a phone and press a few buttons. ahh! what's the point. elaine: (setting down her glass) oh, ya haha. mohel: (to elaine interrupting) darling, you see where that glass is? how that glass is near the edge of the table. you got the whole table there to put the glass, why you chose the absolute edge, so half the glass is hanging off the table, you breath and that glass falls over, then you're gonna have broken glass on the carpet, embedded in the carpet fibers, deep, deep in the shag, broken glass, bits of broken glass that you never get out. you can't get it out with a vacuum cleaner. even on your hands and knees with a magnifying glass, you can't get all the pieces, and then you think you got it all and two years later, you're walkin' barefoot and you step on a piece of broken glass and you kill yourself, is that what you want? i don't think you want that, is it? .. do ya? huh? elaine: (to myra) he's very highly recommended. so... mohel: (to george) you're holding the baby? george: (getting up out of his chair to get out of the mohel's way) no, no. mohel: hello! who's holding the baby?!? who's holding the baby? jerry: (uncertain) yeah. i'm holding the baby. elaine: (pushing jerry over to the mohel) ok, go. jerry: i'm going. elaine: go. jerry: i'm going. elaine: c'mon jerry: don't push me. mohel: okay. you sit here. now i need the baby. bring me the baby. i need the baby! kramer: no, i'm not going to let this happen. all: (numerous voices) kramer! let go of the baby! kramer! mohel: people compose yourselves. (shouting as the struggle ends) this is a bris. we are performing a bris here, not a burlesque show. this is not a school play! this is not a baggy pants farce! this is a bris. an sacred, ancient ceremony, symbolizing the covenant between god and abraham... or something. (the mohel opens his bag to start the process but drops it and his instruments fall out. people attempt to help him out) no! don't touch it! don't touch a thing! elaine: ok. mohel: (muttering to jerry).. i coulda been a kosher butcher like my brother. the money's good. there's a union, with benefits. and, cows have no families. you make a mistake with a cow, you move on with your life... anyway. jerry: hurry up george! step on it! george: alright, alright! jerry: that damn mohel - he circumcised my finger! the mohel circumcised my finger! elaine: you flinched. jerry: flinched? i did not flinch. george, did i flinch? elaine: oh how would he know. he blacked out. he fainted. george: it was very traumatic. the last thing i remember is you flinching. then, everything went black. jerry: who's got a tissues? i need more tissues! look at this thing. it's my phone finger! george: be careful, you're getting blood all over the car. kramer: what about the baby? jerry: oh the baby's fine. they just took him to the hospital as a precautionary measure. but look at me. i'm the one who's hurt. elaine: would you stop it? you're just gonna need a few stitches. jerry: a few stitches? i've never had stitches. i'll be deformed. i can't live with that. it goes against my whole personality. it's not me! george: hey look a that - boy are you lucky - another great spot - right in front of the hospital. in an emergency yet! how lucky are you huh? is that unbelievable? how unbelievable is that huh? come on, give it to me, give it to me. george: i have never seen a mohel like that. jerry: that was a one in a million mohel. elaine: i said i'm sorry. jerry: look at this. kramer: oh you'll be ok. i'll see you later. george: wha, where is he going? jerry: oh well if it isn't shakey the mohel! nice job on the circumcision but it's not supposed to be a finger. mohel: (rejerry) the circumcision was perfect. the finger was your fault! you flinched! jerry: oh who made you a mohel? whadya, get your degree from a matchbook? mohel: (he makes a sudden movement) ya see! he flinched again! jerry: nice mohel picking, elaine. you picked a helluva mohel! mohel: one more peep out of you and i'll slice you up like a smoked sturgeon. jerry: oh don't threaten me, butcher boy. mohel: butcher boy?! jerry: ya what was this? (he imitates mohel's flinching) mohel: what was this? (he imitates jerry) jerry: it was not! elaine: jerry, be careful. the mohel's got a knife! stan: (holding the mohel back) hey, hey what's going on out here? you two should be ashamed of yourselves, both of ya! mohel: ah, blood. elaine: oh, how's the baby? stan: there's nothing wrong with the baby. myra: the circumcision went fine. mohel: thank god the flincher didn't harm the baby. stan: amen. mohel: i will get you for this. this is my business, this is my life. no one ruins this for me. no one! (to elaine) here's my card. kramer: (off screen) outta my way! jerry: (struggling to open a bottle with his bandaged finger) i can't do it. (a la godfather) look what they did to my boy, they massacred my boy. elaine: you really do the worst godfather i ever heard. you're not even close. jerry: (walking over the the buzzer to answer it) oh, that's the flicks. george: (on phone) it's a '76 chevy impala. they stole it right in front of the hospital. i saw the guy drive off in it. well he's about five feet tall, hairless, pink complexion.. (elaine puts her finger on her nose) looks like a pig. yeah, alright alright, thank you, thank you. (kramer enters) so any word from the "pig-man"? kramer: no. george: no. and he's not a pig-man is he? kramer: no, he's not.. just a fat little mental patient. jerry: myra, stan. myra: don't touch him jerry: what's the matter? stan: you're out, jerry. you're out as godfather. you too, elaine. you're both out. elaine: but i didn't do anything. stan: no, no buts. we made up our minds. (turns to kramer) we want kramer. he showed us how much he cares about steven. kramer: (leaving a la godfather) don't ever go against the family jerry. stan: (grabbing kramer's hand) godfather. myra: (grabbing kramer's other hand) godfather. kramer: yes *note: during this closing monologue; jerry's finger is bandaged the same way it was during this episode. jerry: professional tennis. to me i don't understand all the shushing. why are they always shushing. shh, shh. don't the players know that we're there? should we duck down behind the seats so they don't see us watching them? to me tennis is basically just ping-pong and the players are standing on the table. that's all it is. and that goofy scoring, you win one point and all the sudden you're up by 15. two points, 30-love. 30-love. sounds like an english call girl. "that'll be 30, love... and could you be a little quieter next time, please, shh." jerry: are these seats unbelievable or what? george: where's the sunblock? jerry: here. george: 25? you don't have anything higher? jerry: what, are you on mercury? george: i need higher. this has paba in it, i need paba-free. jerry: you got a problem with paba? george: yes, i have a problem with paba. jerry: you don't even know what paba is. george: i know enough to stay away from it. announcer: 30-love george: so are you going to todd's party this weekend? jerry: i'll go if someone else drives. you going? george: gwen really wants to go. jerry: you're bringing a date to a party? george: no good? jerry: a party is a bad date situation. it doesn't matter who you're with. you could be with j. edgar hoover. you don't want to sit and talk with hoover all night. you want to circulate. (makes hand motions) ho, ho, ho. george: why'd you pick hoover? was he that interesting to talk to? jerry: well i would think, with the law enforcement and the cross dressing. seems like an interesting guy. george: yeah i guess. what can i do? i gotta take her with me. todd introduced us, i'm obligated. jerry: that woman is absolutely stunning. george: who, the croat? [the tennis player] jerry: not the croat, the lineswoman. that is the most beautiful lineswoman i've ever seen. george: yeah, she's a b.l. jerry: b.l.? george: beautiful lineswoman. alright listen uh i'm going to go to the concession stand and get some real sunblock. you want anything? jerry? (jerry is staring at the lineswoman) jerry? coworker: you know, i just heard the lexington line is out. elaine: (annoyed) uh, you are kidding me. how am i supposed to get to this meeting? coworker: take a car service. we have an account. elaine: oh forget it, i hate those. everytime i take one, the driver will *not* stop talking to me. no matter how disinterested i seem he just keeps yakking away. blah, blah, blah, blah, blah. why does everything always have to have a social componant? now a stage coach, that would have been a good situation for me. cause i'm in the coach, and the driver is way up there on the stage. coworker: well you're not going to get a cab now. four thirty in the afternoon? read a magazine, keep your head down. elaine: yea, i guess that could work. announcer: and that is it. the match to ms. natalia valdoni. coming up next, mens single, but for now let's stop a minute and take a look at our beautiful tennis center backdrop. kramer: hey, hey, it's george. announcer: holy cow it's a scorcher. boy i bet you that guy can cover a lot of court. announcer #2: hey buddy, they got a new invention. it's called a napkin. we'll take a station break and continue with more action... driver: dag gavershole plaza huh? (elaine ignores him) pendant publishing, that's books right? (elaine is annoyed and still ignoring him) miss? elaine: pardon me? driver: books, that's what you do? elaine: yeah. driver: yeah, i don't read much myself, (elaine is annoyed) well you know besides the paper. yeah a lot of people read to relax, not me. you know what i do? elaine: you know i-i'm having a lot of trouble, um, hearing you back here. so... driver: (yelling) i said you know what i do (elaine is very annoyed) when i want to relax? the jumble. hey uh do you make a book of jumbles? elaine: i'm going to have to be honest with you. i'm going deaf. driver: going deaf? elaine: what? driver: oh i-i-i'm sorry. elaine: it can be very frustrating. driver: hey what about a hearing aid? elaine: am i fearing aids? oh, yeah sure, who isn't. but you know you gotta live your life. driver: no, no i said. ehhh, forget it. (elaine looks pleased) jerry: i can't take my eyes off that lineswoman. the woman is absolutely mesmerizing. george: boy you are really smitten. jerry: i gotta talk to her. what do you think? george: cold? how are you going to do that? you're not one of those guys. jerry: i'm going to psyche myself into it like those people that just walk across the hot coals. george: they're not mocked and humiliated when they get to the other side. jerry: i have to. i won't be able to live with myself. george: wait a minute jerry, there's a bigger issue here. if you go through that wall and become one of those guys i'll be left here on this side. take me with you. jerry: i can't. george: what are you going to say? jerry: i don't know, "hi". george: (laughing) you think you're going to the other side with "hi"? you're not going to make it. radio: base to 92 come in driver: yes this is 92 radio: after this go back to city for a 600 pickup driver: righteo radio: 794 bleeker the party's hanks. tom hanks. elaine: tom hanks? after me you're picking up tom hanks? i love him. driver: so i guess your hearing goes in and out huh? elaine: (realizing he caught her) yeah. yes it does... driver: yeah. you know what i think? i think you made that whole thing up. elaine: no no, no no. driver: yeah yeah, i know your type. you're too good to make conversation with someone like me. oh god forbid you could discuss the jumbles. but to go so far as to pretend you're almost deaf, i mean that is truly disgusting. and mr. tom hanks, may i say he too would be disgusted by your behavior. jerry: excuse me. (woman ignores him) excuse me? (still ignores him) oh that's nice. that's right ignore me. that's real polite. yea nobody's even talking to you. all you big lineswoman. oh you've got some kind of a cool job. i know your type thinking your too good for everyone, but it's women like you (woman turns around and notices him) oh well, what are you deaf? laura: bingo. kramer: and you're saying she's deaf. jerry: i'm not *saying* she's deaf, she's deaf. kramer: can't hear a thing. jerry: can't hear a thing. kramer: and you're going to go out with her. jerry: yeah, isn't that something? elaine: hey. jerry & kramer: hey. kramer: hey i know how to sign. jerry: really? kramer: yeah when i was 8, i had a deaf cousin who lived with us for about a year. (signing as he speaks) so i haven't been able to do it in a while. elaine: what is this about? jerry: i met this deaf lineswoman at the tennis match. elaine: you are kidding. that is amazing. (she pushes jerry, jerry falls back into kramer.) i just took a car service from work and to get the driver to not talk to me, i pretended i was going deaf. jerry: wow good plan. elaine: oh didn't work. he caught me hearing. alright it's terrible, but i'm not a terrible person. jerry & kramer: no. elaine: no. when i shoo squirrels away, i always say "get out of here". i never ever throw things at them and try to injure them like other people. jerry: that's nice. elaine: yeah, and when i see freaks in the street i never, ever stare at them. yet, i'm careful not to look away, see, because i want to make the freaks feel comfortable. jerry: (turning to kramer) that's nice for the freaks. elaine: yeah, and i don't poof up my hair when i got to a movie so people behind me can see. i've got to make it up to this guy or i won't be able to live with myself. what can i do? jerry: why don't you get him some tickets or something, how about that friend of yours that works at the ticket agency. kramer: yeah yeah pete, he can get you great tickets to something. elaine: really? kramer: like a rock concert. whatever you like. elaine: oh great, thanks kramer. kramer: you got it. hey jerry, do me a favor. the next time you see that lineswoman ask her how those ball boys get those jobs. i would love to be able to do that. jerry: kramer, i think perhaps you've overlooked one of the key aspects of this activity. it's ball *boys*, not ball men. there are no ball men. elaine: yeah i think he's right. i've never seen a ball man. kramer: well there ought to be ball men. jerry: all right i'll talk to her. if you want to be a ball man go ahead, break the ball barrier. (elaine drinks straight out of the orange juice container) hey. elaine: hey you know a friend of mine from work said that she saw george at the tennis match on tv yesterday. kramer: yeah, yeah me too. yeah he was at the snack bar eating a hot fudge sundae. he had it all over his face. he was wearing that chocolate on his face like a beard and they got in there real nice and tight. and he's... (imitates scooping up ice cream. elaine and jerry laugh) gwen: i'm sorry george. george: i don't understand things were going so great. what happened? something must have happened. gwen: it's not you, it's me. george: you're giving me the "it's not you, it's me" routine? i invented "it's not you, it's me". nobody tells me it's them not me, if it's anybody it's me. gwen: all right, george, it's you. george: you're *damn* right it's me. gwen: i was just trying to... george: i know what you were trying to do. nobody does it better than me. gwen: i'm sure you do it very well. george: yes well unfortunately you'll never get the chance to find out. jerry: but i thought things were going great. george: yeah so did i. jerry: did she say why? george: no. she tried to give me the "it's not you, it's me" routine. jerry: but that's your routine. george: yeah. well aparently word's out. kramer: hey, georgie, i saw you on tv yesterday. george: really? at the tennis match? kramer: yeah you were at the snack bar eating a hot fudge sundae. george: get out of here. i didn't see any cameras there. kramer: oh, the cameras was, vrooom, there. the announcers, they made a couple of cracks about you. george: cracks? what were they saying? kramer: that you had ice cream all over your face. they were talking about how funny you looked. george: oh my god, maybe gwen saw it. maybe that's what did it. kramer: well i'll tell you it wasn't a pretty sight. george: she must have seen me eating it on tv. jerry: so she sees you with hot fudge on your face and she ends it? you really think she would be that superficial? george: why not. i would be. jerry: hello... oh hi dad... you saw him?... really with the ice cream?... all right i'll talk to you later, bye. george: you're parents saw me on tv? jerry: yeah. george: this is nighmare. kramer how long was i on? kramer: it felt like 8 seconds. george: one-one-thousand, two-one-thousand, three-one-thousand. elaine: i heard you *really* inhaled that thing. did anyone tape it? george: can we move on? jerry: he thinks gwen broke up with him because she saw him eating the ice cream on tv. elaine: oh come on. if she's that superficial you don't want her. george: yes i do. elaine: so i guess you're not going to todd's party on friday. george: well i can't now, gwen's going to be there. kramer: well she should be the one that shouldn't go. jerry: well if a couple breaks up and have plans to go to a neutral place, who withdraws? what's the etiquette? kramer: excellent question. jerry: i think she should withdraw. she's the breaker, he's the breakee. he needs to get on with his life. elaine: i beg to differ. jerry: really. elaine: he's the *loser*. she's the victor. to the victor belong the spoils. jerry: well i don't care, i don't want to go anyway. i don't want to fight that traffic on friday night. elaine: well we can take the car service from my office. jerry: really? elaine: yeah, they don't know. kramer: all right, i'll see you later. jerry: okay. kramer: (while eating a banana) hey georgie. george: "to the victor goes the spoils." what are you going to do tonight? jerry: oh i got a date with laura the lineswoman. george: oh. (he stands there) jerry: why? (george fiddles with the lock on the door.) well what are you doing? george: well i was just going to wander the streets. don't wanna tag along with you or anything. jerry: oh, uh, do you want to come with us? george: jerry please, that's very nice, but, uh, (closes the door) where would we be going? george: so, i've got ice cream all over my face. there were no napkins there. whoever it was that's responsible for stocking that concession stand cost me a relationship. laura: they never have napkins there. jerry: let's get the check. (waves in the air) is this uh considered signing? do you do this when you want the check? laura: (does the same thing jerry is doing) yea. jerry: really. i know a sign, that's my first sign. laura: uh, oh. that couple is breaking up. george: they're breaking up? how do you know? jerry: she reads lips. george: what are they saying now? laura: "it's not you, it's me." george: (holding his drink up to his mouth) oh my gosh, i just had a great idea. she could come to the party tomorrow and read gwen's lips for me. jerry: (puts his hand over his mouth) what? george: (puts nuts into his mouth, and in the process covers his mouth) we bring her to the party, and she can tell me what gwen is saying about me. jerry: (holds his drink up to his mouth) she's not a novelty act, george. where you hire her out for weddings and bar mitzvas. george: (puts his hands on his face, rubbing his eyes) look. it's a skill, just like juggling. she probably enjoys showing it off. jerry: (puts his napkin over his mouth) i don't know george. i'm not sure about this. george: (puts his arms in the air, stretching, and covers his mouth with an arm) could you ask her, just ask her. if she says no, case closed. jerry: (puts his hand on his chin over his mouth) all right. jerry: uh laura, george was wondering if... laura: sure. i'll do it. jerry: so i really had a good time. laura: yeah, me too. jerry: so you want to go to the party on friday night? laura: yeah. jerry: all right, we're taking a car service. so we'll swing by and pick you up. how about six? (laura looks offended). six is good. (laura looks offended and angry). you got a problem with six? (laura opens the door and gets out). what? what? man: okay listen up people. there are plenty of you here, but we've only got two spots to fill. good luck. boy: (to kramer) hey pops, isn't there a better way to spend your twilight years? kramer: i may be old, but i'm spry. boy: the tryout lasts three and a half to four hours. are you up for it? kramer: oh i'll be up for it punk. jerry: see i was saying "six" but she thought i was saying "sex". we straightened the whole thing out though. george: she confused "six" with "sex"? jerry: yeah. george: well if she can't tell "six" from "sex" then how is she going to lip read from across the room? jerry: well "six" and "sex" are close. george: it's two completely different sounds. "ih" and "eh". jerry: eh. george: it seems like a problem. jerry: well i'm not dating any other deaf women. kramer: hey guess who's going to be the new ball man for the finals. jerry: you're kidding. kramer: yeah. they said they haven't seen anybody go after balls with such gusto. george: oh, when is that car service coming? jerry: in five minutes. he's then going to pick us up, then we're going to pick up elaine, and laura is going to meet us there. george: if this lip reading thing works tonight do you know how incredible this is going to be? it's like having superman for your friend. jerry: i know. it's like x-ray vision. george: if we could just harness this power and use it for our own personal gain, there'd be no stopping us. newman: hey, hey, hey. (to jerry) i hear you've got some lip reader working for you. you gotta let me use her for one day. just one day. jerry: can't do it newman. newman: but jerry, we've got this new supervisor down at the post office. he's working behind this glass. i know they're talking about me. they're going to transfer me, i know it. two hours, give me two hours. jerry: it's not going to happen. newman: (sinister) all right, all right. all right you go ahead. you go ahead and keep it secret. but you remember this. when you control the mail, you control... information. jerry: uh just pull over right there by the stop sign. driver: (the same driver as before) pardon me sir? jerry: i said pull over by the stop sign. driver: i'm so sorry, you'll have to forgive me. i can't hear a damn thing. i went to that rock concert last night at the garden. my seats were right up agains the speaker. it's a heavy metal group. metalla-something. kramer: -ca. driver: huh? george: what? jerry: ca. george: ah. driver: my ears are still ringing. some woman's idea of a joke. driver: get out. get out. go on. hey. shut the door. jerry: you know the whole idea of taking the car service was so i wouldn't have to fight the traffic on friday night. jerry: i know. i'm late. hey now i know two signs, (puts his hand in the air) check, and (points to his watch) late. hey this is the guy you helped become the first ball man. laura: congratulations. kramer: she doesn't know what she's talking about. todd: guys you made it. george: hey hey. todd: (to george) hey buddy. jerry: hey todd. todd: sorry to hear about gwen. george: why? did she say something to you about why she broke up with me? todd: oh no. tonight will be the first chance i've had to talk to her. george: really? todd: look george, i'm friends with both of you. but i can't betray her confidence by telling you anything. george: i wouldn't hear of it, todd. it's none of my business. but you should try to find out everything you possibly can. in fact, i'll even stay all the way on the other side of the room just so there's no chance of me overhearing anything. todd: you are so centered. george: hey, grown-up. (they both chuckle, george notices gwen enter the room) oh my god, there she is. go ahead, go ahead. (to the others) let's go, let's go. all right what are they saying? kramer: "hi gwen, hi tide." jerry: hi tide? kramer: hi todd. kramer: "you've got something between your teeth" george: wheret? kramer: no that's what he said. "that's interesting. i love carrots, but i hate carrot soup. and i hate peas, but i love pea soup." so do i. elaine: she's so wild. can i borrow her for a few hours tomorrow afternoon? jerry: no. if i lend her to you i'll have to lend her to everybody. gwen: i don't envy you todd. the place is going to be a mess. todd: well maybe you can stick around after everybody leaves and we can sweep together. kramer: "why don't you stick around and we can sleep together." george: what? kramer: "you want me to sleep with you?" todd: i don't want to sweep alone. kramer: he says "i don't want to sleep alone." she says, oh boy, "love to." george: alright that's it. (george walks across the room over to them.) so you get rid of me and now the two of you are going to sleep together? gwen: what? you're crazy. kramer: "what? you're crazy." george: i heard your whole conversation. gwen: how? kramer: "how?" george: (looks back to the group) i can read lips. you said let's sleep together. gwen: no i didn't. i said "sweep". let's sweep together, you know with a broom. cleaning up. kramer: "... with a broom, cleaning up." george: sweep? gwen: yes sweep. kramer: "yes sweep." george: cut it. kramer: george says "cut it." george: cut it. kramer: george is saying "cut it." george: cut it. (goes back to the group) (yelling) would you stop signing? kramer: what? george: she said "sweep together" you idiots, not "sleep together." kramer: i know how to sign. george: ow. my eye, my eye. elaine: it's so amazing getting to see monica seles playing in the finals. jerry: i know and on the first tournament of her comeback. jerry: thus ends the great ball man experiment. driver: (the same driver as before) you with the tennis center? laura: yep. driver: hey how about that ball man injuring monica seles. wasn't that something. laura: i'm deaf. driver: oh. (very suspicious look on his face.) jerry: i've always been a big fan of the little check move. you know (does the motion for the check) check, check. unless the waiter isn't too shape then you gotta total it up. sometimes they come over, "do you want the check?" no i wanna be pen pals, can't you see what i'm doing here? i'm trying to be cool and impress people. elaine: hmm! george: fantastic! jerry: i told ya. how good is this? george: good. jerry: how good? george: very good. jerry: i know it. elaine: they put real blue berries in this. and there's real blue berries. what kind did you get? jerry: coffee. and they grind up the coffee beans, and put it in. elaine: let me test-taste that. (tastes jerry's yogurt) jerry: huh? huh? elaine: hmm! rico! jerry: suave! and it's non-fat! george: ya-see, how could this not have any fat? it's too good. elaine: (offering her yogurt to george) you want to taste mine? george: (offers his) oh, you want to taste mine. elaine: no, i don't. george: lo..k, if you want to taste mine, you don't have to offer me some of yours. elaine: all right, let's just forget it. jerry: you know, kramer's gonna clean up on this place. george: what do you mean? jerry: he invested in it. george: no kidding? jerry: yeah. we've been coming here everyday. this is so fuck(bleeped)ing good. maryedith: jerry! jerry: oh, i'm sorry. elaine: all right, we should get going. but, i'm going to get a little bit more, okay? george: oh, god. look who's here. jerry: who is it? george: this guy from my old neighborhood. lloyd braun. he's a big advisor to mayor dinkins. he thinks he's so cool. jerry: oh, oh.? lloyd: hey, george! george: hey-hay! lloyd! hey! my friend jerry eh. lloyd: hi. jerry: hi. lloyd: so, i hear you're living back home now, is it? george: yeah, there was a fire in my apartment. lloyd: fire! whoa! there's a lot of major chicks in this place, huh? (george nudges jerry with his right arm) something wrong with your arm? george: uh, uh, yeah. actually, the, uh, i-i bumped my elbow on a desk and uh injured something an.. now it sort of moves involuntarily. lloyd: wow, that's a bitch, huh? so, how are your parents doing? george: oh, pretty good. lloyd: this place does some business, huh? george: yeah, this is my first time here. (nudges jerry again) lloyd: hey, she's a doll. (looking at elaine) elaine: hi! george: uh, elaine, this is, uh, lloyd. elaine: hi! lloyd: oh, hi! very nice to meet you. elaine: nice to meet you, too! lloyd: well, i'm really sorry i gotta run now. (sets down his cup of yogurt and makes his way out) well, take it easy, huh, george? george: yeah! yeah. elaine: (excited about lloyd) aaah. boy, he is really cute! george: he's a jerk. (nudges to his right but no one is there) jerry: he's gone, george. george: all right. all right. kramer: so, there were a lot of people there, huh? jerry: oh, man, that yogurt place - you're going to make a fortune. kramer: yeah. jerry: they're doing an incredible business. kramer: yeah, well, i told you to go in on it. jerry: how did you know? kramer: well, i tasted it at the one downtown. it's got a remarkable texture. you'd never know it was non-fat. jerry: (answering the buzzer) yeah? elaine: (on the buzzer) buzz me. jerry: hey, i had the show of my life last night. i ad-libbed like ten new minutes. kramer: yeah, but did you tape it? jerry: (pulling out a tape from his pocket) vvvvup. right there. i got it. i did this thing on the ottoman empire. like, what was this? a whole empire based on putting your feet up? kramer: yes! jerry: i'm telling you, i got like a whole new tonight show here. elaine: hey! kramer: hey! jerry: what's the matter? elaine: oh, i was having lunch, and i bit down on the fork. jerry: boy, it's hard to believe - with all that biting experience - a person could still make a mistake like that. kramer: (sort of falling backwords) yowm! elaine: what? kramer: well, you're getting heavy. elaine: (quietly) what? kramer: yeah, you look like you put on (holds his hands out) five, (holds his hands wider) ten pounds. jerry: kramer! kramer: i'll tell you something else, you're looking a little chunky yourself, buddy. jerry: me? kramer: yeah. jerry: no. elaine: where's your bathroom scale? (jerry looks at her like 'where do you think?' elaine and jerry both go into the bathroom) oh my god, i've gained seven pounds. jerry: i've gained eight. kramer: i told ya. elaine: oh, my god! a couple, but 7 pounds. how did i gain 7 pounds? jerry: how did i gain eight? elaine: i don't get it. i, i've been doing the same exercises. i haven't been eating anything different. jerry: me, either. wait a second. wait a second. maybe it's that yogurt. kramer: no, no, no. that's hundred percent non-fat. jerry: well, how else could this have happened? kramer: well, maybe it's the oreos. elaine: i don't eat oreos. kramer: you don't eat oreos? (acts out eating oreos) the way you break them open? you're (does a bunch of licking motions) ~ practically having sex with them. jerry: what about me? kramer: you? you're getting old. jerry: maybe your yogurt isn't so non-fat. kramer: oh, guess again, tubby! elaine: jerry, there's got to be a way to find that out. jerry: there must be some kind of lab that would do that kind of thing. elaine: ah! i've got it. kramer: what? elaine: i'll call the food and drug administration. kramer: hey, i'll tell you what, chubs, if that yogurt has fat in it, i will put myself on an all-yogurt diet for a week. jerry: well, let's start the insanity. kramer: nnnn-giddy-up! frank: tommy tune is a very good dancer. (hits george on the head with what seems to be the tvguide) you ever see tommy tune dance? george: no. estelle: i like tap dancing. frank: tap dancing. anyone can tap dance. it's all in those shoes. estelle: are you kidding? they practice for years, those people. george: what's for supper? estelle: somebody's at the door. frank: tommy tune is very tall. that helps. it makes him lankier. estelle: (answers the door) lloyd? lloyd: hello, mrs. costanza. estelle: georgie, lloyd braun is here. frank: hey! lloyd! estelle: what are you doing here? lloyd: well, i was just in the neighborhood visiting my mother so i thought i'd drop by and say, "hello". estelle: georgie. come here and say hello. frank: how are you doing, lloyd? i hear you're a big advisor for dinkins now. lloyd: that's right. hey, george. george: hey, lloyd. (shakes hands with lloyd) how's it going? (chuckles) lloyd: i uh ran into george yesterday in the city. estelle: ow! (hits george on the forehead) what's the matter with you? lloyd: so, uh, how's the arm, huh? george: oh, it's good. estelle: what's the matter with your arm? george: nothing. lloyd: oh, his arm moves like this. (does the nudging motion) frank: your arm moves like this? (does the nudging motion) george: yeah. frank: (continues to move his arm) i never seen your arm move like this. estelle: me, either. george: well, it comes and goes. frank: it's like some kind of aaaaa (snapping his fingers) spasm. lloyd: ooh! i asked mr. dinkins if he knew any good orthopedists, and he said he had the best. (hands george the doctor's card) so, i made an appointment for you. dr. dekter. estelle: mayor dinkins got an appointment for him? frank: you mentioned george's name to mayor dinkins? you discussed george with the mayor of new york? estelle: dinkins was talking about you. he was discussing you. george: you know, lloyd, i-i've been to the doctor (hands george the card) there's really nothing they can do. frank: (grabbing the card) hey, mayor dinkins set this up for you. you know what kind of a doctor this must be if dinkins knows him? george: all right. all right! i'll go. lloyd: well, that's great. (grabs the card back from frank and hands it to george again) and, uh, i'll be very interested to hear the diagnosis. elaine: uh-huh. okay, well, we're coming down. all right. (hangs up the phone) okay. i got a place that can analyze it. it's in brooklyn. we have to drive there. jerry: and they said they can do it? elaine: yeah, it's forty-five bucks. jerry: all right. let's go down to the yogurt store, and we'll get a specimen. elaine: hm-hmm. maryedith: well, i hope you're satisfied. jerry: what? maryedith: every word out of my son's mouth now is *beep*(fuck), *beep*(fuck), *beep*(fuck). (jerry half turns and puts his head done for a second) you know what he said to me five minutes ago? where's my *beep*(fuck)ing cupcake? jerry: gee, i'm really sorry. maryedith: he wants to be like you because you're a comedian. maybe you could talk to him? jerry: i'd be happy to. maryedith: thank you. jerry: ah, mary, we've been eating a lot of your husband's uh yogurt at the yogurt place - does that have any fat in it? maryedith: no *beep*(fuck)ing way! lloyd: well, it was very nice seeing you again. estelle: oh, it was good seeing you. lloyd: oh, um, by the way, who was that gorgeous woman i saw you with the other day? george: oh, uh, just a friend of mine. estelle: you must mean elaine. isn't she adorable? lloyd: she is. she is. how about giving me her number? george: oh, you know, lloyd, i really don't have it. estelle: she works at pendant publishing. elaine benes. lloyd: oh, great. (nudges george on the chin) thanks a lot! george: yeah! lloyd: buh bye. estelle: bye! (lloyd leaves) oh, that lloyd braun. he is something, isn't he? newman: well, i wouldn't hear of it. i said, "nice try, granny!" and i sent her to the back of the line! jerry: hello, newman. newman: hello, jerry. say, this yogurt is really something, huh? and it's non-fat! i've been waiting for something like this my whole life! and it's finally here! owner: hey, seinfeld. i'd appreciate it if you'd stop using obscenities around my son, huh? jerry: it was an accident. i'm going to talk to him. elaine: i want a small, plain vanilla in a cup to go. that's non-fat, right? owner: that's right. elaine: 'cause i'm on a special diet, and the doctor said i can't have any fat. owner: yeah, well, there is no fat. newman: hey, another round of strawberry for me and my friends. elaine: hurry, jerry! hurry! jerry: how's it doing? elaine: not so good. kramer: well, you can't have this tested now. it's melting. jerry: so what. kramer: it changes the molecules. jerry: oh, you don't know what you're talking about. kramer: hey, fatso! i got a 90 in biology. jerry: you call me fatso one more time; you're going to be walking back. elaine: um, hi! hi. i called earlier about getting the yogurt tested. lab technician: oh, right. would you fill this out, please? elaine: uh, does it matter if it's melted? lab technician: no! (jerry looks at kramer) you know, this is going to take a couple of days. elaine: that's okay. kramer: hello, there. cheryl: hello! kramer: ooh! test tubes. cool! jerry: what do you got there? lab technician: actually, this is mr. giuliani's blood. we're doing a cholesterol work up on it. jerry: oh. elaine: okay, i'm done. cheryl: it was really nice meeting you. kramer: well, the pleasure's all mine. jerry: you can't take that chemist out. kramer: why not? jerry: because she's like the jury. she's going to be sequestered. kramer: i'm not taking her out just to influence the results. jerry: well, i think the whole thing stinks. elaine: it smells. smells bad. smells really bad. jerry: that's enough. elaine: what? jerry: with the smelling. george: so, he made an appointment for me to see dinkins' doctor. he's just trying to humiliate me. jerry: uh-huh. george: and i have to go. if i don't go, he'll know i'm lying. jerry: well, so, what are you going to do? sit in the doctor's office doing this? (moves his arm) he's gonna think you're a mental patient. george: i don't care. look, lloyd doesn't know what he's up against. this is nothing to me. (moving his arm) my whole life is a lie. elaine: hey! george: hey jerry: hey. elaine: so, guess who called me. george: oh, don't tell me. lloyd? elaine: we're going out tomorrow night. george: oh, look, he's going to ask you about my arm. so, just tell him i banged it against a desk. and it's been moving involuntarily ever since. elaine: i can't say that. george: why not? elaine: what if i like him? i'm going to start out lying to this guy? george: so, you're taking his side? elaine: no. but what if we get married or something? we'll always have that between us. george: already you're marrying this guy? elaine: you never know. george: all right, believe me, you're not going to marry him. elaine: all right, well, then what if we become a couple, george? every time we see you you're going to be walking around going like this? (moving her arm) even you can't keep that up. jerry: no, i believe he can. maryedith: hi! jerry: hi! maryedith: you know jerry. matthew: of course, he's the funny *beep*(fuck). maryedith: see! jerry: listen, matthew, i-i want to explain something to you. now, cursing is not something that most comedians do. matthew: you did it. jerry: that's true. but it was an accident. and i haven't done it since. and i would never do it again. and if you continue cursing, you'll never become a comedian like me when you grow up. (phone rings) excuse me one second. elaine: you know, lloyd advises dinkins on everything he does. george: yeah, yeah. big advisor. elaine: he tells him which soap to use. jerry: (quickly moves over toward matthew) what the *beep*(fuck) are you doing? you little piece of *beep*(shit)! cheryl: shh! we don't want to disturb the security guard. kramer: where's the lights. whoa! cheryl: how about this? kramer: yeah! bunsen burner. (runs his fingers through the flame) oo ya ya. cheryl: oo. kramer: yaow. cheryl: ha hea. kramer: you want a taste? it's cappuccino. cheryl: it's delicious. kramer: i hear you. cheryl: non-fat? kramer: well, you tell me. is the verdict in yet? cheryl: no. kramer: well, this is in case there's a tie! elaine: well, as far as i know, he bumped his arm into a door and it's kind of got this in(pauses)voluntarily movement. some sort of a (clears her throat) spasm. so, anyway, you're a..you're a big advisor to dinkins, huh? lloyd: yeah, yeah. it's coming right down to the wire. elaine: wow! you know what i would do if i was running for mayor. one of my campaign themes would be that everybody should wear name tags all the time to make the city friendlier. lloyd: name tags, hmm? elaine: well, everybody would know everybody. it would be like a small town. lloyd: maybe i'll mention that to him. elaine: really? wow. lloyd: you sure you don't want any yogurt? elaine: no, i'm watching my weight. lloyd: well, it's non-fat. elaine: yeah, so they say. lloyd: well i'm done, should we go? elaine: yeah. okay. elaine: three days and he hasn't called me, and you know why? because he thinks i'm too fat. jerry: (surprised) he said that? elaine: (stands up straight) no, but i saw the look on his face when he put his arm around me. and then we went to his apartment, and i sat on one of his chairs and it broke. and he says, "boy, you're a lot of woman!" kramer: hey! so, hear anything on the yogurt? jerry: no, but i expect to hear anytime. kramer: well, i wouldn't get your hopes up. jerry: why do you say that? kramer: no reason. oh, did you hear about that dinkins? elaine: no. what about him? kramer: you didn't hear? elaine: un-huh. kramer: he's proposing a plan where everyone in the city should wear name tags. jerry: name tags? kramer: yeah! so people can go around saying "hello" to one another. jerry: oh, i see. so you can go, "hey, you know who i saw wilding today? herb!" kramer: he's become the laughing stock! you know the times has already stated it could cost him the election. (laughing) name tags! jerry: (on the phone) hello? yes. uh-huh. ya. oh, really? okay, thank you very much. bye-bye. (hangs up the phone) well, the yogurt verdict is in. (kramer looks at jerry with his arms out) fat! kramer: yeow! george: the next morning, i woke up, and it was going like this. (moves his arm slowly) i can control it if i really concentrate. but otherwise, (arm moves) oh. doctor: uh huh. yes, well, i'm going to have to be perfectly honest with you. george: please, doctor. doctor: i've examined you. george: yes. doctor: i've looked at your x-rays. george: uh-huh. doctor: and i find that there's absolutely nothing wrong with you. george: hmm. really? nothing? doctor: nothing, that would indicate involuntary spasms. george: well, it's kind of a mystery, isn't it? doctor: no, not really. george: how so? doctor: may i suggest the possibility that you're faking? george: faking? what makes you think that i have time to see doctors, take x-rays, make appointments, when there's absolutely nothing wrong with me? what kind of a person would do a thing like that? doctor: i don't know what kind of a person would do something like that. obviously a very sick person. a very immature person. a person who has no regard for wasting other people's valuable time. good-bye. george: now, see here, doctor. doctor: i said, good-bye. george: fine. (hits his arm on the desk) ow! elaine: jerry, come on, look. let's go over to that yogurt store. jerry: look, elaine, i've been thinking about this. this has got to be a massive conspiracy. who knows how deep it goes. hey, look, wait a second, (looking at the tv) kramer, turn that up. kramer: huh, okay. news: rudy giuliani, who underwent a physical last week, received some startling news today, when his cholesterol count turned out to be a whopping 375. what effect this will have on the minds of the voters remains to be seen. in another development, mayor dinkins has fired his top advisor, lloyd braun, who is believed to be responsible for the name tag fiasco. we now take you to giuliani headquarters where rudy giuliani is about to make a statement. giuliani: it's hard to understand. because i've been doing everything i normally do. i've been watching my diet very carefully. i exercise regularly. my only indulgence, i guess, would be that i eat a lot of frozen yogurt. but it's non-fat. jerry: non-fat yogurt? oh, my god. they got giuliani and he doesn't even know it. elaine: (pointing to kramer) now look what you've done. jerry: well, we've got to do something. (grabs his phone) i'm calling giuliani's headquarters. george: name tags! name tags! what kind of an idiot thinks anybody would be interested in an idea like that. frank: i don't think it's so bad. people should wear name tags. everyone would be a lot friendlier. "hello, sam." "how are you doing, joe?" (george's arm moves and hits the lamp) hey, your arm. it moved again. i thought you said it went away. george: i banged it on the desk in the doctor's office. an (worriedly rubbing his arm) aaaa . . . estelle: be quiet. they're starting the press conference. giuliani: my campaign staff has received some very disturbing information regarding the fat content in yogurt that's being sold throughout the city. i pledge to you now, that if i'm elected mayor, as my first order of business i'll appoint a special task force to investigate this matter. i promise you, my fellow new yorkers, that mayor giuliani will do everything possible to cleanse this city of this falsified non-fat yogurt. jerry: the old yogurt was so much better. oh, this is terrible. george: phew! elaine: oh, it stinks. kramer: mine, too. i got one more day. jerry: i can't eat this. newman: (from the corner of the yogurt shop) hey, jerry. thanks a lot. i hope you're happy. jerry: it had fat in it, it's not good for you. newman: i don't care. it was good. i was enjoying it. had to interfere. couldn't leave well enough alone. well, i will get even with you for this. you can count on it. elaine: hey, you guys, listen to this. listen to this. (reading from the newspaper) apparently some blood spilled into mr. giuliani's test tube causing his cholesterol count to be 150 points higher than was initially reported. ironically, the mishap by bringing the non-fat yogurt scandal to the attention of the public, probably clinched the election for the republican. it was the one issue which seemed to electrify the voters and swept giuliani into office. jerry: so, in effect, the yogurt won him the election. elaine: i wonder what actually happened in that lab. kramer: yeah, me, too. newman: i can't eat this. matthew: (hits jerry to get his attention) thanks for ruining my daddy's business, you fat *beep*(fuck). jerry: the old-fashioned barber shop is unfortunately becoming a thing of the past, now what went wrong? well first of all there's a twenty thousand dollar chair to make a three dollar tip. i say cut back on the chair, update the magazines. why do barbers always display that license? there's no laws in hair cutting, except show every person the back of their head that's the one law. i don't want to see the back of my head. why do i want to see something that i'm never going to see at any other time? when i buy pants two salesmen don't lift me up by the legs and go "how do you like crotch?" if i wanted to see everything i would have been a fly. mr. tuttle: well george we here at sanalac like to think of ourselves as a fairly progressive company. we have a small but prestigious group of clients. george: well a lot of people consider me small and prestigious. mr. tuttle: that's funny george. you're very quick. i feel like i, like i don't have to explain every little thing to you. you understand everything immediately. george: i enjoy understanding. mr. tuttle: i want you to have this job. of course... secretary: mr. zimmer is on line 2. mr. tuttle: thanks. i've got to take this call. listen, i'm really glad that you came in. george: i want you to have this job. of course... jerry & elaine: yeah? george: that's it. jerry: what do you mean that's it? george: he never finished the sentence. he got a call, that was the end of the interview. jerry: "of course" was the last thing he said? george: maybe he was going to say "of course i have to check with my associates." elaine: "i want you to have this job, of course the board of directors is under indictment and will be serving time." jerry: "i want you to have this job, of course sodomy is a prerequisite." george: all right. elaine: why don't you go ahead and call him? george: because he made a big deal about how i understand everything immediately. that's what impressed him. jerry: so if you call and ask if you have the job, you might lose the job. george: and if i don't call... jerry: you might have the job, but you'll never know it. what kind of company is it? george: rest stop supply. elaine & jerry: oh. elaine: good for you. kramer: yeah, yeah, yeah. george: hey jerry: hey kramer: hey. jerry: shower? kramer: haircut. jerry: oh. kramer: i'm very happy with this. jerry: who'd you use? gino? kramer: oh course. i wouldn't let that other butcher cut my hair. elaine: what butcher? kramer: the uncle enzo. that's the guy jerry uses. jerry: well i've been going with him for 12 years. i can't switch. i'd hurt his feelings. elaine: you never get good haircuts. kramer: you can get a good one today. it's enzo's day off. gino's there all by himself. jerry: really? elaine: yeah. you know what, you should go over there and get one to look good for my bachelor auction. kramer: what bachelor auction? elaine: oh it's a thing where they auction off dates with bachelors for charity. kramer: and you didn't ask me to do it? i could raise enough money to cure polio. jerry: i believe they've had a cure for polio for quite some time. kramer: polio? elaine: will you go ahead? you need a haircut. jerry: okay. kramer: what are you all dressed up for? george: i had a job interview. kramer: yeah. how'd it go? george: good. of course... enzo: oh jerry. jerry: oh hi enzo. enzo: oh, you've come for the haircut. jerry: no, actually i was just gonna... enzo: it's my day off, but i take care of you anyway because you're my favorite customer. you've been with me for so long. you're so loyal. jerry: well i, if it's your day off i really... (tries to leave) enzo: (he pulls jerry into the barber chair. jerry is trying to get away but can't.) eh, what's the difference. it takes 10 minutes. jerry, today i'm going to do something special for you. jerry: well i don't want to take too much off. enzo: hey who's your barber, eh? you tell the joke, i cut the hair. man: gino, you've outdone yourself this time. this is the best haircut i've ever had. george: he massacred you. jerry: i know. george: you look like you're five years old. jerry: what if i shampoo? sometimes a shampoo helps. george: you've got to start seeing someone else. get out of this relationship. jerry: i can't. he loves me. he says i'm his most loyal customer. plus he's right there on the corner. i'd have to pass him every day when i go by. george: well, you gotta do it. jerry: i can't, i can't. i'd break his heart. kramer: no way my gino did that. it's an enzo. jerry: he was in the shop. i thought you told me he wasn't going to be there. kramer: so what? jerry: i didn't want to hurt his feelings. kramer: his feelings? you can't continue seeing him. you're destroying yourself. jerry: yea but... kramer: i'm not going to let you. if you don't call him i will. jerry: no, no kramer. i don't want you to do that. you can't do that. kramer: i'm going to call gino, you're going to see him, and we're going to get that haircut fixed up. jerry: i don't want you to call him. kramer: all right, geez. you're crazy. george: so i still haven't heard about that job. jerry: yeah that's a tough one. what are you going to do about that? george: i have an idea. jerry: yeah? george: i show up. jerry: what do you mean you show up? george: i show up. i pretend i have the job. the guy's on vacation. if i have the job, it's fine. if i don't have the job, by the time he comes back, i'm ensconced. jerry: hmm. not bad. george: what's the worst thing that could happen? jerry: well, you'd be embarrassed and humiliated in front of a large group of people and have to walk out in shame with your tail between your legs. george: yeah, so? jerry: yeah, i see what you mean. i forgot who i was dealing with here. george: (to various people as he walks in) good morning. good morning. good morning. hi nice to see you. how are you. good morning. (to the secretary) good morning. secretary: how can i help you? george: the name's george constanza. i'm starting work here today. i was wondering if you could tell me where my office is. secretary: i wasn't aware that, uh, mike, this is george constanza. he's starting here today. mike: welcome aboard. george: thanks mike. nice to be aboard. mike: i wasn't aware that mr. tuttle was finished interviewing. george: oh, well, he was probably just getting anxious to start his vacation. secretary: he wants to know where his office is. mike: oh, ah, let's see, we've got two. there's a big one down the hall there and a small one over here. you know i should ask jack. george: oh leave jack alone. jack's got enough problems. i'll just take the small office. mike: really? george: yes. i like to feel cozy. i have a very small apartment. i like to feel tucked in, nestled in. love to be nestled. mike: all right, it's 808 right down there. meanwhile, i'll get you the pensky file, you can start working on that. george: yes, yes of course. the pensky file. ho ho, can't wait to sink my teeth into that. wow that pensky. well we'll straighten him out. (camera shot at the clock on his wall. the clock says 9: 00.) (a moment later, the clock flips to 5: 00.) jerry: so what did you do there all day? george: they gave me the pensky file. jerry: so it's a nice place to work? george: you know i'm enjoying it very much. i think my coworkers are really taking to me. george: (continuing) i feel like a family. in fact, yesterday was grace's birthday. she's such a sweet woman so, we had a little party, with cake and champagne. i made a toast. jerry: what about your boss? the guys you interviewed you? george: he'll be back on monday. jerry: hi. elaine: hi. how come you're wearing a hat? jerry: i got a haircut. elaine: oh yeah? can i see it? jerry: oh there's nothing to see. elaine: come on. let me see it. jerry: forget it. elaine: come on. jerry: all right. jerry: alright, that's very good. thank you. elaine: (still laughing, tears in her eyes) i'm sorry. i'm so sorry. jerry: well i'll tell you this, you can forget about me going to that bachelor auction. elaine: what? no jerry, you have to go. george: you know elaine, i'd do it but i'm working that day. elaine: (dryly) yeah, too bad. kramer: it the worst haircut jerry's ever had. you gotta fix it. gino: sure, i fix. but you gotta make sure you no tell anybody. he's a little crazy. i don't know what he'd do if he found out i touch jerry's hair. kramer: yeah yeah yeah. gino: (enzo enters) so i love the edward scissorhands. that's the best movie i've ever seen. enzo: oh ah, again with the edward scissorhand. how can you have hand like a scissor, huh? show me one person who's got hand like a scissor. gino: hey, it's a beautiful dream. i'd love to be this man. enzo: did you ever think about what you're going to do on the toilet? (yelling) what are you going to do on the toilet? kramer: i'd like to have shoehorn hands. kramer: hey. jerry: hey kramer: okay listen to me. i talked to gino, he's going to fix the haircut. elaine: oh great, then you can go to the bachelor auction. jerry: yeah, but how am i... kramer: no buts. his apartment tonight, eight o'clock. elaine: can he fix it? kramer: i don't know. gino: boy, you've got a beautiful head of hair. jerry: oh. thank you. gino: i bet uncle enzo, he tell you that all the time. jerry: well actually enzo hasn't said that to me in a while. gino: i don't think uncle enzo realize what a lucky barber he is. jerry: that's nice of you to say. gino: just a second. (answering buzzer) yes. enzo: (over the speaker) it's your uncle enzo. gino: it's uncle enzo. go in there. i'll clean up. gino: uncle enzo, what are you doing here? enzo: i've come to apologize. gino: apologize? enzo: yea. i rented the move edward scissorhands. that johnny depp, he make me cry. gino: he make me cry too. you want something to drink? enzo: hey, what's all of this? gino: nothing. it's just hair. enzo: you do haircut in the apartment? gino: no. pizza man was here. maybe some fall off. he's going bald. enzo: it looks very familiar. jerry: in the one minute he worked on me i could tell he was really good. kramer: yeah. slow, gentle, attentive. jerry: yeah. kramer: i told you he could do it. jerry: enzo picked up one of my hairs off the floor. kramer: yeah, so? jerry: i think he knew. kramer: no. he doesn't know. jerry: who do you know? he knows my hair. kramer: listen you're just imagining things. he doesn't know a thing. now come on. pull yourself together. jerry: okay, okay. elaine: what happened? it looks the same. jerry: he didn't get to finish it. his uncle came in. we almost got caught. elaine: jerry, the auction is in a few hours. jerry: take the k-man. elaine: you can still go. kramer: what are you kidding? look at him. he's grotesque. elaine: you think? kramer: do i think? he's repugnant. elaine: what would you wear? kramer: whatever it takes. enzo: see, now newman is a good customer. newman: once i find a barber i stick with him. i almost went to barber school. i always felt i had a talent for it. enzo: oh, not everybody like newman, so loyal. newman: yeah, just the way that i was raised. i'm special. enzo: you know i don't mind if somebody's funny, but i no like the funny business. gino: i'm going to go out for a little bit. i'll be right back. enzo: take your time. (gino leaves) you happy with the haircut? newman: it's okay. a little crooked. enzo: how'd you like to have free haircut for six months. newman: what's the catch? enzo: you're going to get me a sample of jerry's hair. newman: hmm, that job sounds like it might be worth a year's free haircuts. and a comb. secretary: (over the speaker) mr. costanza, mr. pensky is here to see you. george: mr. pensky? of the pensky file? pensky: costanza? arthur pensky. george: mr. pensky. i was just working on your file. i was transferring the contents of the file into this flexible accordion-style folder. pensky: where's tuttle? george: he's on vacation. pensky: he was on vacation the last time i dropped by. give me my file. (looks through the file) looks like you put a lot of work into this. george: well you know in college they used to call me the little bulldog. pensky: hey, you are pensky material. would you ever consider coming to work directly for me? george: really? pensky: you are aware... secretary: (over the speaker) mr. castanza? george: not now florice. secretary: (speaker) i thought mr. pensky should know they're towing his car. pensky: damn this city. george: i am aware. i am aware. gino: he knows. he knows about us. jerry: how do you know? gino: because i know. he's crazy. all morning, he looking at the hair. he staring at the hair. jerry: who is it? newman: it's newman. gino: he was in the shop with enzo. he can't see me here. jerry: all right, go in the bedroom. open the window. you can go out the fire escape. jerry: what do you want? newman: (dancing) can i use your bathroom? jerry: what's wrong with yours? newman: my toilet's clogged. jerry: you can't unclog it? newman: no. jerry: did you ask kramer? newman: he's out. jerry: number one? newman: yes, yes. may i go? cause i gotta go very badly. jerry: all right. flush twice. newman: (thinking to himself; checks a comb) no. (checks a brush) jackpot. i don't believe this. there's no hair in this thing. i've never seen a person that didn't have at least one hair in a brush. jerry: all right? newman: yeah, yeah. jerry: all right, i'll see you later. newman: what are you doing? jerry: i'm watching edward scissorhands. newman: oh, can i watch a little? cuz it's my favorite movie. jerry: yeah all right. jerry: you want something to drink? newman: no. no. jerry: if you want to watch, sit down. you're making me nervous. i tell you this scissorhands is a hell of a barber. newman: gotta go. oh gee, i dropped a nickel (reaches down and picks up the hair.) enzo: did you get it? (comparing the hairs) oh you done good newman. newman: it was a cinch. where are you going? enzo: io volgio vandetta. elaine: nine hundred. do i hear a thousand? ladies, he is a harvard graduate. woman: a thousand. elaine: a thousand. okay, a thousand once, a thousand twice, a thousand three times, sold to the lucky lady in the third row. congratulations, thank you so much. elaine: okay next bachelor is number, um 124 on your program. he's uh, he's a high school graduate. kramer: equivalency. elaine: oh, uh equivalency. a high school equivalency program graduate. (kramer dances up and down the stage) he's uh, self-employed. he's... i don't know, six foot three, 190 pounds, he likes, uh... fruit, and he just got uh, a haircut. elaine: oh, kramer. okay uh, why don't we start the bidding. do i hear, um, five bucks? jerry: i don't get this scissorhands. what, is he supposed to be like a super hero, like green lantern or somebody? what's with this guy? (gino looks at him annoyed) just asking. jerry: who is it? enzo: (yelling) enzo manginero. jerry: oh my god, he knows. (jerry and gino scrambling) go. (yelling to the door) one second. enzo: it was you that was in gino's apartment the other night. jerry: no i wasn't there. (enters and slams the door) enzo: don't lie. i know it was you. i get a sample of your hair. i match them up. jerry: sample? (under his breath) newman. uh, i was there but i was just dropping off a book. gino: don't jerry. enzo: so, it's true. gino: yes it's true. enzo: i'm going to kill the both of you. george: mr. tuttle, you're back. tuttle: george, i'm surprised to see you here. george: you are? tuttle: i thought you would have taken the large office. george: oh. really. tuttle: i guess i didn't make that clear when i hired you. so where's that pensky file? let's see what you've been up to all week. george: ah, here it is. tuttle: (pages through the file) what have you been doing all week? george: well you missed a lovely little party that we had for grace. tuttle: you haven't done anything with this. george: well bear in mind that i am in the smaller office. tuttle: i'm beginning to wonder if you understand anything. george: you are aware that pensky is interested in me. tuttle: (scoffs) you're not pensky material. george: (chuckles) really? well, we'll just see about that. ta-ta, tut-tle. pensky: gee george, i'm sorry i gave you the wrong impression. what is was going to say was, now you are aware that our board of directors has been indicted, myself included, and we're prohibited from doing business until the investigation is completed. so obviously, we would have no use for you. george: obviously. pensky: yes. secretary: (over the speaker) excuse me, but mr. costanza's car is being towed. kramer: (on the phone in jerry's apartment) so when are you gonna be able to go out? newman: (on the phone in his apartment with a bald head) not for a while. [setting: night club] jerry: if there's a serial killer lose in your neighborhood, it seems like the safest thing is to be the neighbor. they never kill the neighbor. the neighbor always survives to do the interview afterwards. right? "oh, he was kind of quiet." i love these neighbors. they're never disturbed by the sounds of murdering, just stereo. chain saws, people screaming, fine. just keep the music down. and all these women who always fall in love with the serial killer. they write to him in prison. here's a woman that's hard to disappoint. i guess she's only upset when she finds out he's stopped killing people and she goes "you know sometimes i feel like i don't even know who you are anymore". [setting: elaine's office and jerry's apartment] jerry: no eight years isn't such a long streak. elaine: it isn't? jerry: no i haven't vomited in thirteen years. elaine: get out! jerry: not since june 29, 1980. elaine: you remember the date? jerry: yes, because my previous vomit was also june 29th... 1972. that's why during the '80 vomit, i was yelling to george "can you believe it? i'm vomiting on june 29th again." elaine: boy, you know when joel told me he hadn't thrown up in eight years, i was wondering if he was normal. jerry: no elaine he's normal. your boyfriend is a normal guy. he just happens to have the same name as one of the worst serial killers in the history of new-york. elaine: yeah... (2 co-workers enter elaine's office) oh jer, i gotta go. i gotta go. (she hangs up) joanne: hi, we just saw your boyfriend at a bus stop. elaine: oh, yeah? joanne: yeah. what's his name? elaine: joel... joanne: joel what? elaine: uh... (clears her throat) rifkin. michael: rifkin? joel rifkin? elaine: yeah. it's just a coincidence obviously. michael: guess you better keep on his good side. elaine: very funny. that's very funny. joanne: i wouldn't sleep with my back to him if i were you. elaine: all right. well that's enough of that. that's enough. michael: hey elaine listen. if you smell anything decaying in the trunk of his car... elaine: (she's upset, gets up and yells) ok look this is my boyfriend we're talking about ok? and he's a gentlemen, he's good looking, he's a good shaver and he hasn't thrown up in eigth years so just shut up about him! shut up! [setting: jerry's] elaine: the whole city is talking about this monster joel rifkin, and i am dating a joel rifkin. jerry: but you like your joel rifkin. elaine: yeah. i just wish he has a different name. jerry: ask him to change it. elaine: you can't ask a person to change their name. jerry: why not? elaine: would you change yours? jerry: if someone asked me nicely. i'm claude seinfeld. elaine: hey, how many people did rifkin strangle? eighteen? jerry: yeah. eighteen strangles. kramer: you know why rifkin was a serial killer? because he was adopted. (saying it as he's taking a lot of paper towels from jerry's roll; elaine and jerry are confused at kramer's statement) just like son of sam was adopted. so apparently adoption leads to serial killing. (kramer leaves and we don't know why he needed so much paper towels) elaine: you know joel and i have an extra ticket to the giants game. kramer: i'll go. elaine: o.k. i'll leave the ticket for you at will call. kramer: yeah! ooh! (leaves again) elaine: you think i should have asked george? jerry: hey did you hear that george got back with karen? elaine: karen? jerry: risotto. (we see a flashback from the mango where karen tells george that she feels full after a risotto, as opposed to when she has sex with him) elaine: oh! the risotto broad. jerry: yeah. he's really got a good thing with her. in fact i'm doubling with them tonight. elaine: i tought you didn't like double dates. jerry: george likes them, he feels it's a good personality showcase. he likes a date to see him with a friend so she can get a window into his nondate personality. elaine: i've looked through that window and screamed at him to shut the blinds. jerry: he feels he's funnier, more relaxed. elaine: and you're taking... jerry: jody the masseuse. elaine: hey, did you get a massage yet? jerry: no! how many times do i have to go out with her before i get a massage? elaine: jerry, she gives massages all day. she doesn't wanna to give them on dates. jerry: yeah i know... she just wants to have sex. elaine: so what? jerry: so it's like going to idhao and eating carrots. i like carrots, but i'm in idhao, i want a potato. [setting: the chinese restaurant (the same as in 'the chinese restaurant')] george: (george is telling a story. karen is laughing and she seems to be the only one to find him funny) so i go into this clothing store and the saleswoman is wearing this (whistling) low cut thing. so i said to her "can i ask you a question? when you put on a top like that, what's your tought process? what's going on in your mind?" karen: that is so funny. george: (to jody) you're listening to this? jodi: yeah. i heard you. jerry: (to jody) my neck is killing me. right in this spot. very tender over here. jodi: (to george) so what did she say? george: well nothing. i didn't actually say that. (karen is still laughing) jodi: you just said that you said it. george: sweetheart, i was exaggerating. karen: i'm learning a lot about you tonight george. i've never seen you like this. jerry: (touching the back of his neck) it's like somebody's pulling on wires back here. george: you know it's like you never see a really attractive woman getting a traffic ticket. jodi: how can you say that? my sister got a ticket last week. are you saying she's not attractive? george: well i've never met your sister but obviously these are not hard-and-fast rules. (to the waitress) darling, the tea is getting a little cold sweetheart. jodi: (to jerry) can we go? jerry: yeah. let's go. karen: so soon? (they get up) jerry: yeah. good seeing you again karen. karen: yeah. jodi: nice meeting you karen. karen: yeah. nice to meet you too and i'm gonna call you about that massage. jodi: oh yeah. george: jody let's do this agian real soon (he tends his arms for a hug but she avoids him) jodi: yeah. (she and jerry walk away) [setting: jerry's place later that night] jerry: i strained my neck last night. jodi: really, how? jerry: i tried brushing my teeth by holding the brush and moving my head from side to side. it didn't work. jodi: so what's the deal with your friend george? jerry: no deal. why? jodi: what was all that "attractive women not getting tickets" nonsense? jerry: oh well, he was just showcasing his nondate pesonality. jodi: i don't know how you can hang out with that guy. jerry: yeah. sometimes he really makes me tense (he takes jody's hand and put it on his shoulder) jodi: did you see the way that he was eating? jerry: yeah, he's disgusting. (putting her hand back on his shoulder. she unconsciously starts to massage a little while watching tv) jodi: i have to tell you, i really don't like him. jerry: yeah, me either. (he takes her other hand and put it on his other shoulder) jodi: it's just i hate that type. jerry: yeah, he's a bad seed. jodi: now you however, you, i like. (she stops massaging and kisses jerry) jerry: what are you doing? jodi: what do you think i'm doing? (he won't get his massage...) [setting: the chinese restaurant] george: so, what do you think? karen: really enjoyed it. george: jody's nice. karen: she's very nice. (grabs george's hand) let's discuss this later. george: you think she liked me? she seemed to like me. karen: yeah george: i was personable. don't you think i was personable? karen: you were extremely personable. george: i tought i picked up a little something. i'm very good at this. did you pick up anything? karen: i didn't pick up anything. george: the second time i sent the noodles back, i tought she made a face... karen: i didn't see a face. george: i tought i saw a face. karen: anyhow, what is the difference? george: no difference. i could care less. she's jerry's girlfriend. karen: george, george, instead of talking about this, we could be... you know... (she makes a move with her head like george did in 'the mango' while saying "instead of the movie...") george: he he he he karen: ah ah ah ah george: so you think she likes me? [setting: elaine's place] elaine: (as he touches her) uhh! what are you doing? joel: massaging your neck. elaine: oh. huh. of course. massaging. joel: uh, boning up on football? (talking about the magazine she's reading as he sits beside her) elaine: yeah, yeah. you know what? there are a lot of players named deon these days. what a cool name, deon. if i were gonna change my name, i'd go with deon. joel: deon benes? elaine: well as a woman, it makes no sense. but, i mean, let's say i was you. and i decided i was gonna change my name for no real reasons whatsoever-- deon rifkin. wow! that is so cool. joel: d-deon rifkin? elaine: well maybe you're not the dion type. o.k. then let's see, let's see, what do we got? (looking at the magazine, she starts to gasp and loses it) oh! oh oh oh! o.j.! o.j. rifkin! you don't even use a name, it's just initials. oh please please please change your name to o.j.! please, it would be so great! joel: elaine! what is going on? [setting: monk's] george: she stayed over? jerry: yeah. (disappointed) george: the sex wasn't so good? jerry: no. the sex was fabulous. george: so? jerry: i want the massage! george: did you ask her? jerry: i tried putting her hands there (on his neck) but she pulls it away immediately, she's not into it. george: why not? jerry: i guess 'cause it's her job. it's very frustrating. george: so we had a good time... the four of us. jerry: yeah. george: we all got along. everyone seemed very pleasant. jerry: yeah. george: what did jodi say? jerry: she had a good time. george: is that it? jerry: pretty much. george: did she say anything about, uh... jerry: what? george: nah. it's all right. great! she had a good time. jerry: yeah (a so-so yeah as he takes a sip of coffee) george: you just hesitated. jerry: i was blowing on the coffee. george: she didn't like me? jerry: look it's not like you're gonna be spending a lot of time with her. george: so she doesn't like me? jerry: no. george: she said that? jerry: yes. george: she told you she doesn't like me! jerry: yes. george: what were her exact-- jerry: "i don't like him." george: uh-huh (gulp) why didn't she like me? jerry: not everybody likes everybody! george: i tried to be nice. i wasn't nice? jerry: you were very nice! george: i bent over backwards for that woman! is it that thing i said about her sister? jerry: it has nothing to do with her sister. george: i don't even know her sister but believe me, if she's getting traffic tickets, she's not that good-looking! woah [setting: hall in jerry's building] george: you vomited in 1987. jerry: oh no. that was the dry heaves. jerry: jodi. jodi: hey, jerry. george: ha! ha! hey! (moving his arms like it's so great to be all here) jerry: what are you doing here? jodi: i was giving kramer a massage. jerry: kramer! (tries to hide he's upset and jealous) jodi: i got to run. i have an appointment downtown. george: here. let me take your tabe downstairs for you. jodi: no that's o.k. george: please give it to me. i love to help people. this is what i do. come on. i'm going this way. (he takes the table from jodi's hands and she has no choice but to follow him) jerry: i'll see you tonight. (he's opening his door apartment as kramer comes out of his in a bathrobe) kramer: hey! i am looser than creamed corn! jerry: who told you to get a massage from her. i haven't gotten a massage from her yet! kramer: you don't know what you're missing buddy. [setting: street in front of jerry's building] george: no one hails a cab like me. my hailing technique is unmatched. i get the wrist going from side to side and boom! cabs are crashing into themselves to just pick me up. (a cab stops) all right, here we go. let me get door. feminists aside, i know women like the door holding. here we are all righty. o.k. jodi let's get together again real soon and say hello to your sister for me. jodi: you've never met. (the cab starts and george is following to keep talking to jodi) george: whatever. believe me, if i wasn't involved right now, i wouldn't mind being set up. something tells me she's a knockout. (we see, from the camera inside the cab, george's hand waving as the cab drives away) [setting: jerry's apartment] kramer: (kramer is talking much more slowly and smoother than usual) first she sets the mood perfectly with this new age music played over ocean sounds. then she lays you out on this table, and she proceeds to rub oil over your entire body. and she rubs long... and deep... jerry, she rubs with love. (jerry is obviously cutting much harder than the cheese needs it as he listens to kramer) every muscles she touches just... (long pause) ooo-zz-es. beneath those silky, soft fingers, you can scarcely contain yourself, buddy. (jerry slams down the knife and goes to the couch) jerry: so you had a good time. kramer: oh... yeah... jerry: enjoyed yourself. kramer: very... much... jerry: all right now you listen and you listen good! (he grabs kramer's legs and throws him down the couch) kramer: what! (kramer is back to his usual way of speaking) jerry: the massages are out! kramer: wha-- jerry: ahh!!! they're out! kramer: why?! jerry: because if i can't get one, you're not getting one. kramer: wait a minute! wait a minute! i need my massages! can't you see i'm burned out! jerry: i'm sorry, kramer. (he goes back to the kitchen) kramer: why? why? look, i paid for her. (jerry stops walking) jerry: don't you ever talk about her like that! kramer: but why? jerry: that's final!!! kramer: ah!!! yahh!!! [setting: giants stadium] announcer: ladies and gentlemen, welcome to giants stadium. elaine: oh, you have photos in your wallet? joel: yeah. why? is that weird? elaine: no, it's normal. you're very normal. you're totally normal. who's this? joel: that's my mother. elaine: oh yeah. i see the resemblance. joel: no, there's no resemblance. elaine: yeah, there is, right here you see-- joel: elaine, i was adopted. elaine: (pause) oh. that's nice. joel: oh, the game's about to start. i wonder where your friend kramer is. [setting: ticket counter] kramer: (to the ticket man) uh, yeah, a ticket for kramer. ticket man: here it is. i need some i.d. kramer: oh, yeah. (snaps fingers) you know, i forgot my wallet. ticket man: well, i can't give it to you then. kramer: are you kidding me? ticket man: i'm afraid not. kramer: come on, just look at me. tell me i'm not kramer. ticket man: i'm sorry. i need proof. kramer: look, i'll drive out here tomorrow and i'll show the i.d. i got nothing to do all day. ticket man: neither do i. but without i.d., i need confirmation from the person who left the ticket. kramer: where's a phone? [setting: back to elaine and joel watching the game] announcer: ladies and gentlemen, may i have your attention, please? would joel rifkin report to the stadium office. joel rifkin...telephone. (the crowd stops cheering and we see a football player, lawrence taylor of the n.y. giants, distracted from the game while hearing the announcer saying joel rifkin) joel: who would be calling me here? (he stands up and look around) elaine: (to the person in front of her) he's not the murderer. [setting: jerry's apartment] kramer: oh, god. jerry: what's the matter with you? kramer: jerry, i need another massage! jerry: you just had one yesterday. what do you need another one for? kramer: because of the giant game! i told you, it went overtime! you know what those seats are like. they're very unforgiving. jerry: oh please. kramer: and then the game-winning field goal went over the net and into the crowd and i dove over three rows! my back, it's killing me! (whining) it's killing me jerry! jerry: well, did you get the ball? kramer: oh i got the ball. jerry: well, i never even caught a foul ball at a baseball game. kramer: well, it's quite a thrill. jerry: why don't you get somebody else? kramer: because nobody does it like she does. she's the best. jerry: well, that's it! tonight's the night. i'm getting one. no "if and's or but's". kramer: what about my massage? jerry: (whining like kramer) ask newman. [setting: monk's] george: so i lugged that table. that big heavy massage table all the way down to the cab! you ever seen one of those things? karen: of course. george: no, i don't know. maybe you haven't. you know, not everybody's seen a massage table. karen: what, do you think i've never had a massage before? george: anyway, i don't even get a thank you. i don't get it! karen: george, frankly, i'm getting a little tired of hearing about her. george: i wanna know what i did to this woman. karen: what, you got a little thing for her? george: no, no! she's going out with a friend of mine. it's only courteous that we should try and like each other. karen: what difference does it make? who cares if she doesn't like you? does everybody in the world have to like you? george: yes! yes! everybody has to like me. i must be liked! [setting: elaine's apartment] elaine: of course i support your decision to change your name. joel: after the giant game i realized that this--this problem isn't going away. elaine: well, listen, i just want you to know that i was more than willing to stick it out with joel rifkin. joel: sure? elaine: (she fakes a strangling) rrr... joel: o.k. you got your list? elaine: yeah. yeah. 10 names. joel: right. elaine: o.k. and if somebody objects, you can just veto it. joel: o.k. elaine: o.k. you start. what's your first choice? joel: stuart. elaine: (right away) no. second choice. joel: stu--stuart's no good? elaine: i have never met a normal guy named stuart. joel: o-o.k. my second choice is... todd. elaine: (repeating to hear how it sounds) todd. (pause) no. veto. joel: all right. oh, hey, i think you're gonna like my first my third choice. elaine: great... joel: alex. elaine: i gotta tell ya, i have a bad association with the name alex. joel: bad bad association? elaine: yeah, in college i sat next to an alex in art history. and he was always drinking coffee and after every sip he would go "ahh". i mean every two seconds "ahh". and he would take like 40 sips and after everyone "ahh". i had to drop the class. [setting: jerry's place] jodi: hey. jerry: hi. jodi: hi. (kiss) i was running late and i didn't have a chance to drop off my stuff before i came over. jerry: ah, no problem. that's fine. jodi: what's with this music? jerry: that's new age music. sounds of the forest. i find it soothing. hey, look at this! what do you know? a massage table! this is great! (he starts to install the table) jodi: what are you doing? jerry: just checking it out. look at how this thing is made. can i tell you something? that's a hell of a piece of equipment. jodi: actually, i should get a new one. jerry: no, nonsense. this one's fine. (as he sits on the table) jodi: so, where do you wanna go? (as she puts her hand on his shoulder) jerry: go? why go anywhere? (as he places his hand over hers. she starts to massage his shoulders a little) ahh, that feels good. yeah. that's, uh... that's good. (he tries to go further. he grabs her hands over his shoulders and he lies down on the table on his chest) yeah, that's nice. that's very nice. jodi: (she stops massaging) no. no, this isn't good. i can't do this. jerry: why, what's wrong? (he grabs her hands and force her to keep them on his shoulders) jodi: i can't (she tries harder to pull her hands away) jerry: no. yes you can. (he hangs on) jodi: no, i can't! jerry: come on! i know it's something you wanna do! (she pulls harder and he falls right off the table) [setting: karen's place] george: you know what? i should really go talk to her. nothing confrontational. just two adults sitting down trying to clear the air. you know, i just know if i could spend some time alone with her. i've got to. (he grabs his jacket) i've got to. karen: you're going now? george: i think i can still catch her. karen: all right george. i have had just about enough of this. george: what? what are you talking about. karen: i am talking about you and jodi. you're completely obsessed with her! george: i know. i know. karen: who is more important to you, her or me? i like you, she doesn't. who are you gonna pick? george: (he thinks a little about it... and as he puts his hand on his knee and gets up) i'm sorry karen. i know i care for you, but i just can't stand when someone doesn't like me. (he opens the door) karen: well, now i hate you! george: that i'm used to. (he leaves) [setting: back to elaine's place] joel: ned? elaine: what is wrong with ned? joel: ned's a guy who buys irregular underwear. next! elaine: ellis. joel: ellis?! you might as well go with alex. it's the same thing! elaine: ellis and alex aren't even close. joel: next! elaine: ohh, what is the point? joel: no, no. come on! elaine: o.k. o.k. remy. joel: remy rifkin? should i get a beret? elaine: oh, stuart's a lot better! (talking like a baby) little stuart rifkin likes to go shopping with his mother. joel: grrrr! [setting: back to jerry's] jerry: what do you mean, no? jodi: no means no. jerry: look, who are you kidding? you come up to my apartment with your table and your little oils, and i'm not supposed to expect anything? you're a massage teaser. jodi: listen. i massage who i want, when i want. i don't submit to forcible massage. (he tries desperately to get her hands on his shoulders again but she pulls them away immediately) i'm getting out of here. jerry: fine. go. george: jerry, could you excuse us for a few minutes, please? jerry: what for? george: we need to talk. jerry: you need to talk? jodi: we have nothing to talk about. george: look it's no secret what's going on between us. (to jerry) she doesn't like me. now jerry if you don't mind. jerry: george, anything you have to say to her, you can say in front of me. george: (he makes a sign to jodi to wait and turns to jerry) jerry... this woman hates me so much. i'm starting to like her. jerry: what? george: she just dislikes me so much... it's irresistable. jerry: i can see that. jodi: i'm getting out of here. (to jerry) don't call me. jerry: don't worry. (she leaves) george: a woman that hates me this much comes along once in a lifetime. jerry: you're a lucky guy. george: i got to go after her. jerry: george. i wouldn't push for the massage. (george nods) george: jodi! (he starts running after her) jerry: the swedish are very big massagers. you know? they like the swedish meatballs, swedish massage. they like having meat in their hands these people, for some reason. but it's weird because they have the highest suicide rate, they're rubbing each other's necks all the time for a neutral country they seem kinda tense. i don't really like the idea of getting a professional massage. i don't want people touching me that don't know me and don't want to have sex with me. you know what are you bothering me for? you get me all loosened up, juices flowing, and then that's it ok, you're done. it's like having chocolate rubbed all over your face, you know you wanna go "excuse me, i think you missed a spot." jerry: you can always tell what was the best year of your father's life, because they seem to just freeze that clothing style and just ride it out to the end, don't they? and it's not like they don't continue shopping, it's just they somehow manage to find new old clothes. every father is like this fashion time capsule, you know what i mean. it's like they should be on a pedestal, with someone next to 'em going 'this was nineteen sixty-five'. to me the worst thing is shopping for pants. i hate dressing and undressing in that little room. what men need is a place to shop where you go in, you check your pants at the door, and you just walk around the store in your underwear. that would be the best way. then you'd really have to lie to the salesman. 'need some help?' 'no, just getting some air.' jerry: how would you describe the smell in this house? elaine: (sniffing) dandruff? jerry: yeah, that's part of it. (sniffs) kasha? elaine: there's some kasha. jerry: yeah. dandruff, kasha, mothballs, cheap carpeting. it's pot pourri, really. elaine: alright, let's go, come on. george: wha... you're going? elaine: yeah. you know we shouldn't have bowled that last game, i'm gonna be late. kramer: egh. these aren't candies. george: wha? did you use those? these are guest soaps! (he grabs the soaps and begins examining them for damage) kramer: well i'm a guest. george: now my parents are gonna know i had people over. jerry: you're not allowed to have people over? george: i can't have any parties while they're out of town. (he leaves to return the soaps) kramer: what, this is a party? elaine: not any more. come on, get your ball, we're leaving. let's go, let's go. george: (yells) wow! who put this cup right on the new table! jerry: (picks it up) i was having coffee, i put it on the coffee table. george: but you didn't use a coaster, jerry, you left a stain! (he runs to kitchen) kramer: whoah boy. there's always one at every party, huh? elaine: (impatient) come on! jerry: what's the big rush? elaine: i'm having people over. jerry: who? elaine: the girls for poker night. you know, joanne, renee, winona... jerry: eh, eh, ah. winona's gonna be there? elaine: yeah. and she broke up with the vitamin guy. jerry: (interested) really? elaine: i'll put in a good word for you. jerry: thanks, because i would really like... (distractedly puts coffee cup back on the table) george: (screaming) aaahh!! jerry: alright, i'm sorry. i'm sorry. (picks it up again) george: but jerry, this is not coming out! jerry: just put a coffee table book over it. george: my parents don't read! they're gonna wonder what a book is doing on the table! kramer: hey, hey, hey, hey. you know what would make a great coffee table book? a coffee table book about coffee tables! get it? elaine: got it! c'mon, let's go, let's go. bye george. george: wait, wait wait, not so fast. jerry, you gotta take me to get this thing refinished. elaine: now?! george: yes, now. it's gonna take a few days and my parents are gonna be back. i gotta have it back before them! elaine: jerry, you promised you'd get me home by seven. kramer: alright, we'll take the subway. jerry: there you go. that'll get you home in time. elaine: oh! the subway? from queens? george: alright, jerry, i'm gonna get my coat. jerry: i'm sorry elaine, i'll make it up to you. elaine: i need something to read on the subway. jerry: (handing her a magazine) here, read this. elaine: (looks at it) tv guide? kramer: like a history of coffee tables, celebrities and their coffee tables. it's a natural. this is a story that must be told. elaine: (engrossed in magazine) hmm-mmm. kramer: so, you're gonna talk to your boss about it, huh? elaine: (still paying no attention) hmm-mmm. first thing in the morning. kramer: (claps hands) yes indeed. tannoy (v.o.): next stop, queensboro plaza. kramer: oh, queensboro plaza. (reties his shoelaces) this stop is famous for its gyros, you want one? elaine: how are you gonna get something and get back on the train in time? kramer: well, they got a stand right out on the platform. gyros are cooked, and wrapped, and ready to go. (he pulls money from his pocket) three dollars, no change. you want one? elaine: (laughing) no thanks. kramer: alright, but no bites. ricky: highlighter? elaine: excuse me? ricky: to highlight the programmes you plan to watch. elaine: ah. uh, look really (looks about to try and avoid contact) i'm just trying to read. ricky: fine, okay. it's just, i've never seen a beautiful lady reading 'the guide' so far away from a tv. you must really like television. kramer: (yells) elaine! ricky: guess your boyfriend'll have to catch the next train. elaine: he's not my boyfriend. ricky: he's not? (thoughtful) interesting. jerry: hey, maybe i should get elaine something. george: why? jerry: ah, you know, i didn't drive her home. plus, i give her a gift in front of winona, how does that hurt me? george: can't hurt you. jerry: what about, what about this thing? george: the indian? jerry: yeah. you know, kind of a peace offering. cute. gepetto: well, i can have the table ready for you on monday. george: alright, but no later, because my parents are coming back. gepetto: they left you home alone, huh? ricky: oh, 'kay, see. on this particular tuesday (he swaps seats and sits beside elaine) you could've watched six hours of lucy. there's i love lucy, the lucy show, here's lucy. elaine: oh, (nervous laugh) my stop. (making her escape) bye-bye. ricky: (after elaine) hey miss! (waving tv guide) you forgot this! gepetto: they don't make these any more. the work is, is all done by hand. (sylvia enters the store behind him) takes years, and years, and... (notices) sylvia! for crying out, you're forty-five minutes late! sylvia: yeah, yeah. (to george, smiling) is that your car out there? george: no, it's, it's his. (indicates jerry) sylvia: oh, nice. you guys are obviously from manhattan. george: well, he is. i, uh, i live around the corner. sylvia: really? ah, i didn't think any cool guys lived in this neighborhood. george: (sensing his chance) well, they do now. neighborhood's changing. jerry: alright, i'll take it. gepetto: smart choice. sylvia: wow, you bought the indian? oh, you guys have great taste. george: well, we're collectors. we, uh, see objects of great beauty and, uh, we must have them. elaine: knocked you out jack. pair of deuces the girls: (disappointed) oh/aah. elaine: (triumphant) ha, ha, ha ha! elaine: who is it? jerry (o.c.): it's jerry. elaine: jerry! jerry: surprise! (he carries in the object) elaine: what is this? jerry: well, i felt bad about this afternoon, so i got you something. elaine: oh, you did? (to girls) oh, do you guys all know jerry? the girls: hi jerry/hello. (etc) jerry: hi. hi winona. nice to see you again. girl (not winona): elaine, is it your birthday? elaine: no. jerry: i don't need a reason to give gifts, it's my nature. i love to make people happy. the girls: aww/that's so sweet. (general murmur of approval) jerry: are you ready? elaine: yeah. jerry: (whips off bag to reveal indian) ta-da! jerry: it's a cigar store indian. (to elaine) read the card. elaine: (examines card; embarrassed) that's very nice. thank you very much. jerry: read it out loud. elaine: i, i don't think so. jerry: (takes the card from elaine) we had a little fight this afternoon. (reading from card) let's bury the hatchet. we smoke um peace pipe. winona: (gathering her stuff) hey, you know, it's late. i really should go. elaine: i, uh, i don't blame you winona. i, uh... jerry: hey-yah, ho-ah, hey-yah, ho-ah. elaine: are you out of your mind?! jerry: ...ho-ah. it's, it's, it's kitschy. elaine: winona is a native american. jerry: she is? sylvia: you got very unusual taste. george: (proffering glasses) i hope prune juice is alright. it's the only thing i had that was chilled. sylvia: fine. george: i'm sorry about that lock on the liquor cabinet. the combination musta just flown outta my head. it's a mental block. sylvia: (regarding photo) ahh! is this your son in the bubble bath? george: (bashful) no, that's me. sylvia: oh. you don't see many guys your age who keep baby pictures of themselves around. (laughs) i like it. consistent with the rest of the house. george: yes, it is consistent. i've, uh, i've tried to maintain a consistent feel throughout the house. sylvia: what is this we're listening to? george: the ray conniff singers. (nervous chuckle) sylvia: mmmm, what's that smell? kasha? george: it's a pot pourri. may i, uh, may i show you the master bedroom? (they leave together) winona (o.c.): who is it? jerry: uh, winona, it's jerry seinfeld. winona: (unimpressed) yeah? jerry: uhm, listen, i really felt bad about what happened, and i, i, i'd really like to apologise. can i come up? winona: i'll come down. kramer: i came by to get my ball. elaine: it's right over there. kramer: oh, yeah, thanks. (gets ball) yeah, it's got the magic grip. how d'you think i bowled that two-twenty today, huh? (sees indian) yo! where did this come from? elaine: you want it? kramer: (unbelieving) i can have this?! elaine: yuh! you wanna lug it uptown, it's yours. kramer: oh. i'll lug. winona: it's just that it's a very sensitive issue for me. jerry: and well it should be. i think if you spent any time with me at all, you'd see i'm very sensitive to these matters as well. you wouldn't be hungry by any chance, wouldya? winona: (smiling) i guess i could go for a bite. jerry: you like chinese food, 'cos i once went to a great szechwan restaurant in this neighbourhood. i don't remember the exact address... (he spots a mailman crouched emptying a box) uh, excuse me, you must know where the chinese restaurant is around here. mailman: why must i know? because i'm chinese? you think i know where all the chinese restaurants are? (adopts hackneyed chinese accent) oh, ask honorable chinaman for location of restaurant. jerry: i asked because you were the mailman, you would know the neighbourhood. mailman: oh, hello american joe. which way to hamburger, hotdog stand? (storms away) jerry: i didn't know that... winona: you know, it's late. i should probably just go home. jerry: i, i had no idea. kramer: (yells) hey jerry! (thumps cab door with his palm) look what i got! (begins doing war-whoops) george: looks pretty good. jerry: yeah, did a good job. george: yeah. i don't think they'll be able to tell. jerry: you know, i don't get it. not allowed to ask a chinese person where the chinese restaurant is! i mean, aren't we all getting a little too sensitive? i mean, someone asks me which way is israel, i don't fly off the handle. george: so, anyway, what's uh, what's the status with, uh... jerry: ah, she kinda calmed down. i talked to her today. in fact i'm gonna see her tonight. george: oh, great. jerry: yeah, but i'm a little uncomfortable. i'm afraid of making another mistake. george: aw c'mon. estelle: hello, hello! george: (insincerely) ahh, hey you're home. hi. estelle: oh, the house looks very nice. george: yeah, huh. frank: where's the mail? estelle: hello jerry. jerry: hello. george: so, how was the trip? estelle: ah, your father... frank: is there anything wrong with getting a receipt at a toll booth? estelle: i'm going upstairs. (she leaves for the bedroom) frank: (examining mail) this stack should be bigger, where's the tv guide? george: what tv guide? frank: i'm missing tv guide volume forty-one, number thirty-one. jerry: uh, elaine took it to read on the subway. frank: elaine took it? george: i didn't know she took it! jerry: wa, it's two weeks old. frank: (shouting) how could you let her take the tv guide?! george: (to jerry) he collects them. jerry: you collect tv guide? frank: the nerve of that woman. walking into my house, stealing my collectible! estelle: (screaming) oh my god! (she enters holding a small packet) this was in our bed. frank: (taking the packet) what is this? (accusingly to george) a prophylactic wrapper?! estelle: what is this doing on my bed?! george: i don't know, uh... jerry: i'll see you later. (he leaves with unseemly haste) frank: you were having sex on our bed?! george: yes! estelle: who told you, you could have sex in our bed? george: (pleading) well, my bed is too small. frank: your bed is too small? i'm gone two weeks and you turn our house into, into bourbon street! estelle: where am i going to sleep? george: what are you talking about? estelle: i can't sleep in there! george: of course you can. estelle: i can't! (screams) i can't! frank: that's it! you're grounded! george: (incredulous) you can't ground me, i'm a grown man. frank: you wanna live here? you respect the rules of our house. (yells) you're grounded! winona: so, where are we gonna go eat? jerry: i thought we'd eat at the gentle harvest. winona: ooh, i love that place, but it's usually so crowded. can we get a table? jerry: ah, don't worry. i made reser... (catches himself) winona: you made what? jerry: i uh, i uh, i arranged for the appropriate accommodations. and then, knick tickets, floor seats. winona: how did you get these? jerry: got 'em on the street, from a scal... (catches himself again) winona: from who? jerry: a uh, one of those guys. winona: what guys? jerry: you know, the guys, that uh, they sell the tickets for the sold-out events. winona: oh. jerry: wait a second, you got the mark mcewan tv guide. winona: that's al roker. jerry: oh well, they're both chubby weathermen. i get dom deluise and paul prudhoe mixed up too. could i have this? winona: sure, take it. jerry: thanks. jerry: so, winona had the tv guide. told you i'd make it up to you. elaine: aah, so mr costanza was pretty mad, huh? jerry: yeah. you almost ruined his life's work. elaine: he collects (holds up magazine) these? jerry: yeah. elaine: wow! alright, well i will personally go out to queens and deliver his al roker tv guide to him. jerry: what'ya do with the one you took? elaine: i dunno. elaine: hi. kramer: yeah uh, elaine uh, what'd he say? elaine: what did who say? kramer: your boss. didn't you tell him about the coffee table book? elaine: uhmm... kramer: yeah, you didn't tell him didya? elaine: kramer, it is such a dumb idea. i would be (raising her voice as kramer speaks his line) totally embarrassed to bring it... kramer: (simultaneous) wait a minute, on the cover i'm... elaine: i would be embarrassed to bring it up. jerry: i thought it was a pretty good idea. it's about coffee tables, it's on a coffee table. kramer: yeah, right, right, and on the cover is a built-in coaster. (clicks tongue) alright, well i'm gonna go. jerry: where you going? kramer: well, i'm gonna go to the cigar stores. i'm gonna see if i can sell that indian. jerry: my indian? kramer: you know, i think it's worth something. it's kitschy. (tongue click) frank: how do you just walk into a house and take a tv guide? how does she expect you to watch tv? (doorbell rings) am i just supposed to turn it on and wander aimlessly around the dial? ricky: hello. is elaine home? estelle: elaine benes? oh, she's my son's friend. frank: (shouting) and she's not welcome in this house! ricky: (entering) oh, 'cos i made her this very special gift. 'kay, it's a bouquet of paper from her tv guide. frank: (yelling) that's my tv guide! ripped to shreds! she gave that to you?! ricky: (seeing tv) hey, is that the twilight zone you're watching? george: yeah. ricky: oh, this is a good one. tannoy (v.o.): next stop, queensboro plaza. elaine (v.o.): mmm, gyro. winona: i like your place. it's very unassuming. jerry: well, why would i assume. i never assume. leads to assumptions. winona: (laughs) oh, by the way. that tv guide i gave you, i need it back. jerry: why? winona: well, i'm doing a report on minorities in the media, and i wanted to use that interview with al roker. jerry: well, it's too late. i gave it to elaine, and she's already on her way to give it to george's father. winona: jerry, i really need it back. it, it is mine. jerry: you can't give something and then take it back. i mean, what are you... (catches himself) winona: what? jerry: a uh, a person that uh... winona: a person that what? jerry: well, a person that gives something and then they're dissatisfied and they wish they had, had never uh... winona: and? jerry: ...give, given it to the person that they originally gave it to. winona: you mean like, an indian giver?! jerry: i'm sorry, i'm not familiar with that term. ricky: i like the special fall preview issues the best. frank: those. i've been saving those from the beginning. ricky: these are worth like, a lot of money. estelle: oh, hello elaine! elaine: hello. (she enters) ricky: (jumping to his feet) elaine! hello! you look scrumptious. frank: why'd you take my tv guide? elaine: (placatory) i'm so sorry about that mr costanza, but look. look, i brought you another one. (hands it over) ricky: i made this for you. elaine: (accepts reluctantly) oh, thank you. frank: (examining magazine) what is this? you got stains all over it! what the hell'd you do? ricky: hey, you can't talk to her like that. frank: (yelling) i'll talk to her any way i want! ricky: come on elaine, let's go. estelle: my coffee table! kramer: i don't understand. how can you have a cigar store, without an indian? it's unseemly. spike: i'll give you a box of coronas for it. kramer: forget it. lippman: uh, excuse me. are you uh, selling this indian? kramer: oh yeah, yeah. lippman: uh, i'm just uh, redecorating my office in a south-western motif and this'd be perfect. give you five hundred dollars for it? kramer: giddyup. lippman: yeah? could you help me bring it up to my office, i'm right next door. pendant publishing. kramer: pendant publishing? giddyup again. elaine: mr lippman. i'm sorry, i was in queens uh... (sees kramer) kramer! kramer: yeah, hi elaine. elaine: what are you doing in here with that? kramer: ah, well, it's a business transaction. lippman: (entering, smoking a cigar and with a handful of cash) listen uh, petty cash just had tens and twenties. (hands cash to kramer) go ahead, count it. kramer: yeah, i'm sure it's all here. (puts in in his pocket) you know i was just admiring your coffee table, out there in the hall. lippman: you like that, huh? i had that custom made for me in santa fe. kramer: you mind if i use it in my book? lippman: what book? kramer: well, i'm doing a coffee table book on coffee tables. lippman: about coffee tables? kramer: uh huh. lippman: that's fantastic. (elaine looks gobsmacked) who's your publisher? kramer: well, i'm still shopping it around. lippman: yeah? (to elaine) you see, this is the kind of idea you should be coming in with. what the hell do you do round here all day anyway? elaine: well i (indistinct) ...manuscript that i... lippman: (ignoring elaine) god, that indian really completes the room. don't you think? sylvia: i know this coffee table, it's george costanza's. estelle: it's mine. i'm his mother. sylvia: oh, i haven't seen george for a while. he must be working very hard. estelle: george doesn't work. he's a bum. that's why he lives at home with us. sylvia: he does? jerry: i don't know why we didn't think of this before. we just could call tv guide. elaine: i dunno. jerry: well, it's gonna make mr costanza very happy. (he hands the magazine to elaine) elaine: i guess. jerry: what's the matter? elaine: what d'you think is the matter? i've been assigned to work on kramer's coffee table book. jerry: it is a good idea, elaine. tannoy (v.o.): next stop, queensboro plaza. jerry: you want a gyro? elaine: i don't think so. [subway train: moments later] jerry: elaine! al roker: guess your boyfriend's gonna have to catch the next train. elaine: he's not my boyfriend. al roker: he's not? interesting. (gives a big grin) jerry: i was always excited as a kid, when that new tv guide would come. somehow when that front cover's nice and flat, seems like there's good fresh tv shows in. then, as the weeks go by you start to hate the tv guide. all the shows stink. everything's getting all crumpled and ripped from being sat on, thrown across the room. tv guide is always thrown, never handed, to another person. it's the world's most thrown reading material. 'where's tv guide?' (mimes throwing) 'there it is.' you know in the back of the tv guide, they have a phone number, ninety-five cents a minute, they will give you the answers to the tv guide crossword puzzle? my question is, if you can't do the tv guide crossword puzzle, where are you coming across ninety-five cents? jerry: you know doctor is supposed to be such a prestigious occupation. but its really like one of the only jobs where you have to have your diploma right up there on the wall. it makes them seem so insecure, doesnt it? "i really am a doctor you know. you think im not, just check it out." i dont know why they need these little bits of psychological leverage over us all the time. "go in that little room, take your pants off, wait 15 minutes, and ill give you my opinion." after that, anyone that comes in with pants on seems like they know what theyre talking about. in any difference of opinion, pants always beats no-pants. george: can i say one word to you? lobster. the lobster here is unbelievable. (looks at the menu) ooh, a little expensive. sasha: twenty five dollars. george: yes, well, you know, im not thinking about the price. you know youre the only woman ive never thought about the price. get the lobster. i beg you to get the lobster. go for the lobster. sasha: george, george, uh, i think we have to talk. i think we have a problem. george: we do? sasha: we cant keep seeing each other. george: why? sasha: (crying) because its over. (sob, sob, sob) its my parents george, the differences in our religion. oh george, can you ever forgive me? (sob) waiter: uh, have you decided yet? sasha: (crying) yes. ill have the lobster. george: um, you know im starting to think that maybe lobster isnt the way to go. jerry: then he asked you out? elaine: we started to talk, and i told him that i jog, and then he put his hand on my heart. jerry: on your heart? elaine: jerry, the man is a doctor. jerry: doctor? hes a podiatrist. elaine: so, its the same thing. jerry: anyone can get into podiatry school. george got into podiatry school. elaine: really? tawni: hello. jerry: oh hi. tawni: are you going to be stopping by later? jerry: yes, ill be stopping. tawni: ok, see you later. jerry: see you later. (to elaine) well we cant all be dating podiatrists. (elaine laughs) george: its over. elaine: what? jerry: how did you get in? george: kramer. elaine: whats that? (points at some foil on the table) george: lobster. jerry: looks like a swan. george: she says we cant go out anymore. elaine: why? george: because im not latvian orthodox. her parents wont let her get involved with anyone who isnt latvian orthodox. elaine: latvian orthodox? (gasps) mmm, it is lobster. jerry: shes limiting herself to latvian orthodox? too bad. george: i know. this was the only woman i never lied to. well thats not entirely true. jerry: oh, whatever. elaine: mmm, this is delicious. jerry: mmm, succulent. george: she knew i didnt have a job, she knew i lived at home. didnt seem to bother her. i think i could have married this woman. elaine: why dont you just ask her parents? george: i cant. i met them. theyre devout. you know, in the cab on the way over here, i actually thought about converting. jerry: to latvian orthodox? george: why not? what do i care? jerry: you know its not like changing toothpaste. elaine: i think it would be romantic. george: really? elaine: yeah, its like edward the eighth abdicating the throne and marrying mrs. simpson. ooh. george: king edward. (snapping his fingers) king edward, jerry. jerry: yeah well king edward didnt live in queens with frank and estelle costanza. george: you know what? i could probably do this. whats the difference. elaine: george i was just kidding around. george: no. i wouldnt even have to tell her. i could surprise her. elaine: george i wasnt serious. george: how hard could it be? you make a little contribution, you have a ceremony. i am going to think about this. i am really going to think about this. elaine: i guess this one is my fault. jerry: oh yeah. tawni: (kiss, kiss, kiss) oh that was nice. have you always been such a good kisser? jerry: oh i dont know. not always. no i uh i had to work at it. when i was a kid all the kids would be out playing, i would be up in my room practicing my kissing. tawni: well it was worth it. (kiss) ill be (kiss) right (kiss) back (kiss). where are you going? jerry: to wash my hands. theyre sticky from the orange. tawni: meet you back here? jerry: right there. jerry: (thinking to himself; picks up a tube) "fungicide". fungus? jerry: fungicide. i mean what could she have? elaine: i dont know. kramer: fungus. jerry: exactly elaine: so what did you say? jerry: i said i was coming down with the flu or something and i had to go home. elaine: i don't know, what were you doing opening her medicine cabinet? jerry: i didnt open it. it was open. i just nudged it a little. elaine: you were snooping. jerry: i was not snooping. i did not break the seal. there was no breaking and entering. i wouldnt do that. kramer: i would. i always open medicine cabinets. elaine: well i trust people not to do that. kramer: big mistake. jerry: why dont you ask that doctor what it is? elaine: what? now hes a doctor? before he was a podiatrist. jerry: but thats what podiatrists do. they deal in fungus. theyre knee- deep in fungus. this guy knows fungus. elaine: i am not going to ask him about funguses. kramer: fungi. jerry: what? kramer: fungi. father-priest: why do you want to accept the latvian orthodox faith? george: (ahem) in this age of uncertainty and confusion, a man begins to ask himself certain questions. how can one even begin to put into words something so um (trying to think of a word) father-priest: enigmatic? george: no. father-priest: vast? (he pronounces it as "vost") george: no not vast (he pronounces it as "vost") father-priest: well whatever it is, basically you like the religion. george: yes. father-priest 2: is there one aspect of the faith that you find particularly attractive? george: (he thinks) i think the hats. the hat conveys that solemn religious look you want in a faith. very pious. father-priest: are you familiar with orthodox theology? george: well perhaps, not to the extent that you are. but i know the basic plot. yeah. father-priest: plot? george: yes. you know the uh flood, and the uh lepers, and the commandments and all that. father-priest 2: well its obvious that you are sincere in your desire. george: oh yes i am father. incredibly sincere. so, uh, pffft, am i in? father-priest: the first step would be to familiarize yourself with these texts (brings out a pile of books). george: ah hah. you see father, im im incredibly anxious to become a member. um, dont you offer any kind of an express conversion? a quick change? sister roberta: oh im sorry. father, theres a man waiting in the chapel. father-priest: you may attend to it sister, oh this is george costanza. he is interested in joining the church. sister roberta: oh are you? thats wonderful. well good luck to you. george: nice nun. father-priest: no, sister roberta is not a nun. she is what we call a novice. father-priest 2: she wont be taking her final vows until next thursday. sister roberta: may i help you? kramer: oh yeah, im here to pick up my friend george costanza. sister roberta: well hes in with the father. kramer: oh yeah. sister roberta: im sister roberta. kramer: oh. kramer. pleasure. sister roberta: mine. (she smiles at kramer) george: i cant believe how easy it is. im virtually orthodox. all i have to do is read a few books, memorize a few prayers, and im in the club. jerry: thats all there is to it. george: thats all there is to it. by christmas day i will be brother costanza. jerry: and when is brother costanza planning on telling mother costanza? george: brother costanza will be taking the vow of silence. jerry: oh a slinky. kramer: sister roberta gave it to me. jerry: why did she give you that? kramer: i think she liked me. jerry: what do you mean she liked you? kramer: liked me. george: kramer, they like everybody. theyre friendly people. kramer: no. i think i picked up on a vibe. jerry: you picked up on a vibe, from a nun. kramer: yeah, jerry im telling you i have this power. and i have no control over it. jerry: yea alright. kramer: oh, that's my phone. jerry: oh hi. tawni: hi, i just wanted to stop by and see how you were feeling. jerry: (weakly) a little better. (fake cough) tawni: if you need anything let me know. jerry: okay. tawni: okay. jerry: all right. tawni: bye. jerry: bye. george: story. jerry: shes subletting carols place for a month. george: yea, she likes you. jerry: yeah but theres a problem. i found a tube of a fungicide in her medicine cabinet. george: so? jerry: so i dont know what shes using it for. george: well how do you even know its hers? maybe it belonged to carol. did you see a name on the tube? jerry: i didnt even think to look. george: well take a look. it might not even belong to her. jerry: yeah. george: people always leave old things in their medicine cabinet. jerry: yeah ive got this old bottle of cough medicine. george: i still have brill cream. jerry: hi tawni: hi. jerry: hi. can i use your bathroom? elaine: you sure you dont mind? doctor: no of course not. people ask me medical questions all the time. elaine: well i mean the question isnt even for me its for a friend. doctor: elaine, im used to it. im a doctor. elaine: well podiatrist. doctor: huh? elaine: no no, im just saying you didnt really go to medical school, you went to podiatry school. which im sure is very grueling in its own way. doctor: i went to podiatry school because i like feet. i chose to work with feet. elaine: i like feet too. im just saying doctor: saying what? tawni: how are you doing in there? jerry: fine all done, just looking for the soap. tawni: no soap? jerry: no i dont see it. tawni: (giving jerry the soap) here you go. estelle: george what are you doing in there? george: what? nothing. frank: youve been in there an hour. estelle: you dont feel well? george: im fine. estelle: i want to know what youre doing in there. george: nothing. frank: george, open the door. george: no. estelle: georgie. george: no! kramer: hey. sister roberta: good evening. i hope im not disturbing you, but i found another toy i thought you might like. jerry: okay, latvius was the son of which apostle? and ill need that in the form of a question. george: i dont know. i cant believe theyre making me take this test. jerry: hey, did you talk to the doctor? elaine: no. jerry: all right, the next time you see him show him this. (he presents the bottle of fungicide.) elaine: you took her medicine. jerry: not on purpose. i was hoping there would be a name on the tube. when are you seeing him again? elaine: i dont know. we got into this whole thing about how podiatrists arent real doctors. jerry: how could you say that? elaine: its you fault. you just got me thinking. jerry: i was merely speaking extemporaneously. elaine: ive got nothing against the foot. im pro-foot. jerry: me too. elaine: do you think i should call him and apologize? jerry: yes. hes a doctor. (elaine starts to leave. ) wait a second. (jerry puts the bottle of fungicide in elaines purse.) (to george) what are you doing? george: what does it look like im doing? jerry: (reading words george wrote on his hand) "matthew, luke, paul", what youre cheating on your conversion chest? kramer: i told you. jerry: what? kramer: i told you she liked me. jerry: who? kramer: sister roberta. jerry: how do you know? kramer: she told me. she said shes never had a man stir up all of these feelings inside of her. shes questioning her faith. shes thinking of leaving the church. jerry: wow kramer: oh, uh, this power. im dangerous jerry, im very very dangerous. father-priest: i must say george, i was somewhat surprised at the results of your conversion test. i dont recall having seen such an impressive performance. you truly must be filled with the spirit of the lord. george: oh, im im full of it father. father-priest 2: (muttering something to father-priest 1) (mumble) kramer (mumble) father-priest: yes, yes i see. (to george) im sorry something has come up. george: oh, i understand. (george exits; sees kramer in the hallway) hey. kramer: (rushed) yea, hey. (kramer enters.) um, you wanted to see me father? father-priest: yes. please, sit down. sister roberta came to see me yesterday. kramer: i know what this is about father. i didnt do anything. i just spoke to her innocently for just a few minutes. its just that, that i have this power. father-priest: yes. kavorka. kramer: kavorka? father-priest: it is a latvian word which means "the lure of the animal". kramer: i dont understand. father-priest: women are drawn to you. they would give anything to be possessed by you. kramer: help me father. help me. father-priest: yes, yes i will help you. listen very carefully. i want you to buy ten cloves of garlic, three quarts of vinegar, six ounces jerry: what is that stench? i got it. (he follows the smell to kramers door) ah hah. kramer: hey. jerry: hey. what are you doing? kramer: ive got the kavorka jerry. jerry: the kavorka? whats that? kramer: the lure of the animal. im dangerous. jerry: what is this thing around your neck? kramer: the priests theyre helping me. i just bathed in vinegar. jerry: you know youre funcifying the whole building. kramer: keep away jerry. keep away. jerry: kramer. (knock, knock, knock) kramer. [at the entrance of the church. there is a sign there. it reads: conversion ceremony - for - george costanza - 3p.m. the sign is on a black background with white stick-on letters.] woman: george costanza? estelles son? estelle: latvian orthodox? why are you doing this? george: for a woman. frank: a woman? what are you out of your mind? estelle: why cant you do anything like a normal person? frank: wait. is this the group that goes around mutilating squirrels? george: no its a regular religion. frank: im calling my lawyer. it might not be too late to get out of this. george: i dont want to get out of it. estelle: bu george, you dont know what youre saying. youre under their control. frank: what, they brainwashed you? george: no no. frank: youre not performing any rituals in this house. estelle: go back to the psychiatrist. i beg you. frank: and stay away from those squirrels. tawni: oh how you doing jerry? jerry: good. whats the matter? tawni: im tired. i hardly slept last night with all this scratching. bonkers was going crazy. jerry: bonkers? tawni: my cat. hes got this weird sort of skin condition. some type of fungus, i couldnt find his medicine. jerry: oh its your cat! tawni: what? jerry: ooh, nothing. father-priest: are you ready my son? george: yes faddah. father-priest: what did you say? george: what? father-priest: i thought you said faddah. george: i said faddah, i meant father. just a little bit nervous. father-priest: ooh, of course. kramer: how you doing? woman: get away from me you creep. (she walks away.) kramer: yes, yes. it worked. sister roberta ive still got time to catch her. father-priest: congratulations george. welcome to the faith. sister roberta would you please offer the final benediction. sister roberta: (hesitates) i cant. (crowd murmurs) im sorry. its a beautiful religion, but i am not worthy of it. i found something else. sister roberta: him. crowd: kavorka, kavorka. elaine: (kiss, kiss) you know, because i love the foot. im a big fan of the foot. doctor: well its my fault. i got a little defensive. elaine: and that pinkie toe, come on . how adorable is the pinkie toe. doctor: its my favorite toe. elaine: lets face it, you get a bunion, where are you going? youre not going to the ear guy. doctor: no youre not. elaine: ill be right back. doctor: oh uh, wheres the bathroom? elaine: its right down here to the left. i will uh meet you right back here. jerry: elaine its her cat. her cat had the fungus. so i need the tube back. doctor: (thinking to himself) "fungicide"? fungus? sister roberta: somethings wrong. i dont feel the same lure. kramer: you dont? sister roberta: what have i? i must return to the church. by the way you really need to take a bath. you stink. kramer: yeah yeah. jerry: but once you put medicine in your medicine cabinet you're never using it again. any medicine you're using, is on the sink. it's not really even a medicine cabinet, it's really like an ointment museum isn't it? it's like here's a saff from 1983, some cream from the 70s. but you want to keep it private, because a medicine cabinet is a place that reveals our weaknesses and it can really throw off the balance between two people that might be going out. somebody peeks in there, "oh i see mr. perfect needs tough actin' tinactin. well i guess i'll be calling the shots in this relationship from now on." sasha: for me? george: well i didnt do it for my mother. sasha: im really flattered. but i just dont feel ready to make a commitment yet. maybe when i get back from latvia. george: latvia? sasha: yes. im going to stay with some relatives there for a year. isnt it great? george: enjoy, enjoy. sasha: oh george, you are so sweet. dont ever change. george: id like a doggie bag for this please. (hands her plate to the waitress) jerry: the whale is supposed to be such an intelligent animal. you know you always here about how they can communicate by song from miles away. how extensive their vocabulary is. i would say from the rate we are pushing the whales off the beach back into the ocean the words shore and close do not appear to be in their vocabulary. i would say if the whales concentrate a little less on the singing and a little more on approaching quervo beach volleyball tournament. if you wanna maintain the brainy mammal image. elaine: oh, i can't believe this. what a dope! uh..excuse me umm.. i'm sorry this is.. this is kind of embarrassing but.. there's no toilet paper over here jane: (from the stall on elaine's right) are you talking to me? elaine: yeah.. i i just forgot to check so if you could just spare me some. jane: no i'm sorry elaine: what? jane: no i'm sorry, i can't spare it elaine: you can't spare it?? jane: no there's not enough to spare elaine: well i don't need much, just 3 squares will do it jane: i'm sorry i don't have a square to spare, now if you don't mind elaine: 3 squares? you can't spare 3 squares?? jane: no i don't have a square to spare, i can't spare a square elaine: oh is it two-ply? cause it it's two-ply i'll take one ply, one ply, one puny little ply, i'll take one measly ply jane: look, i don't have a square and i don't have a ply (flushing and leaving) elaine: no no, no no, don't don't, i beg you jerry: (eating pop corn) hmm i love this artificial flavoring i like it better than butter i think it's more consistent jane: you would not believe what just happened to me in the bathroom jerry: what? elaine: hey tony: hey. hey? where is my popcorn babe? elaine: what? tony: my popcorn, you were supposed to get me popcorn what? would you forget about me babe? elaine: you would not believe what just happened to me in the bathroom jane: i mean.. a person needs a certain amount of toilet paper to be covered.. i simply could not spare it this woman just didn't get it, she kept harassing me elaine: 3 squares!! that's all i was asking for! 3 squares! jane: she wouldn't stop "help me! help me!" she was insane elaine: i was begging her "please! please!" she was insane jerry: who do you think she is? how dare she? you want me to get the manager? too bad they don't have those old ladies walking around with flashlights anymore we'd flush her out jane: i don't know what she looks like jerry: i wonder where elaine is sitting? i really wanted you to meet her she's supposed to be here tonight with her new boyfriend tony elaine: hmm where is jerry sitting? he's supposed to be here tonight with his new girlfriend i'm dying to see what she looks like tony: hey? you think if i jumped off that balcony i'd get hurt? kramer: hey jerry: hey kramer: hey guy, can i use your phone in your bedroom? jerry: what's the matter with yours? kramer: huh.. my batteries are dead jerry: it's not one of those 976 calls, is it? kramer: look come on, let me use it, 5 minutes, i'll pay you back huh? jerry: why do you do that? kramer: oh... (goes to the bedroom) elaine: i am never going back to the movies again jerry: hey where were you last night? i looked for you, i didn't see you elaine: i looked for you too, i was all the way over on the side jerry: oh with huh.. pretty boy.. tony elaine: yeah jerry: hey hey (fooling around with his collar) elaine: yeah, all right ok jerry: tony, hey hey (continues fooling) elaine: that's nice. listen, listen to this i am in the bathroom, right before the movie starts jerry: huh huh elaine: i'm in the stall and there's no toilet paper jerry: no what? elaine: toilet paper jerry: oh.. whoa.. elaine: so i ask this woman in the stall next to me for some and she refuses! ha ha jerry: well maybe she couldn't spare it elaine: a square? jerry: well, you know, sometimes a square is everything elaine: a ply? jerry: elaine, you cannot judge a person on a situation like that. i mean it's like asking for someone's canteen in the desert elaine: yeah jerry: it's battle conditions elaine: yeah, well i just hope i run into her again ok, cause i will never forget that flinty voice, it is tattooed in my brain if i hear it, watch out so listen what happened with jane last night? jerry: oh.. jane she uh.. she uh.. elaine: the four of us are going out saturday right? that should be fun jerry: yeah that should be real fun elaine: you know what, it's getting late, can i call tony? jerry: yeah woman's voice on the phone: then we'll get a cab and we'll do it in the back seat.. how's that andre? elaine: andre? kramer: (on the phone) what about the driver? we could get an accident kramer: oh that wouldn't be very good jerry: (on the phone) hey andre, get the hell off the phone! elaine: what, what is going on? what.. who is andre? jerry: kramer's andre, he's fooling around with these 976 numbers (kramer walks out of the bedroom) hey i told you, i don't want you doing that on my phone kramer: jerry, i'm telling you, this phone sex thing is hilarious, like this woman erika, here look (showing the ad in the newspaper). you gotta call her, the voice she uses.. jerry: hey you know it's weird because that voice sounded a little familiar to me kramer: hey, you're hungry? monk's? jerry: no i gotta go downtown elaine: oh wait, you're giving me a lift home right? jerry: yeah elaine: so listen, what happened last night with jane? jerry: oh uh nothing, she just.. choked on a jujube elaine: you know i hate to tell you this, but it's time to defrost that freezer jerry: i know, i just can't bring myself to do it meanwhile that freezer keeps getting smaller and smaller (she smiles) (elaine looks at her watch) oh, don't wanna keep tony waiting elaine: hey you got a problem with tony? jerry: hunky.. tony.. hey hey hey (fools around with his collar again) elaine: ok, jerry, i would be going out with him no matter what he looked like jerry: of course you would elaine: oh yeah, oh.. like you're one to talk jerry: elaine elaine: what? jerry: different for a man elaine: uh? jerry: we're expected to be superficial elaine: i'm not being superficial jerry: elaine, he's a.. he's a male bimbo, he's a mimbo elaine: he's not a mimbo, he's an exciting, charismatic man he just happened to have a perfect face jerry: and that's why you're going out with him elaine: no it is not jerry: you know, i think george has a non-sexual crush on him elaine: i think he does too jerry: i mean, every time i see him, it's tony this, tony that. george is like a school girl around him tony: so i said uh.. "hey dude, you better step off" george: "step off"? tony: yeah george: you said "step off"? wow, that is too much hey..huh hey (george turns the cap his wearing backwards like tony) tony, i huh, i just had this brainstorm for us. can you guess what it is? tony: no george: bowling! what do you say bowling? bowling's insane! bowling is crazy time tony: bowling? i don't think so george you get no rush from bowling george: rush? you want a rush? drop a ball on your toe my friend, talk about a rush, you'll be throbbing, you'll see visions tony: no no no no, i'm thinking.. rock-climbing george: all right! rock-climbing! j..just the 2 of us? alright! hey i'll make some sandwiches, what what do you like? tuna? peanut butter? tony: what.. whatever george: alright alright, i gotta buy some bread tony: yeah yeah, you know i'm definitely down for some rock-climbing george: me too, i am down, i am totally down, mark me down tony: cool, so what do you say we climb a rock maana? george: uh.. maana? huh maana might.. huh maana might be a problem, i'm supposed to have huh a boil lanced maana. huh you know i think they charge me if i cancel with only one maana's notice tony: hey kramer kramer: hey tony: hey, hey kramer my man, what are you doing maana? kramer: maana i'm doing nada tony: what do you say you scale some rock with me and george? george: uh tony? there's not gonna be too many sandwiches tony: c'mon kramer what do you say? george: huh kramer it's huh.. gonna be pretty dangerous up there kramer: na, i am down tony: yes.. alright buddy, take it easy kramer you down to it george? what's wrong? george: oh no, i am down! elaine: rock climbing? hehe.. where do you come off going rock climbing.. rock climbing? you need a boost to climb into your bed (elaine laughs) george: alright alright jerry: yeah yeah what is it with you and tony? what are you? it's like his sidekick now? george: yeah that's right. i like it. he's such a cool guy jerry: cool guy? what are you, in 8th grade? george: he's the first cool guy i've ever been friends with in my whole life. you know.. it's a different world when you're with a cool guy, he's not afraid of anybody. you should hear the way he talks to waitresses.. he gets free pie! kramer: hey george: hey nice move today kramer: what? george: horning on my rock climbing trip. it's just supposed to be me and tony kramer: he asked me george: you put him on the spot kramer: you know i think you are in love with him george: what?.. that's ridiculous! kramer: no no no, i don't think so. you love him george: you better be careful on those rocks tomorrow buddy. and you're not getting any sandwiches either jerry: you're making sandwiches? kramer: hello george: well i don't know if there's gonna be any place to eat up there kramer: who? george: hey elaine, does tony like peanut butter? elaine: hates it george: good thing i asked jerry: (to kramer) who is it? kramer: well she says jane jerry: yeah, so? kramer: well that voice, it's very familiar.. throaty, almost flinty jerry: did you say flinty? kramer: yeah yeah, (in a flinty voice) flinty kramer: (singing) yodel lay hee hoo! yodel lay hee hoo! hello! (kramer jumps around george from one side to an other) echo: hello kramer: hey george, hear that? george: please please i don't want to die up here. please, stop moving that's all i'm asking.. kramer!! kramer: let go, hey grab the rock george: what rock? kramer: the rock george: uh oh.. kramer: you gotta relax.. try the yodel (chanting) yodel lay hee hoo george: (sobbing) yodel lay hee hoo.. kramer: (chanting) yodel lay hee hoo george: (sobbing) yodel lay hee hoo.. tony: (voice from below) george! kramer! kramer: yeah! tony: take the rope, thread it through the carabiniere and knot it, and i'll climb up to where you are kramer: alright.. george you got it? (gives him the rope) george: yeah tony: hey george, you got anything to eat dude? george: (taking it out of his jacket pocket) yeah i got some sandwiches.. i got tuna.. and salmon salad tony because i know you don't like peanut butter kramer: what? tony: dude aah....... george & kramer: ahh.....!! jerry: oh look at that i got oil all over me. can i have your napkin? jane: what? jerry: you napkin i'm dripping jane: well where is your napkin? jerry: i used it up jane: well i need mine (looks at her watch) oh god loot at the time, i gotta get to work jerry: you know i'd like to hear about this job of yours jane: i told you already it's very boring you know i think i got a little too much garlic, can i have a piece of gum jerry: you're fine (goes to the bathroom) jane: oh how does this thing work? jerry: just press it elaine: it's elaine jane: oh come on up jerry: (coming out from the bathroom) who was it? jane: it's elaine jerry: oh..huh.. is she coming up? jane: yeah jerry: oh.. uh.. you know your breath is a little garlicky you better take some gum. jane: ok jerry: yeah have a couple of pieces, weak, weak gum yeah jane: hmm jerry: have some more, take some for the road. jane: isn't it too much? jerry: trust me.. nah it's good jane: smell? jerry: yeah stinks, terrible jerry: hi elaine elaine: hi jerry: this is jane elaine elaine: hi, nice to meet you finally jane: it's so nice to meet you (chewing) i look forward to saturday night elaine: yeah me too jane: ok so i'll see you saturday night jerry: saturday night (she leaves) elaine: what is with the gum? jerry: i know it's a big problem.. she puts like four pieces in her mouth, it's ridiculous, i don't think we're gonna be able to get together on saturday night elaine: because of the gum jerry: well it's too much, it's embarrassing elaine: why does she have to chew so many? jerry: she's one of these people, always have to be different george: she's there, i can hear her kramer: alright, who's gonna tell her george: huh you tell her kramer: it was your fault george: if you hadn't come, this whole thing wouldn't have happen (back on jerry and elaine's side, we can hear george saying "i was the one who was invited", jerry opens the door) jerry: well elaine: hey george & kramer: hey george: what are you doing here? elaine: did you have fun george & kramer: yeah kramer: for a little while elaine: where's tony? george: oh.. kramer: uh.. george: kramer was supposed to tie a knot kramer: whoa whoa ginga, you were supposed to tie the knot elaine: did something happened? george: well, tony.. took a bit of a tumble elaine: his face, did something happen to his face? kramer: well it all depends on what you mean by.. happen george: he..he's alive kramer: yeah elaine: what happened to his face, tell me, what happened to his face george: well you see he slipped, and he landed on a kinda of a.. kramer: rock george: yeah.. the ambulance got there very quickly kramer: it was a big rock george: we rode along all the way to the hospital kramer: yeah i sang 99 bottles of beer on the wall jerry: well aside from that from that, how did he like the sandwiches? elaine: so huh, what did the doctors say? tony: they said huh.. they said i'm coming along (tony's face is covered by bandages) elaine: but what else did they say tony: well, they said huh tony, try to keep it clean elaine: right yeah.. no i mean did they get into stuff like a.. long jagged scars or.. gross deformities, major skin grafts, stuff like that tony: i really don't remember, i was kinda out of it for the 1st couple of days, i was on a lot of medication, it was kinda like haze, it was pretty cool elaine: huh (smiles) but huh, in this medicated haze, in this woozy state, um do you recall the words.. radical reconstructive surgery being uttered? tony: i don't know, i don't know elaine: think tony, think tony: i'm drawing a blank, babe elaine: excuse me. george: hi elaine elaine: this isn't a very good time george george: i just wanted to talk to tony for a minute (hands elaine some stuff) tony: step off george, i don't wanna see you george: me? "step off" elaine: yeah, tony says you better step off george george: but..why, it wasn't my fault, i .. you asked me a sandwich, i .. i make such delicious sandwiches elaine tony: just beat it dude! george: here elaine here, superman (hands a comic book to elaine, who passes it to tony) please, next time it will only be the two of us tony: there won't be any next time george george: oh tony don't elaine: ok step off george, can u just step off? george: i i just.. but.. elaine: bye bye (shuts the door) oh.. (opens it back) george wait wait george: yes? elaine: would you throw this trash out (closes the door) jerry: i've been waiting a while for this. you know it's a shame tony got all banged up, we're not gonna be able to get together on saturday night jane: oh that is too bad, what a shame jerry: yeah, it's a damn shame, a damn shame! jane: well maybe he's feeling better jerry: yeah without a doubt, i'm down (kramer enters) oh hey how're you doing? jane this is my neighbor kramer kramer: hey jane: hello kramer (he acts all weird, a la kramer) kramer: well hello jane jane: jerry told me so much about you, i feel like i know you intimately kramer: (very quickly) oh i don't think so, no we never met, i never talked to you before on the phone, alright i'll see you later buddy jerry: wait, where are you going? where are you going? kramer: uptown, to the y jane: oh i'm going uptown too, you wanna split a cab? kramer: what about the driver? jane: what are you talking about? jerry: alright i changed my mind, uh yeah i don't think i'm not gonna go now jane: well ok i'll see you later, jerry: ok. jane: nice meeting you jerry: see ya. (jane leaves; after the door closes kramer jumps in shock) what's with you? kramer: that's her jerry: who? kramer: erika, she's erika jerry: oh you think she's erika, the phone sex woman kramer: jerry, that voice is tattooed on my brain, i'm telling you it's her jerry: oh you're crazy kramer: am i? or am i so sane that you just blew your mind? jerry: it's impossible kramer: iis it? or is it so possible your heard is spinning like a top? jerry: it can't be kramer: can't it? or is your entire world just crashing down all around you? jerry: alright that's enough kramer: yeaaaaah! elaine: he's supposed to get the bandages off on sunday.. what if? jerry: what? elaine: you know (acts like a monster) jerry: oh you're afraid he might look like zippy the pinhead elaine: yeah i mean, i mean what is my obligation here, you know we were just dating, it was probably gonna be over in a couple of weeks anyway jerry: oh i though you didn't care about his looks elaine: i lied jerry: aha elaine: are you kidding, he's a mimbo i know that.. but he's my mimbo, you know and even if he is a hideous freak maybe, maybe i can learn to love him, maybe in some final irony (jerry is looking the other way), i'll learn what love really is. you know jerry jerry: oh i'm sorry i didn't get most of that.. isn't that kramer over there? elaine: yeah, yeah jerry: hey kramer kramer: what? hey (walks by jerry and elaine's table) it's all set jerry: what's all set? kramer: erika is gonna meet me here, now we're gonna find out the truth jerry: how's you get her to meet here? kramer: i don't know, we have a certain chemistry jerry: oh my god jane: hi i thought i'd find you here jerry: hello.. erika jane: erika? what are you talking about? jerry: how can u say things like that over the phone? jane: what things? what are you talking about? jerry: selling sexual pleasure over the phone? jane: i sell paper goods you jerk jerry: paper goods? elaine: excuse me, do you have a tissue? jane: no, i'm sorry, i can't spare it, there's not enough to spare jane: where's the ladies' room (kramer points her) elaine: i have to go to the bathroom too (runs to be ahead of jane; jane stops and looks back at jerry; jerry shugs) [monk's: the bathroom] jane: oh damn elaine: something.. wrong? jane: yeah there's no toilet paper in here, i usually check but would you mind? elaine: i can't, i don't have it, i don't have a square to spare, i can't spare a square jane: hey, wait a minute, i know you elaine: that's right honey, and i know you! jane: no, no, no!!! elaine: here, take it jerry: thanks jane: (walks out of the bathroom, very furious; to jerry) don't call me anymore jane: (to kramer, in a very sensual voice) you either jerry: now of the course the thing is extreme sports. bungie jumping. to me if bungie jumping is a sport so is being a crash test dummy. just leaning does not make it a sport. it's like a wiley coyote idea isn't it? the thing i wonder about the sky diving is why do they even bother with the helmets? can you almost make it? why don't they just wear a party hat? what's the difference? you jump out of a plane from twenty thousand feet in the air the chute doesn't open i got news for you, the helmet is now wearing you for protection. later on the helmet's talking to the other helmets going "boy it's a good thing he was there or i would have hit the ground directly." elaine: hey, do you believe i got happy new yeared today? it's february. jerry: i once got happy new yeared in march. elaine: it's disgusting. jerry: it's pathetic. . . . hey, is it cold out? elaine: really cold. jerry: scary cold. elaine: i don't know. what's your definition of scary cold? jerry: that. (pointing at george) elaine: (laughing as she says it) what is that, ha? george: what? jerry: when did you get that? george: this week. my father got a deal from a friend of his. it's gore-tex. you know about gore-tex? jerry: you like saying gore-tex, don't you? elaine: hey, you can't even turn around in that thing. jerry: look at this elaine: hey george, can you feel this? can you ... george: all right, all right. knock it off. come on, let's go. elaine: oh listen we should stop off on the way and get a bottle of wine or something. jerry: yeah. (pointing at elaine as he goes into the bedroom) george: what for? elaine: these people invited us for dinner. we have to bring something. george: why? elaine: because it's rude, otherwise. george: you mean just going there because i'm invited, that's rude? elaine: yes. george: so you're telling me instead of them being happy to see me, they're going to be upset because i didn't bring anything. ttst --you see what i'm saying? jerry: the fabric of society is very complex george. george: i don't even drink wine. i drink pepsi. elaine: ya can't bring pepsi. (elaine starts putting on her coat and gloves) george: why not? elaine: because we're adults? george: you telling me that wine is better than pepsi? huh (snort), no way wine is better than pepsi. jerry: i tell you george, i don't think we want to walk in there and put a big plastic jug of pepsi in the middle of the table. george: i just don't like the idea that any time theres a dinner invitation there's this annoying little chore that goes along with it. jerry: you know, you're getting to be an annoying little chore yourself. kramer: all right, let's go. who's driving? (claps his hands and rubs them together) jerry: you are. i can't get that thing in my car. (referring to george) kramer: uh huh. jerry: where's the heat in this car? come on elaine warm me up, oh! i'm cold. just give me a little squeeze. elaine: jerry get off of me. get off of me! get off, get off of me! george: hehehehehe (higher tone laugh, though still quietly ) jerry: you're pretty comfortable up there eh, bubble boy? george: oh, yeah. you wish you had this coat. elaine: you know, i was just thinking. the four of us can't show up with just one bottle of wine. george: oh, here we go... elaine: what? george: why don't we get them a couch? (kramer laughs) well rent a u-haul -- well bring em a nice sectional. kramer: (low tone)yeahhehehehe elaine: we should bring some cake. will you stop off at the bakery? kramer: (low tone) all right, yeah. george: why don't you just get some ring dings from the liquor store? elaine: ring dings? george: hey, ring dings are better than anything you're gonna get at a bakery. kramer: ooooh i like ring dings. elaine: george, we can't show up at someone's house with ring dings and pepsi. kramer: hey your lights are on! (shouting out the window) george: (to kramer) it's a funeral procession. . . . (to elaine) and i got news for you. i show up with ring dings and pepsi, i become the biggest hit of the party. people be coming up to me, "just between you and me i'm really excited about the ring dings and the pepsi. what are we, europeans with the beaujolais and chardonnay . . . elaine: oh, kramer, thats the bakery. stop here. stop here. kramer: (low tone) all right. elaine: okay, let me out. you, eh, whatever your name is jerry: jerry. elaine: yeah, jerry, jerry -- come with me. kramer: okay, so we're going to get the wine and we'll pick you up here in ten minutes. elaine: yeah. kramer: all right elaine: ummm, i love the smell of bakeries. jerry: mmm. oh look elaine, the black and white cookie. elaine: mmm. jerry: i love the black and white. two races of flavor living side by side in harmony. it's a wonderful thing isn't it? elaine: you know i often wonder what you'll be like when you're senile. jerry: i'm looking forward to it. elaine: yeah. i think it will be a very smooth transition for you. jerry: thank you. all right, look at all this stuff. what are we getting'? elaine: chocolate babka! that's their specialty. jerry: love that babka. elaine: yeah, yeah! jerry: so listen elaine, when we get up to the door, you , you hold the cake box. elaine: why? jerry: i don't know, just standing there with a box, holding it by the little string. elaine: you think it's effeminate? jerry: it's a tad dainty. elaine: oh, we forgot to pick a number. jerry: oh, see that's not fair. we-we were here ahead of all these people. elaine: i-cu-di-ge--you think i should go and ask her for hers? jerry: ah, no, forget it. elaine: no, no no no, no it's not fair. just because they have a ticket doesn't mean they were here first. we were here, and we were ahead of them, and them, and her. come on let's just go ask em. come on. . . . excuse me. kramer: (exhales) well, i'm not finding a spot here. what do you want to do? george: ah, just double park. kramer: no, no. george: why not? kramer: i'll get a ticket! besides, what if somebody wants to get out of here? george: are you kidding? people get spaces this good, they never give em up. kramer: that's a fallacy. george: all right, i'll tell you what... why don't you go into the store and i'll wait in the car? kramer: why don't you go into the store and i'll wait in the car? george: because, i've got the coat. i can sit in the car and not get cold. kramer: so what i'm going to leave the car running and the heat 'll be on. george: does the heater even work in this car? kramer: no. george: oh, hey, eh, there's a spot right in front of the liquor store. you see kramer: i see. george: you see, hu, ho ho. elaine: but we were here ahead of you. barbara: how do i know that? jerry: well we saw you come in. david: well, that's easy for you to say. elaine: oh, yeah, right, that's something i do all the time, right. i make up stories to get ahead in lines at bakeries. clerk: 46? elaine: wait, wait a second are, are you barbara benedict? barbara: yes. elaine: oh my god. i, i know you. i-im, i'm elaine benes. do you remember we met at linda van grak's baby shower. barbara: i'm on my way over there right now. elaine: yeah me too. david: you're jerry right? jerry: david! elaine: well, this is a little awkward, isn't it? barbara: yes it is. elaine: you know we were here, ahead of you. barbara: you're not getting my number. jerry: oh so you still don't believe us. clerk: 47! barbara: thats us. elaine: ohhh, ok, fine, fine, go ahead. but listen let me tell you something as soon as i get there i'm going to tell everyone what a jerk you are. barbara: well, i'll be there ahead of you and i'll be telling them what a jerk you are. . . . (turns to the counter) i'll have the chocolate babka. clerk: you're lucky mrs. benedict it's our last one. george: alright, what are we getting? it's hot in here! kramer: ooo, what do you say we get a mouton cadet? george: what's that? kramer: well its a bordeaux. robust, bold, very dry. as opposed to a beaujolais -- which is richer and fruitier. ahh, here's one. twelve dollars. george: twelve dollars? i knew we should have gone to the bakery. i guarantee you theyre not getting no twelve dollar cake. kramer: all right look, i am going to have to pay you back later. i don't have my wallet. george: . . . why not? kramer: because i don't like to carry my wallet. my osteopath says that it's bad for my spine. it throws my hips off kilter. (makes a motion with his hips) george: "throws your hips off kilter" so where's your money? (pulls out his wallet) kramer: i never take it. george: so what do you do? kramer: oh, i get by. barbara: see you later (exits with the babka) elaine & jerry: see you later. jerry: that's the last babka. they got the last babka. elaine: i know. they're going in first with the last babka. jerry: that was our babka. elaine: you can't beat a babka. jerry: we had that babka. elaine: (exhales) they're going to be heroes. jerry: well what are we going to do now. if we can't get the babka the whole thing's useless. elaine: well how about a carrot cake? jerry: carrot cake? now w-why is that a cake? you don't make carrots into a cake. i'm sorry. elaine: black forrest? jerry: black forrest? too scary. you're in the forrest, oohh. jerry: how about a napoleon? elaine: napoleon? who's he to have a cake? he was a ruthless war monger. might as well get mengele. jerry: that was our babka. we had that babka! elaine: what's this one? clerk: that, cinnamon babka. elaine: (gasp) jerry: another babka? clerk: there's chocolate and there's cinnamon. jerry: well-well we got to get the cinnamon. elaine: no, but they got the chocolate. we'll be going in with lesser babka. jerry: i beg your pardon? cinnamon takes a back seat to no babka. people love cinnamon. it should be on tables in restaurants along with salt and pepper. anytime anyone says, "oh this is so good. what's in it?" the answer invariably comes back, cinnamon. cinnamon. again and again. lesser babka - i think not. clerk: 49? elaine: i'll have a cinnamon babka. jerry: and a black and white cookie, for me. peace! clerk: thatll be 13.05 george: all right here you go. kramer: yeuu. clerk: a hundred? i can't change that. george: you can't - huhu, all right let's go. kramer: wait a second. i can get change. kramer: hey, anybody got change for a hundred? george: are you crazy?! what are you doing?! you'll get us killed! kramer: what? george: don't go shouting we got a hundred dollar bill. people will be jumping out of windows on top of us. kramer: alright, let's go but something. then we'll get some change. george: i am not buying something just to get change. kramer: george, there's a news stand right over there. now come on. george: all right, what are we doing? kramer: just get some gum or something. george: pack of gum. here you go. (hands the clerk a $100 bill) clerk: what is it a hundred? i can't change a hundred. george: why not? clerk: you got to buy more than that. kramer: here, get a newspaper. (kramer hands george a newspaper) george: newspaper. clerk: not enough. kramer: clark bar. (kramer starts tearing the candy wrapper open with his teeth.) george: clark bar. clerk: keep going. george: were up to two dollars here. kramer: here, george, get a penthouse forum. george: i'm not getting a penthouse forum. kramer: why? no, thatll make great dinner party conversation. we'll read the letters at the dinner table. george: oh, that's nice. kramer: come on, did you ever read one of these? george: it's not real. they're all made up. kramer: ohh, it's real. george: well you know there is an unusual number of people in this country having sex with amputees! (grabs the forum from kramer and walks over to the clerk) . . . penthouse forum, newspaper, gum, clark bar. clerk: 6.75. george: ah, great. all right, with the wine i'm in over twenty dollars now. kramer: all right, all right. man1: (gibberish arabic yelling) ...big coat! big coat! george: yes, im sorry, it's a new coat. it-it's gore-tex. kramer: you better be careful with that thing... you'll start a war. jerry: uhm, see the key to eating a black and white cookie, elaine, is you want to get some black and some white in each bite. nothing mixes better than, vanilla and chocolate. and yet still somehow racial harmony eludes us. if people would only *look to the cookie* -- all our problems would be solved. elaine: well your views on race relations are just, fascinating. you really should do an op-ed piece for the times. (op-ed stands for opinions and editorials) jerry: hmm. look to the cookie elaine... look to the cookie. elaine: (looking in the box) well what is this? jerry: what? elaine: it's a hair. jerry: oh, oh take it back. let's get another one. elaine: no, we're late as it is. i'll just take it off. jerry: no no come on really, get another one. itll take a second. elaine: alright, alright. elaine: excuse me. man: hey hey, i'm on line here. elaine: no noo no, we just bought this. . . . um, you sold us a cake with a (quietly) hair on it. clerk: you have to take a number. elaine: we waited fifteen minutes for this. tst - you sell me a cake with a hair on it. then you want me to wait? . . . what are you doing (to jerry taking a number) youre gonna wait now? jerry: well, i'm not going to eat a cake with a hair on it. elaine: well it was a little hair. i took it off. jerry: a little hair? do you think that makes it better? elaine: what if it's your hair? jerry: what if it's your hair? elaine: (wh-wh) what is wrong with my hair? nobody takes better care of their hair than me. you can serve dinner on my head. jerry: who needs that misty herbal rain water crap they sell in the health food store. i use prell, the hard stuff. hundred proof - takes your roots out. (pretends to pull hair out) elaine: okay, fine, we'll just wait until she calls the number. jerry: well, maybe we should just forget about the cake? elaine: no i'm bringing cake! (looking worried and apprehensive) george: all right we got the wine. aren't we lucky? we got wine. whoopee whoa! imagine if we didn't bring the wine. we'd be shunned by society. outcasts! where's your wine? get out! kramer: (reading from the penthouse forum) "i know this is going to sound like a crazy fantasy but every word of this story is true" (exits to street) " a few weeks ago my girlfriend happened to mention to me how attractive she thought our new neighbor linda was" george: l-look at this? kramer: ahh. george: somebody double parked and blocked us in. d-does anybody know whose car that is? maybe there's a note on it. ohh-oh brother. no, no note. can you believe this? kramer: "well of course i noticed it too with those cannibal breasts and pouty lips. i don't have to tell you she was a knock out." (turns the page) george: i really can not comprehend how stupid people could be sometimes. can you comprehend it? kramer: no, no i can't comprehend it? george: i mean we can put a man on the moon but we're still basically very stupid. the guy who's car this is? he could be one of the guys that built the rocket. you see what i'm saying? kramer: well yeah, yeah. he could build the rocket, but-but he's still stupid for double-parking and blocking somebody in. george: so you really understand my point about building a rocket and double-parking. kramer: yeah, on one hand he's smart with rockets and on the other hand he's dumb with parking. . . . it's cold out here huh? george: maybe it's not even stupidity. maybe it's just a blatant disregard for basic human decency. yeah this how dictator's start. do you think mussolini would circle the block six times looking for a spot? kramer: how about idi amin, huh? george: ill tell you, if i was running for office i would ask for the death penalty for double-parkers. if this is allowed to go on this is not a society. this is anarchy! kramer: are those shoes comfortable? george: no not really. kramer: cause they look comfortable. george: i know that's why i bought `em but they're not comfortable. elaine: why couldn't we just take the hair off and go? jerry: no. thats out of the question. elaine: whhhy? jerry: because i had a bad experience with a hair when i was younger. elaine: what happened? jerry: i'd rather not talk about it. elaine: you can't tell me? jerry: all right . . . . i once found a hair in my farina and i freaked out. (*farina: a meal or flour obtained chiefly from cereals, nuts, potatoes or indian corn, and used as a breakfast food.) elaine: you found a hair in your farina? jerry: yeah. clerk’s voice (off camera): 56 elaine: what happened? jerry: well i started screaming, "there's a hair in my farina. there's a hair in my farina." then i ran out of the house and i was running and running. and like i was little but i could run very fast. and i-i just kept running (in the background -- clerks voice 57) and they found me like three hours later collapsed at a construction site. elaine: (quietly) wow. who's hair was it? jerry: my mother's. elaine: (quietly) ahhhhh clerk: 58! elaine: ooo, that's us. (hits jerry in the arm) jerry: oh, good. elaine: you sold us a hair with a cake around it. we'd like another one. clerk: (coughing and coughing, getting really bad) jerry: oh, that's lovely. elaine: ah, jerry: thats what you want to see, yeah. . . . yeah, you want to trade your hair for some phlegm. jerry: yeah thats a good deal -- you win the pennant with that trade, hair for phlegm. clerk: here you are. (hands elaine the cake box) elaine: okay. alright we got the cake now. where is george and kramer? kramer: hey double-parker! (honk, honk) show yourself. (honk, honk) come on out, im freezing! (honk, honk) george: we are really late now. we're in big trouble. big trouble. kramer: why? george: you know -- elaine. kramer: what about her? george: . . . i'm a little scared of her. kramer: you're scared of elaine? george: yes! kramer: why? george: did you ever see her lose her temper. i was once late cause i bought a panama hat -- she grabbed it by the brim, pulled it down so hard my head came right through the top of it. kramer: hey, let's go inside the liquor store. im freezin in here. george: why didn't you just wear a heavier coat? kramer: because i wanted to look good for the party. george: oh, hey, hey, hey! that's great! that's very nice. you know we've been waiting twenty minutes for you people?! what do you think, you're mussolini?! man2: back off *puff ball* it's not my car! (shoving georges shoulder, he turns and walks away) george: i wasn't talking to you. elaine: wait `til i get my hands on that george. i am gonna *pull* that big hood over his little head... tie the strings, and suffocate. you remember that panama hat? that was nothing. jerry: huh, wa? elaine: what's the matter with you? jerry: i dont know, i don't feel so good. elaine: what's wrong? jerry: my stomach, i , think it was that cookie. elaine: the black and white? jerry: yeah. elaine: not getting along? jerry: i think i got david duke and farrakhan down there. elaine: (mocking - in a dopey voice) well if we can't look to the cookie where can we look? jerry: oh my stomach. i feel like i'm going to throw up. elaine: wait, what about your vomit streak? jerry: i know, i haven't thrown up since june 29th, 1980. elaine: oh, oh! ooh my god. oh! man3: sooory. elaine: sorry? you almost took my toe off. why don't you watch what you're doing you, lunatic! (the man turns and walks away) elaine: (cont) ...uh, jerry, i think he broke my toe. (jerry gets up) w-where're you going? jerry: fourteen years down the drain. (points and walks off -- to the bathroom) george: do you think chickens have individual personalities? kramer: (shivering) i don't know. george: if you had like five chickens could you tell them apart by just the way they acted? or would they all just be walking around? bak, bak, baak, bak? cause if they have individual personalities im not sure we should be eaten `em. what's the matter with you? kramer: (shivering gibberish) waj cha jia ja clerk: can i help you guys with anything? george: oh, no no no -- we bought the wine here before, but now, you know we're bl-blocked in by some car double parked and we're just waiting for the guy to pull out. clerk: well wait outside. this isn't a hangout. george: but my friend here has hypothermia. kramer: (shivering) hypothermia. clerk: all right guys, take it outside. clerk: you're paying for these. elaine: how was it? jerry: as good as it gets. george: you know that coat was gore-tex. its worth a hell of a lot more than that, cheap chardonnay. kramer: (shivering) you know i'm freezin. im definitely freezin. i can't stop shaking. george: i'm cold too. at least you've got a coat. let's get in the car. kramer: (quietly) l-l (look) george: oh, my god that's saddam hussein. the dictator. man4: i wouldn't walk around without a coat in this weather; you'll catch your death of cold. so long. (waves to george and kramer as they wave back at him.) clerk: can i getca anything else? jerry: oh, no thanks. clerk: how about a nice box of "scram". george: s-s-somebody double parked, we couldn't help it. it might have been saddam hussein, we're not really sure. he eh, had a british accent though. george: what, what happened to you? elaine: somebody put a cane on my foot. just like the one i'm going to put up your... jerry: hey, what happened to your coat? and what is the smell? is-ya, what are you drunk? george: i had to give it to the liquor store guy. jerry: what for? george: i spilled some chardonnay. so, what did you get? elaine: cinnamon babka. george: cinnamon? why didn't cha get chocolate? jerry: george! elaine: here, here's your cake. (just about tosses it at the woman) george: and your wine. elaine: see ya'. jerry: see ya'. jerry: i love these nature shows, ill watch and kind of nature show, and its amazing how you can always relate, to whatever theyre talking about. you know like youre watching the african dung beetle and youre going boy, his life is a lot like mine. and you always root for whichever animal is the star of the show that week -- like if its the antelope, and theres a lion chasing the antelope you go, run antelope run! use your speed, get away! but the next week its the lion, and then you go get the antelope, eat him, bite his head! -- trap him, dont let him use his speed! elaine: (to the phone) well did he bring it up in the meeting? jerry: elaine, see this t-shirt, six years i've had this t-shirt. it's my best one, i call him golden boy. elaine: yeah, i'm on the phone here. jerry: golden boys always the first shirt i wear out of the laundry. here... touch golden boy! elaine: no thanks. (to the phone) yeah, yeah i'll hold. jerry: but see look at the collar, it's fraying. golden boy is slowly dying. each wash brings him one step closer, that's what makes the t-shirt such a tragic figure. elaine: why don't you just let golden boy soak in the sink with some woolight? jerry: no!!! the reason he's the iron man is because he goes out there and plays every game. wash!!! spin!!! rinse!!! spin!!! you take that away from him, you break his spirit! elaine: (to the phone)yeah. oh! what? he is! oh! thats fantastic! i'm so excited! yes i'm excited, ok, ok i'll be in soon! yeah, yeah, i'm coming, i'm coming! ok bye. (elaine jumps up and dances around) yuri testikov, the russian writer! jerry: the guy whos in the gulag?! elaine: yeah! pendant's publishing his new book, and i'm working on it! lippman and i are gonna go to the airport on thursday and pick him up in a limousine! jerry: you wanna barrow golden boy! elaine: oh! (pushing jerry) do you know what this means, it's like working with tolstoy! jerry: hey ya know i read an unbelievable thing about tolstoy the other day, did you know the original title for "war and peace" was "war--what is it good for?"! elaine: ... (looking at jerry for a second then, mockingly nods her head back and forth) ....ha ha ha ha. jerry: no, no i'm not kidding elaine it's true, his mistress didn't like the title and insisted that he change it to "war and peace"! elaine: but it's a line from that song! jerry: that's were they got it from! elaine: really? jerry: i'm not joking! george: you can't handle the truth! (he salutes) (imitating jack nicholson [a.k.a. col. nathan r. jessep], from the 1992 movie a few good men) jerry: what? george: (still in jacks voice) i'm working on my jack nicholson, you can't handle the truth! (he salutes) elaine: what is this your mail? (she takes a magazine and starts flipping through it) george: yeah, i grabbed it on the way out, i don't want my mother reading it. elaine: oh! your alumni magazine. jerry: your mother reads your mail? george: yeah. jerry: what do you mean like post-cards an...? george: no, anything. jerry: she doesn't open...? george: she'll open! jerry: you've caught your mother opening envelopes! george: yes. jerry: what did she say? george: i was curious! (imitating his moms voice) jerry: isn't that against the law? george: maybe i can get her locked up. elaine: (gasp) hey jerry, you're in the alumni magazine! listen to this jerry seinfeld has appeared on "david letterman" and the "tonight show" and he did a pilot for nbc called "jerry" ...that was not picked up. georgie, how come theres not anything about you in here? jerry: he can't handle the truth! elaine: all right (slaps the magazine down on the counter) this is too much fun, i gotta get back to work. (heads for the door) kramer: (singing) johnny yuma was a rebel, yeah! ... kramer: are you all right? elaine: yeah. (startled) kramer: unh.... sorry. elaine: its ok. (starts walking down the hallway) kramer: yeah. oh, here, wait wait (walks a few steps to catch up to her as she stops) ah, maybe you could ah, use this (he searches through his jacket) ah, here, it's a electronic organizer... elaine: what? kramer: ah, yeah. uh... elaine: wh..? kramer: yeah, here it is... yeah. kramer: you know, for phone numbers, addresses, keep appointments, everything. elaine: wow! kramer: it's got an alarm that beeps! elaine: oh! i can't believe this, kramer! kramer: yeah. elaine: i've been wanting to get one of these things! are you sure that... elaine: ...are you sure you can't use this thing? kramer: no no no. i got all my appointments up here. (he points to his head) elaine: where'd you get this? kramer: well, the bank, i opened up a new account. george: hey, did you see that whale thing on tv last night? jerry: no. george: i am such a huge whale fan. these marine biologists were showin' how they communicate with each other with these squeaks and squeals, what a fish! jerry: it's a mammal. george: whatever. (george looks to the table) hey new tape recorder? jerry: yeah, got it from the bank. kramer: (overly excited) hey (claps hands one time) jerry: hey. george: hey. kramer: (still overly excited) who wants to have some fun! jerry: i do. george: i do. kramer: (once again, overly excited) now are you just sayin' you want to have fun or do you reallllly want to have fun?! jerry: i really wanna have fun. george: i'm just sayin' i wanna have some fun. kramer: right now there six-hundred titleists that i got from the driving range in the trunk of my car. why don't we drive out to rock-a-way and hit `em-----------(very over excited) into the ocean! now picture this.... we find a nice sweet spot between the dunes, we take out our drivers, we tee up and (he makes a golf stroke), that ball goes sailing up into the sky holds there for a moment and then....... ..... gulp! george: come on. ya wanna go get some lunch? jerry: yeah, let me just stop by the cash machine and i'll meet you over at the coffee shop. george: yeah, i'm gonna get a paper. george: keep your head down. kramer: yeah! (kramer takes a huge imaginary swing) jerry: (he hits a few keys and looks over at her) cash advance... yes (hits a key) no (he looks over again) balance inquiry... no (he looks again) receipt.... no (he looks again) processing... processing... (he opens the box, pulls out his money and then looks at the woman and says) i won! diane: jerry? jerry: yeah. diane: its diane, diane deconn, from queens college. jerry: oh diane. diane: (laughing a little) how are you? jerry: good, good. diane: (sighs) how long has it been? jerry: since college. diane: huh. i've been seeing you on tv you're doin' great. jerry: yeah pluggin' along. diane: you know i got the alumni magazine. what ever happened to your friend george? i notice i never see his name in there. jerry: well he's kind of modest. diane: he was always such a goof-off. i mean did he ever get anywhere? jerry: sure. diane: yeah? what field? jerry: marine biology. diane: george is a marine biologist?! jerry: yeah, pretty damn good one, too! diane: i can't believe it. i-i would never had thought jerry: yeah... hes specializing in whales. he's working on lowering the cholesterol level, in whales all that blubber -- quite unhealthy. you know its the largest mammal on earth but as george says "they don't have to be." george: diane deconn? you saw diane deconn! jerry: something huh? george: ahh! how'd she look? jerry: she looked great. george: ahh! (closes his eyes and rolling his head back) umh! jerry: she asked about you. george: she asked about me? what did- what did she say? jerry: "how's george?" george: george! she said george? she remembered my name. (loudly -- to a passing waitress and the rest of the restaurant) diane deconn remembered my name. she was the "it" girl! jerry: yeah she asked for your number, i think she's gonna get in touch with you. george: (pauses for a few seconds) ok, i'm tellin' you right now - if your kiddin' around i'm not gonna be able to be your friend anymore. i'm serious about that. you got that. jerry: i got no problem with that. george: good. cause if this is a lie, if this is a joke, if this is your idea of some cute little game we're finished! jerry: expect a call. george: oh my god he's not kidding. (exhale gasp) jerry: now, i should tell you that, at this point, she's under the impression that youre - a - ah george: a what? jerry: a marine biologist. george: (pauses) a marine biologist? jerry: yes. george: why am i a marine biologist? jerry: i may have mentioned it. george: but i'm not a marine biologist! jerry: yes i know that. george: so? jerry: why, you don't think it's a good job? george: i didn't even know it was a job. jerry: oh it's a fascinating field! george: well what if she calls me? what am i supposed to say?! (hand hits the table) george: algae, obviously plankton, hmhm. i don't know what else i could tell ya, ah, oh i-i just got back from a trip to the galapagos islands, i was living with the turtles. [limo driving on the street -- then inside the limo: elaine, lippman, and testikov are talkin'] lippman: we have got you in a very nice hotel, i-i don't know how you like to work, but ah, i can arrange for an office if you like. testikov: (russian accent) i work in hotel. lippman: oh. testikov: is better. testikov: away from all your little petty bickerings and interference. lippman: you know, tolstoy use to write in the village square. the faces inspired him. testikov: (proudly) he did not need inspiration god spoke through his pen. hu hu hu (pounds his fist lightly on his heart) elaine: ohh, that is so true! (clutches her hands to her chest) lippman: yes. elaine: although one wonders if "war and peace" would has been as highly acclaimed as it was, had it was published under it's original title "war---what is it good for?" lippman: what? elaine: yeah. mr. lippman. it was *his mistress* who insisted that he call it lippman: elaine [background cars: honk honk] elaine: "war and peace." lippman: elaine elaine: "war--what is it good for." (sings) absolutely nothin' huh! say it again! ahehehehe testikov: (quietly) ahhuuh elaine: (spoken to testikov) that's a song lippman: it (frustrated and trying to keep her from saying more) elaine: they-they took it from tolstoy. lippman: no. e-elaine. testikov: war--what is it good for? lippman: it-no- it's just her sense of humor. elaine: no its not. that really is true. testikov: what is that noise! lippman: its not elaine: yes it is lippman: no its not!! testikov: that noise! lippman: it-it-its her purse. testikov: where is that noise? its traveling up my spine! into my brain! elaine: oh, i lippman: it's coming from your purse. elaine: oh it must be my new organizer. testikov: that noise! lippman: yesturn it off. elaine: right, i think its this lippman: no its the button. elaine testikov: i can not stand it! lippman: it's the button at the top, the top. elaine: ok. i dont quite know testikov: will you turn it off! lippman: the one at the top. elaine: yeah, im gonna work on that testikov: aaach! lippman: yeah ohoo. jerry: i did it for you. george: i dont know whatcha had to tell her that for. you put me in a very difficult position, marine biologist! i'm very uncomfortable with this whole thing. jerry: you know with all do respect i would think it's right up your alley. george: well it's not up my alley! it's one thing if i make it up. i know what i'm doin, i know my alleys! you got me in the galapagos islands livin' with the turtles, i don't know where the hell i am. jerry: well you came in the other day with all that whale stuff, the squeaking and the squealing and george: look, why couldn't you make me an architect? you know i always wanted to pretend that i was an architect. well i-i'm supposed to see her tomorrow, i-i-i'm gonna tell her what's goin on. i mean maybe she just likes me for me. kramer: hey. jerry: hey. kramer: hey ya want these (he throws down the golf clubs -- kicks the bag hard) i don't want em! jerry: what? kramer: i stink! i can't play! the ball is just sitting there, jerry, and i can't hit it! i only hit one really good ball that went way out there! jerry: well what happened? kramer: i have no concentration! jerry: what, what, what's wrong with you? kramer: sand, i can get rid of the sand. (he sits at the table, looking down his shirt) look theres still some in here, it won't go away! look i even got sand in the pockets! jerry: hey come on, you're getting it all over the floor! jerry: (to the phone) hello yeah yes it is really ah, ah could you hold on a second? (to george and kramer) hey listen to this, some woman found an electronic organizer, my name was in it, she wants me to help her track down the owner. george: how'd she find it? jerry: shes waking down the street and it hit her in the head! corinne: so i am walkin' along, minding my own business when all off the sudden this thing comes flying out of nowhere and clonks me right on the head. jerry: wow. corinne: yeah, so they took me to the hospital jerry: yeah corinne: and they put me in this thing, that feels like a coffin, for forty-five minutes. have you ever been in one of those things? you could go berserk in there! jerry: well you have insurance... corinne: i wish! jerry: unbelievable! corinne: yeah. jerry: what is with this thing. corinne: (hits the organizer) i don't know, it never shuts up. so anyway, you could see why i would be interested in finding this person. jerry: absolutely. you should not have to pay for that. corinne: (hits the organizer, picks it up and hits it on to the table -- shouting) stop it! stop it! jerry: let me have a look at this thing. corinne: ya know it was somebody told me they thought they saw that thing come out of a limousine. jerry: typical rich people, using the world for their personal garbage can. corinne: boy am i lucky your name came up. i just pushed a button. jerry: i would like to know what my names doin in this creep's organizer to begin with. corinne: yeah. jerry: who do i know who would have even been in a limousine yesterday anyway. uhh-o h-owow! kramer: wha-- oh, hey. elaine: hey, "great" organizer you gave me. kramer: oh, you liked it huh. elaine: it wouldn't stop beeping, in the car so testikov, through it out the window. kramer: oh. (continuing to itch and scratch from the sand) elaine: i transferred everything in there. i threw out my old book. i'm lost now, kramer. elaine: what, what is it? kramer: the sand, it's everywhere! (blows on his arm) elaine: ok i'll see you later. kramer: yei- jerry: oh, there you are! elaine: there you are! jerry: so? elaine: so? jerry: so what do you have to say for yourself? elaine: so what do you have to say for yourself? jerry: why should i have anything for say for myself? elaine: "war-- what is it good for?"! jerry: a-ahahahahah. who told you? elaine: a-hu hu hu hu. yuri testikov, the russian writer! hellooo! jerry: you told testikov, (elaine nods) that tolstoy wanted to name his book "war-- what is it good for?"? elaine: uh-hu. and do you know what happened? jerry: can i take a guess? elaine: oh, please. jerry: oh i don't know, he threw your organizer out the window? elaine: what, how did you know that? jerry: because i know who has it. elaine: (gasps) how did you find it? jerry: because the woman who got hit in the head with it found my name, called me up, and we met! elaine: (gasps) where is it, give it to me! jerry: i don't have it! elaine: why not. jerry: because she's not returning it until she gets the money back for the hospital bill. elaine: but i didn't do it. testikov did it, he should pay for it! jerry: how much is testikov getting from pendant for this book? elaine: one million. jerry: well that's a start. george: then of course with evolution, the octopus lost the nostrils and took on the more familiar look that we know today. diane: uh-really? george: yeah, but if you still look closely you can see ah, a little bump where the nose use to be. huhuhuhu. diane: wow. george: but enough about fish, huhuhu. i can discuss other things you know, ah architecture. huhu. (makes a wide gesture with his arms) jerry: you know what room testikov's in? elaine: yeah, 308. oh, i'm crazy for doing this! jerry: well, you want your organizer back don't you? elaine: why are you so interested -- you want to take her out? jerry: hey you know when superman saves someone no one asks if he's trying to hit on her! elaine: well, you're not superman. jerry: well you're not lois lane. elaine: oh. listen, you got the tape-recorder. jerry: yeah i got it. you sure you want to do this? (hands elaine the tape recorder.) elaine: yeah i gotta get testikov on tape. if this woman ends up in the "new england journal of medicine" i'm not gonna pay for it. jerry: oh, here she comes. jerry: hi. corinne: hi. jerry: elaine, this is corinne. corinne: hello. elaine: hi, (sighs) you got the organizer? jerry: all right lets go. we'll meet you back down here in ten minutes, hopefully with the money. diane: your parents must be so proud of you, george. george: oh, they're busting! diane: hmhm. diane: what are those people doing over there? testikov: (in a loud and cranky voice) what, come in - come in - come in miss benes! that is if you can spare a minute from your busy schedule! and you bring guest for my entertainment? elaine: um, yes this is my friend jerry. um, he accompanied me, ya know (clears throat), single women in a big city can be dangerous, so jerry: yeah. th-that's why i where these sneakers, in case of any trouble -- zip, i'm gone. (makes a running motion with both arms and his right foot) testikov: yeah, yeah. the sneakers. all the americans with the sneakers. always running from something. ya ya, well sit, stop running, ehh. two minutes, i give you latest manuscript! jerry: oh! rimsky -- great great book if i may say so sir. i almost read the whole thing. elaine: hmm. (she nods in agreement) corinne: what! hotel clerk: if you can't thing off, i'll have to ask you to leave. corinne: i'm waitin for two people! (takes a drag on the cigarette) hotel clerk: well you can wait for them outside. corinne: yeah, (she blows smoke out as she speaks -- it rises as in front of her) i guess i'd better. i wouldn't want to take any attention away from the hookers! hotel clerk: all right, all right. out, out. corinne: whatever you say, cro..w-well! diane: what's going on over here? woman at beach: there is a beached whale, she's dying. voice: is anyone here a marine biologist? testikov: here is latest draft. i see you next week. same time, same day. (smacks the manuscript into elaines hand) on time please. elaine: (quietly) ok. jerry: it was nice meeting you testikov: aah. jerry: youre a real pleasure. (jerry is being sarcastic) testikov: ya ya. (wipes his nose with a handkerchief) elaine: uh-oh-ah, by the way mr. testikov um, do you remember the other day when we were in the limo and ah, my organizer started making noise and you threw it out the window? testikov: (quietly) yes. how could i forget? heehe. elaine: ( laughs) well um, would you believe that it actually, hit somebody in the head. jerry: right in the head! (leans in and points at testikov) elaine: boing! hehe hehe. (makes a hand gesture to her forehead and away) testikov: (shouting) what is that noise! elaine: oh thats nothing. um and anyway um testikov: whats going on huh! (he grabs elaines purse) that noise! elaine: no, no that's my purse! testikov: that noise! elaine: no, get-get off my purse! testikov: agh, its recorder! elaine: no that's radio! testikov: ha! (he clicks the player off) you are spying on me! crowd: come on! save the whale! you gotta do it! diane: save the whale george... for me. george: so i started to walk into the water. i won't lie to you boys, i was terrified! but i pressed on -- and as i made my way passed the breakers a strange calm came over me. i-i don't know if it was divine intervention or the kinship of all living things but i tell you jerry at that moment i was a marine biologist! elaine: george ive just reading this thing in the paper, it's unbelievable! george: i know i was just telling them the story. kramer: well come on george, finish the story. george: the sea was angry that day my friends like an old man trying to send back soup in a deli! george: i got about fifty-feet out and suddenly, the great beast appeared before me. i tell ya he was ten stories high if he was a foot. as if sensing my presence he let out a great bellow. i said, "easy big fella!" and then, as i watched him struggling i realized, that something was obstructing its breathing. from where i was standing i could see directly into the eye of the great fish! jerry: mammal. george: whatever. kramer: well then, what did you do next? george: well then, from out of nowhere, a huge tidal wave lifted me, tossed like a cork and i found myself right on top of him, (elaine gasps quietly ahhhh) face to face with the blow-hole. i-i, i could barely see from the waves crashing down upon me but, i knew something was there so i reached my hand in, felt around and pulled out the obstruction! kramer: what is that a titleist? george: (silently squinches his mouth and nods at kramer) kramer: a hole in one eh. jerry: well the-the crowd must have gone wild! george: ohh yes, yes. yes jerry they were all over me. it was like rocky 1, hm. diane came up to me, threw her arms around me kramer: (quietly) um-hm. george: kissed me. we both had tears streaming down our faces. i never saw anyone so beautiful. it was at that moment that i decided to tell her that, i was not a marine biologist. jerry: wow! what'd she say? george: told me to "go to hell!" and i took the bus home. jerry: all right lets go. elaine: what, are you in a bad mood? jerry: ahhh got my laundry back. elaine: ohhh! golden boy? jerry: he didn't make it. elaine: i'm sorry. (pats him on the arm) jerry: yea. (pulls at the t-shirt) this is golden boy's son baby blue. kramer: (to george) what's with you? george: sand. it's everywhere kramer: yep. jerry: aren't mannequins an insult to your imagination? you couldn't possibly visualize a sweater so we'll show you on this life size snotty puppet. i guess when they finish with them they become crash test dummies. that's the end of the line for a mannequin. "what ever happened to bob?" "have you seen that new volvo commercial? he's got a bulls eye right in his face." mannequins are only used for car accidents and fashion, i guess these are the two situations that it's impossible for us to imagine ourselves. well dressed or getting killed. i'm sure there is some pro-mannequin organization that doesn't even like you to use the term mannequin. "hey they're not mannequins, they're the life deprived." audrey: hum! that was really good! jerry: yeah. are you full? audrey: oh no, i've had just enough. jerry: ah, here we go... apple pie! best apple pie in the city. (jerry starts eating) mmm, delicious. i'm not waiting for you. take some. audrey: no thanks. jerry: you're not gonna have any? audrey: no (with a disgusted face) jerry: do you not like apple pie? audrey: no, it's not that. jerry: well, at least taste it. audrey: no (a resolute "no") jerry: you won't even taste it? audrey: no. jerry: come on, try it! (audrey shakes her head doing "no") a little taste! (still shaking) come on. (still shaking) jerry: she wouldn't so much as taste it. george: did she say why? jerry: no. she wouldn't say anything. she just kept shaking her head like this (imitating audrey) george: maybe she's diabetic. jerry: no. she carries entemanns doughnuts in her purse. george: maybe you said something that offended her. jerry: the only thing i can think of is i told her we should have those moving walkways all over the city. george: like at the airport? (getting excited) jerry: yeah. george: that's a great idea!!! jerry: tell me about it! george: we could be zipping all over the place. jerry: they could at least try it. george: they never try anything. jerry: what's the harm? george: no harm! jerry: (still talking to george) i'm sorry. there's no reason for her not to taste that pie. elaine: who wouldn't taste a pie? jerry: audrey. elaine: dump her. jerry: boy, i never broke up with anyone for not tasting pie??? elaine: (piffling) i once broke up with someone for not offering me pie. jerry: you did? elaine: he could be eating a gyro, he wouldn't offer me anything. it's a sickness. george: well, i can't walk anywhere now. i'm just gonna be wishing there were walkways. (seeing elaine removing her shoe) what are you doing? elaine: i got a pebble. jerry: boy, i never heard of that happening to a woman? elaine: what the hell does that mean? kramer: hey! elaine. go like this. (imitating a mannequin posture) elaine: what? why? kramer: do it. do it. this. elaine: like... (doing it) like this? kramer: oh yeah! it's you! elaine: what's me? kramer: (to the gang) there's a clothing store downtown. they got a mannequin in there that looks exactly like elaine. elaine: get out! kramer: it's uncanny! it's like they chopped off your arms and legs, dipped you in plastic, and screwed you back all together again, and stuck you on a pedestal. it's really quite exquisite. george: kramer, what's the name of the store with the mannequin? kramer: rinitze. (he takes jerry's spatula and starts rubbing his back with it) oh yeah... jerry: (to kramer) uh... may i help you? (wondering what the hell's kramer doing) kramer: it's this itch. i was watching tv without my shirt on, and one my couch cushions didn't have any fabric on it. george: wait a minute, rinitze? don't they have somme really cool suits in there? kramer: real boss! elaine: i'm going down there. george: i'm gonna go with you. i gotta get a new suit. i got a second interview with mackenzie, and i think i'm really close. they're all taking me out to lunch on friday. elaine: (grabbing george by the arm, hurried to leave) let's go. george: all right. all right. (they both leave) kramer: (leaving too, with the spatula) are you gonna need this? jerry: keep it. (implied please) elaine: it looks exactly like me. george: it's like some pod landed from another planet and took your body. don't fall asleep elaine. elaine: what's going on here? how do you think this happened? george: whoa, look at this. this is a beautiful suit. huh? elaine: you think that could be a coincidence george? is that possible? saleswoman: (european accent) you are perfect for that suit. george: you think so? elaine: (to the saleswoman) excuse me. where did this come from? saleswoman: i don't know. george: you really think this looks o.k. on me? saleswoman: fabulous. perfect fit. and it's the last one we have. elaine: i'm sorry. you can't tell me where the mannequin came from? saleswoman: i told you, i don't know. elaine: (irritated, but still polite) well, is there somebody around here i could talk to who would know? saleswoman: why? elaine: isn't it obvious? this mannequin looks exactly like me. elaine: (upset) did you just roll your eyes at him? because let me tell you something, if anobody should be rolling their eyes, it is me at him about you. saleswoman: i think maybe you're flattering yourself. that mannquein is wearing a twelve hundred dollar gaultier dress. elaine: what are you saying, that i'm not good enough for this hideous dress? (looking at her name tag) listen natasha... i wouldn't be caught dead wearing your crummy little euro-trash rags. (to george) i'll meet you outside. saleswoman: what is her problem? george: ah, pfft! what can you do? (looking at a tag on the suit) is this the price tag? saleswoman: yes. george: yes, hello. party's over. (taking off the suit) saleswoman: i'll tell you a little secret. we're having an unadvertised sale starting friday, that suit will be half-price. george: so you think you can put the suit aside and hold it for me? saleswoman: oh, i'm afraid i could't do that. it wouldn't be fair to the other customers. george: oh yes, of course, and we have to be fair. (placing the suit further away in the rack) elaine: so, i found out who supplies the mannequins and i called 'em up. kramer: well, how did they get your face? elaine: i don't know. they wouldn't tell me. (jerry is not listening, he's looking at two women sitting in the other booth) jerry? je... hello? jerry: (jerry gets up and walk to these persons) uh... excuse me. i couldn't help but notice you offered her a piece of your pie. woman 1: that's right. jerry: and you waved it away. woman 2: right. jerry: did you give her a reason? woman 2: yes, i was full. jerry: you were full. so you gave a reason. you didn't just shake your head. woman 2: no, i'm not a psycho. jerry: exactly. you're not a psycho. you've been very helpful. thank you very much. allow me to leave the tip. (sits back with elaine and kramer) well, i think we proven who the psycho is. elaine: we certainly have. kramer: hey, elaine scratch my back. elaine: no way! kramer: come on, one lap around. elaine: no. kramer: it will be a funky adventure. elaine: kramer, forget it. kramer: jerry, how about you? jerry: i think you know my policy. kramer: i'm going home to spatula. (picks up the check and walks to the cashier) elaine: i thought george was meeting us here? jerry: no he's going downtown to guard the suit. elaine: he's guarding a suit? olive: (the cashier; to kramer) do you need some help with that itch? kramer: madam, i pray you're not toying with me. (olive shows her long finger nails) whoa. olive: turn around. kramer: oh, all right. (olive scratches, kramer enjoys, elaine and jerry watch.) saleswoman: (makes a guy trying the suit) it fits you perfectly. bob: you think so? (she nods and walks away) george: (outside, looking the guy trying the suit through the window, and thinking out loud) what's this? can't i leave this place for a second? (goes in, take off his jacket, walks to the guy and talks to him with an european accent) can i help you? bob: i'm buying the suit. george: no, no, no, this suit is not for sale. (tries to take off the suit from the guy) bob: excuse me, do you work here? george: (leaving the european accent) no. (laughs) bob: then what the hell business is it of yours? george: look, i'm doing you a favor. they're having an unadvertised sale. this suit is gonna be half-priced starting ... monday. bob: really? george: yea yea yea bob: this monday? george: yes. now take off those pants. saleswoman: actually, the unadvertised sale starts on friday. bob: friday? thanks. (gives a dirty look at george and leaves) george: (to the saleswoman) you know honey for an unadvertised sale, you're doing a lot of yapping about it. jerry: i can't beleive your father owns this place. so how are the desserts here? audrey: everything is delicious. jerry: you've tasted them? audrey: um-hmm, i think almost all of them. jerry: oh i see they have apple pie. audrey: mmm-hmm. jerry: you've had the apple pie? audrey: many times. jerry: audrey, i got to be honest with you. i'm a very curious guy. it's my nature. i need to know things. not tasting the apple pie the other day, i can't get past it. you obviously like pies. you carry doughnuts in your bag, you're not averse to pastry. surely you could see how such a thing would prey on my mind. audrey: can we drop this? jerry: (like a frustrated child) why can't i know? audrey: ah! poppie. poppie: sweetheart, hello. audrey: poppie, this is jerry. poppie: welcome (shakes jerry's hand) jerry: hello poppie. poppie: don't fill up on the bread. i'm making you a very special dinner. very special. (he leaves) jerry: the pies. i'm going to the bathroom. you know. (he leaves) [poppie's restaurant: bathroom] poppie: ah, jerry! tonight you in for a real treat. i'm personnaly going to prepare the dinner for you and my audrey. audrey: jerry are you ok? jerry: huh? audrey: is anything wrong? jerry: no, nothing. audrey: you look like you've seen a ghost. olive: (to another cashier) i'll see you tomorrow. kramer: hey. these are for you olive. olive: thank you. kramer: ohh! poppie: here it is. audrey: wait till you taste this. (she eats) poppie, this is perfect. poppie: (to jerry) well? audrey: jerry have some. (jerry shakes his head doing "no") you're not gonna taste it? (still shaking) jerry. (still shaking) jerry: so she tought i did it to get back at her george: why didn't you just tell her? jerry: i don't think that's the kind of thing you wanna hear about your father. but i'll tell you when he came out of that bathroom and he was kneading that dough, it was a wild scene. george: how could he not have washed? jerry: even if you're not gonna soap up, at least pretend for my benefit. turn the water on, do something. george: yeah, just like i do. jerry: you know a chef who doesn't wash is like a cop who steals. it's a cry for help, he wants to get caught. george: well, i think poppie's got some problems. there's a whole other thing going on with poppie. so how did you leave it? jerry: we haven't spoken. kramer: well, i'm not gonna need this anymore. i got olive. (jerry throws out the spatula) george: olive? kramer: yeah. my lady friend down at monks. george: oh. kramer: you guys ought to see the way she works her nails across my back. ohh! she's a maestro. the crisscross. the figure eight, strummin' the ol' banjo, and this wild, savage free-for-all where anything can happen. george: i got to get downtown and buy that suit. the store opens in twenty minutes. kramer: is that elaine mannequin still there? george: yeah. kramer: yeah. george: the last time i saw her, she was naked. jerry: yeah, and poppie's got problems... bob: where is it? where is it? george: (george takes out the suit from the other rack) well, look at this. (innocently) this doesn't belong here! someone has made a terrible mistake. bob: you bastard! you hid the suit. george: hid? i have no idea how this suit got misplaced. nevertheless, i do believe i shall purchase it. bob: i hope you rot in that suit. look i'm gonna get you for this. i don't know how, but i'm gonna get you. you are going to pay! george: oh, i'll pay. half-price. arrivederci my fellow 40-short. elaine: so i made a little list of people who might've made the mannequin. you know, possible suspects. jerry: yeah, all right. go ahead. (not very interested) elaine: there's this blind guy at a party i was at, and he felt my face for a really long time. you know, to see what i looked like. he almost put his finger up my nose. jerry: (very disinterested) hum... ok, what else you got? elaine: ok, i'm not gonna tell you the rest of the list. jerry: oh, because i didn't think the blind guy did it? elaine: because you have an attitude. jerry and elaine: oh! jerry: georgio! nice duds! george: you're telling me. (he walks around and the suit makes a swooshing sound) so, what do you think? jerry: did you hear something? elaine: yeah, like a swoosh. jerry: yeah. elaine: (feels the fabric) it must be the fabric. it's rubbing between you thighs when you walk. that's what's making that swooshy sound. george: i probably didn't hear it on the way over because of the street noise. (he panics) this is no good! i got to meet these guys from mackenzie for lunch in half an hour! jerry: so what? what would they care? george: this mackenzie, he's a bit of a nut. someone told me he fired the last guy because his nose whistled when he breathed. jerry: so you think you're not gonna get the job because your pants make a noise? george: let's say it comes down to me and one other guy. he's got a nice quiet suit, and i'm whooshing all over the place! who do you think he's gonna hire? jerry: you know, i think all these interviews are making you nuts. kramer: hey jerry, i saw your girlfriend was in here before. jerry: audrey? kramer: yep. sat down, had herself a piece of pie. jerry: was it apple? kramer: what else? jerry: this woman is bending my mind into a pretzel! stranger: do i know you? elaine: hmm... no you don't. stranger: yeah! you were wearing a g-string and one of those bras with points. elaine: the mannequin! jerry: oh, i got to see this thing. jerry: boy, the resemblance is uncanny. elaine: you think you can pose me however you want? that's my ass in your window! saleswoman: it's our store and our mannequin, we can do whatever we want with it. elaine: no! you take that mannequin down right now, or i'm pressing charges. (jerry goes along) yes, this is my attorney. saleswoman: (to jerry) yeah? what law am i breaking? jerry: well, i believe there's some legal precedent - winchell vs. mahoney, elaine: uh-huh jerry: the charlie macarthy hearings. elaine: uh-huh. are you taking this down? saleswoman: i'm getting the manager. (she leaves) elaine: jerry get the car. (she's getting the mannequin) jerry: what are you doing? elaine: just get the car! jerry: elaine, as your legal counsel i must advise against this. jerry: i don't know about you, but i'm getting a hankering for some doublemint gum. alright, i'm dropping you off at work, right? elaine: where are you going? jerry: poppie's mackenzie: thanks for meeting me down here george. my office is out of control, (george's pants are making noise) phones ringing, people running in and out. (mackenzie stops talking and walking, george too) did you hear something? george: no, i didn't hear anything. mackenzie: huh, that's strange. (they start walking again) it's quieter here. we can concentrate without people wooshing around... (he stops again, george too) that sound again. sure you didn't hear anything? george: no, can't say as i did. mackenzie: kind of like a... rustling. george: could be the leaves... audrey: that's right. poppie's on 77th. ok we'll see you at 800. bye-bye. jerry: hello. audrey: what are you doing here? jerry: so how was the pie? audrey: what pie? jerry: the apple pie you had today at monks audrey: i'm very busy here. jerry: pretty good, wasn'it? i told you you should've tasted it. audrey: you better not let poppie see you here. health inspector: all right, i'm looking for someone named poppie. audrey: uh, who are you? health inspector: board of health, we've had several complaints. jerry: oh, about the... uh (jerry pretend to wash his hands) health inspector: are you poppie? poppie: i'm poppie. health inspector: i think you'd better come with me. poppie: what's the problem? audrey: what do they want from poppie? jerry: well, poppie's a little sloppy. mackenzie: you taught i'd care about your pants wooshing? george: i heard the last guy got fired because his nose whislted. mackenzie: no, no, no. he got fired because he wasn't a team player. that's something we don't joke about at mackenzie. you'll find we're team here george. we don't tolerate dissent. if you want to go your own way, you're in the wrong place. george: no problem there. conformity is an obsession with me. waiter: chocolate cream pie. compliments of the house. mackenzie: oh! hope you saved room for dessert. waiter: (to george) the chef said that he made it special for you. george: oh... (george looks around and sees the chef hiding behind a plant it's bob!) mackenzie: mmm.. best pie i've ever tasted. take a bite george. (george shakes his head doing "no") well, take a bite. it's delicious. (still shaking) i insist. (still shaking) businessman: if you're one of us, you'll take a bite. jerry: so you didn't get the job. george: no. but i was the only one at the table that didn't get violently ill. jerry: kramer, you can't keep avoiding her like this, you're gonna have to say something. kramer: what am i supposed to say? jerry: tell her you lost your itch. george: what happened to your itch? kramer: i lost it two days ago. i've been faking it so i wouldn't hurt her feelings. jerry: well you should tell her. kramer: i'll let her down easy. all right. (he gets up and walks to olive) well, hi olive. (she reaches for kramer's back) no, no. no more of that. there's something i have to tell you. olive: what? kramer: uh, well, there's someone else. olive: someone else? kramer: yeah, yeah, yeah... olive: who is she? kramer: her. (he points to the elaine mannequin in jerry's car) olive: her? kramer: yeah, there she is. that's my gal. olive: you're a liar. i've seen her in here before. she's not your girlfriend. kramer: now olive, look, i'm sorry. olive: why is she wearing her underwear? kramer: well, it's the style. (turns back to jerry) jerry give me the keys. (jerry throws his keys to kramer) well, i guess we're gonna go for a drive now. she really loves that. george: did you ever solve the riddle of the pie? jerry: no. that's one for the ages. but i think they're gonna put poppie away for a long long time. elaine: you guys are not gonna believe this. i just got a letter from a friend of mine in chicago who was shopping, and she said she saw a mannequin that looked just like me. what if there're more. where are they coming from? ricky's boss: ricky, we've been getting a tremendous response to your tr-6 mannequin. ricky: tr-6? i prefer to think of her as... elaine. [setting: comedy club] opening monolog: the bus is the single stupidest, fattest, slowest, most despised vehicle on the road. isn't it? you ever notice when you get behind the bus, people in your car go 'what are you doing? get away, come on.' the back of the bus is like an eclipse isn't it? people are just like 'the sun, where's the sun?' it's like this huge metal ass taking up the whole wind shield of your car. when it pulls out it even sounds like a fat uncle trying to get out of a sofa. (acts like he is trying to get out of a car and makes the sound of a bus/guy starting to get going) [setting: jerry and george on a bus] george: it's just not good, it's not good. jerry: it's not good. george: i'm bored. she's boring, i'm boring, we're both boring. we got out to eat, we both read newspapers. jerry: well at breakfast everybody reads. george: no. lunch we read, dinner we read. jerry: you read during lunch? george: ya jerry: oh, well. george: there's nothing to talk about. jerry: ya, what's there to talk about. george: well at least you and i are talking about how there's nothing to talk about. jerry: why don't you talk to her about how there's nothing to talk about? george: she knows there is nothing to talk about. jerry: at least you'll be talking. george: oh shut up. al: hey, look who's here. jerry: hey, al. george: hey, al. how's it going? al: (extremely happy) deeply in love. we have soo many things to talk about. sometimes we'll talk all night, till the sun comes up (pauses in his happiness; to george) so how about you? george: oh i'm seeing someone, yes. you know her, daphne bower. al: great girl. george: we have no need to speak. we communicate with deep soulful looks. jerry: like dwight and mamie eisenhower. al: (to jerry) oh did you hear about fulton? jerry: ya. al: i went by the hospital to see him a few days ago (looking at jerry) think he'd really like you to come visit. jerry: me? al: ya, he said he could use a good laugh. george: what about me? al: (to george) he didn't mention you. (looks toward the front of the bus) this is my stop. uh see ya. george: ya jerry: ya, see ya. george: deeply in love. if you can't say anything bad about a relationship, you shouldn't say anything at all. jerry: (points to george) ya. [setting: jerry's apartment] george: i didn't even know fulton was in the hospital. jerry: could use a good laugh. you know what kind of pressure that is? come on, come with me. george: na no, i'm not good in these situations. i can't hide my pity. i..i make em feel worse. jerry: oh, stop it. george: ya and also i'm afraid that people in that state are finally going to tell me what they really think of me. you know they got nothing to lose what do they care? jerry: so you're not gonna come? george: no but say hello for me. kramer: hey! jerry: hey! hey mick. mickey: hey jerry. kramer: what's doing? jerry: nothing, what's doing with you? kramer: same old, same old. jerry: george this is mickey. george: hi, nice to meet you. mickey: pleasure. jerry: how's work going you guys? mickey: lets not even talk about it. george: (to kramer) you got a job? kramer: ya, mickey. he hooked me up. we're stand-ins for the actors on 'all my children.' mickey, he's a stand-in for an eight year old kid and i stand in for the kids father. mickey: (to jerry then both jerry and george) but i got a big problem. the kid i stand in for, he's growing. he was four feet last month, now he's like four-two and a half. he shot up two and a half inches. i can do four-two, four-three is a stretch, any higher than that and i'm gonna be out on my ass doing that para-legal crap. jerry: how do you stop a kid from growing? kramer: (to mickey) i told you, you should offer him some cigarettes. mickey: i offered him cigarettes, (to jerry and george) but his stupid mother is hanging around. she won't let him have any. kramer: (to mickey) what about lifts? mickey: (to kramer) out of the question. george: (to mickey) can't you just switch with another midget? mickey: (turns and moves up to george, points his finger at him) it's little people, you got that? kramer: easy mickey, easy. george: yap.. kramer: alright we gotta get back to the show. what are you guys doing? jerry: i'm going to the hospital, to visit fulton. kramer: (on his way to the door) oh, oh well say hello for me. kramer: now look, we're going to stop at the shoe maker right now. you gotta get some lifts for your shoes. mickey: lifts?! look kramer you don't understand, this kind of thing is just not done. kramer: you wanna keep your job don't you? mickey: ya but.. kramer: yah! no buts mickey: kramer kramer: (with his hand in mickey's face) yaaaaah! jerry: hey, woahoh fulton. it's me. fulton: hey jerry, good to see ya. i could really use a good laugh. jerry: who couldn't. fulton: i haven't cracked a smile in months. jerry: oh don't worry, you'll crack. cracking's inevitable, first you crack then you chuckle. that was the motto with the russians at the caesar leningrad... first you crack then you chuckle. (fulton looks at him not amused) you know because leningrad when the nazis attacked, it wasn't a very happy time... because of the war, famine, plus it was cold, very cold... they were eating each other. (nervous under the pressure; fulton not finding anything jerry is saying funny) maybe this isn't a good time for a visit. fulton: it's a fine time. jerry: oh, alright ah well... there's a priest, a minister and a rabbi, and they're all staring at him.... george: (sets down his paper) so how were the eggs? daphne: eggs are eggs. george: (not amused with her answer) eggs are eggs. that is very profound. (laughs; daphne goes back to reading her paper) by the same token you could say fish is fish. ha ha ha, i don't think so. (pauses) listen dophne daphne: (correcting george) daphne. george: daphne. i have to tell you something, this is very difficult... daphne: (interrupts and hurriedly puts down her paper) oh, i forgot to tell you. al netchie called me today. george: ya, ya. i bumped into him on the bus. what did he have to say? daphne: he told me not to get involved with you. george: what? daphne: ya, he said you could never make a commitment to any one and you'd just wind up (reaches out and lightly slaps george's hand) hurting me. george: he said that? (daphne shacks her head) what a nerve. how dare he say something like that. daphne: is it true? george: of course not. i mean sure, there may have been one or two occasions in the past, when i may have reacted in uh impulsive or somewhat immature manner, but those days are well behind me. [setting: abc studios] son: how long are you going to be away for daddy? father: i'm not really going away, i told you, i'll be back every other weekend. son: don't go daddy, don't go. father: now porter, you know your mother and i love you very much, but sometimes people fall out of love. now give me a big hug. director: (walks into the scene) ...and there's your scene. stand-ins kramer: yo stage hand (larry david's voice): alright you guys get on their spots so we can fix the lights. kramer: (taps the father on the shoulder) that's good work. mickey: (quickly with no acting) how long you going to be away for daddy? kramer: (trying to act like the guy playing the father) i'm not really going away, i told you i'd be back every other weekend. mickey: (tugs on kramer's coat) don't go daddy, don't...go. kramer: now listen porter, you know your mother and i love you very much. but sometimes people fall out of love. now give me a big hug. mickey: ah! (pauses for the hug) alright (kramer still holding on) alright! kramer! (pushes kramer off him) director: ok everybody that's lunch... one hour. kramer: how do those lifts feel? mickey: quiet. tammy: hi guys. mickey: hey tammy. tammy: hey, you look different. have you been working out? mickey: (looks at kramer) not that i know of. tammy: well whatever it is you're doing, keep doing it you look great. mickey: how about lunch? tammy: oh i can't today, but um i see it our future. (starts to leave) see ya kramer. kramer: ya. tammy: bye mickey kramer: ooo she likes you buddy (they to a high five hand shake) kramer & mickey: ya! mickey: all of a sudden. kramer: what? johnny: hey mick. mickey: how you doin' johnny? johnny: what gives...what's going on? goin' out with tammy? mickey: maybe. what's it to you? johnny: somethin different about you. mickey: i got my hair cut that's all (turns to look at kramer) johnny: nah, that's not it. something else... ya you look different. mickey: you don't, you got the same ugly mug since the day i met ya. johnny: i don't know what it is, but i'll find out. (walking away) i'll find out. jerry: ..so uh she's just sitting there and a uh packyderm, you remember the derm. he says uh, i'm gonna go up to her. so we uh he uh picks up the two pieces of (wipes his brow) pizza and uh the uh and then they're steaming hot and they're burning his hands see so he... he's juggling em (does juggling motions) he's jugglin em, jus throwing them up in the air and just as he gets up to her down they go. (swallows and takes a breath) well we all just lost it. (fulton not laughing, stone faced) it was really really funny. phil: hey jerry. jerry: hey phil how you doing? phil: you look terrific. jerry: i got my health. phil: well, that's the most important thing. (to fulton) hey how ya doing fulton! octane, butane, nitrane! (fulton looks at him still stone faced and not amused. to jerry) how's he doing? jerry: (wiping his brow) he could use a couple laughs. [setting: jerry's apartment] elaine: you should have told that story about packyderm dropping the pizza. jerry: i told it. (answers the buzzer) ya? george: (on the speaker) ya jerry: ya. (hits the button, opens the door. to elaine) hey you know what as i was leaving i bumped into phil titola. he is one of the greatest guys. elaine: do i know him? jerry: no, but i'll tell you something. of all the guys i know, i could envision you going out with him. elaine: if you were a woman would you go out with him? jerry: if i was a woman i'd be down at the dock waiting for the fleet to come in. elaine: (laughs) ya, i bet you would. alright, give him my number. jerry: alright. george: this you are not going to believe. al netchie, that pimple. tells daphne, not get this 'not to get involved with me.' jerry: what? george: ya. that's what she told me. elaine: why? george: because he's afraid she's gonna get hurt. elaine: is she? george: of course. elaine: so? george: wa.. he doesn't have to tell her. elaine: maybe he likes her. george: oh no no no. he's deeply in love, and i was just about to break up with her when she told me. jerry: so what are you gonna do? george: well i can't break up with her now. jerry: why? george: because he said i was going to. elaine: so now you're going to keep going out with her, for spite? george: yes, i am. jerry: ya, i could see that. george: i don't see any way around it. jerry: no, me either. george: what choice do i have? jerry: none. [setting: abc studio locker room] [setting: jerry's apartment] jerry: fulton's wife told me it's all my fault. she said since my visit he's taken a turn for the worse. kramer: did you tell him the packyderm story? jerry: (yelling) yes i told him the packyderm story! kramer: maybe i outta go over there. jerry: towards what end? kramer: i'm very good with sick people. they love me. when my friend len nicodemo had the gout, i moved into his hospital room for three days, the doctors were amazed at his recovery. kramer: hey. jerry: hey mick. mickey: (to kramer) johnny vigiano went through my locker. kramer: yaoh! mickey: (slamming the door) that little bastard! he saw the lifts in my shoes. he knows i'm heightening. (to kramer) this never would have happened if you hadn't pushed me to get those things. i told you. kramer: hey, nobody put a gun to your head. mickey: ya well just keep out of my business you big ape. (pushes kramer) kramer: who you calling big ape? (pushes mickey back) mickey: you (grabs kramer) jerry: (starts pulling them apart) alright break it up, break it up. come on, just cut it out now (kramer yells) kramer: (pacing back and forth) ya. mickey: i'm sorry kramer. kramer: no no it's alright, it's alright. you're stressed oout! jerry: (to mickey) why does this guy johnny have it in for you? mickey: oh, he's always been jealous of me. i always get to stand in for the bigger stars; the cosby kids, ricky schroder, macaulay culkin. kramer: (whistles) what's he like huh? mickey: he's a good kid. kramer: ya? jerry: so what does he care if you put lifts in? mickey: you don't understand. there's an unwritten code about this kind of thing. i could be ostracized. i remember when i was a kid, some guy tried to heighten. he lost his job, lost his friends, everything. oh, i knew i was crazy to try this kind of thing, but i was so desperate. (pauses laying on the couch; jumps up) what is this kid taking anyway? hormones? steroids? would you tell me!? [setting: george's car outside daphne's place] daphne: george, tomorrow's sunday. we could sleep late, and get the paper and half breakfast and spend the morning together, go for a long walk, maybe do a little shopping, have lunch... george: (interrupts her) you know what. i don't think i'm going to be able to stay over tonight. daphne: why not? george: i, i really should go home. ya.. actually i'm planning on spending the day with my father tomorrow (short laugh) we're uh we're going to a father-son picnic, just the two of us. daphne: i thought we were going to spend the day together. george: well dad's been planning this for such a long time, he bought a new blanket, and he got tha...that game with foam paddles and the velcro ball. (laughs) daphne: have you given any more thought to what we talked about? you know, moving in? george: yes, oh yes very much. daphne: maybe you don't want to move in. george: no, no i do. you know it's just... daphne: (interrupting him) maybe al netchie was right, maybe i shouldn't have gotten involved with you. george: (angry that she believes al was right) no he's not right. al netchie is not right! alright i'm canceling the father-son picnic. i don't know what he's gonna do with all that potato salad. [setting: elaine and phil in phil's car outside elaine's apartment] elaine: (phil cracking up) so then packyderm picks up the pieces of pizza, and mind you know they are burning hot.. he can bearly hold 'em. i mean he's like trying to juggle (does a juggling motion and begins laughing) the pizza, you know ah. and then they go flying out of... phil: (dying of laughter) i'm peeing in my pants. elaine: (cont.) they go flying out of his hands, and one lands on her face and the other lands on his face. (pause as they both continue to laugh really hard) and the whole place went crazy. phil: oh, i'm sorry, oh. what a story. elaine: i know, i know, i was unbelievable phil: oh that is one of the funniest stories i've ever heard. elaine: (wipes her eyes because she laughed so hard she cried) i know. phil: well this has been one hell of a night. elaine: oh, i'm sorry jerry didn't suggest this sooner. phil: you know, you really are beautiful elaine. elaine: oh, well, (pauses) good night. phil: good night? elaine: well (leans in to kiss phil, then looks down at his pants with a awkward look on her face) [setting: jerry's apartment] jerry: (on phone) come on adrian give me another chance, i know i could cheer fulton up. i'll tell you what, i'll do my act (pauses for response from adrian) no new material (elaine enters) he's never heard it. he'll love it, i just did it at the concord last week, it killed. (waves hello to elaine; pauses for response from adrian) thank you, thanks fo.. you will not regret this. ok, bye. (hangs up phone; to elaine) hey. elaine: hello. jerry: so? elaine: what? jerry: come on. how was your date? elaine: oh, the date. the date. jerry: ya how was it? elaine: interesting. jerry: really. elaine: oh ya. jerry: why what happened? elaine: let's see, (thinking) how shall i put this. jerry: just put it. elaine: he took it out. jerry: (confused) he what? elaine: he took (blows on her glasses twice to clean them) it out. jerry: he took what out? elaine: it. jerry: he took it, out? elaine: yessiree bob. jerry: he couldn't. elaine: he did. jerry: (motions of making out) well you were involved in some sort of amorous... elaine: noooo. jerry: you mean he just elaine: yes. jerry: are you sure? elaine: oh quite. jerry: there was no mistaking it? elaine: (looks straight into his eyes) jerry. jerry: so you were talking, (elaine makes an agreement sound "mmm") you're having pleasant conversation, (elaine makes an agreement sound "mmm") then all of sudden... elaine: yea. jerry: it. elaine: it. jerry: out. elaine: out. jerry: well i, i can't believe this. i know phil, he, he's a good friend of mine. we play softball together. how could this be? elaine: oh it be. (sarcastically) you got any other friends you want to set me up with? kramer: hey. (to elaine) hey how was your date with phil titola? elaine: (to kramer) he took it out. kramer: maybe uh, it needed some air. you know sometimes they need air, they can't breathe in there. it's in human. [setting: monk's] george: so she's just sitting there, she's having a pleasant conversation... and all of a sudden. jerry: it. george: it. jerry: out. george: out. (jerry shakes his head in agreement) wow. i spend so much time trying to get their clothes off, i never thought of taking mine off. (jerry nods; george looks at his watch) alright, hey come on, get out of here, dophne gonna be here any minute. jerry: alright i'm going. george: you know what i've come to realize? i'm not just bored. i genuinely dislike her. jerry: well how long you are going to keep this up? george: hey i'll get married if i have to. al netchie will think twice before he opens his mouth about me again. jerry: you know george they are doing wonderful things at mental institutions these days. i'd be happy to set-up a meet and greet. george: i'm very disappointed to here you talk like that. you still don't know what makes me tick. jerry: yes i do. george: what are you doing? jerry: i'm going to the hospital to see fulton. i'm not even saying hello, i'm going right into material. [setting: fulton's hospital room] phil: ah hey jer. jerry: oh hey phil. phil: you know i'm sorry things didn't work out with elaine. i don't know what i did wrong. jerry: well, y..you showed her who you are. phil: oh, look at this, what she's got to breast feed in public. jerry: ya, that's the.. last thing you want to see. well, next to last. phil: i'll see ya. jerry: ya take it easy. jerry: (acting like he was walking on stage) hey how ya doing? good to be here. [setting: abc studios set] kramer & mickey: rock, paper, scissors match. mickey: alright, rock beats paper. kramer: i thought paper covered rock? mickey: nah, rock flies right through paper. kramer: what beats rock? mickey: (looks at his hand) nothing beats rock. kramer: alright come on. kramer & mickey: rock, paper, scissors match. kramer: rock. mickey: rock kramer & mickey: rock, paper, scissors match. kramer: rock. mickey: rock. mickey: hey bob. what's with you? you gotta problem? (to kramer) you see that look he gave me? (starts to get up to go after him) kramer: (stops mickey) alright, come on. kramer & mickey: rock, paper, scissors match. kramer: rock. mickey: rock. mickey: hey tammy. tammy: hello. mickey: so tammy, finally, today's our big lunch. tammy: i don't think so. mickey: why not? what the hell are you talking about? tammy: look mickey, everybody knows that you're heightening. it's all over the set. mickey: wait, wait (goes to grab her arm) tammy: (recoils) don't touch me. you ought to be ashamed of yourself. all the progress we made over the years and you go and blow it by pulling a stupid stunt like this. mickey: wait a second, wait a second, you got me all wrong. it was all because of the kid. (numerous little people begin to crowd around them) (to tammy) the kid was growing. he shot up two and a half inches in a month. (to all the little people) i woulda lost my job. any one of you would have done the same. you got no right! i'm mickey abbott! i stood in for punky bruster when all of you was nothing. (seeing the crowd still doesn't agree with what he did, he points at kramer) it's all his fault. (kramer acts like he doesn't know what mickey is talking about) it was his idea. tammy: come on johnny, let's go get something to eat. mickey: (in complete disgust as seeing tammy leave with johnny) ah! (turns and looks at kramer) ah! kramer: what? mickey: ah! kramer: mickey! [setting: back in fulton's hospital room] jerry: this guy's belching out vitamins.. fulton: (dying of laughter and coughing) stop. jerry: (cont) and this whole justice league, batman, green lantern, wonder woman. you mean to tell me superman can't cover everything? fulton: (still laughing and coughing) stop. jerry: for crying out loud, he's superman. (fulton stops laughing, jerry's face is stunned) fulton? (looks at him) fulton? [setting: back at monk's] daphne: george, first let me just say i've never been with a guy who was so committed to commit. i mean it's so rare in men these days an, that's what makes this all the more difficult. george: (happily) difficult? daphne: the other day after work some girlfriends and i went to a bar for some drinks and there was this crazy mishap and i wound up meeting someone as a result. george... george: (acting disappointed) oh, please don't. daphne: uh, i'm sorry. i'm afraid the worst of it is it's someone you know. jerry persheck. george: packyderm? daphne: heh, he was carrying these two pieces of pizza... meryl: good morning. jerry: good morning. meryl: how'd you sleep? jerry: hey, you are the couch tonight, young lady. you were all over my side. meryl: i was not! jerry: c'mon, i was sleeping with one cheek off the bed! meryl: by the way, you know you're falling way behind on the 'i love you's.' jerry: no, no, 12-8! meryl: no, it's 15-8. jerry: i know i can't beat ya, i'm just trying to stay competitive. meryl: alright c'mon, let's get some breakfast. jerry: uh, let me get a coat. i think i'll uh try a sport jacket and scarf thing, you know, like an unemployed actor. (goes into his room, and comes back out with the jacket on.) ahh, haven't worn this one in a long time. meryl (feels jerry's material): ooh, cashmere? jerry: no, gore-tex. it's new. (checks his pockets.) hey, look at this locket. what the hell is this? there's a picture in here, look at that. meryl: wow, this is really old. you don't know whose it is? jerry: no, i haven't worn this jacket since i got it back from the dry-cleaner. maybe we should ask him. meryl: alright, we'll stop over there. jerry: yeah. what do you want to get for breakfast? meryl: pancakes. jerry: oh now, c'mon, you know i'm getting pancakes. meryl: i don't know that! jerry: but we can't both get pancakes, it's embarrassing. it's like one step from the couples who dress alike. meryl: i'll get the short stack. jerry: ah, that's why i love ya. 15-9. (they go out into the hallway and run into kramer and his african-american girlfriend, anna.) hey, how ya doin.' kramer: we just got back from breakfast. the pancakes were dynamite. jerry: hey, is that my maple syrup? oh, ya. (kramer hands it over.) meryl: you bring your own syrup? kramer: got to. jerry (to meryl): you got a lot to learn about pancakes. marty (looking at the locket): this is my wife. she died eight years ago. i been looking all over for this! jerry: boy, it's a lucky thing i put the jacket on. but how did it get in the pocket? marty: well, see here, the chain is broken...it must have slipped in when i was, uh...(gestures at the racks of clothes behind him.) jerry: oh, wow. marty: i turned my house upside-down looking for this! it's all i have left of her. meryl: oh, that's so touching. marty (to jerry): know what i'm gonna do for you? i'm gonna give you and your family 25% off all your dry-cleaning from now on. jerry: oh, come on! marty: what are you talkin' about? jerry: it's silly! marty: hey, forget it! jerry: get outta here! marty: it's done! jerry (giving in): alright. meryl: well, i guess i get it too, because i'm his wife. marty (to jerry): i didn't know you were married. jerry: oh...yeah...uh you've never met my wife, meryl? meryl seinfeld. marty (to meryl): sure, you get the discount, too. jerry: you might regret that, because the money my wife spends on clothes... meryl: i'm taking him to the cleaners! jerry: ah - see the sense of humor? c'mere, i'm so nuts about you...(hugs meryl.) i tell ya, it was fun being single, but when you meet a woman like this, you don't walk to get married - you run! elaine: oh, hi greg. greg: haven't seen you in a while. elaine: yeah. well, actuall today was the first day i worked out since the central park mini-marathon. greg: you ran the mini-marathon? elaine: no, but i exercised that day. (laughs.) greg: well, i-i gotta take off. elaine: yeah, i guess as an airline pilot, you're one of the few people who can say that and mean it. (laughs again. greg looks at her, unamused.) um, do you have the time? greg (looks at his watch): eleven-thirty. elaine (surprised): eleven-thirty? greg: wait-wait, ten-thirty. sorry. elaine: oh. greg: do you have to be somewhere? elaine: no. greg: then what are you doing? elaine: i'm just waiting for my friend george, we worked out together. greg: oh. well, it was good seeing you. elaine: yeah, nice to see you, too. meryl: uh, would you, um...can i... jerry: pardon? meryl: the syrup. would you pass the syrup? jerry (holds up the syrup bottle): oh, you want to try the syrup! (meryl smiles and takes it. the waitress comes over.) waitress: can i get you anything else? jerry: um, yeah...i think my wife and i'll have a little more coffee. waitress: okay. meryl: and a check for my husband. jerry (toasts with his orange juice): to my beautiful wife. meryl: to my adoring husband. jerry: adoring? what about handsome? meryl: i like adoring. jerry: ya sure, adoring's good for you, what does it do for me? (meryl laughs. the owner of the coffee shop comes over.) owner (points at the bottle of maple syrup): excuse me...where did you get that? jerry: i, uh...well... owner: uh, we don't allow any outside syrups, jams or condiments in the restaurant. (to jerry) and if i catch you in here with that again...i will confiscate it. jerry: well, i-i-i told my wife not to bring it. kramer: really? 25% off? do i get that, too? jerry: no, just meryl. kramer: why, why? why does she get it? jerry: because she's my wife! (the door buzzer sounds; jerry answers it) yeh? elaine: (on buzzer) meh. jerry: (buzzes her up) eh. (to kramer) you know and i'll tell ya, i'm really enjoying this marriage thing. you think about each other. you care about each other. it's wonderful! plus, i love saying "my wife." once i started saying it, i couldn't stop - "my wife" this, "my wife" that...it's an amazing way to begin a sentence. kramer: "my wife has an inner ear infection." jerry: see? kramer: i like that! hey look, will you do me a favor? will you take my quilt into the cleaners for me, so i can get the discount too? jerry: oh come on, we're gonna start doing this now? i can't be taking all your dry-cleaning in! kramer: c'mon, just this one time! it's expensive! jerry: alright. (elaine enters.) kramer: hey. hey elaine, what do you say if neither of us is married in ten years, we get hitched? elaine: let's make it fifty. kramer: we're engaged! alright, i'm gonna get my quilt. (kramer leaves.) elaine: alright, listen to this. remember that guy i was telling you about at the health club? jerry: the fly-boy. elaine: yeah. jerry: hey, where's george? i thought he was with you. elaine: i waited, he didn't show up. anyway, this guy gave me an open-lip kiss. jerry: hmm, so? elaine: so? we've always just kind've pecked. this one had a totally different dynamic. jerry: really. elaine: yeah. i mean, his upper lip landed flush on my upper lip. but his lower lip landed well below my rim. jerry: ohhh, moisture? elaine: yeah. definite moisture. jerry: that's an open-lip kiss, alright. elaine: yeah. listen, i think he's giving me a big signal...maybe he wants to change our relationship. (the buzzer sounds, elaine answers it.) yeah? george (on intercom): oh, uh...it's george. elaine: hey, what happened to you? george (meekly): nothing...little problem. elaine: well, what was it? i mean, i was waiting. george: can i come upstairs, please? (elaine pushes the button and lets george in.) elaine (to jerry): i mean, maybe he wants to ask me out. jerry: i don't know why you're interested in this guy, he's a jerk. elaine: because, he doesn't pay any attention to me, and uh he ignores me. jerry: yeah, so? elaine: i respect that. (george enters.) mmm, what happened? george: nothing, i... said it was a little problem. elaine: yeah? what was it? george (defensive): well...i was in the locker room showering, and i...i had to go, so... jerry: here we go. george: anyway, i think the guy in the shower opposite saw me. he gave me a dirty look. elaine: you went...in the shower? george: yeah, so what? i'm not the only one! (kramer enters with his quilt.) elaine (to jerry): do you go in the shower? jerry: no, never. elaine (to kramer): do you? kramer: i take baths. george: well, what was i supposed to do? get out of the shower, put on my bathrobe? go all the way down to the other end? come all the way back? elaine: did you ever hear of...holding it in? george: oh, no...no, that's very bad for the kidneys. elaine: how do you know? george: medical journals! jerry: do the medical journals mention anything about standing in a pool of someone else's urine? jerry: hello. meryl: oh, hi...honey. jerry: what are you doing here? meryl: i just thought i'd drop off a few things. jerry: oh. (smiles at marty nervously.) well, i must have been in the incinerator room when you left. here you go, marty. (hands over kramer's quilt.) marty: another quilt? huh? (uncle leo enters.) uncle leo: jerry! jerry: uncle leo?! uncle leo: hello! jerry: hello. marty (to jerry): so, if you or your wife want to drop by on wednesday, it should be ready. uncle leo: your wife? jerry (hoping leo will pick up on the scam): yeah...my wife. uncle leo: what are you talking about? jerry: uh...i got married. uncle leo (shocked): you got married? i wasn't invited? nobody sends me an invitation? jerry: well, it was sudden. uncle leo: are you ashamed of your uncle? do i embarrass you? jerry: no, no, it was a small ceremony. uncle leo: haven't i always been a good uncle? jerry: yes, yes, you have. uncle leo: who told you when you went to school that you print well? jerry: you did, you did. uncle leo (to meryl): when he was younger, he had a beautiful penmanship. i used to encourage him to print. jerry: i'm a good printer. uncle leo: i remember your 'v.' it was like a perfect triangle. whoa, there's my bus! (rushes out.) hello! wait! jerry: uncle leo, wait! greg: i'm glad you're here. this can get really boring. do you know where i can get some good olives? elaine: i can find out. greg: would ya? elaine: sure. (thinking) ooh, a project. that's a definite signal. greg: by the way, you look really great in that leotard. elaine: oh, thanks. (thinking) that's no signal, who wouldn't like me in this leotard? i look amazing in this leotard. greg: hey, you know what's weird? i think i had a dream about you last night. elaine: (thinking) okay, he open-lips me, he dreams about me, we have an olive project...that's it, i'm asking this guy out. (to greg) um, you know greg, i... greg: can i have a sip of your water? elaine: oh, yeah, sure. (hands greg her bottle.) greg: thanks. (is about to take a drink, but wipes the neck of the bottle with his shirt first.) elaine: (shocked expression; thinking) oh my god. greg (hands the bottle back): i'm sorry, what were you saying? elaine: oh, it was nothing, for-forget it. (george enters the gym.) greg: see that guy right there? elaine: yup, you mean him? greg: i caught him urinating in the shower. i'm thinking about turning him in, too. meryl: honey? could you get me something to drink? jerry (from his bedroom hallway, alluding to the fact that she should get the drink herself): you're right there. meryl: c'mon, i'm sitting! (jerry walks to the kitchen, annoyed. meryl laughs at the tv show she's watching.) jerry (looking in a drawer): honey, what'd you do with the can opener? meryl: i didn't do anything with it. jerry: well, it's not here, it was here yesterday. meryl: it's in the first drawer. jerry: i'm looking in the first drawer. it's not here. meryl: yes, it is. jerry (irritated): hey...i'm not stupid. i'm looking in that drawer, there's no can opener. meryl: did i say you were stupid? jerry (angrily): well, wouldn't i have to be? you tell me there's a can opener in the drawer, i'm looking in the drawer, there's no can opener - what other conclusion could one reach? (the phone rings.) meryl (getting up): do you want me to go find it? jerry (slams the drawer): yes. i do. you show me where there's a can opener in that drawer. (answers the phone.) hello! i'm sorry, i'm just fighting with my wife. helen: jerry, we just heard, what's going on? morty: why the hell didn't you tell us? jerry: listen, ma... meryl (looking in the drawer): it was in here yesterday! jerry (angrily): yeah, that's what i said! helen: who is she? when did this happen? morty (to jerry): i told her you'd get married. she thought you'd never do it. helen: morty, you're talking too loud. morty: i'm not talking loud! helen: you're hurting my eardrum. meryl (looking for the can opener): well, you must have done something with it! jerry (to meryl): i'm on the phone! helen: is she there? can we talk to her? what's her name? jerry: mom, i'm not married. helen: what? jerry: i'm not married! morty: i knew it, i told you! helen (to jerry): uncle leo said. jerry: i'm just pretending i'm married to get a discount on dry-cleaning. helen: a discount on dry-cleaning? jerry (to meryl, who's making a racket in the kitchen looking for the can opener): could you make a little more noise? (to his parents) listen, i'm gonna have to call you later. meryl (not finding the opener): well, i give up. jerry: well, whoopie whoop. (meryl goes into the other room. kramer staggers in the door in his bathrobe.) kramer: got any coffee? jerry: yeah. (kramer lurches into the kitchen, trips, and falls onto the kitchen floor.) i'll get it, i'll get it! take it easy, why are you so tired? kramer: my quilt is still at the cleaners. jerry, i can't sleep without my quilt. like the other night? i was cold. so, last night, i turn up the heat - it's too hot. i open up a window - it's too cold. (frantic) i can't get into a zone! jerry: what is that? (points to kramer's pocket as meryl comes back.) kramer: huh? jerry: that? kramer: oh, i forgot. (hands back jerry's can opener.) jerry: hey, i'm sorry about all that can opener stuff. meryl: yeah, me too. i love you. jerry: i love you. meryl: well, goodnight. jerry: goodnight. (they kiss goodnight, then promptly roll away from each other and go to sleep.) george: they could kick me out of the health club if he tells them! elaine: so what do you want me to do? george: talk to him! elaine: how can i do that? george: you said the guy gave you an open-lipped kiss! elaine (enunciating clearly so george gets the point): yes, but then he wiped his hand on the top of the bottle when i offered him water! george: well, that doesn't mean anything! elaine: are you kidding? that's very significant! if he was interested in me, he'd want my germs! he'd just crave my germs! jerry (patiently while watching tv): she's right, george. bottle-wipe is big. george: well, what about the open-lipped kiss? jerry: (still watching tv; sounds like basketball) bottle-wipe supercedes it. george: yeah, you're right, you're right. (to elaine) alright, maybe he's not interested, but you still know him - can't you just ask him? elaine: george...but if i ask him now, i will have no chance of going out with him. george: why? elaine: i...i don't know... george: aha. aha. could it be because you don't want him to know that you have a friend who pees in the shower, is that it?! elaine: no, that's not it! george: oh, i think it is! i think that's exactly what it is! elaine: why couldn't you just wait? george: i was there! i saw a drain! elaine: since when is a drain a toilet?! george: it's all pipes! what's the difference?! elaine: different pipes go to different places! you're gonna mix 'em up! george: i'll call a plumber right now! (goes for the phone.) jerry: alright, can we just drop all the pee-pipe stuff here? elaine (to george): okay! okay! okay, i will talk to him. (kramer enters.) kramer: jerry, i think that quilt is ready. jerry: alright. kramer: well, you gotta pick it up for me! jerry: alright, i'll pick it up, but it's the last time i'm doin' it! kramer: i'm so tired! elaine (to kramer): boy, you don't look good. kramer: huh? i don't? elaine: no, you look pale. kramer: pale? oh my god...i gotta meet anna's parents today! (the phone rings.) jerry: hello? oh, hi honey. (annoyed, weary) yes, i told him. i'll get it. (george and elaine give each other a look, then leave jerry to argue with meryl on the phone.) whenever. okay, i'm sorry... marty: i'm sorry, it's not ready yet. (kramer bursts in.) kramer: not ready? it has to be ready! what kind of a business are you running here? marty: who the hell are you? huh, it's not your quilt. jerry: he's a very good friend of mine, he's kind've like an older brother to me...when things don't go right, he kinda takes it personally. marty: well, uh...maybe tomorrow. kramer (angrily, to jerry): maybe. jerry: oh, it's okay, it'll be okay. kramer: alright, i'm gonna see you later. jerry: where you goin'? kramer: i gotta meet anna's parents today, remember? i look terrible! i'm gonna hit the tanning machines. jerry: i can't believe you still do that. you know those things are bad for ya. kramer: hey, that's how i maintain my glow. jerry: i'm goin' home. kramer: ya. paula (to marty, in a foreign accent): excuse me? uh, how much would it cost to clean this? marty: oh, about thirteen dollars. paula: thirteen? well, i can't afford that. marty: well, i'm sorry. elaine: hi, greg. greg: hey, elaine. i'll be off in a second. elaine: ok. (another guy approaches the exercise machine.) i got the machine next, buddy. (greg finishes up his workout and gets off the machine.) greg (to elaine): oh, well, it's all yours. (walks away. elaine looks at the machine, then george runs over.) george: what happened? did he bring it up? elaine: never mind that, look at the signal i just got. george: signal? what signal? elaine: lookit. he knew i was gonna use the machine next, he didn't wipe his sweat off. that's a gesture of intimacy. george: i'll tell you what that is - that's a violation of club rules. now i got him! and you're my witness! elaine: listen, george! listen! he knew what he was doing, this was a signal. george: a guy leaves a puddle of sweat, that's a signal? elaine: yeah! it's a social thing. george: what if he left you a used kleenex, what's that, a valentine? now you go up to him and you tell him that if he's thinking of turning me in, that i got the goods on him! elaine: no! i won't be a party to this. george: so you're gonna let me get suspended for shower urination? elaine: okay, i'll talk to him. but you're putting me in a very difficult position. (walks away.) paula: i won't let you do this! jerry: i want to! paula: but it isn't right! i can't. jerry: give me the clothes. paula: jerry, please. what about her? jerry: oh, the hell with her. (paula dramatically flees from the coffee shop. jerry thinks for a second, then follows her and catches up to her on the street.) paula: no, jerry, please! jerry: i'm not gonna let you walk out of my life. paula (hands over the clothes): i can't fight you. (they embrace and kiss passionately.) jerry: do you want box or hanger? paula: you decide. (jerry considers.) elaine: you're really working up quite a sweat today, huh? greg: yeah. (spies the shapely manager of the health club.) oh, there's the manager. good. i think i'm gonna talk to her about that guy, you know, we cannot have people like that in here. elaine: are you sure you want to do that? greg: yeah. he's disgusting! besides, i'll take any chance i can to talk to her. elaine: you're interested in...in her? (points at the manager.) greg: very. elaine: ah. you know, uh..i'm engaged. (preens) yep, gettin' married in fifty years. (snaps the straps of her leotard against her chest and winces. george walks by the manager.) greg: oh good, there he is. i wanna be able to point him out. elaine: you know, greg, i wouldn't do that if i were you. greg: why? elaine: well, correct me if i'm wrong, but isn't it a violation of club policy to not wipe down a machine after using it? greg: oh, i see...you're friends with the urinator, aren't you? elaine: yeah, well, at least he had a drain. marty: here you go, mrs. seinfeld...with your 25% discount, it comes to $17.80. meryl: here you go. (pays marty, then looks at the clothes on the hanger.) excuse me, this isn't mine. marty: oh, yes it is. your husband brought it in himself. meryl: really? (takes her change and grabs the clothes off the hanger.) thank you. (exits.) anna: that's him! (opens the door. kramer stands there, deeply tanned and smiling. anna and her grandfather are shocked.) meryl (throws paula's clothes at jerry): you son of a bitch! jerry: i'm sorry. meryl: who is she? i want to know who she is. jerry: it doesn't matter. i want a divorce. meryl: a divorce? oh, so you can marry her and give her the discount? jerry: yes, that's right. meryl: what happened to us, jerry? jerry: i'll tell you what happened. we got married. meryl: i'm sorry, uh.. this is my fault. i pushed it on you. jerry: no. i guess i just wasn't ready for the responsibilities of a pretend marriage. meryl: goodbye, jerry. oh, i forgot...(reaches in her purse)...this is your maple syrup. jerry: it's alright, i want you to have it. meryl: (sentimental) okay, thanks. jerry: we'll always have...pancakes. meryl: bye, jerry. (exits.) grandpa (to anna): i thought you said you was bringin' a white boy home! i don't see a white boy! i see a damn fool! jerry: you know their timing couldn't be worse. george: is there ever a good time to have your parents stay with you? jerry: you don't understand, i haven't been together with rachel for like three weeks. first i was on the road, then my parents show up, i'm getting a little uh backed up. george: when are they leaving for paris? jerry: not for another three days. george: what about her place? jerry: she lives with her parents. george: really? (jerry shakes his head) maybe this will become like a cool thing, living with your parents. jerry: (sarcastically) ya, then maybe baldness will catch on. this will all be turning your way. george: hey believe me, baldness will catch on. when the aliens come, who do you think they're gonna relate to? who do you think is going to be the first ones getting a tour of the ship? jerry: the baldies george: hey by the way my parents really want to have your parents over dinner before they leave town. jerry: that's good, then i get the apartment for at least one night. you know i'm paying for this whole paris trip it's their anniversary present. alec: (walking over to jerry and george's table) hey guys. george: hey alec jerry: hey alec alec: this is joey. george: hey joey, how you doin'? alec: (joey was about to talk) hey listen, i was wondering if either one of you guys would be interested in doing some work for the big brother program? i'm kinda running the local chapter. what do you say george? george: well uh.... joey: (interrupts) wouldn't you like to be a big brother to someone like me? please? george: well, sure joey, sure, i would be thrilled. alec: that's great george, thanks a lot i'll get in touch with you. joey: wouldn't you like to be a big brother.. alec: (grabs joey to stop him) ya alright joey that's enough, let's go (walking over to the counter) see ya. jerry: what happened? george: what could i do? did you see the mug on that kid? jerry: (acting like joey) wouldn't you like to pass the ketchup to someone like me? please? jerry: hey did you notice they moved where they do the interview on jeopardy now? george: ya it used to be right in the middle of single jeopardy and now they do it right after single jeopardy. jerry: ya, it's much better isn't it? george: oh, n-no comparison. jerry: hey, i gotta stop off at the bookstore to pick up my parents one of those french-english dictionaries. george: (stops jerry realizing something) hey hey hey hey hey hey. jerry: what? george: your parents are going to paris right? jerry: yea? george: so i tell alec that i have to go to paris for an undetermined amount of time. then all i have to do is buy some post cards and have your parents mail them from paris. jerry: what about little joey? george: who? jerry: ah, i think he's probably better off. george: i'm trying to get out of this big brother program. so when you get to paris (handing morty the postcards) all you have to do is drop 'em in any mailbox. morty: but there are no stamps on these. george: well no not yet, you gotta buy french stamps (pauses) i-i'll reimburse you of course. helen: why are you doing this? jerry: he wants this guy to think he's in paris. helen: why? jerry: because george is a deeply disturbed individual. kramer: oh hey, helen uh, could i uh, use some more of your hand lotion? helen: i told you it was good. (hands kramer the lotion) kramer: (putting on the lotion) ya helen: it's from the saks fifth avenue in miami. kramer: mmm (smelling the lotion as he rubs it in) i'm gonna remember that if i'm ever in florida. jerry: ya, or if you're ever on fifth avenue here in new york city, you could get some there. kramer: ya morty: say those are some nice pants. i got a pair just like them at home. kramer: well uh that doesn't surprise me, ya i bought these at rudy's. it's a used clothing store. see when people like you die, the widows they bring in their wardrobes, they make a bundle. george: really? my father has a ton of old clothes just sitting up in the attic, y-you think they're worth something? kramer: ya if they're vintage, and you're a widow. george: what happens if the husband dies after the wife, who brings in the clothing in then? kramer: well i suppose the children do. george: (pondering) yes i suppose they do. kramer: (takes another smell of his hands) alright i gotta a ten o'clock, i'll see everybody later. george: (grabbing his jacket) hey oo, i just remembered uh my parents really wanna have you guys over for dinner before you leave town. what about tonight? helen: tonight? george: yea they're making paella. helen: (looking at morty) uh oh i don't think we think we can make it tonight, (turns toward george) we have plans. jerry: (watching the whole conversation from his desk) what plans? helen: (turns to jerry) we have plans. jerry: where'd you get plans? helen: (annoyed) we have plans. george: well um, what about tomorrow night? helen: (turns back toward george) maybe george: ok uh, i guess i'll tell them that. morty: (to george as he is about to leave) hey give 'em our best though. george: (quietly) ya. jerry: (walking over toward george and the door) i'll call you later. george: ya. jerry: so what plans do you have? morty: none jerry: so how come you're not going over there for dinner? helen: jerry we don't care much for the costanzas'. morty: we can't stand them. jerry: really? since when? helen: since always. we've never liked them. jerry: why? helen: well they're so loud, they're always fighting it's uncomfortable, you never notice? jerry: no i notice but they're from your age group i didn't know you could detect abnormal behavior among your own kind. morty: well we do. jerry: ya? elaine: it's us. jerry: u-oh come on up. (buzzes them up) it's elaine you don't have a problem with her do you? helen: we adore elaine. jerry: she wants to say hi, she's with her new boyfriend. helen: what's he like? jerry: he's nice, bit of a close talker. helen: a what? jerry: you'll see. (pause) boy, i had no idea you felt this way about the costanzas' helen: they're exhausting it's like being in an asylum. everyone: hi. morty: hello elaine elaine: this is aaron. helen: hello aaron morty: hello. aaron: (getting up in helen's face) so how long you folks in town? helen: oh, three more days, three more days then we're off to paris. aaron: ah morty: we're going with a select charter group. aaron: i love france, (moving over to morty's face) i was just there last year. in fact, you know i still have an envelope full of french franks, i'll give 'em to ya. helen: we can't take money. aaron: oh, no, it's a gift. (looking toward elaine) from us. elaine: oh, that is soo nice (very elaborate nice) aaron. isn't he nice? (to helen) so listen has jerry been showin' you a good time? jerry: no i haven't. aaron: you know (to morty) i have a friend who works at the metropolitan museum of art. how would you like a behind the scenes tour? helen: (grabbing aaron) really, you could do that? aaron: (up in helen's face) easily helen: i wouldn't be any trouble? aaron: (gets closer) of course not. helen: when would we go? aaron: how about right now? morty: i'm ready helen: are you sure? aaron: yes. helen: ok, let me get my coat. aaron: (walking over to elaine and getting into her face) elaine what do you say? elaine: w-well i don't think so aaron, uh, i have plans. aaron: oh. (getting into jerry's face) how about you jerry? jerry: i'm swamped. aaron: you sure? you could examine the art work up close. jerry: maybe i'll try and catch up with you. elaine: (under her breath) ya that'll happen) aaron: (moving toward the door) alright. we're off. morty: ok, bye. helen & aaron: bye. jerry: ok buh bye. have a good time. elaine: bye. aaron: see everybody later (morty and helen leave; aaron closes the door blowing elaine a kiss) jerry: ok. elaine: why would he ask your parents to go to a museum? jerry: i don't know. elaine: what is that? jerry: maybe he was just trying to be nice. elaine: have you ever heard of anyone doing anything like this? jerry: wait a second, he just did me a big favor. elaine: what? jerry: (dialing) he got em out of the house. elaine: what? jerry: call rachel. elaine: oh. jerry: (on the phone) ah no, i got the machine. rachel! are you there?! i got the place to myself for a few hours! rachel! where are you? rachel! (hangs up the phone very disappointed) elaine: (putting on lipstick) sorry pal, wish i could help you out. frank: they're not coming? george: no, they had plans. estelle: how could they have plans? george: that's what i wanna know. frank: well what difference does it make? they wouldn't lie to us, they're are dear friends. estelle: what am i supposed to do with all this paella? george: they said tomorrow, maybe. frank: maybe? estelle: maybe they don't like us. frank: why wouldn't they like us? (tastes the paella; disgusted) again with the pepper? what do you gotta use all the pepper for? estelle: ah keep quiet. frank: what are you trying to set my mouth on fire? george: i don't know what the reason could be. jerry: (disappointed) oh, hi, hi. aaron: ah jerry you would not believe the time we had. helen: aaron is quite the tour guide. morty: jerry have you ever seen any of those impressionist paintings? jerry: oh sure like monet. morty: don't you think he had to be uh near sighted? i mean know body would paint like that if they could see. it's all out of focus. jerry: well he's from the impressionist school, you know like monet, manet, tippi tippi dayday. morty: i say the guy was painting without his glasses. jerry: (answering phone) hello? rachel, ya uh no they're back. helen: jerry if you have something to do we could just sit right here and read. jerry: uh haha ya well uh i'm sorry too i'll call you later, ok bye (hangs phone up) aaron: well i should be going. helen: oh thanks again. aaron & helen: buh bye. aaron: oh you must be kramer (advances on kramer to close to his face kramer walks back into the fridge to avoid him and falls to the ground) i've heard about you. kramer: you must be aaron, i've heard about you. aaron: (laughing) well see you later. kramer: yeah. aaron: (leaving) bye jerry: bye kramer: so uh what are you guys doing for dinner? helen: we have no plans. morty: (noticing kramer's coat) look at that, helen do you see what he's wearing? that's the executive. kramer: now what is executive? jerry: the belt-less trench coat. my father invented it. morty: i sure did. raincoats were my business. the executive was a classic, these haven't been made in twenty years. helen: why would they? know body bought them then. morty: he's wearing one. kramer: yea these are a hot item over at rudy's. morty: you don't say? you know i have boxes of those sitting in my garage in florida? kramer: get 'em up here. you give me twenty-five percent i-i'll take care of everything. morty: you gotta deal. kramer: yaaaa. jerry: this is like the meeting of smith and wesson. morty: i'll call jack klompus, he's got a key to the garage. he can send them overnight delivery. helen: you're gonna first start shipping boxes? we're leaving for paris in three days. morty: he'll send them express. helen: you're crazy. morty: i'll tell you how crazy i am, i'm gonna pay for this whole trip with these coats. jerry: n-na i'm paying for the trip. morty: so much the better. george: anyway it's kind of a fluke thing but uh i'll be leaving for paris in two days. i will send you a postcard when i get there. alec: paris huh? george: yea, ya..ya know i feel terrible about joey but it's jus..it's a great business opportunity. i-i don't even know how long i'm gonna be away for. alec: where will you stay? george: an apartment complex, the uh the eiffel towers. uumm like i said uh you'll be getting a postcard uh in a few days and again i'm sorry. alec: george, you have no idea how fantastic this is. george: fantastic? alec: ya, we've been trying to reunite joey with his father who lives in paris. but he's afraid to fly alone, you know he's kinda withdrawn, but he seems to take to you. (george smiling in surprise) so it's a perfect solution. george: how gee what a coincidence. alec: and you'll send me a postcard. aaron: helen really seemed to respond to renoir. i think she really connected to the way he painted children. elaine: mm hmm. aaron: and that morty, i'll tell ya that guy is full of life. (laughs) he was convinced monet was near sighted. i kept telling him elaine: aaron aaron: yes? elaine: uh, let me ask you a question. how come you asked mr. and mrs. seinfeld to go to the museum with you? aaron: well, they were in from out of town, i thought they would enjoy it. elaine: uhuh, um you didn't feel uncomfortable spending the whole day at the museum with two complete strangers who were more than twice your age? aaron: no, it was fun. elaine: you had fun with mr. and mrs. seinfeld. aaron: yea, they bought me a coke. kramer: so how'd you come up with the idea for the belt-less trench coat? morty: i came home one night, and i tripped over one of jerry's toys. (jerry smiling points to himself and nods with cards in his hands) so i took out my belt just to threaten him, and i got a glimpse of myself in the mirror. kramer: how serendipitous. morty: so that night i cut off the loops and the executive was born. kramer: mmm jerry: he also came up with an idea for a brimless rain-hat but that never materialized. (to morty) alright come on let's play. kramer: did you call jack klompus yet? morty: i haven't been able to reach him. hey i'll call him right now. jerry: ah come on. morty: just a second. (goes to grab the phone) helen: jerry have you seen schindler's list? jerry: no i haven't seen it yet. helen: oh you have to go you have to jerry: i'm going helen: you have to jerry: ok morty: (on the phone) hello jack. jack: ya morty: it's morty jack: who died? morty: know body died. jack i want you to do me a big favor. (jerry holding up some cards looking at his father) in my garage there are a couple of boxes. jack: what boxes? morty: i'm gonna explain what boxes. jack: alright how the hell do i know? morty: anyway there are these three big boxes, you can't miss them. i want you to ship them here to new york for me. jack: i thought you're going to paris morty: i'm still going to paris. i got a big deal cooking here. jack: what's in the boxes? morty: raincoats. jack: raincoats? (doris sighs) you think you're gonna sell those old crappy raincoats? that's garbage. helen: i guarantee you doris is not letting him mail those boxes. jack: when do you want these? morty: send them tomorrow. estelle: you think they're coming tonight? george: i dunno they said maybe. frank: of course they're coming, they're leaving soon. if they don't come tonight they might not see us. estelle: well they better come, i got all this paella. frank: i admire morty and helen going to france. we should take a trip, maybe a cruise. george: yes a cruise, a long cruise, just the two of you. estelle: georgie what were you doing poking around the attic last night? george: i-i wasn't in the attic. estelle: i heard noise. george: maybe it was a mouse. frank: (jumping to his feet) ok that's it! we're moving! george: what? frank: i will not tolerate infestation. george: you haven't even seen one. frank: don't you understand the very thought, the very idea, i'll never be comfortable again. estelle: alright frank that's enough. george: i guess i've been hanging on to them for so long cuz i couldn't accept the fact that dad was really gone forever (hugs a piece of clothing) rudy: uh huh. george: they will get a good home won't they? rudy: look i gotta be honest with you there's nothing here too spectacular. george: oh i beg to differ. my father took great pride in his appearance, he was a very handsome man, a casanova really. rudy: i'll give you uh two-hundred dollars for the three boxes. george: could you make it two-twenty-five that was his hi-game in bowling. rudy: yea i'm in a good mood here. george: thank you. kramer: hey, george what are you doing here? george: uh, i'm just selling some of dad's things, (looking into kramer's eyes) that's what he would have wanted. kramer: oh, i gotcha (clicks) george: (leaving) that'll do. kramer: oh hey guess what. morty seinfeld and i are going into business together, selling raincoats. george: hey that's swell. kramer: yea we worked it out all over dinner last night. george: dinner? (grabs kramer) kramer: ya. george: you had dinner with the seinfelds'? kramer: yea, last night. george: was this something you had planned for a while? kramer: no it was a spur of the moment. well you know morty likes to fly by the seat of his vintage pants. george: (hurriedly leaves rudy's) they had plans, they had plans! kramer: oooo, boy i've never seen these before (looking at the clothes george just sold rudy) rudy: well they just came in, part of my spring-time cruise collection. two for twenty-five dollars. kramer: oh i'll take these. rudy: alright kramer: hey, remember this raincoat that you sold me? rudy: sure that's the executive. kramer: ya, you have any others? rudy: i wish, they don't make 'em anymore. kramer: suppose i told you i had fifty in mint condition, would you be interested? rudy: very interested kramer: cuz they're coming in from florida as we speak. rudy: well bring 'em in. kramer: so you'll buy them? rudy: i don't see what would possibly stop me. george: aaaa (looking around for jerry) aaaa (finds jerry) ah ha. they had plans huh? they were busy. they were busy with their (doing a little dance to make the plans seem all that important) big plans! jerry: what are you talking about? george: mom and pop seinfeld jerry: look i don't know. george: alright i happen to know what they did last night, they had dinner with kramer. jerry: oh they were tired it was a last minute thing. george: so what's the deal they don't want to have dinner with my parents? jerry: that's right. george: is there something wrong with my parents? jerry: absolutely george: because my parents happen to be two pretty wonderful people. jerry: these the people you currently live with? george: yes. jerry: uh huh george: so are they coming tonight or not? jerry: look i really don't know what they're plans are. george: ok, fine. it's going to be very interesting, very interesting if they don't show up tonight. you know my mother made all this paella. jerry: what is that anyway? george: it's a spanish dish. it's a moulage of fish, an meat with rice. very tasty. jerry: i-i'll tell 'em george: hey could you do one other thing for me? jerry: name it. george: you think your parents would have any objections to taking a little kid to paris with them? (jerry looks at him confused) it turns out that the kid's father lives in paris. (chuckling) is that a coincidence? (jerry smilies) eh you know alec wants me to take him over there so i figure as long as they're going (claps) jerry: so you thought as long as they're mailing postcards, it wouldn't be too much to ask my parents to drag a child who they've never seen, through the streets of paris? george: (pause) alright if you think it's too much they don't have to mail the postcards. joanne: so where's he taking you? elaine: well first we're going to a matine, i'm taking the afternoon off, we're gonna go see "my fair lady" and they we are gonna go to dinner. he knows all these fantastic places. joanne: you are one lucky girl. (elaine laughs in happiness) wish i could find a nice guy. (joanne goes to leave; aaron enters) hi aaron. aaron: (getting up in aaron's face) hey joanne. (turns to elaine and goes over to her) hey elaine: (already out from behind her desk goes to aaron) hi helen: hello, hello. morty: hello elaine aaron: i was able to finagle two more tickets to "my fair lady" and i thought why not ask morty and helen. elaine: oh, great. morty: (looking around) this is some office. what's the square footage? helen: you don't mind to you elaine? elaine: mind? oh o-of course not. aaron: we can make a whole day of it. morty: this is some building, harry fleming used to have an office here. there was a deli on the first floor. you don't get corned beef like that anymore. what happened to that deli? elaine: (somewhat annoyed) i really don't know mr. seinfeld jerry: (stopping them) we better not. (they make out some more; then stop) t-they're gonna be here any second. rachel: when are they leaving? jerry: in two days. rachel: it's been soo long. jerry: i know. rachel: ok, it's only two more days. jerry: right, thursday three o'clock. morty: (from outside the door; singing) i could have danced all night (entering with helen) i could have danced all night and still have helen: ooh. jerry: oh hi. helen: we didn't know you had company. jerry: (tucking in his shirt) oh ya this is rachel. rachel: hi. helen & morty: hello rachel. helen: uh we'll come back another time. jerry: what other time? helen: whenever jerry: where you goin'? morty: uh we'll drive around for a while. jerry: you don't have a car. morty: we'll take a bus. jerry: come on stop. helen: no we don't mind morty: i'll get a book. rachel: no no it's ok, i was just leaving anyway. helen: o-oh are you sure? rachel: yea. helen: cuz we don't wann.. jerry: (interrupting) no no it's ok. (walking rachel out) so we'll go see schindler's list later right? rachel: definitely jerry: ok. uh rachel: (going out the door) it's night meeting you. helen: nice meeting you. jerry: ok, see you later. morty: boy that was some show. jerry: what show? morty: "my fair lady" jerry: when did you get tickets to see that? helen: aaron surprised us, and elaine came. jerry: oh (laughing) elaine really? well that sounds interesting. morty: we saw regis philbin get out of a limousine. jerry: oh. helen: he looks better on tv. jerry: oh jerry: (answering phone) hello? jack: hello jerry, jerry: yea. jack: it's jack klompus. jerry: oh hi jack. jack: so when are you coming down to florida again? jerry: as soon as is humanly possible. jack: you know i still got that pen, the one that writes upside down. jerry: yea yea ya i shoulda kept it. jack: so uh where's your father? jerry: ya he's right here. morty: yea jack: morty, listen i can't get into the garage. morty: what do you mean? jack: there is something wrong with the key. the key doesn't work morty: you gotta jiggle it a little bit. i jiggled it. i jiggled it for fifteen minutes. doris: tell him to come down here and get his own packages. you have nothing better to do then worry about his boxes. morty: you gotta pull on the knob as you turn it. jack: get the hell outta here with your knob. doris: what does he want from you? morty: my idiot son could open that garage door. jerry: what did i do? morty: just do it first thing tomorrow. i need it. morty: they'll be here first thing thursday morning. helen: thursday morning? you know we're leaving at three o'clock. jerry: (in a hurry) yea you're leaving at three o'clock. helen: how are you gonna get all this done in time? morty: don't worry about it. jerry: (in a hurry) ya how you gonna get all this done in time? george: they were drinking champaign in a buggy! frank: first kramer, then elaine? george: yea frank: it's a slap in the face. estelle: (with her arms out in wonder) what did we ever do to them? (george puts his arms out and imitates estelle as she moves her arms up and down as she speaks) i want to know what we did them! frank: what are they too good for us? a raincoat salesman, i could buy and sell 'em like that. estelle: the hell with them. george: (in the threshold between the living room and the kitchen) the thing that bothers me the most, is the lying. frank: let's forget about it. we're going on a beautiful vacation. (sits down in his chair) george: (sitting down) vacation? frank: you're mother and i are planning on taking a cruise. george: (claps all happy) ah! (half hugs estelle) frank: but i can't find any vacation clothes. they were in the attic. george: the attic? y-you haven't wore any of those clothes for years. frank: how can i go on a cruise with out my cabana wear? i love those, those clothes. (looks down yells) ah! (jumps out of his chair) a mouse! i saw a mouse! (takes off into another room with glass doors on it and shuts the door) george: (picking up what frank saw as a mouse) it's the remote. frank: (looking from the room; you can see him through the glass) where the hell are my clothes? i love those clothes. rudy: lousy moth ridden crap. [movie theater: schindler's list] jerry: hey. morty: hey, jerry. helen: so how was the movie? jerry: oh, really good, really good. helen: and didn't the three hours go by just like that (snaps her fingers) jerry: like that (snaps his fingers) morty: what about the end, with the list? jerry: ya that was some list. helen: what did you think about the black and white? jerry: (confused) the black and white. morty: the whole movie was in black and white. jerry: oh yea, i didn't even realize. morty: you don't even think about it, there's so much going on. jerry: ya ya, i tell ya i could see it again. kramer: so klompus has the key, but the jerk couldn't open it up. all you gotta do it jiggle it (has is hand out jiggling) jus get it in there (jiggling making a bunch of noises) jigg jigg jiggle reiggle rudy: look, i find this whole thing very uninteresting. when you get the coats come in. kramer: hey what again? george: i'm trying to buy some of the clothes back. (realizing something) hey you wanna come over for dinner tonight? my mother made all this extra paella. kramer: paella, ya i'll be there. george: apparently the seinfelds' are too good for us. i shouldn't say anything bad about your uh your partner. kramer: no no you know we're not partners. i only get twenty-five percent. george: twenty-five percent? it was your idea. kramer: yap i know. george: you're doing all the leg work. kramer: that's right george: he's ripping you off kramer: you're right he's ripping me off george: if anybody should be getting more it's you. kramer: he's ripping me off george: well don't let him take advantage of you like that. kramer: yah! (exits) rudy: (coming out of the back-room noticing george) oh it's you? you're the one who sold me the moth ridden cabana crap. morty: you know i've been thinking, why is kramer getting twenty-five percent? helen: well he told you about the place. morty: so what, why is that worth twenty-five percent? it's a finders fee. you know what a finders fee is? helen: you find something you get a fee. morty: finder's fee is ten percent and no more. helen: well it's too late now. morty: those are my coats. i saved them, i stored them, i've been waiting years for this pay off. helen: well you're not gonna say anything. kramer: i've been thinking about something. morty: ya so have i kramer: ahh! i don't think the deal is fair. morty: you don't think it's fair. kramer: no no, i found the place, i set the whole thing up, i'm doing all the leg work. morty: what leg work? kramer: oh, there's leg work. morty: if anything you're getting too much. kramer: too much?! morty: that's right, they're my coats. kramer: look i want thirty-five percent. morty: i'm thinking more like fifteen. kramer: no way i'm taking fifteen. morty: well you're not getting thirty-five. kramer: alright let's compromise. twenty-five percent. morty: ok it's a deal rudy: moths are a discourage to my business, all it takes is one moth to lay eggs. you know what happens to the larvae? they hatch and they're everywhere. george: i'm sorry, umm he-here's your money back (gives rudy the money back) i-i-i'll have the clothes. rudy: (counting the money to make sure it's all there) it's already put a dent in my fumigation bill. george: so uh where are the clothes? rudy: i burned 'em. george: oh. that's good. elaine: n-i know they're your parents jerry an' they're very nice people. but don't you think it's odd, that a thirty-five year old man is going to these lengths to see that someone else's parents are enjoying themselves? i mean don't you find that abnormal? jerry: it is a tad askew. elaine: i mean they're your parents and you don't do anything. so why is this stranger doing it? jerry: i've hardly been out to dinner with them. elaine: see, see, i can't even say anything you know because all he's really doing is being nice but but know body is this nice, this is like certifiably nice. jerry: you're right he's insane. elaine: yes, he's insane, that's what i think. jerry: so what are you going to do? elaine: i don't know, i don't know what to do. (sighs) oh god.... so how was the movie? jerry: uh from what i saw it was pretty good. elaine: ya what do you mean from what you saw? jerry: well i um i didn't ah actually get to see the whole movie. elaine: yea why not? jerry: i was kind of um (pauses) making out. elaine: (thinks for a second) you were making, out during schindler's list? jerry: i couldn't help it. we hadn't been alone in a long time, it just got the better of me. elaine: during schindler's list? jerry: (trying to justify it) we're both living with our parents. elaine: did anybody see you? did anyone say anything? jerry: no i don't think so. i saw newman as i was leaving but see me. elaine: oh. newman: hello mrs. seinfeld helen: (like jerry) hello, newman. jerry's not here. (goes to shut the door on him) newman: uh ah (stops her from closing the door; walks in) having a nice trip? (walks over, grabs a junior mint, smells it then puts it in his pocket) helen: wonderful, we went to the theater last night. newman: oh the theater. because i was wondering. helen: wondering what? newman: why i didn't see you at schindler's list with jerry. helen: well we already saw it. newman: oh, well it's a good thing for jerry that you didn't go. morty: (getting up from the table and coming over) why is that? newman: well he really seemed to have his hands full if you know what i mean. helen: i'm afraid i don't. newman: him and his little buxom friend rachel were going at it pretty good in the balcony. morty: what? newman: what, do i have to spell it out for ya? he was moving on her like the storm-troopers into poland. helen: jerry was necking during schindler's list? newman: yes! a more offensive spectacle i cannot recall. anyway i just really came up to get some detergent. helen: jerry sends his laundry out. newman: (laughing) oh ho right. well very nice seeing you folks and a by the way you didn't hear this from me. tata (runs down the hallway laughing) jerry: hi (takes off his coat and puts it on the counter at which point his parents are both right by him as he goes into the refrigerator. he grabs a drink then turns around to see his parents right there) what? what did i do? helen: how could you? jerry: how could i what? helen: you were making out during schindler's list? jerry: what? no. morty: don't lie jerry. jerry: (turns) newman. helen: how could you do such a thing? jerry: i couldn't help it. we hadn't been alone together in a long time and we just kinda started up a little during the coming attractions and the next thing we knew, the war was over. jerry: (answering the phone) hello. jack: hello jerry, it's jack klompus. jerry: hang on a second. (handing morty the phone) dad it's klompus. morty: hello jack: hello morty, listen that key doesn't work. it's no good. morty: you didn't get in? jack: oh i got in, i had to break the window with a rock and then i got my hand all cut up reaching in. morty: you broke the window? helen: he broke the window? jack: you wanted those damn boxes didn't you? doris: (off camera) he should be on his hands and knees thanking you. morty: did you send them? jack: yea, they'll be there tomorrow afternoon, two o'clock. morty: tomorrow afternoon? helen: tomorrow afternoon? jerry: tomorrow afternoon? morty: i told you to send them express. jack: w-well it was ten dollars cheaper in the afternoon than the morning, i figured what the hell's the difference. morty: so what did you do about the window? jack: i gotta fix your window now? morty: alright alright, goodbye. (morty hangs up the phone, jack hangs up the phone) i don't think we are gonna make that flight. jerry: w-what do you mean you're not making the flight? helen: we have to make the flight, we're with a charter group. if we don't the trip is off. morty: well what's the difference we'll go some place else. helen: some place else? what about paris? morty: you don't understand, i've come this far, i can't stop now. helen: i can't believe that you're doing all this just to sell some stupid raincoats. morty: you don't understand fashion is cyclical this thing could come back. helen: i think you're out of your mind. frank: i just don't understand how all those clothes can disappear. george: moths? frank: moths, ate three boxes? george: well you know what happens with larvae hatch, they-they're everywhere. estelle: you know, i was thinking today. i never liked those seinfelds anyway, he's an idiot all together. (knocking at the door) ah there's kramer. kramer: (from outside) hello? estelle: hello kramer: (still outside) helowwwowwow (estelle opens the door) hey (kisses estelle hello) ha ha, good evening (george waves) estelle: hope you're hungry. (goes into the kitchen) kramer: ooo paella george: hey uh let me take you're coat. kramer: (giving george his coat) oh ya thanks buddy. frank: that shirt, where'd you get that shirt? kramer: wha? frank: that's my cabana shirt, you stole my shirt you son of a bitch! (really fast) george you let your friends go up in my attic and steal my clothes? (grabbing at the shirt) gimme that back kramer: (trying to get away) woah george: dad?! kramer: (laughs as frank ends up tickling him; gets away) i bought it from rudy. george: rudy?! that skunk, i knew he didn't burn those clothes. frank: who's rudy? what clothes? george: i sold your clothes yesterday. frank: you sold my clothes (smacks george on the forehead) what do you mean you sold my clothes? george: i didn't think you wore them anymore. frank: it's cruise wear! estelle: kramer, i love that shirt. kramer: yaya frank: that's because it's mine!! estelle: you look just like frank, on our honeymoon. kramer: oh, well, thank you. frank: who's this rudy? kramer: well rudy's the guy buying morty's raincoats. frank: morty seinfeld? he's a bum. kramer: well, the whole deal going down tomorrow. morty's gonna miss his plane for it. george: missing his plane? wasn't that a charter flight? kramer: yea. george: what happens to charter tickets when you don't use em? kramer: well i suppose they are wasted. george: yes i suppose they are. frank: tomorrow i'm going straight down to this rudy and get my clothes. kramer: a mouse! jerry: you want the tickets? george: yes. jerry: you're gonna take this kid to paris? george: hey i get a free trip to paris, i go in the big brother's hall-of-fame, i mail my own postcards. jerry: you know i'm paying for these tickets. george: it's alright, i got lunch. kramer: oh, you should have gone to the costanzas' for dinner. mmm the paella was magnificent. have you ever had really good paella? morty: not really. kramer: oh it's a orgiastic feast for the senses. the want and the festival, the sites, sounds, and colors an mmmummumm mumm jerry: hey dad are you sure we are at the right carousel? morty: this is it. kramer: so how much are we gonna make? morty: take it easy, i've been through a million of these negotiations. kramer: wha two thousand? three thousand? morty: that's giving it away. this is a one of a kind item. kramer: more? more than three thousand? morty: just watch me do my thing. jerry: say dad, (pointing at a raincoat sitting on the carousel next to an open box) isn't that one of yours? morty: look at this. look at how this idiot packed it. he didn't tape it, he just flipped the flaps. (kramer, morty and jerry are looking around grabbing raincoats which are scattered all over the place.) kramer you missed a couple. woman: bon-jour, welcome to the gateway to paris charter flight. jerry: (turns around noticing the charter flight) dad isn't that your charter group? george: honesty, hard-work, these are the values that i was raised on. the most important thing joey, is to be able to look yourself in the mirror before you go to sleep at night. joey: hey! i got news for you four eyes, there's no way you're staying with us in paris. frank: you burned them? those clothes are not yours to burn. rudy: who are you anyways? frank: i'm the father. rudy: he said his father was dead. frank: he said i was dead? rudy: that's right. squeezed an extra twenty-five dollars out of me. frank: that's what my life is worth to him? twenty-five dollars. kramer: hey, frank! frank: oh, i just want to you know i'm retracting our dinner invitation. morty: well you don't have to retract it because we never went. frank: i'm retracting that it was ever offered. morty: i retract your retraction. frank: oh, you trying to unload some of that junk of yours? morty: would you excuse me please, we're conducting business here. rudy: you can keep your raincoats. i'm not interested. kramer: i thought we had a deal? frank: that's another one of my shirts!! rudy: i'm not buying anymore clothes from anyone off the street. morty: who's off the street? i'm in the raincoat business for thirty-five years. rudy: ya how do i know there aren't moths like his stuff? frank: my clothes don't have moths! morty: because of his moths you're not buying my raincoats? rudy: that's right. kramer: (laughing) i'm all ticklish. (a moth flies out of his shirt; they all look at it) announcement: flight-433 now boarding for miami, gate 18a. flight-433 now boarding. morty: ok, let's go. helen: (to aaron) it was so nice of you to come to the airport to see us off. aaron: are you sure you can't stay a little longer? elaine & jerry: no. morty: ah, good-bye. elaine: good-bye jerry: take care morty: alright jer. elaine: nice to see.. morty: buh bye elaine jerry: buh bye. helen: buh bye. helen: (looking at jerry while being overly hugged by aaron) we'll call you when we get home. aaron: thank you. jerry: i think she meant me, but. morty: make sure kramer uses good tape when he sends back the raincoats. jerry: ok. elaine: bye. jerry: bye. elaine: aaron? aaron are you ok? aaron: i could've done more. i could've done so much more. elaine: you did enough. aaron: (turning toward her) no, i could've called the travel agency, got them on another flight to paris, i coulda got them out. jerry: you tried aaron, it was too expensive. aaron: (holds his arm up) this watch, this watch could've paid for their whole trip. (holds his other hand up) this ring, this ring is one more dinner i could've taken them out to. (jerry and elaine look at each other like he's crazy) water, they need some water (turns around and runs to the flight agent) elaine: why? aaron: (to the flight agent) they'll get dehydrated on the plane! get the seinfelds some water. please! please! jerry: hi mr. goldstein is rachel home? mr. goldstein: i'm afraid rachel's not going to be able to see you tonight, or any other night for that matter. jerry: why what did i do? mr. goldstein: (rachel is know seen behind her dad) you know very well. i heard about your behavior at the movies the other night it was disgraceful. you should be ashamed of yourself, i for one will not allow my daughter to be involved with someone of such weak moral fiber. fortunately my postman happened to have witnessed the entire incident. a heavy set fellow, i believe he lives in your building. (jerry turns to almost do a 'newman') now if you don't mind. (starts to close the door) jerry: rachel! mr. goldstein: (closing the door on jerry) good night! jerry: rachel! jerry: so my parents get home, they open the door, my father flicks the light on, the whole place is cleaned out, everything. elaine: aahh, (pushes jerry from her seat at the table) get out! how did it happen? jerry: the broken window, klompus never fixed it. they just walked right in. elaine: oohh, boy. they could use a vacation. jerry: yea they're taking one, the travel agent is trying to set something else up for them. elaine: (sighs) so how about that aaron? jerry: whew elaine: you know what drove me crazy about him? did you ever notice that he stood too close to you when he talked? jerry: no i hadn't noticed. newman: (at the counter) pair of bear claws please. jerry: (hearing newman turns and sees him) hiya newman. newman: (moving away from the counter getting closer to the door) hello jerry. jerry: say, i happened to catch you coming out of schindler's list the other night. newman: ohh, were you there? jerry: yes i was. newman: (looking scared) i-it's a it's a...powerful film. jerry: yes, shocking brutality don't you think? newman: (couple quick breaths) shocking. jerry: yes, well that was nothing. newman: (running out the door) jerry! jerry! george: where the hell is your father?! estelle: this is the best thing we ever did. frank: i just hope those exterminators know what they're doing. estelle: ah forget about them let's just... toby (exuberantly): these are great! just great! really great! really, really great! don't you think so, elaine? elaine (put off by toby's exuberance): yeah, really great. toby: oh, a coffee table book about coffee tables! (to kramer) how did you come up with this idea? kramer: it was there! toby: oh, look at this one! it's saying, 'i'm a coffee table, put some coffee on me! oh, the hotter the better, that's what i'm here for!' (laughs) elaine: you know actually, i've got some work i gotta do, so... kramer: hey, how about if the book came with these little fold-out legs...so the book itself becomes a coffee table? toby: ohhh, that is a great idea! really, really great! elaine (imitating toby): 'oooh, and that coffee table is saying, put some coffee on me!' i'd like to put some coffee on her. hot, scalding coffee - right in her face! i swear! this is like working with a contestant from "the price is right"! (demonstrates a winner on "the price is right") jerry: yeah, that's real interesting. elaine, listen, tell me if you think this is funny - (reads comedy he's written) "men definitely hit the remote more than women...men don't care what's on tv, men only care what else is on tv. women want to see what the show is before they change the channel, because men hunt and women nest." elaine (uninterested): yeah, it's funny, i dunno. jerry: you don't know? come on, that's gold! elaine: well, i don't know about "gold." jerry: oh, that's gold, baby. elaine: 'baby'? what, are you doing george now? jerry: i was saying 'baby' way before george! elaine: well, i don't know, don't ask me any more questions about jokes, jerry, it just puts too much pressure on me. jerry: well, this guy leonard christian's gonna be there tomorrow night. elaine: yeah, who's he? jerry: he's a writer from entertainment weekly . i would like to have a good show. kramer: danke schoen, my little dumplings. elaine: hi. kramer (to elaine): hey, how about that toby, huh? elaine: yeah, how about her? kramer: ooh, she's a package full of energy! elaine: yeah, she's a package full of something. kramer: yeah, and that something is life. jerry, you gotta meet this gal - she's brimmin' with positivity! elaine (absolutely disgusted): oh, pleeeeease. (moves to the living room and sits down) kramer (to jerry): hey, are you performing tomorrow? jerry: yeah. kramer: great, i'm gonna bring toby. jerry: well, you better laugh 'cause i'm being reviewed. leonard christian's gonna be there. kramer: oh, she's a great laugher - right, elaine? elaine: oh yeah, she's a great laugher, jerry. (imitates toby) really, really great! jerry (to kramer): well, you want to sit with george? i think he's coming with robin. kramer: is that the waitress from the comedy club? jerry: yeah. kramer: oh. elaine: what about her kid, is she bringing him, too? kramer: she's got a kid? jerry: yeah, you should see george get along with this kid! george: ow! what are you doing under there? hey, stop that! don't eat that! that's not food! (to robin) he's suckin' down equal packets! robin: do you think 25 kids is too much? george: 25 kids for his birthday party? (to kid under table) don't put your tongue on the floor! he's putting his tongue on the floor! here, here, have some more sugar packets. (tosses some equal packets under the table) robin: so, what about entertainment? (to kid) should i get barney? kid: no barney! robin (to george): maybe a clown. george: how about bozo? kid: who's bozo? george: who's bozo? bozo the clown, that's who bozo is. when i was a kid, bozo the clown was the clown, bar none. robin: george... george: with the orange hair, and the big clown shirt with the ruffles... robin: george... george: he had a tv show! he had cartoons! robin: george! forget bozo, george. bozo's out. he's finished. it's over for bozo. george: you know, when i was a kid, we didn't have these elaborate birthday parties w-with catered food and entertainment. i remember my 7th birthday party... frank: blow out the candles! blow out the candles, i said! blow out the damn candles! estelle: stop it, frank! you're killing him! frank: blow out the candles!! robin: well, this time, you can blow out the candles. george: nah, i have asthma. (robin's kid grabs george's leg from under the table, and george struggles.) toby: hi! elaine (in a dreadful tone): hi, toby. toby: how are you doing today? elaine: fine... (toby sits and waits for elaine to speak.) how are you? toby: oh, i'm great! just great. really great! oh, hey - did you hear about bob rosen? elaine: nope. toby: he is going to knopp. he is going to be a vice president. elaine: knopp? really? boy. that means there's an opening here for senior editor...has lippman, uh, hired anyone? toby: no. i hear he wants to promote someone in-house. elaine: really!? toby: maybe it'll be you! elaine: oh...well... toby: you really deserve it. i mean, you have experience, seniority...lippman really respects your opinion... elaine (beaming): well! well, it could be you. toby: no... elaine: no, really. toby (standing): really? you think so? elaine (humoring her): sure. toby: boy, wouldn't that be exciting! elaine: i mean, stranger things have happened... toby: wow! me! a senior editor! (deadly serious) i'd like that. elaine: well, you shouldn't get your hopes up, toby. toby: well, it's a possibility, like you said! stranger things have happened! thank you, elaine. thank you. (exits.) jerry: hey, ronnie. ronnie: hey. jerry: (to bartender) can i have a club soda? (to ronnie) goin' on tonight? ronnie: yeah. you? jerry: yeah. ronnie: you know leonard christian's here? jerry: yeah, i know. ronnie: can i ask you something? are my nostrils getting bigger? jerry: (looking at his nostrils) i don't...think so. ronnie: are you sure? take a good look. they seem a little bigger? jerry: i don't...i dunno. ronnie: is it possible for nostrils to expand? jerry: oh, is this a bit? ronnie: hey, i don't do "bits." i'm a prop comic. dammit, i can't find my water gun. i can't go on without my water gun. kramer: hey, jerry. jerry: (turns to greet kramer) hey. kramer: well here's toby, (points to jerry in order to introduce him to toby) jerry. toby: this is so exciting! look, i have goosebumps! (to jerry) touch! touch them! (jerry touches her arm. toby screeches with excitement.) i've never been to a comedy club before! jerry: really! you know, a lot of restaurants are serving brewed decaf now, too. toby (laughing): you are so funny! jerry: oh, you'll have a good time, i swear. toby: oh! he swears like he thinks i don't believe him. i believe you. i believe you! oh, he's so funny! (laughs) kramer: what about me? toby (serious): what about you? (laughs) i'm only kidding. you're funny, too. i love to laugh. jerry: good, good. kramer (to jerry): so, you up next? jerry: yeah, why don't you guys get a table so you'll have good seats? toby: oh yeah, we don't want some jerk sitting in front of us, it'll be like, 'hey, big head, can you move out of the way? i didn't pay a cover charge to stare at your bald spot.' (laughs) kramer: alright, so you have a good show, huh buddy? jerry: yeah. toby: oh, have a great show. hey, we'll make sure it's a great show! jerry: o.k., good, i'll see you later. (kramer and toby are about to exit. she turns around and clutches kramer's jacket.) toby: oh, he's so great! this is so great! i'm so excited! jerry: men definitely hit the remote button more than women... toby (loudly): oh, really! really! that is so true! jerry: yes, yeah...see, men don't care what's on tv, men only care what else is on tv. toby: yes! yes! right on! right on! (other audience members give her puzzled looks.) jerry (attempting to carry on despite toby's interruptions): see...women really want to see what the show is before they change the channel... toby: oh, that is so true, yes! jerry: ...that's why men hunt and women nest. toby: boo! boo! hiss! boo! (toby's obnoxious behavior causes jerry to completely lose his place and mess up his act.) jerry: yea, ya, so...anyway what was i talking about. kramer: hey. jerry: hey, what's the deal? what was goin' on there? i invite you down here, i have an important show, and she heckles me?! kramer: look, she didn't mean anything. jerry: well, what is the matter with her? is she crazy?! kramer: she's just being enthusiastic, that's all! jerry: hey! what is wrong with you?! toby: me? nothing's wrong with me. jerry: y-you boo me?! you hiss?! you didn't stop blathering throughout the whole set! toby: oh, come on! i thought you're a pro! that's part of the show. jerry: no! not part of the show! booing and hissing are not part of the show! you boo puppets! you hiss villains in silent movies! toby: well, that's the way i express myself. how are you gonna make it in this business if you can't take it? jerry: oh, i can take it. toby (to kramer): let's go. (ronnie walks by jerry.) ronnie: hey, man. good set. george: bozo? eric: no. george: b-o-z-o? eric: sorry, i... george: you've never heard of bozo the clown? eric: no! george: how could you not know who bozo the clown is? eric: i don't know, i just don't. george: how can you call yourself a clown and not know who bozo is? eric: hey, man - what are you hassling me for? this is just a gig, it's not my life. i don't know who bozo is, what - is he a clown? george: is he a clown? what, are you kidding me!? eric: well, what is he? george: yes, he's a clown! eric: alright, so what's the big deal! there's millions of clowns! george: alright, just forget it. eric: me forget it? you should forget it! you're livin' in the past, man! you're hung up on some clown from the sixties, man! george: alright, very good, very good...go fold your little balloon animals, eric. eric! (chuckles) what kind of name is that for a clown, huh? robin's mother: excuse me...you must be george! i'm robin's mother. oh, you seem like such a lovely young man! george: well, i do what i can. (robin comes over.) robin: hi mom, how's everything? robin's mother: oh, this is just a wonderful party! robin: the burgers should be ready in a minute. george: ah, great, great. (sniffs) what's that smell? smoke? (walks to the kitchen) hey everybody, i think i smell some smoke back here...(smoke boils into the doorway.) fire! fire! get out of the way! george (to the emts): it was an inferno in there! an inferno! (eric, robin's mother, and all the kids rush at george.) eric: there he is! that's him! (tries to clobber george with his big shoe.) robin's mother: that's the coward that left us to die! george (voice is hoarse from screaming): i...was trying to lead the way. we needed a leader! someone to lead the way to safety. robin: but you yelled "get out of my way"! george: because! because, as the leader...if i die...then all hope is lost! who would lead? the clown? instead of castigating me, you should all be thanking me. what kind of a topsy-turvy world do we live in, where-where heroes are cast as villains? brave men as cowards? robin: but i saw you push the women and children out of the way in a mad panic! i saw you knock them down! and when you ran out, you left everyone behind! george: seemingly. seemingly, to the untrained eye, i can fully understand how you got that impression. what looked like pushing...what looked like knocking down...was a safety precaution! in a fire, you stay close to the ground, am i right? and when i ran out that door, i was not leaving anyone behind! oh, quite the contrary! i risked my life making sure that exit was clear. any other questions? fireman: how do you live with yourself? george: its not easy. george: so she doesn't want to see me anymore. jerry: did you knock her over too, or just the kids? george: no, her too. and her mother. jerry: really? her mother. george: yeah. i may have stepped on her arm, too, i don't know. jerry: you probably couldn't see because of the smoke. george: yeah. but it was somebody's arm. jerry: hmm. so you feel "women and children first," in this day and age, is somewhat of an antiquated notion. george: to some degree. jerry: so basically, it's every man, woman, child, and invalid for themselves. george: in a manner of speaking. jerry: yeah, well, it's honest. george: yeah. she should be commending me for treating everyone like equals. jerry: well, perhaps when she's released from the burn center, she'll see things differently. george: perhaps. jerry: so, what was the fire? just a couple of greasy hamburgers? george: yeah. eric the clown put it out with his big shoe. jerry: by the way, did you see this? (hands george a magazine) george: what's that? jerry: it's the leonard christian article about my show. plus my gig in miami got cancelled, i betcha it's because of the article. george: wow, he really does a number on you. (reads) "seinfeld froze like a deer in the headlights in the face of incessant heckling." jerry: i should have let her have it! i held back because of kramer. george: you know what you oughta do. you should go to her office and heckle her. jerry: yeah, right. george: you know, like all the comedians always say, 'how would you like it if i came to where you work and heckled you?' jerry: yeah, that'd be something. george: i'm not kidding, you should do it. jerry: but wouldn't that be the ultimate comedian's revenge? i've always had a fantasy about doing that. george: well, go ahead! do it! jerry: why can't i? george: no reason! jerry: you know what? i think i'm gonna do that! she came down to where i work, i'll go down to where she works! george: this is unprecedented! jerry: there's no precedent, baby! george: what...are you using my babies now? jerry: hey, nice shoes. what, you wear sandals to work? it's always nice to walk into a room and get the aroma of feet. that's real conducive to the work atmosphere. i'm sure your co-workers really appreciate it. 'hey, let's go eat in toby's office. great idea! we can check on her bunions!' toby: you know, i have work to do here! i'm very busy! jerry: oh, is this disruptive? you find it hard to work with someone...interrupting? toby: well, how would you like it if i called security? jerry: security? well, i don't know how you're gonna make it in this business if you can't take it! ya gotta be tough! booo! boooo! toby: no, (gets up out of her chair) that's it. (kramer arrives; to kramer) get out of the way. kramer: hey, what's going on? jerry: boo! kramer: what's happenin' here? jerry: hiss! kramer: (going after toby) toby! toby! toby: (voice; screaming) my pinky toe! kramer: (voice; yelling) toby! (shot of a shocked kramer is shown) oh, oh! kramer: what did you go up there to heckle her for? jerry: because she came down to the club and heckled me! give her a taste of her own medicine! (george enters.) kramer: oh, yeah! you gave her a taste of medicine, alright. jerry: well, i didn't want her to have an accident. george: what accident? kramer: well, after he heckled toby, she got so upset, she ran out of the building and a street sweeper ran over her foot and severed her pinky toe. george: that's unbelievable! kramer: yeah! then after the ambulance left, i found the toe! so i put it in a cracker jack box, filled it with ice, and took off for the hospital. george: wha.. you ran? kramer: no, i jumped on the bus. i told the driver, "i got a toe here, buddy - step on it." george: holy cow! kramer: yeah, yeah, then all of a sudden, this guy pulls out a gun. well, i knew any delay is gonna cost her her pinky toe, so i got out of the seat and i started walking towards him. he says, "where do you think you're going, cracker jack?" i said, "well, i got a little prize for ya, buddy - " (kramer throws two quick punches and a massive uppercut) - knocked him out cold! george: how could you do that?! kramer: then everybody is screamin,' because the driver, he's passed out from all the commotion...the bus is out of control! so, i grab him by the collar, i take him out of the seat, i get behind the wheel and now i'm drivin' the bus. george: you're batman. kramer: yeah. yeah, i am batman. then the mugger, he comes to, and he starts chokin' me! so i'm fightin' him off with one hand and i kept drivin' the bus with the other, y'know? then i managed to open up the door, and i kicked him out the door you know with my foot, you know - at the next stop. jerry: you kept makin' all the stops? kramer: well, people kept ringin' the bell! george: well, wha-what about the toe? what happened to the toe? kramer: well! i am happy to say that the little guy is back in place at the end of the line. george: you did all this...for a pinky toe? kramer: well, it's a valuable appendage. joanne: so, kramer found the toe, and they re-attached it. elaine: really. joanne: yea, poor kid. what an ordeal. michael: and you know how extremely sensitive she is? elaine: i know. michael: she's gonna need our full support. elaine (wearily): yeah, right. other co-workers in hallway: look who's here! toby! (toby enters on crutches.) michael: toby, what can i do? can i get you something? toby: oh no, no thank you. michael: toby please let us help. we're family. toby: oh well, i could use some coffee. jerry: she got the promotion? elaine (standing in the doorway): yep. jerry: why? elaine: i'll tell ya why. because of her pinky toe, that's why. because lippman felt so sorry for her, he didn't want to hurt her feelings. jerry: too bad. elaine: sure, the pinky toe is cute! but, i mean, what is it? it's useless! it does nothing. it's got that little nail that is just impossible to cut. what do we need it for? jerry: because elaine, that's the one that goes 'wee-wee-wee all the home.' elaine: why don't you just shut the f- kramer (from his doorway): hey elaine, did you hear the good news? toby got promoted! elaine: yes, i heard, kramer - i work there, remember?? kramer: yeah, and you know what she told me? she said her first order of business is to put my coffee table book into the bookstores as soon as possible. elaine: oh, wonderful! kramer: you know, throughout this whole thing, she always kept a smile on her face. elaine: oh, of course! she's deranged. jerry: i went down to the magazine, i pleaded with him to come and see me again, finally he agreed to come down tonight, and he's going to write another article. ronnie: i heard you went down to somebody's office and heckled them? jerry: damn right! we've been lapdogs long enough! ronnie: how could you do that? i mean, everybody's talking about it. jerry: yeah well, it's about time one of us drew a line in the sand. ronnie: jerry, you're like rosa parks. you opened the door for all of us. i can't wait till the next time someone heckles me. jerry: yeah, well, it won't be long. announcer: ladies and gentlemen, please welcome jerry seinfeld! jerry: gotta go. (heads out on stage) george: robin? robin! robin: george, what is it? i'm working. george: robin, listen to me. the most amazing thing has happened. kramer has opened my eyes. i think i've changed. robin: what are you talking about? george: o.k....(is about to explain. cut to jerry on-stage.) jerry: i mean, bozo the clown...i mean does he really need "the clown" in his title, as clown? bozo, "the" clown? are we going to confuse him with bozo the district attorney? bozo the pope? there's no other bozo... george: ...you'll see, things will be different now - if you just give me one more chance. robin: l-listen, listen...i gotta think about this. (walks away.) george: alright, but i'm serious about this. ronnie (points his water gun at the bartender): alright, hand it over man! jerry: ...that's why men hunt and women nest. george (from backstage): he's got a gun! he's got a gun! get out of the way! (tries to flee the bar in a mad panic. the audience in the club also goes nuts and heads for the exits. jerry stands onstage, perplexed.) robin: george! this is ronnie kaye! george: the prop comic? (ronnie holds up his water gun and smiles.) oh, hi...i didn't recognize you, what...did you get a haircut? ronnie (points to his nose): nostrils. jerry: george - could i have a word? kramer: all right, get off at the next exit. jerry: kramer, i've driven to east hampton many times, i know the exit. kramer: it's a great house, pool, sun deck? yeah, i'll be there. jerry: (to elaine) you sure we're makin' the right move? elaine: we gotta see the new baby anyway, at least we'll get a weekend in the hamptons out of it. jerry: didn't they just have a baby? elaine: that was two years ago, remember? 'jeh-ree, you gotta see the bay-bee! you gotta see the bay-bee!' jerry: is it possible they're just having babies to get people to visit them? kramer: hey jerry, you ever wear silk underwear? jerry: no. kramer: put that on the top of your list. jerry: no, not for me. a little too delightful. well, george and jane should be almost there by now. elaine: oh, isn't that weird that george and jane haven't had sex yet, but they're spending a weekend together? jerry: i know, george is pretty pleased about it. it's like she signed a letter of intent. elaine: when's rachel comin' out? jerry: she's makin' the three o'clock train. elaine: her father is so religious, i'm just amazed that he's letting you see her again after that schindler's list make-out session. jerry: i bought him some kishka. kramer: what's that? jerry: it's kind of a stuffed meat thing. israeli soldiers carry it. in case they're captured behind enemy lines, they eat it and it kills them. george: i never tasted a cough medicine i didn't love. jane: me too. i love cough medicine. george: you see? we were made for each other. (thinking to himself) it's amazing. if i reach out and touch her breast right not, she'd scream and throw me out of the car. but at this time tomorrow, i could touch it all i want. jane: what's your favorite? george: potussan. ever try it with club soda? jane: no. george: oh, very refreshing. (thinking again) sex is like joining a private club. i'll be the same me tomorrow, but suddenly, the no trespassing sign will be gone. jane: are we almost there? george: yeah, about ten, fifteen minutes. but i have to stop at a vegetable stand. jane: what for? george: my mother loves hampton tomatoes. she's nuts for hampton tomatoes. jane: can you buy 'em later? i really wanna get some... sun. kramer: hey jerry. rub some lotion on my back. jerry: who are you, mrs. robinson? kramer: come on, i'll rub some on yours. jerry: no, that's no sweet'ning the deal. no. george: (to jane) you know, when i was a kid, i once found a dollar and fifty cents in change on the bottom of the pool. jane: (no feeling in her voice) you must've been excited. george: yeah. hey, you know, i gotta go get these tomatoes. you wanna go for a ride? jane: i don't think so. george: 'kay. i'll uh, i'll see you later. anybody want some tomatoes? jerry: no thanks. kramer: no. (george leaves for the tomatoes) jane: i'm gonna take a dip. (she leaves for beach, elaine enters with a shady hat on) jerry: and then there's maude. (she sits down next to jerry) elaine: look at my face, look at it. you see any lines? jerry: no lines. elaine: you know why? one word shade. jerry: so when are we gonna see this baby? when is the momentous event? elaine: i don't know. they're takin' a nap or something. kramer: i'm gonna go see if there are any girls on the beach. elaine, you wanna come? elaine: (sarcastic) no thanks. i got plenty of girlfriends. jerry: (looking toward beach) oh this is interesting. elaine: what? jerry: jane's topless. (they all look) kramer: yo yo ma. jerry: boutros boutros-ghali. elaine: nice rack. (carol and michael inside open back door) carol: come on, you guys. you can come and see the bay-bee! jerry: oh, in a minute, carol. kramer: we're gonna be right there. jerry: this is weird wild stuff. george hasn't even seen her yet. elaine: why do you think we're getting the sneak preview? kramer: maybe she's trying to create a buzz. elaine: what? kramer: you know, get some good word of mouth goin'. jerry: oh, here she comes. (they pretend to not have watched as jane enters) jane: i'm thirsty. anyone want a drink? jerry: no thanks. elaine: i'm good. kramer: deh-deh-deh-deh- (jane exits) all right, show's over. i'm goin' to the beach. carol: adam (the baby's name), jerry and elaine are here. elaine: oh, he's a cute little shnugly baby. carol: isn't he gorgeous? (elaine looks at baby, only to be frightened and turn away) elaine: ugghh. carol: is she gorgeous? (elaine and jerry looking away) elaine: oh, gorgeous, yes. jerry: so very gorgeous. carol: michael, shut the door! you're letting bugs in. jerry: is it me or was that the ugliest baby you have ever seen? elaine: uh, i couldn't look. it was like the pekinese. jerry: boy, a little too much chlorine in that gene pool. (they sit) and, you know, the thing is, they're never gonna know, no one's ever gonna tell them. elaine: oh, you have to lie. jerry: it's a must lie situation. elaine: yes, it's a must lie situation. jerry: you know, i don't think we should tell george we saw jane topless. elaine: no, i don't think so. jerry: in fact remind me to tell kramer too. kramer: oooh, lobsters. ben: oh this ointment should do it. carol: how are you feeling, adam? (she sees elaine in the hall) elaine! (elaine enters) this is our pediatrician, ben feffa. elaine: hi. carol: look at him, elaine. how gorgeous is he? i ask you, how gorgeous? elaine: (looking at ben) pretty gorgeous. ben: elaine, you have children? elaine: me? oh no, but i'd love to have a baby, i mean, i can't wait to have a baby. i'm just dyin' to have a baby. ben: a beautiful woman like you should. you're quite breathtaking. elaine: breathtaking? i'm breathtaking? carol: and he's very particular. ben, you're staying tonight, right? ben: uh, sure. (elaine celebrates to herself as jerry enters and quickly looks away from the baby) jerry: ah, i'm gonna go pick up rachel at the station. elaine: yeah, see ya. jerry: okay. (he leaves) carol: oh, just look at him! ben: yeah, he really is breathtaking. (elaine confused by his comment) rachel: train was so crowded. i had to sit in the seat facing the wrong way. jerry: oh i like that. it's like going back in time. (george comes outside) george: hey rachel! rachel: (quickly gets out of seat) hi. i'm gonna go in there to change. george: what kind of a greeting was that? jerry: she's got greeting problems. george: yeah. i love hampton tomatoes. you know, you can eat 'em like apples. you know it's funny, the tomato never really took on as a hand fruit. jerry: well, the tomato's an anomaly. so successful with the ketchup and the sauce, but you can't find a good one. (kramer enters with a box of lobster) kramer: hey, hey, hey! look at what i got! george: hey! wow, the k-man! (they walk into the kitchen inside) jerry: you got lobster for everybody? kramer: yeah, and they're fresh! right out of the ocean. george: this is fantastic. man, what a weekend. swimming, lobster for dinner... kramer: i know, it's great. and i saw jane topless. (jerry shows that 'damn' expression behind george) george: you saw who, what? kramer: yeah, i saw jane topless. well, we all saw her. jerry: (jerry realizes the situation is hopeless) all right. george: you saw jane topless? jerry: well, when you went for the tomatoes she lied out topless. george: oh you mean face down on her chest. jerry: no. george: face up on her back? jerry: yeah. george: well why'd she do that? kramer: i guess she was hot. george: you mean she just laid there topless? kramer: no, no, she got up, she walked around... george: walked around? and you looked? kramer: of course. she's got a great body, buddy. all right, i'm gonna go upstairs, i'll be right back. george: i can't believe that you saw her before me. jerry: think of me as a doctor. (they go outside again) george: well, how good a look did you get? jerry: well what'd you mean? george: well, if she was a criminal and you had to describe her to a police sketch artist... jerry: they'd pick her up in about ten minutes. george: great, great. so anytime you want you can just visualize her naked. jerry: (looking of into the distance) i guess that's true... george: stop it, stop it! it's not fair. it's not fair. i don't like this situation, jerry. i don't like it one bit. jerry: what do you want me to do? you wanna see rachel naked? george: yes, yes! the punishment should fit the crime. jerry: you can see me naked. i can offer you that. george: it's like i'm neil armstrong. i turn around for a sip of tang and you jump out first. elaine: nobody ever called me breathtaking before. jerry: i've never been called breathtaking either. elaine: i mean, if he thinks that that baby's breathtaking, then who's not breathtaking? jerry: maybe he just said it because the mother was in the room. elaine: yeah, right, that's a possibility. i have to find out. jerry: how are you gonna do that? elaine: i can be very clever. rachel: i'm gonna take a swim. elaine: oh, me too. i'll meet you down. (she goes in the hall and sees george) oh, don't go in, rachel's getting undressed. george: oh, okay. (starts to walk other way and then walks to their room and goes in) rachel: hey! george: oh, sorry. rachel: don't you knock? george: i'm sorry, uh, it's not like i'm gonna see something i've never seen before. jerry: you might have. george: i didn't. jerry: you won't. rachel: what'd you want anyway, george? jerry: yes, george. i'm kind of wondering myself. what is it what you want? george: no, i was just wondering... if you guys, uh, had any gum. jerry: oh! so you were swimming in the pool, and you wanted some gum. george: yes, because the water was cold... and the chewing warms me up. rachel: we don't have any gum. george: okay. (chewing) thanks anyway. (continues to chew as he exits) rachel: strange man. jerry: wait'll you get to know him. rachel: so where is this baby, anyway? jerry: oh, check it out. i guarantee you've never seen anything quite so objectionable. it's down the hall, third door on your left. (rachel walks down hall, walks in on george changing out of his swimsuit) rachel: (she screams) oh my god! i'm sorry, i thought this was the baby's room. i'm really sorry. (she exits) george: (realizing he was short changed) i was in the pool! i was in the pool! george: did she do it on purpose? jerry: it was my fault, i told her the wrong door. george: i was supposed to see her. she wasn't supposed to see me. jerry: so what? george: well ordinarily i wouldn't mind. but... jerry: but... george: well i just got back from swimming in the pool. and the water was cold... jerry: oh... you mean... shrinkage. george: yes. significant shrinkage. jerry: so you feel you were short changed. george: yes! i mean, if she thinks that's me she's under a complete misapprehension. that was not me, jerry. that was not me. jerry: well, so what's the difference? george: what if she discusses it with jane? jerry: oh, she's not gonna tell jane. george: how do you know? jerry: women aren't like us. george: they're worse! they're much worse than us, they talk about everything! couldn't you at least tell her about the shrinkage factor? jerry: no, i'm not gonna tell her about your shrinkage. besides, i think women know about shrinkage. george: how do women know about shrinkage? jerry: isn't it common knowledge? george & jerry: (elaine walking down the hall they notice her and wave her into the room) elaine! get! (she enters) george: do women know about shrinkage? elaine: what do you mean, like laundry? george: no. jerry: like when a man goes swimming... afterwards... elaine: it shrinks? jerry: like a frightened turtle! elaine: why does it shrink? george: it just does. elaine: i don't know how you guys walk around with those things. michael: thanks for the lobster, kramer. kramer: rachel, aren't you gonna have any? rachel: oh, no, i can't. i'm kosher, we don't eat shellfish. kramer: you mean you've never tasted lobster? rachel: no. kramer: wow. you're so pious. i really respect that. you know when you die, you're gonna get some special attention. carol: oh, the baby's crying. i'll go get him. he can sit with us. elaine & jerry: no! jerry: no, you don't wanna do that. you'll be uncomfortable. elaine: yeah, finish eating. the baby's not gonna have any fun over here. we're-we're not fun for a baby. jerry: yeah, the lobster'll scare him. carol: i'm gonna get him. george: see, look at this. (wearing a very tight shirt) rachel, my t-shirt shrunk. it used to be much bigger, and now it shrunk. you see, that's what water does. it shrinks things. elaine: really? tell us more, mr. science. (rachel whispers in jane's ear, which prompts jane to laugh) george: what're you doing? what're you, telling secrets? what're you laughing at? jane: it's nothing, george. george: you know, it's very impolite to tell secrets. are you talking about me? jane: what is it with you? jerry: (to george) easy big fella. michael: so kramer, where'd you get all these lobster, at the fleesher's market? kramer: no, i got 'em in the ocean. michael: the ocean? what'd you mean? kramer: well, i found this rope and i kept tugging on it, and all these lobsters came up. michael: those are commercial lobster traps. you can't take those lobsters from there. that's against the law. kramer: take it easy. there's plenty of lobsters in the ocean for everyone. michael: my father was a lobsterman. he got up every morning at four and came home every night stinking of brine! he sent me through law school with the lobsters he caught! (kramer stands up from table) carol: (entering with baby) here he is. kramer: ahhh! (shocked after seeing the baby) elaine: some night, huh? ben: yeah, i wish i had my telescope. elaine: some dinner, huh? ben: nothing like fresh caught lobster. elaine: some house, huh? ben: it was built by mark fargman. he build a lot of these homes here. elaine: some ugly baby, huh? ben: what did you say? elaine: (improvising) i said, uh, some snuggly baby. ben: he is something. elaine: well, to tell you the truth, dr. feffa, i , i was surprised to hear you use a word like breathtaking to describe a baby, i mean, because you also used it referring to me. ben: well, you know elaine, sometimes you say things just to be nice. (elaine relieved, then confused, not knowing if he was being nice to her or to the baby) jerry: you told her? rachel: yeah, what's the big deal? jerry: you don't understand. this organ, it's very... schizophrenic. rachel: jerry, what the difference? you know, you're the ones obsessed with this stuff, not us. i'm sure it wouldn't matter to jane. george: you're going back to new york now? jane: yeah, i have some things to do. george: uh huh. uh huh! i think you spoke to your little friend rachel, that's what i think. jane: so what if i did? george: and she didn't say something to you about a certain something? jane: i don't know what you're talking about. george: *i* think that *you* think that a certain *something* is not all that it could be, when in fact it is is all that it *should* be, and *more*! jane: (patronizing george) i'm sure it is. george: look, you don't understand. there was shrinkage. kramer: you looking for this? (holding up lobster) rachel: oh, kramer! you startled me. kramer: well, i thought you might wind up around here. rachel: yeah, well, i couldn't stop thinking about how everyone was enjoying the lobster so much an' well i thought i little taste wouldn't hurt, huh? kramer: no i'm afraid i couldn't do that. rachel: why not? kramer: well, that wouldn't be kosher. rachel: c'mon, kramer. i really want to try it. kramer: nah, i'm sorry, honey. not on my watch. rachel: come on, kramer. kramer: heyahhh! rachel: i just heard a car drive out. what was that? jerry: oh, that's just jane driving home to new york in the middle of the night. (rachel shocked) carol: george, thanks so much for making breakfast. elaine: george, these are the best scrambled eggs i've ever tasted. kramer: ya i didn't know you could cook. george: well, i'm just expressing my gratitude to our gracious host. ben: yes, george, the whole breakfast is breathtaking. (hearing this elaine looks at him extremely annoyed) rachel: good morning. all: hey, hey. morning rachel: kramer, i just want to thank you again for last night, you really saved me. michael: what happened? rachel: well, i almost tried the lobster, but kramer stopped me. kramer: well i knew you'd regret it for the rest of your life. rachel: you're right, i would have. jerry: (referring to george) hey, look at this guy. george: a little breakfast. jerry: yeah. george: (to rachel) and, uh, you eat eggs, right? rachel: yes, i do. thank you. jerry: geez, these are delicious. where did you learn to make eggs like this? rachel: umm... this is so good. george: ah, enjoying them? rachel: mm-hmm. george: uh, good. you know, you might wanna try eating it with one of these. (holds up lobster bib) rachel: there's lobster in these eggs? george: not that much. you know, they tend to shrink in the water. jerry: well, i guess i gotta go, too. elaine: well, this has turned out to be one *helluva* weekend. (policeman knocks on door, michael answers) michael: excuse me? police: i'm sorry to bother you, but we're trying to track down a lobster poacher that uh cleaned out on of the traps. kramer: wonder what's goin' on. george: ah, i guess i should go up and apologize. michael: there he is, officer. (michael points to kramer, kramer waves to policeman) rachel: ahh! don't you ever knock? george: i don't know why rachel had to drive back with michael and carol. elaine: hey, if you saw me naked, i wouldn't want to ride back in the same car with you either. jerry: i still can't believe michael finked on kramer. elaine: how is he gonna pay off a thousand dollar fine? jerry: they got some sort of program. george: hey, there's a tomato stand, let's stop, i can get some more. jerry: hey, isn't that michael's car? elaine: there's rachel. george: where? (he looks out window and gets hit by a tomato) mr. lippman: to your promotion. elaine: oh, thank you! (they drink) mmm, oh, thank you, mr lippman, i can't tell you how much i appreciate this. i mean, of course i deserve it. mr. lippman: well, you're really on your way now. elaine: you really oughtta do something about that cold. jerry: you got a raise? elaine: i don't fool around, (banging on the table) baby! jerry: i thought you said pendant was in financial trouble. elaine: they were, but they're being absorbed by matsushimi, that big japanese conglomerate. jerry: oh, when did that happen? elaine: they're signing the papers next week. jerry: does this mean they're gonna be publishing kramer's coffee table book? elaine: yeah, they'll definitely do it now. jerry: boy, you're on quite a streak. job promotion, plus you're back with jake jarmal. elaine: yeah, it's gettin' serious, we're talking about moving in together. jerry: boy, you really got it all, i'm sure helen "girlie" brown would be very proud of you. jerry: speaking of having it all ... where were you? george: i went to the beach. (jerry and elaine exchange looks) jerry: oh, the beach. george: it's not working, jerry. it's just not working. (sits down next to elaine) jerry: what is it that isn't working? george: why did it all turn out like this for me? i had so much promise. i was personable, i was bright. (elaine turns showing disagreement) oh, maybe not academically speaking, (elaine nods correct) i was perceptive. i always know when someone's uncomfortable at a party. jerry: (pointing to napkins; to elaine) could i get napkin over there? george: it became very clear to me sitting out there today, that every decision i've ever made, in my entire life, has been wrong. my life is the complete opposite of everything i want it to be. every instinct i have, in every of aspect of life, be it something to wear, something to eat ... it's all been wrong. (chuckles) everywhere. waitress : tuna on toast, coleslaw, cup of coffee. george: yeah. no, no, no, wait a minute, i always have tuna on toast. nothing's ever worked out for me with tuna on toast. i want the complete opposite of on toast. chicken salad, on rye, un-toasted with a side of potato salad ... and a cup of tea. (laughs) elaine: well, there's no telling what can happen from this. jerry: you know chicken salad is not the opposite of tuna, salmon is the opposite of tuna, 'cuz salmon swim against the current, (hand motion of the salmon swimming against the current) and the tuna swim with it. (hand motion of the tuna swimming with it) george: (annoyed) good for the tuna. elaine: ah, george, you know, that woman just looked at you. george: so what? what am i supposed to do? elaine: go talk to her. george: elaine, bald men, with no jobs, and no money, who live with their parents, don't approach strange women. jerry: well here's your chance to try the opposite. instead of tuna salad and being intimidated by women, chicken salad and going right up to them. george: yeah, i should do the opposite, i should. jerry: if every instinct you have is wrong, then the opposite would have to be right. george: yes, i will do the opposite. i used to sit here and do nothing, and regret it for the rest of the day, so now i will do the opposite, and i will do something! george: excuse me, uh i couldn't help but notice that you were looking in my direction. victoria: oh, yes i was, you just ordered the same exact lunch as me. george: my name is george. i'm unemployed and i live with my parents. victoria: i'm victoria. hi. jerry: (on the phone) are you kidding? they can't cancel that show on me now, it's too late for me to book anything else for that weekend. alright, alright ... okay, bye. (hangs up the phone) kramer: hey. buddy, it's all happening! jerry: what's happening? kramer: the coffee table book. it's a go-oo! jerry: oh yeah, i heard all about it. kramer: you know what this means? i'm starting the book tour. first stop regis and kathy lee. jerry: you're going on regis and kathy lee? kramer: oh, you better believe it! jerry: i'll loan you my puffy shirt. kramer: no, no, no. jerry: what're you gonna talk about? kramer: well, coffee tables. jerry: hello? what? yeah, sure, i'll do it. i just had something cancelled the same weekend. ok. great. bye. (hangs up the phone; turns to kramer) you know, life is amazing. i just lost a job and five minutes later get another, same weekend, same money. kramer: you know who you are? even steven victoria: are you growing a beard? george: why shave every day? it just grows right back. victoria: i guess ... george: i'm afraid i'm just not interested in how i present myself. if those kind of superficialities are important to you, this probably isn't gonna work. victoria: hey watch, he just cut you off! did you see that?! george: take it easy. take it easy. it's not the end of the world. man #1 : hey baby, how about a little tongue action, huh? man #2 : yeah, stick your tongue down his throat! victoria: what are we gonna do? should we just move? george: that won't be necessary. george: shut your traps and stop kicking the seats! we're trying to watch the movie! and if i have to tell you again, we're gonna take it outside and i'm gonna show you what it's like! you understand me? now, shut your mouths or i'll shut 'em for ya, and if you think i'm kidding, just try me. try me. because i would love it! victoria: are you sure you don't wanna come up, i mean, it's only nine thirty. george: i don't think we should. we really don't know each other very well. victoria: who are you, george costanza? george: i'm the opposite of every guy you've ever met. theater manager: excuse me, is your name elaine? elaine: yes. theater manager: were you suposed to meet a jake jarmal here? elaine: yeah. theater manager: well, i'm afraid he's been in an accident. elaine: (gasp) an accident? what happened? theater manager: well-he got side-swiped by a cab, but he's alright. he's in st.vincent hospital, room 907. elaine: oh. ok. thank you. elaine: could i have a box of jujyfruits? counterperson: (handing the jujyfruits to elaine) there you go. jake: so, then, you know, the light was clearly green, i started walking, he skidded and he went right into my hip. elaine: (with her mouth full of jujyfruit) oh, that is so terrible. that is so terrible, jake. i mean, how can people be so stupid? just sickening. elaine: you want one? jake: no thanks. elaine: so when do you think you're gonna get outta here? jake: where did you get those? elaine: at the movies. jake: didn't the theater manager give you the message before you went in? elaine: yeah, he did. jake: then when did you get those? elaine: right after ... that ... jake: so you heard that i was in a car accident, and then decided to stop off for some jujyfruit? elaine: well... the counter...was right there, and... jake: i would think, under the circumstances, it would have sent you running out the building. apparently, it didn't have any effect on you. elaine: no, no, it does! jake: (angry) if you got into a car accident, i can guarantee you i wouldn't stop for jujyfruit! elaine: but...jake... jake: i would like to be alone now, please. elaine: but, jake, i didn't... jake: goodnight! poker player #1: ah, whaddya say we call it a night? poker player #2: good idea, i'm kinda tired. poker player #3: how'd you do? poker player #4: won 50. poker player #2: lost 72. poker player #1: won 37. poker player #3: lost 15. jerry: (shocked) broke even. regis: can i bring out our next guest now? kathy lee: please, please. regis: young guy, he's got a new book coming out, and it's about, and this is the best part - kathy lee: i love this. regis: it's a coffee table book about coffee tables! (holds the book up for the audience) kathy lee: yeah. is that clever? i think that is so clever! regis: i think so too. did you get to meet him back stage? kathy lee: i did. regis: i mean, he looks like a fun guy, doesn't he? kathy lee: i love his hair. regis: yeah, oh, i do too. this guy could be a little bonkos. really. anyway, if you will, would you please welcome kramer! regis: (shaking kramer's hand) hello, kramer is here. kathy lee: i don't know, maybe it's the hair or something! regis: ah, well, yes kramer. so, a coffee table book about coffee tables. where did you come up with this idea? kramer: yeah, well, ah, i'll tell you, uh regis... actually, this is a true story. i umm i was skiing at the time. regis: you know, when i'm skiing, kramer, i'm trying not to kill myself, you're writing books! kramer: yeah, well, now you kids don't go out and try that. you stay in school! kathy lee: have you always had an interest in coffee tables, because, really, i-i love coffee tables, and i-i thought i was the only one. kramer: you see the beauty of my book is, if you don't have a coffee table, it turns into a coffee table. kathy lee: is that fabulous? regis: look at this! kathy lee: is that fabulous? regis: fabulous! kathy lee: i want one of these. regis: did i tell you this guy was bonkos? kathy lee: this coffee table (book) is full of pictures of celebrities' coffee tables. kramer: that's true. that's right. regis: yeah? well, i'm not in there. where's mine? kramer: oh, it's on file, right here. (points to his head) regis: i'm tellin' ya, this guy's bonkos! he really is! kathy lee: but he's adorable. regis: ya he is, he's a nice looking guy. kathy lee: it's all over my dress. regis: we'll be right back in a moment. jerry: so it's all over? elaine: yeah, it got pretty nasty. jerry: and what did you go back for? jujyfruit? elaine: it's not like i went across the street. i bought the jujyfruit and i got in a cab. jerry: why didn't you eat it in the cab? elaine: because i got popcorn too, and i ate that first. elaine: what's all this? jerry: played cards last night. elaine: oh yeah? how'd you do? jerry: broke even. elaine: you always break even. jerry: yeah, i know; like yesterday i lost a job, and then i got another one, and then i missed a tv show, and later on they re-ran it. and then today i missed a train, went outside and caught a bus. it never fails! i always even out! elaine: do you have twenty bucks? jerry: what for? elaine: just gimme twenty bucks. jerry: (shocked) what the hell was that? elaine: let's see if you get the twenty bucks back. jerry: you know you could've thrown a pencil out the window and seen if that came back. elaine: you know, things were going so good for me, you know, i got the job promotion, we were talking about moving in together - jerry: well, maybe next time someone's in a car accident you won't stop off for candy first. george: hey, i just found twenty dollars! i tell you this, something is happening in my life. i did this opposite thing last night. up was down, black was white, good was - jerry: bad. george: day was - elaine: night. george: yes! jerry: so you just did the opposite of everything? george: yes. and listen to this, listen to this; her uncle works for the yankees and he's gonna get me a job interview. a front office kind of thing. assistant to the traveling secretary. a job with the new york yankees! this has been the dream of my life ever since i was a child, and it's all happening because i'm completely ignoring every urge towards common sense and good judgment i have had. this is no longer just some crazy notion. elaine, jerry, this is my religion. jerry: so i guess your messiah would be the anti-christ. george: yes funny (laughs; hand clap) let's go. jerry: elaine ... look! a twenty! elaine: (not wanting to believe it) oh my god. kramer: hey boss. mr. lippman: kramer. come in. kramer: how're you doin' there, big guy? (puts his arm around the tobacco store indian) mr. lippman: uh, ya, have a seat. kramer: al-righty (sits down) have you got yourself a cold? kramer: woah, that's quite a honk! mr. lippman: ya, thank you. kramer: get yourself some vitamin c with rose hips and bioflavenoids. mr. lippman: the reason i asked you in here, is i-i caught your appearance on uh "regis and kathy lee" the other day and - kramer: ya that was pretty good, huh? mr. lippman: an-anyway, the thinking here is that it would be best i-if you uh didn't do any more of these shows. kramer: because of the coffee thing? mr. lippman: kramer, i'm sorry. kramer: what about "sonia live"? now you're not cancelling "sonia live"? mr. lippman: it's out - kramer: she's a doctor, i got a thing for her. mr. lippman: kra-kramer, i - mr. cushman: why don't you tell me about some of your previous work experience? george: alrighty. ah ... my last job was in publishing ... i uh got fired for having sex in my office with the cleaning woman. mr. cushman: go on. george: ah, alright, before that, i was in real estate. i quit, because the boss wouldn't let me use his private bathroom. that was it. mr. cushman: do you talk to everybody like this? george: of course. mr. cushman: my niece told me you were different. george: i am different, yeah. mr. cushman: i gotta tell ya, you are the complete opposite of every applicant we've seen. (gets out of his chair) ah, mr. steinbrenner, sir. there's someone here i'd like you to meet. (george gets up and goes over) this is mr. costanza. he's one of the applicants. mr. steinbrenner: nice to meet you. george: well, i wish i could say the same, but i must say, with all due respect, i find it very hard to see the logic behind some of the moves you have made with this fine organization. in the past twenty years you have caused myself, and the city of new york, a good deal of distress, as we have watched you take our beloved yankees and reduced them to a laughing stock, all for the glorification of your massive ego! mr. steinbrenner: hire this man! secretary: tina robbins is here to see you. man: who's that? elaine: ah, it's my ex-roommate, she moved out four years ago, i-i've been sub-letting my apartment from her. man: alright, see ya. (meets tina in the door) hey. tina: please. elaine: hi tina. tina: hi elaine. elaine: so, i haven't seen you in a while. tina: elaine, we have a problem. elaine: well, what is it? tina: you're getting kicked out. elaine: kicked out?! why?! tina: well, there's been a number of complaints. elaine: yeah? like what? tina: well, like last thanksgiving you buzzed up a jewel thief. elaine: ah, i didn't know who he was! tina: that's why there's a buzzer. elaine: what else? tina: well, apparently, the week after that, you buzzed up some jehova's witnesses and they couldn't get them out of the building. elaine: what else have you got? tina: well, let's see. (takes out a list from her bag) jerry: i'll tell you what the big advantage of homosexuality is. if you're going out with someone your size, right there you double your wardrobe. rachel: i suppose... jerry: oh, come on, that's a huge feature. when they approach a new recruit, i'm sure that's one of the big selling points. rachel: (sighs) jerry ... jerry: yes? rachel: i've been doing a lot of thinking. jerry: uh huh? rachel: well, i don't think we should see each other any more. jerry: oh, that's okay. rachel: (confused) what? jerry: nah, that's fine. no problem. i'll meet somebody else. rachel: you will? jerry: sure. see, things always even out for me. rachel: huh? jerry: it's fine. anyway, it's been really nice dating you for a while. and uh good luck! rachel: yeah, you too. jerry: (leaving; singing) she'll be coming around the mountain... jerry: the new york yankees?! george: the new york yankees! jerry: ruth, gehrig, dimaggio, mantle ... costanza? george: i'm the assistant to the travelling secretary. i'm going on the road trips with 'em! i'll be on the plane... i'm working in yankee stadium! this is a dream, i'm busting, jerry, i'm busting! jerry: i can't believe it. george: ya! jerry: ya? elaine: (on buzzer) it's me. jerry: (buzzes elaine up) come on up. george: and i'm moving out of my parents' house, i'm taking that apartment on 86th street, remember the one we saw? jerry: that's a great place! george: i'm back in business, baby! jerry: george, i wouldn't get too excited about this stuff, you know, things have a way of evening out. george: hey! (to elaine, who doesn't look too cheerful) jerry: hi elaine. elaine: hi. jerry: how're things going? elaine: how're things going? you wanna know how things are going? i'll tell you how things are going. i am getting kicked out of my apartment! jerry: why? why are they doing that? elaine: i don't know! they have a list of grievances. jerry: the jewel thief? elaine: yeah, the jewel thief. jerry: what else? elaine: i put canadian quarters in the washing machine. (disappointed) i gotta be out by the end of the month. george: well, you could move in with my parents. (chuckles) elaine: was that the ... opposite ... of what you were going to say, or was that just your natural instinct? (she squeezes george's mouth between her fingers) george: instinct. elaine: stick ... with the opposite. (slaps george on the forehead) jerry: elaine, don't get too down. everything'll even out, see, i have two friends, you were up, (has his one hand up and his other hand down) he was down. now he's up, (switches the positioning of his hands) you're down. you see how it all evens out for me? secretary: mr. lippman, the people from matsushimi are here. mr. lippman: oh ya alright... tell them i'll be right there. (tosses his handkerchief on elaine's desk so he can tie his shoe) oh man well, this is it, elaine. you know, without this merger, we'd be out on the street. boy, they sure saved us. elaine: (noticing the forgotten handkerchief tries to stop call for mr. lippman with a mouth full of jujifruit) oh, mr. lippman you forgot your handkerchief. mr. lippman, you forgot your handkerchief. it's on my desk. chairman: (noticing mr. lippman in the hallway) ah lippman son. (lippman smiles and is forced to enter his office) lippman son. (speaks some japanese) interpreter: mr lippman, it is with great pride that we undertake this partnership with your company. mr. lippman: i ... i'm sorry, i can't shake your hand right now. it's germs. jerry: is that the end of it? george: yeah, it's the last one. jerry: alright. estelle: i can't believe you're moving out. (grabs kramer) kramer, is this true? is it really happening? it's ... it's like a dream. kramer: oh, it's true. george: alright, let's go. frank: don't get in trouble with the yankees. you be nice. (slaps george's forehead) george: i'm not gonna be nice. that's how i got the job. estelle: jerry, did you hear this? jerry: he knows what he's doing. george: i just want the both of you to know how much you mean to me, and i love you both very, very much. jerry: opposite. elaine: i must've had at least eight in my mouth. i couldn't talk. i couldn't talk! jerry: why'd you have to eat so many? elaine: because they're jujyfruit. i like them. i didn't know it would start a chain reaction that would lead to the end of pendant publishing. jerry: not to mention the end of kramer's coffee table book. kramer: yeah, you knew he had a cold. how'd you expect him to blow his nose? yea! elaine: do you know what's going on here? can't you see what's happened? i've become george. jerry: don't say that. elaine: it's true. i'm george! i'm george! george: greetings, people. greetings. greetings and salutations. what a beautiful day for a ball game. let's play two! (sits down, says to waitress ) oh, i'll have the chicken salad on rye, my usual, you know what i get, darlin'. (turns to the gang) so, let's see, i had a little conversation today with mr don mattingly - (to elaine) he's the first base man. elaine: uh huh. george: we talked about his new batting stance, you know, i'm not crazy about it, but i said , 'donny, go with it 'till it stops workin'.' donny baseball. he's a helluva guy. kramer: wait, wait, wait, that's too much. mine was more than yours. jerry: ah ... let's call it even. george: o.k., danny, take a swing. (tartabull swings the bat.) n-no! no! no! you're opening up your shoulder. tartabull: really? george: no, not really. i'm just saying this to you because i like to hear myself talk. yes, really! tartabull (wiping sweat from his brow): alright, alright. george: what are all sweatin' for? tartabull: it's hot in this uniform. george: hot? (feels tartabull's material.) what is this? tartbull: what is what? george: this uniform, what's it made from? tartbull: i don't know, cotton? george: no. this is not cotton. here, lemme see. (tries to look at the tag on the uniform. tartabull gets creeped out and resists.) will you stop it? (looks at the tag.) oh. of course. polyester! tartabull: so? george: i can't believe you're not playing in cotton. tartabull: well, this is what they give us. george: you know they used to make leisure suits out of this fabric? tartabull: you really think cotton's better? george: of course! alright, maybe i'll say something to buck. tartabull: yeah, good idea. catch ya later. (leaves.) george: hey, don't embarrass me today. i got some friends in the stands. (george makes a swinging motion with an imaginary bat and pulls something in his back.) hot dog vendor: hot dogs here! yankee franks! elaine: oh, you want one? jerry: yeah. elaine: i'll get it. (reaches in her bag for money.) jerry: that's alright, i got it. elaine: jerry! jerry: elaine, stop it. elaine: hey, just because i'm not working doesn't mean i haven't got any money. (to vendor) yo! dogs! two! jerry: i'm sorry. announcer on p.a. system: your attention please...the new york yankees would like to welcome miss connecticut, miss rhode island and miss north dakota, all of whom will be competing in the miss america pageant this weekend in atlantic city. (the three contestants make their way to their seats, right across the aisle from jerry and elaine.) jerry (to elaine): now, there's a career path you may have overlooked. elaine: ooh, i gotta check my machine. i'm waiting to hear about an interview. doubleday is looking for somebody to replace jackie onassis. jerry: oh, she worked at doubleday...? elaine: yeah, she was an editor. jerry: right, just like you. elaine: yeah. can you hold my seat? (elaine gets up.) crowd: hey! down in front! (elaine clambers over jerry and exits.) jerry (offers a hot dog to miss rhode island): hot dog? miss rhode island: no, thanks. i'm watching my weight. jerry: ah. i'm watching my height. my doctor doesn't want me to get any taller. so you're miss, uh... miss rhode island: rhode island. jerry: i was almost mr. coffee. they felt i was a little too relaxed. (miss rhode island laughs.) george: miss rhode island? when are you seeing her? jerry: tonight. i have to call her, she's staying in a hotel. george: you're incredible. jerry: and get this - i'm working in atlantic city this weekend, and she's going to be down there for the pageant. george: what if she becomes miss america? you could be dating miss america, jerry! jerry: the only bad thing is, we have to go out with a chaperone. george: chaperone? what, are you kidding? jerry: no, it's part of the contest rules. george: what does the chaperone do? jerry: i don't know, she just sits there. george: can she talk? jerry: i'm not sure if she's allowed to talk. (picks up the phone and dials.) george: you're calling her? jerry: yeah. (sings) there she is...miss - yes, room 417 please? karen hanson? george: hey, did you know that the yankees don't wear cotton jerseys? jerry: of course, they're polyester. george: well, what is that? that's a crime! do you know how hot those things get? they should be wearing cotton. jerry: why do they wear polyester? george: i don't know. that's all gonna change. jerry: you're going to do something about it? george: why shouldn't i? jerry (doubtfully): no reason... landis: of course, jackie o. was a great lady. those are going to be some tough shoes to fill. everyone loved her. she had such...grace. elaine (gushing): yes! grace! landis: not many people have grace. elaine: well, you know, grace is a tough one. i like to think i have a little grace...not as much as jackie - landis: you can't have "a little grace." you either have grace, or you...don't. elaine: o.k., fine, i have...no grace. landis: and you can't acquire grace. elaine: well, i have no intention of "getting" grace. landis: grace isn't something you can pick up at the market. elaine (fed up): alright, alright, look - i don't have grace, i don't want grace...i don't even say grace, o.k.? landis: thank you for coming in. elaine: yeah, yeah, right. landis: we'll make our choice in a few days, and we'll let you know. elaine (stands up): i have no chance, do i? landis: no. (they shake hands.) landis's intercom: justin pitt to see you. elaine: justin pitt? landis: he was a very close friend of mrs. onassis's. elaine: "mrs. onassis's"? that's hard to pronounce. landis: excuse me? elaine: nothing. (mr. pitt comes in with some papers in hand.) pitt: mrs. landis, there's something wrong with this copying machine, it's all coming out slanted. now, i don't know if this is your department or not. landis: justin pitt, this is elaine benes. (elaine turns around. with sunglasses and a scarf on her head, she bears a close resemblance to jackie o.) pitt (clearly affected by elaine's appearance): charmed. elaine: i was a great admirer of mrs. onass-sis-sis-sis... jerry: hello, karen? it's jerry seinfeld. oh, that's very sweet of you. you know, you better be careful, you don't want to get too congenial. they'll slap that "miss congeniality" on you, and you'll congene yourself right out of the contest. so, what time do you want to get together later? what? so what, we don't need the chaperone. (to george) the chaperone can't make it. (to karen) oh, you're not gonna get disqualified! so, we're not going? (kramer enters.) hold on one second. (to kramer) hey, what are you doing tonight? kramer: nothin.' jerry: i'm going out with one of the miss america contestants, you wanna go? kramer: what state? jerry: rhode island. kramer: they're never in contention. george: how do you know? kramer: because i've seen every miss america pageant since i was six. jerry: look, do you want to go or not? i'll buy you dinner. kramer: giddy-up! jerry (to karen): i think i got someone! pitt (looking at elaine and smiling): the resemblance is uncanny. (elaine, sipping soda through a straw, looks up with a sour expression on her face.) even the brown eyes. elaine: well, a lot of people have brown eyes. pitt: no, there's something else. an indefinable quality. elaine: grace? pitt: grace, yes. elaine: you think ihave grace? pitt: some grace, yes. elaine: just some? pitt: well, you don't want too much grace or you won't be able to stand. elaine (laughing): oh, mr. pitt. pitt: elaine, i want you to come and work for me as my personal assistant. now, i'll pay you the same as pendant, but i would need you to start right away. george: hey, buck. talk to you for a second? showalter: sure, george. george: how's everything going? everything o.k.? showalter: well, all of a sudden there's a problem with tartabull's swing... george: listen, buck, i uh...obviously i don't need to talk to you about the importance of player morale, but uh...i've been talking to some of the guys, and some of them - i don't want to mention any names - but some of them...they're not too happy with the polyester uniforms. showalter: how so? george: well, they get very hot in the polyester. you know, it's not a natural fibre. i think they would prefer cotton. showalter: cotton, huh? george: yeah. cotton breathes, you see, it's much softer. imagine playing games and your team is five degrees cooler than the other team. don't you think that would be an advantage? they're cooler, they're more comfortable...they're happier - they're gonna play better. showalter: you may have something there, george. george: oh - i've got something. showalter (considering): hmm. cotton uniforms. jerry: congratulations! elaine: yeah! and the best part is, i still get to look for work in publishing. jerry: now, what is it that you do, exactly? elaine: i attend to his personal affairs. jerry: like what? elaine: well, like tomorrow for example, i have to uh...i have to buy him some socks. jerry: really! socks! elaine: yeah. white ones. like the ones you wear with sneakers. jerry: hey, maybe you can pick me up some underwear! (kramer enters.) kramer (shows jerry his outfit): so, what do you think? does this work? jerry: listen...tonight, after we finish eating, you make like you got something else to do and just "recede into the night," if you know what i mean. kramer: no way! jerry: what? kramer: look, if you think i'm just going to step aside and do nothing while you defile this woman, you're crazy. jerry: i'm not going to "defile" her! kramer: that's right, because i'm going to see it doesn't happen. look, jerry, these girls are miss america contestants. it's every little girl's dream. and i'm not going to let you trample that dream and make a mockery of everything the pageant stands for. jerry: but - kramer (holds up his hand): aaah! no buts! those are my rules. jerry: but wait a minute... kramer: now, if you want to go out and have some good, wholesome fun with a nice girl, i'd be glad to help you out...if you're looking for something more than that, you've got the wrong guy, buddy! (jerry tries to get a word in during this entire speech, but kramer won't budge an inch.) kramer: if you were miss america, what would you do to make the world a better place? karen: as miss america, i would try and bring an end to world hunger. if every person sacrificed one meal a week, there would be enough to feed the whole world! jerry: that's a hell of a plan. (to kramer) listen - kramer (to karen): what advice would you give young people? jerry: alright, kramer! kramer: this is important stuff! she's got to be able to answer these questions. she's not going to have time to think, out there, with millions of people watching her. any hesitation could cost her the crown. you know, poise counts. karen: you really know a lot about this, don't you? kramer: oh yeah, like last year? miss texas? now, she should have won easily, but she lost points in the swimsuit competition. karen: well, what could she have done? kramer: tape her breasts together. (jerry is shocked.) karen: what else? kramer: well, take you for example. now, you're very attractive, but you got a big waist. jerry: hey, come on! karen: no, no...it's o.k. (to kramer) go on. kramer: well, i'd recommend a waist cincher. karen: really. kramer: oh, yeah. just - thip! - suck you in. jerry: i'll be right back. (leaves the table.) kramer: so, what's your talent? karen: magic. kramer: mmm. i'm thinking of a number from one to ten. karen: six. kramer: no, five. but you were close. announcer #1: and the yankees take the field! announcer #2: is it my imagination, or do the yankees look a little different tonight? i can't put my finger on it... announcer #1: well, from what i understand, they've switched to cotton uniforms. announcer #2: they seem blousier, softer... announcer #1: well, it is a natural fibre... kramer: how's your evening? karen: well, i'm wearing this red dress - kramer: stop right there. karen: no good? kramer: disaster. karen: why? kramer: well, you got brown eyes. you want to wear a green dress. karen: that makes sense. (the limo stops at karen's hotel.) jerry: well, here we are... karen: kramer, would you consider being my personal consultant for the pageant? kramer: okay. but if i'm going to do this, we play by my rules or we don't play at all. karen: i am in your hands. (they shake hands.) well! oh, good night, jerry. (they're about to kiss, but kramer stops them by clearing his throat.) kenneth will take you home. (she gets out, leaving jerry staring at kramer with an angry expression on his face.) kramer: hey. jerry: well, if it isn't mr. blackwell. kramer: oh, come on. jerry: and that waist cincher, that was the topper! kramer: oh, you're poo-pooing! jerry: yes, i poo-poo. kramer: well, let me tell you something. i'm taking this kid to the top. to the top, jerry! we're going for the crown, and you can't stop her! jerry: i don't want to stop her! kramer: you can't stop her, jerry! oh, i've seen 'em come and go, but this kid has got something! (turns to leave.) jerry: yeah, so do you. (george enters with a newspaper.) george: well, did you see it? jerry: see what? george: the uniforms! did you see how they played? listen to these comments! (reads from the paper) "wade boggs 'what a fabric! finally we can breathe.' luis palonia 'cotton is king.' paul o'neill 'i never dreamed anything could be so soft and fluffy.' " jerry: boy, they really do sound comfortable. george (noticing jerry's suitcase): hey, where ya goin'? jerry: i'm working in atlantic city. george: really! jerry: yeah. hey, you're not working this weekend, why don't you come down? george: atlantic city? (thinks) yes! yes! i will go to atlantic city. i'm in. i'm down. jerry: you know what, maybe elaine wants to go too, lemme call her. (picks up the phone.) she's at mr. pitt's, i think i got the number... elaine: so, what do you think? pitt (pulling up the socks): no. elaine: you don't like them? pitt: no, i don't like them. elaine: what's wrong? pitt: they're too tight. elaine: too tight? pitt: there's no elastic, you need to pull too much (pulls them up more). elaine (examining the socks): i think they look good! pitt: they're cutting off the circulation. elaine: alright, well, i'll just take them back. (the phone rings.) pitt: hello? jerry: hi, mr. pitt! is elaine there? pitt (hands the phone to elaine): it's for you. elaine: sorry. hello? jerry: hey elaine, it's me. elaine: jerry? jerry: we're going to atlantic city. elaine: really? when? jerry: today, right now! are you in? elaine: one second, hang on. (to mr. pitt) excuse me, mr. pitt? would it be alright if i got you the socks tomorrow? pitt: tomorrow? elaine: yes. pitt: but i was hoping for my new socks today! elaine: well, it's just one more day. pitt: i'm sorry. i must have them today. elaine (to jerry): i can't go. jerry: why not? elaine: because i have to return the socks and get different ones. pitt: elaine! elaine: i gotta go. (hangs up.) kramer: no. alright, watch me now. (karen sits on the bed. kramer walks across the room like a miss america contestant with a big smile on his face.) turn, back, head up, shoulders back...posture. you see? posture. karen: yes, i see. o.k. kramer: let's try a few more questions, alright? (karen stands up.) if you were miss america, and the u.s. was on the brink of a nuclear war, and the only way the conflict could be averted was if you agreed to sleep with the enemy's leader, what would you do? karen: kramer, are these questions really that important...? kramer: yes, they're important! if you stumble, if you hesitate, you can kiss the crown goodbye. now if i've told you once, i've told you a thousand times - poise counts! it's just as important as the others. swimsuit! evening wear! talent! poise! george: hey. jerry: hey. george: how was the show? jerry: good. how was the roulette? george: i won fifty bucks! boy, this is great. too bad elaine's not here. jerry: yeah, all she had to do was buy mr. pitt a pair of socks! pitt: it's good, but... elaine: but what?? pitt: ultimately i don't think they'll stay up. elaine (pulling up pitt's socks): no, no! they'll stay up! pitt: for a while, yes, but not in the long run. elaine: but that's why i got you the tighter ones! (holds them up.) pitt: oh, forget about those! (takes the socks from elaine and throws them on the floor.) why do you keep mentioning those? elaine: what do you want!? pitt: i want a decent sock that's comfortable, that will stay on my foot!! jerry: what the hell is that? george: i don't know, it sounds like pigeons or something! jerry (getting out of bed): well, i can't sleep with that noise. george: me either. is there anything you can do to shut them up? jerry: wait a second. (grabs the icebucket off the counter.) this'll scare 'em off. (dumps the bucket of water over the balcony. we hear a loud squawking noise and the flapping of wings, then the noise is gone. jerry gets back into bed.) well, good night, ollie. george: good night, stan. kramer: what is it? karen: my doves! they're dead! i trained those birds for eight years! how am i supposed to do my magic act now? kramer: how did this happen? karen: they like it outside, so i kept them in a cage on the terrace...then i found them dead in a pool of water! kramer (goes out on the terrace to look, and slips in the water): well, how did this happen? karen: it must have been an accident. kramer: accident? this was no accident. these doves were murdered. kramer: well, that's it! she's out of the pageant! jerry: what? why? what happened? kramer: her birds are dead. jerry: birds? kramer: yeah, birds. she's got these trained doves, she does this magic act, that was her talent for the pageant. you know what i think, jerry? i think somebody murdered those doves. somebody wanted her out of that contest bad. somebody who was just eaten up with jealousy. somebody who just couldn't stand to have the spotlight taken off of them! (kramer turns around and notices the empty icebucket on the edge of jerry's balcony.) jerry: what are you looking at? (kramer goes out onto the terrace and looks down.) oh, that! we had to leave that outside, last night, because the water was making the room too cold. kramer (comes back inside with his finger pointed at jerry): you killed them, didn't you? jerry: no, you don't understand - it's not what you think! it was an accident! kramer: well, don't think you've won, because you haven't! this kid is a fighter! and if you think i'm gonna let a couple of dead birds get in our way, you're crazy! jerry: kramer, you gotta explain to her what happened...! (kramer exits.) george (comes out of the bathroom brushing his teeth): what was that all about? jerry: oh, it was just kramer...apparently i killed miss rhode island's doves with a bucket of water last night. george: oh. (goes back into the bathroom.) karen: o.k., this is it! kramer: how ya feelin'? karen: i'm a little nervous! kramer: there's nothing to be nervous about. karen: but i've never sung before in my life! philbin: and now, let's welcome karen ann hanson, miss rhode island! jerry: i heard those doves were really incredible. george: that's a shame. (karen is shown singing off-key on the television.) jerry: it's like watching an animal get tortured. george: hey, hey! yankee game! (changes the channel.) jerry: oh, great! alright. (we hear the announcers calling the game.) announcer #1: and the yankees take the field! announcer #2: what is with the yankees? they look like they're having trouble running, they can't move! announcer #1: it's their uniforms, they're too tight, they've shrunk! they're running like penguins! forget this game! announcer #2: oh my god, mattingly just split his pants! jerry: that's a shame. kramer: poise. poise! stationer: may i help you? elaine: yeah, uh, i'm looking for a rollamech 1000 mechanical pencil. stationer: oh, i know the rollamech 1000. elaine: no, i'm sure you do. stationer: they're pretty expensive. elaine: well, it's for my boss. stationer: what do you do? ex: whatever. stationer: well, we don't have any in stock right now but i would be happy to order it for you. just give me your phone number and when it comes in i'll give you a call. you're name is? elaine: elaine. stationer: elaine, . . . and your last name? elaine: it's just elaine, like cher. ha ha ha stationer: and your number? elaine: uh, aw, kl5-239o. stationer: okay. thanks a lot. you'll be hearing from me. elaine: okay, (to jerry) move along. . . jerry: why did you give him my number? elaine: i think he's got ideas. jerry: i wonder if any woman ever said that about einstein? jerry: call me when the pencil comes in okay? elaine: just call me when the new pen comes in, okay? jerry: why does mr. pitt prefer a pencil to a pen anyway? hey. look who's here. george: hey, hey. elaine: hey hey julie: hi jerry. jerry: hi julie. george: elaine, julie. elaine: hi. julie: hi. julie: oh, hi. elaine's my middle name. elaine: oh, mine's "ike". george: hey, wanna get some lunch? jerry: just had a big bowl of kix. george: ah, well, that's very mature. what about you? elaine: ah, no. julie: please come, elaine. elaine: no, no. how about if you bring me back something? george: sure, all right, what do you want? elaine: um, hum, i don't know.. . . a big salad? george: what big salad? i'm going to the coffee shop. elaine: they have big salads. george: i've never seen a big salad. elaine: they have a big salad. george: is that what i ask for? the big salad? elaine: it's okay, you don't george: no, no, hey i'll get it. what's in the big salad? jerry: big lettuce, big carrots, tomatoes like volleyballs. george: (???), we'll see you in a little while. elaine: maybe i should just get married. jerry: dating is really starting to get embarrassing isn't it? elaine: i know. you know, whenever i'm on a date i feel people can tell. jerry: people on dates shouldn't even be allowed out in public. elaine: you can say that again. jerry: it's embarrassing for them. it's painful for us to watch. i'm going out with someone later, i'm not even taking her out of the house. elaine: good for you. jerry: i don't need a bunch of people staring at us. elaine: right on baby. (???) jerry: what was that? kramer: that gendason, what a jerk. i'm never playing golf with him again. elaine: who gendason? kramer: steve gendason. elaine: why is that name familiar? hx: he used to be a baseball player. elaine: oh, how did you end up playing golf with him? kramer: well, i met him on the course a couple of years ago. yeah. played with him a lot. but today was it! we're on the fifteenth hole, ya, he's beating me by a couple of strokes. then, he's about to hit his second shot, when, he picks up the ball and cleans it. elaine: so what? kramer: umph, sorry! but the rules clearly state that you cannot clean the ball unless it's on the green. the rules are very clear about that. jerry: certainly are. kramer: ya, so i penalized him a stroke. kramer: he lost it! we almost came to blows. we were face to face like a manager and an umpire like this . . kara a pukka ba ya ka ba . . . jerry: all right. you're in my face. elaine: i still don't see what the big deal is. kramer: a rule is a rule. and let's face it. without rules there's chaos. julie: i like anna quindlen's column and safire. don't you like safire? george: oh, safire. uh ha julie: although at times can be rather pedantic. george: he can be pedantic. he can be pedantic. julie: and bob herbert's great. he's the daily news. george: yes. yes. you know what's interesting. the quarterback for the atlanta falcons is bobby hebert. no "r" which i find fascinating. you know it's herbert h-e-r-b-e-r-t, hebert h-e-b-e-r-t. "hebert" it's a fun name to pronounce. try and say it hebert. take a shot. all right. (check arrives) all right. i julie: no, no. i'd like to take you out. george: no, julie, julie, don't insult me. you know, what difference does it make who pays for lunch. it's totally meaningless. julie: okay, thanks, george. wx: here's your big salad to go. julie: oh, thank you. jerry: (on phone) hello. no she's not here. okay, fine, whatever. i'll tell her. okay. goodbye. the stationery store guy called to say he ordered your pencil. elaine: i told ya'. he has ideas. jerry: he doesn't even care if a man answers. elaine: or you. george: hey, hey. elaine: hey. julie: sorry e're late. elaine: no problem. julie: here's your big salad. elaine: thank you, julie. julie: oh, you're very welcome. so, i guess i better get going. gotta meet mother a t the guggenheim. sure you don't want to go? george: no, you go guggenheim. i'm not much of a guggenheim. julie: sure, george. george: ya, you go. julie: okay, i'll see you later. goodbye. jerry: bye bye george: did you see what just happened? jerry: well, that all depends. . . george: did you happen to notice that julie handed the big salad to elaine? jerry: yeah, so? george: well, she didn't buy the big salad. i bought the big salad. jerry: is that a fact? george: yes it is. she just took credit for my salad. that's not right. jerry: no it isn't. george: i mean i'm the one who bought it. jerry: yes you did. george: you think she should have said something? jerry: she could have. george: oh, i know. jerry: imagine, her taking credit for your big salad. george: you know you buy a big salad for somebody it would be nice if they knew it. jerry: obviously. kramer: turn on the tv. jerry: what? kramer: i'm puttin it on tv: . . . the district attorney's office and the police department have not answered any questions as yet. to repeat in case you're just joining us. former baseball start steve genderson, has been taken to police headquarters for questioning the murder of bobby pinkus the owner of royal dry cleaners at 2759 amsterdam avenue. according to pinkus' wife, gendeson had been involved in a dispute with the cleaner about a stain on a pair of gray sans-a-belt slacks. we also have a report that earlier in the day a groundskeeper at vancourtland's golf course saw an irate gendeson leaving the clubhouse in a huff. whether there is a possible connection between the two is something we'll just have to wait. kramer: jerry . . . jerry: well, it has nothing to do with you. kramer: yeah, but maybe he was so mad from the penalty stroke that he murdered the dry cleaner. jerry: well, generally speaking you don't need any extra incentive to murder a dry cleaner. i wouldn't worry about that. elaine: i like julie. she's very personable. george: yeah, she's very lovely. elaine: that's great george. george: so did you enjoy your lunch? elaine: yeah, a big salad. very good. actually it was too big. ha ha ha wht? george: oh, . . .because she handed you the bag. i could have handed you the bag. she happened to pick it up at the restaurant even though, . . . elaine: even though what? george: . . . naw, it's just you thanked her, and and oh, . . . what's the difference? elaine: what? what are you trying to say, george? george: it's just that i was the one who actually paid for the big salad. she just happened to hand it to you. but it's no big deal. elaine: you want the money for the big salad, george? george: no, no, elaine: what is the problem? george: there is no problem. . . just a small miscommunication. whereby you thanked her instead of the person actually responsible for purchasing the big salad. jerry: and kramer thinks a penalty stroke may have driven him to it. margaret: well, they haven't even arrested him yet. come on, let's go out. jerry: ah, no , i don't think so. margaret: why not? jerry: we don't need a bunch of people staring at us. margaret: who is staring? jerry: oh, they're staring. they know we're on a date. they're making fun. come on. it's embarrassing. jerry: hello. no she's not here. yes i will tell her. no i don't know what time she might be coming back. look i gotta' go. goodbye. . . . that, that's a long story. jerry: hello newman. margaret: hello jerry, i was wondering if you knew where kramer was. jerry: no, no i don't. why? margaret: you know, genderson. this is something big. jerry: i suppose. margaret: what did kramer say? jerry: i don't know. nothing.? margaret: come on jerry. you know something tell me! tell me!, oh, chocolates . . . margaret? margaret: hello. jerry: you two know each other? newman: you might say that. margaret: we used to go out. newman: well, tootle loo. and nice seeing you again margaret, goodbye jerry. have fun. hehe jerry: . . . you went out with . . . newman? margaret: just a few times. jerry: why? margaret: i liked him. jerry: you liked, newman? margaret: look i'm a little uncomfortable talking about this okay? jerry: no, i'm sorry. i'm just a little curious. i mean why did you stop seeing him. margaret: he ended it. jerry: . . . he ended it? margaret: yes!! yes! it was a couple of years ago. why does it matter? jerry: no, no of course not. kramer: jerry, jerry they found a tee. jerry: what tee? kramer: a golf tee. in the dry cleaner. jerry: newman! she went out with newman! elaine: it must be a mistake. jerry: no. it isn't and the most distressing part of it is, not that she went out with him but that he stopped seeing her. do you understand? he, newman; newman stopped seeing her. newman never stopped seeing anybody. newman will see whoever is willing to see him. not so much why she did see him as disturbing as that is. but why, did he, newman, stop seeing her? elaine: perhaps there's more to him than meets the eye. jerry: no, there's less. elaine: it's possible. jerry: no it isn't. i've looked into his eyes. he's pure evil. elaine: he's an enigma, a mystery wrapped in a riddle. jerry: yeah, he's a mystery wrapped in a twinkie. wx: would you like some more coffee? jerry: no,, but thank you. jerry: oh, by the way, your stationery store guy called and he's got your pencil. elaine: ugh! you are kidding me. jerry: no, he left the store early, made a special trip to the distributor and got it. elaine: i bought mine yesterday on 14th street. jerry: well, what did you do that for? you ordered it. elaine: to please mr. pitt. jerry: well, you better go down there and tell this guy. he's very excited. elaine: uh, great! jerry: hi julie. jerry: hi. elaine: hi julie. jerry: hi, how are you, elaine? i'm meeting george here. elaine: oh, well then i better get going otherwise george will make me buy him lunch to make up for that big salad he bought me yesterday. jerry: how do you know that? newman: who is it. jerry: it's jerry. newman: you've come at a bad time now. could you come back later? jerry: come on newman. open the door! newman: hellooo jerry. what a rare treat. what brings you down to the east wing? jerry: okay, pudgy, lets stop playing games. what happened with margaret? newman: there's no need to get excited. can't we discuss this like gentlemen? jerry: no, we can't. my skin is crawling just being inside your little rat's nest. now, what happened? newman: do you really want to know what happened? i'll tell you what happened. she wasn't my type. jerry: noit your type? newman: not really. jerry: well, how come? newman: ah, she just didn't do it for me. jerry: what, what is wrong with her? newman: well, h ha ha- if you're happy with her, that's all that matters. jerry: you don't think she's attractive? newman: no. i need a really pretty face. but, hey, that's me. jerry: okay, newman, thanks a lot. newman: care for some lemonade? jerry: no, thank you. newman: drop bye anytime, jerry. hah, ha ha kramer: listen to this, "if a player cleans his ball during the play of a hole accept on the putting green he shall incur a penalty of one stroke. " that's a rule, jerry. jerry: but it's just a friendly game. why do you have to be such a stickler? kramer: because that's the way i weas raised. you know when i was growing up i had to be in bed every night by nine o'clock. and if i wasn't, well i don't have to tell you what happened. jerry: what are you so worried about this for? kramer: you know he talked about pinkus on the course? jerry: he did? kramer: oh yeah, he said he brought a pair of pants into pinkus' and they came back stained with some kind of dry cleaning fluid. and pinkus denied responsibility. you see he was very upset with pinkus. jerry: so it had nothing to do with you. kramer: yeah, but maybe i pushed him over the edge. jerry: no, i don't think so. kramer: poor pinkus, poor little pinkus. jerry: hey, let me ask you a question. you met margaret. doo you think margaret's good looking? um, she's a natural beauty. oh, no makeup. i like that. jerry: yeah, and the curls. you like the curls? kramer: oh, i love curls. jerry: yeah,, me too. kramer: all right, i'll see you later. jerry: where you going? kramer: genderson's. jerry: you're going to see genderson? kramer: it's weighing on my conscience. george: you know, i think i could have played with dolls if their were dolls in the house. it seems like fun to me. it doesn't seem like a gender thing. i think i would like to play with dolls. what's so terrible? julie: ha. so, george, i was talking to elaine before. george: a ha! we're just friends. julie: yes, well anyway, she said something that was kind of intriguing. george: oh, share. julie: well, when i came over to the table she mentioned something about how she better hurry up and leave or you'd make her buy lunch to make up for the one you bought yesterday. george: ha, ha ha uh, i'm not following that. julie: well, my question is, how could elaine be under the impression that you bought the big salad, when i was the one who handed it to her? george: well, she probably just assumed. julie: um, did she? george: . . .uh, . . . wait a second. are you suggesting that i went out of my way to tell elaine that even though you handed her the big salad, that it came from me? julie: that's what i'm suggesting. george: . . . well it was a big salad. and what i would like to know is, how does a person who has nothing to do with the big salad claim responsibility for that salad and accept the thank you under false pretenses - ah - ah? julie: george, all i did was hand someone a bag. elaine: it's just that my boss is very demanding and he needed the pencil right away. stationer: well,, why did you tell me to order it if you knew you were going to get one someplace else? elaine: no, no no i didn't know. i, i'm sorry. stationer: i went all the way down to the warehouse. it took me three hours. i had a big fight with the foreman. elaine: really? a fight with the foreman? stationer: yes. elaine: well, again, i'm just awfully sorry. stationer: yeah? well, then how about going out with me tonight? elaine: okay. margaret: i mean they found a tee and he played golf that day. nobody walks into a dry cleaner's with a tee. the circumstantial evidence is overwhelming. jerry: you had how many dates with him? three? margaret: around three. i don't know. jerry: and . . margaret: i told you. he stopped calling me. i moved on. i'm not hung up on him. what are you looking at? jerry: what? i'm not looking. nothing. jerry: why are you looking at my face? jerry: where am i going to look? margaret: kiss me. jerry: . . . i can't. jerry: newman! jerry: all i could think of was when i was looking at her face was; newman found this unacceptable. elaine: well, ,i'm going out with the stationery store guy. jerry: you're going out with the stationery store guy? elaine: i felt so guilty about the pencil i couldn't say no. elaine: well, well, well, i'm not treating you to lunch anymore! you had to tell julie that i made a special point of telling you that i bought you the big salad. didn't ya'. elaine: uh, uh. george: you know, if it was a regular salad i wouldn't have said anything. but you had to have the big salad. jerry: hello, what? you're kidding. i'm turning it on. oh, my god. get out of here. (hangs up) hey listen to this. they issued a warrant for genderson's arrest. he escaped and the police spotted him on the new jersey turnpike. tv: as you can see white bronco. the police have cleared the highway traffic in front of him but they are keeping their distance and don't want the situation to escalate. and we have gotten an identification on the driver of the vehicle. his name is; kramer, one of genderson's golfing buddies. police: 9-1-1 what are you reporting kramer: yeah, this is kramer. i got genderson in the car. he wants to see his fish. i'm taking him to see his fish. so tell the police to back off. police: okay, sir, and what's your name? kramer: my name is kramer. you know who i am dammit! genderson: i told you not to take the turnpike. kramer: i thought we would blend in. genderson: if we took the palisades this never have happened. kramer: we would have had all that bridge traffic. genderson: ah, just drive. elaine: she was hitting on you? my friend noreen? jerry: your friend, noreen. elaine: are you sure you're not just flattering yourself? jerry: if i was flattering myself, i think i'd come up with someone a little less annoying than noreen. elaine: i cannot believe that she was hitting on you. jerry: if you don't believe me, ask her. elaine: i will. besides, she's got a boyfriend, jerry, you know him. dan. remember, we went to that party at his house? jerry: oh, right. the guy who talks with a really high voice. elaine: yeah. kramer: jerry, did you get my fortune magazine in your mail? jerry: check the pile. kramer: (leafing through jerry's mail) oh, who sent you a card? jerry: i don't know. kramer: open it, it's from hallmark. jerry: oh. elaine: hello, darling. jerry: isn't that cute, a 'thank you' card from kristin. kramer: let me see. elaine: who's kristin? jerry: she works for pbs, i met her when i agreed to do that pledge drive. kramer: did you ask her about me? jerry: yeah, in fact she said that you could be one of those people that sits in the back and answers the phone. kramer: giddy-up! alright! so now, how does that work? now, what, i get a percentage of every pledge i bring in, right? jerry: no, it's not aluminum siding, it's volunteer work. all the money goes to the station. kramer: okay, yeah, alright, that sounds good, but i still get a tote bag though, right? jerry: yeah, and one of those foam beer can holders. elaine: (dialing the phone) you know what i'm doing? i'm calling noreen. jerry: oh, go ahead. elaine: you sure you don't mind? jerry: like she's really going to admit she was flirting with me. high pitched voice: hello? elaine: hi, it's elaine. listen, i was just talking to jerry. high pitched voice: jerry? elaine: jerry seinfeld. high pitched voice: oh, i like jerry a lot. elaine: you mean like like? high pitched voice: what are you talking about? elaine: noreen, were you hitting on him? high pitched voice: noreen's not here, this is dan. elaine: ooh. dan: you say that noreen was hitting on jerry seinfeld? elaine: uh oh. jerry: so was i right? she likes me, right? elaine: oh, i'm sorry mr. pitt. hello? high pitched voice: elaine? what is going on? why did you tell dan i was hitting on jerry seinfeld? elaine: is this noreen? high pitched voice: (noreen) what would ever possess you to make up a story like that. elaine: well, listen, jerry mentioned it, and, i don't know-- elaine: noreen, are you crying? dan: no, this is dan! elaine: oh, hi dan. mr. pitt: elaine? work? elaine: tell noreen i'll just call her back later. mr. pitt: who was crying? elaine: no one. i'm sorry mr. pitt, that won't happen again. mr. pitt: (unwrapping a candy bar, placing it on a plate and cutting it with knife and fork) i'm sure it won't, but someone was crying and i want to know who it was. elaine: well, it's a long story, okay? but my stupid friend jerry told my other friend noreen that she was-- (noticing mr. pitt eating the candy bar with knife and fork and becoming distracted) you know, hitting on him and so i called her to see what was, uh, going on and i accidentally got her boyfriend, who is this, you know-- jerry: i'm jerry seinfeld, i tell jokes for a living, but there's no joking about the financial crisis at pbs. show us you care. call in your pledge now. kristin: jerry, i am so grateful that you're doing this. jerry: oh, i know you are. kristin: you got the card i sent? jerry: i did. kristin: so where is it? jerry: what? kristin: the card. is this it in the trash? jerry: no? kristin: this is my card, you threw it away. jerry: well-- kristin: i put a lot of thought into this card. jerry: you signed your name and you addressed the envelope, it's not like you painted the picture and wrote the poem. kristin: fine. i gotta get back to the office. jerry: why, because i threw the card out? how long was i supposed to save it? kristin: you have no sentimentality. jerry: i have sentimentality, really, i'm sentimental. here, look. here's some cards i've saved, these are birthday cards from my grandmother, see, i'm not a bad guy. kristin: oh, so you save her cards but not mine! oh great! jerry: (as kristin is storming out) well, but, you see, i saved something! see? i can save. i'll see you at the pledge drive, ok? kramer: new cards, huh? jerry: no, they're old cards from my grandmother. kramer: oh. well, i'll tell you, a nice greeting card can really lift a person's spirits. jerry: yeah. kramer: (opening a card) oh, a check. jerry: yeah, she puts ten dollars in every card for my birthday, that's why i save them. kramer: there's a check in all these? why don't you cash them? jerry: i don't know, it's ten dollars. kramer: but you got a whole pile here. 1987? jerry: oh so what. kramer: jerry, your grandmother gave you this gift. she wants you to spend the money, to have the fun that she can't have. oh, this is tantamount to a slap in the face. jerry: oh, get out of here. kramer: jerry, a gift not enjoyed is like a flower that doesn't blossom. jerry: alright, alright, i'll cash the checks. kramer: yeah. jerry: it was a 'thank you' card from kristin because i'm doing the pbs drive. i mean, how long am i supposed to keep it? george: the rule is a minimum of two days. jerry: you making that up or do you know what you're talking about? george: i'm making it up. jerry: i mean really, what's the point of saving it? i could see if i had a mantel. george: oh, well, a mantel's a whole different story. jerry: absolutely. george: if my parents had a mantel, i might be a completely different person. jerry: so anyway, she's kind of upset about it so i need you to do me a favor. george: let's have it. jerry: well, i'm doing the pbs show, so during the show they're gonna be running the ken burns baseball thing. so i thought if i could get a baseball player to come on the show with me... george: you want me to ask one of the yankees. jerry: could you? george: alright. i'll run it by a few people. jerry: alright, do your thing, where you lie to everyone. elaine: (entering and sitting down) i should never have made that phone call. jerry: hey, did you ever get to talk to noreen? elaine: yes, she's very upset. jerry: so was i right about the flirting? was it true? elaine: i don't know, i never asked. she was yelling-- george: who was flirting with you? jerry: remember when we were in the bookstore, that woman came up to us? george: she wasn't flirting with you. jerry: oh, sure she was; asked me where the 'humor' section was? humor? come on. elaine: jerry, her brother just had a book of political cartoons published. jerry: alright, so maybe she wasn't flirting with me. so what? elaine: so, yeah, that's funny. hey, you wanna hear something weird? mr. pitt eats his snickers bars with a knife and fork. george: really? elaine: yeah. jerry: why does he do that? george: he probably doesn't want to get chocolate on his fingers. that's the way these society types eat their candy bars. jerry: oh, you know. george: what, you think i eat all my meals with you? (to waitress) excuse me, sweetheart? i think you may have overcharged us. what is this? waitress: that's the extra toast. get it? george: got it. (the waitress walks away) did you just see what happened here? elaine: what? george: did you see the way she pointed at the check? she gave me the finger. jerry: that's how waitress types express derision. they don't want to get their mouths dirty. george: so, what do you think? mr. morgan: a pbs fundraiser? i'm not gonna waste any of the players' time with that, besides the team already does so much promotion for channel eleven. george: channel eleven? forgive me for trying to class up this place, for trying to have the yankees reach another strata of society that might not watch channel eleven. mr. morgan: uh, what the hell are you doing? george: i am eating my dessert. how do you eat it, with your hands? mr. morgan: you know, maybe george has something here about pbs. jerry: okay, sixty bucks from nana. kramer: huh? yeah. nana: hello? voice: hello, this is chemical bank. just wanted you to know that your checking account is overdrawn. nana: chemical bank? i haven't used that account in months. voice: well, someone's been cashing the checks and you're overdrawn. nana: oh dear. i'll be down there first thing in the morning. voice: (unheard by nana as she hangs up the phone) wait, we can do this over the phone. (fade to the next morning, the alarm clock goes off, it's 5: 30, nana turns off the alarm, fully dressed, gathers her coat and purse, sighs, and heads for the door.) jerry: you got danny tartabull?! george: you wanted a yankee, i got you a yankee. jerry: boy, you really came through. kristin's gonna be thrilled. george: hey, the bull owes me one, i helped him with his swing. kramer: so you're bringing danny tartabull to the fundraiser tonight. george: absolutely. pending approval of the script. jerry: excuse me? george: jerry, i'm yankee management. kramer: yeah, i'd like to see the script too. jerry: you're just answering phones! kramer: it would put me at ease. george: hey, when you order from the waitress, get her to point to the menu. i want to see what finger she uses. jerry: uh, say, i wanted a side order of fruit but i didn't see it on the men waitress: oh, you're getting it (pointing to menu with index finger), it comes with your breakfast special. jerry: right you are. george: i didn't get the special, but i'd also like the fresh fruit too. waitress: (scratching cheek with middle finger) i'll check. george: (after waitress walks away) i don't believe it, she did it again! jerry: oh, she had an itch. george: she had an itch. she could have used any one of those fingers. that finger was meant for me. jerry: by the way, lunch is on me. i just cashed my nana's birthday checks. street tough: looking for something, lady? nana: isn't the chemical bank on this block? street tough: the bank? it burned. it's gone! nana: oh dear. jerry: (answering) hello? uncle leo: jerry? hello. jerry: uncle leo! uncle leo: listen, i don't want to alarm you, but your nana is missing. jerry: nana's missing? uncle leo: i came to pick her up for a doctor's appointment, she wasn't here. i called the doctor, nobody knows where she is. she hasn't left the apartment in twenty-five years! jerry: i've been thinking about her, i just cashed some of her checks. kramer: yeah, that's right. you did. uncle leo: what kind of checks? jerry: i think chemical bank. kramer: oh, they were chemical. uncle leo: chemical?! she hasn't used that account since her branch closed. what are you doing cashing her checks anyway? jerry: well, kramer thought it would make her happy. (to kramer) i never should have cashed those checks! kramer: hey, i didn't twist your arm. uncle leo: your grandmother's on a very fixed income. what, are you broke? jerry: just call me if you hear anything. (hangs up and faces kramer) well? i cashed the checks, the checks bounced and now my nana's missing! kramer: well, don't look at me. jerry: it's your fault! kramer: my fault? your nana is missing because she's been passing those bum checks all over town and she finally pissed off the wrong people. noreen: so anyway, it's caused a lot of problems. dan thinks i'm interested in jerry, he won't let up. elaine: i'm really sorry, but you can see why i'd make a mistake like that. noreen: no, why? elaine: well, you know, because he's a high talker. noreen: he does raise his voice occasionally, but that's normal. elaine: no. no, no, no, not a loud talker, a high talker. noreen: really? elaine: you don't think his voice sounds a lot like yours? noreen: i never noticed that. elaine: well, it's no big deal, you know, it's just that he can sound like a woman, you know? noreen: great. i'm going out with a man who sounds like a woman. elaine: well, he looks like a man. noreen: yeah. elaine: he's bald. i know that's a guy thing. noreen: i guess. elaine: i know he belches a lot. noreen: well, that's something. so, jerry thought i was flirting with him. elaine: yeah. noreen: (cutting into a cookie with a knife and fork) hm. he's kind of a baritone, isn't he? elaine: what are you doing? noreen: i'm eating this cookie. elaine: no, no, no, but why are you using a knife and a fork? did you just noreen: no, i've seen people do it. i like it. danny tartabull: this isn't gonna take long, is it? george: oh no, in and out, i made sure of that. and you'll be happy to know i perused the script and it's met with my approval. danny tartabull: i'm sure it's fine. george: (swerving) hey! watch it! did you see that guy? he just gave me the finger! danny tartabull: you sure? george: oh yeah! middle finger, straight up, at me! at us! danny tartabull: what are you doing? george: i'm following him. banker: i'm sorry, the account had insufficient funds. we had to return the nana: oh dear, that's my grandson. may i call him now and explain? banker: oh, certainly. elaine: and now i think she might really be interested in you. and dan is jerry: would you? elaine (answering): hello? nana: hello, i need to speak to jerry. elaine (thinking it's dan): oh, it's you. we were just talking about you. elaine (hanging up): heh? kramer: any word from nana? jerry: no. elaine: nana? jerry: yeah, my grandma's missing. elaine: missing? jerry: yeah. i think it might have something to do with those checks. elaine: um, what does nana sound like? jerry: like a grandmother, why? elaine: well... jerry: oh, you hung up on my nana?! elaine: i don't know, maybe. jerry: you told nana to drop dead?! elaine: it's possible. jerry: yes, it is! kramer: alright, alright. look, jerry, we gotta get down to pbs, pdq. jerry: alright. george: no one gives us the finger! we're yankees! danny tartabull: want this last donut? george: no, you can have it. kramer: jerry, where are all the tote bags? jerry: i don't know. kramer: well, i'm not leaving the premises without tote bags. i was promised tote bags and tote bags i shall have. kristin: jerry, this man wants to see you. jerry: leo? uncle leo: hello. jerry: uncle leo! what are you doing here? uncle leo: i wanted to tell you that your grandmother is fine. jerry: oh. uncle leo: she's had quite a day but she's gonna watch you tonight on the tv. kristin: jerry, i'm dying to meet danny tartabull. where is he? jerry: he'll be here any second. kristin: you know you guys are both on in five minutes. jerry: yeah, yeah. kristin: (leaving) okay. uncle leo: why didn't you tell me you were a little short? here. if anybody asks you where you got it, you don't know. jerry: no, that's ok, i really don't need any money. uncle leo: what are you talking about? jerry: please- uncle leo: i want- jerry: it's not necessary. uncle leo: jerry, would you please take it. jerry: i can't, i can't take it. uncle leo: i want you to have it! jerry: uncle leo, i don't want to have it! uncle leo: jerry, take the money! jerry: i don't want it!! high pitched voice: jerry, open up. we need to talk. kramer: who's that? jerry: you know what? it sounds like the friend of elaine's that was hitting on me in the book store. kramer: jerry, i'll take care of it. dan: is jerry in there? kramer: well, he can't be disturbed now. dan: well this situation is driving me crazy. he's all i think about. i can't get him out of my mind. kramer: i'm sorry. i mean, i know what it's like to be in love. ties you up in knots. and jerry is a very sexy man. dan: what? kramer: look, i'm not judging you. in fact, we here at pbs, we have many programs celebrating your lifestyle. armistead maupin's tales of the city, gender bending and swinging in san francisco. before stonewall about those dark ages when you couldn't come out of the closet, lest you be persecuted because of your, you know. dan: no, i don't. kristin: (running up) are you danny tartabull? dan: no, i'm not. george: i'll take care of this, danny. george: excuse me. man: what's the problem? george: i believe you cut me off, and then made an obscene gesture. man: i did? where? george: outside of manhattan, about an hour ago. man: wow! is that danny tartabull? george: that's right, of the new york yankees. man: i'd like to shake his hand but i can't. jerry: i'm jerry seinfeld, i tell jokes for a living, but there's no joking about the financial crisis here at pbs. our lines are open, so please call the number you see on your screen. jerry: this is the only time this year we'll be asking for donations. you've been enjoying ken burns' baseball- kramer: (answering) pbs pledge drive. nana: hello, i'd like to speak with jerry. kramer: oh, you again. buddy, look, forget about jerry. it's not gonna happen. nana: this is his grandmother. kramer: oh, uh, nana. hello. nana: tell jerry i'm sorry, i'm going to have to write him some new checks. kramer: as long as you've got your checkbook out, how about forking a little over to pbs? you watch the station, don't you? you don't want to be a freeloader. jerry: -programs like ken burns' baseball. and if danny tartabull were here, i'm sure he'd say, 'that's correct, jerry.' kramer: jerry? i have an announcement. your grandmother is on the line. jerry: my nana? kramer: and as we speak, she's generously writing pbs a check for fifteen hundred dollars! uncle leo: she can't do that, she's on a very fixed income! stop the show!! jerry: i got another card from kristin. not quite as chipper as the first one. elaine: wow. isn't this little bunny giving you the- jerry: yes, he is. elaine: you should show this to georgie. jerry: yeah. waitress: (at the next table) here's your knife and fork. jerry: look, she's cutting up an almond joy. elaine: i just don't get it. jerry: you know, i saw someone on the street eating m&ms with a spoon. elaine: what is wrong with everybody? jerry: (surveying the restaurant) look, they're doing it. they're all doing it! elaine: (standing up) what is wrong with all you people?! have you all gone mad?!! i think the thing i admire most about the chinese is that they're hanging in there with the chopsticks. because, if you think about it, you know, they've seen the fork... by now. i'm sure they've seen the spoon, they're going, "yeah, yeah, they're ok... we're going to stay with the sticks." i mean, i don't know how they've missed it: thousands of years ago, chinese farmer gets up, has his breakfast with the chopsticks, goes out and works all day in the field with a shovel... hello?... shovel! not going out there ploughing 40 acres with a couple of pool cues. jerry: (feeling face) good shave today... elaine: (sarcastic) don't worry, jerry, i can manage these bags; really i'm fine. jerry: i'm thinkin' of lettin' my sideburns grow in a little... elaine: can we rest here a second. jerry: (pause) yeah, i guess. jerry: ...so how's noreen? elaine: mmm! she's got a new boyfriend paul. jerry: already? that was fast... i assume he's not a high talker... elaine: no, but... he has... the worst habit. whenever he answers the phone, he won't put noreen right on. ya have'ta go through, like, ten minutes of chit-chat. jerry: a long talker. elaine: yeah! and he is so boring! but now, whenever he answers the phone i just hang up. jerry: (pause) all right; let's move it out. jerry: hey, isn't that george's father? elaine: oh, yeah, it is! shall we say hello? jerry: i've never seen him in manhattan before; it's weird. so out of context. elaine: that man he's with is he wearing a cape? jerry: i believe he is wearing a cape. elaine: why is mr. costanza with a man in a cape? jerry: well, it is good cape weather. cool. breezy. elaine: yeah, why a cape? who wears a cape? where do you even get a cape? jerry: you're right; it is strange. in fact, let's cross to the other side of the street. cover me. jerry: just, uh, plop it on the counter there. jerry: oh! i got a message. (presses button on answer machine) george: (on tape, lifeless) hey, it's george. i got nothin' to say... (beep) elaine: that sounds urgent... jerry: let me call him back... hello? who is this? donna chang? oh, i'm sorry, i must o' dialed the wrong number. elaine: donna chang? jerry: (is redialing) i should've talked to her; i love chinese women. elaine: isn't that a little racist? jerry: if i like their race, how can that be racist?... hellooo??... oh, is this donna chang again?!... yyy-yes, i am calling george... oh, the lines are crossed! you're getting his calls. well, what do you know?! jerry: so listen... kramer: hi. i'm goin' through this stuff like water... (to jerry) who you talkin' to? (jerry waves him away and moves towards the bedroom, still on the phone) elaine: he's on with a chinese woman. kramer: oooo, ooooo. you know, i dig asian women. elaine: you got a comfort problem there? kramer: no, i think these jockeys shrunk. elaine: i thought you wore silk underwear. kramer: no, no, n--well, you know, i wore 'em for about a month but i couldn't stick with it. no, i need the secure packaging of jockeys. (he's serious. then he makes a hand gesture of grabbing up) my boys need a house! elaine: (not charmed) that's nice. listen, kramer, you know, if you ever want to have kids you shouldn't wear briefs. boxers are much better for your sperm count. kramer: sperm count? well how many ssssperm should i have? elaine: a lot! jerry: i got a date! elaine: with the chinese woman?! jerry: she knew who i was! she saw me in a club one time! my first date ever with the pacific rim. i'm very excited. kramer: jerry. did ya ever have your sperm count checked? jerry: no, why should i? i wear boxers. kramer: you ever get a woman pregnant? jerry: i'm sorry, kramer. those records are permanently sealed... kramer: what would you say if i told you i never impregnated a woman? jerry: really? you never slipped one past the goalie in all these years??... boy, i'm surprised. you've slept with a lot of women! kramer: a lot of 'em! (wild gesture, freaked out) do you think maybe i'm... depleted??!! jerry: well, i'm sure you're not... totally depleted. kramer: yeah but what if i am? i'm the last... male kramer! we're facing extinction! jerry: so go to a fertility clinic. have your sperm count checked. kramer: yeah, but then i'd have to... (glances at elaine) well, you know... into a cup in the middle of the day?? elaine: what, does that conflict with your regular schedule? elaine: (going to the phone) all right. i'm gonna try noreen again. jerry: i am very excited about this date! we're goin' to hunan balcony! elaine: she's chinese so you suggest chinese food? jerry: she suggested it! elaine: i thought chinese don't eat chinese... jerry: she's very assimilated. jerry: paul again? elaine: (matter of fact) you can't get one ring past him. george: hey, hey, hey! you don't call me back?! jerry: i tried! your line's crossed with a chinese woman! george: ...huh? elaine: hey, george, we saw your father on the street before. george: hmm, what's he doin' in the city today? george: you didn't ask him? george: (suspicious) you didn't say hello? elaine: well, he was with someone. a man... in a cape. george: why was he wearing a cape? george: was my father wearing a cape? jerry: no. jacket and tie no cape. george: huh... cape... (turns, distracted, heads slowly towards door) what was a man with a cape doin' with my father?... what was my father doing with a man in a cape?... (opens door) why a cape? hmm! (exits) doctor: the results of your sperm test are in. kramer: oh? doctor: ummm... are you planning to start a family? kramer: yes! i would like to very much!... well, i'm low, aren't i? i ca--i can feel it!... doctor: yes, i'm afraid you're a little low. kramer: ohhh, maaan!! it's over! the kramer name is finished! i'm never goin' to procreate-- doctor: ah--that's not necessarily true. kramer: what doctor: there are measures you can take to improve your fertility. kramer: all right, all right. what. what. you tell me; i'll do anything. come on, doc, tell me. doctor: first thing you should wear boxer shorts. kramer: all the time? doctor: all the time. ya have to get off jockeys right away. kramer: yeah, but i've always worn jockeys. elaine: hi paul! it's elaine calling! yeah, i'm calling from a car phone so i don't really have time to talk. is, is, uh, noreen there?!... oh. she's not?! (hurries to put phone down) okay, great. well you can just tell her i called, then, an'-- well, yes. it has been unseasonably cool lately... oh, okay, well, look i'm pulling up to the building now. so, i'm gonna... (a little later, elaine is sitting and looking very bored) yeah, i took 20% too... um. look it uh... (turns hair dryer on and off) paul. the... car seems to be running out of gas so... i'm gonna... have to get off the phone. (hangs up) hostess: please let me know when the rest of your party has arrived, sir. jerry: yes, i will. guy: (indicating a cigarette) do you mind? jerry: no, go ahead, i second-hand smoke two packs a day. donna: jerry. jerry: (pause. stops tapping his leg) 'scuse me? donna: hi. sorry i'm late. jerry: who are you? donna: i'm donna chang... jerry: (stands, puzzled, it's not sinking in) w-what do you mean? donna: i mean i'm donna chang. jerry: (pause) you're donna chang? donna: did you think i was chinese?... jerry: oh. no. what, you mean because of the "chang"? donna: actually, the family name wasn't originally chang. jerry: i didn't think so. donna: used to be "changstein." elaine: she's not chinese? jerry: no. not chinese. not even asian. elaine: so. what is she? jerry: well, she's... like you. elaine: (pause, annoyed) oh, how disappointed you must have been. (walks to couch, with her cereal) jerry: well, it's false advertising, see? and the thing is, i think she likes people thinkin' she's chinese. she suggests chinese food. she always introduces herself as "donna chang"... elaine: so then why are you seeing her again... jerry: well, she is a woman. elaine: listen, i spoke to paul an' noreen. they might be breakin' up. jerry: really? (sits on couch) elaine: well, maybe. jerry: hey, wouldn't it be funny if paul an' noreen broke up because o' you kept hangin' up on him? elaine: (pause) what do you mean? jerry: well, you know if paul thought it was some guy... hangin' up because he was having an affair with noreen? kramer: here, take my jockey shorts. elaine: whoa! whoa! jerry: here, what is that?!! kramer: look, you gotta help me. i have to get off jockey shorts. jerry: wha--you have a low sperm count? kramer: very low! come on, jerry. take 'em. jerry: nnnoo--i don't want 'em. (starts backing away as kramer follows him around the room carrying the underwear) kramer: jerry, look! you gotta help me! i can't have 'em near me! if i have one pair in my house, i'm gonna wear them! jerry: look! i don't want 'em! kramer: all it takes is one pair! now, come on! j-- jerry: i'm not gonna be able to sleep if those are in the house! kramer: boxers! how do you wear these things!! look at that--they're baggin' up, they're rising in! an' there's nothing holding me in place! i'm flippin'! i'm floppin'! kramer: what am i gonna do!? jerry! i'm goin' crazy in these things! (leaves) jerry: (re the underwear pile) well, i'm gonna have to move now. frank: ya know what i like about manhattan? there's no mosquitoes. george: plenty of mosquitoes. frank: queens is full of mosquitoes. george: so, dad... frank: gnats, too. if i'm not mistaken. george: (pause) dad! i heard you were in the city the other day! frank: (angry) your mother has to tell you every move i make?! george: jerry and elaine saw you. frank: they didn't say hello? george: well, they were in a rush. frank: they couldn't just say hello?!... oh, to hell with them. george: they, uh... said you were with some guy who was wearing a cape?... frank: elaine, i can see, not sayin' hello. she's very--what's the word--uh, supercilious. george: so dad,-- frank: (shouting and clapping hands in anger) how could jerry not say hello?!! jerry: did they uncross the lines yet? donna: no, they can't find the problem. it's really getting ridicurous. jerry: (long pause -- did he hear "ridicurous" -- should he say something -- can't decide if he should. finally...) did you say, "ridicurous"? donna: ridiculous. jerry: (pause) i thought you said... "ridicurous." (donna looks puzzled) george: hey-- (spots donna) jerry: oh, what are you doing here? george: oh, i wanted to talk to you--i'm sorry, i--didn't know you... (re donna) had company. (jerry indicates he should stay) hiya, i'm george. donna: oh! hi! (they shake hands) i'm donna chang. (george to himself registers that as weird. he and jerry exchange sideways glances) i just spoke to your mother before. george: you spoke to my mother? donna: she was trying to call you, but-- jerry: the rines are crossed? george: did you say, "the rines are crossed?" jerry: did i? donna: (pause) george, she's so sweet. we talked for an hour! george: (smile) yeah. donna: anyway, i'm really sorry. george: sorry? why sorry? what you got to be sorry about? donna: well, she told me she and your father are getting divorced. elaine: ay, divorced. that's really too bad... jerry: yeah, you know it's a shame his parents didn't get divorced thirty years ago. he could have been normal. george: oh my god! (coming out of bathroom) you know what i just realized?! if they get divorced an' live in two separate places? that's twice as many visits! jerry: gee, i never thought of that. george: imagine if i had to see them both on the same day? (mirthless) haha! it's like runnin' a double marathon! elaine: hey georgie, did you have any idea that anything was wrong? jerry: have you ever spent any time with these people...? george: you know what this has to do with? elaine: what? george: the man in the cape--i bet you he is mixed up in this! i don't trust men in capes. jerry: and you can't cast aspersions on someone just because they're wearin' a cape... superman wore a cape... an' i'll be damned if i'm gonna stand here an' let you say something bad about him. george: all right superman's the exception. kramer: oh, hey! elaine, i just heard that noreen and paul are breaking up. i want you to put in a good word for me. (to jerry) i've always had a thing for noreen. elaine: no, kramer. you don't understand. this could be my fault. kramer: well, if she's available now, i'm not gonna let her slip through my fingers this time. nooope. (does a little dance) jerry: well it looks like you've adjusted to the boxers... kramer: wellll, i wouldn't go as far as that. jerry: you went back to the jockeys? kramer: wrong again. jerry: (pause as he realizes) oh, no. elaine: what? what?... jerry: don't you see what's goin' on here???... no boxers, no jockeys... elaine: (backing away from kramer) eeaawww... jerry: the only thing between him and us is a thin layer of gabardine... kramer, say it isn't so. kramer: oh, it be so. i'm out there, jerry, an' i'm lllovin' every minute of it!!! jerry: don't you need a little... help? kramer: surprisingly, no. i'm freee, i'm unfettered... (opens door to leave, still very happy, then) feel like a naked innocent boy rrroamin' the countryside!! (exits) elaine: so you guys are tryin' to work it out! that's great!... noreen: yeah, well... we're trying... but he just went insane there for a while... elaine: oh, he went insane?... noreen: believe it or not, paul was convinced i was having an affair because somebody kept calling and hanging up whenever he answered! what kind of a sick person calls and hangs up over and over? elaine: (awkward, increasingly avoiding eye contact) well. uh. i don't know about sick. i mean, maybe it was somebody who, didn't wanna talk to whoever was answering because whoever was answering was always making boring chit-chat, an' was completely oblivious to the fact that the person who was calling, didn't want to speak to them, ah! noreen: (has been growing increasingly slackjawed in amazement) i can't believe that was you... elaine: (looks at noreen) i'm really sorry, noreen... noreen: (reconsidering paul's worth) ...so you thought he was boring? elaine: hey, noreen, don't go by me! ha ha. jerry: what are you doin' to this woman?! this is the second relationship you've ruined for her in a few weeks!! elaine: (head in arms) i know-- jerry: first you ruin her relationship with the high talker. elaine: well... i got confused, they sound exactly the same. jerry: so she breaks up with him. somehow picks up the pieces of her life. miraculously meets... a new guy! ya bust that up! an' then, just as they're reconciling, you announce to the world he's boring. elaine: (apologetically) i didn't know she'd take it so seriously. jerry: well, apparently you have a tremendous influence over this woman anything you say she does! jerry: yeah. donna: it's donna chang. jerry: (hits button) come on up. (opens door a little) elaine: well, i guess i just didn't realize it... jerry: well, let's look back at your history with this woman. okay? elaine: (like a little girl) okay... jerry: first, you encouraged her to join the army... she did. elaine: she was lost... jerry: then, you suggest she goes... awol! she did! elaine: well, she didn't seem to be havin' so much fun... jerry: you know... you better make sure and never tell this woman to jump off the brooklyn bridge... elaine: if i have this much influence over her, why don't i just call her an' tell her to get back together with him--that's aalll! donna: hi. jerry: oh, miss changstein! this is elaine... (at the same time--donna: helllo...--elaine hi! how are you?) donna: (to jerry) guess what? mrs. costanza called me, they're not getting divorced. elaine: (happy gasp) oh. jerry: why? what happened? donna: well, she was trying to call george last night, she got me, we spoke for an hour and she changed her mind!!! jerry: wow! that's amazing! donna: anyway, she wants to meet me! she invited me over for dinner! elaine: (off camera) huh. donna: she said you should come too. jerry: tonight? donna: yeah--i just remembered, i'm gonna have to cancel my acupuncture class. (goes to phone) george: all right. (tearing his jacket off) let me just say one thing there is no way that this is gonna happen. you hear me? no way! because if you think i'm going' to two thanksgivings, you're out of your mind!!! estelle: (calmly) we're not getting divorced. frank: your mother changed her mind... (tries to catch a fly with his hand) george: (gleeful, to estelle) you did?! that's goood! that's very good! i'm very glad to hear that. frank: yeah, we worked it out. george: all right. so let me ask you a question. who was the man in the cape? frank: he was my lawyer. george: your lawyer wears a cape...? frank: yeah. so what? george: who wears a cape? frank: he's very independent; he doesn't follow the trends. estelle: he looks ridiculous in that thing... frank: (shouting) you have no eye for fashion!!! estelle: (shouting) i have no eye for fashion?!?!?! george: all right! come on! let's not fight. frank and estelle: all right! all right! estelle: georgie's right. (pats him on the cheek) george: (quietly) ehh. (pausing to look at both of them) so what made you change your mind? estelle: it was that chinese woman. jerry: so i'm curious. what'd you tell mrs. costanza that changed her mind? donna: i mentioned a few bits of wisdom from confucius. jerry: confucius, huh? donna: yeah. jerry: (pause) you know, you're not chinese... jerry: hey! i heard the good news! frank: jerry, how come you didn't say hello to me the other day, huh?! jerry: elaine was... in a rush. frank: (to george, pointing) i knew it was elaine!! donna: you must be estelle. estelle: (giggles) yes. who are you...? donna: i'm donna chang! estelle: (steps back, appalled) you're not chinese! kramer: y'ello? elaine: paul? kramer: elaine! elaine: kramer? kramer: (pause) yeahh! elaine: what are you doin' there? kramer: wellll, isn't it obvious? elaine: (scoffs) uh, is noreen there? kramer: yes she is... elaine: (pause) well... can i talk to her? kramer: oh, what? am i... tooo boring for you? elaine: (losing patience) alright--would you just put her on? kramer: well, i feel that it would be best that you didn't talk to noreen for a while... elaine: you feel? kramer: that's right! she an' i have had a very long talk. an' i was appalled to learn of the destructive influence you've had over her life, lo these many years... elaine: what, are you insane?! kramer: from now on, i'll be calling the shots around here... elaine: uh! ho-ho. an' what are you gonna tell her? kramer: well. i've encouraged her to go back into the army...(noreen sighs a little) there she'll get the structure an' the discipline she needs right now... and she'll have qualified officers telling her what to do... elaine: (sighs) kramer! you have got to let me talk to her! kramer: can't help ya, kid. elaine: get the-- (kramer puts phone down) estelle: you're not chinese!?!? donna: ...no. estelle: i thought you were chinese!! donna: i'm from long island. estelle: long island?!?! i thought i was gettin' advice from a chinese woman!! donna: i'm sorry...? estelle: well... then... that changes everything! george: what?! estelle: she's not chinese; i was duped!! george: so what?! she still gave you advice; what's the difference if she's not chinese?!?! estelle: i'm not taking advice from some girl from long island!! (goes into another room) george: (chases after her) wait a minute! you're--now you're getting a divorce because she's from long island?!?! frank: (shouts after them) you want a divorce?!!? you got one!!! jerry: (pause, to donna) you know, you might wanna think about changin' your name... elaine: so, ever since she started dating kramer, she won't even talk to me! jerry: well--noreen listened to you like george's mother listened to the chinese. (buys a newspaper out of a machine) elaine: (pause) you know, everybody listens to the chinese. i mean, look at the fortune cookie. you couldn't get away with that in any other restaurant. elaine: (quietly) hu_uh, (pause) you know, everybody listens to the chinese. i mean, look at the fortune cookie. you couldn't get away with that in any other restaurant. jerry: yeah, no one's reading any rolled-up messages in a knish... george: oh, it had to happen!! jerry: hey. george: i knew it!! (shuts cab door) i predicted it! (hits cab roof twice, it drives off) saw both of them today! what a disaster! i'm runnin' all over queens. first i saw my mother. we had lunch together. never had... lunch with my mother before--it's like a date! then we drive down to kew gardens! tons of traffic! i see my father. we played "clue"! all day with this! [kew gardens (see links at end of script)] kramer: (triumphant) hey, jerry! guess what! the kramer name might live on! noreen's late! she's laaate!! (give two thumbs up) noreen: (surprised) who are you?! man: i'm frank costanza's lawyer. (he starts pulling her to safety) jerry: so, she got you to join a book club? george: i got a feeling i'm gonna be much smarter than you pretty soon. jerry: well, i think that statement alone reflects your burgeoning intelligence. (sits on a couch.) hey, what about this one? george: nah, i don't like that one. jerry: so, what's your first book? george: "breakfast at tiffany's." 90 pages. (waves a hand like it's nothing.) jerry: it's kinda old, isn't it? george: they wanted to read a truman capote book. jerry (standing): oh, sure...truman capote. george: he's a great writer. jerry: oh, yeah. george: did you ever read anything by him? jerry: no. you? george: nah. jerry (sees a white couch by the wall): oh, what about this one? look at this, this is it! this is what i'm looking for. (sits on the couch.) oh, yeah! elaine: hey, what's going on? jerry: new couch, baby! elaine: new couch? why? jerry: i love this couch. you know what the best part about it is? it doesn't fold out, so no one can sleep over. elaine (to carl, flirtatiously): hello. carl: hello. elaine: oh, let me get the door for you. (they carry the couch out the door.) ooh, be careful! jerry: wait till you see it, it's perfect. the guy told me it's one of a kind, they stopped making it. elaine: what are you doing with your old couch? jerry: nothing, the moving guys are taking it. why, you want it? elaine: yeah, i'll take it. jerry: well, i'm sure that they can deliver it to your apartment. elaine: yes, they can. (kramer enters.) kramer: hey! couch is comin.' jerry: it's here! kramer: alright! yeah. you know, i'm excited about this, jerry. in a way, i feel like i'm getting a new couch. jerry (nonplussed): yeah. so do i. kramer: ooh! remember poppie? jerry: oh, you mean from poppie's restaurant? kramer: yeah, yeah. anyway, uh...we're going into business together. remember that idea i had a few years ago about the pizza place where you make your own pizza? jerry: yeah. elaine: what was that again? kramer: it's a pizza place where you make your own pie! we give you the dough, the sauce, the cheese...you pound it, slap it, you flip it up into the air...you put your toppings on and you slide it into the oven! sounds good, huh? elaine (in a southern accent): ooh, i can't wait to get me a fella and make mah own pie! jerry: what made you resurrect that old idea? kramer: well, i happened to be eating at poppie's when i told him the "old" idea, and his eyes - waaaaaah! - just lit up. you know, he wants to back it. elaine: i heard poppie's was good, let's go. jerry: i'm not goin' there. didn't he get busted by the board of health? kramer: that was in the past, jerry. as it happens, new york magazine just judged his kitchen to be one of the cleanest in the city. they got a duck there, you think you died and went to heaven. elaine: ooh! i love duck. c'mon, c'mon! kramer: yeah, but you gotta order it two days in advance. (to jerry) you know, i'm gonna call him, i'm gonna order the duck for you. jerry: oh, kramer, i - jerry: right there, guys. that's perfect. ah? whatta ya think, lainie? elaine: well, i don't know. i'll have to sit on it. jerry: oh no, i don't want anyone sitting on it. carl (hands jerry an invoice): sign here. elaine (to carl): excuse me, i was wondering if would it be possible if you could deliver the old couch to my apartment? it's not very far. carl: sure. elaine: 'kay. you, uh...you got room in the truck for me? carl: yeah, i think we can squeeze you in. elaine: oh, goody. okay, well uh...(to jerry and kramer)...i'll see you chumps later. (elaine and carl exit.) kramer: did you offer those guys a drink? jerry: uh, no. should i have? kramer: what kind of a person are you? jerry: i don't know. george: okay. "breakfast at tiffany's." (begins to read, but gradually his attention is drawn to the tv guide on the end table. george realizes there's a show on he wants to see by looking at his watch, and doesn't start the book.) elaine: so, he puts the couch down, and just as he's about to leave he says, "do you date moving men?" jerry: ah ha... elaine: you wanna know what i said? jerry: i can't wait. elaine: "i do now." jerry: clever. elaine: is that something? jerry: yes. elaine: is that something? jerry: you're something. so anyway, when they were in my house before, i didn't offer them anything to drink. elaine: well, they're real men, jerry. they get sweaty. jerry: so, anyone sweaty comes into your house has to be offered a drink? elaine: yes. jerry: well, would you apologize for me? (elaine nods. poppie comes out of the kitchen.) poppie: hello! jerry, so good to see you again! (puts his hand out.) jerry (clearly creeped out by having to shake poppie's hand): hello, poppie. this is elaine. elaine: nice to meet you, poppie. poppie: let me show you to your table. (leads jerry and elaine to the table.) your duck is cooking as we speak. it is so succulent...so succulent! jerry: well, kramer told us all about your business venture together. poppie: your friend and i are going to make a lot of money. of course, i already have a lot of money. poppie does very well...very well. elaine: well, your mother must be very proud of you. poppie: my mother...was taken from my house by the communists in the middle of the night when i was ten years old. she was sent to a slave labor camp, where she labored for twelve years. finally, they released her and she was on a boat to america to re-unite with us...but she was served some bad fish, and she died...on the high seas. jerry: so, what's good tonight? elaine: boy, i'm really looking forward to this duck. i've never had food ordered in advance before. jerry: ah, i could've stayed home and ordered a pizza from paccino's. elaine: paccino's? oh no. you should never order pizza from paccino's. jerry: why not? elaine: because, the owner contributes a lot of money to those fanatical, anti-abortion groups. jerry: so, you won't eat the pizza? elaine: no way. jerry: really. elaine: yeah. jerry: well, what if poppie felt the same way? elaine: well, i guess i wouldn't eat here, then. jerry: really! elaine: yeah. that's right. jerry: well, perhaps we should inquire. poppie! oh, poppie. could i have a word? (poppie comes over.) poppie: yes, jerry. i just checked your duck...it is more succulent than even i had hoped. jerry: poppie, i was just curious...where do you stand on the abortion issue? poppie: when my mother was abducted by the communists, she was with child... jerry: oh, boy. poppie: ...but the communists, they put an end to that! so, on this issue there is no debate! and no intelligent person can think differently. elaine (offended): well...poppie. i think differently. poppie: and what gives you the right to do that? elaine (standing up): the supreme court gives me the right to do that! let's go jerry, c'mon. woman at next table (to her date): i heard that. let's go, henry. henry: but we just got here... woman at another table: i'm with you, poppie! woman at yet another table (to her date): let's go! elaine (to poppie): and i am not coming back! poppie: you're not welcome! jerry: well, i'm certainly glad i brought it up. (gets up and leaves.) jerry: well, you should have seen it. it was quite a scene over there. george: i'm sorry i missed it. jerry: oh, you really missed something. and i have to say...it was pretty much all my fault. (jerry smiles. george laughs.) so, how's the book coming? (george's laughs taper off...) i say, how's the book comin'? george: oh...pretty good. jerry: so, what's it about? george: well, it's about holly go-lightly. jerry: holly go-lightly. george: yeah, she's quite a character. jerry: yes, you haven't read a page, have you? george: no. jerry: big surprise. george: i couldn't. you know, if it's not about sports, i find it very hard to concentrate. jerry: you're not very bright, are you? george: no, i'm not. i would like to be, but i'm not. what am i gonna do? the book club meets in a few days. jerry: why don't you rent the movie? george: 'why don't i rent the movie.' see, this is when i like you. alright, now i'm relieved. (kramer enters and comes over to the booth.) kramer (scanning a menu): so...how was the dinner last night? jerry: oh...well... kramer: did you enjoy the duck? (elaine comes back from the bathroom.) oh, elaine! i was just asking how dinner went last night. elaine (sitting down): oh...well... kramer: alright, what did you do to poppie? elaine: nothing. kramer: well, he's in the hospital. and the cook says you put him there. elaine: what's wrong with him? kramer: i don't know! i'm gonna go and visit him later. (angrily) it would be nice if you got him something. (punches the the table to accentuate this, and leaves.) jerry: we should get him something. elaine: yeah. you're right. elaine: do you know that i have been using the same bottle of shampoo for a year? and i shampoo every day. (carl smiles.) so, what do you think of my conversation? carl: not much! (they both laugh.) i, uh, would have invited you up, but i don't have any furniture. elaine: you don't have any furniture? carl: no, i hate furniture. i can't look at it. (they laugh again.) elaine: well, i can understand that. pretty good date, huh? carl: yeah! no heavy lifting. (elaine and carl look into each others eyes, then kiss.) kramer: anyway, jerry and elaine felt very badly about what happened to you, and they wanted you to have this. poppie (opening the gift basket): what's this? a bottle of wine and a five-alarm chili? they're trying to kill poppie?! kramer: why, what...? poppie: don't they know i have a gastro-intestinal disorder? if i would have any of this, i would die. then poppie's no good to anyone! this is a sick, sick joke on poppie. how could you be friends with those two? kramer: well, we're not very close. poppie: they owe me for those ducks. they were flown in from newfoundland. kramer: oh, they got good ducks there, huh? poppie: oh, very good ducks. elaine: i'm in looove! jerry: whoa! elaine: this is it, jerry! this is it! he is such an incredible person! he's real, he's honest, he's unpretentious...oh, i'm really lucky! jerry: did you tell him i was sorry i didn't offer him the drink? elaine: no, i forgot. and, the best part is, he doesn't play games. you know? there are no games! (sits down on the couch.) jerry: no games? what is the point of dating without games? how do you know if you're winning or losing? elaine (putting on lipstick): well, all i know is, he doesn't like games and he doesn't play games, you know? he has too much character and integrity. jerry: ah ha. and what is his stand on abortion? elaine (looks at jerry and smears lipstick across her face): what? jerry: what is his stand...on abortion? elaine: well, i'm sure he's pro-choice. jerry: how do you know? elaine: because he, well...he's just so good-looking. jerry: well, you should probably ask, because if he's gonna be coming over with those paccino's pizzas...could be trouble. george: i'd like to rent breakfast at tiffany's. clerk (checking the computer): uh, this is out. someone has it. george: out? oh no, i've been to four other places, you're the only ones that have had it. clerk: well, i could put it on reserve for you, if you'd like. george: maybe we could call them and ask them to return it. clerk: oh, sorry. we can't do that. george: well, maybe they're done with it. i could go pick it up. clerk: i don't think so. it doesn't work that way. voice on intercom: yes? george: uh, excuse me, are you joe temple? intercom: yes. george: uh, yes, uh...you don't know me, my name is george costanza...did you happen to rent breakfast at tiffany's? kramer: hey. jerry: hey, what's happenin.' kramer: well, you know, poppie's over at my place. tonight's the big night. i'm gonna make the first test pizza at the restaurant. jerry: you got a regular 'manhattan project' going on over there. kramer: yeah. anyway, he's about to leave, he wants the duck money. (poppie enters.) jerry: okay. hi, poppie. poppie: hello. jerry: i'm sorry about the gift, i didn't know about your condition. poppie: that's fine. if you just give me my duck money, i'll be on my way. jerry: okay. i'll get it. (goes into the bedroom.) kramer: why don't you sit down, poppie? you're still recuperating. (poppie moves to the sofa and sits down, and exhales a loud sigh of relief.) what, are you tired, poppie? poppie: no. kramer: hey, poppie...you really think people wanna make their own pizza? poppie: kramer, did i ever tell you about my mother? my mother - jerry (comes out of the bedroom with poppie's money): here you go. (poppie stands up and takes the money.) anyway, i'm sorry again about the...(notices a large, wet stain on his couch)...the...the... poppie: the what? (looks at kramer, and exits.) jerry: ...the...the... kramer (to poppie): so long. i'll see you tonight. jerry (frantic): kramer, kramer, what is this?! kramer: what is what? jerry: this puddle on my sofa! kramer: what puddle? jerry (points): that puddle! (kramer sees the puddle and does a double-take.) kramer: i don't know. jerry (looking at the puddle with kramer): is it...? could it...? could he have...? it is! (grabs kramer.) poppie peed on my sofa!! kramer: are you sure? jerry: well, what is it then?! my new sofa! poppie peed on my new sofa! kramer: i'm sure it'll come out. jerry: i don't care if it comes out, i can't sit on that anymore! kramer: ah, you're making too much of it. jerry (sarcastic): yeah, you're right. it's just a natural human function...happens to be on my sofa, instead of in the toilet, where it would normally be. kramer: right! george: well, anyway, the book club meets tomorrow, mr. temple. joe: well, i was going to watch it with my daughter. she likes audrey hepburn very much. george: she was a delicate flower. joe: why didn't you just read the book? george: well, as i say, the pink-eye made my vision...quite blurry... (joe's daughter comes to the door.) joe: remy, this is george. would you mind if he watched breakfast at tiffany's with us? (george smiles at remy. remy looks at joe doubtfully.) carl: hi. elaine: hi. (they kiss.) carl: i missed you. elaine: oh, i missed you! carl: i don't remember the last time i felt this way. elaine: me, either! carl: i think about you all the time. elaine: you do? carl: do you think about me? elaine: oh yeah, all the time, all the time...although, recently i've been thinking about this friend of mine. carl: what friend? elaine: oh, just this woman...she got impregnated by her troglodytic half-brother, and decided to have an abortion. (waits in suspense for what carl's response will be.) carl: you know, someday...we're going to get enough people in the supreme court to change that law. george: so, anything to uh, nosh? joe: what did you want? george: popcorn? remy: popcorn? where do you think you are? george: well, a lot of people keep popcorn in the house. remy: well, we don't. george: you might want to try it...makes the movie more enjoyable, that's all. joe (passes george a bowl): here's some nuts. george: oh! nuts! excellent! you know what i love? how there's two nuts named after people. hazel...and filbert. remy (to joe): can we watch the movie now, daddy? (joe presses play on the remote.) george: hey, let's turn off the lights, get some real 'movie atmosphere.' joe: the lights are fine. (george shrugs, and the movie begins.) kramer (in a chef's hat and apron): see, anybody can do this. (tosses pizza dough into the air.) poppie: use your wrist! it's all in the wrist. (kramer tosses the dough way up there.) not too high! kramer (puts the dough on the counter): alright, put a little sauce on here... (speaks some unintelligible words in an italian accent while spreading the sauce around.) some cheese... poppie: not too much! kramer: and...cucumbers! (grabs a large handful and puts them on the pizza.) poppie: wait a second...what is that? kramer: it's cucumbers. poppie: no, no. you can't put cucumbers on a pizza. kramer: well, why not? i like cucumbers. poppie: that's not a pizza. it'll taste terrible. kramer: but that's the idea, you make your own pie. poppie: yes, but we cannot give the people the right to choose any topping they want! now on this issue there can be no debate! kramer: what gives you the right to tell me how i would make my pie? poppie: because it's a pizza! kramer: it's not a pizza until it comes out of the oven! poppie: it's a pizza the moment you put your fists in the dough! kramer: no, it isn't! poppie: yes, it is! joe's wife: i'm home. joe: hey, honey. remy: hi, mom. joe's wife: hi, baby. (to george.) hello. breakfast at tiffany's? joe: yeah. joe's wife: well, i just came back from angela's, it's not looking very good for duncan. joe: aw, that's too bad. joe's wife: yeah, the doctor thinks it's just a matter of time - george (clears his throat, annoyed that the movie's being interrupted): joe...could you... joe's wife: poor guy, i hate to see him suffer like this... george: you know, i'm sorry, i...i hate to be one of those people, but we're right in the middle of this thing...i can't hear. joe's wife: who are you? joe: this is george costanza. george (irritated): this is very hard to follow with all the talking. joe: i'll pause it, okay? (pauses the tape with the remote.) george: any more grape juice? (gets up and goes to the kitchen. remy moves to the end of the couch where george was sitting.) joe's wife: who is this guy? remy: he's in some book club. joe's wife: and what's he doing here? remy: cheating on his test. (george returns from the kitchen with a glass of grape juice.) george: so, we watching the movie, or are we still talking? (joe's wife shakes her head and goes into the other room. george gestures to remy to move.) okay, c'mon. let's go. remy: what? george: c'mon, you took my seat. remy: it's not your seat. george: i was sitting there, c'mon. remy: you didn't save it. george: i had the arm! joe... joe: what's the difference? george: well, i was very comfortable! i've got my nuts here... remy: it's my couch. george: alright, c'mon, scooch over. (tries to squeeze into the corner seat of the couch and struggles with remy. he spills his glass of grape juice all over the couch in the process.) remy: look! look what you did! you got grape juice all over our couch, you've ruined our couch! (joe slowly walks toward george with his hands on his hips.) george: joe... elaine: oh my god. jerry: you see?! elaine: so, you're gonna get a new couch? jerry: well, i guess i have no choice. elaine: do you want your old couch back? jerry: i was hoping you'd offer. (the intercom buzzes, jerry answers it.) yeah? intercom: it's the movers. jerry: 'kay. (buzzes them in.) elaine: who's that? jerry: your boyfriend, he's taking it out. elaine: no, no, he's not my boyfriend. jerry: why? elaine: take a guess. jerry: oh, really. (carl and another moving guy come in and pick up the couch.) elaine: hi. carl: hi. jerry: hey carl, i also need you to go to elaine's and bring my old couch back. carl: today? jerry: could you? carl: sure. elaine (to jerry): what are you doing with this couch? jerry: george is taking it. elaine: did you tell him it was peed on? jerry: he said he doesn't care, he'll just turn the cushion over. carl: i'm sorry you feel that way, elaine. elaine: yeah, me too. carl: it's just too bad. elaine: yeah. it is. carl: well, i better get this couch back to jerry's. elaine: can i offer you anything to drink? carl (off-camera): yeah, sure. elaine (looking in the fridge): all i've got is grape juice. carl: throw it! carl: the couch! marie (describing holly go-lightly in "breakfast at tiffany's"): she didn't want the constraints of any relationship, that's why she got rid of the cat. the most important thing in holly's life was her independence. george: well, not really. after all, she did get together with george peppard. i mean, fred. marie: george...fred's gay. jerry: i've never been able to figure out why they make these bizarre toilet seats that they have. you know, like those clear lucite ones, with all the, the coins in it? it's a lovely tribute to our past president, by the way. it's not bad enough lincoln got shot in the head, we gotta pull down our pants and sit on him, too. it's just incomprehensible that you would buy a thing like this, you install it on your toilet seat, and this says what about you? "well, i can't afford to just throw money down the toilet, but look how close i am!" jerry: i cannot believe lindsay's still seeing you after that "breakfast at tiffany's" thing. george: i think she finds my stupidity charming. jerry: as we all do. george: yeah, anyway, she's uh, having some kind of a family lunch, i'll swing by after. jerry: oh, so you're gonna meet the mother? george: yeah, i'll zip in, "how do you do?", zip out. she'll love me. jerry: you're good with the mothers. george: y'know, i'm better with the mothers than i am with the daughters. jerry: maybe you should date the mothers. george: well, if i could talk to the mothers and have sex with the daughters, then i'd really have something goin'. jerry: oh, you got something goin'. george: yeah. kramer: (enters apartment) hey. george: hey! (heads toward bathroom) kramer: hey, you got a hammer? jerry: what do you need a hammer for? kramer: well, i got this new poster. 3-d art? computers generate 'em. jerry: oh, yeah! i wanna see that. bring it over. kramer: no, no, i don't have it now. i gotta pick it up at mr. pitt's. elaine was framing a bunch of stuff for him, so she did me a favor. what, you wanna take a ride? jerry: nah, i don't think so. kramer: (shouting to the bathroom door) george, you wanna go for a ride? george: (inside bathroom) nah. kramer: oh, come on! jerry: hey, could you wait until the man finishes? kramer: all right, i've had it with you two. (opens apartment door to leave) jerry: hey, guess what? remember that woman you saw me with the other day? you know, she used to be an olympic gymnast? kramer: a gymnast! jerry: yeah, she's romanian, she won a silver at the '84 olympics. kramer: a gymnast, jerry. think of the flexibility. mmm, that sex'll melt your face. jerry: yeah, well, i think i'm bailing. kramer: (shuts door) "bailing"? jerry: yeah, you know, kramer, there's always a price to pay for just a sexual dalliance. kramer: jerry, you should pay that price. jerry: she's romanian. what am i gonna talk to her about, ceausescu? kramer: ch- oo-... what? george: (emerging from bathroom, buttoning his shirt) a gymnast! i can't believe it, you didn't tell me she was a gymnast. jerry: (watching george buttoning his shirt) what is this? george: what, i'm puttin' my shirt back on. jerry: (stares at george, incredulous) "back on"? what was it doing off? george: i take it off when i go to the, uh, y'know, to the "office". jerry: (laughing) what for? george: well, it frees me up. no encumbrances. jerry: unbuttoned, or all the way off? george: all the way, baby! jerry: of course. kramer: (convulses in pain) yeow! whoa. jerry: what, again? kramer, if you keep getting these attacks, you should see the doctor and have it checked out. kramer: (exiting apartment) yeah, yeah, yeah... jerry: (picks up newspaper, turns to george) you always take the shirt off? george: always. jerry: boy, i tell ya', knowing you is like going out in the jungle. i never know what i'm going to find next, and i'm real scared. mr. pitt: elaine, i need you to proofread this report for my meeting with the poland creek bottled water people. elaine: what meeting? mr. pitt: i told you. i sit on the board of trustees for morgan springs, and we're trying to acquire poland creek. elaine: oh! (tries to take paper) mr. pitt: (pulls away) are you using a fountain pen? elaine: yes? mr. pitt: they smear! under no circumstances is ink to be used in this office. elaine: all right! i'll use a pencil, mr. pitt. kramer: elaine? elaine: come in, come in! kramer: yeah. (enters, points at package) yah, huh? elaine: ah, right there, yeah. kramer: (rips open package) yeah, that's... elaine: kramer, it's... kramer: (holds up framed picture) there she blows! (throws paper around) elaine: kramer, kramer, can you do this at home? i've got, i've got work to do, okay? kramer: oh, these are nice corners, huh? mr. pitt: elaine, did i hear... (sees kramer) oh, this is very odd. kramer: (looking at picture) yeah, it's 3-d art. computers generate 'em. big computers. mr. pitt: yes, i've heard about these. how do they work? kramer: well, you blur your eyes like you're starin' straight through the picture. and you keep your eyes unfocused. and then... (kramer and pitt stare at picture) oh, oh, oh, yeah! mr. pitt: i don't see it. kramer: yeah, it's a spaceship, surrounded by planets, asteroids... mr. pitt: i still don't see it. elaine: okay, kramer, that's enough. mr. pitt has got work to do. kramer: ya' ever dream in 3-d? it's like the boogeyman is comin' right at you. mr. pitt: a spaceship, where? kramer: (pointing) right in here. just keep your eyes unfocused. (convulses in pain) waahh! oh, mama! elaine: kramer, what's wrong? kramer: mama! elaine: kramer, kramer, are you okay? kramer: i think i gotta go to the doctor! (exits) oh, mama! mr. pitt: (still staring at picture) how long does it usually take? mrs. enright: oh, george, it is so nice to finally meet you. and i'm sorry we've kept lindsay so long. lindsay: mother... george: oh, no, no, not at all. no, i have always felt that the most important thing in the world is spending time with family. mrs. enright: oh? are you and your family close? george: (hesitates) very close, yes. almost painfully close. lindsay: mother, i'm going to walk nana and aunt phyllis to the elevator. george, do you mind waiting just one more minute? george: mind? why would i mind? i would love to wait! (shakes hands with nana) nana, nice to see you. ni-ni-ni-ni-nana! (embraces another guest, kisses her) aunt phyllis, always a pleasure. what a pleasure! hey, let's do this again real soon. i had fun, huh? mrs. enright: can i offer you anything to eat? george: oh, no no no, i'm fine. let me help you with these dishes, huh? mrs. enright: oh no, george, you don't have to... george: no, i know i don't have to, i want to. mrs. enright: george, you are such a gentleman. george: i'd argue if i could, mrs. enright. (exits) here we go, all right. mrs. enright: (wide-eyed) oh... george: (spits out mouthful of food) mrs. enright! mrs. enright! elaine: (pointing at 3-d picture) look, there's a spaceship! that is so cool! mr. pitt: where is it? elaine: (pointing) right here. mr. pitt: i'm looking there! elaine: no, no, unfocus. mr. pitt: i am unfocused! elaine: (answering phone) hello? oh, yeah, okay fine. uh, he'll be right down. (to pitt) car's here to pick you up and take you to the meeting. mr. pitt: (still staring at picture) meeting? elaine: yeah, the poland creek merger? mr. pitt: why don't you go for me? elaine: how can i go? mr. pitt: oh, all they're gonna do is read the report. elaine: mr. pitt, i do not think that is such a good idea. mr. pitt: oh, damn this thing! jerry: (trying desperately to make conversation) so, ceausescu. he must've been some dictator. katya: oh yes. he was not shy about dictating. jerry: he, uh, he must've been dictating first thing in the morning. "i want a cup of coffee and a muffin!" katya: and you could not refuse. jerry: no, you'd have to be crazy. katya: he was a very bad dictator. jerry: yes. very bad. very, very bad. jerry: so lemme get this straight you find yourself in the kitchen. you see an clair, in the receptacle. and you think to yourself, "what the hell, i'll just eat some trash." george: no, no. no, no, no. it was not trash! jerry: was it in the trash? george: yes. jerry: then it was trash. george: it wasn't down in, it was sort of on top. jerry: but it was in the cylinder! george: above the rim. jerry: adjacent to refuse, is refuse. george: it was on a magazine! and it still had the doily on. jerry: was it eaten? george: one little bite. jerry: well, that's garbage. george: but i know who took the bite. it was her aunt! jerry: well, you, my friend, have crossed the line that divides man and bum. you are now a bum. jerry: hey! kramer: hey. jerry: what's with you? kramer: i got a stone. jerry: what stone? kramer: a kidney stone. jerry: what is that, anyway? kramer: it's a, it's a stony mineral concretion, formed abnormally in the kidney. and this jagged shard of calcium pushes its way through the ureter into the bladder. it's forced out through the urine! jerry: oh, that's gotta hurt. aronson: our shareholders have given basic approval for the merger, including the stock swap. elaine: ah. the "stock swap". let's swap some stock. (giggles) beck: and if you'll just give this to mr. pitt, and tell him we expect to be in full-scale production by the spring. elaine: all right. (standing up) hey, you guys--what's the name of the new company gonna be? beck: moland spring. elaine: (making a face) "moland"? aronson: yes, we combined morgan and poland. elaine: yeah, i know, but... "moland"? i wouldn't drink anything called "moland". aronson: but it was mr. pitt's idea. elaine: oh! well, ah, what's in a name? i mean, water's water. right? aronson: (to beck) we've got to do something about that name. george: (on phone, as jerry gestures beside him) no, lindsay, it was not in the garbage. it was above the garbage. hovering. like an angel. of course i know your aunt bit it. i kissed her goodbye. listen, can i tell you something else? in my family, we used to eat out of the garbage all the time. (jerry makes a face) it was no big thing. that's right. oh, okay. buh-bye. (hangs up phone) i'm back in, she gave me a second chance. jerry: good for you. george: yes, good for me! jerry: y'know what you should do now? get her some flowers, smooth it out. george: yes, flowers. i will get her flowers, i will go to the florist! kramer: (enters apartment, holding up videotape) behold! the games of the '84 olympiad! katya's silver medal performance! (inserts tape into vcr, sets up tv) jerry: kramer, are you still on this? i've seen gymnasts. i know what they do. it's not going to make any difference. kramer: jerry, what is your problem? jerry: kramer, y'know, guys like you, with no conscience, don't know what it's like for guys like me. i'm in the unfortunate position of having to consider people's feelings. kramer: all right, jerry--are you familiar with the kama sutra? jerry: no. kramer: tantric yoga? jerry: no. kramer: jerry, you stand on the threshold to the magical world of sensual delights that most men dare not dream of! jerry: boy, you can really talk some trash. (to george) i guess that's better than eating it. kramer: all right, all right, why don't we just watch the tape? (starts playback) jerry: all right. george: did you pass your stone yet? kramer: not yet. but the suspense is killing me. jerry: (pointing at tv) hey, that's her! kramer: oh yeah. oh yeah, that's her. (feminine grunts and sighs can be heard as they watch the tape) look at the height, jerry, the extension! now watch the tuck. handstand, half-turn, giant into a straddle, back into another handstand. nice kip. reverse hecht. oh, nice leg extension, good form! now, here comes the big dismount. look at the rotation, full in, double back, and she sticks the landing! (gets up to leave as george and jerry continue to watch, mouths agape) perhaps you'd like to keep the tape? (silence) well, i'll take that as a yes. jerry: (smiling and excited) well, here we are. katya: yes. we are here. jerry: how did you stay on that beam like that? (holds up hand) i mean, it's only this wide! katya: i can balance myself in any position. katya: it is amazing after years of training how one can contort one's body. of course, it is only useful in gymnastics. jerry: oh boy... jerry: i couldn't believe it. uh, i mean i thought i was entering a "magical world" of sensual delights, but it was just so ordinary. i mean, there was nothing gymnastic about it. elaine: well, what did you think she was gonna do? jerry: well, you know. i mean... i dunno. elaine: no, what? jerry: well, obviously i prefer not to mention any, you know... elaine: what did you think, she was going to take some of that chalk and... jerry: you see, now i really don't want to get into this, any kind of specifics... elaine: oh, come on. one thing? one thing! what? jerry: well... frankly, i thought, you know, i was gonna kinda' be like the apparatus. kramer: you mean like the uneven parallel bars? jerry: see, again, i really don't feel that... elaine: the balance beam? jerry: could we stop? elaine: (gasps in mock surprise) not the pommel horse? jerry: all right. let's just drop it. jerry: so lemme ask you this how long would you say i have to put in now because of, you know, last night. elaine: i dunno, at least three weeks. jerry: (sarcastic) oh, great. elaine: jerry, that is such small potatoes. i think that i may have single-handedly put the kibosh on the big water merger. jerry: between poland and morgan? elaine: yeah. started a big name controversy. jerry: kramer! the stone! jerry: what happened, did you pass the stone? kramer: (off-screen) no, i tried to do a reverse hecht off my couch and i didn't make it. george: (singing as he exits florist with bouquet and a cup of coffee) "...tootsie, good-bye. too-too, tootsie..." (takes a drink, makes a face, shouts back at shop) you call this coffee? (dumps out coffee behind him, accidentally hitting a parked car's windshield) man in car: hey! what the hell was that?! george: i'm sorry! i'm terribly sorry! i- i- man in car: clean that up! george: oh, sure. of course. (looks for place to set down flowers) um, uh, could you hold these? for just a second, just a second. (grabs newspapers from trash bin, begins wiping windshield) here you go, now don't worry about a thing. it's gonna be fine. here we go. look at this shine. mrs. enright: (sees george cleaning car windshield, looks appalled) george: look at this sparkle. (looks up, sees lindsay's mother) mrs. enright! (runs after her) mrs. enright! mrs. enright! george: (on phone, as jerry gestures beside him) no, lindsay, i had accidentally spilled coffee on the gentleman's windshield. why would i do that? i have a job! well, did she see a squeegee? well, you're not going to make a dime without a squeegee. that's right, that's right, just tell your mother it was all a big misunderstanding. you won't regret it. okay, i'll see you later. buh-bye. (hangs up) jerry: strike two! george: you think i'm going down? jerry: you're behind in the count. george: i know. kramer: (enters apartment, points at jerry) hey, what are you doing later? jerry: i'm going out with katya, thanks to you. kramer: well, maybe you should try again. you know what happens the first time people are a little shy, a little reticent. jerry: if i do it again, that extends my payment book another two weeks. kramer: all right, where you going? jerry: we're going to the circus. one of her old olympic teammates is an acrobat. i don't even feel like going out. kramer: well, jerry, it's your obligation. c'mon. jerry: yeah, well, y'know what? if i gotta go, and spend time with this girl, then you're coming with me, dr. cyclops! kramer: no, no, no, i don't wanna go to the circus, jerry. jerry: yeah, well you're going. kramer: yeah, but i'm afraid of clowns! mr. pitt: (in polo outfit, complete with jacket and high boots) i didn't send you over there to complain about the name. elaine: well, i couldn't help it. "moland spring"? mr. pitt: i like the name "moland". i picked it out. after all those months of negotiating! elaine: well, i'm so sorry! i- mr. pitt: well, i'm going riding. i haven't been on jenny for three days, all because of this blasted painting. (phone rings) elaine? elaine: oh, sorry. (picks up phone) hello? mr. pitt: (walks by 3-d poster, stops) wait a minute! wait a minute. ah! katya: so, jerry, you're enjoying the circus? jerry: "greatest show on earth"! katya: my father used to take me to the circus. when the elephants came by, he would scream curses at them, blaming them for all the ills of society. jerry: well, they certainly take up a lot of space. katya: ah, misha! misha: katya! katya: misha, this is jerry. misha: ah, yes. the "co-me-dian", eh? (speaks in romanian to katya) katya: (laughs, replies in romanian while pointing at jerry) elaine: (on phone) oh, yes, yes i'll tell him. yes, thank you. um, um hold on. (to pitt) mr. pitt! mr. pitt: (staring at 3-d poster) i think i'm on to something! elaine: mr. pitt! the board of directors is on the phone. they've called an emergency meeting. they want you to be there to discuss the merger! mr. pitt: you said keep your eyes out of focus, which is misleading. you want deep focus! elaine: (on phone) yes, hi. okay, fine, yeah, hold on just a second. lemme just... (reaches into purse) yeah, i've got it... (pulls out both hands completely covered in black ink) oh! oh! yeah, yeah, he'll be there. (drops phone, rushes to pitt) mr. pitt, you have got to stop staring at that poster! mr. pitt: i see something that could be a spaceship. is it round? is it pointy? elaine: (grabs poster, smashes it) no, you don't see it, and you're never going to see it! (grabs pitt by the lapels, getting ink all over his jacket) mr. pitt, you have to meet with the shareholders, you have to leave now. do you hear me? do you hear me?! mr. pitt: hmm, what's happened to me? (straightens lapels) when's the meeting? elaine: in about twenty minutes. mr. pitt: oh! (puts finger to face, smearing ink on his upper lip which now resembles an "adolph hitler"-style moustache) do i have time to change? elaine: um, no. mr. pitt: well, excuse me, i'd better get straight over there. elaine: uh, mr. pitt... mr. pitt: yes? elaine: um, there's a just... (points at her own upper lip) mr. pitt: (sees elaine's hands covered in ink) is that ink? elaine: no? george: well, here we are. lindsay: do you want to come in? my mother's having a little party. george: maybe i could just use the bathroom. lindsay: sure. announcer: (voiceover) ladies and gentlemen, could i direct your attention to the center ring, where the incomparable misha will balance ten stories above the circus floor on a wire no wider than a human thumb. misha: it is time. jerry: well, break a leg. jerry: eh, show biz... announcer: ladies and gentlemen, the incomparable misha! jerry: boy, those capes are really coming back. party guest: (exits bathroom, finds george waiting) oh, sorry i took so long. they've got one of those 3-d art posters in there. (wipes eyes) it's mesmerizing. jerry: what is that sound? katya: (covering ears) it is horrible! george: whew! anybody see that poster in there? that is weird, wild stuff, huh? whew! mr. pitt: i have been accused of wrong-doing. but these false accusations will not deter us. we will annex poland by the spring, at any cost! and... our stock will rise high! (raises hand) katya: he'll be all right. i must go and be with misha now. i don't want you to come with me. jerry: oh, why not? katya: it has been three days since our night together. misha said that was all the time i needed to put in. jerry: really? katya: in my country, they speak of a man so virile, so potent, that to spend a night with such a man is to enter a world of such sensual delights most women dare not dream of. this man is known as the "comedian". you may tell jokes, mr. jerry seinfeld, but you are no comedian. (walks off) waitress: o.k. cowboys, (taps pencil on her pad) what'll you have? jerry: ill have the, ah, turkey club without the bacon. george: and ah, ill have the bacon club without the turkey. (raises eyebrows) waitress: george, don't make me get tough with you. george: why, you think you can, beat me up? waitress: you wouldn't want me to mess up the beautiful face of yours. george: huh, nggh [snort] stop. (flirting with her he playfully hits her arm with the menu, then flicks it into the air) waitress: you don't want bacon ill surprise you. (she turns and walks away) george: wow, is she not terrific? jerry: she does have a way. george: you think she thinks i have a beautiful face, or is she just saying that? jerry: well they do work on tips. george: george, don't make me get tough with you. whu, hu, hu, hu huuuu (raises arms) who says that? she is really cool. what do you think? you think she likes me? jerry: ah, i should have got the egg white omelet. george: why should she like me? who am i? huh, there's a million people to like. jerry: the omelet. damn. george: maybe she could like me? is it that far fetched? maybe she sees something? is it possible? jerry: no. george: no. jerry: not possible. george: not possible. elaine: heyyyyyy (leaning in, very friendly and happy) george: hey elaine. jerry: lannie, how was the trip? george: what trip? you were gone? elaine: i went to england ... with mr. pitt, for 5 days. george: hunh, pph (raises hands slightly, in amazement) how was it? elaine: actually it was great. i met an englishman, and we really, hit it off. jerry: yeah, well that relationships really got a lot of potential. george: he he (laughs) elaine: yeah well jerome, i, happen to be flying him in on my frequent flyer miles. george: flying him in? how longs he staying for? elaine: it's an open ended ticket. he can return any time he wants. george: all this in 5 days. hmm. jerry: oh no, it's kenny bania. george: who's he? jerry: (quietly) oh, he's this awful comedian. bania: hey jerry. jerry: hey kenny. (with some fake enthusiasm, just to be polite) jerry: elaine, george (introducing them to bania with less enthusiasm) elaine: hi. (she flips her hair) george: hi (raises his left hand in a slight gesture to say hi) bania: hi. (to elaine) jerry: how's it going? bania: great. i've been working out. went from a size 40, to a 42. jerry: no kidding. bania: yeah, im huge (ducks his head into his right shoulder with false modesty) well, ill leave you guys alone. (raps his knuckle twice on the table, turns and walks away) jerry: all right. elaine: o.k. thanks. bania: oh. jerry, you know what just hit me? i was thinking -- what size suit are you? jerry: ahh, im a 40. why? bania: i just got a brand new armani suit -- doesn't fit me anymore. you want it? jerry: well i don't know if i ... bania: oh come on. why should it just sit in the closet? elaine: an armani suit? george: take the suit. jerry: well ... ok, i guess (voice trailing off) bania: you gonna be home later? jerry: yeah. bania: ill drop it off. (raps his knuckle twice on the table again, turns and walks away) george: heh heh heh hey, new suit (raises coffee cup as a salute / toast) jerry: yeah, yeah, lucky me. (sips coffee) waitress: (to george) here i personally made you a cold chicken sandwich. it's not even on the menu. george: (takes a large bite - with his mouth still full, his speech is muffled) oh, this is fabulous. george: boy, she is nice. i like her, i like her jerry. she's got substance. she oozes substance. jerry: well, go in there and talk to her. she's not going to put em on the glass. george: you mean a walk back in? that's the toughest move in the business. you're sending me out into no-mans-land, and if i get shot down i have to crawl all the way back. well i can't do it! i can't do it, i tell ya! jerry: pull yourself together. your going in there soldier! that's an order! jerry: get in there. (he pushes george in the direction of the restaurant) kramer: hey. (walking over to jerry, who sits at the table reading the newspaper) jerry: hey. kramer: listen, i need you to do me a favor. jerry: what? kramer: well, i need you to help me move my refrigerator. jerry: why? kramer: cause im getting rid of it. jerry: yeah? (speaking loudly so the visitor can hear him through the intercom) bania: [it's k.b., i have the suit] jerry: all right, come on up (jerry puts his head down - he's not looking forward to kenny bania) kramer: (claps hands) so ... jerry: well, well, why are you getting rid of your refrigerator? (he gets up from the table and carries a dish into the kitchen) kramer: well after that kidney stone i only want fresh food. it's gotta be fresh. im not eating any more stored food. plus you know i want the space. jerry: what for? kramer: well i could put a, dresser in there. i could get dressed while im making breakfast. bania: hey (holds the armani suit up) here you go. (walks into the apt.) jerry: yeah. bania: you didnt think i was really going to give you a suit, did you? kramer: what, you're giving him this suit? bania: that's right, and it's an armani. kramer: armani? hey, armani jerry. (kramer takes the suit and looks it over) jerry: yes, yes, i heard. kramer: come on, try it on. jerry: no, it's ok. kramer: come on, i want to see how it fits. jerry: all right, all right. (trying on the suit jacket) kramer: there you go. jerry: ok, yeah all right. kramer: oh boy, that looks great. i can't believe you're giving him this. bania: i don't even want anything for it. kramer: he's very generous, isn't he? jerry: yes, yes, he is. bania: ill tell you what -- you can take me out to dinner sometime. jerry: dinner? bania: yeah. you buy me a meal -- you can't get a better deal than that (pats jerry on the shoulder) kramer: no, you'll never get a better deal than that. bania: all right. ill leave you alone. (turns and walks out the door) jerry: yeah, ill see you. kramer: all right, ooh look at that armani, huh, yeah. jerry: yeah, that's a deal. that's a terrible deal. i don't want to go out to dinner with him. id rather make my own suit. george: i did it! it's all done! jerry: hey. (raises hands into fists of encouragement) george: i did it. hunh, we're going out as soon as she gets off of work and it'll still be daytime. you know i, im much better in the daytime then i am at night. it's less pressure. jerry: i love the day date. no wine, no shower. george: there ya go. elaine: so the trip was good? simon: yes (nice english accent) apart from that, dreadful airline food. it tends to reek havoc with my stomach. elaine: you know i, i have to say, i've never admitted this to anyone, but um, i kind of like airline food. (leans in and laughs, flirting with him) simon: that's probably because of ... [muttering] elaine: what? simon: what? elaine: yeah, what? simon: [sighs] elaine: what? simon: where i come from, we don't say what? it's proper to say pardon? elaine: huh. (muttering) this should be interesting. simon: pardon? elaine: nothing. kelly: so then about a year ago i started selling, these funky little hair clips. it's going pretty good. i make them in my apartment. kelly: im just doing this waitress thing for a while, because i wanted to go to europe this summer george: (quietly) ahh. kelly: and i could use a few extra ... careful george: oh. it's just horse manure (huh huh - laughs, he points back at the horse that walked by) horse manure's not that bad. i don't even mind the word manure. you know, it's, it's nure, which is good. and a ma in front of it. ma-nure. i mean when you consider the other choices, manure is actually pretty refreshing. kelly: that's a nice watch george. george: yeah. kelly: you know, my boyfriend has the same one. george: huh. really? kelly: yeah, he loves watches. he's a real watch freak. george: well, how about that? kelly: ooh look out. (pointing at the ground - squishing sound) you stepped right in it. george: yes, i sure did. jerry: so you just pretended it didnt bother you? george: what is that, boyfriend? i don't understand that. what, what does she think i asked her out for? jerry: boy, it's the way they just slip it in there too. george: yeah, yeah, like it's just part of the conversation. oh my boyfriend really likes watches. he's a real watch freak. we-e-ell that's fabulous. (snaps fingers in the air a couple of times) jerry: well let me ask you this. what exactly did you say when you asked her out? george: i said, would you like to go for a walk or something. jerry: oh, a walk, well -- george: or something. i said, or something! jerry: or something. yeah, that's a date. george: (snaps fingers) there you go. jerry: course you know there is always the possibility, that she called an audible. george: what do you mean? jerry: well she got up to the line of scrimmage, didnt like the looks of the defense and changed the play. george: i think things were going ok. we were having a nice conversation. jerry: uh huh. george: i mentioned how i liked horse manure. jerry: you did? george: yeah. jerry: yeah. you said you liked horse manure. george: yeah. jerry: (quietly) mm-hm. george: you know, about how when you break it down, it's really a very positive thing. you know, you have a nure, with a ma in front of it. ma-nure. iz not bad. jerry: and it was around this point that she mentioned the boyfriend? george: yeah. (jerry nodding) ... oh, you think because of what i said about the manure. i wa, wa, was just saying how it takes a negative thing, and puts it on a positive spin on it. jerry: im just saying there's a chance she may not have been enamored with your thoughts and feelings on manure. george: so you don't think she really has a boyfriend? jerry: my honest opinion, i think she made it up. george: well then she's just a liar, isn't she? kramer: hey. jerry: aaa. well ... you want something to eat, don't you? kramer: ahh, no, no, no. you got me all wrong buddy. i am loving this no refrigerator. you know what i discovered? i really like depriving myself of things. it's fun. very monastic. george: well what do you eat? kramer: it's all fresh. fresh fish, fresh foul, fresh fruit. i buy it, i omniga nominga, i eat it. jerry: well im glad it's working out. kramer: oh yeah, it's working out. and i got a date with that waitress who works at reggies. jerry: boy, if i could meet a hostess, we could open up our own place. kramer: ha ha ha ha. yeah, well, ill tell you, she's a full-figured gal. jerry: is she? kramer: oh you better believe it buddy. hey george, we could double sometime. george: yeah, yeah, yeah we could. you know, ah, kramer, the next time you talk to her, find out if she knows kelly, from monk's. i wanna know if she really has a boyfriend. kramer: all right it's done. jerry: hello? bania: hi, jerry. it's kenny. jerry: oh, hi. bania: you know, i was thinking if you're not busy, maybe i can get my meal today? jerry: yeah, you wanna get that meal, don't you? bania: how about mendys, ooh, ever been there? jerry: no i haven't? bania: ah youre gonna love it. ill meet you there around 700. jerry: all right. bania: ahh. jerry: (hangs up the phone) yeah, i really needed that suit. bania: i start off with curls. that's good for the bicep. (motions with 2 fingers along his right bicep) i do 10 reps, 2 sets. jerry: mm. that's fantastic. (he could care less) bania: you work out with weights? jerry: no i don't. bania: you should. jerry: why? bania: you worn the suit yet? jerry: no, not yet. waiter: have you decided? bania: oh, get the swordfish. best swordfish in the city. the best, jerry. jerry: ill have the salmon. waiter: and you? bania: ahh, you know what i think. im just going to have soup. yeah, ill save the meal for another time. jerry: another time? what other time? bania: i had a hot dog earlier. im not that hungry. jerry: no, no, bania, no. this is the dinner. the soup counts. bania: soup's not a meal. you're supposed to buy me a meal. jerry: im not stopping you from eating. go ahead and eat. get anything you want. bania: but i don't want anything but soup. jerry: then that's the meal. bania: but i had the hot dog. jerry: i didnt tell you to have a hot dog. who told you to have a hot dog? bania: hey, i give you a brand-new armani suit, and you won't even buy me a meal? jerry: all right, fine. get the soup! jerry: so he just gets soup. he wants to save the meal. so now i got to do it all over again. elaine: what kind of soup did he get? jerry: i don't know? consomm or something. elaine: consomm, hmm. jerry: what? elaine: well, that's not really a meal jerry. i mean, if he had gotten, chicken gumbo, or matzah ball, even mushroom barley. then i would agree with you. those are very hardy soups. jerry: elaine you're missing the whole point. elaine: what? jerry: the meal is the act of sitting down with him. it doesn't matter what you get, as long as he's sitting in that restaurant, its a meal. elaine: was it a cup or a bowl? jerry: you see -- ah, uh ... elaine: im just curious. jerry: a bowl, ok? elaine: did he crumble any crackers in it? elaine: (reiterating the question) did he crumble, any crackers in it? jerry: as a mater of fact, he did. elaine: oh, well. crackers in a bowl. that -- that could be a meal. jerry: it's like im talking to my aunt sylvia here. elaine: oh, hi simon. this is jerry. simon: hello. (to jerry, politely -- then quickly turns to elaine) elaine, do you have any cash on you? elaine: um, yeah in my purse. simon: no. there was only six dollars. jerry: well, i have some money. what do you need? (pulls out some bills) simon: well, 20 should cover me. (snatches the cash) thanks mate. (he walks down the stairs to the sidewalk) elaine: where you going? simon: (starts to turn back to elaine) just visiting. elaine: oh, ok, see you later. simon: i won't be back for dinner. (turns and walks off down the street) elaine: (english accent) pardon? jerry: so is she working? is she here? george: yeah, yeah, she's here. jerry: have you said anything to her? george: no, but im very uncomfortable. jerry: are you going to say anything? george: there she is. (waiving his arms quickly above the table - to nix the conversation) no no no no no no. kelly: hello george: hello. kelly: well, what's it going to be? george: what's it gonna be? kelly: yes. what'll you have? are you eating? it's in that vein. george: ill eh, ill just have a bowl of chili. jerry: ill have an egg white omelet. george: what's it gonna be? ... you hear that? jerry: yeah, that was bad. george: did you feel that tension? we use to have banter - (puts menu back with frustration) - there's no more banter. jerry: oh, no, it's kenny. slide out so he can't sit down. (george & jerry each slide to the end of their booth seats) bania: hey. jerry: hey. bania: you worn the suit yet? jerry: actually, i did. i put it on last night and slept in it. bania: you did? jerry: ... oh, im joking. bania: oh! ha ha ha ha ha ha ha ha. can i squeeze in? (to george) george: sure you can. kelly: can i take your order? bania: what kind of soup do you have? jerry: why don't you get a sandwich? bania: ok, ill have tomato soup and ah, tuna on toast. jerry: ok ... (nodding his head up and down) this is it cha know jerry: this is the meal ... so stock up buddy boy. bania: what are you talking about? this isn't a meal. jerry: yes it is. soup and sandwich. that is a meal. bania: you're supposed to buy me dinner in a nice restaurant, like mendys. jerry: i tried to do that. bania: this is lunch in a coffee shop jerry: doesn't matter, this is it. this completes the transaction. bania: ah, soup and a sandwich for a brand-new armani suit. is that any kind of gesture? (turns to george) bania: im really not comfortable ... kramer: (to george) hey, i just spoke to ah, hilde about your friend. george: yeah. kramer: she doesn't have a boyfriend. she made it up. jerry: hi. elaine: hi. jerry: where's simon? elaine: oh, he'll be right up. he's just getting some beer. and im not expecting ... any change. (leans forward as she brings her hands together in front of her, then sits on the couch) jerry: when's he leaving? (putting some items into the refrigerator) elaine: about 2 days. although he's hinting at how he'd like to stay. fortunately he has no money, and no prospects. (she smiles) simon: hey mate. fancy a beer? jerry: ah, no thanks. jerry: (on the phone) hello? no, im sorry bania ... im not going over this again. well who told you to order soup? ... no! there's no dinner. there's not going to be any dinner. you've had a sandwich and 2 bowls of soup and that's it. good-bye. jerry: hey, what size suit are you? simon: 40. jerry: 40. perfect. brand-new armani suit, you want it? simon: absolutely. jerry: great, its yours. i can't stand the sight of it. elaine, heres the car keys. (tosses her the keys) elaine: thanks jerry: yo? bania: listen jerry, i've been doing some thinking. i want my suit back. jerry: i don't have your suit. i gave it away. bania: well it's my suit. jerry: well it's gone. im sorry. good-bye bania. kramer: hey. jerry: hey. kramer: um, yeah. (glances around the apt.) oh, uh ... well, how's everything? (clap) jerry: ok. kramer: good, ah, (clap) what's going on? jerry: nothing. kramer: really. jerry: you want food, don't cha? (nodding his head up and down) kramer: it's not for me. it's for hilde -- the waitress i was telling you about. she's hungry, she wants food. if i go back in there without any food ... there's gonna be trouble. (his voice gets really high pitched on his last sentence) jerry: all right, go ahead kramer: thanks buddy. (goes over to the fridge and pulls out a few things) hilde: did you find anything! kramer: uh, yeah, ah ... kramer: there's a few things in here, ah, peanut butter, cheese, yeah ... hilde: cheese is good. yeah, what kind? kramer: uh, swiss. hilde: all right, it'll have to do. come on. jerry: what are we doing out here? aren't we going to go in and eat? george: i can't go in there. im too uncomfortable. jerry: oh, w-what are you saying? so we're not going to go in there anymore? elaine: hey, what are you doing out here? jerry: we can't eat here anymore, because he took a waitress out for a walk. george: what's the difference? let's go to reggies. elaine: reggies? i can't eat anything there. george: it's the same menu. elaine: there's no big salad. george: they'll make you a big salad. what do you think, they're the only one's that make a big salad? elaine: all right. let's go, to reggies. jerry: so what's going on with simon? did he leave? elaine: ahh ... wait till you hear this. elaine: so simon picks this woman up, right in front of me. jerry: look at this. they make a point of saying on the menu, no egg white omelets. look at that. george: so what! have a yoke! it won't kill you. hilde: (walks up to the table) hello. jerry: oh, hi hilde. can i get an egg white omelet? hilde: did you read the menu? jerry: all right, just give me a western. (unhappy) elaine: how bout a big salad? hilde: a big salad? elaine: (to george) ya see? george: just tell her whatcha want, they'll make it for ya. elaine: it's a salad, only bigger, with lots of stuff in it. hilde: i can bring you 2 small salads. elaine: could you put it in a big bowl? hilde: we don't have big bowls. elaine: all right. just give me a cup of decaf. hilde: we have sanka. george: i mean, it's not fair. i've been going there for 7 years. she's been there 3 weeks. jerry: not fair. george: if anyone should be forced to leave that place, it should be her! jerry: she's on your turf. george: if only she could get fired. is there any way that could happen? i mean i know how to get myself fired. jerry: you're the best. george: well ...... but how do i get someone else fired? jerry: well as i see it, you've got to apply the same principles that get you fired, but redirected, outwardly. kramer: h-hey. she's hungry jerry. jerry: well, there's nothing left. there's no food. kramer: no food? well you gotta have something -- (rummages through jerry's cupboards and refrigerator) -- i can't go back in there with no food. she's expecting something jerry. you don't know what she's like when that blood sugar drops. hilde: (from kramer's apartment) food! kramer: there, you see. she's already in a bad mood. she just got fired. jerry: why'd she get fired? kramer: oh, because i called over there a couple of times and the manager didnt like it. elaine: so, simon is definitely going back now. he's meeting me here to return my keys. jerry: boy, he's a real bounder, isn't he? elaine: yes. he's one of those bounders. kelly: egg white omelet and big salad. elaine: ahhh. thank you. kelly: i just wanted you guys know that friday's my last day. bloomingdales ordered a bunch of my clips, thank god, i don't have to do this any more. (turns and walks away) elaine: ah (hu ha - small laugh) bania: hey jerry, where's my suit? jerry: i don't have it. you want half my omelet? (holds his omelet plate up to bania) monk's manager: (on the phone, we assume it's george calling) i told you, she's busy. she can't come to the phone now! (hangs up) monk's manager: you better tell your boyfriend to stop calling here. kelly: oh he's not my boyfriend. it's that bald guy with the glasses, who's always here with them. he's trying to get me in trouble. monk's manager: hey! yeah. i got a message for you. you tell your friend george, that the next time i see him around here, im going to turn him into my own, personal, hand-puppet. simon: well, hello. here you are as promised. you see, im a man of my word. (drops keys into elaine's extended palm) elaine: when are you leaving? simon: elaine, are you trying to get rid of me? aha ha ha ha ha ha ha. i was supposed to leave tomorrow, but all of a sudden, i've been set up with a job interview that might enable me to extend my visit indefinitely. and it is all due, to this suit. how do i look? im a shoe-in aren't i. thanks again love. (touches the table, turns and walks to the exit) elaine: (turns towards the lunch counter) hey kenny. you still want to get that suit back? bania: (leans backwards from the counter) yeah! elaine: there it goes. (pointing at simon walking out the door) bania: hey! hey! (he runs out the door after simon; from outside) come here you! simon: (from outside monk's) what are you doing? unhand me! bania: (from outside monk's) take it off! car salesman: george, are you sure i can't show you any other cars? george: i don't think so, vic. i've done my homework. '89 volvo, that's the car for me, it's the one i want. salesman: i got a lebaron convertible right here. george (chuckles): n.i. not interested. salesman: it's got a few more miles on it, but the previous owner was john voight. george (suddenly interested): jon voight? jerry: okay, tim. you're welcome. (hangs up.) elaine: was that tim whatley? jerry: yes, it was. he wanted your address - you, my friend, are going to be invited to his night-before-thanksgiving party. (elaine raises her hands triumphantly, then gleefully struts her way to the kitchen.) you know, he's got that great apartment on 77th street, and they overlook where they inflate all those huge balloons for the macy's thankgiving day parade? elaine: i have always had a big crush on tim whatley. why can't he ask me out? (punctuates this by shoving jerry.) jerry: oh, he's a dentist. you don't want to go out with a dentist. elaine: why? jerry: he'll always be criticizing your brushing technique, it'll drive you crazy. (mimics brushing his teeth) away from the gums... (the door opens a little, george jangles the keys to his new car at jerry and elaine, then enters.) jerry: uh - new car! elaine: ohhh! jerry: hey! did you get the volvo? george: no, i decided to go with an '89 lebaron. elaine: a lebaron? jerry: i thought consumer said volvo was the car. george: what consumer? i'm the consumer. jerry: alright. seems like...a strange choice. george: well, maybe so...but it was good enough for mr. jon voight. elaine: jon voight? the actor? george (boasting): that's right. he just happened to be the previous owner of the vehicle. jerry: you bought a car because it belonged to jon voight? george (defensive): no, no... jerry: i think yes, yes. you like the idea of telling people you're driving jon voight's car. george: alright, maybe i do. so what. elaine: i've never even seen him in a car. i mean, look at his movies. no cars. deliverance - canoe. midnight cowboy - boots. runaway train...runaway train. (kramer enters.) kramer: hey. jerry: hey. kramer: jerry, you know that shoe repair place at the end of the block? well, if they don't get some business, they're gonna have to shut down and make way for one of those gourmet coffee or cookie stores. elaine: i like coffee. george: i like (imitates kramer) "cookies." kramer: yeah, of course you do. and do you know why? because you're a bunch of yuppies. it's your go-go corporate takeover lifestyles that are driving out these mom and pop stores and destroying the fabric of this neighborhood. george: well, what's so great about a mom and pop store? let me tell you something. if my mom and pop ran a store, i wouldn't shop there. kramer: hey, bogambo - they've been in the neighborhood for 48 years. now, come on, jerry. you've gotta have a pair of shoes in need of a cobblin.' jerry: i really don't wear the kind of shoes that have to be cobbled. kramer: well, what about sneakers? you know, they'll clean 'em. they do complete detailing. jerry: alright, take 'em. kramer (happily): yeah-yah. pop: kramer, without you, we'd be out of business. kramer: well you know, these sneakers, they belong to my neighbor, jerry seinfeld? the comedian. mom: so many sneakers! kramer: well, he's got a peter pan complex. pop: they'll be ready a week from thursday. kramer: oh, well, no rush. (wipes his nose) uh oh. mom: what's the matter? kramer: oh, i keep getting these nosebleeds. mom: oh, lie down, and put your head back. kramer: yeah. (lies on the couch and cracks the back of his head against the armrest.) hey, what's with your ceiling? (mom and pop look up.) pop: what? kramer (stuffing tissue up his nose): well, you got wires sticking out every which way. that looks dangerous, you should call the electrician. pop: you know, in the 48 years we've been here, i don't think we've ever called an electrician. kramer: yeah well, you should. this place could blow any minute. mr. pitt: elaine? elaine: yes, mr. pitt? mr. pitt: have you gotten all the salt off those pretzels yet? elaine: no, i'm still working on it. mr. pitt: what in blazes are you listening to? elaine: artie shaw. "honeysuckle jump." (the song ends.) dj on radio: that was artie shaw, "honeysuckle jump." mr. pitt: elaine! how did you know that? elaine: oh, my father used have a huge collection of big band records. dj on radio: congratulations to our listener wayne hopper for identifying it. and by doing so, he becomes our seventh person to land the wfbb-sponsored woody woodpecker balloon in the macy's thanksgiving day parade. (mr. pitt hears this and is intrigued; mouths the words "woody woodpecker.") there are only three spots left. we're going to take a little break now; when we come back, you'll have three more chances to win a spot holding a rope under woody woodpecker. mr. pitt (to elaine, excited): could you identify the next song? could you? could you? elaine: mr. pitt, why would you want to hold onto the ropes on the woody woodpecker balloon? mr. pitt: my father was a stern man. he forbad us to participate in any activities that he thought were associated with the common man. the thanksgiving day parade was first on the list. elaine: oh. alright, i'll do the best i can. (turns up the radio.) dj on radio: alright, here we go for the next spot under the balloon. if you know the name of this song, call 555-band. (the music starts. elaine listens intently.) mr. pitt (impatiently): well, elaine? do you know it? what song is it? elaine: will you shut up? i can't hear! mr. pitt: i'm sorry! elaine: oh! i've got it! it's "next stop pottersville"! (grabs the phone to call it in.) mr. pitt (overjoyed): goody! yes! yes! yes! (dances back and forth, elated) next stop pottersville, next stop pottersville! you are a genius! george: you are gonna love this car. even if you don't like jon voight. jerry: i like jon voight. just seems like kind've a strange reason to buy a car, because he might have driven it. george: what do you mean "might"? you don't think he really owned this car? jerry: i don't know. george: well, why would the guy make up something like that? of all the names he could pick, why settle on jon voight? jerry: don't you see, that's the genius of it. if he had said liam neeson, you'd know he's making it up. george: neeson? how are you comparing liam neeson with jon voight? jerry, we're talking about joe buck. if you can play joe buck, oskar schindler's a cake walk. (opens the car door for jerry, jerry's about to get in.) jerry: oh, look at this, i stepped in gum. george: whoa, whoa, you're not getting in my car with gummy shoes. jerry (shuts the car door): alright, i'll change my shoes. (heads back to his apartment. george follows.) george (unimpressed): liam neeson. you know, he's not american. jerry: let me get a clean pair. (goes into his room. george strides over to the window.) george (singing): everybody's talkin' at me...i can't hear a word they're sayin'...just drivin' around in jon voight's car... jerry (yelling from his room): kramer! (we hear kramer's door slam open and shut. kramer enters. jerry comes out of his room.) hey! where's all my sneakers? kramer: you said take 'em. jerry: not all of 'em! kramer: well, obviously there was a miscommunication. jerry: obviously. so what am i supposed to wear? kramer: jerry, i left you a pair right here...(goes into jerry's room and comes out with a pair of cowboy boots.) c'mon. there, put on those boots. jerry: i can't wear these! kramer: well, why not? jerry: they're uncomfortable. kramer: c'mon here, try 'em on. (jerry sits down and puts the boots on.) george: where did you get those? jerry: i worked a club in dallas one time and they couldn't afford to pay me so they gave me these. oh, i can't wear these! (stands up.) they look ridiculous! kramer: ah, you look like a cowboy! huh? jerry: but i don't wanna be a cowboy! kramer: oh, stop it. you know that friend of yours, tim the dentist? i got an invitation to his thanksgiving eve party. george: yeah, i got one too. kramer: yeah? jerry: oh yeah? huh. george: what? jerry: no, nothing. george: no, what is it? jerry: no, it's just that i, uh...didn't get one. george: you didn't get one? jerry: ah, but he called me up and he asked for yours and elaine's addresses, i'm sure that means i'm invited. kramer: not necessarily. jerry: hey, why would you call someone up and ask them for two addresses if you're not invited to the party? george (mocking jerry): that's the genius of it. jerry (picks up the phone): i'm callin' elaine. see if she can find out anything from tim whatley. george (to kramer): hey. i got jon voight's lebaron. (jingles the keys.) kramer (impressed): boss! pop: four thousand dollars? we can't afford that! electrician: well i'm afraid you're gonna have to do something about it, because it's in violation of the building code. otherwise, they're gonna close you up. pop: but what if we can't pay for it? electrician: then i have to report you. otherwise, i lose my license. sorry. (exits.) pop: 48 years, mom! and now we have to close! all because of that idiot and his bloody nose! (kramer enters.) kramer: afternoon, mom! afternoon, pop. you know you got a crack in the sidewalk out there? now, you oughta get that fixed. george: so? jerry: c'mon, put the top up, it's november! george: i feel alive, jerry. jerry: let's check out the glove box. (opens the glove compartment, takes out a pencil.) ah. pencil. george: hey...you don't think...sure, that's jon voight's pencil! jerry: with jon voight's teeth marks. (looks at the owner's manual.) owner's manual...you know what? this car was owned by jon voight. george: ah! see? i told ya. jerry: except jon is spelled with an h. j-o-h-n. george: so? jerry: doesn't jon voight spell his name j-o-n? george (pulls over): so, what are you saying? jerry: nothing. i'm sure "jon" probably mispelled his own name. i know sometimes i spell jerry with a g...and an i! (laughs uproariously.) george (angrily): get out of the car! jerry: what? george: that's right, you heard me. get out! you are ruining this whole experience for me! jerry (sarcastically): oh, look! there's gregory peck's bicycle! george: get out! jerry: and barbara mandrell's skateboard! george: get out!! (jerry gets out and george drives away. a couple of guys notice jerry in his cowboy boots.) tough guy (threatingly): hey, cowboy. where's your horse? (jerry slips and slides in his cowboy boots and runs away.) yeah, you better run! george: did they take anything? jerry: no, they didn't even touch me. i tripped because of these stupid cowboy boots. george: anyway, again, i'm sorry about throwing you out of the car. jerry: you really seemed to enjoy it. george: it was kinda fun. (elaine gives jerry a cold cloth for his jaw.) you know, maybe his name really is j-o-h-n, but he changed it to j-o-n for show business. well, you know, j-o-n is a lot zippier. jerry (sarcastic): yeah, that's possible. george: how would you find out something like that...wait a minute, what am i thinking? i've got the entire yankee organization at my disposal. jerry (to elaine): he'll dispose of it. george: heh, that's right. see ya later. (exits.) elaine: so jerome, i did a little snooping around for you. jerry: ah! what'd you find out, lois? elaine: well, i talked to tim whatley... jerry: yeah... elaine: and i asked him, "should jerry bring anything?" jerry: so...? elaine: mmmm...and he said, "why would jerry bring anything?" jerry: alright, but let me ask you this question. elaine: what? jerry: which word did he emphasize? did he say, "why would jerry bring anything?" or, "why would jerry bring anything?" you emphasize "jerry" or "bring." elaine: i think he emphasized "would." jerry: you know what? the hell with this party, i don't even want to go to begin with. (kramer enters.) kramer: hey. jerry: hey, so where's my sneakers? kramer: that's what i wanna know. jerry: what do you mean? kramer: well, i saw mom and pop this morning, but when i went by the store on my way home? the place was empty. everything is gone. mom and pop - vrooop - vanished. jerry: so all my sneakers are gone? kramer: i'm afraid so. and that's just the tip of the iceberg. i've been asking around - they didn't even have any kids. jerry: mom and pop aren't even a mom and pop?! kramer: it was all an act, jerry. they conned us, and they scored, big time. elaine (amused): so. mom and pop's plan was to move into the neighborhood...establish trust...for 48 years. and then, run off with jerry's sneakers. kramer: apparently. elaine: alright, that's enough of this. jerry: where ya goin'? elaine: i gotta go to the dixieland deli to pick up mr. pitt's security pass for the parade. jerry: why does he want to hold a rope underneath woody woodpecker in the thanksgiving day parade? elaine: he finds his laugh "intoxicating." (laughs like woody woodpecker, and exits.) mr. morgan: so george, what kind of promotional events are we talking about? george: well, i think we need more special days at the stadium, you know? like, uh...joe pepitone day. or, uh...jon voight day. mr. morgan: jon voight? the actor? (rubs his eyes wearily.) uh, i make a motion that we have no more of these meetings that have been initiated by george costanza. george: i suppose if i had suggested liam neeson day, you'd all be patting me on the back. contest winner (to elaine): i guessed stan herman's "boomtown blues." what'd you guess? elaine: um, it was, uh..."next stop pottersville." (the group is unimpressed.) uh, do you know when they're giving out the passes? contest winner: after the music. (the band starts playing directly behind elaine. she is deafened by the loudness of the horns.) kramer: oh. oh man. (takes out a kleenex and puts his head back. jon voight comes out of a doorway and hails a cab.) voight: taxi! (walks right by kramer.) taxi. kramer: hey! jon voight! jon voight! (voight waves at kramer and hurriedly gets in the cab. kramer runs over to the car.) hey, listen, can i ask you something? listen, listen...(leans in the the open back window of the cab. defensively, voight grabs kramer's arm and bites it. kramer screams. the cab speeds off leaving kramer in the street, stunned.) jerry: no jon voight day, huh? george: no. now i'll always have this doubt about the car. what, your jaw still hurts? jerry: yeah, it's all swollen. i think i may have chipped a tooth when i fell yesterday. george: you should have somebody take a look at that. jerry: i'm calling dentists all day here, there's nobody working the day before thanksgiving. george: you going to the party? jerry: no, i don't know if i'm invited. george: well, there's going to be a lot of dentists there. jerry: yeah, you're right. george: you don't want to suffer with this all weekend. jerry: yeah, i gotta see a dentist, this is killin' me. well, i'll take a chance. we'll go together. george: maybe i'll just meet you there. jerry: you don't want to go with me? george: jerry, for all i know this guy went out of his way to not invite you. how am i gonna feel if i show up with an uninvited, unwelcome intruder? jerry: the way i feel when i go places with you? (kramer enters.) hey, so'd you find my sneakers yet? kramer: no. (to george) but i did run into somebody you might be interested in, a mr. jon voight, the actor? george: jon voight! are you kiddin' me? did you talk to him? kramer: well, he was a little standoffish. george: what, you didn't ask him about the car? kramer: no, i couldn't, his cab pulled away. but he did, however, make an impression on me. (pulls up his sleeve and shows george his arm.) look. jerry: what? kramer: his tooth marks. he bit me. george: jon voight bit you? jerry: well, what is he, a vampire? kramer: no, it's justifiable. he thought i was going for his wallet. george (looking at kramer's arm): he left perfect imprints. kramer: that he did. now, you got that pencil with the bite marks on it? we get a trained eye to match 'em up, and we'll see whether or not you're driving jon voight's car! jerry: oh, please. george: wait a minute, wait, it's not that stupid. jerry: no, it's stupid. george: why? why isn't it possible? i mean, they're both bite marks. jerry: so you're gonna show up at that party with a chewed-up pencil and kramer's gnarled arm. george: it's worth a shot. (goes to the door.) jerry: so, kramer, you wanna go to the party together? kramer: jerry, look, come on, i'm an invited guest. i can't be aiding and abetting some...party-crasher. jerry (under his breath, to a man at the party): excuse me, uh...dentist? you a dentist? (the guy shakes his head. jerry moves on to another guy.) dentist? are you a dentist? george: these are the balloons? big deal, all i see is woody woodpecker. kramer: you got a problem with woody woodpecker? george: yeah, what is he? some sort of an instigator? kramer: that's right. he's a troublemaker. jerry: hey, elaine. did you get my message? elaine: what? i can't hear a word you're saying. i was stuck at the dixieland deli all day. my head is still ringing. where's tim? jerry (pointing at the trophy): what is that, the empire state building? elaine: what? i can't hear you. jerry: elaine, would you marry me? elaine: i told you, i can't hear a word. jerry: alright. forget it. george: hey, tim. tim: hey, george. kramer, how ya doin.' (they shake hands.) george: watch the arm! tim, listen, we don't want to bother you, we know you're busy here. tim: no, it's no problem, what is it? george: let me show you something, take a look at this... (another guy at the party interrupts.) guy: alright tim, i'm gonna get goin.' tim: alright, let me take down your number. (grabs george's pencil, then notices jerry sitting on the couch.) is that jerry seinfeld? kramer: he didn't come with us. (tim walks over to jerry.) george: uh, tim, the pencil... tim: jerry. jerry: hey, tim. tim: jerry. i didn't think you'd show. jerry: did you say, "jerry, i didn't think you'd show" or, "jerry, i didn't think you'd show"? (elaine comes over.) tim: elaine! hi! elaine: tim. tim: well. i'm really glad you came. elaine: what? tim: really glad you came. elaine (deaf): uh huh. tim (picks up a bowl of nuts): listen, elaine, i've been wanting to ask you...would you like to go out with me new years eve? (elaine thinks tim is offering her a nut, and shakes her head no. tim, rejected, walks away.) thanks. elaine (puzzled): what? what? george: let me ask you something. could you tell if teeth marks on someone's arm matched teeth marks on a pencil? dentist: it's possible. george (to kramer): roll up your sleeve. dentist: somebody bit you? kramer: not just someone. jon voight. dentist: jon voight bit you? (george notices tim across the room with the pencil in his mouth.) the pencil! hey, hey! get the pencil out of your mouth, you're destroying jon voight's teeth marks! tim: that's john voight's pencil? george: that's right. i got his whole car downstairs. tim: are you the one who bought his lebaron convertible? george (overjoyed to find out): yes! yes, i'm the one! hey! so, you know jon voight! tim: yes! yes, i went to dental school with him. george: jon voight, the actor? tim: no. the periodontist. (george snaps the pencil in two.) dentist: can't this wait until monday? come by my office. jerry: just a quick peek. i'm in agony. dentist: alright. sit down. jerry (sits down): it's this one here in the back. (tilts his head back, and knocks elaine's trophy out the window. a loud hissing sound and commotion is heard from the street below. everyone runs to the windows to look.) kramer: oh! you popped woody woodpecker! tim (to jerry): hey, who invited you, anyway? you're a troublemaker! (jerry nervously laughs like woody woodpecker as the breeze from the popped balloon blows in the window.) announcer on tv: hey, it looks like woody woodpecker is running out of air. in fact, he's collapsing. kramer: those kids look pretty disappointed. jerry: especially that big kid up in the front. (mr. pitt is shown on the television, trying to hold up the deflating woody balloon.) how old is he? (the phone rings.) hello? guy on phone: hello, is this jerry seinfeld? jerry: yes it is. guy on phone: you don't know me, but a really strange thing happened. i was at a garage sale, and this old couple sold me a used pair of sneakers they claimed belonged to jerry seinfeld, the comedian. jerry: can i have the address of that garage sale? okay, thank you very much. (to kramer) i found mom and pop, they're sellin' my sneakers! kramer: where are they? jerry: parsippany, new jersey. kramer: let's go! jerry: my car's in the shop. kramer: well, how are we getting to parsippany? kramer: uh. jerry. these nosebleeds are starting again. jerry (wipes kramer's brow): maybe we should get you to a hospital. kramer (a la ratso rizzo in midnight cowboy): hey, i ain't goin' to no bellevue! look at me, i'm fallin' apart here. george: well i am actually going to have a secretary and i get to do the interview. jerry: that's incredible. six months ago you were taking messages for your mother. george: yeah, and now someone's going to be taking messages for me. jerry: from your mother. jerry: so this ah, woman you plan on hiring, is she going to be in the spokes model category? george: sure. i could go the tomato route. but eh, i've given this a lot of thought jerry. all that frustration. ill never get any work done. so im doing a complete 360. im going for total efficiency and ability. jerry: that's a 180, george. george: whatever. jerry: hi willie. willie: hey jerry. jerry: i got this stuff and ah my mother's fur coat for storage. willie: what are you doing with it? jerry: ah, she keeps it in my apartment for when she comes up from florida. donna: hi. jerry: hi. willie: hey jerry, you know my wife donna. jerry: yeah, that's why i said hi. willie: hey, nice jacket. (looking over the jacket) jerry: thanks. it's hounds-tooth. willie: whoa, this is a beauty. great cut. it's probably very flattering. jerry: oh yes, it really accentuates my bust line. applicant: well, i type about 90 words a minute. im completely well-versed in all ibm and macintosh programs. george: (looking over her resume) well miss coggins you're ah, obviously qualified for the job. you've all the necessary skills and experience. but you're extremely attractive. you're gorgeous. im looking at you, i can't even remember my name. so ah, im afraid this is not going to work out (he crumples her resume into a ball) thanks for coming in. george: you're luscious. you're ravishing. i would give up red meat just to get a glimpse of you in a bra. im terribly sorry. (both george and the attractive female applicant stand up as george reaches across the desk and shakes her hand for coming in) ade: as you can see my references are impeccable. i think id be a real asset here. my only concern is, i do take care of my mother. so will there be any late nights? george: i can't imagine. elaine: ok, so barneys is having this huge sale. i try this dress on -- (holds the garment bag out towards jerry) -- stunning. stunning. i couldn't take my eyes off myself. jerry: yeah. elaine: ok, so then i put it on at home. it looks like im carrying twins. jerry: so you're saying, store -- hotsy-totsy, home-- hotsy-notsy. elaine: yeah exactly. anyway i've got to go over there and return it. jerry: i thought we were going to the movies? elaine: all right ill try it on again. you tell me what you think. (she turns and goes into the bedroom to change clothes) george: hey hey. elaine: hey george george: hey elaine. (george hangs up his raincoat next to the door) im telling you jerry, having a secretary is incredible. (george claps hands) i don't know why i didnt have one before. jerry: because you didnt have a job? george: perhaps. (hehe) i walk in, everything is organized -- messages, appointments. and i can't tell you how proud i am of myself for going with ade. jerry: a lesser man would have crumbled. they would have gone for the dish and the sure fire sexual-harassment suit. jerry: it's a little ... elaine: all right! (throws arms down) you answered it right there. jerry: you got no waist in that thing. george: you arms look like something hanging in a kosher deli. elaine: i said, all right. george: well whad you buy it for? elaine: why did i buy it, because in the mirror, at barneys, i looked fabulous. this woman was just walking by said i looked like demi (the "i" sounds like an "e") moore in indecent proposal. jerry: how fast was she walking? george: demi (the "i" sounds like an "e")? i thought it was demi? jerry: no. i think it's demi. (the "i" sounds like an "e") george: really? i never heard of a semi (the "i" sounds like an "e") tractor-trailer. (jerry nods in agreement) elaine: wait a minute (claps hands) wait a minute. i know what's going on here. skinny mirrors! (she pushes george and jerry in their respective chests, with her arms extended -- one arm for each of them -- they recoil with surprise) jerry: what? elaine: skinny mirrors! barneys has skinny mirrors, they make you look, like, 10 pounds lighter. jerry: oh, you're crazy. elaine: am i? (hands on hips) do you think i would have bought this dress if i looked like this at barneys? george: (to jerry, as jerry nods in agreement) you know i think she might have something there. kramer: whoa. what are you all dressed up for? elaine: oh im returning this dress to barneys. kramer: good idea. jerry: do it tomorrow. well go to the movies. elaine: yeah yeah, ok. kramer: hey look, if you're going there, maybe you could pick me up some of this super hydrating, it's a total-protection moisturizer with uva. elaine: moisturizer? that's girls stuff. kramer: no no, look. ill tell you what -- they're having a sale right. elaine: yeah. kramer: ill meetcha down there, well have lunch. elaine: well we could ... kramer: well, well get to know each other. we never get to spend any time together. oh sure we have our little group here, but ... (he looks and gestures out towards george and jerry, as elaine walks back into the bedroom to change out of the dress -- kramer scratches his head in sort of disbelief) george: and then assuming the strike is resolved, on april 14th, we, ah, play the angels. so lets clear a floor at the anaheim hotel. ade: anaheim hotel. (george picks up a container of chinese food from the credenza) you may want to reconsider. i believe they only have room service until 10 p.m. and then it's only finger foods. george: ade, you're a wonder. (he he -- george laughs) ade: ok, now i projected some of those figures for you regarding the switch to canola oil for the stadium popcorn and surprisingly it will only come to 1/2 a cent more per bag, so it is definitely doable. george: ade, i have to tell you, i, i have never met anybody so ... efficient. ade: well thank you, im flattered. george: i mean you're just, you're just a marvel of organization. ade: well im just, hm, doing my job. george: it's like im thinking of something, and you're (snaps fingers) one step ahead of me. ade: what can i say? im ... im good at what i do. (smiling and quietly laughing proudly) george: (coyly, he looks down and runs his finger along the top of the chair back in front of him) do you, uh ... do you know what im ... thinking about now? ade: (thinking about the question, she stops writing) yes, i think i do. (she turns her head slowly and looks directly at him) george: is it, uh, doable? ade: it's definitely doable. jerry: well, that was the worst. elaine: i cant believe they made the wife the killer. (putting on gloves) gimme a break. man: (waiting in line for tickets, he overhears elaine) hey, give us a break. we haven't seen it yet. thanks a lot big mouth! another man: (waiting in line, closer to the box office) yeah! (in agreement with the other guy) kramer: you got a pen? jerry: yeah, i think i do. kramer: and i need something to write on. jerry: well, all i got is my dry-cleaning stub. kramer: i gust met uma therman. she's giving me her telephone number. uma jerry, uma. jerry: uma therman? really? kramer: yeah. elaine: how'd you manage that. kramer: yeah well i don't have any time to talk now. (he rushes back into the theater) jerry: he's got the kavorca. (looking towards the theater door, jerry notices one of the movie goers) hey, isn't that willie, my dry-cleaner? elaine: where? jerry: he just went in. you know, i think he was wearing my hounds-tooth jacket. elaine: what would he be doing wearing your jacket? jerry: it looked just like the jacket i brought in to be dry-cleaned. he complimented me on it. elaine: are you sure? kramer: i got it. uma, uma, uma. (looking at the ticket) elaine: you are amazing. kramer: yeah, all right. taxi's on me. (he walks off camera) ade: ah no no no no no. a better way to reach the bra would be to undo the jacket, then go around the back of the shirt. george: ade you are incredible ade: oh ...oh ...oh ... here, i want to show you something. hand me that pillow. george: what? oh, my god! ade: mr. co stan za! george: ade, ahh, ahh, ah ... im giving you a raise! jerry: so you're having sex and then all of a sudden, you just blurt out im giving you a raise. george: yeah. jerry: just a quick sidebar here -- are you in anyway authorized to give raises? george: not that im aware of, no. jerry: so you're so grateful to have sex, that you'll just shout out anything that comes into your head. george: i didnt think ahead. jerry: well maybe she'll just think it was bawdy talk. george: i didnt say any other bawdy things. jerry: maybe you could have sex with her again and then take it back. george: all right, you know you're not any help at all here. i don't know what even the point is of talking to you anymore. jerry: all right, all right. im sorry. george: yeah, well, i guess the only thing i can do is go into george steinbrenners office and tell him he has to give her a raise. jerry: how long has she been there? george: 3 days. jerry: it's almost a week. jerry: oh, my god. george: what? jerry: it's a movie stub from the 930 show. george, i think willie the dry-cleaner has been wearing my clothes. elaine: these mirrors are skinny mirrors. this is false ... reflecting. and i think, that the department of ... you know, whatever, would be very interested to know what's going on here. barney's sales associate: well, we're more than happy to exchange it for something else. elaine: ok fine. (smiling) i did like that little calvin klein number right by the elevator. you know the little ... (motions in the direction of the elevator) barney's sales associate: ill bring it to your dressing room. elaine: ok thanks so much. (the barneys sales associate turns and walks away. elaine turns to kramer as he admires himself in the mirror) what are you all dressed up for? kramer: well elaine, when you're shopping on madison avenue, you don't want to skip on the, swank. elaine: i like your little bag. kramer: huh, oh hey, look at this. (he pulls a little tube out of the bag) it's the super hydrating, triple-action moisturizer, hmm. elaine: huh. kramer: wait till that uma smells this uva. bania: hey kramer. kramer: hey bania, what's happening? (kramer, looking into the mirror, is putting moisturizer under his eyes) bania: im looking for a new suit. i cant find anything i like. that's a nice suit. (admiring kramers suit) kramer: well, thank you. bania: did you get that here? kramer: no, this is vintage. they don't make this stuff anymore. bania: you're telling me. kramer: i sure am. bania: it's hard for me to find pants that -- kramer: (interrupting bania) that don't make you look high-waisted. bania: yes kramer: me too. bania: what size are you? kramer: uh, 42. bania: 42, that's what i am now. i've been working out, im huge. how'd you like to sell it? kramer: make me an offer. bania: 100 bucks kramer: surely you jest. (walks away from bania) bania: 175 kramer: look at the stitching (takes the jacket off to show bania) this is old world craftsmanship. bania: 300 dollars. kramer: sold. follow me into the dressing room. bania: you throw the shirt in? kramer: bania, you're killing me. bania: hey that's the women's dressing room. kramer: there's nothing in there that i haven't seen before. george: (opens the door, looks in and then knocks 5 times) mr. steinbrenner, (waves) can i talk to you for a second? steinbrenner: yes yes george. can you talk to me for a second? of course you can -- im a very accessible man. i just wanted to say you're doing great work on that canola oil stuff. george: well, you know, to be honest sir -- my, my new secretary ade, came up with that one. steinbrenner: ade, ade, i like that name george. george: she supports her whole family. (walking slowly into the room) steinbrenner: is that a fact george? george: yes, in fact, her mother is in the hospital right now. it's some kind of a diverticulitis. (he continues walking slowly towards steinbrenners desk) steinbrenner: i had a bout of that myself one time -- knocked me right on my ass. george: she cant even afford to go out to lunch. she's been eating in a high school cafeterias she pretends to be a teacher. it's pathetic. steinbrenner: what's that cost her, like, two and a quarter? ($2.25) george: you know what i was just thinking -- she could really use a raise. steinbrenner: you know, she'd be better off making a sandwich at home and bringing it in. (picks up the telephone hand set) hello, ah, george will you excuse me. kramer: psst. hey. elaine: kramer, what are you doing here? kramer: listen, i need you to get me some clothes. elaine: what? kramer: yeah, i just sold my suit to bania for a cool three-hundred. elaine: so go buy a new one. kramer: what, at this place? it would destroy my whole profit margin. elaine: so. kramer: listen do me a favor -- just call jerry, tell him to bring me some clothes. elaine: ouhhh (kramer disappears back behind his wall as elaine opens the dressing room door) jerry: hello, willie. willie: hey, jerry. you dropping off? jerry: no, but ah, seen any good movies lately? willie: you came by to ask that? jerry: yeah. specifically 930 shows. seen any good 930 shows at the paragon, willie? willie: what are you gettin at? jerry: i saw you the other night stepping out with my hounds-tooth jacket. willie: jerry that's a breach of the dry-cleaners code. jerry: you need a code to tell you not to wear peoples clothes willie: i wasn't wearing your jacket. jerry you're imagining things. (he makes the circular motion next to his ears - the international symbol for insane) jerry: yeahhh, am i imagining this? (he whips out the movie stub and holds it up to willie) found this little cutie in the pocket. (throws the stub on the counter) willie: jerry. jerry: yeah, yeah. well, now that we understand each other -- ill be taking my business elsewhere. and i want my mother's fur coat back too. willie: jerry, come on. jerry: now. willie: now? (willie looks off with his eyes to his left -- he is thinking about his wife donna) jerry: yeah. i want that coat. (jerry opens his wallet, looking for the dry-cleaning ticket) willie: well ... ahh. (apprehensively) jerry: where's that ticket? oh, kramer. willie: wait, you, you mean to tell me you don't have a ticket for the coat? jerry: no, not on me. willie: well, i, i need to see that ticket. jerry: why? i've got my cleaning before without a ticket. willie: yeah, but this is different. those fur storage warehouses are huge. you cant, get anything without a number. jerry: all right, ill be back. elaine: yeah it looks good here, but what does that mean? barney's sales associate: so, uh, do you want it? elaine: i don't know, i have to think about it. (the sales associate walks away) i need a nonpartisan mirror. ade: i cant thank you enough, mr. costanza. im so grateful george: yes, well, i sat down with mr. steinbrenner. i told him you have been doing great work. i said that you deserved a raise, and if you didnt get it, that i, was leaving. (motions with both arms in a circular motion to his right) ade: it was just so generous. george: oh, well, don't worry about it -- he's got plenty of money. (spins his chair away from her) ade: oh i know, but twenty five thousand. george: (spins his chair back to face her) so you got a $25,000 a year raise. ade: yes, i tell you, mr. steinbrenner... george: you're making more than i am. ade: i am? george: what are you doing? you're making more than i am. a secretary cannot make more than her boss. ade: well apparently they can. elaine: oh, this is insanity. im not this hippie. (meaning her hips are not that large) elaine: hey, what do you think of this? man: (with disbelief) you'll never pull it off. female customer: hey, what's going on in there? jerry: (to the barneys sales associate) excuse me, could you tell me where i could find, like, women's moisturizer lotions? female customer: this woman has been in there for over an hour. barney's sales associate: excuse me miss., is everything ok in there? kramer: [yeah] (through the door) jerry: kramer? kramer: oh, jerry, you got my clothes? jerry: what clothes? kramer: didnt elaine call you? jerry: no. kramer: well what are you doing here? jerry: what am i doing here? you're in the women's dressing room. i need that ticket stub back so i can get my mother's fur coat out. kramer: oh, the stub, yeah. i left it in my, my pants jerry: where are your pants? kramer: well, i sold them to bania. jerry: what? you sold your pants to bania. let me in. jerry: why'd you sell your pants to bania? kramer: ouhhh -- i had uma thermans number written on that stub. i lost umas number. jerry: where are your clothes? kramer: i told you i sold them to bania. jerry: you mean what you were wearing? kramer: yeah. jerry: how'd you expect to get out of here? kramer: well, i didnt think ahead. elaine: this isn't going to work for me ... so if you could show me something else. barney's sales associate: no. elaine: no? barney's sales associate: no, because you're taking that one. elaine: i am? barney's sales associate: yes. because you wore it out of the store. elaine: ha! that's preposterous. barney's sales associate: i suppose that salt stain came from all the snow in the store. barney's sales associate: shall i wrap it or will you wear it out? elaine: no. you can wrap it. (dejected. elaine puts her head down and her hand to her forehead as she walks into the dressing room area) kramer, are you still in there? jerry: [elaine] elaine: jerry? bania: elaine, where's kramer? kramer: bania? bania: kramer. jerry: im going out. (he comes out of the dressing room, while kramer remains inside) bania: jerry. jerry: bania. bania: kramer, i want my money back for this suit. you're nancy-boy cream leaked all over the pockets -- suits ruined. kramer: well you're not getting any money back. (kramer opens the door) jerry, come back in here. jerry: (to bania) excuse me. (he goes back in the dressing room) kramer: umas number is on that ticket. jerry: never mind uma, i need that ticket to get my mother's fur coat back. why don't you just give him the money for the suit? kramer: im not going to give him $300 now for a suit with moisturizer cream all over it. jerry: i got an idea. kramer: what? jerry: i cant believe im gonna do this. (jerry opens the door and exits the dressing room. he walks over to bania) jerry: bania can i talk to you for a second? how's everything going? bania: pretty good. jerry: yeah, well, see the thing of it is, im in a bit of an awkward position here. because, uhh, i don't want to get in between you two guys but ... i need a dry-cleaning ticket that's in the pocket of those pants. bania: well all you gotta do is tell kramer to give me my money back, and you'll get your ticket. jerry: yeah, yeah all right, well uh ... tell you what i will do bania -- you give me the ticket, and uh, i will take you out for a nice dinner. bania: can we go back to mendys? jerry: you want to go to mendys, ill take you to mendys. bania: twice? i wanna go twice. jerry: all right lets be reasonable, bania. im taking you out for a nice dinner. all i want is a little ticket in that pocket. i think it's a pretty good deal. bania: two mendys. jerry: . . . all right (gritting teeth) just give me the ticket. bania: here you go. jerry: ohh ... (takes the ticket and heads for the dressing room) george: but mr. steinbrenner, how can i be expected to perform my job properly, knowing that my uh, subordinate is making more money than i am? with all due respect sir, it's outta whack. steinbrenner: uh huh, i understand what you're saying george and i know what it's like to be financially strapped. when i was a young man in cleveland i use to hitchhike to work. one time i got picked up by a bakery truck. you think that stuff smells good? try being cooped up in the back of one of those babies. steinbrenner: i couldn't look at a donut for the next two years. well not that i was ever one for the sweets. steinbrenner: sure i like a cup cake every now and then, like everybody else. you know i like it when they have a little cream on the inside, it's a surprise. that's good, plus the chocolate ones are good too. sometimes i just cant even make up my mind. a lot of times ill mix the two together, make a vanilla fudge. jerry: let me in, it's me. (kramer opens the door, jerry goes in the dressing room) here. you don't know what this is costing me. (hands kramer the ticket) kramer: (closes the door) all right, nice work. (he looks at the ticket, flips it over, and then over again) where's umas number? the moisturizer smudged out the phone number. jerry: (takes the ticket back and looks at it, flips it over) the dry-cleaning numbers are gone too. kramer: (grabs the ticket back and holds it up to the light) it must have been the botanical extracts. jerry: (grabs the ticket back) give me that. jerry: hey bania, the dinners off. the ticket's no good. the numbers are all smudged out. (holds out the ticket and hands it to bania) bania: (looking at the ticket then quickly looks up at jerry) you trying to get out of mendys? you cant do that. jerry: the ticket is worthless. bania: you promised me. jerry: hey, isn't that my mother's fur coat? donna: no it's not. (the coat) jerry: it is! (jerry walks forcefully into the dressing room and closes the door) give me that back. donna: no, what are you talking about. donna: are you out of your mind? don't you ... take your hands ... jerry: you cant have that coat, it's not yours. jerry: what do you think the dry-cleaners is your own personal closet! elaine: donna, do you think you can get the salt stain out of this? donna: let me see. (looking at the stain) piece of cake. bring it elaine: (tilts her head down, looking over her glasses in amazement of bania: mmm. this soup is great. jerry: yeah, it's very good. (reluctantly) bania: i told you mendys had the best pea soup. the best jerry, the best. are you enjoying it? jerry: yeah. im having a wonderful time. (it's obvious he isn't) bania: wait till you try the swordfish. you know jerry, i was thinking. for our next meal, do you think we should come here ... or should we go someplace else? you know it has it's pros and cons. on the one hand, here, you're guaranteed a great meal. on the other hand -- jerry: (interrupting bania) yeah, yeah i know. this would be good, but it would be the same. but if we go some place else, it would be different, but it might not be as good. it's a gamble. i get it. bania: yeah. well, lets hurry up and eat i gotta get out of here. im meeting a woman for a drink. jerry: oh, and who might that be? bania: some woman named uma. i got her number off of that ticket before it was smudged. hope she's good-looking. (crosses his fingers in the air) jerry: if you are a waitress and you ever see me in a restaurant, im telling you right now, i don't want to hear about the specials. i don't want to know about the specials. im sick of the specials. i hate the specials. my feeling is, if the specials were so special, they'd be on the menu. you know what's special about them? they don't know if anybody likes them. they always have these overly creative descriptions of the specials too, you know. the veil is lightly slapped, and then sequestered in a one-bedroom suite with a white wine intravenous. jerry: ready to go lois? lois: you really like to say my name? don't you? jerry: excuse me lois. stand back lois. jimmy's in trouble lois. lois: oh, mr. meyers this is my friend, jerry. duncan: jerry seinfeld! jerry: duncan meyers! lois: you two know each other? duncan: yeah! we uh, went to high school together. didn't we jerry? gee i hope you're not leaving now. we still have a lot of work left to do. lois: would you be able to come all the way downtown again in rush hour to pick me up? jerry: well, i'd have to be superman to do that lois. elaine: no, no this is all wrong. where's the chicken cashew? lew: you no order chicken cashew. elaine: i didn't order any of this. i'm not paying for this. lew: fine benes. we are putting you on our list. elaine: what list? lew: the "do not deliver" list. elaine: merry christmas to you! well, i guess we'll just go out. george: yeah. what are you doing with the daily worker? elaine: ned must have left it here. george: your boyfriend reads the daily worker? what is he? a communist? elaine: he reads everything, you know, ned's very well read. george: maybe he's just "very well red"? elaine: communist? don't you think he probably would have told me? george: well, does he wear bland, drab, olive colored clothing? elaine: yes, . . . yes he does dress a little drab. george: huh, he's a communist. . . . look at this. "exciting uninhibited woman seeks forward thinking comrade and appearance not important." . . . appearance not important! this is unbelievable. finally this is an ideology i can embrace. jerry: hi oh. elaine & george: hey. elaine: where's lois? jerry: she couldn't make it. george: i can't believe you're really going out with a woman named lois. jerry: i know, finally. but george, guess who her boss is. duncan meyers. george: duncan meyers? elaine: who's he? jerry: elaine, only one other person in the world knows what i am about to tell you and that's george. when we were in the ninth grade they had us all line up at one end of the school yard for this big race to see who was going to represent the school in this track meet. elaine: uh uh jerry: i was the last one on the end. george was next to me. and mr. bevilacqua, the gym . . . elaine: what's that? jerry: mr. bevilacqua, the gym teacher. elaine: oh, of course. jerry: he was down at the other end. so he yells out, "ready, on your mark, get set, " and i was so keyed up i just took off. by the time he said go i was ten yards ahead of everybody. elaine: no. george: i looked up. i couldn't believe it. jerry: by the time the race was over i had won. i was shocked nobody had noticed the head start. elaine: really? jerry: and i had won by so much a myth began to grow about my speed. only duncan suspected something was a miss. he's hated me ever since. now he's back. elaine: well what happened when you raced him again? jerry: i never did. in four years of high school i would never race anyone again. not even to the end of the block to catch a bus. and so the legend grew. everyone wanted me to race. they begged me. the track coach called my parents. pleading. telling them it was a sin to waste my god given talent. but i answered him in the same way i answered everyone. i chose not to run. elaine: so now duncan is back? jerry: he's back. and i knew he would be someday. (drinks) man that's some tart cider! lois: hi. jerry: hi. lois: sorry i missed the chinese food. jerry: oh, so am i . uh, how's duncan? lois: he's okay. jerry: he say anything? lois: about what? jerry: oh, nothing in particular. lois: . . . why did you cheat in that race? jerry: i did not cheat. lois: he said that you got a head start. jerry: oh, he's just jealous because he came in second. lois: really? jerry: yes lois: so you were the fastest kid in school. jerry: faster than a speeding bullet lois. elaine: so how was work? another day, another dollar? ned: i guess. elaine: oh well nothing wrong with that. gotta make those big bucks. . . . money money money money money money money . . . ha ha ha ha ah . . . are you a communist? ned: yes, as a matter of fact i am. elaine: oh, ah! oh! wow! whoa! a commie! wow, gee, man it must be a bummer for you guys what with the fall of the soviet empire and everything . ned: yeah, well, we still got china, and cuba, elaine: yeah, but come on . . . ned: i know it's not the same. elaine: well, you had a good run, what was it 75, 80 years? wreaking havoc, making everybody nervous. ned: yeah, we had a good run. elaine: well, so enjoy yourself. (clink glasses) ha ha uh ha george: so you lied to her? jerry: i couldnt tell her the truth. i don't know what's going to happen between us. what if we have a bad breakup. she'll go straight to duncan. and i want him to go to his grave never being certain i got that elaine: well, i'm dating a communist. jerry: wow, a communist. that's something. elaine: yeah, that's pretty cool isn't it? george: hey, did i tell you i called one of those girls from the personal ads in the daily worker? jerry: the daily worker has personal ads? george: and they say appearance is not important. jerry: yours or hers? kramer: ho ho ho ho ho merry christmas everyone. merry christmas. jerry: wow, look at you. so you got the job. kramer: yeah, you're looking at the new santa at coleman's department store. elaine: oh, congratulations mickey: come on get your bead on. we're going to be late. kramer: on prancer on dasher, on donna. mickey: not donna, it's donner. kramer: donna! mickey: yeah, right!. on prancer, on dancer, on donna, on ethyl, on harriet. jerry: hello, oh hi lois, you want to get together, what for? i don't know about that, i'll have to think about it. i'll let you know. okay, bye. george: what's up? jerry: duncan wants to get together with her and me for lunch tomorrow. he obviously wants me to admit i got a head start. and i don't think she believes me. george: he wants to meet you? i'll tell you what. i'll show up. he doesn't know we're friends. i'll pretend i haven't seen you since high school. i'll back up the story. jerry: that's not bad. george: not bad? it's gorgeous! kramer: ho ho ho well come on little princess, tell santa what you want. don't be shy. mom: she doesn't speak english (with a swedish accent). kramer: santa speaks the language of all children. a notchie watchie dotchie do. kramer: a dotchie cotchie dochie, kramer: het, mickey when do we get a break? my lap is killing me. mickey: there is no break. kramer: a sweat shop. kramer: hey, hey, hey. ada: natalie on line 2. george: natalie? ada: from the daily worker. george: thank you. george: hello, it's natalie? yeah, this is a business office but i'm not a business man per se. i'm here working for the people. yes, i'm causing dissent. stirring the pot. getting people to question the whole rotten system. ilene: elaine. elaine: ilene. ilene: hi. elaine: hello. ilene: doing a little christmas shopping? elaine: yeah, yeah. oh, this is ned. he's a communist. ilene: oh, really? elaine: yep . . . a big communist, a big big communist. ilene: oh, well, it's awfully nice to see you. see you later. elaine: bye bye elaine: hey, listen while we're here why don't we do a little shirt shopping? ned: out of the question. elaine: um. kramer! kramer: hi elaine: hi, oh hi mickey, this is ned kramer: oh, hey, hi buddy. elaine: you guys stay here, i'll be right back. kramer: eight hours of jingle belling and ho ho hoing. boy, i am ho'd out. ned: anyone who works here is a sap. mickey: watch it! kramer: woah, woah, come on. ned: you understand the santa's at bloomfields are making double what you are? kramer: double? ned: i bet the beard itches doesn't it? kramer: you got that straight. ned: so when you get a rash all over your face in january do you think coleman's will be there with a medical plan? mickey: look, you take that commie crap out into the street. ned: kramer, i've got some literature in my car that will change your whole way of thinking. kramer: talk to me baby. mickey: don't listen to him kramer, you've got a good job here. duncan: but there's no way you could have beaten me by that much. i already beaten you in junior high school three times. jerry: i didn't hit puberty til the 9th grade. that's what gave me my speed. besides, if i got a head start why didn't mr. bevilacqua stop the race? duncan: that's what i've always wondered about. jerry: well, i . . . [sees george] george: oh, my god, no, oh my god, . . . jerry! jerry: i'm sorry, uh, george: george, george costanza! jerry: oh, george costanza , kennedy high. george: yes yes yes this is unbelievable. duncan: hi, george george: oh, wait a minute, wait a minute, don't tell me, don't tell me. it starts with a . . . duncan meyers. oh, wow, this is something. i haven't seen you guys in what, twenty years? jerry: this is lois. lois: hello. george: so what have you been doing with yourself? jerry: i'm i'm a comedian. george: ah ha, well, i really wouldn't know about that. i don't watch much tv. i like to read. so what do you do, a lot of that "did you ever notice?" this kind of stuff. jerry: yeah, yeah george: it strikes me a lot of guys are doing that kind of humor now. jerry: yeah, yeah, well, you really got bald there, didn't you? george: yeah, yeah. jerry: you really used to have a think full head of hair. george: yeah, yeah. well, i guess i started losing it when i was about twenty-eight right around the time i made my first million. you know what they say. the first million is the hardest one. jerry: yeah, yeah. lois: what do you do? george: i'm an architect. lois: have you designed any buildings in new york? george: have you seen the new addition to the guggenheim? lois: you did that? george: yep. and it didn't take very long either. jerry: well you've really built yourself up into something. george: well, well, i had a dream, jerry. jerry: well, one cannot help[ but wonder what brings you into a crummy little coffee shop like this. george: well, i like to stay in touch with the people. jerry: ah, you know you have a hole in your sneaker there. what is that canvas? george: you know my driver's waiting, i really should get running. good to see you guys again. jerry: george, george, hang on. i haven't seen you in so long. george: ha, uh, jerry: i thought we might reminisce a little more. you know duncan and i were just taking about the big race. george: oh, the big race. jerry: yeah. george: yes, yes,. lois: you were there? george: yes, sure, surely was. yeah, i'll remember that day. well i'll never forget it because that was the day that i uh, lost my virginity to miss. stafford, the uh, voluptuous home room teacher. duncan: miss stafford? george: yes, yes, you know i was in detention and she came up behind me while i was erasing the blackboard . . . jerry: george! george: but i digress. let me see, now. you were standing at one end of the line and i was right next to you. and i remember we were even for like, the first five yards and then , boom,...you were gone. jerry: did i get a head start? george: head start, oh no absolutely not. jerry: you satisfied? so you see? duncan: no, i'm still not convinced and i never will be. lois: why don't the two of you just race again? duncan: that's a good idea. jerry: no, no, no, another race - out of the question. duncan: i know, you've been saying that for twenty years because you know you can't beat me. you couldn't beat me then and you can't beat me now. lois: race him jerry. race him. jerry: all right! i'll do it. the race is on. elaine: . . . shut up! (?) jerry: and he's calling all these people from high school to come and watch. i knew this day would come. i can't do it. i can't go through with it. i'm calling it off. i can't let the legend die. it's like a kid finding out there's no santa claus kramer: each according to his ability, to each according to his needs. mickey: what does that mean? kramer: well, if you've got needs and abilities that's a pretty good combination. mickey: so what if i want to open up a delicatessen? kramer: there are no delicatessens under communism. mickey: why not? kramer: well, because the meats are divided into a class system. you got pastrami and corned beef in one class and salami and bologna in another. that's not right. mickey: so you can't get corned beef? kramer: well, you know, if you're in the politburo, maybe. george: (on phone) . it's george costanza. . are there any messages for me? why does mr. steinbrenner want to see me in his office? . . . communist? i'm not a communist . . . . all right, all right. all right, i'll be there. - ( hangs up ) my secretary ada, told mr steinbrenner i'm a communist now he wants to see me in his office. jerry: so you'll just explain to him you're not a communist. you just called the woman for a date. jerry: hello, oh hi duncan, 400 o'clock tomorrow? that is not going to work. . . . why? i'll tell you why. because i chose not to run! ned: i'm sorry elaine. the shirt's too fancy. elaine: just because you're a communist, does that mean you can't wear anything nice? you look like trotsky. it's gorgeous. fine, you want to be a communist, be a communist. can't you at least look like a successful communist? ned: all right, i'll try it on. elaine: i'm going to order chinese food. ned: you're ordering from hop sing's, right? elaine: ugh, does it have to be hop sing's. i kind of had a fight with him. ned: elaine, when my father was black listed he couldn't work for years. he and his friends used to sit at hop sing's every day figuring out how to survive. elaine: you're father was blacklisted? ned: yes he was, and you know why? because he was betrayed by people he trusted. they "named names". elaine: okay, okay. (phones) um, yeah, hi, i'd like delivery please to 16 west 75th st. apartment 2g. lew: i know that address. you're benes, right. you're on our list. no more delivery. elaine: no. no, she doesn't live here anymore. this is someone else. lew: oh, yeah. what's the name? elaine: why do you need the name? you already have the address. lew: we need a name. give us a name. elaine: okay, okay, ned isakoff. kid: i want a racing car set. kramer: ho ho ho ho a racing car set! those are assembled in tai wan by kids like you. and these coleman pigs, they sell it at triple the cost. kid: but i want a racing car set. kramer: you see kid, you're being bamboozaled. these capatalist fat cats are inflating the profit margin and reducing your total number of toys. kid: hey, this guy's a commie! mickey: hey, kid, quiet. were did a nice little boy like you learn such a bad word like that? huh? kid: commie, commie, commie . . . (unknown) . mickey: santa is not a commie. he just forgot how his good friend stuck his neck out for him to get him a good job like this. didn't he santa! store manager: is there a problem here? kramer: ho ho ho ho. kid: this guy's a commie. he's spreading propoganda. store manager: oh yeah? well that's enough pinko! you're through. the both of ya' mickey: i got two kids in college. kramer: you can't fire me, i'm santa claus. store manager: not anymore. get your skinny ass out of here. jerry: hi how are you? lois: . . . fine. jerry: what's the matter? lois: i just spoke to duncan. he said if you don't race, he's going to fire me. jerry: what? he can't do that. lois: yes he can. he controls the means of production. what are you going to do jerry? jerry: don't worry lois. i'll think of something. lew: ah, i knew it was you! you tried to trick hop sing! you are onour list; elaine benes! and now you are on our list; ned isakoff. ned: you got me blacklisted from hop sing's? lew: she named name! george: you, uh, wanted to see me, mr. steinbrenner? steinbrenner: yes george, i did. come in, come in. george, the wordaround the office is that you're a communist. george: c-communist? i am a yankee, sir, first and foremost. steinbrenner: you know george, it struck me today me that a communistpipeline into the vast reservoir of cuban baseball talent could be thegreatest thing ever to happen to this organization. george: sir? steinbrenner: you could be invaluable to this franchise. george, there's a southpaw down there nobody's been able to get a look at; something rodriguez, i don't really know his name. you get yourselfdown to havana right away. george: yes, sir. yes sir, do my best. steinbrenner: good, merry christmas george. and bring me back some of those cigars in the cedar boxes, you know the ones with the fancy rings? i love those fancy rings. they kind of distract you while you're smoking. the red and yellow are nice. it looks good against the brown of the cigar. the maduro, i like the maduro wrapper. the darker the better, that's what i say. of course, the claro's good too. that's more of a pale brown, almost like a milky coffee. (george exits) i find the ring size very confusing. they have it in centimeters which i don't really understand that well... mickey: that was quick! nice job, santa! kramer: yeah, mickey: i knew that commie stuff was going to get us in trouble. kramer: yeah, well i didn't realize that was such a sensitive issue. mickey: communism, you didn't realize communism was a sensitive issue? what do you think has been going on in the world for the past 60 years? wake up and smell the coffee. kramer: i guess i screwed up! mickey: you sure did. big time. elaine: how do you feel? jerry: i need a miracle. duncan: now you're going to see what kind of liar you're mixed up with. lois: if he beats you i want a big raise. duncan: if he beats me, i'll not only give you a raise, i'll send you to hawaii for two weeks. kramer: i parked in front of that restaurant . as soon as this race is over i got to go to the airport. george: okay, all right, all right. mr. bevilacqua: you ready boys? jerry: yes, mr. beviacqua mr. bevilacqua: okay, this is hoiw it works. you take your marks, i say, ready - on your mark - get set - and then fire. you got it? duncan & jerry: yes mr. bevilacqua. mr. bevilacqua: ready - on your mark lois: so will you come to hawaii with me jerry? jerry: maybe i will , lois. maybe i will. george: you wanted to see me, el presidente? castro: si, si. (a spanish word i can't figure out) come here. i understand you are very interested in one of our players, eh? george: si, si. castro: ordinarily i would not grant such a request but i've heard you are, uh, how you say, communista simpatico, eh? george: muy sumpatico. muy muy muy. castro: well good, then you can have your pick. george: oh, oh! castro: they will play for your yankees. george: oh well, gracias el commandante, gracias. muy muy. castro: and i would be honored if you would be my guest for dinner tonight at the presidential palace. there will be girls there and, i hear, some pretty good food. of course the problem with parties is you invariably have to eat standing up which i don't care for but on the other hand i don't like to balance a plate on my lap either. once when i was at a party, i put my plate on someone's piano. i assure you, if i had not been a dictator, i would not have been able to get away with that one. jerry: come on. lets go elaine: no wait, i gotta go in here and pick up mr. pitt's tennis recquet. jerry: what's it doin here? elaine: he wanted to have it restrung. (to clerk) here i need to pick that up landis: hello elaine: oh, hi. landis: jocylin landis from doubleday. i interviewed you for a position a couple of months ago. elaine: yes, yes, the one i didn't get. (they giggle) landis: i was watching you play elaine: oh, i'm not very good. landis: no. you exhibited a lot of grace out there. elaine: really? grace? landis: yes. so have you found anything yet? elaine: uh, no. not really. landis: you know you should keep in touch. something may be opening up in a few weeks. is that a bruline? jerry: oh, bruline. newman's got the same one. elaine: newman plays tennis? jerry: he's fantastic. landis: would you mind if i tried this out? elaine: uh, no ... take it. landis: how will you get it back? elaine: um, i could come by your office and pick it up tomorrow. landis: that's so generous of you. elaine: thanks jerry: you loaned her pitt's racquet? elaine: what could i do? she said there might be something for me at doubleday. oh wouldn't that be great i wouldn't have to work for mr. pitt anymore. sandy: i gotta get going. jerry: oh, ok. next time lets play ping pong. it's easier to jump over the net. sandy: (nods silently) elaine: bye jerry: bye bye elaine: have you noticed she never laughs jerry: hm, really? elaine: yeah george: check that out (showing newspaper) kramer: whoa, you're dating this woman? george: that's right. kramer: george, you're becoming one of the gliterratti george: what's that. kramer: ya' know, people who glitter. she's a slim gal. george: and the amazing thing is she eats like there's no tomorra'. i mean i've never seen an appetite like this. desserts. everything. i don't know how she does it. kramer: maybe she's bulimic george: wa? kramer: bulimic, george: kramer, she's a model. kramer: exactly george: i have noticed she does tend to go to the bathroom right after we finish eating. kramer: there you go monkey boy. nina: mmm, mmmm oh, so good, mmm, mmm. aren't you hungry? george: just enjoying watching you. sandy: so did you like the movie? jerry: yeah, it was ok. frankenstein didn't seem quite right to me. i missed the sport jacket. sandy: (nods silently) jerry: not that it was that nice of a jacket. i mean it didn't fit him that well. to me there's just something about a monster in a blazer. it shows at least he's making an effort. sandy: (nods silently) that's funny. jerry: i'm glad you enjoyed it. nina: oh, i'm so full. george: yes, full. i love to be full ... love to sit back, loosen the old belt and digest away for hours. let those enzymes do their work. nina: will you excuse me. george: where you going? nina: i just need to freshen up. george: you're fresh (grabs her arm) you're very fresh. you seem very fresh to me. you're very vital. i couldn't take you any fresher. nina: george i need to freshen., george, george, george ... jerry: it was unbelievable. you're right the jokes kept bouncing off her like superman. elaine: see, what did i tell ya? jerry: and even when she did like something, she doesn't laugh. she says, "that's funny." ... that's funny! elaine: oo, i better call that woman at doubleday and see when i can pick up mr. pitt's racquet. jerry: i mean how can i be with someone that doesn't laugh. it's like ... well it's like something! elaine: (on phone)hello, yeah, hi. uh, is miss. landis there please. wa? oh, gosh, ah ok, she'll be in later? ok, thank you. uh. (to jerry) this guy said she hurt her arm playing tennis. ... pretty bad. george: well, i heard a noise. jerry: what noise? george: you know, .. blah ... jerry: what blah? george: from the bathroom. jerry: oh, you think she was refunding? george: every time we go out to eat the minute we we're done eating she's runnin to the bathroom. elaine: so you're concerned. george: elaine, of course i'm concerned. i'm payin' for those meals. it's like throwing money down the toilet. jerry: in a manner of speaking. george: let me digest it. let me get my money's worth. y'know what would be good is if there was someone else in the bathroom that could tell me. kramer: here's your scrubber back. jerry: thanks. george: hey, maybe i could bribe one of those women that hand out the towels in the powder room. jerry: a matron? george: yeah jerry: uh, well i can't help you there (weakly). george: wha? kramer: nothin' george: you know a matron? kramer: me? george: you kramer: no. george: kramer, kramer: well, now look, just leave me alone. george: well, what is it? kramer: no, don't, don't make me george: wha? kramer: no, i can't, all right i can't ... george: who? kramer: ... my mother's a matron! elaine: babs? kramer: yeah, there, all right i said it there.. ya' satisfied? anything else you want to know? george: kramer, kramer, i need to know if nina is refunding. kramer: look, george, i can't help ya, all right. george: why not? why not? kramer: let me go. let me go. because i haven't talked to my mother in five years. we just don't see eye to eye. i don't even want to get into my childhood. i'm still carrying a lot of pain. a lot of pain. george: come on, kramer. kramer: i can't i can't jerry: kramer you're going to have to face her some time kramer: (mumbles) b'd b'd elaine: hello (sees landis) oh, my goodness. what happened? landis: i tore my umeral epicondilitist elaine: oh landis: my doctor said it might never fully heal. i may never play again. elaine: oh, you'll be playing ... landis: if i can't play tennis i don't know what i'll do. elaine: there are plenty of things you can do, there's chess and uh uh mah jong, landis: you don't know how lucky you are to be healthy ... elaine: ... and biking and .. landis: what am i going to do? elaine: ... hiking ... landis: (wimpers) elaine: (sees racquet) could i ... landis: if i can't play tennis i have no reason to live .. (cries) elaine: (sees racquet), you know it's not important i'm gonna, ok, well, you know. take care of that condolitis kramer: ma? babs: cosmo! george: cosmo? jerry: why didn't you just ask her for it? elaine: i told you i couldn't. the woman was crying about how she might never play tennis again jerry: yeah george: hey di ho jerry: c'mon up. jerry: so when do you have to get the racquet back to mr. pitt? elaine: augh, he's got a big match tomorrow with ethyl kennedy jerry: he needs a three hundred-dollar bruline to beat ethyl kennedy? elaine: he'll only play with his racquet jerry: well, why don't you wait 'til she's not there on her lunch hour and just take it? elaine: that's stealing? jerry: stealing? you loaned her the racquet! elaine: i know. george: hey oh. elaine: jerry hey jerry: so what happened with kramer's mother? george: it's all worked out. nina and i will have dinner thursday at the restaurant where babs works. jerry: what's she like? george: oh, she's a kramer. and uh, while i was there i uh happened to pick up another juicy little nugget about our friend. elaine: ah, i'm ready what? jerry: what is it? george: i uh got the first name. elaine: you found out kramer's first name? george: that's right. you ready? jerry: we've been trying to get it out of him for ten years. what is it? george: cosmo elaine: jerry cosmo? george: cosmo elaine: jerry cosmo elaine: cosmo, cosmo? kramer: what's so funny? ... wha? elaine: cosmo? kramer: all right, ok so you the name now. the cat is .a a a .. out of the bag. elaine: it's not such a bad name. kramer: well you know all my life i've been running away from that name. that's why i wouldn't tell anybody. but i've been thinking about it. all this time i'm trying not to be me. i'm afraid to face who i was. but i'm cosmo jerry. i'm cosmo kramer. and that's who i'm going to be. from now on that's who i'm going to be. i'm cosmo! laura: yes? jerry: hi, is sandy here? laura: hi, you must be jerry. sandy's in the shower. do you want to come in? jerry: i would except i forgot to bring a towel. laura: (laughs nicely) jerry: so the roommate laughed at everything i said. george: wow. jerry: it was a great sounding laugh too, kind of lilting and feminine--none of those big coarse "ha's." you know those? george: oh yeah ha-a-a, ha-a-a. jerry: yeah. george: hate the big coarse "ha." hate those. jerry: and the worst part of course is that she also possessed many of the other qualities prized by the superficial man. george: i see. jerry: so as you can see, i've got a bit of a problem here. george: well, if i hear you correctly--and i think that i do--my advice to you is to finish your meal, pay your check, leave here, and never mention this to anyone again. jerry: can't be done, huh? george: the switch? jerry: "the switch." george: can't be done. jerry: i wonder. george: do you realize in the entire history of western civilization no one has successfully accomplished the roommate switch? in the middle ages you could get locked up for even suggesting it! jerry: they didn't have roommates in the middle ages. george: well, i'm sure at some point between the years 800 and 1200--somewhere--there were two women living together. jerry: the point is i intend to undertake this. and i'll do it with or without you. so if you're scared, if you haven't got the stomach for this, let's get it out right now! and i'll go on my own. if not, you can get on board and we can get to work! now what's it going to be? george: all right, dammit, i'm in. jerry: i couldn't do it without you. george: all right. let's get to work. george: all right. that's enough for today. you're tired. get some sleep. i'll see you first thing in the morning. jerry: aw, we can't do it, who are we kidding? it's impossible! it's true! you can't do the switch! nobody can do the switch! it was a stupid idea to begin with! let's face it. i'm stuck with the non-laugher and that's that! george: we'll come up with something. jerry: yeah, sure we will. george: all right. see you tomorrow. (george sighs, exits.) george: i-i-i-i-i got it!!!!! george: all right. let's go over it again, one more time. jerry: all right. so i tell sandy that i want to have a mnage trois with her and her roommate. george: that's right. jerry: and you believe this course of action will have a two-pronged effect. firstly, the very mention of the idea will cause sandy to recoil in disgust, whereupon she will insist that i remove myself from the premises. george: keep going. jerry: at this point, it is inevitable that she will seek out the roommate to apprise her of this abhorrent turn of events. george: continue. jerry: the roommate will then offer her friend the requisite sympathy even as part of her cannot help but feel somewhat flattered by her inclusion in the unusual request. george: a few days go by and a call is placed at a time when sandy is known to be busy at work. once the initial awkwardness is relieved with a little playful humor, which she [laura] of course cannot resist, an invitation to a friendly dinner is proffered. jerry: huh. well, it all sounds pretty good. there's only one flaw in it they're roommates. she'd have to go out with me behind sandy's back. she's not gonna do that. george: you disappoint me, my friend. sandy wants nothing to do with you. she tells laura, "if you want to waste your time with that pervert, that's your problem." jerry: it's a perfect plan. so inspired. so devious. yet so simple. george: (george, finger in the peanut butter jar) this is what i do. keith: can i help you? elaine: uh, no, i'm ok. keith: well then what are you doing with that racquet? elaine: um, it's mine. miss. landis borrowed it. keith: well, i'm sorry you can't take that, no no no.. elaine: no no no, i can. i can. it's mine. it's my racquet. keith: look sweetheart i don't know who you are. i don't know what you're doing here. but... elaine: all right. i'm going i'm going keith: not with ... elaine: give it give it .. keith: leave ... elaine: all right all right forget it. you don't have to mention any of this to miss. landis do you? keith: i don't have to but i will. clotworthy: morning cosmo kramer: hi mr. clotworthy clotworthy: how are you today? kramer: ah couldn't be better. hi lorraine. landis: hi cosmo kramer: my mom babs. landis: hi mrs. kramer babs: lorraine kramer: yes, it's a fine day voice: (larry david's voice) what do you say cosmo? kramer: hey, everything my man. sandy: what jerry: you know, i don't know the exact pronunciation but i believe its manage a trois. sandy: oooo, that is a wild idea jerry: uh? kramer: you ma, know i've been thinking. i want you to quit that matron job. babs: yes, well isn't that just easy for you to say. what the hell do you think i'm going to do with myself? kramer: well maybe we could go into business together. if you're clean? babs: i've been clean for two years. anyway what would we do together? kramer: i've got plenty of ideas. babs: i've always believed in you cosmo. you know that. so i want you to call that place today and tell then tha you're through. babs: all right. i'll do it. nina: mmmm mm so good. george: ... so glad. nina: will you excuse me i've got to freshen up. george: and why shouldn't you? be fresh stay fresh woman: i'll be back. i'm not feeling very well. waitress: care to see our dessert menu? george: uh, yeah. do you know babs? waitress: oh, yeah i was sorry to hear she left. george: babs left? waitress: she quit today. george: ah ha. nina: what are you doing here george? george: i was just wondering what it was you wanted for dessert. george: how 'ya feelin'? babs: hi newman newman: hi babs babs: what are you doin' newman: minding my own business. babs: you'll never get into trouble that way. newman: what makes you think i'm lookin' for trouble? babs: from what i hear you postmen don't have to look too far. newman: ha ha ha well you know sometimes it just has a way of finding you. cigarette? babs: don't mind if i do. jerry: hey george: what happened to babs. she never showed up last night. the whole thing blew up in my face. jerry: ah, that's a shame. george: hey, what happened with sandy. i forgot all about it. did you call her? jerry: yeah, i did. in fact i went over there. george: so what happened? she throw you out? eh? jerry: no actually, she took it pretty well. george: so what happened? jerry: she's into it. george: into what? jerry: the manage. and not only that. she just called me and said she talked to the roommate and the roomate's into the manage too. george: that's unbelievable. jerry: oh, it's a scene man. george: do you ever just get down on your knees and thank god that you know me and have access to my dementia? jerry: what are you talking about? i'm not goin' to do it. george: you're not goin to do it? what do you mean, you're not goin to do it? jerry: i can't. i'm not an orgy guy. george: are you crazy? this is like discovering plutonium ... by accident. jerry: don't you know what it means to become an orgy guy? it changes everything. i'd have to dress different. i'd have to act different. i'd have to grow a mustache and get all kinds of robes and lotions and i'd need a new bedspread and new curtains i'd have to get thick carpeting and weirso lighting. i'd have to get new friends. i'd have to get orgy friends. ... naw, i'm not ready for it. george: if only something like that could happen to me. jerry: oh, shut up you couldn't do it either. george: i know. jerry: hey, what happened? did you get your racquet? elaine: no, i got caught. jerry: what do you mean you got caught? elaine: her assistant caught me. and now i'm probably not going to get a job. he's going to tell landis that i was sneakin around her office. jerry: i still don't understand how you can get in trouble for taking your own racquet. elaine: meanwhile mr. pitt's got this match with ethyl kennedy this afternoon. kramer: hey. jerry: hi cosmo. elaine: hi cosmo kramer: thanks man. jerry: hey, doesn't newman have a bruline racquet? kramer: uh, yeah, yeah, but he's on vacation. went to baltimore. jerry: hum, but you've got the key to his place right? kramer: yeah jerry: well elaine needs to borrow his racquet. just for today. kramer: all right all right. come on i'll take you over to newman's george: hey, cosmo what happened to your mother last night. she hung me out to dry. kramer: she quit. george: it would have been nice if someone told me about it. i just think you could have said something. that's all. kramer: don't talk to me george, talk to her. george: well where is she? kramer: i don't know. kramer: ma! babs: cosmo! newman: we din, we didn't ... ... cosmo? jerry: you sure you don't want the tickets? george: no thanks. jerry: i can't believe i'm having trouble getting rid of super bowl tickets. george: i'm telling you, skip the drake's wedding, go to the game. jerry: i can't, the drake put me in the wedding party. george: well who schedules his wedding on super bowl sunday? jerry: maybe he didn't know? george: lemme see. i can't believe you got these for free. (looking at the tickets) row f?! jerry: row f, in front of the gs, hobnobbing with the ds and es. george: howbout kramer or elaine, they don't want them? jerry: i asked. elaine laughed at me, kramer's only interested in canadian football. george: wish i could help you. jerry: come on, take them. you could take bonnie. george: you paying my hotel and airfare to miami? jerry: what do you think? george: so in order to use these, i gotta spend like fifteen-hundred bucks. this is a bill for fifteen-hundred dollars. plus, she'd ask about the sleeping arrangements, that whole sleeping arrangement conversation is depressing. jerry: yeah, sleeping arrangements. so, you haven't, uh... george: oh, no no no, i haven't even seen her apartment yet. tomorrow night's the first night. jerry: aah. george: hey, is that tim whatley? jerry: the dentist? george: yeah, is he still mad at you for crashing his thanksgiving party? jerry: oh, no. i explained the whole thing to him, he was fine with it. george: oh good. jerry: yeah, i blamed it on you. hi tim. tim: hey jerry! george. what are you up to? jerry: ah, just a couple of gals out on the town, shopping and gabbing. george: i'm getting a makeover. jerry: hey. how would you like to go to the super bowl? tim: what, are you kidding? jerry: here. two tickets. have a good time. tim: how can i think you? i'll tell you what, i'll take you to dinner sometime. you ever been to mendys? jerry: no no no. no dinner. jerry: tim, you didn't have to get me a thank you gift. i know, it's a label maker. the label baby junior. yeah, i hear they're good. well, label me thankful. okay, well you enjoy those tickets. buh-bye. jerry: come in. kramer: where can i put this? jerry: what is it? kramer: it's risk, jerry. the game of world conquest. (brushing newspapers off the table with his foot and setting the game board down) alright, that's perfect. jerry: kramer, why do you have to (noticing newman) hello, newman. newman: hello, jerry. will he take it? i gotta go to work. jerry: take what? kramer: the board, jerry. we've been playing at newman's for six hours but he's gotta go. jerry: so why don't you leave it at newman's? newman: i wanted to, he won't let me. kramer: we have to put the board in a neutral place where no one will tamper with it. jerry: so that's here? kramer: yes, yes. you're like switzerland. jerry: i don't wanna be switzerland. kramer: jerry, newman and i are engaged in a epic struggle for world domination. it's winner take all. people cannot be trusted. newman: don't look at me. kramer: oh, i'm looking right at you, big daddy. jerry: alright, soldier boys, let's fall out. kramer: alright, so you're gonna look after it? jerry: yeah, yeah. kramer: stay strong buddy. jerry: yeah. kramer: watch it good. jerry: ok. elaine: hey. jerry: hey. elaine: hey. oh, is that a label maker? jerry: yes it is. i got it as a gift, it's a label baby junior. elaine: love the label baby, baby. you know those things make great gifts, i just got one of those for tim whatley for christmas. jerry: tim whatley? elaine: yeah. who sent you that one? jerry: one tim whatley! elaine: not, my tim whatley? jerry: the same, he sent it as a thank you for my super bowl tickets. elaine: i think this is the same one i gave him. he recycled this gift. he's a regifter! jerry: or maybe he liked your gift so much, he decided to get me the same thing. perhaps it's an homage. elaine: yeah, perhaps. jerry: well how did he react when you gave it to him? elaine: um, he said, "oh. a label maker. howbout that?" jerry: he repeated the name of the gift? elaine: yeah, so? jerry: oh, well, if you repeat the name of the gift, you can't possibly like it. elaine: what do you mean? jerry: oh, you know, like when someone opens something up and they go, "oh. tube socks." what are you gonna do about it? elaine: i don't know, i guess i'll just get invited up to his apartment and see if he's got a label maker. jerry: why'd you get him a gift anyway? elaine: oh, he did some dental work for me and he didn't charge me so i thought i'd get him a christmas present. jerry: yeah, well, if you're getting him anything for his birthday, i'm alarge. bonnie: well, here we are. this is the place. george: wow. bonnie: do you like it? george: i love it! this is fantastic! look at this couch, is this velvet?! bonnie: are you a velvet fan? george: a fan? i would drape myself in velvet if it were socially acceptable. and look at this, hardwood floors! bonnie: aren't they great? (sees a man enter from the bedroom) oh, scott, hi. this is george. george, this is scott, my roommate. george: (bewildered) heh heh. bonnie: here, check out this view. if you lean out this window, you can see the river. george: so scott's your roommate, huh? bonnie: yes. oh, i'm sure i've mentioned him. george: no, you didn't mention it. bonnie: he's a great guy, you'll really like him. george: i'm sure i will. jerry: male roommate, huh? george: yes. a male roommate. jerry: is this a problem? george: it's a huge problem, jerry. the hardest part about having sex with a woman is getting her to come back to your place! he's already got that. jerry: well, maybe he's -- george: no. believe me, he's not. jerry: so he's an eligible receiver. george: she's confiding in him about our dates. you always like the person you talk to about the date more than the date! it's just a matter of time till they realize, 'hey, we could have sex.' jerry: what's stopping them? george: exactly! you know how they get animals to reproduce in captivity? they just put them in the same cage. jerry: what does he look like? george: oh, that's the worst part of it. he looks just like me. jerry: he looks like you and he's working from the inside? george: i look like me and i'm working from the outside. who do you think is in the better position? jerry: not you. george: ho ho. this bizarre ?harrod? experiment must end! jerry: we'll take a check please. george: i gotta find a way to work this out, i love that apartment. it's so cozy, i'm ensconced in velvet. you know, if it were socially acceptable-- jerry: i know, you would drape yourself in velvet. george: i've said that before? jerry: many times. you love velvet, you want to live in velvet, everything with the velvet. kramer: (entering) hey. george: hey. jerry: hey. kramer: guess what? i saw newman talking to the super. jerry: so what? kramer: the super has keys to your apartment. don't you see what's going on? newman is planning a sneak attack. jerry: oh, maybe he's got no hot water. kramer: yeah, alright, fine. you sit there and you watch while newman takes over the world. but he'd be a horrible leader. and you know who's gonna suffer? the little people; you and george. jerry: are you through? kramer: oh. i talked to arthur jobanian. yeah, the drake's wedding? that's off. jerry: the wedding is off? what happened? kramer: the drake, he found out that the wedding is on the same day as the super bowl. so he wanted to postpone it, they got in a big argument and *phlf* it's over. george: the wedding is off. now you can go to the super bowl. jerry: i can't call tim whatley and ask for the tickets back. george: you just gave them to him two days ago, he's gotta give you a grace period. jerry: are you even vaguely familiar with the concept of giving? there's no grace period. george: well, didn't he regift the label maker? jerry: possibly. george: well, if he can regift, why can't you degift? jerry: you may have a point. george: i have a point, i have a point. jerry: alright, i'll call him. george: yeah. what's that? jerry: oh, it's risk, it's a game of world domination being played by two guys who can barely run their own lives. (picks up phone and dials) hello tim? yeah, hi, it's jerry seinfeld, remember those tickets i gave you? well it turns out i can use them. oh, you do? i understand. okay. bye. he already made plans, he can't change them. george: (eating a pickle) well they're his tickets, he can do what he wants with them. jerry: thanks. george: alright, i gotta go. i'm heading over to bonnie's. jerry: what are you gonna do about the roommate? george: i gotta try and find a way to switch places with him. it's like a sigfried and roy trick. jerry: well, the pickle breath is a good start. newman: hello jerry, may i come in? jerry: what do you want? newman: (squeezing himself through the narrow space) nothing, just being neighborly. do you wanna hang out? shoot the breeze? jerry: i'm not letting you cheat, newman. you're not getting anywhere near that board. newman: jerry? i'm a little insulted. jerry: you're not a little anything, newman. so just pack it up and move it out of here. newman: (leaving) oh, by the way, what are you doing for the super bowl? jerry: i dunno, watch it on tv i guess. why? newman: well if you watch closely enough, you just might see me. i'll be the one waving to the camera from my seat on the forty yard line. jerry: you're going to the super bowl? newman: yes i am, a guy on my mail route just got a couple of tickets and he offered one to me. jerry: what's his name? newman: tim whatley. jerry: that's my ticket! newman: is it?! ohhh, well if only you'd known, you could have saved some time and given it directly to me! ha ha ha. jerry: (as newman leaves) newman! george: what a movie. good choice. bonnie: thank scott. he recommended it. george: oh, scott, scott. he's really great, isn't he? bonnie: yes he is. george: yes he is. let me ask you something. when you come out of the shower and you put your robe on, do you cinch it real tight, are you concerned about that? bonnie: george? george: do you hold the neck together with one hand, or are you just letting it flap in the breeze? bonnie: george, you're being ridiculous. george: what's the massage situation? bonnie: what do you mean? george: is there any work being done? is there any rubbing, touching, finger manipulation on the other person, and if so, who's making the request? bonnie: george, would you just stop? george: say you go to the bathroom at two o'clock in the morning, what's the outfit? i mean, you dressing up or is it come as you are? bonnie: george, what is wrong with you? george: i'll tell you what's wrong, a grown woman with a male roommate! it's unnatural, it's an abomination! scott: hey! george: hey! scott: how ya going? george: i'm good. scott: (to bonnie) are you gonna need the bathroom? 'cause i'm gonna jump in the shower. bonnie: no, just throw my bras out of the way. tim: well, this is my building. elaine: yes it is. tim: this was fun, you know? elaine: yeah. tim: so, i'll call. elaine: aren't you gonna invite me upstairs? tim: upstairs? you wanna go upstairs? elaine: i would love to go upstairs. tim: elaine, you are something else. no one can ever put a label on you, huh? elaine: we'll see. jerry: newman. he's going with newman. george: how does tim whatley even know newman? jerry: newman's his mailman. george: who goes to the super bowl with their mailman?! jerry: who goes *anywhere* with newman?! george: well, he's merry. jerry: he is merry, i'll give him that. (notices a cactus on the table) what's this plant for? george: i had a little tiff with bonnie about the roommate. jerry: oh, well the cactus will smooth things over. elaine: hey, guess what? i'm going to the super bowl with tim whatley. jerry: what? elaine: we went out for coffee last night and he offered me a ticket. jerry: what about the label maker? elaine: ah, well. jerry: wait a minute, that's my ticket! you didn't even want to go. elaine: it was totally out of the blue. we went upstairs to his apartment, you know, to look for the label maker. jerry: so, how did you get up there? did you say you had to use the bathroom? elaine: no. jerry: then how'd you get up there? elaine: i said, "do you wanna go upstairs?" george: and there's you ticket. elaine: what? jerry: that's why you're going to the super bowl. elaine: why? jerry: you go out with a guy one time, you ask him to go upstairs like you're mae west? of course he's gonna try and get you alone for the weekend. elaine: you mean just because i asked him to go upstairs, he thinks he's going downtown? jerry: obviously. elaine: you're crazy. george: well, what happened when you got upstairs? elaine: as soon as we walked in, he got a call from one of his patients with an impacted molar or something so he had to leave. i didn't even get a chance to look for the label maker. jerry: yeah, well i don't trust this guy. i think he regifted, he degifted, and now he's using an upstairs invite as a springboard to a super bowl sex romp. kramer: hey. jerry: hey. what are you doing? kramer: i'm watching your door. jerry: my door? kramer: yeah, from my peephole. fisheye, sees all. jerry: (still outside) what was that? kramer: newman! newman: (fleeing to the bedroom) damn! jerry: (after entering) the bedroom! jerry: i see you, newman! i see you! kramer: i'm taking the congo as a penalty! elaine: i've got a confession to make. tim: oh? what's that? elaine: i've got super bowl fever. tim: oh yeah, me too. elaine: so where are we staying? tim: oh, the ambassador. elaine: oh. big room? tim: it's a regular room, but it's right downtown. elaine: downtown? tim: right downtown. elaine: what do they have there, a couple of beds? tim: why? you bringing someone else? elaine: no, but don't you think there should be two beds? there's two of us. bonnie: oh, a cactus. george: they don't need any water, so you don't have to keep taking them to the bathroom. scott: well, look who's here. bonnie: i asked scott to move out. george: oh. oh! jerry: so she kicked him out of the apartment. george: that's right. it's just me and her. jerry: wow, she rearranged her whole life for you. george: i guess she did. he's gone, now i'm the man. jerry: that's not a good role for you. george: no, it's not. jerry: you unwittingly made a major commitment. that's a lot of pressure. george: oh my god. jerry: you wanted to be ensconced in velvet, you're buried. george: i had the perfect situation here, he was shouldering half the load. jerry: he was shouldering. george: (walking towards the door) i couldn't leave well enough alone?! jerry: where are you going? george: i gotta go help her tape up all his boxes and get them ready for shipping. jerry: oh, well here. take whatley's label maker, i don't want to see it again. george: thanks. kramer: (rolling the dice) yeah. i am taking over south america and there ain't nothing you can do about it. jerry: so, too bad about that super bowl ticket, eh newman? newman: yeah. i just hope tim whatley's electric bills don't suddenly get lost in the mail, or it could be lights out for him. jerry: (walking out) thanks for having me over, guys. jerry: alright, i'll see you later. tim: hey jerry? jerry: ah, tim whatley. out scalping? tim: ah, see, now i've been thinking a lot about what happened and i feel horrible. listen, i want to give you a ticket back. jerry: are you serious, what about elaine? tim: oh, elaine. yeah, well, things just didn't work out like i thought they would. jerry: oh. (notices a car being jacked up by a tow truck) hey, isn't this kramer's car? (yelling up) hey, cosmo!! they're towing your car!! kramer: (running to the window) what?! not my car!! hey!! they're towing my car!! newman: what are you doing? kramer: i'm taking the board with me. tim: so, i guess i'll see you at the game. jerry: yeah, see you there. bonnie: hi, george. george: what, what happened? where's, where's all the stuff? bonnie: it's gone. it was all his. is this a label maker? george: the table, the stereo, the vcr, the velvet couch, where's the velvet? bonnie: they were his. besides, we don't need any of those things. we have each other. newman: are you sure you know where the impound yard is? kramer: oh, stop stalling. come on. newman: i can't think, there's all this noise. kramer: or is it because i've built a stronghold around greenland? i've driven you out of western europe and i've left you teetering on the brink of complete annihilation. newman: i'm not beaten yet. i still have armies in the ukraine. kramer: ha ha, the ukraine. do you know what the ukraine is? it's a sitting duck. a road apple, newman. the ukraine is weak. it's feeble. i think it's time to put the hurt on the ukraine. ukrainian: i come from ukraine. you not say ukraine weak. kramer: yeah, well we're playing a game here, pal. ukrainian: ukraine is game to you?! howbout i take your little board and smash it!! elaine: hello, tim. tim: (startled) elaine, hi. elaine: don't worry, tim. i didn't come by to yell at you, i didn't come by for that at all. i just came by to pick up my label maker. i gave you a label maker and now i would like to have it back. tim: but you gave it to me. elaine: but you gave me a ticket to the super bowl. hand it over, whatley. tim: uh, ok. elaine: you don't have the label maker, do you? tim: uh, no. elaine: i knew it! you're a regifter! tim: oh, yeah, some gift. that thing didn't work at all. elaine: what? tim: you put a label on something, then ten minutes later it would peel right off. it was the worst gift i ever got. elaine: (visibly upset) well, i bought it for you because you were so nice to me for not charging me for the dental work. the way you worked on my filling, you were so, so gentle and so caring and so sensitive. tim: oh, elaine! jerry: h... g... f. seat four. one, two, three... f-- hello newman. newman: hello, jerry. tim couldn't make it, he's in love. isn't that wonderful? jerry: oh, it's enchanting. bonnie: hi. george: here's the tv. i know you wanted to watch the super bowl. do you at least have some towels we could sit on? it's, like, a four hour game. bonnie: george, scott's gonna drop by. he said he never got his boxes. i'll get the towels. george: (internally) how am i gonna get out of this? think costanza, think! bonnie: here we are. george: hey, do you know, bonnie, i just had a pretty wild idea. bonnie: what is it? george: well i, uh, i'm not sure how you pronounce it or anything, but i, uh, i believe it's mnage trois? bonnie: what? scott: hi. bonnie: scott! remember what we talked about the other day? george is into it. scott: oh really?! newman: great streak of luck i'm having. first, kramer almost beat me at risk but i narrowly escaped, and then tim whatley gives me his super bowl ticket. jerry: can you move over at all?! newman: and then, just as i'm about to go, these boxes show up at the post office with no labels. no labels, jerry. you know what that means? freebies!! i got this great mini-tv and a vcr, oh it's unbelievable. jerry: an inch! can you move over an inch?!? gary: hey george. george: gary? well, well, well well. where the hell've you been? i've been leaving you phone messages for months. gary: i know. i've been pretty busy. george: busy. don't give me busy. who's not busy? i'm busy, we're all busy, everybody's busy. all right, tell me, what's kept you so busy? gary: mostly chemotherapy. 'kay, i'll see you. kramer: (to car as it accelerates away) hey pig! cop: (at car) hey! hey! hey! jerry: so you called the cop a pig? kramer: i was yelling at the litterbug. i mean this is my town. you don't throw trash on the streets of my town. jerry: didn't you explain that to the cop? kramer: no, i fled the scene. jerry: (to george) hey. kramer: (to george) hey buddy. george: hey, uh... kramer: what? george: kramer, i, i, i, uh, i need to talk to jerry privately. kramer: oh. what about? george: kramer... kramer: aw come on george, you can share it with me, huh? george: hey, you're hurting me! kramer: you gonna share it with me next time, huh? george: i swear, i swear! kramer: aw, all right, i'm looking forward to it. george: right, i got news. you ready? (deep breath) gary fogel had cancer. jerry: oh yeah, i knew. george: you knew? how did you know? jerry: he told me a few months ago. george: why did he tell you and not me? jerry: i don't know. george: how are you closer to him than me? george: so, is he okay? jerry: oh yeah, he's fine, fine. he was in bad shape for a while though. george: huh, really? how bad? was he on his death bed? jerry: no, he was on his regular bed. george: so why didn't you tell me? jerry: he swore me to secrecy. george: so? jerry: it's not like you're my wife. george: well, i still think you shoulda told me. jerry: hey, believe me, you were better off not knowing. it's not easy to deal with someone in a situation like this. i was so nice to him i almost made myself sick. george: well, i wanna talk to him about this. jerry: that's right, you let him have it. george: mmm-mm. jerry: who is he not to tell you about his life-threatening illness? george: that's what i'm saying. jerry: his illness is your business. george: if not mine, whose? jerry: if not now, when? elaine: were you just talking about me? george: no, an old friend of ours, gary. elaine: oh, the guy with cancer? george: (to jerry, yelling) you told her? she's not your wife! jerry: if i told you, you woulda given it away. george: you don't think i can keep a secret? jerry: no, but he would've read your face. george: you don't trust my poker face? jerry: do you ever win at poker? george: (shamefaced) no. kramer: hey. (to elaine) oh, i just saw your old boyfriend on tv. elaine: egh, jake jarmel? kramer: yeah. i really liked those glasses he was wearing. where'd he get those. elaine: why? you don't wear glasses. kramer: i know, i know. but i need a new look, i'm stagnating. george: i have to say, as a glasses wearer i take exception to that. that's like me buying a wheelchair to cruise around in. kramer: yeah, i've considered that. (to elaine) look, how do i get in touch with this guy? elaine: well, he's having a two day book signing at waldens. kramer: ah. elaine: you know, we had a really bad break-up. jerry: the jujy fruits? elaine: (upset) yeah, the jujy fruits. jake: okay, k-man, enjoy the book. kramer: okay, thank you. listen jake, uh, where did you get those eyeglass frames? jake: i can't tell you that. kramer: so you don't know where you got 'em? jake: yes i do. but i don't want anyone else to have them. kramer: well, that's peculiar. (leaves) george: eh, there's that woman that never talks to anybody. gary: really? george: every day she comes in, she sits at that table and reads. never talks to anybody. gary: oh, i talked to debby bibelo. she said to say hi. george: (pleasant surprise) really? (admonishing) you know gary, i really have to say, i'm a little bit hurt that you didn't decide to confide in me. gary: well frankly, you can't keep a secret. you know, you'd get two pair, the whole table knows. george: well i still think it was wrong. gary: right, well i'm sorry, all right. i guess i was just thinking of myself. george: (well, obviously) yes. kramer: ...so i called the litterbug a pig, not you. i like policeman. i wanted to be a policeman. cop: yeah? so why didn't you? kramer: scared of being shot. cop: mr kramer, let me tell you a story. in nineteen-seventy-nine i ticketed a brown dodge diplomat for parking in a church zone. that fine was never paid, and since then that scofflaw has piled up more parking tickets than anyone in new york city. for sixteen years i pursued him, only to see him give me the slip time and time again. i never got a clean look at his face, but he's become my 'white whale'. mr kramer, that day was yesterday! but thanks to you, i don't know if i'll ever get that chance again! kramer: i like that eye patch. george: (standing) all right, i'm gonna move my car, my meter's up. can't park in this city. gary: (standing) hey, george, listen. you know that company i work for, they own that parking lot around the corner. george: wha, that's a kinney lot? gary: yeah, and there's a space opening up, and i could get it for you. you just have to pay the tax on it. it'd be like, fifty a month. george: fifty bucks a month, that's incredible! okay, thanks. gary: all right, i got lunch, all right. george: you still owe me a secret. gary: all right, listen. there is something i haven't told you, all right? george: yeah? gary: yeah, but uhm, you can't tell jerry. george: what do think i tell jerry everything? it's not like he's my wife. gary: okay. well, the thing is, i've been living a lie. george: just one? i'm living like twenty. (chuckles) what's yours? gary: well, i (laughs) i never actually had cancer. (laughs) i'll see you. (leaves) elaine: so he refused to tell you where he got the glasses? kramer: (rising) flat out refused! (walks past jerry, who moves his legs) elaine: yeah, isn't that just like him? (she steps over jerry's legs) you know, he has to be the only one who has 'em. kramer: yeah, tell me about it, soul sister. (he opens the door to leave) anyway, i told jake that you said hi. elaine: what? (she slams the door shut before kramer can exit) you told jake i said hi? kramer: yeah. elaine: i can't believe you did that! why did you tell him i said hi? i never said hi! (to jerry) when did i say hi? jerry: i never heard her say hi. kramer: well, it's uh, common courtesy. elaine: no, no. (stamps foot) kramer, you don't understand. he made the last contact between us. i had the upper hand in the post-breakup relationship. if he thinks that i said hi, then i lose the upper hand. jerry: it's like a game of tag. jerry: where you going? elaine: nowhere. jerry: you're going to the book store to see jake jarmel, aren't you? elaine: so what if i do? (heads for the door) kramer: (to the exiting elaine) yeah, well, listen. if you're going there, (following her out the door) maybe you can get him to tell you where he got those glasses. (shouting after her) elaine! jerry: hey. how'd it go with gary? george: (shifty, avoiding jerry's eyes) fine, fine. (he removes his coat) jerry: (suspicious) really? george: (shifty) yeah. jerry: you look like something's on your mind. george: no. nothing. fine. (he sits at the table) jerry: so, that's your poker face. george: my regular face. jerry: no it isn't. i've seen your regular face. that is not it. george: what are you saying? jerry: all right george, c'mon, what d'you got? (sits opposite george) george: i got nothing. jerry: what you got, a pair of bullets? george: what you talking about? jerry: two pair? three of a kind? george: will you stop it? jerry: oh my god, you got a flush! you're holding a flush! george: i don't have a flush. jerry: a full house? you got a full house? turn 'em over george, i wanna see 'em. come on, i'm calling! (thumps hand on table) what d'you got! george: (broken, shouts) gary fogel never had cancer! elaine: so you see, kramer took it upon himself to say hi to you from me. when in fact it was an unauthorised hi. jake: you're saying you didn't say hi. elaine: that's what i'm saying. jake: so that's what you came down here to tell me? elaine: correct. jake: you never said hi? elaine: correct. jake: you still like me, don't you? elaine: correct. (catches herself) what's that? man: hey, i have been trying to get this book signed all day. elaine: (takes the book from the guy and signs it herself) how can you say that i still like you, when i didn't even say hi to you? jake: elaine, coming down here to say that you didn't say hi is more of a gesture than if you did say hi. elaine: ah, jake... (realises his logic) i, uh... george: the doctors thought he had cancer, but the surgery revealed he never actually had it. jerry: so what was wrong with him? george: nothing! jerry: so he's been lying to me for two months?! george: that's right. jerry: what kind of person is this? there's only one other person who might be able to do something like this, and that's you. george: well... jerry: i don't even think you could do it. george: oh, i could do it. jerry: yeah, i guess you could. george: (snorts) c'mon. jerry: did you know he was so worried about losing more hair if he had to get chemo treatment, i bought him an unlimited gift certificate at the hair team for men, just to put his mind at ease? george: you did that? jerry: yeah. oh, i can't wait to talk to this guy. (moves to pick up phone) george: wait a minute, wait a minute. you can't say anything. (rushes to take phone from jerry) jerry: why not? george: (puts down handset) because he'll know i told you. besides, he's giving me a parking spot around the corner for practically nothing. jerry: so you're telling me, because you're getting free parking, i gotta pretend this guy had cancer when he didn't? george: yeah. jerry: well i don't like it. i don't like it one bit! and, i'm supposed to see him tomorrow. george: yeah, well you have to maintain the same disposition too. you can't start acting any differently. you have to be nice. jerry: why didn't he tell me? george: because you were being so nice. jerry: i don't think i can be that nice. george: (shouts) you be nice! jerry: gary? gary: what d'you think? check it out. (he tries a number of expressions, turning his head side to side, to show off the hairpiece) jerry: is that from my gift certificate? gary: yeah buddy. you really came through for me man. you've been so nice. (shakes jerry by the hand) jerry: (through gritted teeth) yeah, well, i'm glad you could take advantage. gary: hey, you know what i'm thinking of doing? i'm getting rid of all my fillings, 'cos that mercury's toxic. hey, let me see your fillings. jerry: i don't think so. gary: oh come on, open up. let me take a look. george (v.o.): you be nice! he's giving me a parking space (echoes) parking space... parking space... gary: (peering in) well, what d'you know. hey, lookee there, you're loaded. jerry: okay. (shuts mouth) gary: hey, look who's over there. miss cool-toes. check this out, jack! (rises) kramer: (to jerry) hey buddy. jerry: hey. look at you. wha... what's this? kramer: it's an eyepatch. jerry: you look like a pirate. kramer: i wanna be a pirate. jerry: (gesturing) this is gary. kramer: (to gary) how you doing? gary: all right. kramer: well, i tell you there's only one problem. jerry: can't see on your right side? kramer: no. it's uh, (swaps patch to the other eye) it's itchy debby: nice car. george: yeah. once belonged to jon voight. debby: so, what made you just call me out of the blue like that? george: oh, well, uh. gary told me you said hi. debby: i didn't say hi. george: you didn't? debby: uh, no. i told him to send you my regards. i didn't say hi. george: regards? debby: yeah, regards. elaine: anyway, i admit i was dumb to go to the bookstore to tell him i didn't say hi, but he didn't have to act so smug. oh, i hate smugness. don't you hate smugness? cabbie: (heavy accent) smugness is not a good quality. elaine: (looking out of window) oh my god. that man over there. i think he's wearing glasses that look just like jake's. pull over, stop the car. (hands money to cabbie as she exits) here, here. i think i got a way of getting back at my ex-boyfriend. cabbie: good. revenge is very good. elaine: (calling down street) 'scuse me! 'scuse me. (catches up to guy) excuse me, sir. sir? guy: yes? elaine: uh. ah, if you don't mind my asking, could you tell me where you got your glasses? guy: malaysia. elaine: malaysia? guy: yeah. elaine: uhm, look, i know this'll sound odd, but can i buy them from you? guy: actually, i was gonna buy a new pair. elaine: (positive) oh! (little chuckle) guy: but i, i can barely see without these. elaine: c'mon. guy: well, these were expensive. elaine: let's start the bidding. george: so, you didn't think this was a date? debby: n... no, not really. why, is it... a date? george: i thought it was a date. debby: no. it's not a date. george: what about the regards? debby: regards don't mean anything. i mean, it's not like i said hi. hey, the fact is... (sighs) i shouldn't say anything. george: no, tell me. debby: can you keep a secret? george: me? oh yeah. debby: (deep breath) i never had feelings for gary until he got sick. but, h... he was so brave and... and gained such a wonderful perspective on life. i... i fell in love with him. george: oh, the guy's got some perspective there. jerry: hey, do you know what the whip does? kramer: what whip? jerry: the whip. in the senate, in the house. kramer: well, you know in the old days, when the senators didn't vote the way that the party leaders wanted 'em to... they whipped them. (holds imaginary whip) you better vote the way we want you to, or there's gonna be big trouble. (cracks invisible whip and makes sound effect) gary: she won't talk to anyone, huh? oh no, she won't say a word to anybody. well, she's talking a blue streak now, jack! cop: well, well. the 'white whale'. george: (frustrated) oh, look at this. there's no place to park around here. i don't even know why they sell cars in manhattan. debby: don't complain, at least you have your health. debby: george, look out for that man! cop: (to escaping car) hey! hey, get back here! kramer: (looking after fleeing car) newman! the white whale! george: can you believe he sold his glasses on the street? jerry: can you believe someone would lie about chemotherapy to get a wig? would you do that? george: no. definitely not. jerry: yeah. george: i'm pretty sure i wouldn't. jerry: and you know what else? he picked up that woman in the coffee shop. george: the one who always sits by herself? jerry: yeah! george: how did he do that? jerry: because he was brimming with confidence from the toupee. george: really? and debby told me that she fell in love with him because he has all this perspective! jerry: she thinks a guy who lies about a life-threatening illness, so he can get some phony hair has perspective? george: (opening door to leave) he picked her up? jerry: walked right over to her table. george: wow. (he runs his fingers through his hair, and then brushes the resulting fallout off his jacket) elaine: jake, jake. take a look. (puts on the frames she bought) aaw, see, you're not the only one who has 'em. i have them too. jake: where did you get those? elaine: malaysia. i was in the area. newman: (surprised) kramer. kramer: just drive. kramer: all right. now you listen, and you listen good. i know who you are. you're the scofflaw. newman: (defensive) what're you talking about... kramer: (interrupting) ah, don't play dumb. it's me, cosmo. newman: all right, so it's me. so what? kramer: you don't think i know how you're feeling, every second of the day? looking over your shoulder to see if someone's coming up from behind. sitting alone at night, knowing they could be closing in. newman: i can't sleep, i tell you! i can't sleep! kramer: ga, of course you can't, you poor sap! now why didn't you tell me? newman: i couldn't. i couldn't tell anyone. kramer: so you been living this secret the whole time by yourself? newman: (sobbing) yes, it's been awful. i wanted to tell somebody. (pleading) help me kramer! help me! kramer: all right, all right, i'm gonna help you. george: i'll try some on and see how they look. it's just hair. jerry: you ever see what that thing looks like in the back? you got your natural little curls on the bottom, and then that big phony mat coming down on top of 'em. george: well, some of 'em look good. the ones that look good you don't even know about. jerry: what if you get involved with a woman? how're you gonna tell her? george: the way they make 'em these days, i'll never have to tell her. jerry: so you keep it a secret your whole life, then at your funeral the mortician comes out (as mortician) 'here, mrs costanza, i thought you might want this'. (as mrs costanza, horrified) aahh! lippman: it's no secret that it's my dream to have my own publishing house, and if this jake jarmel book does, you know, what i think it's gonna do. if i can get this whole thing off the ground, then , you know, i think i'll have something for you. (laughs) elaine: oh, mr lippman. (joins laughter) that is so exciting. i mean, you have no idea how sick i am of running around town looking for socks. lippman: yeah, by the way, those are great glasses. elaine: oh really, you like 'em? lippman: uh huh. very unusual. elaine: well, you know what? (removes glasses) lippman: what? elaine: (hands them over) you can have 'em. lippman: oh, no no no. (waves them away) please. elaine: no no no no. go to that place on the corner, they'll change the prescription in an hour. take 'em. lippman: really? elaine: yeah, i've no use for them anymore. honestly. lippman: (accepting) i could use a new pair of reading glasses. elaine: they're from malaysia. lippman: (putting on spectacles) oh yeah? elaine: (admiring gasp) fabulous. judge: well mr newman, in all my years on the bench, i have never come across anything quite like this. i have given this matter some very serious consideration and i've decided that what's best for the city and possibly for yourself, is for you to keep your car, in a garage... judge: ...convenient to your home. newman: (sobbing) i can't afford that! judge: afford it you will, mr newman. or this court will see that your car is impounded... judge: ...and sold at auction. kramer: well, don't you worry, your honour. he's in my custody. george: (to jerry) well, what d'you think? jerry: (unimpressed) i, really can't say. george: no, say. i want you to say. jerry: it's not good, okay. it's not good. you look (searches for word) stupid. (to salesman) i'm sorry. salesman: you have to realise this has not been custom-fitted to his scalp. george: (examining reflection) i really think this looks pretty good. jerry: why don't you get a pair of white shoes, move down to miami beach and get the whole thing over with? george: (to salesman) well, maybe you could show me something else. salesman: as i said, it'll be different once we design something specifically for you. but i don't think your friend here is being very helpful. jerry: oh, hey, i'm being helpful. i am the only one being helpful! salesman: (getting annoyed) no, i don't think you're being helpful! i think you're being disruptive, and you make it very difficult for your friend here to improve his life! jerry: hey! i'm trying to prevent my friend from becoming one of those guys people snicker at behind their back, because they look ridiculous! no offence to you personally! salesman: (angry) all you people with hair think you're so damn superior! you have no idea what it's like. you ever look down in the bottom of your tub and see a fist fulla hair? how'd you like to start your day with that?! (looks ready to punch jerry) jerry: all right! take it easy! take it easy. george: (leaps to feet) jerry! jerry: i'm sorry. george: please. (sits again) gary: hey jerry, th... (spots george) george, you decided to get a rug! good for you, jack! george: well, i'm, i'm just looking. gary: oh. (to salesman) uh, tommy, i'm gonna need a little adjustment. salesman: i'll be right with you. gary: listen, george, i got some bad news. i'm not gonna be able to give you that parking space. george: what? jerry: what? gary: this judge has to use it for some scofflaw. and you know you can't fight city hall. jerry: you know, gary (slams shut the door) i had a little chat with george the other day... gary: (to george) you didn't?! george: (admiring himself in mirror) i did. jerry: (advancing on gary) ...and he told me that that... (becomes indistinct) gary: (indistinct) i'm not a hundred percent recovered yet! jerry: gimme that thing! george: how's your life? all right? woman: yeah, not bad at all. lippman: (at lectern) and now, uh, ladies and gentlemen of the press, it is my pleasure to introduce you to mr jake jarmel. (he applauds jake as he vacates the lectern in his favour) reporter: so jake, what's your percentage on this book? lippman: oh, actually i, uh, i have some very interesting information on that. (puts on glasses) you know, uh, this is a co-venture and as... jake: (notices glasses) where did you get those? lippman: ... as such, it... jake: those glasses, where did you get those glasses? lippman: (confused) where... what? jake: (to elaine) is this supposed to be some kind of a joke on me? because it's not very funny. (to the nonplussed lippman) give me those! (yelling) i want the glasses! give me those! elaine: (mouths) 'scuse me. have to go (audible) look for some socks. jerry: look at you. why don't you use a fork? you're no good with the sticks. elaine: i know. i need a lesson. jerry: you stink. you know you stink. what is this? elaine: oh. my ballet tickets. jerry: oh. your ballet tickets. elaine: hey, have you ever been to the ballet? jerry: no, but i've seen people on tiptoes. elaine: you know, i'm going as a beard. jerry: a beard? elaine: yeah. this friend of a friend knows this banker guy, he's, i don't know, 30 years, unbelievably gorgeous, of course he's gay. jerry: yes. elaine: so anyway his boss has a box at the met and he invited us to see swan lake, which is fine, but he's afraid that his boss can't handle his orientation, so i'm going along as his date. jerry: why are you doing this? elaine: swan lake, at the met. kramer: oh, chinese food. i knew i smelled something. elaine: hey, is george still wearing that toupee? jerry: yeah. elaine: doesn't he know how ridiculous he looks in that thing? kramer: i think he looks fantastic. elaine: oh, come on. kramer: no, i never realized what an attractive man he is. george: hey, people, people, people, people, people. not bad, huh? excuse me. elaine: you look ridiculous in that thing. george: is that so? or could it be that you're just a *little* bit worried that you may have missed the boat? elaine: well i think they might have sutured that thing to your brain. george: ha ha ha ha, oh all right, go ahead, deride, deride if you must. but let me tell you something, with my personality and this set of hair, you know what i am now? i am in the game. i no longer defer to the coifed. i'm a player. kramer: you know i just thought of something. i know this gorgeous woman, she called me up this morning, she's moving into the city, and she asked me if i know of anyone she could meet. now you can go out with her. jerry: well what about me? kramer: no i think he's got you beat buddy. george: so she's gorgeous. kramer: oh yeah, last time i saw her she was, five years ago. george: well have you got a picture? kramer: no. george: well, i have to see her. kramer: hey, i know what we can do. i've got a friend who works over at the police station. he's a composite artist. george: really? kramer: yeah, yeah, maybe i can get him to draw a picture of her for you. george: oh i would love that. you think he'd really do it? kramer: yeah, yeah. i think he will. jerry: it sounds like an excellent idea. kramer: hey jerry, you want this, cause i'm going to give it to a homeless person. george: well i'm very excited about this. i've always wanted to see how those sketch artists do it. kramer: here you go brother. some food for you. homeless man: thank you. you're a good man. bless you. kramer: now are you going to be here in an hour? homeless man: where am i going? kramer: oh that's good, that's good. make the eyes, uh, what's that nut? lou: almond? kramer: almond. yeah. make the lips fuller. poutier. george: pouty? i like that. jerry: you can't go wrong with pouty. george: i'm excited about the pouty. lou: all right i think that about does it. kramer: all right george, come on, take a look. george: oh yeah, you were right. she's gorgeous. jerry: hey, lou, who's that woman over there? lou: oh, that's sergeant tierney. nice officer. you want to meet her? george: well this worked out okay. so are you going to see the police woman? jerry: yeah, i think i will. i like the idea of having the law on my side. kramer: hey, man. enjoy the food? homeless man: yes i did. where did the chinese learn to cook like that? kramer: oh, listen, i'll take that tupperware now. homeless man: i don't think so. kramer: woah, woah, that's mine. homeless man: you gave it to me. kramer: no, no, i didn't say you could keep it. you see i don't give away tupperware. homeless man: you should have said something. kramer: i didn't think i had to. look with a piece of tupperware you just assume. robert: i've really got to thank you for this. elaine: well by now, you think people would be a little more open minded. robert: really. would you excuse me? i have to run to the bathroom. boss' wife: so, um, you and robert. elaine: yes indeed. boss: i'm surprised. elaine: really. why? boss: no reason. elaine: well believe me this didn't happen overnight. robert's not exactly a *one* *woman* *man*, if you know what i mean. no sirree bob. sure, i mean in a lot of ways, he's a typical guy, he likes his sports, but he counters that side with the side you see here tonight at the ballet, or the pleasure he gets in watching ms. liza minelli belt out a few choice numbers. it's those two halves of his personality that just come together to make him the very special guy that he is. elaine: oh, hi honey. elaine: oh it was such a great night. jerry: and did they suspect anything? elaine: no, i was a fantastic beard. i held hands, i called him honey. jerry: and we discover yet another talent. posing as a girlfriend for homosexuals. elaine: oh it was such a great night. oh. jerry: you said that already. elaine: oh i did? jerry: yeah. elaine: oh. jerry: oh no. don't tell me. you like him? elaine: he's incredible. jerry: yeah, but? elaine: yeah, i know. jerry: so? elaine: what? jerry: not conversion. you're thinking conversion? elaine: well it did occur to me. jerry: you think you can get him to just change teams? he's not going to suddenly switch sides. forget about it. elaine: why? is it irrevocable? jerry: because when you join that team it's not a whim. he likes his team. he's set with that team. elaine: we've got a good team. jerry: yeah, we do. we do have a good team. elaine: why can't he play for us? jerry: they're only comfortable with *their* equipment. elaine: we just got along *so* great. jerry: of course you did. everyone gets along great when there's no possibility of sex. elaine: no, no, no, i sensed something. i did sense something. i perceived a possibility jerry. jerry: you realize you're venturing into uncharted waters. elaine: i realize that. jerry: are you that desperate? elaine: yes i am. jerry: so are you going to bring your gun?... all right, then it's settled. first date, no weapons... all right i'll see you then... okay, bye. jerry: what are you looking for? kramer: tupperware. jerry: sorry. i don't have any tupperware. kramer: i knew this was going to happen. i just made a delicious casserole, but now it won't keep because i have no tupperware. jerry: what about a plastic bag? kramer: you must be kidding. jerry: what is the difference? kramer: the patented burp, jerry. it locks in freshness. george: so i spoke a little to your little friend denise last night. kramer: oh yeah, you talked to her. george: yeah for two hours. she's nuts about you. kramer: yeah well we go way back. george: why didn't anything happen between you two? kramer: who's to say it didn't? jerry: so did you describe yourself to her over the phone? george: yes i did. jerry: what did you say to her? george: what do you think i said? jerry: i don't know. george: i told her the truth. jerry: as you see it? george: yes, as i see it. jerry: did you tell her about, uh, your little hat there? george: what hat? jerry: you know, you're little hair hat there. george: no. jerry: don't you think she could tell? kramer: no, no, no she can't tell. it's a perfect match. beautiful job. jerry: are you kidding? i could spot that bird's nest two blocks away. george: you only think that because you know me. jerry: have you noticed people staring at your head? george: i noticed people staring at my head because they like what they see. jerry: well i think you should either take it off or tell her about it. kramer: no he's not going to take it off. if he was going to go over there bald, i never would have introduced him. george: look, i guarantee she won't know. kramer: yeah that's it. all right, i'm going to go down to the precinct. i'm going to have lunch with lou. jerry: oh, i'll split a cab with you. kramer: hey i'm really sorry about the other day. really sorry. homeless man: hey that's my coffee! jerry: hi sarge. tierney: hi, i'm sorry i'm late. some of our lineup decoys didn't show. hey any of you guys want to be in the lineup? make a quick 50 bucks? kramer: sure. i will. tierney: perfect. just go over there with officer lampert. speaker: all of you, turn to the left. speaker: the left. speaker: now turn to the right. george: (thinking to himself) oh my god, there she is. that's the face, just like the picture. denise: george? george: yeah. hi. it's great to meet you. denise: likewise. have you been waiting long? george: no, no. i just got here. a few minutes ago. denise: good, good. george: well why don't you take off your hat and stay awhile. jerry: what's that? tierney: a polygraph. it's what you civilians call a lie detector test. jerry: oh. let me ask you, when someone is lying, is it true that their pants are actually on fire? tierney: if i could tell you the famous faces that have been up here. a certain cast member of melrose place. jerry: really. tierney: have you ever seen the show? jerry: no. tierney: you can admit it jerry. it's okay. jerry: i admit it. i don't watch it. tierney: hey lou, maybe we should put him on the poly. jerry: the poly? tierney: yeah. i think you've seen it. elaine: melrose place? jerry: yes. melrose place. elaine: i just didn't know you watched that. jerry: well i do. elaine: i mean every time i mention it you never say anything or join in the conversation. jerry: well maybe i was a little embarrassed. elaine: you mean this whole time we could have been discussing sydney and michael and jane... jerry: and billy and jake and allison, yes we could have discussed it. elaine: why? why were you so embarrassed? jerry: the point is i'm going to be taking this lie detector test and that needle's going to be going wild. elaine: that is *so* stupid. why don't you just confess? jerry: it's too stupid to confess. look at what i'm confessing to. elaine: so what are you going to do? jerry: i don't know. maybe i can beat the machine. elaine: oh, who do you think you are? castanza? jerry: hey you know what? i have access to one of the most deceitful, duplicitous, deceptive minds of our time. who better to advise me? elaine: oh god this tastes terrible. jerry: did you shake it up? elaine: no. jerry: you gotta shake it up. elaine: no. i'm sick of shaking. you've got to shake everything. jerry: yeah, that's a real nuisance. this is killing me. elaine: so, i'm going out tonight with robert and the boss and his wife. jerry: so tonight are you going to make the move? elaine: yeah, i think i might. jerry: hey there he is. so what happened? could she detect it? george: that's an interesting question. jerry: how so? george: how so? i'll tell you how so. she's bald! elaine: what do you mean bald? george: what do you think i mean bald? bald. bald bald. jerry: she's bald? george: she's bald. elaine: oh come on. george: oh come on? no come on. she took off her hat and there she was (waving his hand over his head) hello. it was like i was looking at myself in the mirror. elaine: well maybe she got a haircut or something. george: let me tell you something. no one walks into a beauty parlor and says "give me the larry fine." jerry: women go bald? elaine: yeah, i've heard of that. i mean they usually wear a wig. jerry: hey. kramer: hey. george: you fixed me up with a bald woman. kramer: bald? george: yeah, that's right. elaine: do you see the irony here? you're rejecting somebody because they're bald. george: so? elaine: (puts her hands up to her mouth) you're bald! george: no i'm not. i *was* bald. george: elaine. george: no, no, no elaine. elaine: (shouting) i don't like this thing. and here's what i'm doing with it. george: nooooo. robert: hahaha, why'd you start that fight with me? elaine: well i figured that's what couples do. robert: you almost convinced me we were a couple. elaine: well it was easy. really. robert: well good night, i'll call you tomorrow. elaine: oh, uh, wait a second. would you like to come, upstairs? robert: upstairs? elaine: yeah. upstairs? robert: elaine... elaine: i was hoping you know, that you might be interested in... changing teams? robert: changing teams? elaine: have you ever thought about it? robert: but i'm a starting shortstop. elaine: robert, we need a shortstop. *real bad*. george: i tell you, when she threw that toupee out the window, it was the best thing that ever happened to me. i feel like my old self again. totally inadequate, completely insecure, paranoid, neurotic, it's a pleasure. jerry: good to have you back. george: and you know what else i've decided to do? i'm going to keep seeing the bald woman. jerry: she's as good as anybody else. george: her scalp was clean. she had a nice skull. there just wasn't a lot of hair on it. jerry: yeah you've had like a religious awakening. you're like a bald-again. george: going to need a little more coffee here. jerry: so george, how do i beat this lie detector? george: i'm sorry, jerry i can't help you. jerry: come on, you've got the gift. you're the only one that can help me. george: jerry, i can't. it's like saying to pavorotti, "teach me to sing like you." jerry: all right, well i've got to go take this test. i can't believe i'm doing this. george: jerry, just remember. it's not a lie... if you believe it. elaine: hey, i did it. jerry: what? elaine: i turned him. he defected. jerry: get out! (pushes elaine) how? how did you do that? elaine: because i'm a *woman*. (swiveling her hips) ba-ba-ba-boom-chicka-boom-chicka-boom-boom- boom. jerry: elaine, do you know what you've done? you've give hope to every woman who's ever said "too bad he's gay". elaine: well it's a lesson for the kids out there. anything's possible. jeromy, i have *hit* the jackpot. the perfect man. nothing but sex and shopping. lou: what's your name? jerry: jerry seinfeld. lou: what is your address? jerry: 129 west 81st street. lou: did kimberly steal jo's baby? jerry: i don't know. lou: did billy sleep with allison's best friend? jerry: i don't know. lou: did jane's finance kidnap sydney and take her to las vegas? and if so, did she enjoy it? jerry: i don't know. lou: did jane sleep with michael again? jerry: (he hesitates) yes! that stupid idiot. he left her for kimberly, he slept with her sister. he tricked her into giving him half her business, and then she goes ahead and sleeps with him again. i mean she's crazy. how could she do something like that? oh that jane, she makes me so mad. jerry: he went back? what do you mean he went back? elaine: he went back. jerry: i don't understand it. you were having such a great time, the sex, the shopping. elaine: well here's the thing. being a woman, i only really have access to the, uh... equipment, what, thirty, forty-five minutes a week. and that's on a good week. how can i be expected to have the same expertise as people who *own* this equipment, and have access to it twenty-four hours a day, their entire lives. jerry: you can't. that's why they lose very few players. elaine: yeah, i guess i never really stood a chance. jerry: well there's always a place for you, on our team. elaine: yeah. (teary-eyed) thanks. is melrose place on? jerry: yeah. it's coming on in a few minutes. elaine: okay. jerry: hey. don't worry it hasn't started. elaine: hey george, i am *really* proud of you. i really do admire what you've done. george: do you? that makes me so happy. elaine's proud of me jerry. elaine: what is the matter? george: i got rejected by a bald woman. a bald woman rejected me. heh, you like that one? a woman with no prospects and no *hair*, told me that i wasn't her type. apparently *baldy* likes a slimmer guy. kramer: well i'll tell you what i think. i think she saw you with that piece off and was devastated. you blew it boy. you really blew it. and you had to ruin it for him. didn't you? elaine: i didn't ruin anything. he looked like an idiot. he did, and it made him act like a jerk. jerry: all right, shut up, shut up, melrose place is coming on. jerry: oh that michael, i hate him, he's just so smug. kramer: hey, how you doing stu? eddie, my man. you again? boy, you're a slippery one. you'd better straighten up and fly right buddy boy. man: i've got an eyewitness to that jewelry store break-in. come here. do you recognize anybody in the lineup? homeless man: that's the guy officer. the guy there in the middle. the tall guy with the, with the high hair. i'd recognize him anywhere. man: hey you, you with the high hair, step forward. kramer: me? george: say it's saturday night in spain. they go out dancing. you think they do the flamenco? jerry: i would think. george: so you could call a woman for a date, ask her if she's free for dinner and a flamenco? jerry: (scoffs) you don't flamenco on the first date. george: boy, i wish the flamenco was popular here. jerry: yeah? would you do it? george: yes, i think i would. jerry: well, i knew you'd have an affinity for it, because it's the dance of a very proud people. jerry: hello. (listens) oh, hi nana. (listens) what? oh. oh, alright, okay. don't worry about it. (listens) okay, i'll see you later. alright, bye. jerry: i have to go over to my grandmother's. george: what for? jerry: i have to open a bottle of ketchup for her. george: so, what, no lunch? jerry: no, we have time. george: oh. how's she doing? jerry: ah, she's starting to slip a little. sometimes she has difficulty distinguishing between the past and the present. george: ah. you know, there's gotta be an easier way to open ketchups. they should make it in a tube. jerry: like toothpaste? george: ya-hah. jerry: there's a squeeze ketchup. george: i've seen squeeze mustard. i've never seen squeeze ketchup. jerry: well, if they make squeeze mustard, doesn't it stand to reason that they make squeeze ketchup? george: not necessarily. mustard lends itself to the squeeze. jerry: i really don't see the difference. george: oh, there's a difference. it's subtle. jerry: it's subtle. george: hey uh, isn't elaine supposed to meet us? jerry: (looking ahead) yeah, there she is. uh-oh. george: what? jerry: ah, she's with her friend wendy. george: wendy? is that the uh, physical therapist? jerry: yeah. i'm on a kiss hello program with her. george: really? jerry: yeah. every time i see her, i gotta kiss her hello. i just did it once, on her birthday, somehow it mushroomed. now i dread seeing her because of it. elaine: (from a distance) hey. george: you know, i'm down to one kiss hello. my aunt sylvia. jerry: ah, that's fortunate. i really admire that. george: (surprise) huh. i never heard you say you admire me for anything. jerry: no, i told you i admire your hearing. jerry: no, don't slough that off, you have great hearing. george/jerry/elaine/wendy: hey/hi/hello (etc.) elaine: (to wendy) wendy, george. (to george) wendy. george: you're uh, physical therapist, right? wendy: yes. george: you know, i got this little swelling right here. (rolls up his sleeve to expose his wrist) it's kinda painful. what d'you make of it? elaine: (warning) george. wendy: have you tried heat and ice on it? george: (reluctant) oh that uh, that seems like a lotta trouble. wendy: well, you could come by my office later, i could work on it for you a little. george: (happy) oh! okay. wendy: let me give you my card. george: oh, thank you. wendy: well, i'll see you guys later. (to george) nice meeting you. bye elaine. elaine: bye wendy. i'm sorry. wendy: bye jerry. jerry: bye. elaine: (slapping george on the arm) what did you do that for? george: what? elaine: (pinching george's arm) ask about your arm. george: i still don't see why i can't ask her about my arm. elaine: she's a physical therapist. she doesn't want to have to deal with that outside of the office. george: why not? elaine: because, it is what she does. george: i love these people, you can't ask 'em questions. (getting excited) they're so mentally gifted that we mustn't disturb the delicate genius unless it's in the confines of an office. (worked up) when huge sums of money are involved, then the delicate genius can be disturbed! elaine: george, you got a little something, right here. george: (wiping the area with a hand) people think they're so important... jerry: (adamant) well, i'm going on record right now that that was my last kiss hello. i am getting off the kiss program with her. elaine: why? jerry: well, you know, frankly, outside of a sexual relationship, i don't see the point to it. i'm not thrilled with all the handshaking either, but one step at a time. george: (regarding the menu) what're you getting? jerry: (to elaine) and what's with that hairdo, by the way? elaine: huh, yeah, i know. it's not very flattering. jerry: she looks like something out of an old high school yearbook. you should say something to her. elaine: oh, i could never say anything to her about that. jerry: yeah. kramer's the only person who could say something like that. elaine: yeah. hah. george: well, just tell kramer to tell her. elaine: no. if you tell him to do it, he'll never do it. jerry: what you have to do is introduce him, and then he'll just come out with it. elaine: (sharp intake of breath) hoh. yes, yes, you're right. that's right. i'll bring her over to meet... elaine: (to kramer) ...kramer. kramer: hello, boys and girls. jerry: speak of the devil. kramer: yeah. hey listen, i uh, i need a picture of you, buddy. jerry: what for? kramer: well, i'm uh, i'm putting everybody's picture up in the lobby of our building. jerry: why? kramer: so everyone will know everybody's name. see, people are gonna be a lot friendlier. jerry: (reluctant) i, i don't want my picture plastered up in the lobby. kramer: imagine walking by someone on the floor, and you say "hey, carl!" and he says "hey, jerry!" you see, that's the kind of society i wanna live in. jerry: (still reluctant) kramer, i don't wanna stop and talk with everyone, every time i go in the building. i just wanna nod and be on my way. kramer: (to elaine) you know your eyeliner's smudged a little. why do you wear so much eye makeup? elaine: (to jerry, indicating kramer) yeah. this is gonna work out just fine. leo: ma! again with the ketchup? don't they have 'em in the plastic squeeze containers? leo: (traditional greeting) jerry! hello! jerry: hello, uncle leo! leo: what're you doing here? jerry: nana called me to open the ketchup bottle. leo: yeah, me too. nana: hello jerry. jerry: hi nana. leo: aren't you gonna kiss her hello? jerry: yes. (kisses nana) yes of course. nana: ha, well, here's the bottle. leo: (grabbing the bottle) i'll do it. jerry: (also grabbing) what're you doing, i got it. leo: give it to me. jerry: will you stop it. leo: jerry, will you give me the bottle? jerry: uncle leo! (releasing his grip) alright! take it! nana: you should let buddy open it. leo: buddy? he lived next door to us forty-five years ago. nana: leo, did you give helen the fifty dollars? leo: what fifty dollars? nana: your father won a thousand dollars at the track last week, and he gave you a hundred, and you were supposed to give fifty dollars to your sister. leo: ma, dad died in nineteen-sixty-two. leo: (laughing off nana's confusion) believe me. i don't owe your mother fifty dollars. jerry: i'm just not getting any hot water. julio: hey, believe me, i know there's nothing worse than when your shower's not working. i'm gonna take care of it as soon as i can, jerry. jerry: thanks, julio. julio: awright. jerry: huh? kramer: (surprised) hey, hey hey hey. hello! jerry: what's going on here? kramer: (evasive) ohh, nothing, nothing. jerry: (suspicious) well, then what're you doing? kramer: oh, i, i need a pen. jerry: what for? kramer: well, i'm making out my will. oh, i got a big slice of dough for you, buddy. and you too, elaine, i haven't forgotten you. jerry: (accusingly) you're looking for a picture of me, aren't you? kramer: you got that straight. jerry: i told you, forget it. kramer: oh, come on, jerry. if everybody knew everybody, we wouldn't have the problems we have in the world today. well, you don't rob somebody, if you know their name! jerry: you're robbing me. kramer: well, i'm gonna get your picture, and you're gonna participate in my program. elaine: wha... w.. are you going home? kramer: yeah. elaine: uh, could you come back in about five minutes? kramer: why? elaine: no reason. (big smile) just wanna see you again. jerry: (removing his coat) so? are you sure wendy's coming? elaine: yeah, she'll be here any second. jerry: well, this'll be a very interesting experiment to see if kramer says something. you sure you wanna go through with this? elaine: listen, jerry. she never dates, and i know it's because of her hair. jerry: hello. oh, hi mom. yeah, i was at nana's yesterday. i had to help her open a ketchup bottle. hey, mom, let me ask you a question. do you remember when you were a kid, your father winning like a thousand dollars at the track? (listens) really? did you know he gave uncle leo a hundred dollars, and he was supposed to give you fifty? (listens) how do i know? because nana doesn't know what year it is, and she thinks this just happened. (listens) well, i think you should. okay, bye. morty: do you know what the interest on that fifty dollars comes to over fifty-three years? helen: oh, morty, please. morty: six hundred and sixty-three dollars and forty-five cents. and that's figuring conservatively at five percent interest, over fifty-three years, compounded quarterly. or, if you put it into a ten-year t-bill... helen: morty, will you stop it! morty: (determined) well, he's not getting away with this! jerry: yeah? wendy (o.c.): wendy. jerry: come on up. elaine: well, this is it. shall i go get kramer? jerry: no no, he'll come in. well, this is gonna be my first opportunity to not kiss her hello. elaine: what is the big deal about putting your lips on somebody's face? jerry: it's the obligation, you know? as soon as this person comes in, you know you have to do this. i mean, if you could, say, touch a breast as part of the kiss hello, then i think i could see the value in it a little better. elaine: how 'bout an intercourse hello? how would that be? jerry: elaine, now you're being ridiculous. elaine: (indicating) that's her. that's her. elaine/wendy: hi/hey. jerry: (muffled) hi wendy. wendy: oh, hi jerry. jerry: (muffled) would you like something to drink? wendy: sure. jerry: (muffled) there you go. wendy: (taking the bottle) ah. jerry: oh, look at that. i'm almost outta klondike bars. jerry: so, how's everything going? wendy: oh, okay. oh, your friend george came by the office the other day, and then yesterday he cancelled on me. jerry: oh, yeah, he had to take his mother to the chiropodist. elaine: oh, you hear that? that must be kramer. kramer: hey! jerry! jerry: c'mon, that's not fair! kramer: i told you i was gonna get it. jerry: no, c'mon kramer. (crossing to kramer) gimme that picture. kramer: (holding the picture away from jerry) aagh. no no no no no. jerry: (throws up his hands) alright, fine. put my picture up. what do i care? elaine: uh, kramer. kramer, i'd like you to meet my friend wendy. kramer: oh, hello. wendy: (holds out her hand) hi. kramer: (shaking hands) yeah. kramer: (points) you know, i really like that hairdo. wendy: (flattered) oh. thank you. i actually was thinking it might be time for a change. elaine: (hopeful) oh, you were? wendy: well, i... kramer: (interrupting) oh, no no no. you don't wanna do that. no no. nobody wears it like that. elaine: kramer, if she wants to change her hair... kramer: no, no. you'd be a damn fool to change it. it's very becoming. wendy: oh, well. wendy: (laughs, flattered) oh, ho. wendy: so, who's that friend of yours? that guy that came in. elaine: oh, kramer. wendy: yeah. does he have a girlfriend? elaine: you wanna go out with him? wendy: well, why not? elaine: well, it's just that... uh, i don't... wendy: what, is there anything wrong with him? wendy: elaine? elaine: i'm just thinking about the question. george: you know, my arm feels a lot better. that wendy really knows her stuff. (he writes out a cheque) receptionist: (perky) she is super. same time tomorrow. george: (tearing out cheque) yeah, same time. (hands over cheque) there you go. receptionist: oh. ah, you owe a hundred and fifty. george: what for? receptionist: well, you cancelled on tuesday, and our policy is "twenty-four hours notice, for all cancellations". george: (agitated) well, i, i couldn't come. i, i had to drive my mother to, to the chiropodist. wendy: what's the problem? george: (harassed) are you aware that i'm being charged for tuesday's appointment? i had to take my mother to the chiropodist. wendy: well, i'm sorry, that's our policy. george: (after wendy and to the receptionist) oh, you have a policy! (to the world at large) the delicate genius has a policy! george heads for the door. receptionist: so. will you be here tomorrow? george: well, it's less than twenty-four hours, so i guess i have to! kramer: hey! (indicating photos) so what d'you think? you like it? jerry: oh my god! look at that picture, it's terrible... jerry: ...you can't put that picture up. kramer: well, it's not a beauty contest. it's just a way for people to get to know one another. steve: hey cosmo. kramer: hey... kramer: ...steve. (to jerry) ah, you see? elaine: hey kramer, my friend wendy wants to go out with you. kramer: (interested) well, how do you do? mary: hello, (finds the right photo) jerry. jerry: oh. hello, uh (looks for and finds the photo) mary. mary: you know, i've seen you so many times and now we can finally talk to each other. kramer: (keen) what was i telling you? isn't this nice? jerry: (not really) yeah. mary: jerry. you know, could you help me with a package? jerry: oh, sure, yeah. mary: thank you. jerry: oh, no! jerry: you see? that's just what i need. more kissing! elaine: (laughs) hee, hee, hee. hee hee hee... jerry: what is so funny? elaine: nothing, nothing. (laughs out loud) jerry: hello. oh, hi mom. (listens) what? oh my... he didn't?! he couldn't! (listens) alright, i will. (listens) okay, bye. jerry: (aghast) uncle leo put nana in a home! elaine: why? jerry: (suspicious) i don't know. maybe to keep her quiet. joan: hi jerry. (she kisses jerry) mmmwah. jerry: (not as eager) hi joan. joan: how you doing? jerry: pretty good. joan: just pretty good? not great? jerry: okay, great. joan: are you happy? jerry: oh, i'm delighted. joan: okay. have a nice day. jerry: you too. louise: hi jerry. jerry: hi, louise. kramer: hey. jerry: ah, well. thank you very much! kramer: for what? jerry: (agitated) for putting my picture up on that wall! i'm like richard dawson down there now. and every person i see engages me in this long, boring, tedious, conversation. i can't even get out of the building! kramer: you should be thanking me for liberating you from your world of loneliness and isolation. now, you're part of a family. jerry: family? kramer: yeah. jerry: you think i want another family? my father's demanding my uncle pay interest on fifty dollars he was supposed to give my mother in nineteen-forty-one, and my uncle put my nana in a home to try and shut her up! and i tell you another thing, cosmo kramer, whatever you wanna be called. the kissing thing is over. there's no more kissing, and i don't care what the consequences are. receptionist: oh, hi. mister costanza, we were trying to get in touch with you. wendy can't make her appointment. george: what d'you mean? receptionist: she had some personal affair she had to attend to. i left a message on your machine. you didn't get it? george: when did you leave the message? receptionist: few hours ago. george: (pointedly) oh, i'm sorry, i require twenty-four hours notice for a cancellation. now, as i see it, you owe me seventy-five dollars. receptionist: look, mister costanza... george: will that be cash, or cheque? wendy: i am really glad i took the day off. elaine: oh, yeah, there's nothing better than skiing. wendy: yeah. i hope my clients weren't too upset. elaine: ugh, the hell with 'em. elaine: what're you stopping here for? wendy: i'm dropping you off. elaine: (pointing) oh, no, i'm three more blocks. wendy: yeah, but if i take you to your door, then i have to go all the way around central park west, back to columbus, you know it's all one way... elaine: yeah, but it's only three blocks. wendy: right. it's only three blocks. elaine: (unbuckling her seatbelt) alright, well... elaine: she'd driven me a hundred and twenty miles and, all of a sudden, three blocks from my door, she decides this trip is over. isn't that strange? jerry: yes, it's very strange. very strange. elaine: i've never heard of anything like this. i mean, it's almost as if i was hitch-hiking and she says "well, this is as far as i can take you." jerry: i tell you. if you were hitch-hiking, you'd never get into a car with someone with a hairdo like that. elaine: i had to carry my skis, and my boots and my poles. i think i pinched a nerve in my shoulder. jerry: you should have her work on it for you. elaine: yeah, alright, i gotta go. mar: hi jerry. jerry: hi mary. jerry: uh, listen. i decided i can't kiss hello anymore. i'm sorry. it's nothing personal.... jerry: ...it just makes me a little uncomfortable and i can't do it. i'm sorry. lou: hi jerry. jerry: hi louise... jerry: ...i was just telling mary how i'm not gonna be doing the kiss hello thing anymore. (continues backing away) i'm sorry. i just can't do it. it's nothing personal, it's just i'm not really able to do it and uh, i'm sorry. jerry: (as the elevator doors close) thank you for your cooperation. jerry: hello. helen (v.o): jerry? jerry: hi mom. so, what's happening with uncle leo? is he paying you? helen: well, he said no. he said we had no proof. morty: no proof? we'll get him. he's a crook, sooner or later, he'll slip up. helen: uh, anyway, i want you to go check on nana at the home. jerry: okay, i will. morty: d'you realise, an above-average performing growth mutual fund for fifty-three years... kramer: what's up? jerry: (locking his door) oh, i gotta go visit my nana in the nursing home. kramer: oh. jerry: hey, kramer, look at this. jerry: look at my picture! jerry: i've been defaced! kramer: hey, don't you worry buddy. i made double prints. jack: hey. hi cosmo. kramer: oh, hey, jack. how you doing? jerry: hi jack. jerry: hey, julio. i was wondering, could you get to that shower today, you think? julio: oh, i see. when you need something done, you're very friendly to people, huh? jerry: (defensive) no no, that's not true! julio: (accusing) well, i think it is! it's a big building, seinfeld, maybe i'll get to it someday. after i take care of the people who're civil to each other. nurse: yeah, she's upstairs, playing cards. jerry: you know, she really doesn't belong here. my uncle put her here, because he's trying to prove he doesn't owe my mother fifty dollars. nurse: well, she seems very happy. she met an old friend who used to live next door to her. jerry: buddy? nurse: yes, that's his name. he's right over there. wendy: (smiling) i'm sorry, i don't owe you anything. i had some personal business that day. george: (irascible) oh, i see. so your time is more valuable than mine. is that it? you're a delicate genius! wendy: a delicate genius? george: elaine? elaine: (surprised) george! george: (leaving) hah. good luck. wendy: what's going on? elaine: (feeling her arm) wendy, i injured my shoulder, wednesday, when you dropped me off and i had to carry my skis, and my boots, and my poles and everything, all the way home. i'm, i'm having trouble lifting my arm. do you think you could give me some treatment? wendy: oh sure. you have insurance, right? elaine: (shocked) insurance? you're charging me? george: wednesday? that's your personal business?! (stalks over to the counter) skiing?! (angry) so let people suffer, while you're shushing all over a mountain? wendy: how did you hear that? george: i hear everything. wendy: i mean, why don't you two just take your business elsewhere, hmm? elaine: oh, huh huh, that is a good idea. c'mon george. george: yeah. let's go. elaine: (pointedly) and you know, you might wanna do something about that hair. wendy: why, what's wrong with my hair? elaine: huh, i think it's a little old-fashioned. don't you? (to receptionist) uh, tell her. receptionist: she's right. jerry: so you were with him that day at the track? buddy: oh yeah. he won a thousand dollars. his son was there too. jerry: leo? buddy: yeah, that's it. leo. ooh, what an obnoxious little kid. he used to steal my soda bottles. and cash 'em in for the deposits, uh? jerry: is that so? buddy: and, after your grandfather hit the daily double, he gave him a hundred dollars, and told him to give fifty to his sister. his sister? why i tell you he shoulda give it to me for all the bottles he took! jerry: well, that's very interesting. jerry: (standing) uncle leo! i just met an old acquaintance of yours. (indicates buddy) you remember buddy. he just told me quite a story about you and grandpa at the track. leo: (defensive) one second... jerry: (with a triumphant point) you're busted! jerry: hey, steve. how you doing? jerry: hey, jeff. what's happening? jerry: mary! oh, mary! give us a kiss. jerry: don't be like that, mary. c'mon, i made a mistake! mary: (contemptuous) look, why don't you do everybody a favour, and just get out of this building? (angry) nobody wants you here. nobody! jeff: hi mary. mary: hi jeff. how are you? mary: hi pete. how you doing? pete: hey, let's go get some coffee. jeff: great idea. mary: oh, that'd be great. jerry: oh, paul, could you hold that door... kramer: hi. jerry: hey. could i use your shower? kramer: what, again? you took one this morning. jerry: (pleading) i got a date. c'mon, please. kramer: i know but i... (waves toward the interior of his apartment) little problem. kramer: (leaning to look round kramer) wendy here? kramer: no no no. she changed her hairstyle, (pulls a face) it's terrible. no, we're done. guy: i'll go get some more beer. kramer: oh yeah, yeah, great. (calling after the guy) and get some of those blue corn chips. kramer: hey. stefanie: hi cosmo. kramer: hi. stefanie: (kisses kramer hello) mmmwah. kramer: ooh, i like that. jerry: (impressed) who's that? kramer: stefanie. 2-g. jerry: oh man. looks like you got quite a few people here. kramer: yeah yeah. well uh, you know, i'd invite you in, but uhm... you know. jerry: (rueful acceptance) oh, yeah, i understand. doorman: whoah, whoah, whoah. (rises and turns to jerry) may i help you? jerry: (indicates with his thumb) yeah, i'm just going up to see elaine benes. doorman: (unfriendly smile) benes? (moves toward jerry) no-one here by that name. jerry: oh, she's uh, she's house-sitting for mr. pitt. doorman: oh. house-sitting, mmm. jerry: yeah. doorman: what're you, the boyfriend? here for a... quickie? jerry: can i just go up? doorman: oh, i get it. why waste time making small talk with the doorman? i should just shut up and do my job, opening the door for you. jerry: how 'bout those knicks? doorman: oh, i see. on the sports page... jerry: yeah. doorman: ...what makes you think i wasn't reading the wall street page? oh, i know, because i'm the uneducated doorman. kramer: so, you think your parents'll get back together? george: i hope so. i can't take him living with me much longer. he makes this kasha, it stinks up the whole house. kramer: hey, george, stick 'em up. george: what? kramer: for these german tourists. pretend that i'm robbing you. george: why? kramer: so these people can go back home and tell their friends they saw a real new york mugging. it'll give them a thrill. kramer: awright, hands up, porky! kramer: that's it. now, gimme your wallet. got it in here, huh, fat boy! kramer: (aggressive) is that all you got?! hah? is that all you got?! george: alright, that's enough. kramer: i'll tell you when it's enough! (he releases george) alright, now you better not say anything, or i'll stalk you! elaine: where've you been? we're gonna miss the movie, let's go. jerry: i am not going back down there. i can't face that guy again. elaine: what guy? jerry: the doorman. i don't wanna play anymore of his mindgames. what time does he get off? elaine: six. but then the night doorman comes on. he's much scarier. (scary noise) whugh! (laughs) ha-ha. jerry: well, it's almost six now. can't we just wait til he goes home? elaine: (unhappy) i... jerry: we'll still make the movie. elaine: (accepting) okay, okay. george: what'd you do today, dad? frank: today, i went record shopping in greenwich village. i bought this record, but i can't seem to find the hi-fi. george: i don't have a hi-fi. frank: didn't i give you my old record player? george: (leaving to the bedroom) i gave it to cosmo. frank: cosmo? who's cosmo? kramer: i'm cosmo. frank: well, i want it back. i wanna listen to that cha-cha record. kramer: (little dance) one-two, cha-cha-cha. george: (coming back in) alright, alright. can we go out and eat? frank: (putting down the bowl) lemme change my shirt. elaine: jerry, it's six. (claps her hands) let's go. jerry: uh, that doorman's still milling around outside. he's very peculiar. elaine: no, don't... jerry: (picks up phone) hello? (listens) oh, hi mr. pitt. elaine: (quietly) give that to me. elaine: (taking the phone) hello mr. pitt. how's scotland? mr. pitt: (concerned) elaine, are you having a party? elaine: a party. oh no, that was just my stupid friend jerry. jerry: alright, he just left. we can go. mr. pitt: (stern) because there's to be no entertaining while i'm gone. elaine: believe me, we're not entertained. we were just leaving. (to jerry) oh, can you grab those empty bottles for me. mr. pitt: i need to know what's in the mail. elaine: oh, well, mr. pitt, there's really nothing that can't wait. we're trying to catch a movie. mr. pitt: (resolute) well, you better catch the later show, because i need to know what's in the mail. elaine: alright. (to jerry, upset) i can't go. elaine: ...uhm, the new time magazine. the new people... mr. pitt (o.c.): (piqued interest) oh, who's on the cover? doorman: hey, buddy. jerry: (surprise) you? wh...what're you doing here? you work at this building too? doorman: ah, sure. poor doorman has to work two jobs to put food on the table for mother and baby. (supercilious) no, i live here. that's okay, isn't it? jerry: so you work all day as a doorman at one building. then you come home and stand outside your own building? doorman: you got a problem with that? jerry: look, i'm not going in your building. i really don't have to talk to you. goodbye. doorman: (calling after jerry) you really think you're better than me, don't you?! george: my father opened his shirt... jerry: yeah, and? george: (nods to kramer) tell him, kramer. kramer: (matter of fact) he had breasts. jerry: what d'you mean, breasts? george: (waves his hands) big breasts! jerry: so what? a lot of older men have that. kramer: no, not these. these were real hooters. george: i was throwing up all night. it was like my own personal crying game. kramer: well, maybe you're gonna get 'em too, george. george: (worried) yeah, that's right. what if it's a genetic thing, like father like son? jerry: but, your father's not bald. george: no, no no. that skips a generation. the baldness gene comes from your grandfather. jerry: then i suppose the bosom gene comes from your grandmother. kramer: you know, frank can't be too comfortable with those things clanging around. he should wear something for support. george: you mean like a bra? kramer: a bra is for ladies. i'm talking about a support undergarment specifically designed for men. jerry: boy, that brain never stops working, does it? kramer: i tell you, i'm gonna go noodle with this. buxom woman: (indicating her shirt with her finger) hey, we're twins. george: (thinking she means the breasts) what!! buxom woman: our shirts. they're the same. george: oh, huh, imagine that. elaine: (to jerry) what? what'd you say to the doorman? jerry: what? nothing. elaine: (sitting beside jerry) he claims that you followed him home, and started harassing him. jerry: what has this guy got a personal vendetta with me?! what'd i do to him? 'cos i asked him about the knicks? elaine: hey, did you make the movie? jerry: no. elaine: you wanna go tonight? you can pick me up. jerry: alright. can we go to a later show, so he's off his shift when i come by? elaine: ugh. so now we have to rearrange our lives to avoid the doorman? jerry: yes, we do. elaine: what is wrong with george? jerry: he's... trying to get something off his chest. george: (agitated) alright, i gotta try and talk my mother into taking him off my hands. doorman: help you? jerry: (jumps in surprise) hoh! what're you doing here? you're supposed to be gone. doorman: i traded shifts with the night doorman. he had some personal affairs to attend to. you see, my fellow doorman and i watch out for each other. we don't stab each other in the back, like people in your world. jerry: (trying to ease the tension) look, i don't want any trouble. i don't have a doorman in my building. i guess i'm just not used to talking to them. i'd really just like to be friends. doorman: you wanna be friends? jerry: i'd like to be. doorman: then watch the door for a minute, would you? jerry: what? doorman: yeah, i just wanna run and get a beer. i'll be back in a minute. jerry: wha...? wai... wait a second. what do i do? doorman: it's not brain surgery. you open the door for people who live here. and, if they don't live here, don't let them in. (takes off his hat) here. (putting it on jerry's head) wear that. jerry: oh. jerry: (to the man in the elevator) hey, hey. wait a second. hey! hello! jerry: hey, hey, wait a second. you live here? mr. green: (indignant) of course i live here. i've lived here for twenty years. now, if you don't let me in, i'm going to call the police and have you arrested. jerry: (after the guy) you think you're better than me? delivery guy: (indicating) you have to sign for it. jerry: oh, right. delivery guy: (with a smile) hey, how 'bout those knicks, huh? jerry: (dismissive) yeah, yeah, yeah. kramer: hey. i uh, brought back your record player, huh. frank: thank you, kramer. kramer: yeah. frank: (indicating a chair) put it over there. kramer: so, how you feeling? frank: tired. kramer: uh huh. your back hurt? frank: how did you know? kramer: well, it's obvious, you know. you're carrying a lot of extra baggage up there. frank: (looks down, and indicates his chest) up here? kramer: oh, yeah. top floor. (sits beside frank) listen, frank, have you ever considered wearing something for support? now, look at this. (reaches into his pocket) mind you, this is just a prototype. frank: you want me to wear a bra?! kramer: no, no. a bra is for ladies. kramer: meet, the bro. estelle: so, is your father excited about coming home? estelle: george? george: (broaching a subject) hey mom. what kind of woman was grandma? estelle: all of a sudden you're interested in your grandmother? george: well, you know. you get to a certain point, you wanna know about your roots. estelle: she was a lovely woman. george: yuh. what about physically? estelle: physically? george: yeah, you know, what'd she uh, look like? estelle: well, you've seen pictures. george: (to himself) you can't tell much from those pictures. estelle: so what? george: was she uh, was she a big, uh woman? estelle: big? no, just my height. george: bosomy? estelle: bosomy? you wanna know if your grandmother was bosomy?! george: (trying to laugh it off) no, i was just wondering. the information could be relevant. estelle: where do you get your genes from?! george: (to himself) that's what i'd like to know. elaine: i can't believe you left your post. jerry: he left me there. you see the mind games? elaine: (to one of the tenants) hey, what's up? what's going on here? tenant 1: somebody stole the couch out of the lobby. tenant 2: where's the doorman? how come someone wasn't watching the door? elaine: (quietly to jerry) jerry, let's get out of here. jerry: yeah. estelle: (shocked) oh, my god! elaine: what were you doing watching the door anyway? jerry: he asked me to. we were getting along. elaine: (thinking) you know, my fingerprints are all over this. that doorman knows you're a friend of mine. he'll tell that co-op lady, she'll tell mr. pitt... jerry, i'm in this too deep. jerry: don't you find it odd that as soon as he leaves, the couch gets stolen? maybe he's setting me up! elaine: (taking command) alright, shut up. shut up. just let me think. i gotta think. we gotta get our story straight. jerry: alright, well what if we say... elaine: alright, (claps hands) here it is. this is what we'll tell 'em. you came to pick me up... jerry: i came to pick you up. elaine: yeah. that's what i just said. jerry: i know. i was just... elaine: yeah, i know what you were just. it's not helping. jerry: alright, well. just, start again, then. elaine: okay, you came to pick me up at... jerry: right. elaine: you see? again. jerry: what? i said right. elaine: alright, you came right upstairs, without talking to the doorman. jerry: but the doorman's gonna say that i was there. elaine: (intense) so what? no-one's gonna believe a doorman! jerry: but i don't know if this is gonna work. elaine: (aggressive, with finger pointing) just stick with the story. we'll be fine. let me do the talking! jerry: okay. elaine: good. now fix me a drink. kramer: how's that feel? frank: this feels very comfortable. kramer: you see? frank: i feel ten years younger. kramer: yeah, and your posture's a lot better. look at you. frank: and i can breathe easier, too. kramer: i told you! now, frank, listen. here's what i'm thinking. now, you have a friend in the bra business, right? frank: of course. sid farkus. he's the best in the business. kramer: (claps his hands) here's our chance. what d'you say? it'll be me, you and the bro, bro. frank: let's do it! frank: except, we gotta do something about the name. kramer: why, what's wrong with bro? frank: no, bro's no good. too ethnic. kramer: alright, you got something better? frank: how 'bout uh... the mansiere? kramer: mansiere? frank: that's right. a brassiere for a man. the mansiere, get it? george: (upset) well, you've scared her off. we may never see mom again. frank: hey george, what d'you like better? the bro, or the mansiere? george: dad. we need to talk. doorman: i had to use the bathroom, so i asked this guy to watch the door for a few minutes. mrs. payton: why should i believe you? doorman: (indicating elaine) actually, it was her friend. mrs. payton: i was just speaking to the doorman here, about the couch robbery. elaine: oh really? (skeptical) the doorman. and, pray tell, what did the doorman say? mrs. payton: he said he asked a friend of yours to watch the door. elaine: (dismissive) oh, my. well, the doorman certainly has a wild imagination, doesn't he? doorman: well... what do we have here? perhaps miss benes could explain why a jerry seinfeld signed for this package (handing the package to mrs. payton) at the exact same time the couch was stolen. elaine: (in a rush) he never watched a door before, mrs payton, he didn't know how to do it. (pleading) you know, he's a comedian, mrs payton, they don't know how to do anything. elaine: (desperate) don't you see what's going on here? he set us up. he's playing all these mindgames. jerry: you're saying i'm responsible for the couch? elaine: (worked up) there was nothing i could do. he said he had a federal express slip with your signature on it. jerry: (livid) diabolical. he thought of everything. he was setting me up from day one! elaine: is it possible we were victims of a sting? jerry: i'm sure he's having a good laugh over this with his doorman buddies. doorman 2: so, you didn't even (indistinct) watch the couch? doorman: no. i was just messing with his head. doorman 2: and they think they're better than us? elaine: anyway, jerry... jerry? elaine: we have to replace the couch. jerry: now we have to buy a new couch?! george: (crafty) not necessarily. why don't you take back the couch you gave me? jerry: the one with the poppie stain?! george: yeah, sure. (big smile) then my father will have no place to sleep. (snaps fingers) he's gotta move out. elaine: but it's got a pee-stain on it. george: no, the cushion's turned over. elaine: (not sure) i guess. george: (enthusiastic) yeah. you get a couch. i get rid of my father. it couldn't be more perfect! kramer: now, it's called the bro. frank: or, the mansiere. kramer: yeah, but i prefer the bro. frank: i like mansiere. farkus: well, i have to tell you, it's a very interesting idea. kramer: yeah. farkus: you know, selling bras exclusively to women, we're really only utilising fifty percent of the market. frank: (to kramer) that's what we figured, huh? kramer: (to frank) i told you. farkus: and, to be perfectly frank, i've always felt i could use some support. i know, when i'm wearing banlon, there appears to be some jiggling. frank: (vehement) i wouldn't be caught dead in banlon. farkus: (indicating the bro) so uh, what d'you see in the back? hooks? velcro? what? kramer: uh. frank: definitely velcro. kramer: say you're getting intimate with a woman uh, you don't want her fumbling and struggling back there. kramer: i think we've all experienced that. farkus: summer nights. kramer: (pointing at farkus) very funny. farkus: well, i still have to talk about this to mr. degrunmont... kramer: of course, yes. farkus: ...but, barring any unforeseen developments, gentlemen, i think we're sitting on a winner. farkus: (sympathy) frank, i wanna tell you how sorry i am to hear about you and estelle separating. frank: oh, thank you, sid, but that's all in the past. i'm ready to move on. farkus: (thoughtful) i've always been very fond of estelle. beautiful woman. i uh, i hope you don't think uh, this is out of line, but would it be okay with you, if i were to ask her out? frank: (anger) you wanna go out with my wife?! (rage) where do you get the nerve to ask me something like that?! farkus: oh, no, frank, i was just saying... frank: i know what you're saying, and i know what you're thinking!! farkus: no, frank... frank: c'mon, cosmo, i'm not doing business with this guy. kramer (o.c.): frank! george: jerry took the couch back. frank: he took it back? didn't you tell him i was using it? george: oh, i pleaded with him. frank: where am i supposed to sleep? george: well, i took the liberty of packing your things. (gleeful) mom's coming to get you. kramer: i thought jerry didn't want that couch, because of the stain? frank: what stain? kramer: oh, you didn't notice? it has a pee-stain. frank: (disbelief) you had me sleeping on a pee-stained couch? george: (light) no. no, no, no. the cushion was turned over. frank: (anger) but, the very idea. you had me lying in urine!! george: ah! there's mom, there's mom. estelle: is it safe to come in? george: oh, of course. (motioning estelle to enter) of course. estelle: you're not having any of your transvestite parties? frank: will you stop it? estelle: (to kramer) i lived with him for forty years, i never saw him trying on my underwear. as soon as he leaves the house, he turns into j. edgar hoover! frank: here, cosmo... kramer: oh, hey. frank: ...you can have the hi-fi. (hands it over) i don't need it now... kramer: awright, i got it. frank: ...i got one at home. estelle: alright, let's go. frank: we'll go out for dinner tonight. estelle: i can't tonight, i'm busy. frank: what d'you mean, busy? estelle: i'm having dinner with someone. frank: with whom? estelle: sid farkus. frank: (anger) sid farkus?! you're not having dinner with a bra salesman. estelle: hey, he only sells them. he doesn't wear 'em. frank: okay, that's it! i'm not coming home! george: (upset) but you can't stay here. there's no place to sleep! frank: we'll work something out. german woman: stop him! ja, ja, ja, it's him! german woman: stop that man! it's him. german woman: somebody, stop him! please, quick. stop, it's him. i know, i know. help. stop him. horst: hey, hey. (pointing) that record player is not yours. kramer: now, look. somebody gave it to me. horst: you're a thief. we have proof. horst: what is that? kramer: the first upper-body support undergarment, specifically designed for men. horst: how does it connect in the back? with a hook? kramer: oh, no, no. (demonstrates) here, velcro. horst: (to the portly german) ooh, (indistinct german) ...keine problem, ah? horst: is gut, ja? mrs. payton: well, i suppose it'll have to do. elaine: it's a beautiful couch. jerry: it's hardly been used. jerry: poppie! poppie: oh, hello, jerry. jerry: what're you doing here? poppie: visiting my friend. jerry: ohh. hey, how you feeling? poppie: oh, much better, much better. the doctors say i cannot have no aggravation. jerry: hmm. poppie: so, i sell the restaurant, uh? i just take it easy. see, if i get excited, 'ats aggravated my condition. the last time i got aggravated, was in the restaurant. with your friend. poppie: she start the big fight, about abortion. poppie: it's you! it's you! elaine: wha...? poppie: you! i... i gotta sit down! jerry: no, poppie! no!! frank: kasha? george: no. thanks, dad. george: " that guy was amazing, he could dunk and he was my height...what was his name again?" jerry: "jimmy" george: "jimmy, right." jerry: "i dunno how you could forget . he kept reffering to himself in the third person. "jimmy's under the boards. jimmy's in the open. jimmy makes the shot." george: "ah! your just mad 'cause we beat ya." kramer: "jerry it's my fault .i couldn't make a shot. these losses they stay with me. they (?) jerry. now this is gonna plague me."( puts on aftershave and cries out) oh! mother!!!" george: "hey! jimmy!!! ha ha ha........great game." jimmy: "oh yeah.......jimmy played pretty good." george: "hey you know , i felt we had like a synergy out there,you know, like we were really helping each other." kramer: "what d'you got there?" jimmy: "these?" kramer: "yeah" jimmy: "these are jimmy's training shoes." george: "yeah,yeah yeah yeah! i've seen these.....they sorta ..they make your legs..stronger." jimmy: "oh yeah! jimmy couldn't jump at all before he got these. jimmy was like you (looks at george) kramer: "they're plyometric.(sp?)" george: "plyometric?" kramer: "yeah! they isolate the muscles. the muscle has to grow....or die." george: (to jimmy) wh...where d'you get'em?" jimmy: "jimmy sells'em." george: "you sell them?" jimmy: "oh yeah! but jimmy's all out right now. moving to manhattan set jimmy back a bit." george: "hey listen, let me give you my card. it's got my home number on it. i want to buy the first pair when the next shipment comes in." jimmy: "all right" george: "all right jimmy good talking to ya." jimmy: "jimmy'll see you around." george: "what day is today?....aw. ..tuesday! damn it. i shouldn't have worked out today. mr wilhem has called a big meeting and now i'm gonna be sweating through the whole thing." jerry: "why. you took a shower?" george: "aahhrgh...it wouldn't take...... long pause, audience laughter) ten minutes from now, i'll be sweating all over again ,i can feel it. i'm a human heat pump!" kramer: "you should take cold showers." george: "cold showers? they're for psychotics." kramer: "well i take 'em........they give me a whooooosh." george: "all right, i'll see you guys later." jerry: "aw right." kramer: "so, you're heading home?" jerry: "no...got dental appointment." kramer: "ah! what.. tim whatley? jerry: "yeah!" kramer: "oh yeah.! i got a check up on thursday." jerry: "oh! how d'you like that?" kramer: "you know.. you really shouldn't brush 24 hours before seeing the dentist." jerry: "i think that's eat 24 hours before surgery." kramer: "oh no, you got to eat before surgery, you need your strength." wilhelm: "i called this meeting because we......have........a problem. for the last few months someone has been stealing equipment from the club. until recently it's been little things, y'know; bases, batting helmets, donuts, but two nights ago they pulled the big one. " wilhelm: "they took a pitching machine, a batting cage ,the in-field tarp and all of mr steinbrenner's vitamins.. now , we have reasons to believe it's an inside job." george: (still puffing)" whoa!!" wilhelm: "if anybody here knows anything about it i recommend strongly that...you come forward." receptionist: "dr whatley's running a little late. if you'd like to take a seat, i'll call you when he's ready." jerry: "all right." elaine: "oh! okay. right. thanks mr pitt....'kay. ..goodbye." elaine: (to jerry) "hey ! you want to go see "the velvet fog". jerry: "the velvet fog?" elaine: "yeah! mel torm, that's his nickname." jerry: "what the hell his a velvet fog." elaine: "do you wanna go or not?" jerry: "well , where is it?." elaine: "he's performing at this amca benefit." jerry: "amca?" elaine: "able mentally challenged adults" jerry: "naaaaaa...i can't watch a man sing a song." elaine: "what are you..crazy?" jerry: "they get all emotional , they sway. it's embarrassing." elaine: "well, what am i gonna do for a date.?...oh! do you know that ..hemmm! blond guy who's always at the exercycle at the health club?" jerry: "i don't think so." elaine: "yeah yeah! he's really handsome with those..." jerry: (interrupting) "elaine , i really don't...............pay much attention to men`s faces." elaine: "you can't find beauty in a man?" jerry: "no... i find them repugnant and unappealing." kramer: "hey!" jerry: (pointing kramer) "to wit" kramer: "what?" jerry: "no ,elaine and i we're just discussing whether i could admit a man is attractive." kramer: " hmm! oh! yeah. i'll tell you who is an attractive man; gorge will." jerry: "really!" kramer: "yeah! he has clean looks, scrubbed and shampooed and...." elaine: "he's smart...." kramer: "no, no i don't find him all that bright." kramer: "so you got any cavities?" jerry: "just one....gotta go back.....oh but get this. elaine, you will appreciate this. i'm sitting in tim whatley's waiting room...he's got a penthouse right out on the table." elaine: "penthouse?" jerry: "yeah!!! what is that? i mean isn't that sick. i mean , i'd be embarrassed to have that in my apartment." kramer: "so what's wrong with that? jerry: (outraged) he's a doctor!.i mean it's supposed to be like a sterile environment." kramer: "so... did you take a look?" jerry: "of course.... but that's got nothing to do with it." kramer: "well i'll tell you i'm looking forward to my appointment on thursday. i might even get there a few minutes early." george: "hey" elaine: "hey! hey! listen ... do one of you guys know that ..that blond guy who's always on the exercycle at the health club. you know he's just really handsome?.." george: (head down low) i...i wouldn't know" elaine: "you know that just admitting a man is handsome doesn't necessarily make you a homosexual." george: "it doesn't help" elaine: "all right, i'm gone" george: "i'll see you." george: (to jerry) "you know those shoes that jimmy had? i cut a deal with him. we're gonna import a case of them together." jerry: "what are you doing that for, you got a job" george: "there's a lot of money in this.. he's got a proven sales method" jerry: " yeah! what's that." george: "he jumps!" jerry: "jimmy's got a record. jimmy's jumping for dollars. jimmt and george are gonna get rich." george: "will you stop with the jimmies" kramer: "hey! what's this?" jerry: "kom pau(sp?" kramer: "(gasp_)......kom pau........" elaine: (we hear what she thinks) look at me....look at mee!. come on. i'm stretching right in front of you. heeeey!! ...a smile. aah! we made contact, all right one more stretch and then go talk to him. jimmy: "you know...jimmy is pretty sweet on you." elaine: "aaaaaahhh! he is?!" jimmy: "oh yeah!. jimmy's been watching you....you're just jimmy's type." elaine: "aaaaaaahhh! really?"(giggles) jimmy: "jimmy's new in town. jimmy hem ..doesn't really know anyone." elaine: "oh! well i'd like, like to get to know him." jimmy: "jimmy would like to get to know you." elaine: "ha...." whatley: "hey! kramer" kramer: "boy , you're looking sharp there tim." whatley: "yeah well....i do what i can. how've you been." kramer: "euh.. fine , good , yeah! just been occupying myself with some of your....hem reading material." whatley: "so what'ill it be? novocaine?" kramer: "oh yes, yes indeed." whatley: "why don't we just clear a path first." kramer: "yeah, yeah, lets do that." whatley: "you remember mr. thirsty." kramer: "all right euhhm....." jerry: "ahh! you too with these?" kramer: (still under the effects of the novocaine slurrs his words heavily) "yeah h'amon board." jerry: "so what did tim say?" kramer: "wellhum....he th'aid i gotta cut out the ssssfkittles." jerry: "looks like he gave you some novocaine" kramer: "ohhh h'am loaded." jerry: "so what about the penthouse. did you ask him?" kramer: "well he said that humm.. you know.that it helps his pathients relax a little bit..and he's got a new polithy adults only." jerry: "adults only?" kramer: "yeah!!!" jerry: "what the hell's going on over there?" kramer: "well you know its.. great. you know, no kids ..allowed. you don't have to watch your language." jerry: "you find you need to use a lot of obscenities at the dentist. kramer: "he..he... when they pull that needle out i let the expletives fly." jerry: "hey! hey! watch it.!... you're drooling all over the floor. how much novocaine did that guy give you." kramer: "well.. aye can't hold the water." jimmy: "oh yeah!! ... jimmy's ready." kramer: "hey jimmy" george: "ha..harrr." jimmy: "jimmy's got some new moves." kramer: "go jimmy" jimmy: 'check jimmy out" jimmy: "ooohhh!!!!! jimmy's down." paramedic: (missing a few words) ......was gonna be in traction." jimmy: "jimmy might have a compound fracture.. jimmy's going into shock!!" george: (angrily)"why weren't you more careful with your drool!" kramer: "hey i'm doing the best i can!!!" jerry: "why are you taking this so personally?" george: "because if he can't jump. there goes my sneaker business!!" kramer: (cries out) well i said i'm sorry." jimmy: (as he gets taken out) "jim....jimmy wont forget you kramer... jimmy holds grudges. let jimmy go......" kramer: "but i can't feel anything." kramer: "hey taxi!!!.....taxi!!" kramer: "go ahead, go ahead you got it......(to the driver) he's got it." deensfrei: (slowly) oh! please, go ahead take it kramer: "no,no...you were here first." deensfrei: no. no i..i insist. i'll grab the next one." kramer: "lets share.. we share....awight" deensfrei: "yes ! splendid. that's a great idea." deensfrei: "my name is arnold deensfrei. what is your name?" kramer: "eh!! cosmo kramer. nice to meet you" deensfrei: "very nice to meet you cosmo. are you heading home? kramer: (like rainman)"yeah! heading home." deensfrei: "good for you.....you are really independant." kramer: "yeaheum ... you're not doing too bad yourself" george: "argh!!..anyway...jimmy couldn't be here today so he asked me to fill in for him, and i'm sure that you'll be impressed at what can be accomplished after only a few short days of training.....yeah!" kramer: (whose voice has returned to normal)" the velvet fog!!!!" jerry: "what about the velvet fog ?" elaine: (as she comes in) "what about the velvet fog?" kramer: "well...he's singing at a benefit and i'm gonna be sitting at his table." elaine: "i'm going to that!" kramer: "i'm a guest of honor." elaine: "what are you talking about?" kramer: "well this afternoon i shared a cab with this...a hum..deensfrei." elaine: "yeah, yeah! arnold deensfrei, he runs the amca " kramer: "yeah! well ..that's the guy .he's organizing the dinner." elaine: "i know that but why are you going?" kramer: "well, because we hit it off and he was very impressed with what i do." elaine: "what you do!!. you don't do anything." kramer: "well apparently i do something 'cause i'm sitting at the head table with mr. mel torm elaine: (pointing at the shoes) "what are those?" kramer: "ehmm ..these are my vertical leap training shoes." jerry: "wait a second ..where you wearing those shoes in the cab?" kramer: "yeah! yeah! right after i left the y." jerry: "don't you see what's happened, he couldn't talk , he's wearing these shoes, he's drooling." kramer: "what!!!" elaine: "he thinks you're mentally challenged." jerry: "well...........you know....." elaine: "well ,what happens when you show up . he'll see that you're not.?" jerry: "not necessarily because....." whatley: "sheryl, would you ready the nitro(???) please?" jerry: "oh! where's jennifer today?" whatley: "oh!! she's over at dr.cessman's office. we find it fun to swap now and then." george: "whhhoooo!!!!"(taps on his desk loudly) george: "arrrrrrgh!! .. it's george.. oh! sports wholesaler. yeah. yeah. .. thanks for calling back. no , no , no still got the shoes, still got the shoes. lots of them. this is.. beautiful athletic gear." george: ".....well. i'm sorry. call you right back." wilhelm: "so george. have you heard anything about the missing equipment?" george: "no!...not...nothing." wilhelm: "george, there's nothing i hate more than a liar." george: "well...there's no room for someone like that in this organization." wilhelm: "are you feeling all right george?" george: "hemmm!.. fine!" wilhelm: "you look a little warm." george: "...it's the chicken" wilhelm: "you're a terrible liar george. look at you, you're a wreck!. you're sweating bullets." george: "it's the kom pau ... george likes his chicken spicy." elaine: "....maybe you were still under the gas.maybe you were hallucinating you're coming out of the gas but you were still under the gas." jerry: "i don't think so. i think they were getting dressed and not only that; my shirt was out!!!" elaine: "your shirt was out?" jerry: "i think so." elaine: "well, what kind of shirt was it.?" jerry: "you know! like a tennis shirt." elaine: "oh! well ... you don't tuck those in?" jerry: "sometimes i tuck'em sometimes i don't" elaine: "well. were you tucked?" jerry: "i think i was tucked.!" elaine: "all right then say you were. i mean .. what do you think could have happened.?" jerry: "i don't know but i was spitting out and rinsing like there was no tomorrow." elaine: "ughhhh" jerry: "is this guy a dentist or caligula?" elaine: "what are you gettin'?" jerry: "i don't think i'm hungry" elaine: "okay...so you were violated by two people while you were under the gas. so what? you're single." jerry: " but i'm damaged goods now." elaine: "join the club." jerry: "hey, by the way, did you ever call that guy from the health club.?" elaine: "oh yeah! jimmy." jerry: "jimmy? elaine: "ahum!" jerry: "that's the guy?" elaine: "yeah!" jerry: "can't believe your going out with him..." elaine: "why?" jerry: "i dunno. he's so strange.' elaine: "how so?" jerry: "did you notice he always refer to himself in the third person. jimmy can dunk. jimmy's new in town. jimmy we'll see you later." elaine: "no no... that's not him. that's the guy who gave me... jimmy's number." jerry: "that's jimmy. that's the way he talks." elaine: "i'm going to go see mel torm with him?" jerry: "jimmy's gonna put the moves on elaine.." george: "i have to go see steinbrenner later. mr wilhelm told him that i was the one responsable for stealing all the merchandise." jerry: "why?" george: "'cause when he questioned me about it i was sweating from the kom pau.." jerry: "i don't know how you can eat that spicy chicken," george: "george likes spicy chicken." jerry: "what's that?" george: "....i like spicy chicken" jerry: "no no you said george likes spicy chicken." george: "no i didn't" elaine: "yes you did you said george likes spicy chicken.. jerry: "you're turning in to jimmy." george: "george is getting upset.." jimmy: "so what do you want to see jimmy about?" elaine: "well.... (pointing at him) jimmy!" jimmy: "huh uh..." elaine: "about tonight hum.. there's been a little misunderstanding." jimmy: "ah! ... jimmy doesn't like misunderstanding." elaine: "yeah. what happened was...." jimmy: "jimmy and misunderstanding kinda clash." elaine: (suddenly intrigued) "you know, i've never heard anyone talk the way you do. it's very unusual." jimmy: "well, jimmy's very unusual." elaine: "well anyway hum.... see when i made the date, i thought that jimmy......" jimmy: "hey look. hank's got a new boyfriend. jimmy's not threatened by hanks sexuality ... jimmy's happy for hank." elaine: "elaine once tried to convert one but elaine's not going through that again." kramer: "i'm going to try and find some candy. you want some?" elaine: "yeah!" kramer: "what kind?" elaine: "i don't care" elaine: "hey jimmy!!" jimmy: "i elaine." elaine: "elaine got a new dress." jimmy: "jimmy likes it." kramer: "there's no candy around here. hey! jimmy." jimmy: "well look who's here." kramer: "whooo!" jimmy: "that's the guy who sidelined jimmy." kramer: "what!" jimmy: "that's the guy who took the bread out of jimmy's mouth. jimmy's out of work because of you.. jimmy: "jimmy wants a piece of kramer..(fighting ensues and jimmy gets taken out by hotel security) jimmy: "jimmy's gonna get you kramer!!. hands off jimmy!!. don't touch kramer: (keamer's voice starts slurring again) "yeah! my lips swollen?" kramer: "no no i've been living alone a long time now." mel: "well i think that's the tops." george: (knocks) you hem... wanted to see me mr. steinbrenner?" stein: "yes george, come in ,come in. you know george i've been your biggest supporter around here and thats why i was so disappointed to hear that you been pilfering the equipment." george: "george would never do anything like that." stein: 'no why would i. i own it." george: "right!" stein: "so what are you saying?" george: "why would george steal from the yankees?" stein: 'he wouldn't." george: " 'course not" stein: "exactly..................(mumbles) i don't what the hell's going on here." george: "sir?" stein: "nothing." george: (energetically) "well seems it's about time for george's lunch." stein: "yes it is. well lets see what i have today. darn it it's ham & cheese again and she forgot the fancy mustard. i told her i like that fancy mustard. you could put that fancy mustard on a shoe and it would taste pretty good to me. oh! she made it up with a cupcake though. hey look at this. you know i got a new system for eating these things. `i used to peel off the chocolate now i turn them upside down , i eat the cake first and save the frosting for the end. (george stops listening and it's almost like its own dessert............. mel: "ladies and gentlemen....i want to dedicate this song to a very courageous young man. (starts singing) "when you're smiling, when you're smiling... the whole world smiles with you... when you're laughin', when you're laughin' the sun comes shining through but when you're crying, you bring on the rain so stop that sign. be happy again keep on smiling , 'cause when you're smiling the whole world smiles with yooooouuuuuuu the whole world smiles with (with kramer)yooooouuuuuuu.. kramer: "hey! got the new penthouse" jerry: "where's my mr. goodbar?" kramer: " ah! here here listen...dear penthouse, i want to tell you about an experience i recently had. as an avid reader i've always wondered if the letters (with jerry) are i'm a dentist and one afternoon my hygienist and i decided to have a little fun with one of our patients. of course none of our patients had any idea exactly of what we were up to. i was still wondering what if ......... (jerry stops and seems bewildered) george: jerry it's funny, paula and i actually met because of elaine. paula: elaine is in my drawing class at the new school george: ..and i went down there one time to see... jerry: (cuts in) a nude model. george: if elaine wanted to get some coffee. jerry: you know i went out once with a nude model. never let me see her naked. hundreds of people see her naked every week, except me. needless to say it was quite vexing. george: are you through? jerry: yeah! george: so anyway, i started to compliment elaine on her sketches and it turns out,they're paula's. paula: george, i just like to doodle george: oh! dropped a napkin...(whispers) jerry! jerry: what? george: what are you doing?...she had those nuts in her mouth, she just spit them out. jerry: (spits the nut) oooh!!! you. you ate these? you sucked on these and put them on the plate? shelly: well i didn't know you were gonna eat them? jerry: soo... shelly: i'm sorry you find me so repulsive? jerry: no ,no i don't, i mean, don't be silly.. shelly: yeah! jerry: it's just... shelly: well, hem ,if you'll excuse me i think i'll just go to the ladies room. paula: i'll join you. jerry: oh! man did you see that. i ate discarded food. george: well i've done that. jerry: yeah, but with you it's intentional. george: haven't you kissed her? jerry: yeah, but this is different , this is like ,you know, semi digested food stuff. you know the next stop is the stomach and you can take it from there. george: excuse me just for a second. ( fixes his hair looking at his reflection in a coffee pot.) jerry: ah. yes that's gonna make a big difference. george: this is dating , you can't leave anything to chance. jerry: hey ,you think that shelly's upset that i made such a big deal about the pecan. george: hehummm , yeah! jerry: thanks. george: no problem. shelly: well jerry , i guess we should get going . jerry: ah! boy. george: well, it was very nice meeting you shelly and jerry be careful, there's a lot of nuts out there. (to paula) all right you have everything? paula: can you grab my purse. george: yeah.( reaches for the purse and finds a piece of paper . he looks annoyed. jerry: yeah! so george: don't you see what this is? jerry: yeah! it's a doodle. george: yeah!, a doodle of me...look at the size of the nose , the ears, all my features are distorted. jerry: oh!.it's an affectionate caricature. george: i'm grotesque . i look like a troll. jerry: it's just a drawing. george: don't you see what this says? how can you possibly like somebody ,if you think they look like this? george: (gets up to leave the table) hello!!! (angrily) elaine: what is with him? jerry: the usual elaine: so, you know what? my friend judy recommended me for a job at viking press. jerry: good for you elaine: yeah! but get this. viking has a deal with the plaza hotel, they got a two bedroom suite, there, for out-of-town clients...so guess what i did? jerry: oh! come on, you told them you're from out-of-town just so you could stay in a hotel room. elaine: i know, i know jerry.. but it's the plazaaa... i've never stayed there .it'll be like a little vacation jerry: well be sure to catch a broadway show while you're in town. elaine: ( laughs)listen, i've used your parents address in florida. jerry: oh! there coming to town tomorrow by the way. elaine: hey. what's this.?. jerry: don't ask. elaine: what is it ..a drawing of mr. magoo jerry: no ,it's george ( elaine laughs heartily) elaine: it is.. george: you enjoying yourself? (more laughs from elaine) elaine: sorry. george: you see. you see! listen when is your next drawing class? elaine: tomorrow . george: all right, i want you to do me a favor. elaine: what? george: i want you to find out is she likes me. elaine: find out if likes you?. what, are you in high school?...george come on can't you just talk to her yourself? george: but she's gonna know that i like her more than she likes me. jerry: you know my parents are coming in and i got some clean up to do , so if you and potsie are done scheming.... kramer: well, they're in... jerry: what's in? kramer: the macanaw peaches ,jerry , the macanaw peaches!!!! jerry: aah! .. right. the ones from oregon that are only ripe for two weeks a year.. kramer: yeah yeah i split a case with newman..i waited all year for this.. oooh this is fantastic.. makes your taste buds come alive....it's like having a circus in your mouth.....take a taste jerry: nah, i don't wanna kramer: come on ,just take a taste jerry: i don't want it.. kramer: come on just taste!!! jerry: i don't want it .... kramer: he..ya. aya. ayyyyyaaaaa!!!! jerry: i am not gonna taste your peach. i ate some one's pecan last night, i'm not gonna eat your peach. kramer: jerry , this is a miracle of nature that exists for a brief period. it's like the aurora borealis. jerry: ..what is this? kramer: what? jerry: yeah! i think i got flea bites. kramer: flea bites? jerry: look at this, my ankle's all bitten up. kramer: you got a dog? jerry: no. kramer: well, that is strange. jerry: how could i have fleas? kramer: don't sweat it buddy...i used to have fleas. jerry: what did you do about them? kramer: what do you mean?... morty: hey guys . jerry . kramer helen: hi jerry......what's wrong? jerry: nothing... helen: jerry, i'm your mother, now what is it? jerry: mom, dad.....i have fleas.. elaine: hey paula!.. i hear you been going out with george costanza? paula: how did you know?? elaine: everybody knows. y'know george told me he thinks you're totally cute and everything. paula: he said that? elaine: ha hum...do you like george? paula: yeaaah! he's cool. elaine: no i mean...do you like him or do you like him like him? paula: like like.. looks aren't important to me ,you know? teacher: miss benes , are you chewing gum? elaine: (nods) humhummmm.... karl: yep!...in your bedroom too mr. seinfeld. you've got a full outbreak of fleas on your hands. jerry: i don't get this. how did this happen. i don't have a dog. karl: i don't explain 'em mr. seinfeld. i just exterminate them. jerry: i don't understand this.. karl: i 'm gonna have to seal the place up for 48 hours and fog it. that's the only way to get rid of them. jerry: nobody can be in here for 48 hours, i got my parents in town. karl: well , unless you want to kill them. they can't stay in here. this stuff is pretty toxic. i'll go get my stuff, it's in the truck. jerry: okay.. elaine: hi....??? jery: bug guy. elaine: why do you have a bug guy? jerry: i have fleas. elaine: argh.. fleas ( strikes the purse she just deposited on the couch) how did you get fleas? jerry: i don't know...but every one's got to clear out of the apartment for two days. i don't know what i'm gonna do with my parents. they'll never let me pay for a hotel and if they go to someplace on their own i'm sure it's gonna be some awful dump. wait a second.. have you checked in the plaza yet? elaine: no....oh no.... jerry: come on,c'mon elaine: no, no... jerry: c'mon ,c'mon.... elaine: no, no... jerry: c'mon, c'mon.... elaine: no, no....yesss!!!!!! jerry: yes!!! jerry: yes!!! george: yeah! elaine: well what about you. where you gonna stay? jerry: i dunno , i'm gonna ask shelley ,but she still might be upset from the masticated pecan incident. elaine: hey!! i found out from paula; she likes george. i'll bet he'll be relieved. jerry: yeah.. when he's dead he'll be relieved... oh by the way viking press sent a fedex for you to my parents. they brought it with 'em. elaine: yeah that's just some stuff about the company. george: hum..( to elaine) hey! did you talk to paula? elaine: yeah. george: so what did she say? elaine: she...likes you.. george: she said she liked me. no kiddin' she said that? elaine: ya! george: those were her exact words, i like george. elaine: yep! george: ha haaaaaaa... jerry how do you like that.you see i get myself in a dizzy, i'm all worked up and for what? elaine: for nothing.. george: ha ha.. elaine: in fact she said that looks aren't even that important to her... george: you see.....what!! elaine: ah oh!! george: she said looks aren't important to her? elaine: well..hum...let me rephrase that, she said.... george: she thinks i'm ugly. i knew it. jerry: you see the thing of it is, there's a lot of ugly people out there walking around, but they don't know they're ugly, because nobody actually tells them. george: .....so what's your point? jerry: i dunno... elaine: okay.. the point , george, is she likes you. george: oh!, so what. i'd rather she hate me and thought i was good looking....at least i can get somebody else. (scratching his chest) what is this? why am i itching? jerry: that'd be the fleas. jerry: hey!!! morty: hey! i do you like this? huh, huh! helen: oh! my god, morty lets go, this is too nice. morty: hey! this is the kind of room sinatra stays in. hey! look , macadamian nuts. helen: macadamian nuts? morty: hey! you know what these cost, they're like 80 cents a nut. helen: jerry, are you sure this all right? jerry: yeah! it's all taken care of. morty: ( from the other room) hey!!! they got a phone in the john here. elaine: judy . judy: hey!!!!. elaine: hi, thank you so much for recommending me to viking press . judy: it is my pleasure , just make sure you give that manuscript a good read. elaine: manuscript? judy: yeah. i'm sure they fedexed you a manuscript. they want to see that you can read an unpublished work and give insightful criticism. elaine: oooh!! judy: read it twice if you have to. this is a big step in your career. elaine: yeah! hmmm..i gotta go.. judy: hey! what about lunch? elaine: (she leaves hurriedly) i gotta gooo... elaine: thank god i found you.. jerry: oh! hey! elaine: you still got that fedex? jerry: yeah! i got it . it's in the apartment, but we can't go in there it's being fumigated. elaine: no i'll take my chances. come on...( grabs him by the coat and head back to his place) jerry: you see? elaine: jerry , i need that fedex right now.. jerry: i told you to take it. elaine: well, i didn't know that it was a manuscript that i had to read... jerry: well, you can't go in there it's like a gas chamber in there. kramer: i left a macanaw peach in your refrigerator. jerry: kramer, they're fumigating. there's toxic gas in there. kramer: toxic gas!!! jerry: aw! you'll be fine, you were in there for what , a couple of minutes. kramer: an hour and a half!!! i was reading a manuscript, i just couldn't put it down. elaine: my manuscript? jerry: how do you feel? kramer: now that you mention it , a little woozy. elaine: kramer you got go back in there grab my manuscript. kramer: i'm not going back in there!! elaine: all right then, where is it?? kramer: i left it on the coffee table or somethin' jerry: well wh..wh.what are you doing? elaine: i'm going in . jerry: didn't you see the sign on the door? kramer: well i thought it was so your parents wouldn't walk in while you're with a girl. elaine: ( heavy panting) it's not on any table, kramer. where is it? kramer: well i don't know . i was in the bathroom , the kitchen... elaine: okay... bathroom....kitchen. jerry: can you get me a soda? kramer: jerry, i had some milk, i made a sandwich. i got to get out of the building. elaine: (again pants) i couldn't find it anywhere. how did you get fleas anyway? jerry: i don't know. who could've been in my apartment. elaine: i 've looked everywhere , even under the couch but all i could find were the stupid chunky wrappers. i couldn't.... jerry: wait a minute . did you say chunky wrappers? elaine: yeah! jerry: let me see those. ( smells them) oh! i know the chunky that left these chunkies......newman!!! i've got him. jerry: newman . open the door, newman, i know you're in there. newman: hello jerry. what a pleasant surprise. jerry: there's nothing pleasant about it, so lets just cut the crap.. you gave me fleas. i know it and you know it.. newman: fleas? bwa ha ha ha ha .that's preposterous. how can i , give you fleas. now if you don't mind... jerry: oh! but i do. there's probably fleas crawling all over your little snack bar. ( as he says this newman is wildly scratching behind his back. he suddenly stops when jerry turns around) newman: so , you have fleas. maybe you keep your house in a state of disrepair. maybe you live in squalor. jerry: you know newman , the thing about fleas is that they irritate the skin and they start to...itch. oh! maybe you can hold out five seconds or ten, maybe fifteen or twenty but after a while, no matter how much will power a person may have. it won't matter, because they're crawling , crawling on your skin. up your legs , up your spine , up your back..... newman: (cannot take this torture anymore) baaaaaaaaarrhhhhhhhhhhh....i'm ripped with fleas ( scratches furiously) morty: oh! oh! that feels good. hey! this guy charges a hundred bucks an hour but i'm telling ya he's worth every penny oooohh! helen: i'm next. morty: hey! leo, get this, four movies at once; pay per view. leo: i love these nuts. nana: this champagne's gone flat. ( throws her glass over her shoulder) helen: nana!!! nana: he ha ha ha...let the chambermaid clean it up george: hello.. paula: what's the matter?... george: well i spoke to elaine... paula: hey! look , no shave. george: no...why should that make any difference to you? paula: it doesn't.. george: of course not. you don't care what i look like. paula: that's right i don't. george: i suppose i could just pull this out ( his tucked shirt)and walk around like this and you wouldn't care? paula: not a wit. george: hu humm? i suppose we could go to lincoln center and i'd be wearing sneakers and jeans and that would be fine too. paula: you can wear sweatpants. george: i could.. paula: (seductively) you could drape yourself in velvet, for all i care. george: velvet... elaine: did you read the whole thing? kramer: oh! yeah. elaine: huh . so what's it about? kramer: well it's a story about love, deception, greed, lust and...unbridled enthusiasm. elaine: unbridled enthusiasm...? kramer: well , that's what led to billy mumphrey's downfall. elaine: oh! boy. kramer: you see elaine, billy was a simple country boy. you might say a cockeyed optimist, who got himself mixed up in the high stakes game of world diplomacy and international intrigue. elaine: oh! my god. kramer: ah! here we go. elaine: (to the waitress) can i have a scotch on the rocks. kramer: may i..( pointing her food) elaine: (feeling sick) yeah! go ahead. kramer: what is this? elaine: what? what are you doin'? ( kramer salting her food) kramer: i can't taste this. elaine: what are you talking about? kramer: this food ,it has no taste......nothin' i'm gettin' nothin'...( realizes) it must be the toxic gas from the fumigation......( he leaves paranoid and confused) jerry: hey, thanks a lot for lettin' me stay here. shelly: well, i don't keep pecans in the house so i didn't think it'd be a problem. jerry: ( embarrassed laugh) ...oh! damn.. shelly: what's the matter? jerry: i forgot my toothbrush. shelly: oh! no problem.....you can use mine. jerry: yours?....you know what i'll think i'll brush later. shelly: brush now. jerry: (long pause).......sure. ( humms a song then stares at the toothbrush) kramer: newman ,let me have a bite of your macanaw.. newman: what for, you got your own. kramer: come on ,c'mon i need to taste it. ( takes his peach).....nothin' , can't even taste a macanaw. newman: ( resumes eating) well that's a shame. kramer: waited all year and i can't even taste it.. newman: you can't taste 'em . why waste 'em . why not give them all to me. elaine: it's a story about love , deception ,greed , lust and.... unbridled enthusiasm . mandel: unbridled enthusiasm. elaine: yeah!..tha..that's right. that that's what led to...(throath clearing) billy mumphrey's downfall. mandel: hmmm...interesting take. so you believe, has he not been so enthusiastic he could have adverted disaster. elaine: yes...ye..yes..that's right...you see ,billy mumphrey was a simple country boy. some might say a cockeyed optimist, who got caught up in the dirty game of world diplomacy and international intrigue. mandel: so.. it was more a question of attitude than politics.. elaine: yes, yes mr. mandel. morty: hey! under siege is on again. whose up for it? leo: no more nuts. awrghh..... jerry: oh! my god. what the hell is this? ..... don't tell me.......velvet!!! george: it's the real deal. jerry: she's seen you in this thing. george: that's right...we just had sex......you know jerry i've been searching for someone a long time. well the search is over. jerry: and now the search for the right psychiatrist begins. george: he he...so huh! what's with the suitcase. jerry: ahh! she threw me out. george: why? jerry: i wouldn't use her toothbrush. george: so where are you staying? jerry: well i guess i'm stuck with the velvet fog. mandel: three hours of massage time , twelve in-room movies including several adult features, five shoe shines and four hundred dolars worth of snacks. not to mention the damage to the room. elaine: mr mandel, you don't understand ...my my friend had fleas. i ran into the gas, it could have killed me, and my, my other friend couldn't taste his peaches ,they only good for two weeks. mandel: i think , you've read, one too many, billy mumphrey stories. good day miss benes. elaine: okay...good day.. paula: hi george. george: ( mouth full) hi, this is fantastic ( puts the pit in the a plate)d'you ever had a macanaw peach? paula: oh! yeah i love those. george: too bad , it's all done. kramer: ya....yes!....yes! it's back i can taste again. ( to a passerby) hey! what's the date today? passerby: the fifteenth. kramer: fifteenth , yes last day for the macanaws. i can still make it. wait.. newman... newman: sorry , last one . would you want to suck the pit? kramer: ( fake laugh ) look hubert. it's the mailman. you remember the mailman don't you. elaine: ( knocks) hello is anybody here?.. leo: they said they were sending an asian woman. elaine: oh! my god. [opening scene: jerry and elaine are outside, heading towards the apartment building] jerry: i hear you're going out with david putty. elaine: yeah. what, is it a problem? jerry: well, i think he could've asked me. supposed to be a friend of mine. elaine: well, i guess he figured you just wouldn't care. it *has* been a few years. jerry: elaine, you always care who an ex-girlfriend dates. you don't want it to be someone you know, and you don't want it to be someone better than you. now, even though the latter is *obviously* impossible. elaine: oh, god. jerry: the former still applies. i don't know what it is, but i just can't see you with a mechanic. elaine: oh, yeah. right, right. well, all those mechanics do is work all day with their hands and their *big*, *muscular* arms on machines, and then they come home dripping with animal sexuality like stanley kowalski. what a huge turn-off that is. jerry: all right. george: look at that. they got lobster on the menu. who would order a lobster here. i mean, do they bring a lobster in everyday hoping *todays* the day. estelle: so what if they have a lobster. suddenly you're a shell-fish connoisseur. george: you know, i think we really need to be in front of a television set. you take t.v. out of this relationship, it is *just* torture. estelle: so, i'm getting an eye job. george: an eye job? ma, you don't need an eye job. estelle: georgie, i'm a divorcee. george: no, you're not a divorcee. youre just separated. you're---you're a separatee. estelle: well, i'm out there, george. george: no, you're not out there. estelle: i am, too! george: you're not out there! you can't be, because *i* am out there. and if i see *you* out there, there's not enough voltage in this world to electroshock me back into coherence! estelle: well, anyway, the operation is on tuesday and i need you to drive me home because i'll be all drugged up. george: tuesday? i can't do it tuesday. steinbrenner needs me to run--- estelle: this is the only time the doctor *has*. george: kramer, hey, hey! (gets up out of his seat) kramer: hi, little buddy. george: come on over and sit down. kramer: hey, listen, i gotta go somewhere. george: no, you're gonna sit down, you son of a gun... kramer: all right, i'm sitting down. how are you? (kisses estelle on the cheek) estelle: so, kramer. i'm getting an eye job. kramer: oh, yeah, good for you. hey, you have to look your best. you're out there now. george: she's not out there! kramer: so, who is your doctor? estelle: uh, bakersoll. kramer: (whistles). he's good. he's *very* good. he worked on this kid from guatemala with no nose. turned him into ricardo montalban. george: hey, kramer, what are you doing tuesday? kramer: tuesday? uh... george: why doesn't *he* pick you up after the operation. he's got the car with the bench seats that you like. estelle: oh, i don't care. kramer: yeah, i know, but i can't drive anybody anywhere until i go down to the motor vehicle bureau and get my new plates. george: well, giddy-up! kramer: yeah, i'm here to pick up my new plates. my name is kramer. cosmo kramer. clerk: kramer.... (checks computer) all right... kramer: all righty... clerk: sign right here, please. (hands over clipboard) kramer: (signs it) okay. (the clerk hands him a manila envelope). thanks. (opens up the envelope) assman? oh, no, these don't belong to me. i'm not the assman. i think there's been a mistake. clerk: what's your name again? kramer: cosmo kramer. clerk: (checks computer again) cosmo kramer. you *are* the assman. kramer: no! i'm not the assman. clerk: well, as far as the state of new york is concerned, you are. david: how do you feel? elaine: fine. david: something the matter? elaine: no. david: then what is it? elaine: no, nothing. jerry: hi. elaine: i was with david *putty* last night. jerry: yeah, so. elaine: he did the move. jerry: what move? elaine: you know...*the* move. jerry: wait a second. *my* move? jerry: david putty used *my* move? elaine: yes, yes. jerry: are you sure? elaine: jerry! there is no confusing *that* move with any other move. jerry: i can't believe it. he *stole* my move. elaine: what else did you tell (reaches over to slap jerry) him. (does it again) the two of you must have had *quite* a little chat! jerry: oh, it wasn't like that! i didn't even mention you. you know, we were in the garage. you know how garages are. they're conducive to sex talk. it's a high-testosterone area. elaine: because of all the pistons and the lube jobs? jerry: well, i'm going down to that garage and telling him to stop doing it. elaine: well, wait---wait a second. jerry: what? elaine: isn't that a little...rash? jerry: no! he stole my move! elaine: yeah, but...*i* like the move. jerry: yeah, but it's like another comedian stealing my material. elaine: well, he doesn't even do it exactly the same. he--he--he uses a pinch at the end instead of the *swirl*! jerry: oh, yeah. the pinch. *i've* done the pinch. that's not new. besides which, i don't know how you could trust any of his moves now. his whole *repertoire* could be lifted. elaine: you know, it's strange, because he's such an honest mechanic. jerry: i know, he's probably the only honest mechanic in new york. jerry: ...so he stole my move and he's using it on elaine. george: you told david putty your move and you didn't tell *me*? i *need* a move. you know i have no moves, jerry. (points to the candy bar) gimme a bite. jerry: can i just get it opened first? george: i can't believe you're hoarding sex moves. i'm out there rubbing two sticks together. you walk around with a zippo. jerry: all right, all right. here. (hands george a piece of the candy bar). george: (takes a bite) oh, that's good. that's very good. jerry: you feel better? george: yeah, much better. all right, so what's the move, because i need *something*. this woman i'm dating, it's like she's doing her nails during love-making. jerry: nancy klopper? george: yeah. never seen anyone so bored. i'm working like a dog here. give me a moan. *something*. i'd settle for a belch, for god's sake. all right, come on, let's have it. jerry: all right, george. i'm gonna tell you. but i just wanna make sure, before--- george: yeah, yeah, yeah. it's in the vault. i'm putting it in the vault. jerry: it's not even a question of that. the point is when something like this is passed along, one must be certain that it's going to be used in a *conscientious* way. this is not some parlor trick to be used--- george: you're gonna tell me...or not. jerry: all right. on your bed. you got a headboard? you'll need a headboard. george: i got a headboard. jerry: is it padded? george: no. jerry: good. how tall is she? george: five-foot four. why? jerry: you can't have more than a one-foot differential in your heights. otherwise, you could really hurt your neck. george: i can't tell ya how much i appreciate this. jerry: george, if you could master this, you'll never be alone again. [back at jerry's apartment: jerry and george have just walked in, still conversing on the same subject] jerry: now, the ending is kind of an option. i use the swirl. i like the swirl. i'm comfortable with the swirl. *i* feel the swirl is a great capper. he uses the pinch, which i find a little presumptuous. george: is it a clockwise swirl? jerry: i prefer clockwise, but it's not written in stone. kramer: here you go, buddy. (shows it to jerry). jerry: what is it? kramer: *fusilli* jerry! it's made from fusilli pasta. see the microphone? jerry: when did you do this? kramer: in my spare time. (turns to george). you know, i'm working on one of you, george. i'm using ravioli. see, the hard part is to find a pasta that captures the individual. jerry: oh... why fusilli? kramer: because *you're* silly. get it? (hands the fusilli to jerry) yeah... jerry: well, thank you very much. george: so, did you get your new plates? kramer: oh...yeah. i got my new plates. but they mixed them up. somebody got mine and i got their *vanity* plates. george: what do they say? kramer: assman. jerry: assman? kramer: yeah. assman, jerry. i'm cosmo kramer, the assman! jerry: who would order a license plate that says "assman"? george: maybe they're wilt chamberlain's. jerry: it doesn't have to be someone who gets a lot of women. it could be just some guy with a big ass. kramer: yeah, or it could be a proctologist. jerry: yeah. proctologist. george: come on! no doctor would put that on his car. kramer: have you ever *met* a proctologist? well, they usually have a very good sense of humor. you meet a proctologist at a party, don't walk away. *plant* yourself there, because you will hear the funniest stories you've ever heard. see, no one wants to admit to them that they *stuck* something up there. never! it's always an accident. every proctologist story ends in the same way "it was a million to one shot, doc. million to one." kramer: oh! there's my phone. (he leaves) george: so, where you gonna stick this (points to the fusilli jerry) jerry: i'll tell you where i'd like to stick it. jerry: hey, david. david: oh, hi, jerry. jerry: hey, what's the story? i hear you're doing my move. david: what move? jerry: what move? *my* move. the one i told you about. you used it on elaine. david: you're move? what, are you kidding? i was doing that before i knew you. all you told me about was the ending. jerry: the ending is the whole thing. without the ending, it's nothing. you had *nothing*. david: oh, that ending was *so* obvious. i would have figured it out anyway. i didn't need you to tell me that stupid twist. jerry: swirl. david: whatever. i don't even do it. jerry: oh, yeah, i know. you do the *pinch*. david: yeah, that's right. jerry: you can't come up with your own stuff , so you *steal* other peoples? you're nothing but a hack. david: are you through, 'cuz, uh, i gotta get back to work. jerry: well, i'll tell you what i'll do, you know. if you wanna do it out of town...okay. but not in the city. david: all right, how about the next time your car breaks down, you take *that* out of town. jerry: fine. david: good! nancy: ow, george! (crawls out from beneath the covers) what are you doing? george: (pops his head out of the covers, looking a bit confused) uh...you know, uh...pleasuring you. nancy: well, stop it! george: you don't like the move? nancy: no. i don't. george: you're kidding. nancy: no, i'm not. it feels like aliens poking at my body. george: sorry. i'll just go back to my usual routine. elaine: oh, god! oh, god, dave! oh, yes! yes! david: no, i'm sorry. elaine: what?!! david: i can't do the move. elaine: what? david: oh, he's ruined it for me. elaine: oh, oh, come on, please? david: no, he called me a hack. i'm just not into doing it anymore. elaine: oh, so---so that's it? david: i'll come up with some new stuff. kramer: "call me. thirty-six, twenty-four, forty-six. i think i have what you're looking for." (pleased by the note, kramer stumbles into his car). dr. bakersoll: i must caution you about one thing. you can't cry for at least ten day. you can ruin the operation. estelle: oh, okay. dr. bakersoll: now, is someone coming to pick you up? estelle: yes, my son's friend should be here any minute. security guard: can i help you? kramer: ah, yeah. doctor cosmo kramer. (points to plate) proctology. security guard: oh, oh, okay. sure... kramer: thanks. have a good day. kramer: i just can't get over how fantastic you look. estelle: oh, really? kramer: oh, yeah. this takes twenty years off. estelle: and it was all done by laser. i don't even need bandages. estelle: did he say "assman"? kramer: oh, yeah. estelle: oh my goodness. (another car passes: "hey, the assman's in town!") kramer: you got that straight! estelle: boy. i never dreamed it could make such a difference. jerry: you must have done *something* wrong. you probably screwed up the order. did you close with the swirl? george: supposed to close with the swirl? jerry: oh my god. yes, you close with the swirl. there's a progression there. i told you to write it down. george: yeah, yeah, should've written it down. jerry: yeah? buzzer: elaine. jerry: c'mon up. (turns to george) you know what? do me a favor. don't even do the move anymore. you're gonna give it a bad name. jerry: hello? yeah, this is jerry seinfeld. what? twenty-eight hundred dollars?!! that's the estimate on my car?!! no, don't even do anything. i'm gonna think about it. okay, bye. george: what's to think about? if putty says it's what it is, it's what it is. he's not gonna cheat you. jerry: except that it's not putty. george: what happened to putty? jerry: eh, we had a little fight about the move. i took her to this other place. i think they might be trying to screw me. george: well, of course they're trying to screw you. what do you think? that's what they do. they can make up anything. nobody knows. "by the way, you need a new johnson rod in there." "oh, a johnson rod. yeah, well, you better put one of those on." jerry: hey, elaine. elaine: yeah, yeah, hello. jerry: is it something i said? elaine: yes! as a matter of fact! david putty won't do the move anymore. jerry: really? elaine: oh, he's come up with some other move. you should see this thing. jerry: what is it? elaine: oh, it's a lot of just fancy-shmancy stuff. you know what it's like? it's like a big budget movie with a story that goes *nowhere*. jerry: huh. elaine: i mean, this move is no good, jerry. it's just taking up a lot of my time. and i...will not stand by and allow him to perform this move on me, when a perfectly good move is just sitting in the barn doing nothing! george: let me ask you a question. this new move. is there a knuckle involved in any way? elaine: yes. as a matter of fact, there is. george: i think that's mine. elaine: i'm not surprised. jerry: listen. i need you to do me a favor. when's the next time you're gonna see him? elaine: why? jerry: you gotta get an estimate on my car from him. i think this garage is trying to screw me. elaine: an estimate? how am i supposed to do that? jerry: well, look. here's the work order with everything that broke. just kind of bring it up at the right time and find out. (hands elaine the work order) elaine: (takes the work order and points to the fusilli jerry sitting on the table) what? what is this? jerry: that's, uh, fusilli jerry. elaine: fusilli jerry? jerry: yeah. kramer made it. george: all right, listen, i'll see you guys later. jerry: hey, assman! kramer: hey, well, this is sally. sally: hello. jerry: hi. elaine: hi. kramer: shall we go? sally: okay. (turns around and walks out with an exaggerated swing of her hips) estelle: you can't face the fact that i'm improving myself. frank: you're not the only one improving yourself. i worked out with a dumbbell yesterday. i feel *vigorous*. estelle: just take your mail and go home. i have things to do. frank: i got things to do, too. estelle: don't upset me! i can't cry! frank: getting an eye job like some manhattanite, huh? estelle: well, it's already working. kramer made a pass at me. frank: kramer made a pass at you? you're crazy. estelle: i'm not crazy. he stopped short and made a grab. frank: he stopped short? that's my move. i'm gonna kill him! elaine: hey, let me ask you a question. david: sure. elaine: what do you charge for blown shocks? david: what? elaine: two, three hundred? david: i don't know. maybe five hundred. elaine: ah. elaine: what about a bad gasket? david: bad gasket? elaine: yeah. like a terrible gasket. david: what is all this? elaine: nothing, nothing. i'm just taking an interest in what you...do. david: what kind of car is it? elaine: oh...any kind of---of a swedish car. david: all together, that could run about sixteen hundred. elaine: oh. elaine: is that with the parts and labor? david: uh-huh. elaine: hmm. elaine: oh, no. no, david. no, please. not the knuckle.... nancy: wow. that was...*great*. i mean...*wow*. george: it just came to me. nancy: i---i've never in my life have---have i---. what was that? george: you mean in the end? nancy: uh-huh. george: a counter-clockwise swirl. nancy: what's that? george: what? nancy: on---on your hand? let me see what's on your hand. george: nothing. i don't know...just a little dirt. nancy: give me that. (grabs his hand) i wanna see what's on your hand. nancy: number one. take her leg.... oh, my god! crib notes? you've got crib notes?!! george: it's a very complicated move! i couldn't remember it all. nancy: oh, my god, you're sick. (gets out of bed) george: you know, it's not the s.a.t.s! frank: assman? i'll get him, assman! jerry: sixteen hundred dollars? that's all? *ooh*, they are ripping me off. elaine: so what are you going to do? jerry: well, that's it. i'm going back to putty. no move is worth this. elaine: oh! you mean you don't care if he does the move anymore? jerry: are you kidding? he can do every move i've ever done! do you know what a good mechanic is worth? you can't compare that to sex. jerry: hi, mr. constanza. what's uh...? frank: where's your friend kramer? jerry: i don't know. why? frank: because i'm looking for him. that's why. he stopped short. jerry: what do you mean? frank: in a car, with my wife. he stopped short. you think i don't know what that's about? that's my old move! i used it on estelle forty years ago! i told everybody about it! everybody knows! (demonstrates) hmmph! i stopped short. jerry: really, stopping short. that's a good move. frank: you're not kidding it's a good move! kramer: hey. jerry: hey. kramer: hey, frank. frank: don't frank me! i know what you did. how dare you stop short with my wife! kramer: c'mon, frank, relax. i don't even know what you're talking about. frank: you think i don't know, assman?!! to think i almost split the profits on the manssierre with you. kramer: bro. frank: manssierre! kramer: bro! frank: manssierre! you...! frank: aah!!! jerry: oh, my god! jerry: if i wasn't there, i wouldn't have believed it. elaine: me either. george: they say this guy's the best. jerry: he had to use cork-screw pasta. kramer: jerry. jerry, come here. take a look at this. kramer: the name on the boat. look at it. jerry: assman! kramer: yeah (points towards the doctor's office), he's the assman! jerry, *he's* the assman! doctor: which one is the son? george: (stands up) i am. doctor: ah. i'm doctor cooperman. i just want you to know that this won't take long. and he's going to be fine. kramer: yeah, excuse me, uh... you didn't by any chance recently get the wrong license plates? dr. cooperman: yes. i'm still waiting for the motor vehicle bureau to straighten it out. kramer: so...you're the assman. frank: it was a million to one shot, doc. million to one. estelle: where have you been?!! you were supposed to fix the stove! i've been waiting for hours! frank: i fell on some fusilli. estelle: fusilli? frank: you know, the corkscrew pasta. it was a fusilli jerry. it got stuck in me. had to go to the proctologist. estelle: the proctologist? are you okay? frank: yeah. estelle: oh, i was so worried. (grabs a couple of tissues from the box) george: ma, don't cry! estelle: oh, i can't help it! george: ma, your eyes! estelle: oh! jerry: what time does your flight get in? six? all right, that gives us six hours. then i'll meet you at the diplomat's club. i'll be the one without the big red sash. okay, see you tonight. (hangs up) elaine: is that the supermodel? jerry: yep, she's not gonna be back for a month, but i got six hours. elaine: i thought you had a show in ithaca. jerry: i do, but it's three o'clock and then i'm flying right back and meeting bridget at the diplomat's club in the airport. elaine: well, guess what i'm doing. i'm going to mr. pitt's, and i am telling him that i am quitting. jerry: so that's it? you know i never even met the guy. elaine: i've had enough. i am marchin' in. jerry: you're marchin' in. elaine: i'm marchin'. (enter george) george: hey. jerry: hey. elaine's quitting. george: really? elaine: i'm marchin' in. george: i've done the march in. best feeling in the world. jerry: how 'bout the march out? george: not as good. that's when you realize all the money you're losing. elaine: this is it. wish me luck. jerry: get a march goin'! march it! (she exits) george: jerry, i need to borrow your camera. jerry: why? george: well, i wanna put a picture of me and my boss mr. morgan up at the office. jerry: what for? george: they're reorganizing the staff, and i'm on thin ice with this guy as it is. jerry: isn't putting this guy's picture on your desk a little transparent? george: it better be. elaine: mr. pitt, i have something to tell you. pitt: one second elaine. elaine: mr. pitt... pitt: elaine, you know what i just did? i just amended my will to include you as a beneficiary. elaine: what? pitt: well, i think of you as part of my family. you've come to be like a daughter to me and i want to make sure you're taken care of after i'm gone. elaine: (flattered) mr. pitt... pitt: (sneezes) elaine, i feel a cold coming on. could you get me a cold pill from the medicine cabinet? elaine: oh no no, mr. pitt, you mustn't. you have to check with the pharmacy before you combine anything with your heart medicine, pitt: yes, yes, i'll check with the pharmacist. elaine: we don't want anything to happen to you mr. pitt. we want you to live a long, long time. george: (holding camera) look at this, i only have one picture left... how 'bout a shot of me and mr. morgan? morgan: why? george: why? because we're a team! c'mon! would you take this for us, dear? thank you very much. here we go... (to morgan) anyone ever tell you you look a lot like sugar ray leonard? yeah, you must get that all the time. morgan: i suppose we all look alike to you, right costanza? george: no, not a racial thing, there really is a resemblance... elaine: oh my god. woman: who are you? pitt: this is the girl i want to put in my will. elaine... man: please, rest mr. pitt. woman: you're the assistant? why weren't you taking care of him? elaine: well, he gave me the morning off, i was doing a little... shopping. how did this happen? man: took a very dangerous combination prescription heart medicine and these other pills. elaine: mr. pitt, you were s'posed to talk with the pharmacist. pitt: i spoke to someone who worked there. elaine: i'm gonna go and call that pharmacist. (she exits) woman: how well do you know her? kate: jerry, listen, just so you know, before we take off they're gonna tell us what to do in the vent of a crash- jerry: yes, i know. i've flown before. kate: oh good. i just didn't want you to freak out... the chance of a crash is very slim. do you have to go to the bathroom? jerry: no. kate: (pause) because even if you have (jerry gets up to go) to go a little you'd better go now because you won't get another chance until way after take off. kramer: hey, how you doin'? earl: pretty good. kramer: name's kramer. earl: earl hafler, nice to meet you. i'm headed to houston, where you headed? kramer: oh i'm happy right here. isn't this place amazing? planes flying in from all corners of the world, and they know the minute they're arriving. earl: ah they don't know a darn thing. that's why my flight the houston's been delayed. they're all morons. matter of fact, i'll bet you that that flight to pittsburgh takes off before my flight to houston. kramer: bet? um, not betting. earl: friendly wager. kramer: i haven't made a bet in three years, i- earl: ah c'mon. keep things interesting, pass the time. kramer: okay, how much? earl: how 'bout 200? kramer: you're on, cowboy! george: how ya doin'? man: okay. george: nice day today. man: what? george: i'm george. george costanza, you live around here? intercom: now arriving at gate 12... earl: this could be mexico city. kramer: c'mon seattle, let's go. earl: come on, mexico city! kramer: seattle, yeah! intercom: ...flight 42 from mexico city. kramer: all right, c'mon, let's go again. elaine: mr. pitt, do you need anything? pitt: no. elaine: you need something to sit up. why don't i get you a pillow? pitt: okay. kate: it's a pretty full house, the lighting guy's name is lew, he's got a birthday next week. jerry: i don't care. kate: by the way, jerry, i don't want you to freak out, but the pilot is going to be in the audience. jerry: who? kate: remember the plane we took here? the pilot is gonna be sitting out there watching the show. jerry: i don't care, why are you telling me this? kate: i just didn't want you to freak out when you saw him. jerry: why would i freak out? (to himself) pilot... off stage: ladies and gentlemen, a big hand for mr. jerry seinfeld! (clapping) jerry: hey, all right. good afternoon ithaca. welcome, good to see you here... boy, i'll tell you, there's an awful lot of those orange cones you have on the throughway... (sees pilot) on the way... up here... um... i.. kate: it didn't go very well, did it? jerry: no, it didn't. and you know why? seeing the pilot in the audience really freaked me out. kate: i knew it. jerry: if you hadn't mentioned anything, i would have been fine. i became obsessed with him. kate: why did we invite him? stupid, stupid. when he asked for a ticket, i should have said no. i'm gonna go chew him out. jerry: oh, it doesn't matter now. kate: don't worry, jerry. i'm on top of this. jerry: yeah, you're on top of it, and i'm on the bottom! earl: well, mr. kramer, looks like you're in the hole $3200... will that be cash or check? kramer: all right, look, one more bet. double or nothing. c'mon. earl: all right, but i wanna see some cash on the table. kramer: all right, let me call my bank. you stay here. (he calls) newman: hello? kramer: yeah, it's, uh, me. newman: hey, what's up? kramer: all right, listen. i need some cash. newman: what for? kramer: i just need it, that's all. newman: oh no. don't tell me. you're gambling again, aren't you? oh you weak, weak man. where are you? kramer: i'm at the airport. newman: the airport? kramer: we've been betting on arrivals and departures. (newman rolls eyes) but i'm down $3200 , so you've gotta get me some cash. newman: i don't have that kinda dough. kramer: sure you do. newman: oh no, no, not the bag! kramer: oh help me man, i'm desperate! newman: all right, all right. intercom: sorry for the delay, folks, there is a slight complication that we're taking care of, and then we'll be on our way to la guardia... jerry: (to katie) what is the complication? flight attendant: mr. seinfeld? jerry: yes? flight attendant: i'm sorry, but the pilot has asked that you leave this plane. jerry: what? flight attendant: apparently, he has some sort of problem with you. kate: i'm not surprised. i really let him have it, jerry. he has no business being in your audience if you didn't want him there. jerry: i didn't care. flight attendant: well, now the pilot doesn't want you on his plane. jerry: he can't just throw me off the plane! flight attendant: yes he can, if he has cause to believe a passenger will be a disturbance. jerry: but i'm not a disturbance! flight attendant: well, apparently you are disturbing him, sir. jerry: but someone is waiting for me! kate: jerry, i don't want you to freak out. jerry: i'm freakin' out! i am freakin' out! kate: there's a flight leaving at eight, and another one at eight-thirty, which one do you want? jerry: which one do you think i want? kate: the eight will get you in a little earlier. jerry: then we'll make it the eight. kate: i'll book a hotel, do you want a standard room or mini suite?] jerry: hotel? kate: yeah, it's eight in the morning. jerry: no, no, no. i have to get home tonight. bridget's gonna be waiting for me at the diplomat's club. rent a car. kate: mid-size, luxury, or sports model, what's your preference? jerry: i don't have a preference, okay! just make a decision yourself! stop bothering me with every minor little detail, please? kate: okay, you're a big celebrity. (she exits) george: yo. jerry: george. george: hey, jerry, how was ithaca? jerry: i'm still here. listen, you gotta go down to the diplomat's club... george: hey, jerry, what was the name of the exterminator who fumigated your apartment when you had fleas? jerry: carl, i think. george: carl... yeah, he was a nice guy. jerry: yeah, he was nice. george: what company was it? jerry: defent. george: yeah, you know we spoke for a little bit... jerry: you need an exterminator? george: no, not really. jerry: oh, don't tell me. 'cause he's black? george: gotta go. jerry: george, george! jerry: hello, this is jerry seinfeld. is elaine there? woman: hold on... elaine, there's a jerry seinfeld on the phone for you. elaine: hello? jerry: elaine, i need you to do me a big favor. i need you to go down to the diplomat's club and meet bridget for me. i'm going to be late. elaine: that's at the airport, right? jerry: right, i don't want bridget to think i stood her up. i'll never get another date with her. she'll freak out. elaine: all right, all right. you sound a little freaked out yourself. jerry: i am a little freaked out! elaine: calm down, i'll take care of it. (ms. walker looks suspicious of elaine) jerry: all right, but you have to go now. elaine: i said i'll take care of it! newman: kramer. kramer: hey. newman: okay, here it is. kramer: good. (to earl) here's my collateral. earl: so it's a mailbag, so what? newman: so what? do you know whose mailbag that is? earl: (reading) david berkowitz. newman: son of sam. the worst mass murderer the post office ever produced. earl: where did you get this? newman: i took over his route. and boy, were there a lot of dogs on that route. earl: any of 'em talk to you? newman: just to tell me to keep off the snacks! earl: (to kramer) your buddy's a helluva guy. kramer: yeah, don't i know it. earl: okay, cosmo, we're back in business. let's check out the board. now, who do you like? kramer: all right, how 'bout ithaca vs. boston? earl: all right, i'll give you a sportin' chance. i'll take ithaca. kramer: double or nothin'. earl: double or nothin'. newman: i hope you know what you're doing... (kramer gives newman a look of lack of confidence) jerry: (wakes up) where are we? kate: i'm not sure. jerry: is this even a road? kate: oh we lost the road a half hour ago. jerry: what? why didn't you wake me up? kate: you told me not to bother you with minor details. jerry: no, road is a major detail! kate: okay, now i know. should i keep going or turn around, do you have a preference? jerry: (pointing ahead) look out! george: may i help you? carl: i'm the exterminator. george: oh, yes of course, come in. carl: why didn't you want me to bring my equipment or wear my uniform? george: yes, well, if the other people in the office saw that i called an exterminator, they would just panic. besides, this is sort of a friendly visit. carl, right? carl: do i know you? george: yeah, sure, we met at jerry seinfeld's apartment. when you fumigated for fleas over there. carl: seinfeld... oh yeah, funny white guy, right? george: jerry? yes, i suppose he is white. you know, i never really thought about it. i don't see people in terms of color. you know, there's someone i'd like you to meet. hand on... (to phone) is mr. morgan in? phone: mr. morgan left for dinner. george: he left... huh... carl, you hungry? tv: here's a new twist on car pooling early this morning, a lost manhattanite drove through a residential backyard and wound up in a swimming pool near ithaca, new york. comedian jerry seinfeld, a passenger, seemed a little freaked out. jerry: that's it! no more questions! i don't care! pitt: that's him! that's the man who gave me the pills in the drug store! he's no pharmacist. womanewman: jerry seinfeld... i know that name. he called here earlier for elaine. (she looks at mr. pitt) george: (to carl) oh, by the way, order anything you want, it's all on me. just do me a tiny favor pretend we're old friends. oh my god! mr. morgan! what a coincidence, it's mr. morgan. mr. morgan, i want you to meet a dear old friend of mine, carl. carl: i'm the exterminator. (morgan confused) george: that's... what we used to call him in high school, the exterminator. he's a linebacker. oh, did we have some wild times. earl: well, that newman was your good luck charm. kramer: yeah, he was. earl: i should have quitted at double or nothin'. travelers checks acceptable? kramer: oh i accept. newmanewman: (talking to another man) ...yeah he worked in the cubicle right next to me. we once double dated. kramer: yeah, it's a pleasure doin' business with a gentleman like yourself. (elaine enters) elaine: kramer. kramer: oh hi elaine. what are you doing here? elaine: jerry asked me to meet his girlfriend here. did you here about his plane in ithaca? earl: what about the plane in ithaca? elaine: oh, our stupid friend freaked out the pilot. single handedly delayed the plane a whole hour. can you believe that? kramer: boy... earl: your friend caused the delay? elaine: uh huh. earl: you're a cheat! nobody hustles earl hafler. kramer: c'mon! earl: see you around, cosmo. kramer: what? elaine: poison you? jerry seinfeld tried to poison you? wha? mr. pitt, what are you, delirious? he's never even met you! pitt: you're fired, elaine. goodbye. elaine: goodbye? (elaine thinks of memories with mr. pitt) jerry: bridget! bridget: jerry, what happened? jerry: oh, i'm so sorry. i got stuck out of town. i missed our whole time together. bridget: well, my plane doesn't leave for another half hour. jerry: really? (they start to make out, jerry sees the pilot on the plane) oh my god, that's him! that's the pilot! george: i love this place. you know, carl and i come here all the time. morganewman: is that right? carl: yeah, i come here all the time. you wouldn't believe the rat problems in the kitchen. morganewman: (george spits out food) i thought so. you really are an exterminator. this time, george, you've sunk to a new low. (he leaves) george: check, please. waiter: hey, sugar ray leonard can eat here on the house. george: mr. morgan! did you hear that? mr. morgan! george: take toilet paper for example. do you realize that toilet paper has not changed in my lifetime? it's just paper on a cardboard roll, that's it. and in ten thousand years, it will still be exactly the same because really, what else can they do? siena: that's true. there really has been no development in toilet paper. george: and everything else has changed. but toilet paper is exactly the same, and will be so until we're dead. siena: yeah, you're right george. what else can they do? george: it's just paper on a roll, that's it. and that's all it will ever be. siena: wow. george: you find this interesting, don't you? siena: yes. yes, i do. elaine: (to the busboy) oh, thanks very much, the soup was really good. jerry: what are you telling him for? elaine: what? jerry: he's the busboy, you think he cares about the soup? elaine: yeah, why? wouldn't he want the soup to be good? jerry: elaine, it's all this guy can do to keep from killing himself. you think he's back there, talking to the chef, going, "hey, they like the soup! keep it up!"? elaine: hey, isn't that alec berg? jerry: yep, alec berg. he's got a good 'john houseman' name. alec beeerg. mr. beeerg. elaine: i can't stand him, he is so pretentious. jerry: john houseman? elaine: no, alec berg. alec: (approaching) elaine! elaine: hi! alec: hi, how are you? jerry. jerry: hi, alec. alec: did you hear about gary fogel? jerry: yeah. alec: you gonna go to the funeral on friday? jerry: yeah, hey did i see you on tv at the ranger game? were those your seats right behind the glass? alec: those are them, yeah. season tickets. uh, you know, unfortunately i can't go tonight, so they're available if you'd like to use them. jerry: oh, i'd love to, are you sure? alec: absolutely, you just call my secretary, she'll arrange everything. jerry: gee thanks! thanks a lot! alec: it's my pleasure. be good. (walking away, he stops abruptly) you know, i actually might not use them on friday either so i'll let you know. jerry: alright, thanks again. elaine: thank you very much. jerry: really, thank you. jerry: well what about these nitwits that get on a plane with nothing to read? you know who these people are? elaine: who? jerry: these are the people that want to talk to you. they got nothing else to do, why not disturb you? elaine: i will never understand people. jerry: they're the worst. george: something's up, there's something in the air. jerry: well, what is with you? george: well, i think this is it. elaine: what's it? george: i saw siena again. elaine: siena? jerry: yeah, he's dating a crayon. george: we discussed toilet paper. jerry: toilet paper? george: yeah, i told her how toilet paper hasn't changed in my lifetime, and probably wouldn't change in the next fifty thousand years and she was fascinated, fascinated! jerry: what are you talking about? elaine: yeah. jerry: toilet paper's changed. elaine: yeah. jerry: it's softer. elaine: softer. jerry: more sheets per roll elaine: sheets. jerry: comes in a wide variety of colors. elaine: colors. george: ok, ok, fine! it's changed, it's not really the point. anyway, i'm thinking of making a big move. jerry: what? george: i might tell her that i love her. i came this close last night, then i just chickened out. jerry: well, that's a big move, georgie boy. are you confident in the 'i love you' return? george: fifty-fifty. jerry: cause if you don't get that return, that's a pretty big matzoh ball hanging out there. george: aw, i've just got to say it once, everybody else gets to say it, why can't i say it? elaine: what, you never said it? george: once, to a dog. he licked himself and left the room. jerry: well, so it wasn't a total loss. kramer: hey. jerry: hey, i forgot to tell you! i got tickets to the rangers-devils playoff game tonight! kramer: oh, i'm there, monongahela! jerry: what about you, george? george: eh eh eh, can't do it, can't do it, sorry, i got a date. kramer: so, so. george: oh no no no, if you must know, i would rather be with her than go to the game. kramer: she must be a very special lady, huh george, yeah. jerry: well, what do i do with the extra ticket? elaine: oh hey, can i bring david puddy? he's a big devils' fan. jerry: sure, fine with me. george: hey, by the way, if anybody wants an inside tour of the zoo, siena works there as a trainer. kramer: so she works at the zoo? george: yeah, yeah. kramer: yeah, like diane fosse. you know she's the only person that's ever been accepted into gorilla society. and you know, once those gorillas accept you, you got it made in the shade. elaine: so how long have you been a devils' fan? puddy: (off camera) since i was a kid, i'm from jersey. elaine: yeah? well, we're gonna kick your butts tonight. puddy: hey, no way, man. elaine: yes. puddy: we're primed. elaine: alright, you almost ready? cause jerry and kramer are gonna be here any second. elaine: what the-- puddy: so what do you think? elaine: what is that? puddy: i painted my face. elaine: (still in disbelief) you painted your face? puddy: yeah. elaine: why? puddy: you know, support the team. elaine: well, you can't walk around like that. puddy: why not? elaine: because it's insane? puddy: hey, you gotta let them know you're out there, this is the playoffs. kramer: hey. puddy: hey. elaine: dave, um, painted his face. kramer: yeah, that's cool. well, you gotta support your team. puddy: ok, ready to go? kramer: yeah. puddy: (startlingly loud) let's get it on!!! alright!! go devils!! go devils!! let's go devils!! puddy: you're dead, messier! we're gonna get you, messier! fan #1: will you sit down? puddy: hey man, i'm just trying to support the team. elaine: will you sit down? you're disturbing everybody. sit down! puddy: oh yeah, because you're a ranger fan and you know i'm messing with their heads. puddy: go devils!! radio announcer: devils goal! stephan richer scores from just inside the blue line! and the devils take-- (george turns down the volume) george: you know, i could have actually gone to that. siena: so why didn't you? george: well, i didn't want to break our date. siena: oh, well. george: because i... i love you. siena: you know, i'm hungry. let's get something to eat. puddy: ha ha! we took it to you! you couldn't get it out of your zone all night. we were aggressive, we didn't let you penetrate! kramer: alright, that's enough out of you, there's still three more games left in this series, my friend, and it's far from being over. very far from being over. (notices a car coming right towards puddy, who's crossing the street) watch out! puddy: (pounding the hood) hey, what are you doing?! watch where you're driving, man! (he approaches the passenger side window) don't mess with the devils, buddy. we're number one, we beat anybody! we're the devils! the devils!! haaaa!!! father hernandez: el diablo! dios mio! el diablo!! jerry: "i'm hungry. let's get something to eat." george: yup. jerry: big matzoh ball. george: huge matzoh ball. jerry: those damn 'i love you' returns. george: well, it's all over. i slipped up. jerry: oh, you don't know. george: you have any idea how fast these things deteriorate when there's an 'i love you' out of the bag? you can't have a relationship where one person says, "i love you", and the other says, "i'm hungry. let's get something to eat.". jerry: unless you're married. george: i mean, now she thinks that i'm one of these guys that love her. nobody wants to be with somebody that loves them. jerry: no, people hate that. george: you want to be with somebody that doesn't like you. jerry: ideally. george: i am never saying 'i love you' again unless they say it first. waitress: matzoh ball soup? george: that'd be me. kramer: hey, jerry? you're a smart guy, right? jerry: no question about it. kramer: alright, you know i'm supposed to go on this special tour today with george's girlfriend. jerry: at the zoo? kramer: yeah, but before i met up with her, i stopped to look at the monkeys, when all of a sudden i am hit in the face with a banana peel. i turn and look and there is this monkey really laughing it up. then someone tells me that he did it. well, i pick up the banana peel and i wait for that monkey to turn around. and then i *whap* let him have it. jerry: kramer, you threw a banana peel at a monkey? kramer: well, he started it! jerry: it's a monkey, kramer! kramer: well, he pushed my buttons, i couldn't help it, jerry. jerry: well, i still think it's wrong. kramer: alright, alright, fine. you take the monkey's side, alright, go ahead. jerry: i'm not taking anyone's side. kramer: (walking out) cause i know what happened, jerry. (remembering something and walking back in) did you call alec berg and thank him for the hockey tickets? jerry: no. kramer: oh, jerry, what are you waiting for? jerry: what do i gotta call him for? i thanked him five times when he gave them to me, how many time i gotta thank him? kramer: oh, no no no, you gotta call him the next day, it's common courtesy. jerry: no, i don't believe in it. i'm taking a stand against all this over thanking. kramer: jerry, good manners are the glue of society. jerry: hey, if i knew i had to give him eight million 'thank you's, i wouldn't have taken the tickets in the first place. kramer: alright, you know what this is gonna do? he's gonna be upset because you didn't call him and we're not gonna get those tickets for friday night. jerry: ah, you're out of your mind. kramer: alright, where you going? jerry: i gotta get a suit cleaned, i have a funeral on friday. kramer: who died? jerry: remember the guy who pretended he had cancer so o would buy him the toupee? kramer: so he actually had it? jerry: no, car accident. he was trying to adjust his toupee while he was driving and he lost control of the car. elaine: that poor priest. he was just visiting from el salvador. now he's gone completely loco. jerry: the one puddy screamed at in the car? elaine: yeah. he thinks he saw the devil. he won't leave his room in the church basement. jerry: well, that's what you get for getting mixed up with a face painter. elaine: i mean, what compels a seemingly normal human being to do something like that? jerry: gotta support the team. elaine: you know i really hate my clothes. jerry: hm. elaine: i open up my closet, there's just nothing. jerry: hm. elaine: nothing. i hate everything i have, i really hate it. (the weeping increases in volume and intensity) i mean, at this point, it's like i can wear something three or four times and that's it. jerry: hm. elaine: it's getting to be a terrible problem for me. jerry: (noticing alec berg walk in, whispers) hey, alec! jerry: did you see that? what kind of a 'hello' was that? mr. pless: ah, mr. kramer? kramer: yes. mr. pless: thanks for coming. kramer: so, uh, what did you want to see me about? mr. pless: well, mr. kramer, to get right to it, we're having a bit of a problem with barry. kramer: barry? mr. pless: the chimpanzee. kramer: oh. well, uh, what's the problem? mr. pless: well, he's not functioning the way he normally does. he seems depressed. he's lost his appetite. he's even curtailed his autoerotic activities. and we think this is directly related to the altercation he had with you the other day. kramer: so, so what do you want me to do? mr. pless: well, frankly we'd like you to apologize. kramer: yeah, well he started it. mr. pless: mr. kramer, he is an innocent primate. kramer: so am i. what about my feelings? don't my feelings count for anything? oh, only the poor monkey's important. everything has to be done for the monkey! look, i'm sorry. i-- siena: hey, that's ok. well, i've gotta go feed the marmosets. kramer: (to siena as she's walking out, but she appears to ignore) you know george really likes you. mr. pless: she doesn't hear too well out of her left ear. kramer: oh. jerry: i mean, do you think it's possible that he's mad at me because he didn't get the day-after 'thank you'? george: wait a minute, you were at a funeral, right? jerry: yeah. george: well, people never give a good 'hello' at a funeral. i mean, they go like this (george gives an extremely understated nod) that's the biggest. jerry: yeah, yeah, that's kinda what he gave me. george: hey, they can't go, "hey! you look fabulous!" jerry: hey. kramer: hey. well, i just spoke to your girlfriend. george: girlfriend, yeah, right. kramer: anyway, she asked me to apologize to barry. george: barry? kramer: the monkey. jerry: well? kramer: nothing doing. jerry, i didn't do anything. it's the monkey that should be apologizing to me. jerry: well, i don't think that's gonna happen. kramer: well, i'm sorry. well, george, i tried to put the good word in for you with siena, but i don't think she heard me. you know, left ear? george: what? kramer: yeah, her boss told me that she can't hear very well out of her left ear. what, you didn't know that? george: oh my god. jerry: what? george: she probably never heard it. don't you see what this means? it's like the whole thing never happened. it's like when superman reversed the rotation of the earth to save lois lane! jerry: are you gonna say it again? george: that's the question, jimmy. george: i'm gonna do it. jerry: what? after what you just went through, i thought you said you'd never say it again. george: i'd like to say it once to someone that can actually hear it! kramer: what's going on? jerry: he's gonna talk into her other ear. kramer: oh. well listen, i almost forgot to ask you. what happened at the funeral? now, did you talk to alec berg? jerry: yeah, i saw him. kramer: alright, so he's gonna give you the hockey tickets, huh? jerry: well, not exactly. kramer: he's mad, isn't he? see, i knew it. jerry: i don't know if he's mad. kramer: alright, so what happened when you saw him? jerry: well, i didn't really get a good 'hello', but see, i was at a funeral. kramer: uh huh. jerry: see, so i don't know if i got a funeral 'hello' or he was mad because he didn't get his day-after 'thank you'. kramer: see, i told you, jerry, i told you! jerry: look, what do you want me to do? kramer: i want you to get on this phone and give him his 'thank you'! jerry: no. no, i can't! kramer: jerry, this is the way society functions. aren't you a part of society? because if you don't want to be a part of society, jerry, why don't you just get in your car and move to the east side! jerry: look, we got five hours before the game. i am betting it was a funeral 'hello'. he knows we're here, he knows the number, he knows we want to go. there's plenty of time for him to call and give us the tickets. kramer: you stubborn, stupid, silly man! puddy: hey, great dip. you made this? elaine: no, it's from the store. puddy: oh. hey, how come people don't have dip for dinner? why is it only a snack, why can't it be a meal, you know? i don't understand stuff like that. elaine: david? david, i think we aught to talk. puddy: alright, that's cool. elaine: david, i don't think we should see each other anymore. puddy: you gotta be kidding, how come? elaine: well, you see, david, you're a face painter. puddy: yeah, that's right. elaine: well, it's not that i don't like you, but, well to be perfectly honest, i'm just having some trouble getting past the face painting. puddy: well, alright, so you don't like the face painting, i just won't paint it anymore. elaine: yeah, but you like the face painting. puddy: well, i don't need to do it. it's not like a habit or anything. elaine: oh. you mean you'd stop it for me? puddy: yeah, that's right. elaine: that's so, that's so sweet. puddy: ah, c'mere. (they kiss) alright, i gotta go home and get changed before the game. i'll be back, we'll make out. george: siena, i love you. siena: yeah, i know. i heard you the first time. george: yeah. just confirming. jerry: hello? oh, hi mom. no, listen, i was expecting somebody else. i'm sorry, i can't talk now, i gotta keep the line clear, i'll call you later. yes, i know i have call waiting but i don't trust it in an emergency. good bye. kramer: anyway, i um, i just want to say that i'm sorry. i lost my temper and i probably shouldn't have. i took it out on you and, look, if i've caused you any problems as a result of my behavior, well then, i'm sorry. i apologize. even though, barry, between me and you, we both know that you started it. i mean, who's kidding who? but they tell me that you're very upset, and god forbid i should disturb the very important monkey, i'm just hoping we can put this behind us, let's just move on with our lives, ok? so no hard feelings? elaine: what is that? puddy: that's the letter 'd'. elaine: why is the letter 'd' painted on your chest? puddy: well, i'm going to the game tonight, and me and these five other guys are gonna take our shirts off and spell out 'devils'. elaine: but you said no more painting. puddy: no, i said no more face painting, and as you can see this is not my face. elaine: yeah, that's right. kramer: well? did he call? jerry: no. kramer: oh, come on, jerry! come on, this is stupid! it's six o'clock! it's all over, just pick up the phone and thank him! jerry: alright! (picks up the phone and dials) hello, alec? hi, it's jerry seinfeld. you know, you got a great 'john houseman' name. alec berg. did you hand in your assignment, mr. berg? alec: what can i do for you, jerry? jerry: well, alec, the reason i called is i just wanted to thank you for the tickets from the other night. alec: i wish you'd called me earlier, i could have given you my tickets for tonight. jerry: oh, you already gave them away? alec: yeah, but you know what? i have a friend, he's got a couple of seats. if you don't mind the nose bleed section, they're yours. jerry: no, we don't care, we just want to go. alec: there is one little catch, though. puddy: hey, great game, huh? priest: father hernandez? father hernandez: huh? priest: una senora que te vino a ver. ella dice que tiene informacion muy importante, y que te puede ayudar. (subtitled "a woman here to see you, she has important information that could be helpful to you.") father hernandez: bueno. priest: al fini finalmente par el llover. (subtitled "finally it stopped raining.") father hernandez: aha, bueno. elaine: hello father. father hernandez: oh. la madonna! madre de christo! yo estoy lista! gennice: (crying) (sob sob) jerry: (to himself) now what am i supposed to do here? shall i go over there? it's not like somebody died. it's "beaches" for god's sake. if she was sitting next to me i'd put my arm around her. i can't be making a big move like going all the way over there. i can't. i won't. jerry: she calls me this morning and tells me she's upset i didn't console her. i mean it was "beaches" for god's sake. what, what do you do in a situation like that? george: where were you? jerry: i was sitting on the chair. she was over here on the couch. george: well you know, if you were sitting right next to her you'd have to console her no matter what. jerry: of course. george: when you're talking about a movie like "beaches", moving from the chair to the couch , . . . that's quite a voyage. jerry: yeah, kramer: hey. george: hey. i gotta go. kramer: where you going? jerry: the improv is playing "rochelle rochelle" the musical. kramer: really? what is bette midler playing? is she going to be there? jerry: she might be. she's the star of the show. kramer: bette midler is going to be in the park today? yeeee. jerry, don't tease me. george: i didn't know you were such a bette midler fan. kramer: so maybe i'll go down there and watch, uh? she'll be there, ,maybe. george: gennice palying today? jerry: yeah, maybe. kramer: who's gennice? jerry: that's the understudy. i'm dating her. kramer: oh, uh, is this uh, bette midler's understudy? jerry: yeah. kramer: oh, understudies are a very shifty bunch. the substitute teachers of the theater world. jerry: i'm glad she's an understudy. i don't have to avoid going back stage and having to think of something to say. george: going backstage is the worst. especially when they stink. you know that's a real problem. jerry: just once i would like to tell someone they stink. you know what? i doidn't like the show. i didn't like you. it just really stunk. the whole thingreal bad. stinkaroo. thanks for the tickets though. ruby: you late. elaine: i know i know. i didn't have change for the bus and they don't give change in this city. so they threw me off the bus ruby: "that's a shame". you'll have to wait for lotus now. elaine: how long do you think this will take. i have a millllioooon things to do. ruby: "mustn't keep the princess waiting. princess in a big hurry." "no change for bus" "poor princess." elaine: what?, uh? ruby: nothing, won't be long. lotus: "princess wants a manicure." sunny: "oh lucky me." lotus: "oh, you got the princess." elaine: what is so funny? ruby: tell knock-knock joke. elaine: the korean women were talking about me. i think they were calling me a dog. jerry: how would you know? you don't speak korean. elaine: because this woman came in with a dog and ruby called the dog the same word they used when they were pointing at mege ge ge kramer: you know, maybe in korean "dog" isn't an insult. could be like the word "fox" to us. oh, she's a dog! jerry: why don't you go to another nail shop? elaine: because they're the best jerry, the best. look. maybe i'm just being paranoid. jerry: what you need is a translator to go in the shop with you and tell you what they're saying. elaine: yeah, who speaks korean? jerry: you know who speaks korean? elaine: no, who? jerry: george's father. elaine: you gotta' be kidding me. how does he speak korean? jerry: he used to go there a lot on business. elaine: what did he do? jerry: he sold religious articles the statues of jesus, the virgin mary, that were manufactured in korea. elaine: uh, jerry: george, does your father speak korean? george: yeah, he once bumped into reverend yung sun moon. jerry: oh, hi gennice. gennice: hi jerry. jerry: this is george, this is kramer. gennice: nice to meet you. jerry: playing today? gennice: no. i'm on the bench today. jerry: they really stick to that understudy rule. kramer: so she's coming? gennice: oh, yeah, she'll be here. . . .(drops hot dog) oh no, my frankfurter, my frankfurter fell (sob sob sob sob) . it was really good. i can't believe that i dropped it. (sob sob sob sob) jerry: it's okayit's just a hot dog, (still sobbing) everything is going to be okay. gennice: no it (sob) was really good. kramer: look it's bette it's bette! ah, ah, ah, . . . bette, psst, hi. bette: hi. kramer: uh, i just want to say i think you're wonderful. bette: uh, thank you. kramer: yeah, i've seen you in everything you've done. bette: really? kramer: anything i can get you? water? they got ice over here. bette: what flavours do they have? kramer: chocolate, lemon, and uh, cherry. bette: how about pineapple? kramer: pineapple, sure, alright, i'll be right back. ice cream vender #1: no pineapple. just cherry, lemon and tutti-frutti kramer: oh, uh, uh. (leaves) elaine: anyway, mr. costanza, what i want you to do is to come to the shop with me and tell me what they are saying. you do speak korean? frank: i once talked to the reverend yung son moon. he bought two jesus statues from me. he's a hell of a nice guy. elaine: uh, ha. frank: ever see that face on him? like a biiig apple pie. elaine: yeah, yeah. uh, uh listen mr. costanza, if uh, if you do this for me i'll get you a manicure, i'll pay for it. or you can get a pedicure if you want. frank: no one is touching my feet. between you and me, elaine, i think i've got a foot odour problem. george: i watched "beaches" on cable last night. (wings?) give me a break. bette: get some talent then you can mouth off. umpire: strike three. bette: what? are you blind? umpire: what? bette: nothing, nothing. frank: i had an affair with a korean woman. elaine: uh, mr. costanza, i frank: no, i feel i need to unburden myself. i loved her very deeply. but the clash of cultures was too much. her family would not accept me. elaine: mr. costanza, i, frank: maybe it was because i refused to take off my shoes. again, the foot odour problem. her father would look at me and say, " eno enoa juang ". which means, "this guy - this is not my kind of guy". ice cream vender #2: sure i got pineapple. bette: move it in. move in everybody. get your shrimp here. shrimp on special today! jerry: come on george, just loosen up. jerry: come on george. kramer: i got the pineapple. i got the pineapple. jerry: (to george) keep going. george: aaaaaah umpire: safe! george: come on it's just a game. kramer: (holding bette) don't worry kramer is going to take care of everything. see,, i got you pineapple. i saw beaches last night for the fourth time (sings) "you are the wind" tv: the show will go on but not bette midler. while playing softball in the park ms. midler was injured when another player thoughtlessly rammed her at home plate. all captured on amateur video tape. she will be out for two weeks from her broadway show; rochelle rochelle - the musical. gennice: . . . thank you. (hugs jerry and george) jerry: well we gennice: no, please. this is the first time in my life (sobs) that anyone has ever done anything like this for me. i've always had to struggle so hard for everything i ever got. (sobbing) and i know this is going to be my big break. (sobbing) jerry: (with no emotion) it's okay. everything is going to be all right. kramer: come on jerry, open up. i know you're in there! jerry: come back another time. kramer: so...you're all in here together. how convenient. i hope you're all proud of yourselves. kramer: so my dear you think you can get to broadway. well, let me tell you something. broadway has no room for people like you. not the broadway i know. my broadway takes people like you and eats them up and spits them out. my broadway is the broadway of merman, and martin, and fontaine, and if you think you can build yourself up by knocking other people down... ...good luck... (exits) elaine: hi everyone. um, this is my friend, frank. ruby: what would you like today? manicure, pedicure? frank: i'll take a manicure. i don't take my shoes off for anyone. ruby: "that's the least of his problems." frank: what was that? elaine: what'd they say? what'd they say? frank: they made a derogatory comment about me. ruby: "she's with a man twice her age." "he doesn't look like he's got much money either." lotus: "check out that sweater". (all laughing) ruby: "i think i saw a moth fly out of a pocket." lotus: "what happened to his tail?" frank: okay, that's it! "oki on awa" where's my tail? i heard every word you said. you got some nerve. kim: that voice? it sounds so familiar. it reminds me of when i was ayoung girl in korea and i met an american businessman. he was a very unusual man. quick temperd with a strange halting way of speaking. we fell in love but when i brought him home to meet my father? he refused to take his shoes off. and there was a terrible fight. lotus: that man also refuses to take his shoes off. frank: (from other room) i never seen people treated like this! ruby: you brought in a spy! . . . get out! kim: frank? frank: kim? kramer: (on phone) a turkey sandwich. a side of slaw, you want whit e meat or dark? bette: white meat. kramer: yeah, white meat. and if i see one piece of dark meat on there. it's your ass buster. bette: get me one of those black and white cookies. kramer: yeah, all right, yeah. (hangs up) they don't have any. but don't worry i'm going to get you one somewhere. bette: good. because if i don't get a black and white cookie i'm not going to be very pleasant to be around. kramer: now that's impossible. elaine: (sob sob) (bumps into man with an umbrella) i don't even know where i'm going. peterman: that's the best way to get someplace you've never been. elaine: yes, (sob) i suppose, peterman: have you been crying? elaine: yes, (sob) you see this (sob) woman, this manicurist, peterman: oh no, that doesnt matter now. that's a very nice jacket. elaine: uh, (sob) thanks. peterman: very soft, huge button flaps, cargo pockets, draw string waist, deep biswing vents in the back perfect for jumping into a gondola. elaine: how do you know all that? peterman: that's my coat. elaine: you mean..? peterman: yes, i'm j. peterman. elaine: oh! jerry: i don't know why i have to go to the hospital. i didn't do anything to bette midler. driver can you stop over here, we're picking somebody up. gennice: hey, i didn't do anything. i was never informed. you can all go straight to hell. you see that? you see what i am going through? george: so what? somebody dropped an egg on my head as i went into my building last night. jerry: hey, i'm being heckled on stage. people are yelling out galloogy. gennice: i'm having a little trouble with all this. i mean all i ever wanted to do is sing. now i'm the focus of this big media frenzy. (sob) nobody in the show will even talk to me. jerry: stop your crying will ya? gennice: what? george: you heard him. gennice: oh, don't you you're the reason this whole thing happened. george: oh, yeah. i read what you said to the papers yesterday. you weren't in on the planing. what planning? you think we planed this? uh? cabbie: wait. wait. i know you. you knocked bette midler out of rochelle rochelle the musical. i want you creeps out of my cab. jerry: hey, i had nothing to do with it. cabbie: get out of my cab. you should go to prison. you should be in prison for the rest of your life. get out, each of you. each and every one of you get out of my cab. peterman: then in the distance i heard the bulls. i began running as fast as i could. fortunately i was wearing my italian captoe oxfords. sophisticated yet different; nothing to make a huge fuss about. rich dark brown calfskin leather. matching leather vent. men's whole and half sizes 7 through 13. price $135.00. elaine: oh, that's not too expensive. peterman: that shirt. where did you get it? elaine: oh, this innocent looking shirt has something which isn't innocent at all. touchability! heavy, silky italian cotton, with a fine almost terrycloth like feeling. five button placket, relaxed fit, innocence and mayhem at once. peterman: that's not bad! kim: oh, frank. so many years. if only you had taken your shoes off. frank: i couldn't because i had a potential foot problem. kim: i thought maybe you had a hole in your socks. frank: i wiped them for two minutes on the mat. i don't know why your father had to make a federal case out of it. kim: anyway that is all in the past. we have our whole future ahead of us. frank: between you and me i think your country is placing a lot of importance on shoe removal. kim: you short stop me? we don't do that in korea! take me home. inever want to see you again. kramer: hi, here. i made this for your. (gives her a pasta statue) bette: what is it? kramer: it's macaroni midler. bette: macaroni midler? kramer: yeah, see how you're singing? bette: yeah ha ha. well you made a long journey from milan to minsk. kramer: oh, what's that from? bette: oh, that's one of the songs from my show. bette sings kramer: oh you are so freaking talented. kramer: oh, so look who's here. what do you want. jerry: we just want to talk to her. we want to apologize and tell her the whole thing was an accident. kramer: no, no. i'm sorry it's out of the question. jerry: what? kramer: bette is recuperating right now and i'm not going to allow anything to disturb her. george: who are you to decide? kramer: i'm calling the shots around here so there won't be anymore accidents! george: hey, look, kramer, kramer: ah! i don't want her disturbed. ruby: hello, elaine. elaine: hello lotus: we're so excited. elaine: you're welcome. ruby: we'll see you inside. jerry: what happened? elaine: well i felt bad about the spying, so you know, ,i got them tickets to the show. jerry: oh,, that's nice. alright, i'll see you later. elaine: wait, wait. i didn't get to tell you about my new job. jerry: where? elaine: writing for the j. peterman catalogue. jerry: (pushing her) how did you get that? elaine: i met him. jerry: you met j. peterman? elaine: yeah. jerry: what is he like? elaine: he wore a classic courtman's duster. beige corduroy collar, 100% cotton canvas, high waist, nine pockets, six on the outside, great for running along side a train, (jerry walking away) waving last goodbyes, posing on a veranda, men's sizes ... jerry: (walking away) yeah, i'll see ya'. elaine: . . . small, medium, large, xl, double... jerry: well, break a leg tonight. gennice: i'm really nervous. stagehand: here you got a telegram. well, look who's here. jerry: listen buddy, stagehand: what are you going to do? break my legs? you don't scare me. you or your goons. gennice: how do you like this? jerry: what is it? gennice: my grandmother died. jerry: oh, i'm so sorry. gennice: oh, it's okay, jerry: so you don't cry when your grandmother dies? but a hotdog makes you lose control? voice: (off camera) places everyone. gennice: i gotta go. jerry: good luck. announcer: ladies and gentlemen for this evening's performance the part of rochelle will be played by gennice grant. lotus: gennice glant? ruby: what happened to bette midler? elaine: oh, she got hurt. ruby: no bette midler? (they talk korean and all three leave) elaine: i, uh, wait, gennice: (singing and dancing) "it's a long journey from milan to minsk" (shoe lace comes undone (even looks like figure skates) wait wait. hold it stop, (sob) i'm sorry, i have to start it over, my shoelace. (sob) i can't do it like this. please let me start over. (sob) please. (sob) please. . . . george: well, you got no place to go. i'll tell you what your problem is you brought your queen out too fast. what do you think? she's one of these feminists looking to get out of the house? no, the queen is old fashioned. . likes to stay home. cook. take care of her man. make sure he feels good. liz: checkmate. george: i don't think we should see each other any more. elaine: shut up! shut up! you stupid mutt. jerry: and you broke up with her 'cuz she beat you at chess? that's pretty sick. george: i don't see how i could perform sexually in a situation after something like that. i was completely emasculated. anyway, it's not the only reason. jerry: yeah, what else? george: all right. you wanna know what one of her favorite expressions is? happy, pappy? jerry: happy, pappy? what does that mean? george: like if she wants to know if i'm pleased with something, she'll say, "happy, pappy?" jerry: oh, you're "pappy". george: i'm "pappy". jerry: oh, i get it. why don't you just say it? george: oh, come on. what, are you kidding? george i'm much more comfortable criticizing people behind there backs. anyway, look who's talking. you just broke up with with melanie last week because she "shuushed you" while you were watching tv. jerry: hey, i got a real thing about "shushing"! george: what is this? did you ever get the feeling like you've had a haircut but you didn't have one? i'm all itchy back here. jerry: ahh. george: what? jerry: what is this? what are we doing? what in god's name are we doing? george: what? jerry: our lives!! . what kind of lives are these? we're like children. we're not men. george: no, we're not. we're not men. jerry: we come up with all these stupid reasons to break up with these women. george: i know. i know. that's what i do. that's what i do. jerry: are we going to be sitting here when we're sixty like two idiots? george: . we should be having dinner with our sons when we're sixty. jerry: we're pathetic you know that? george: yeah, like i don't know that i'm pathetic. jerry: why can't i be normal? george: yes. me, too. i wanna be normal. normal. jerry: it would be nice to care about someone. george: yes. yes. care. you know who i think about a lot? remember susan ? the one that used to work for nbc? jerry: hmm. i thought she became a lesbian. george: no. it didn't take. jerry: oh. george: did i tell you i ran into her last week? ho-ho, she looked great. jerry: hmm. george: you thought she was good looking, right? jerry: see, there you go again. what is the difference what i think? george: i was just curious. jerry: well, this is it. i'm really gonna do something about my life, you know? you know, i think i'm gonna call melanie again. so what if she shushed me. george, i am really gonna make some changes. george: yes. changes. jerry: i'm serious about it. george: think i'm not? jerry: i'm not kidding. george: me, too. [at jerry: 's. he's on the phone] jerry: melanie, you can shush me at every opportunity. 5? 3? oh, it was just an expression. all right, well, that's very sweet of you. okay, i'll call you later. all right, bye. hey! kramer: what? jerry: i had a very interesting lunch with george costanza today. kramer: really? jerry: we were talking about our lives and we both kind of realized we're kids. we're not men. kramer: so, then you asked yourselves, "isn't there something more to life?" jerry: yes. we did. kramer: yeah, well, let me clue you in on something. there isn't. jerry: there isn't? kramer: absolutely not. i mean, what are you thinking about, jerry? marriage? family? jerry: well... kramer: they're prisons. man made prisons. you're doing time. you get up in the morning. she's there. you go to sleep at night. she's there. it's like you gotta ask permission to use the bathroom. is it all right if i use the bathroom now? jerry: really? kramer: yeah, and you can forget about watching tv while you're eating. jerry: i can? kramer: oh, yeah. you know why? because it's dinner time. and you know what you do at dinner? jerry: what? kramer: you talk about your day. how was your day today? did you have a good day today or a bad day today? well, what kind of day was it? well, i don't know. how about you? how was your day? jerry: boy. kramer: it's sad , jerry. it's a sad state of affairs.. jerry: i'm glad we had this talk. kramer: oh, you have no idea. george: la-la-la... kramer: hey. jerry: hey. elaine: three hours of sleep again last night.. three hours of sleep because of that dog. kramer: what dog? kramer: yeah. what dog? elaine: this dog in the courtyard across from my bedroom window that never never stops barking.. kramer: don't... elaine: i lost my voice screaming at this thing. i can't sleep. i can't work. i mean, i just moved. i can't move again. what am i gonna do? what? what am i gonna do? kramer: well, there is something you can do. elaine: what? kramer, i'll do anything. kramer: well, what if there should be an unfortunate accident? jerry: you're going to rub out the dog? kramer: no, no. not me. i just happen to know someone who specializes in exactely these kinds of sticky situations. elaine: uh-huh. jerry: what, you're considering this? kramer: look, just meet with him. ?????. elaine: i don't really know why i'm here. kramer talked me into coming up here. but, obviously, i could never really do anything. newman: of course. obviously. elaine: uh, so, anyway, i'm sorry for wasting your time. newman: what kind of dog did you say it was? elaine: um, i don't know. i've never really seen it. newman: i see many dogs on my mail route. i'll bet there's not one type of mutt or mongrel i haven't run across. newman: if you ask me, they have no business living amongst us. vile, useless beasts . . . kramer: newman ! stop it!! newman: anyway. elaine: yeah. well um, i was just curious if i were interested in availing myself of your services, um, what exactly would you do? newman: well, elaine, there's any number of things i could do. but, i can promise you this, though, this vicious beast will never bother you again. so, what's it going to be? elaine: no, i'm sorry. i can't hurt a dog. i can't hurt a dog. i can't. kramer: i got it. we'll kidnap him . and we'll drop him off upstate and this way he won't bother you anymore and he won't get hurt. newman: yeah, i suppose. kramer: huh? elaine: i'd have to think about it. i doubt it, though. i doubt it. i'll let you know. newman: of course. take your time. i be here. [george: is still at the pier. his thoughts shift somewhat.] george: la-la-la-la-la-la-la! [flashbacks to susan] elaine: all right. let's do it. newman: excellent. excellent. jerry: how come you're eating your peas one at a time? melanie: i'm sorry. susan: who is it? george: it's george. susan: george? george, what is it? george: will you marry me? george: ma, guess what! mrs. costanza: oh, my god! george: no, it's nothing bad. i'm getting married. mrs. costanza: you're what? george: i'm getting married? mrs. costanza: oh, my god! you're getting married? george: yes! mrs. costanza: oh, i can't believe it. frank, come here. frank: you come here. mrs. costanza: georgie's getting married. frank: what? mrs. costanza: georgie's getting married. frank: get the hell out of here. he's getting married? mrs. costanza: yes. frank: to a woman? mrs. costanza: of course to a woman. what's she look like? frank: i'm sure she's pretty gorgeous. george: what difference does it make what she looks like? mrs. costanza: is she pretty? george: yes, she's pretty. what difference does it make? mrs. costanza: oh, i'm just curious. frank: she's not pretty? mrs. costanza: let me talk to her. george: she wants to talk to you. susan: uh, hello? mrs. costanza: congratulations! susan: i just want you to know that i love your son very much. mrs. costanza: you do? susan: yes. mrs. costanza: really? susan: yes. mrs. costanza: may i ask why? frank: okay... mrs. costanza: will you stop. i'm on the telephone. frank: can i talk to her, please? jerry: hey! kramer: hey! jerry: what are you up to? kramer: nothing. jerry: what's the rope for? kramer: oh! well, how do you like that. i got rope. um, i gotta go. jerry: the dog. you're getting the dog. george: hey, kramer, where are you going? kramer: out. george: don't go. kramer! come back. i got great news. well, i did it. jerry: did what? george: i got engaged. i'm getting married. i asked susan to marry me. we're getting married this christmas. jerry: you're getting married? george: yes! jerry: oh, my god! george: i'm a man. jerry, i'm a man. and do you know why? it's because of that talk we had. you were my inspiration. do you believe it? you. that lunch was the defining moment of my life. jerry: i'm blown away. george: you're blown? jerry: wow! george: you like that? jerry: and she said "yes"? george: it took a couple of hours of convincing. i was persistent. i was just like those guys in the movies. and it worked! she said "yes"! i can't believe my luck that she was still available . a beautiful woman like that. you think she's good looking, right? jerry: you're gonna have gorgeous kids. george: yes. she's got great skin - a rosy glow.. jerry: pinkish hue? george: oh, she's got the hue. so, what's going on with you and melanie? i mean, i know you're not getting married, but uh, things are happening? jerry: well...actually, we kind of broke up. george: you what? jerry: well, you know, we were having dinner the other night, and she's got this strangest habit. she eats her peas one at a time. you've never seen anything like it. it takes her an hour to finish them. i mean, we've had dinner other times. i've seen her eat corn niblets. but she scooped them. george: . . . she scooped her niblets? jerry: yes. that's what was so vexing. george: uh-huh. uh-huh. what about the pact? jerry: what? george: what happened to the pact? we were both gonna change. we shook hands on a pact. did you not shake my hand on it uh? jerry: you stuck your hand out, so i shook it. i don't know about a pact. anyway, you should be happy you're engaged. you're getting married. george: well, it's not that. i just, you know, i thought that we were both uh... jerry: you thought i was gonna get married? george: well, maybe not married, but... jerry: i mean, you love susan, right? george: yeah. jerry: you want to spend the rest of your life with her george: . . . . . . yeah. jerry: so? george: yeah. it doesn't make any difference. jerry: no. so, we're still on to see uh, firestorm tonight? george: yeah. jerry: i'll pick you up at your apartment. we'll go to the eight. george: yeah. jerry: hey, wait a second. wait a second. ! celebrate! how about some champagne? george: champagne? jerry: yes, come on! how often do you get engaged? come on! george: okay! alright! jerry: you know what? no champagne. anyway. . . i'll see you later. george: yeah. elaine: that's it. that's it. stop right here. newman: all right, give me the rope. elaine: what? what do you need a rope for? newman: look, i don't have time to explain every little thing to you. elaine: i don't know. now, i'm thinking maybe we shouldn't do this. newman: i knew you'd back out. elaine: kramer, are we doing a bad thing? kramer: well, look at it this way. we drop the dog off in front of somebody's house in the country. they find it and adopt it. now the dog is prancing in the fields. dancing and prancing. fresh air. . dandelions. we're doing this dog a huge favor. elaine: yeah. that's him. newman: all right. i'm going in. keep the motor running. jerry: ready? george: um, i don't uh, really think i can go. jerry: oh, how come? george: well, i didn't really tell susan about it, and she doesn't really have anything else to do. jerry: well, she could come. george: well, she doesn't really want to see firestorm. jerry: oh. george: she um, she wants to see the muted heart. jerry: oh, the muted heart. glen close. sally field. well, that should be good. george: yeah. see you later. jerry: hey, wait a second. you know, we could share a cab. they're playing at the same cineplex. susan: george, better get ready. george: i am ready. susan: you wearing that shirt?. george: okay, i guess i'll see you down there. jerry: yeah. george: okay. elaine: what time you got? kramer: oh, no. i don't wear a watch. elaine: what do you do? kramer: well, i tell time by the sun. elaine: how close do you get? kramer: well, i can guess within an hour. elaine: tsk. well, i can guess within the hour, and i don't even have to look at the sun. kramer: yeah. elaine: well, what about at night? what do you do then? kramer: well, night's tougher but it's only a couple of hours. newman: let's go. let's go. move! kramer: you got it? newman: what do you think? drive. drive. elaine: where is it? where is it? this? this is the dog? newman: yep. elaine: but he's so small. newman: yeah, but he's a fighter. elaine: that can't be the dog. are you sure you got the right one? newman: look, you said the one in the second courtyard. he was in the second courtyard. elaine: how could that be the dog? kramer: well, get him to bark. elaine: yeah. yeah. i'll know if he barks. newman: all right. bark. elaine: bark. newman: bark. susan: did you like it? george: yes, it was very, very good. susan: oh, do you think he'll ever find her again? george: oh, i sure hope so. jerry: how about when harrison ford jumped out of that plane, and he was shooting back at them as he was falling? friend: what about that underwater escape? jerry: oh, man! kramer: let's turn the radio on. maybe there's a news report about it. newman: ??????? elaine: you think we're far enough. newman: we're practically to monticello. kramer: yeah. this looks right. all right. give me the dog. okay, boy. this is it. this is your new home. let go of my shirt. come on. let go of my shirt. this shirt is from rudy's. george: hello? jerry: hey, ??? is rerunning the yankee game. you watching this? george: they are? susan: george, you coming to bed? i'm taping mad about you. george: uh, yeah, i'll be there in a minute. jerry: what was that? george: uh, nothing. i got to go. jerry: oh, mattingly just singled . george: you know, it was really wrong of you to back out on that deal. jerry: i didn't make a deal. i just shook your hand. george: yeah, well that's a deal where i come from. jerry: we come from the same place. susan: george, i'm starting it. george: i got to go. lady: roxy! where have you been? we've been worried sick about you. what's this? hmm. rudy's. elaine: no! no! it's impossible. it's impossible. elaine: i don't know. i don't know how it happened. we were practically in monticello. i mean, how could that thing have found its way back? there's no way. jerry: very strange. elaine: i know. jerry: so, tell me anyway. who was the big mastermind? elaine: oh, i can't jerry. 4i'm sworn to secrecy. jerry: all right. but then i can't tell you the big news. elaine: news? what news? jerry: sorry! elaine: what? what? jerry: all right, elaine but this is beyond news. this is like pearl harbor. or the kennedy assassination. it's like not even news. it's total shock. elaine: oh, come on, jerry. please, please, please, please, please! jerry: george costanza... elaine: yeah? jerry: is getting married! elaine: get out! kramer: hi. cop: you cosmo kramer? kramer: uh, yes. yeah. cop: you recognize this piece of fabric? kramer: oh, yeah, that's... cop: what? kramer: what? cop: you're under arrest. kramer: arrest? cop: i have a receipt for a rental car with your signature. including a report with some damage to the rear seat. it seems the spring was so compressed it completely collapsed the right side.. jerry: newman. newman: what took you so long? kramer: hey, what do you think they'll do to us? newman: ah, don't worry about a thing. in twenty minutes that place'll be swarming with mailmen. we'll be back on the street by lunch. elaine: i gotta make some changes. i'm not a woman. i'm a child. what kind of life is this? elaine: hey, good news. my dog problem has been solved. jerry: really? what happened? elaine: well, there's this rabbi in my building. you've met him. very nice man. jerry: isn't he the one with the show on cable? elaine: yea, yeah, yeah,. so i spoke to him about the dog. he went down. talked to the owner. she agr4eed to keep the dog inside from now on. jerry: that's great. elaine: i know. jerry: that looks pretty good. elaine: he's in. jerry: hey, say, you know, we haven't even discussed george's engagement yet. elaine: what's to discuss? jerry: come on! george is getting married! elaine: is he happy? [at the restaurant! george: is coming from the bathroom to sit with his bride-to-be.] george: i will never understand the bathrooms in this country. why is it that the doors on the stalls do not come all the way down to the floor? susan: well, maybe it's so you can see if there's someone in there. george: isn't that why we have locks on the doors? susan: well, as a backup system, in case the lock is broken, you can see if it's taken. george: a backup system? we're designing bathroom doors with our legs exposed in anticipation of the locks not working? that's not a system. that's a complete breakdown of the system. susan: can we change the subject, please? george: why? what's wrong with the subject? this is a bad subject? susan: no, fine. if you wanna keep talking about it, we'll talk about it. george: it's not that i want to keep talking about it? just think that the subject should resolve itself based on its own momentum. susan: well, i didn't think that it had any momentum. george: (to himself) how am i gonna do this? i'm engaged to this woman? she doesn't even like me. change the subject? toilets were the subject. we don't even share the same interests. jerry: yeah, he seems pretty happy. elaine: well, that's all that counts, i guess. jerry: what's the matter? elaine: oh, nothin'. jerry: well, you don't seem too enthused about the whole thing. elaine: well, what do you want me to do? jerry: well, at least have some reaction to it. elaine: well, i don't. jerry: maybe you're a little jealous. elaine: oh, what? you think i wanna marry george? jerry: no! but maybe you wish it was you who was getting married, not him. elaine: oh, please! that is the last thing that i want. jerry: oh, yeah. right. elaine: yeah, right. jerry: lainy! elaine: jerry! jerry: you don't wanna get married? elaine: yeah, that's right. i don't wanna get married. jerry: oh, come on! elaine: oh, you come on. jerry: you're such... kramer: oh, hey! jerry: hey. kramer: elaine, listen, i was talking to a friend about this dog business. do you realize this is gonna be on our permanent records? are you aware of this? elaine: oh, dear. kramer: it can never be erased. it'll follow us wherever we go for the rest of our lives. i'll never be able to get a job. i mean, doesn't that concern you? everything i've worked for...down the drain because of one stupid mistake. i mean, aren't we entitled to make one mistake in our lives, jerry? jerry: we're gonna change the system. kramer: yes! elaine: well, i could care less. i hope it is on our record. i'm just sorry they didn't lock me up. elaine: oh, hello, rabbi krischma. rabbi: elaine! always a pleasure to see you. elaine: thanks again for taking care of that dog for us. rabbi: elaine, often times in life there are problems, and just as often there are solutions. elaine: yeah, i suppose. rabbi: elaine, you don't seem yourself today. you seem, if i may say, troubled. elaine: no, rabbi, i'm not myself. rabbi: come upstairs. we'll have a talk. jerry: hey! george: i want your honest opinion about something. jerry: have i ever been less than forthright? george: no, you haven't. well, maybe you have. what do i know. jerry: yeah, i probably have. yeah, of course i have. what am i talking about? george: all right. okay, tell me what you think about this idea extend the doors on the toilet stalls at yankee stadium all the way to the floor. jerry: extend the doors on the toilet stalls at yankee stadium to the floor ...door comes down. hides your feet. yes. i like it. i like it a lot. george: it's good, right? jerry: i think it's fantastic. i think it's a fantastic idea. george: you do? jerry: yes, i do. george: well, i told it to susan before, and she didn't like it. jerry: hmm. george: yeah. not only that, this is what she said to me, "can we change the subject?" jerry: see, now that i don't care for. george: right. i mean, we're on a subject. why does it have to be changed? jerry: it should resolve of its own volition. george: that's exactly what i said, except i used the word "momentum". jerry: momentum - same thing. george: same thing. my god, i'm getting married in december, do you know that? jerry: yeah, i know. george: well, i don't see how i'm gonna make december. i mean, i need a little more time. i mean, look at me i'm a nervous wreck. my stomach aches. my neck is killing me. i can't turn. look. look. jerry: you're turning. george: nah, it's not a good turn. december. december. don't you think we should have a little more time just to get to know each other a little. jerry: if you need more time, you should have more time. george: what, you think i could postpone it? jerry: sure you can. why not? george: that's allowed? you're allowed to postpone it? jerry: i don't see why not. george: so, i could do that? jerry: sure, go ahead. george: all right! all right. i'll tell you what. how about this? got the date; march 21st, the first day of spring. jerry: spring. of course. george: huh? you know? spring. rejuvenation. rebirth. everything's blooming. all that crap. jerry: beautiful. george: she's not gonna like it. jerry: no, she's not. george: you know, i think i'm a little bit scared of her. she's five-three, like a hundred pounds. i'm frightened to death of her. jerry: well, she's a woman. they don't like to be disappointed. george: especially her. she does not like disappointment. well, i have to do it. i can't make december. there's no way i can make december. right? i mean, you can see that, right? i mean, look at me. look. look. can i make december? i can't make december. right? look. look. jerry: yeah, you'd better shoot for march. kramer: hey, hey. george: march 21st. hey! so, you're gonna back me on this, right? jerry: oh, all the way. george: you are a good friend. you know what? even if you killed somebody i wouldn't turn you in. jerry: is that so? jerry: hey, kramer if i killed somebody would you turn me in? kramer: definitely. jerry: you're kidding? kramer: no, no, i would turn you in. jerry: you would turn me in? kramer: phwap, i wouldn't even think about it. jerry: i can't believe your a friend of mine. kramer: what kind of person are you going around killing people? jerry: well, i am sure i had a good reason. kramer: well,, if you'll kill this person, who's to say i wouldn't be next? jerry: but you know me! kramer: i thought i did! elaine: i'm not a very religious person but i do feel as if i'm in need of some guidance here. rabbi: would you care for a snack of some kind? i have the snackwells which are very popular but i think that sometimes with the so called fat free cookies people may overindulge forgetting they may be high in calories elaine: thank you i am not very hungry. anyway, um, this friend of mine, george, got engaged . rabbi: how wonderful. elaine: yeah, yeah, well, for some reason, um, i just find myself just overcome with feelings of jealousy and resentment. rabbi: doesn't it give you any joy to see your friend enter into this holiest of unions? elaine: no, no, no it doesn't. no joy no joy whatsoever. just the whole think makes me . . sick. rabbi: you know, elaine, very often we cannot see the forest for the trees. elaine: yeah, i don't know what that means. rabbi: well, for example, say there's a forest, . . . elaine: you see the thing is we it should have been me. you know, i'm smart. i'm attractive. rabbi: you know my temple has many single functions. elaine: no, no, it's okay. rabbi: my nephew alex is someone who is also looking perhaps elaine: i don't think so. rabbi: he owns a flower store. very successful. jerry: so you're nothing but a stoolie. admit it. kramer: hey, don't do the crime if you can't do the time. jerry: another caf latte? kramer: you better believe it. kramer: since when are you so trendy? jerry: hey, baby. i set the trends. who do you think started this whole caf latte? jerry: i don't recall you drinking caf latte. kramer: i've been drinking caf latte since the fifth grade and i haven't looked back. jerry: hey, planet 9 from outer space is playing tomorrow night. one show only. kramer: i've always wanted to see this. jerry: you know i was supposed to see this five years ago. i was in a chinese restaurant with george and elaine and got all screwed up trying to get a table and i missed it. kramer: well, yeah, lets do it uh? jerry: look at this jerry, dropping paper on the ground. that's littering. jerry: maybe you better call the cops and turn me in. kramer: maybe i will. george: hi, susan: how was your day? george: good, good day. how was your day? susan: mine was okay. so what's goin' on? george: oh, nothin' much. i went over to jerry's, uh, talked to jerry. susan: oh, the lowers want to get together with us on friday night. george: the lowers, really? susan: you don't want to go? george: no, i want to go. susan: so what did jerry have to say? george: oh, nothin' much, . . . talkin'. . . . oh, oh, oh, did i have an unbelievable idea today! susan: oh, yeah, the toilets. you told me. george: yeah, ha ha, it's not the toilets, it's not the toilets. it's something else. are you ready for this? susan: yeah. george: okay, how about this? all right, we get married march 21st, the first day of spring. susan: what do you mean? you want to postpone the wedding? george: no, no no it's not about postponing. i just think the first day of spring is the perfect day to get married. you know, spring! rejuvenation! rebirth! everything is blooming all the susan: if you don't want to marry me, george, just say so. (crying) say so. george: still marry , still marry. susan: you don't love me. george: sstill love. still love. susan: my parents told me you were too neurotic and that i was making a mistake. george: no no no, no mistake, no mistake. no, no , listen, we're going to get married over christmas, i it doesn't make any difference to me. it's fine. really. susan: are you sure? george: yeah, yeah, sure, christmas. snow. santa. all that stuff. jerry: let me take a guess. she cried and you caved. george: how did you know that? jerry: i live and breath my friend. . . . i live and breath. george: i got to tell you i felt terrible. i really thought she was going to collapse and kill herself. jerry: tes, it's very difficult. few men have the constitution for it. that's why breakups take two or three tries. you gotta build up your immunity. george: you see those tears streaming down you don't know what to do. it was like she was on fire and i was trying to put her out. jerry: well, at least you probably had some, uh, pretty good make-up sex after. george: i didn't have any sex. jerry: you didn't have make-up sex? how could you not have make-up sex? i mean that's the best feature of the heavy relationship. george: i didn't have make-up sex. jerry: in your situation the only sex you're going to have better than make-up sex is if you're dent to prison and you have a conjugal visit. george: yeah, conjugal visit sex. that is happening! woman: (crying) man: i can tell you're very upset but i'm sorry i'm not goin' george: did you here that? i can't believe this he's eating his sandwich. man: are you going to eat thoise fries? george: this is amazing. (george gets up to leave and shake's man's hand) thank you. thank you very much. . . . i'm going back in! . . . you'll feel better (to woman) jerry: . . . poor bastard. jerry: good evening, rabbi. rabbi: good evening. and how does this evening find you? jerry: well, rabbi, well. rabbi: i trust you are here to see your friend, elaine. jerry: yeah, that's right. rabbi: i hope she's feeling better. jerry: what do you mean? rabbi: she didn't tell you? jerry: no. rabbi: well it seems the engagement of her ffriend george has left her feeling bitter and hostile. jerry: is that so? rabbi: yes, in fact she told me that she wishes she was the one getting married. jerry: really? rabbi: she came off as pretty desperate. jerry: i didn't know any of this. rabbi: apparently she doesn't think much of this george fellow either. i recall the word loser peppered throughout her conversation. jerry: hum, well it all comes as news to me. george: (enters) hi. susan: hi, how was your day? george: good, good day. how was your day? susan: ah, it was okay. what's going on? george: oh, nothing much. you know, i went over to jerry's. talked to jerry. um, could i talk to you for a minute? susan: yeah, sure. george: you see this is the thing. . . . (crying) i just feel . . . mumble, cry, mumble, . . . i'm scared. you and i together, (cry) susan: george, of course, of course it can wait until march if that is what you want. george: yeah? susan: oh, don't worry your head. of course. george: all right. (smiles behind her back) elaine: i've got that magazine article for you. jerry: you iknow i talked to the rabbi outside. elaine: are you jerry: understand you had a little talk with him too. elaine: yeah, talked earlier. jerry: yes i know, i know. elaine: . . . what does that mean? jerry: nothing, nothing. elaine: he didn't mention . . . jerry: yes he did. elaine: he told you about our conversation? jerry: we had quite a little chat. elaine: he told you about . . . jerry: yes, about how you're very jealous of george. how you wished it was you who were getting married instead of him. elaine: he told you all that? how could he? jerry: it didn't take much prodding either, i must say. elaine: can he do that? jerry: he did it. elaine: but he's a rabbi! how can a rabbi have such a big mouth? jerry: that's what's so fascinating. jerry: you better finish your little caf latte there. they won't let you in with it. kramer: why not? jerry: because they don't allow outside drinks into the movie. kramer: well that's stupid jerry: that's the rule. kramer: well, we'll just see if we can't get around that. rabbi: oh, elaine. come in. come in. so nice to see you again. elaine: yeah rabbi: can i offere you some kasha varnishkas? elaine: no, no. listen, rabbi, i'd like to ask you a question. why, why did you tell my friend jerry what i talked to you about? rabbi: was that a problem for you? elaine: of course it was a problem for me. . . . you didn't, you didn't tell anyone else about this, did you? rabbi: well, let's see? i seem to recall a conversation with mrs. winston in 1f. elaine: mrs. winston? rabbi: yes, we were waiting for our mail to arrive and i happened to mention to her how you felt that it was never going "to happen" for you. elaine: what about don ramsey? you didn't mention anything to him did you? rabbi: don ramsey? elaine: you know that tall really good looking guy, he lives on the fifth floor. rabbi: oh him! well this morning i found myself in the elevator with him elaine: my god, you didn't. jerry: excuse me, pardon me, excuse me kramer: oh, yow, oow ah! usher: hey, hey, what's going on? what just happened here? kramer: nothing nothing. usher: whatya got? one of those caf latte's in your shirt? kramer: i don't have anything. ask him. usher: all right, come on coffee boy, bring it out. kramer: what?! usher: here you go. kramer: ow elaine: but the whole thing is a mess. he told everyone in the building. i met that cute guy on the fifth floor. i mean he could barely bring himself to nod. jerry: elaine, if i could say a word here about jewish people. that man in no way represents our ability to take in a nice piece of juicy gossip and keep it to ourselves. elaine: you didn't say this to george, did you? jerry: no, . . . about how you wish it was you who was getting married instead of him? feelings of resentment, hostility? elaine: yeah that! so, . . . george: hey oh. elaine: georgie! congratulations! oh, my god. i haven't seen you since it happened. i'm so happy for you. george: alright, thanks a lot. elaine: oh, come on. you really, really deserve it. george: oh, deserve! i don't know if i deserve...i mean... elaine: are you kidding? i have seen the changes in you the past couple of years. man, you have grown. you've matured. george: well, i guess i'm getting older. elaine: oh! well, i just think it's wonderful. honestly! i've gotta run, but um, please, please give my best to susan. george: yeah. elaine: my most, just heartfelt congratulations. george: yeah. thanks. hey, listen, if you ever get a date, maybe the four of us could go out together sometime. elaine: yes! yes, yes. sure. george: wait, as a matter of fact, wasn't there some guy in your building that you said you liked? he lived up on the fifth floor or something. elaine: yes. yes, yes. yes. george: yeah! boy, she is something, isn't she? jerry: yeah, she's something else. hey, so what happened? did you hold your ground or...uh george: nope. i wept like a baby. jerry: what? george: well, i started to tell her and then all of the sudden, for some reason, i just burst into tears. jerry: you cried? george: i bawled uncontrollably. i just poured my guts out. and i'll tell you, jerry, it was incredible. i never realized how powerful these tears are. i could have postponed it another five years if i wanted to. jerry, george, & kramer: hey! jerry: sorry about that movie-thing. i was joking around. kramer: sorry? are you kidding? you did me the biggest favor of my life. i spoke to a lawyer, we're suing for millions. jerry: suing? what for? kramer: the coffee was too hot. jerry: it's supposed to be hot. kramer: not that hot. rabbi: (on tv) the prophet isaah tells us without friends our lives are empty and meaningless. george: wait. whoa! that's the rabbi from elaine's building. i just met this guy the other day. rabbi: a young lady i know, let's call her elaine, happened to find herself overwhelmed with feelings of resentment and hostility for her friend, let's call him george. she felt that george was somewhat of a loser and that she was the one who deserved to be married first. she also happened to mention to me that her friend had wondered if going to a prostitute while you're engaged is considered cheating. his feeling was they're never going to see each other again so what's the difference. but that is a subject for another sermon. now, i'd like to close with a psalm. [setting: booth at monk's cafe] george: and then i hear this rabbi on television, i mean imagine. elaine: i'm really sorry george, i, i, i wasn't jealous of you. it was just the whole marriage thing. george: ya know, i was just a little surprised. jerry: why would anyone eat canned fruit? i mean can anybody answer that? george: what about all the loser stuff? elaine: i don't know where the rabbi got that. ya know i never said that. i said "i've never seen you looser". jerry: i can see the can if you're in the army, but fresh fruit it's available, it's there, it's 2 aisles over. george: (gets up to leave) well, scintillating as always. jerry: where you going? george: i'm going shopping with susan. elaine: what kind of shopping? george: clothes shopping. elaine: where are you going? george: ross'. elaine: oh that's a nice store. george: yeah, it's her uncle's. jerry: discount? george: (as he leaves) one would hope. [setting: jackie child's office] kramer: so ya know, my friend and i we were going to the movies and we stopped off and bought this cafe latte. jackie: (agreeing) hm hm. oh what is that like italian coffee? kramer: yeah that's right. jackie: half milk, half coffee? kramer: yeah. jackie: hm hm. you take a sip? kramer: yes i did. jackie: now when you took a sip, did you notice it was hot? were you able to sip it in your normal fashion? kramer: no i wasn't able to sip it in my normal fashion. jackie: hm hm. all right, all right. you take big sips? kramer: well i think i take a normal sip. jackie: o.k. you take normal sips. nothing wrong with that. then what happened? kramer: well you know ahh, they don't allow outside drinks in the movie theater. so i had to put it in my shirt and sneak it in. jackie: yeah, see they like to sell their own coffee. kramer: yeah, now is that going to be a problem? jackie: yeah that's going to be a problem. it's gonna be a problem for them. this a clear violation of your rights as a consumer. it's an infringement on your constitutional rights. it's outrageous, egregious, preposterous. kramer: it's definitely preposterous. jackie: so. then what happened? kramer: well ahh. i was trying to get to my seat and i had to step over someone and i kind of got pushed and it spilled on me. jackie: was there a top on it? kramer: yeah. jackie: now did you put the top on or did they put the top on for you? kramer: no. they put the top on. jackie: and they made the top. you didn't make the top did you? jackie: (to secretary over intercom) suzie. i want you to go down to java world. get me a cafe latte with a top. (to kramer) we're gonna run some test on that top. have you been to the doctor? kramer: ah no no, i haven't. jackie: (to secretary over intercom) suzie. call dr. bison. set up an appointment for mr. kramer here. tell him it's from me. kramer: so ah, what do you think mr. chiles. jackie: jackie. kramer: jackie. i mean, we have a chance? jackie: do we have a chance? you get me one coffee drinker on that jury, you gonna walk outta there a rich man. [setting: ross' clothing store] george: i don't like it, it's red. it it's too flashy. susan: well you could use a little flash. george: all right. don't change me. susan. don't change me. ya know there are a lot of woman that would love to be in your position right now. susan: name one. mr ross: so, you find anything? susan: oh, he's impossible to shop for uncle ned. mr ross: i'm going on vacation to costa rica. maybe i'll see you in a couple of weeks. susan: o.k. salesman: excuse me mr ross. george: see now this i don't get. susan: what? george: the security guard. susan: what about him? george: why does he have to stand? susan: because he's a security guard. george: but i mean look at him. he's gotta be on his feet like that all day? that's brutal. i think i'm gonna say something to your uncle. susan: george, you just met him. don't say anything to him. george: aren't you concerned about the security guard? susan: not really. (walks away) george: (thinking to himself) she's not concerned about the security guard. what kind of a person is this? i'm marrying a person who doesn't care that this man has to stand here 8 hours a day when he could easily be sitting. susan: all right george. (she puts the red shirt up to him again) what do you think? [setting: elaine and jerry are in jerry's apartment.] jerry: so ah, what did you do last night? elaine: nothing. jerry: i know nothing, but what did you actually do? elaine: literally nothing. i sat in a chair and i stared. jerry: wow. that really is nothing. elaine: i told ya. kramer: hey. jerry: hey. elaine: hey. jerry: what are you all dressed up for? kramer: oh i ah just came from a meeting with my lawyer. jerry: oh yeah, how's that looking? kramer: oh i'll tell you how it's looking. my lawyer jackie says if there is one coffee drinker on that jury, (in a very high voice) i'm gonna be a rich man. elaine: that's despicable. how does he know how all coffee drinkers will vote? i'm a coffee drinker. if i was on that jury i wouldn't give you a nickel kramer. kramer: yeah, well you wouldn't be on that jury. he would have weeded you out. jerry: frankly i'm surprised you're so litigious. kramer: oh i can be quite litigious. elaine: what i mean who ever heard of this anyway? suing a company because there coffee is too hot? coffee is supposed to be hot. kramer: yeah but jackie says the top was faulty. elaine: (mocking) jackie says the top was faulty. kramer: hey maestro! maestro: ah, kramer. kramer: i'm in here. how's it going. maestro: fine. jerry: hi bob. jerry: (apologetically) oh, i'm sorry. maestro. kramer: well, this is a surprise ha? maestro: i just wanted to drop off this chinese balm for your burns. it's supposed to be great stuff. it's all herbal. kramer: oh maestro, you, what are you doing? you don't have to do this. do you believe this maestro? maestro: it's nothing. kramer: yeah, ya know you haven't been around for a while. maestro: oh yeah, i've been at my house in tuscany. kramer: oh tuscany huh? hear that jerry? that's in italy. jerry: i hear it's ah beautiful there. maestro: well if you're thinking of getting a place there don't bother. there's really nothing available. jerry: (surprised) huh? maestro: (seeing elaine) oh! elaine: hello. maestro: well hello. and who might you be? elaine: i might be elaine. jerry: this is a, bob cobb. kramer: maestro. elaine: oh, maestro. maestro: it is my very great pleasure. (kisses elaine's hand) elaine: enchante. maestro and elaine (simultaneously): well i have to be going. elaine: jinx buy me a coke. maestro: oh. love it when that happeneds. elaine: i know i know. that is so ahh ...... maestro: coincidental. elaine: yeah, thanks. o.k. bye you guys. maestro: ciao. kramer: yeah, yeah oh hey and a thanks for the balm. yeah. kramer: you know you hurt the maestro's feelings. jerry: oh what, because i didn't call him maestro? kramer: that's right. jerry: ya know i feel a little funny calling somebody maestro. kramer: why? jerry: because it's a stupid thing to be called. kramer: jerry he's a conductor. jerry: oh conductor. he conducts the policeman's benevolent association orchestra. kramer: well, he's still a conductor. jerry: well he sure worked pretty fast with elaine. kramer: oh, you should see him do 'flight of the bumble bee'. [setting: monks cafe. george and jerry are sitting across from each other] jerry: new shirt? george: yeah. you like it. jerry: no, not particularly. george: why, the color? jerry: yeah. george: too flashy? jerry: yeah, it's burning my retina. susan picked that out for you right? george: (obviously lying) no. jerry: (reaches for a menu) all right what's it going to be here. george: let me ask you something. when you go into a store, does it bother you that they make the security guard just stand there all day? jerry: no. george: see, didn't bother susan either. that's why i'm different. i can sense the slightest human suffering. jerry: are you sensing anything right now? george: let me just say this. it is inhumane to make a man stand on his feet, in one spot for eight hours a day. why shouldn't he have a chair? jerry: well, what about criminal activity? he's got to be alert. george: what, he can't jump out of the chair? how long does that take? here look at this. (he moves to the end of the booth) here, watch. (stands up) criminals. boom. i'm up. (pretends he's shooting) stop it! stop it! stop it! jerry: maybe they offered him a chair and he turned it down. george: would you get out of here. who's gonna turn down a chair? i would be very interested to know how he felt about all of this. maybe i'll have a talk with him. jerry: i know you will. kramer: hey, hey, hey, listen to this. jackie just called. george: who? jerry: his lawyer. kramer: yeah, java world wants to settle. jerry: what? kramer: yeah, i'm gonna be rich. jerry: why are they settling? kramer: cause their afraid of bad publicity. jerry: all this because you spilled coffee on yourself? kramer: yeah that's right. george: (very loud in the direction of a waiter) i'm gonna need a coffee here. very hot! boiling! [setting: restaurant. maestro and elaine are talking) maestro: and then about four years ago i was on holiday in tuscany. elaine: uh ha. maestro: and i fell in love with this house. waiter: are you ready to order? elaine: oh god. what are you getting bob? maestro: good question. (to waiter) we'll need a few minutes. maestro: you know, i'm sorry but, i didn't mention it earlier but actually i preferred to be called maestro. elaine: excuse me? maestro: well, ya know i am a conductor. elaine: yeah, so? maestro: oh i suppose it's o.k. for leonard burnstein to be called maestro because he conducted the new york philharmonic. so he gets to be called maestro and i don't. elaine: well, i mean don't you think that he was probably called maestro while he was conducting, not in social situations. i mean his friends probably just called him lenny. maestro: i happen to know for a fact, that he was called maestro in social situations. i once saw him at a bar and someone came up to him and said "hello maestro, how about a beer". o.k. so that's a fact. elaine: maestro huh? o.k. (laughing) [setting: jerry's apartment. jerry is at the refrigerator getting orange juice.] kramer: jerry! jerry! jerry! jerry my burn is gone look.(shows jerry the burn area). jerry: what do you mean? kramer: well i put that chinese balm on that the maestro gave me. and look, it healed it. jerry: so? kramer: so? my lawsuit. i'm finished. jerry: i thought they wanted to settle. kramer: well what happens if they want to see it? jerry: then you're in a lot of trouble. kramer: yeah!! [setting: ross' clothing store. guard is standing near entrance. george enters.] george: (to guard) tired? guard: no. george: how come uh, no chair? guard: what? george: i, i couldn't help but notice that uh you don't have a chair. guard: i don't need a chair. george: no i didn't mean to imply that you did. you're obviously a very well proportioned individual. i was just wondering, have they ever offered you a chair? guard: nope. george: would you like a chair? guard: i suppose if they gave me one i'd sit down. george: ah ha, ah ha. you would, wouldn't you? guard: obviously i'd rather sit than stand, if that's what your asking. george: that's exactly my point. guard: well who wouldn't? george: cause i tell you, frankly, i would like to walk in hear one day and find you sitting down. (starts to walk out of the store) that would give me a lot of pleasure. call me crazy. [setting: back seat of a cab. jackie and kramer] jackie: you put the balm on? who told you to put the balm on? i didn't tell you to put the balm on. why'd you put the balm on? you haven't even been to see the doctor. if your gonna put a balm on, let a doctor put a balm on. kramer: i guess i screwed up huh jackie? jackie: your damn right you screwed up. where the hell did you get that damm balm anyway? kramer: the maestro. jackie: the who? what are you talking about maestro? kramer: my friend he's a conductor. jackie: oh oh oh, so a maestro tells you to put a balm on and you do it? kramer: well my stomach was burning. jackie: i tell you what this is. this is a public humiliation. kramer: well i didn't know the balm was gonna work. jackie: do you know what a balm is? have you ever seen a balm? didn't you read the instructions? kramer: well i ... jackie: (interrupts) no one can tell what a balm's gonna do. they're unpredictable. kramer: i'm sorry jackie. jackie: (to cab driver) pull over here driver this is it. kramer: (motions with his head) yeah, get over. [setting: elaine and jerry walking on the sidewalk in nyc] jerry: did you have a good time? elaine: yeah, he's very interesting. did you know that mozart died while he was writing 'the requiem'. jerry: (sarcastically) yeah, everyone knows that, it was in amadeus. elaine: really? jerry: so what about the "maestro" stuff. did he make you call him maestro. elaine: yeah, i called him maestro. jerry: you didn't mind? elaine: well, i did at first, but actually i kind of got used to it. jerry: o.k. from now on i want you to call me "jerry the great". elaine: i am not calling you "jerry the great". jerry: why not you call him maestro. elaine: he is a maestro. jerry: well, i'm great. elaine: so you say. jerry: what about his house in tuscany, he mention that? elaine: yeah. (bragging) i'm invited. jerry: you know when i told him it was beautiful there, out of the clear blue sky he says there's nothing to rent. as if he doesn't want anyone else there. elaine: why? jerry: i don't know. maybe he's embarrassed by americans. elaine: yeah, well maybe there aren't any houses to rent there. jerry: in all of tuscany? i wonder. [setting: office of a java world building] mr star: i say we offer him $50,000 that's it, take it or leave it. mr burns: how do we know how severe the burns are? why don't we have him examined by a doctor. ms. jordan: listen, the faster we dispose of this the better. this thing gets into the paper it will kill us. mr star: all right, we'll start at 50,000 and free coffee at all of our stores. mr star: (answering secretary) yes? secretary: mr. chiles and mr. kramer are here. mr star: send them in. mr star: gentleman. mr star: gentleman come in. now we don't want to take up much of your time. let's make this short and sweet. we're prepared to offer you all the free coffee you want in any of our stores throughout north america and europe, plus.. kramer: (interrupting) i'll take it!! [setting: jackie and kramer in the back of a cab] jackie: i'll take it? who told you to take it? did i tell you to take it? kramer: no. jackie: i know the maestro didn't tell you to take it, he wasn't there. kramer: well i thought we were lucky to get anything. jackie: free coffee? kramer: yeah. jackie: i don't want free coffee. it's not hard to get coffee. i can get my own kramer: well i didn't hear any plus. jackie: 20 years practicing law i've never experienced anything like this. kramer: look, java world. (to cabbie) hey listen i'm gonna get out here. i'm gonna get myself a free cafe latte. [setting: jerry and elaine are walking down the street and hear music approaching] elaine: hey. hi maestro. maestro: beethoven's 7th. elaine: yeah. jerry: hey you know we were just talking about you. maestro: oh yeah? jerry: yeah, ya know the other day how you mentioned that there were no houses available in tuscany? maestro: you didn't find one, did you? jerry: no. i'm not really looking. maestro: nor should you. jerry: so are you telling me there's not one house to rent in all of tuscany? maestro: the houses are passed down from generation to generation, it's very hard. jerry: i can't get a sublet, a guest room, a cot, nothing? maestro: it's booked solid! elaine: it's booked jerry! jerry: how'd you get yours? maestro: got lucky. come on, elaine, let's take a ride, i was about to pop in some verdi. jerry: maybe i'll check out france. jerry: hey george, do you believe this guy? george: who? jerry: bob cobb. george: bob cobb? jerry: you know, the maestro. george: oh i missed the maestro? jerry: yeah, get this, he tells me there are no houses any where in tuscany to rent. george: huh. your renting a house in tuscany? jerry: no. george: so what do you care? [setting: monk's cafe. george and jerry are sitting at the booth] jerry: i just wish i could figure out if this guy is trying to keep me out of tuscany. george: of course he is. there's got to be houses for rent in tuscany. do you know how big tuscany is? jerry: i have no idea. george: it it's huge. it's probably like north dakota. jerry: oh, no way it's that big. george: it's a big region. jerry: do you know how big north dakota is stupid? george: i don't know why i bother even talking to you. jerry: hey, no one's got a gun to your head. george: all right. george: so i spoke to the security guard. jerry: yeah and? george: well it's tough to get a good read but i think if i brought him a chair, he'd sit. jerry: so are you gonna get him a chair? george: yup. it's really just a question of what kind. thinking about a bar stool. jerry: yeah, that would give him some height, be able to check things out. with a back or without. george: oh i think i'd go for the back. jerry: swivel? george: i suppose he could swivel. hey maybe one of those director's chairs. what do you think of those. jerry: i thinks it's kind of a pompous look. you know my parents used to have a kitchen chair that would have been perfect. george: you mean one of those vinyl things? jerry: yes. george: vinyl yeah, maybe. jerry: how can i figure out if there's any places to rent in tuscany? wait a minute. poppy's from tuscany. i'm gonna go call him. george: yeah, good luck. hey i'll meet you outside. [setting: in maestro's car, he and elaine are driving and singing finiculi, finicula] [setting: on the street in the city, george and jerry are talking] jerry: poppy told me to talk to his cousin, he lives down in little italy. george: what do you think about a rocking chair? kramer: (speaking very fast and fidgety) you can't put a limit on my cafe lattes, it says so right here. and i don't want to get dirty looks when i come in here. if i want a cafe latte, you give me a cafe latte. and if i have any problems i'm gonna get my lawyer jackie chiles down here and your gonna be in really big trouble. jerry: hey hey hey, slow down eddie. what what's the matter? kramer: awe there making faces at me cause i've had a couple of cafe lattes. but i'm entitled to them. i can have as many cafe lattes as i want, that was the settlement. jerry: that's it? kramer: that's it. what you want one george? i can get one for you. no problem. jerry, you want one? they're delicious. my pleasure. jerry: you've got to stop it. your your all hopped up on the caffein. kramer: well i feel like i'm talking fast but it's very hard to tell. jerry: you're racing! kramer: well well i've got things to do. i'll see you later. bye. [setting: dark room. elaine and maestro are kissing] elaine: (passionately) oh bob! bob! elaine: (correcting herself) maestro! [setting: ross' clothing store. george carries in a rocking chair] clerk: (noticing george with the rocking chair) excuse me. can i help you? geoge: nope. just a, giving a chair to the security guard. clerk: did mr. ross tell you to do this? george: what's your name? clerk: evan fayne. george: i'm engaged to mr. ross' niece. i'm probably gonna be taking over this whole place someday so if i were you i would stay on my good side. clerk: i'm terribly sorry, i didn't know. george: innocent mistake. george: well, here you go. what do you think? guard: mr. ross says this is o.k.? george: hey, i'm his nephew, all right? don't worry about it. go ahead. check it out. guard: not bad. not bad at all. [setting: dark room in the back of an italian restaurant.] jerry: ah, excuse me, i'm looking for a mr. giggio. giggio: si, si, imma giggio. jerry: poppy sent me to see you mr. giggio. giggio: si, si poppy. jerry: um, did he did he mention to you why i called? giggio: si, the house in tuscana. jerry: yeah, right, right. so is there anything there to rent? giggio: si. two million lira. you give me the check. jerry: i didn't actually want to rent it. giggio: the keys, here are the keys. you give me the check. two million lira. seventeen hundred americana. molto generoso. giggio: (to the man) si, si. jerry: so see um, i didn't say that i wanted to rent it, i was just wondering if there were houses there to rent. giggio: si. (hods up the keys) thissa one!. capiche? [setting: ross' clothing store. the employees are being held up at gun point. the camera moves from the right to the left. there is a masked man taking the money from the cash register. as the camera moves all the way to the left of the store, you see the security guard fast asleep in his new chair] [setting: at the window of a house in tuscany. elaine and maestro are talking. there is a lady singing in italian in the background] elaine: it's been a rough couple of weeks, ya know i really needed to get away. maestro: i told you, it's paradise. elaine: you're right maestro. kramer: common jerry, this guy is crazy. get out. jerry: you didn't have to push me. kramer: i didn't push you. how much did you pay that guy? jerry: 75,000 lira. kramer: 75,000 lira? are you out of your mind? jerry: kramer you don't under the conversion rate. kramer: oh, conversion rate, oh. jerry: you know i don't even know why i brought you. kramer: nobody put a gun to your head. jerry: not bad! kramer: yeah! elaine: hello james: this is your wake up service. it's 715 elaine: oh, god. oh, i could use a few more hours sleep. james: hot date last night? elaine: i wish. james: a woman with a sexy voice like yours its hard to believe your waking up alone. elaine: really? thank you., wake up service . . . person. james: call me james. elaine: oh, all right, james. he he he george: your wake up guy asked you out? elaine: yeah, i've never seen him but i feel like we have this weirdly intimate relationship. i mean, i'm lying in bed, i'm wearing my nightie, jerry: i don't know. blind date? elaine: what? you're going to go out with my cousin holly. you've never met her. jerry: yeah, but i've seen pictures of her. elaine: at least i've spoken to my guy. you're going out on a deaf date. jerry: i think i'd rather go out on a deaf date than a blind date. the question is whether you'd rather date the blind or the deaf. elaine: ah, . . . george: now you're off on a topic. jerry: you know, i think, i would rather date the deaf. elaine: uh hu. jerry: because i think the blind would probably be a little messier around the house. and lets face it they're not going to get all the crumbs. i'd possibly be walking around with a sponge. george: you see i disagree. i'd rather be dating the blind. you know you could let the house go. you could let yourself go. a good looking blind woman doesn't even know you're not good enough for her. elaine: i think she'd figure it out. elaine: what? what is this? jerry: veggie sandwich and a grapefruit. elaine: veggie sandwich and a grapefruit? what are you turning into? jerry: a healthy person. george: ( rubbing his eye) ow, ow you squirted me. jerry: oh, sorry george: boy, it stings. wilhelm: george, have you seen morgan? george: no. wilhelm: he's been coming in late all week. is there something wrong? george: no, not that i know of. (winks) wilhelm: really? make sure he signs this. oh, look george, if there's a problem with morgan you can tell me. george: morgan? no. he's doing a great job. (winks) wilhelm: i understand. jerry: i still can't believe, you're going out on a blind date. elaine: i'm not worried. it sounds like he's really good looking. jerry: you're going by sound? what are we? whales? elaine: i think i can tell. jerry: elaine, what percentage of people would you say are good looking? elaine: twenty-five percent. jerry: twenty-five percent, you say? no way! it's like 4 to 6 percent. it's a twenty to one shot. elaine: you're way off. jerry: way off? have you been to the motor vehicle bureau? it's like a leper colony down there. elaine: so what you are saying is that 90 to 95 percent of the population is undateable? jerry: undateable! elaine: then how are all these people getting together? jerry: alcohol. elaine: (to george who is winking) what is your problem? george: no problem here. elaine: you keep winking at me. that's really obnoxious. george: i had no idea. elaine: right there. right there. you just did it again. george: wait a minute. wait a minute. it's from that grapefruit that jerry squirted at me. elaine: you're eye still hurts? george: yeah, yeah. you must have squirted a piece of pulp in it too. jerry: pulp couldn't make it across the table. george: pulp can move, baby! why didn't you eat a real breakfast? jerry: hey, i eat healthy. if i have to take out an eye, that's the breaks. george: wait a minute. i must have been winking down at the office. that's why mr. wilhelm was acting so mysteriouso. elaine: what did he think, you were flirtin' with him? george: hu, oh. no he thought i was hiding something from him about morgan. kramer: hi guys. jerry: hi, kramer: hello archie, veronica, mr. weatherbee. . . . is this don matingly's signature? george: yeah. kramer: and buck showalter's? george: it's an inter-office envelope. it get passed around all over the office. kramer: um, can i show this to my buddy stubbs . he runs a sports memorabilia store. he pays top dollar for pro autographs. george: yeah, like i'm going to risk my job with the new york yankees to make a few extra bucks. (winks) kramer: no, of course not. (winks back) kramer: you know, you see don matingly signed this envelope then he sent it to room 318, where it was received and signed for by manager buck showalter. steinbrenner: i don't know. an envelope doesn't really cut it. kramer: why? steinbrenner: what is this? a birthday card. ha ha . . . signed by the entire yankee organization! . . . this could be worth something. george: is that the lovely mrs. morgan? morgan: hello. morgan: oh, by the way, have you got that birthday card? george: birthday card? morgan: mr. steinbrenner's birthday card. wilhem said you had it for me to sign. george: oh ah, i uh, will have that for you by after lunch. morgan: fine. i'll be back after my massage. george: of course. your massage. (winks) enjoy your massage. (winks) elaine: hello. james: elaine? elaine: james! ah, ha, hello! phew! holly: i can't believe you've never taken anybody here before. jerry: well, i'm not really that much of a meat eater. holly: . . . you don't eat meat? are you one of those. . . jerry: well, no, i'm not one of those. holly: when we were little girls grandma memma would take us to a matinee and then dinner here. jerry: grandma memma? holly: elaine must have mentioned grandma memma. jerry: no, i think i would have remembered memma. holly: oh well, that's typical. elaine never liked grandma memma. waiter: ready? holly: i'll have the porterhouse medium rare, baked potato with sour cream, jerry: what do you recommend besides the steak? waiter: the lamb chops are good. jerry: anything lighter? how do you prepare the chicken? waiter: it's a full bird. stuffed with ham, topped with gorganzola. jerry: you know what? i think i'll just have the salad. waiter: . . . thank you. jerry: (mind's voice) just a salad? just a salad? just a salad? james: hey you, hey you. elaine: oh, uh, ha, you've got dogs? james: yeah, you know, when you live alone, you're dogs are all you have. do you like dogs? elaine: (mind's voice from - ) shut up! you stupid little mut ! elaine: dogs. oh i love dogs. james: boys, this is elaine. . . . sorry, they're usually very friendly. hey! george: hey, mr. morgan how was your massage? morgan: i had to cancel it. for some reason my wife got it into her head that it was more than just a massage. george: really? morgan: yeah, we had this big fight at lunch it looks like tonight i will be sleeping on the couch. george: hey, listen don't oversleep. you can't afford to be late again. morgan: i know. somebody around here has been giving wilhelm the impression that i have been slacking off. george: geez, hey you know something, you should try my friend's wake up service. she swears by this thing. morgan: costanza, you may be my only friend around here. by the way, you got that birthday card? george: ah, not yet. morgan: just make sure steinbrenner doesn't get it until i sign it. george: yes sir! elaine: i just don't understand it as soon as i met these dogs they started growling at me. jerry: maybe his dogs heard about how you tried to kidnap that other dog. these muts like to gossip. so have you talked too holly? elaine: huh huh. jerry: did she mention anything about our lunch? elaine: uh, kind of. jerry: what do you mean, "kind of."? elaine: i mean, she thought it was kind of strange to just order a salad. . . . you know. . . . for a man. jerry: what are you saying? . . . salad! what was i thinking? women don't respect salad eaters. elaine: you got that right. jerry: but you're going over there for dinner tonight, right? elaine: um uh. jerry: what is she making? elaine: i don't know. but i'm sure it had, . . . parents. call her up. she won't mind if you come. jerry: oh, don't worry. i'll be there and i'll be packing an artery. kramer: ah, mr. weatherbee. george: you got the yankee envelope? kramer: sure do. george: oh, kramer: here you go. george: hey, he, kramer: you'll be pleased to see what's inside. george: what is this? kramer: you're cut of the loot. stubs gave me 200 dollars for the autographed birthday card that was inside. george: who told you to sell the card? kramer: you did. george: no i didn't! kramer: no, not in so many words but i believe we had an understanding. (winks) george: i was not winking you idiot. that was the grapefruit. it's like acid. i need that card back. it's mr. steinbrenner's. i was responsible. kramer: well stubs has already sold it to some guy who's kid's in the hospital . george: well get it back! it's very important. (winks) kramer: look, do you want me to get it back or not? george: (holds eyes wide open) get it back! elaine: such a lovely table setting. oh, wear did you get these napkins? holly: they're grandma memma's. elaine: oh, i don't remember them. holly: oh, you wouldn't. she only used them on special occasions. elaine: special occassions? it wasn't special when my family visited? holly: everybody like mutton? jerry: um, mutton! hope you didn't cut the fat off. kramer: that you bobby? bobby: huh kramer: well, i heard that you have a very uh, special birthday card .with all the yankee autographs on it. bobby: sure do. mister. kramer: oh, that's it, yeah. boy, stubs sure went to town with this thing huh? yeah, well, bobby, uh, what if i told you a very important person at the new york yankees needed this card back. bobby: oh, no. i'd never part with this card for anything in the world. kramer: well, uh, bobby, uh, who's your favorite yankee. bobby: paul o'neill. kramer: all right. what if i tell paul o'neill to hit a home run tomorrow, just for you. bobby: would he? paul o'neill would do that? kramer: for you he would. bobby: would he hit two home runs? kramer: two? sure kid, yeah. but then you gotta promise you'll do something for me. bobby: i know. get out of this bed one day and walk again. kramer: yeah, that would be nice. but i really just need this card. elaine: what about this candelabra? holly: yeah, that was grandma memma's also. she bought it on her trip to europe in 1936. jerry, i'm thrilled you like my mutton. i was afrais you only ate . . . salad. jerry: hey, salad's got nothin' on this mutton. holly: that is so funny. did you just make that up? jerry: i wish i could take credit for it. it's actually the line my butcher uses when we're chewing the fat. how about that beautiful desk over there? (hides meat in napkin in jacket) holly: that was in grandma's study. elaine: what did you do, ransack the place after she died? jerry: this is some fine mutton. elaine: i'm getting out of here. can i borrow your jacket? jerry: uh, well, uh the thing is that . . . (jerry grabs jacket back) elaine: it's cold out, and i didn't bring my own. jerry! god forbid i should borrow one from holly. it might have belonged to grandma memma. thanks for mutton. elaine: down boy, nice doggy . i'm a nice person. don't believe what you hear. holly: where are the napkins? jerry: what? holly: grandma memma's napkins. there's two missing. elaine took them didn't she? jerry: i don't know about that. have you got any floss? holly: you heard her. she coveted them. i bet she took them just to spite me. she's probably having a good laugh about it right now. elaine: down doggy . oh oh a a a a a jerry: elaine, what are you doing in this neighborhood? elaine: did you do with the dogs? jerry: yeah, they're in the kitchen. . . . okay, quite! what's going on? elaine: these dogs were chasing me. and no cab would stop and i had to get off the street. then i remembered that you lived here. jerry: why were dogs chasing you? elaine: they just don't like me. it's a long story. i can tell you one day but i can't tell you right now. jerry: i would askk you to stay tonight but i only have the sofa bed and it's where i sleep. elaine: we'll have to sleep head to toe. jerry: head to toe? elaine: head to toe. elaine: hey, wake up. it's 830 you were supposed to walk me up at 715. jerry: i'm sorry i didn't get any sleep you kept kicking me in the face. elaine: you're a wake up guy. don't you have calls to make? jerry: i'll make them later. uh. wilhelm: have you seen morgan? george: he's not here? wilhelm: no, he's late. george: it's impossible. i got him a wake up service. wilhelm: now, george, you don't have to cover for him any more. he's going to be gone soon and i'm going to recommend you for his job. george: . . . gone? jerry: it sounds like all the winking got you a promotion. george: i don't want morgan's job. he's got a lot of work to do. hey, elaine, your friend never woke up mr. morgan. elaine: nah, he was tired. he had some feet in his face. my cousin holly is completely insane. she keeps calling and accusing me of stealing her napkins. george: napkins? elaine: i mean, why? why would i take her stupid napkins. jerry: because they were in the pockets of my jacket. elaine: they were? jerry: yes. i was using them to spit out the mutton. elaine: spit it out? i had dogs chasing me for that mutton. i was almost mauled because of that mutton. george: what exactly is mutton? jerry: i don't know and i didn't want to find out. so where is my jacket? elaine: oh, i must have left it at jame's jerry: you spent the night at james's? did we? elaine: yeah but we reversed positions so there was no funny business. jerry: reversed positions? elaine: yeah, you know, head to toe. jerry: so what your genitals are still lined up. elaine: no, because i slept with my back to him. kramer: mr. o'neill? o'neill: yeah. kramer: yeah, uh, look, you don't know me. o'neill: i can give you an autograph there, but my pen's kind of screwed up. you'd only like half a "p" or something. kramer: no, it's uh, not that see,. it's about a little boy in a hospital. i was wondering if you could do something to lift his spirits. o'neill: sure, i could help you there. kramer: sure, well i promised you would hit him two home runs. o'neill: say what? kramer: you know, klick!. a couple of dingers. o'neill: you promised a kid in the hospital that i would hit two home runs? kramer: yeah, well, no good? o'neill: yeah. that's no good. it's terrible. you don't hit home runs like that. it's hard to hit home runs. and where the heck did you get two from? kramer: two is better than one. o'neill: that, that's ridiculous. i'm not a home run hitter. kramer: well, babe ruth did it. o'neill: he did not. kramer: oh, do you say that babe ruth is a liar? o'neill: i'm not calling him a liar but he was not stupid enough to promise two. kramer: well, maybe i did overextend myself. o'neill: how the heck did you get in here anyway? james: (on phone) oh, hi elaine. you know i lost all of my 630 clients because of you. . . . yeah, well why did you have to stick your feet in my face? . . . yes, i have the jacket. hold on. . . . (to dogs) fellas! tv: the yankees take the field on a beautiful afternoon. kramer: it's hot in here. hey, bobby, can i have some of your juice? bobby: after paul o'neill hits his first home run. holly: (from buzzer) it's holly. jerry: yeah. come on up. tv: and the two and one pitch to o'neill. a towering shot back to deep right field and it's gone. kramer: yeah. tv: a home run for paul o'neill. the yanks lead one nothing. kramer: oh yeah! all right! bobby: one more to go. jerry: hey. what's all this? holly: i decided i was going to make you dinner. jerry: i thought we were going out. holly: well, after you scarfed up my mutton i had the irresistible urge to make pork chops for you. i said hello to franco for you. jerry: franco? holly: your butcher, down the street. jerry: i bet he acted aloof like he didn't know me. holly: a little. jerry: that is so franco. tv: bottom of the eighth, score tied at one apiece. two and one to paul o'neill. kramer: you know bobby, it's very very hard to hit two home runs in one game. even for paul o'neill. kramer: he can do it, mr. kramer. i know he can. he'll do it for me. tv: "klick! long fly ball into deep left field over bell's head . . . o'neill's rounding second o'neill going for third, o'neill rounding . . . kramer: come on come on! tv: . . . third being waived in. kramer: go! go!! tv: . . . martinez throws it over alomar's head. o'neill is safe at home. and the yankees take the lead. kramer: an in the park home run! bobby: yeay! kramer: all right! yeah, well, i guess i'll be on my way (grabs framed card) tv: that's being scored a triple for paul o'neill with a throwing error charged to martinez. bobby: hey, kramer: huh? bobby: that's not a home run. (grabs frame) kramer: yeah, maybe not technically, but bobby: you said he'd hit two home runs. kramer: oh, come on. bobby, bobby! that's just as good! bobby: well, you're not taking that card. kramer: now, bobby, bobby, we had a deal . . . gimme that holly: so, is the chop the way you like it? jerry: i usually like mine with an angioplasty. elaine: you know something really stinks to high h holly! what are you doing here? jerry: what everyone does here. - cooking pork chops. elaine: i'm uh, i'm meeting james here. he's bringing over your jacket. holly: what about the napkins? elaine: i didn't take your napkins. holly: then who did? elaine: ask jerry. jerry: we could argue all night over who took the napkins. the point is in today's modern world it just doesn't seem relevant. wilhelm: i still want to know what happened to that birthday card? now, morgan, did you ever sign it? morgan: no sir, george never gave it to me. george: no, that's right, i didn't. i take full responsibility for the card not being here. i, uh, . . . kramer: hi, wilhelm: what's this? kramer: oh, it's a birthday card. kramer: (to george) oh, by the way, tomorrow night, paull o'neill has to catch a fly ball in his hat. wilhelm: george, this is beautiful. why didn't you tell me you were going to have it mounted like this? kramer: and you were probably just going to stick it in an envelope. wilhelm: ha ha ha ha ha, george, keep up the good work. morgan: ha ha, uh, well you screwed me again, costanza. how am i supposed to sign the card now when it's already under glass? elaine: uh, this is, holly: excuse me. what are those dogs wearing? james: oh, bandanas, aren't they cute? holly: you gave memma's napkins to some dogs?! jerry: hey, what happened to my jacket? james: oh, the dogs did that but it wasn't their fault, somebody stuffed some strange meat in the pocket. holly: was it mutton? james: could have been. holly: do you always stuff meat in your pocket? jerry: uh, sometimes i use the sofa. george: you wanted to see me, mr. steinbrenner? steinbrenner: yes, george, please, come in, come in. steinbrenner: thanks for the card. i loved it. gosh it made me feel good. you know, word has it that you were the brains behind the whole thing. george: oh, no, not just me, the whole organization. especially mr. morgan. steinbrenner: morgan, morgan, you know his name is conspicuously absent from this card. almost like he went out of his way not to sign it. george: oh no, morgan is a good man sir. steinbrenner: you can stop kowtowing to morgan. congratulations, you got his job. george: wa, uh, thank you sir, you know i am not quite sure i'm right for it. steinbrenner: stop it george, he's out, you're in. steinbrenner: a lot more work you know. george: i know. steinbrenner: a lot more responsibility. long long hours. george: i know. steinbrenner: not much more money. but you'll finally get the recognition you deserve. george: that's what i'm afraid of. you know mr. steinbrenner, . . . steinbrenner: you know as painfull as it is i had to let a few people go over the years. yogi berra, lou pinella, bucky dent, billy martin, dallas green, dick houser, bill virdon, billy martin, scott marrow, billy martin, bob lemmon, billy martin, gene michael, buck showalter, uh, tut!, . . .george, you didn't hear that from me. (george exits) . . . george! i always feel bad for the silver medal winner in the olympics. how do you live with that the rest of your life? people are gonna keep asking: - how much did you lose by? - i don't even know...! it was like...(very fast) now.now...now.now..now..was like, like... now..now..now...! it was it...! eh, it was it and i lost. i trained, i worked out, i exercised, i did everything, i was doing push-ups, sit-ups, i never did anything but exercise and work out for 20 years, i flew half way around the world and aaaaaaaaaah!...(showing a tiny distance between his index and thumb) and that was...it was a photo-finish! silver...(stretching his neck forward)...gold. if i had a pimple, i would've won. jerry: (to elaine) i can't believe you write for this j.peterman catalog. (to george) get this one "i packed my rod and reel. 30 hours later, lost in the fiord, a welcoming smile. thank god she spotted the epaulettes on my norwegian ice-fishing vest". george: this catalog is all about how to score in a foreign country. elaine: yeah. what do you do all day? george: not that much. elaine: uh-uh. jerry: i thought that new promotion was supposed to be a lot more work. george: yeah, when the season starts. right now, i sit around pretending that i'm busy. jerry: how do you pull that off? george: i always look annoyed. yeah, when you look annoyed all the time, people think that you're busy. think about it... (acts annoyed for 3 seconds). elaine: yeah, you do! he looks very busy! jerry: yeah, he looks busy! yeah! george: i know what i'm doin'. in fact mr. wilhelm gave me one of those little stress dolls. all right. (gets up) back to work. (acts annoyed and leaves) elaine: (laughs) jerry: so did you come up with a little stupid story for the himalayan walking shoe yet? elaine: no. i'm completely blocked! in fact, i'm gonna work on it tonight. oh. oh no! oh, i can't! i got that marathon runner coming in tonight. jerry: what marathon runner? elaine: you know, this guy jean-paul, jean-paul... i met him when i was working at pendant, editing a book on running... jerry: oh, wait! jean-paul, jean-paul! isn't he the guy who overslept at the olympics 4 years ago and missed the marathon?! elaine: yeah, that's him. jerry: he's from uh...trinidad and tobago, right? elaine: yeah, he's trinidadian and...tobagan. (laughs) jerry: how do you oversleep at the olympics...? elaine: ah, i know. i know...! jerry: i mean, it's like the biggest event of your life! you'd think you'd have, like, 6 alarm clocks, payin'-off little kids in the village to come banging on your door... elaine: yeah, well, he was pretty devastated. this is his first race in 3 years. jerry: ah...that's a big responsability on your hands. elaine: what responsibility? i don't have any responsibility. jerry: you gotta wake him up! elaine: eh...he'll get up... elaine: hi, judy. judy: hi, elaine. how are you? elaine: fine. (laughs) jerry: i've seen her in your building. elaine: yeah. jerry: i didn't know she was married. elaine: (whispering) she's not... and the guy just took off. (makes a sad face) don't say anything to anybody. jerry: whom i gonna tell? elaine: i know, it's just something you have to say... wilhelm: george, we just got the final budget numbers. we went over budget on some of the items, but i don't think there's gonna be a problem. (hands over the budget file to a very annoyed george) i'll let you get back to work, george. (mr. wilhelm leaves the office) jerry: he overslept and missed the whole race. isn't that amazing? george: i'll tell you what happened. i bet he got the am/pm mixed-up. jerry: my money's on the snooze. i bet he hit the snooze for an extra 5 and it never came back on. (kramer enters with a bucket and starts filling it with water on the sink) imagine your whole life riding on an alarm clock. kramer: alarm clocks? i never use 'em. don't trust 'em. jerry: what do you do? kramer: i have a uh...mental alarm. i set my head for... quarter to seven and... (makes sound with the lips - "pop!") ...i get up! jerry: always works? kramer: it never fails. see, it's based on your body clock. see, your body has an internal mechanism. it knows what time it is. george: uh-uh. what's with the bucket? kramer: lomez, he sold me his hot tub. jerry: hot tub? kramer: yeah yeah, it's in my living room. i just gotta fill it. (points to bucket) george: you put a hot tub... in your living room? kramer: oh, it's a beauty! it's got these high-volume aqua-sage jets oscillating and pulsating, soothing your every aching muscle. the water's gonna get over 120 degrees! (happy) george: is that tolerable? kramer: oh...it's tolerable...! (happy) jerry: isn't that the same temperature the coffee that scalded you? kramer: oh, i think it's a little cooler than that... (smiles and leaves) george: he uh...doesn't have any running water? jerry: i don't ask those kind of questions anymore. elaine: jerry. jerry, this is jean-paul. jerry: ah, hi jean-paul. nice to meet you. jean-paul: nice to meet you. jerry: sorry about the olympics. jean-paul: me too. (disappointed) elaine: listen, listen i'm gonna go call work to see if i can get my deadline extended. i can't...come up with anything for this thing. jerry: ah...catalog writer's block? elaine: yeah, that's funny. (annoyed) jerry: (pause) so what happened? the snooze alarm, wasn't it? jean-paul: man, it wasn't the snooze. most people think it was the snooze, but no, no snooze. jerry: am/pm. jean-paul: man, it wasn't the am/pm. it was the volume. jerry: ah...the volume. jean-paul: yes, the volume. there was a separate knob for the radio alarm. jerry: ah, separate knob. jean-paul: yes, separate knob. why separate knob?! why separate knob?! (frustrated) jerry: some people like to have the radio alarm a little louder than the radio. jean-paul: oh, please, man, please! jerry: don't worry, it's not gonna happen again. not if i have anything to say about it. jerry: elaine, what's the alarm clock situation in your house? elaine: jerry... jerry: it's a simple question... elaine: i've got an alarm, ok? jerry: that old one? didn't i once miss a flight to cleveland because of that alarm clock? jean-paul: flight to cleveland? elaine: it works. jerry: elaine... elaine: it... works! george: eh...come oooon...(starts stabbing the paper with the pen. mr. wilhelm comes in) wilhelm: george...i think you may be taking work a little too seriously. george: well...i've got a lot to do! wilhelm: george, i'll tell you what i'd like you to do. i, i'd like you to drop everything. wilhelm: i have this... fun little assignment i think you'll enjoy. there's some reps in from the houston astros for talks on that interleague play... and i want you to show them a good time.(george acts like "ok, you're the boss") elaine: hey. sorry i'm late. jerry: you're 40 minutes late. what happened? elaine: i got held up. do you mind if i heat this muffin up? jerry: no. elaine: what? (elaine puts her muffin in the microwave and sets the timer) what is the problem? jerry: well, you said you were gonna be here at a certain time, and you weren't. elaine: uh-uh. uh-uh. and this all means uh...what? jerry: well, means that a man has come from very far away to compete in a very difficult race, he's put his faith in you, and frankly, i'm a little concerned! elaine: oh are you?! jerry: yes i am. elaine: hey, i'm not running in the marathon! he is! jerry: yeah, i know that! elaine: yeah, i got enough to think about just tryin' to come up with some load o'crap for that himalayan walking shoe! i mean, i've given him a place to stay, i'll set an alarm, but i'm not gonna turn my life completely upside down for this guy! jerry: i'm not talking about upside down. (jean-paul and kramer come in) i'm talking about waking him up! elaine: hey, jean-paul. jerry: hey, jean-paul. how was your soak? was a good soak? jean-paul: ah, man, very good soak. the soak o'the year! kramer: (smelling) what's burning? elaine: oh! (rushing to the microwave) my muffin! (opens microwave door) oh, shoot! (slams it) jerry: what happened? elaine: oh i don't know. i set this thing for 20 seconds. kramer: this was set for 2 minutes. see? elaine: (pointing at jerry) don't say anything! don't..say..anything! jean-paul: you miss-set the timer... elaine: (leaning against the refrigerator) jean-paul, it's not my microwave, ok? ok? all right, listen, let's just go. come on, jean-paul, let's go. let's go. jean-paul: ok. elaine: (to jerry) all right. we'll see you at the race, ok? jerry: yeah. i hope so ?! elaine: oh that's cute! (closes door and exits with jean-paul) jerry: kramer, i'm tellin' you, elaine doesn't know whatta hell she's doin'! i gotta take over this whole operation! kramer: jerry, look how tense you are... you need to take a soak. jerry: i'm not taking a soak in that human bacteria frat you got goin' there. kramer: come on, i'm tellin' you, it's great. i opened up all the windows... the air is cold, the tub is boiling hot... it's like sweden, man. sweeeeden! kramer: (relaxing) ...oooohhh yeeaaah... aaahhh... (he is really enjoying this) clayton: ...'till this bastard over here says "let's call the sons o'bitches and go visit 'em on new york!" (the 3 men laugh) george: (smiling) well, we're certainly glad that you could make it. gardner: i like your organization, george. we've been talkin' to a really friendly son of a bitch in the front office. wilhelm, i think his name. george: oh yes, mr.wilhelm, yeah... gardner: he told us that george costanza was gonna be takin' us bastards out on the town. (the 3 men laugh again) i said "that son of a bitch doesn't know what he's got in store for him!". (the 3 men laugh once more) zeke: finish your drink? george: oh yeah, al-almost. almost. zeke: let's get that bastard bring us another round! (waves to bartender) clayton: you a big drinker, george? george: well...maybe not as much as this bastard... (points at zeke, they all laugh) i can hold my own! (they all continue laughing and drinking) jerry: jean-paul, i asked you down here this morning because i'm concerned. concerned that tomorrow is perhaps the biggest race of your entire career. and the person with whom you have chosen to stay... is uh... jean-paul: what are you saying? jerry: i'm saying "get the hell outta there"! let me put you in a hotel. you'll be comfortable, you'll be near the starting line, and most importantly... you'll have a wake-up call, jean-paul! a wake-up call! jean-paul: wake-up call... jerry: these people never fail. they sit in a room with a big clock all night long, just waitin' to make that call! (george comes in) jean-paul: no, i will stay with elaine. it would be rude. george: hey, you bastards. jerry: hey, how was the meeting? george: i really like those sons of bitches. jerry: sons of bitches? george: yeah! that's how they talk. you know, everyone's either a bastard or a son of a bitch. yeah, it's like uh..."boy, that son of a bitch box can really hit, uh?!" (laughs) jean-paul: really?! george: yeah, yeah. that's how they talk in the major league. (laughs) kramer: heeeeey... jerry: how many sweaters you got on? kramer: oh...four. (to waitress) yeah, could i have a cup o'tea? boiling hot. george: what's goin'on? kramer: i fell asleep in the hot tub and the heat pump broke. water went down to 58 degrees. i can't get my core temperature back up! jerry: your core temperature? kramer: (to jean-paul) here, feel my hand. (takes off glove) yeah, feel. jean-paul: phew... this son of a bitch is ice-cold. (smiles) george: hello? clayton: uh...is that you, george? george: (laughs) yeah, it's me. is this clayton? clayton: well listen, you son of a bitch! you know where we are? 30 000 feet above your head, you bastard! (the 3 laugh and howl) george: what are they doin' lettin' you bastards on an airplane? don't they know that's against faa regulation? clayton: (to the other 2 men) hey, hush up, now! i can't hear him! george: listen. i want you guys to send along those agreements the minute you land. our boys can't wait to kick your butts! zeke: (to clayton) when's that bastard comin' to houston? clayton: hey, zeke wants to know when you yankee bastards are comin' to houston! george: you tell that son of a bitch no yankee is ever comin' to houston. not as long as you bastards are running things. clayton: hey, uh, speak up, george, i can't hear ya! george: (mr.wilhelm comes in and hears george yelling) you tell that son of a bitch no yankee is ever comin' to houston! not as long as you bastards are running things! wilhelm: george! george, get a hold of yourself! george: mr.wilhelm... wilhelm: what's the matter with you?! george: well i-i... elaine: (thinking and typing) it was a cold winter's night in timbuktu... (hits the keyboard) oh! this stinks! (grabs a himalayan walking shoe and starts squeezing it for inspiration) oh, come on... come on...!...god! (quits) jean-paul: hello. judy: hello. jean-paul: i'm a friend of elaine's. judy: oh, hi. jean-paul: (looks at the baby) oooooh...look at the cute little bastard... (the building manager comes in) you are mama's little bastard, aren't you? (laughs) manager: whatta hell are you doin' harassing my tenants? jean-paul: (smiling) oh come on, you son of a bitch. i'm just trying to be friendly. manager: all right, that's it! (grabs jean-paul and gets him out) let's go! jean-paul: what...but i got a race tomorrow! george: whoa...it's like a furnace in here! jerry: oh whatta hell is goin'on?! kramer: yeah, i turned up the heat. jerry: turn up the heat in your apartment! (opens a window) kramer: i'm freezin'! i just need to get my hot tub running. i'm waiting for my new heat pump. george: well what's in this giant box out in the hall? kramer: uh? oh that must be it. george: it's huge! kramer: yeah, yeah, i got the biggest one they had. it's industrial strength. 16000 btu's. jerry: hello?...yeah, i can be there in 10 minutes...you can count on me! (hangs up) george: (jerry is going to his bedroom) what? jerry: i got the call...! george: jean-paul? jerry: (stops walking) jean-paul! (george acts like he scored) jerry: pretty lucky to find this hotel, jean-paul. jean-paul: man, i just want to get some sleep. (gets into bed) jerry: all right. (picks up the alarm clock) let's check out the clock. notch good... 650... volume check. (music playing, he starts swinging) what kinda music you wanna wake up to? top 40, classical... jean-paul: man, whatever! (annoyed) jerry: how about adult contemporary? jean-paul: fine, adult contemporary. just pick one! (irritated) jerry: all right...we're going with adult contempo... (puts alarm away, gets phone) now... the failsafe. the wake-up guy... (dials) jean-paul: yes, yes, the wake-up guy. man: (on the phone) front desk...? jerry: yeah, this is room 419, i'd like a wake-up call for 650 am tomorrow morning. man: yes sir. jerry: that's room 419. 650 am. four...one...niner... man: yes, i got it sir. you only had to say it once. jerry: i know, but it's a very important wake-up call... and i don't wanna take any chances. man: every wake-up call i make is important. you're no more important than any of our guests. jerry: well, i just...don't wanna get into a whole thing with you here... man: are you through? (annoyed) jerry: ...yeah i am, but i just...(man hangs-up) jerry: humm... jean-paul: what is it...? jerry: i think i offended the wake-up guy...! (worried) jean-paul: no, no. jerry: (gets up) no, no, i did. i think he's got it in for me! jean-paul: man, he doesn't got "in" for you. jerry: what if he doesn't call now out of spite? jean-paul: it is his job! jerry: (pause) not comfortable... (gets up again) jean-paul: for god's sake...! (gets up and they start packing) elaine: jean-paul? (searching everywhere) hey jean-paul? jean-paul? (worried) jean-paul?! oh man... (calling jerry's) oh...machine. jerry's machine: i'm not here, leave a message. elaine: jerry, jerry, jean-paul's missing! he's alone in the city! call me back. (hangs up) elaine: judy, hi, listen... judy: you have got some nerve, elaine! i told you about that baby in confidence! elaine: oh i didn't tell anyone. judy: well your friend certainly seemed to know all about it. (shuts the door) elaine: ... jerry! (runs angry to her apartment) jerry: feel much better here at my home base, jean-paul. it's a controlled environment. jean-paul: it's a marathon, you know. 26 miles! i need to get some sleep! (lies on the sofa) jerry: hey, believe me, if i'd been with you there in barcelona...you'd be polishing that medal right now. (covers jean-paul with a blanket) jean-paul: left a comfortable hotel bedroom for this! jerry: that wake-up guy was trouble! all right, i'll be right back. (goes knocking on kramer's) jerry: (shouting) man that thing is noisy! kramer: (shouting) yeah yeah, we're cracking along pretty good! we're almost up to 80 degrees! jerry: yeah, listen, do me a favor. set your mental alarm for 630 and gimme a call. kramer: yeah, ok. wait. (concentrates and makes the "pop!" sound) done! (jerry stares, confused) jerry: he's put his faith in you. he's put his faith in you. jean-paul: i trust elaine, she is my friend. i trust elaine, she is my friend. jerry: frankly, i'm a little concerned. elaine: ohhh, i'm exhausted. i've been on this street a thousand times! it's never looked so strange! the faces...so cold! in the distance, a child is crying. fatherless...a bastard child, perhaps. my back aches...my heart aches...but my feet (stops to look at her feet) ...my feet are resilient! (a big smile grows in her face, as she thinks...) thank god i took off my heels, and put on my... himalayan walking shoes!!! (lifting her arms up in the air, in ecstasy, as she says...) yes! (two clocks at a table, both 4: 02 am. jean-paul's sleeping at the sofa) (4: 02 am. kramer snores. the heat pump short circuits and blows the fuses on the entire building) (jerry wakes up with the sunlight. looks at the electric clock, which stopped at 4: 02) jerry: 402? (checks his wristwatch) aaa-aaahhh! eight forty seven jean-paul! wake up! wake uuuuup! we gotta go! it's 8: 47! jean-paul: 847!? (jumps out of the sofa) jerry: come on, just put your clothes on! you'll get dressed in the car! jean-paul: idiot! i trusted you! jerry: kramer, what happened to the building?! the electricity went out! kramer: yeah, the heat pump blew all the fuses! jerry: what happened to your mental alarm?! kramer: i guess i hit the snooze... (jerry runs by kramer and kramer falls down) jerry: make way! i've got-i've got a runner here! get outta the way! make way! make way! make way, it's a contender! (an event guard stops them) guad: hey, hold it! jean-paul: i'm late, man, i'm in the race! guard: go ahead. jean-paul: thank you jerry, you're a wonderful driver. fantastic route, man! jerry: all right, go, it's a race! come on! george: you wanted to see me, mr.steinbrenner? steinbrenner: yes, george, come in, come in. george, word up's you've been cracking under the pressure. can't cope, can't stand the heat. spit the bit. george: oh no, mr.steinbrenner, i can explain... steinbrenner: oh we all get a little cuckoo sometimes george, i used to be like you. rating personnel 'till they cried, calling managers on the field during a game, threatening to move the team to new jersey, just to upset people. then i found a way to relax. i've got two words to say to you, george hot tub. (george looks at him, puzzled) jerry: i'm tellin'you, i never told anyone about that baby. i never even went near your building! elaine: then how did she find out, jerry?! jerry: maybe you should check with the rabbi. kramer: (to elaine) you want some hot tea? elaine: oh no, thank you. kramer: oh. there's some runners. here they come! elaine: there's jean-paul! he's up front! he's leading! (jumping) go jean-paul!(starts screaming) kramer: oh yeah! yeah! come on! (starts howling) jerry: come on, let's go jean-paul! elaine: go jean-paaaaaul! steinbrenner: how're you enjoying it, george? melts that tension away, doesn't it? you gotta get that jet on the good spot. oh. oh. uh. uh. yes, that feels good. yes, that's real good. oh yeah, that's where i keep all my tension. right down to that chicken bone. sometimes i get my wife to just stuck her thumb right in there like a screwdriver. ya know, the phillips head, not the flat one. oh god, those flat ones frustrate me. you got it in, but it slips out. you put it in again, slips out again. you a single man, george? george: (bored to death) well, i-i just recently uh... steinbrenner: i'll tell you, if you wanna get something wild goin'on in your life, you get a girl and bring her to one o'these things. just like 4 shots a wild turkey. (laughs) she'll think you're hopalong cassidy. (george starts sliding, until he gets all his head -and glasses- under water, as steinbrenner keeps talking) a show, about that mickey mantle, wasn't it? you know we used to talk. i don't think he liked me very much, you know. george: all right. so, what theatre you wanna go to tonight? we got 61st and 3rd or 84th and broadway. jerry: which one you wanna go to shmoopy? sheila: you called me shmoppy. you're a shmoopy. jerry: you're a shmoopy! sheila: you're a shmoopy! jerry: you're a shmoopy! george: all right, shmoopies...what's it gonna be? pick a theater. jerry: uh,..we'll go to 3rd avenue. so, can you come with us for lunch to the soup place? sheila: no. you have a good lunch. but i'll meet you back here for the movie. george: hey. elaine: hey. sheila: hi elaine. elaine: hi sheila. jerry: all right, then. i'll see you later. sheila: bye shmoopy. jerry: bye shmoopy. elaine: okay. we ready to go? george: yes. please. please, let's go. elaine: boy, i'm in the mood for a cheeseburger. jerry: no. we gotta go to the soup place. elaine: what soup place? george: oh, there's a soup stand, kramer's been going there. jerry: he's always raving. i finally got a chance to go there the other day, and i tell you this, you will be stunned. elaine: stunned by soup? jerry: you can't eat this soup standing up, your knees buckle. elaine: huh. all right. come on. jerry: there's only one caveat -- the guy who runs the place is a little temperamental, especially about the ordering procedure. he's secretly referred to as the soup nazi. elaine: why? what happens if you don't order right? jerry: he yells and you don't get your soup. elaine: what? jerry: just follow the ordering procedure and you will be fine. george: all right. all right. let's - let's go over that again. jerry: all right. as you walk in the place move immediately to your right. elaine: what? jerry: the main thing is to keep the line moving. george: all right. so, you hold out your money, speak your soup in a loud, clear voice, step to the left and receive. jerry: right. it's very important not to embellish on your order. no extraneous comments. no questions. no compliments. elaine: oh, boy, i'm really scared! jerry: elaine. elaine: all right. jerry, that's enough now about the soup nazi. whoa! wow! look at this. you know what this is? this is an antique armoire. wow! it's french. armoire. jerry: ar-moire. elaine: how much is this? furniture guy: i was asking 250, but you got a nice face. 2 even. elaine: huh? ha. 200. you know, i've always wanted one of these things. jerry: he gave you the nice face discount. elaine: yeah. all right. you guys go ahead. jerry: what about the soup? elaine: i'm getting an armoire, jerry. jerry: [in french accent] pardon. george: this line is huge. jerry: it's like this all the time. george: isn't that that bania guy? jerry: oh, no. it is. just be still. george: whoop! too late. i think he picked up the scent. bania: hey, jerry! i didn't know you liked soup. jerry: hard to believe. bania: this guy makes the best soup in the city, jerry. the best. you know what they call him? soup nazi. jerry: shhhhh! all right, bania, i - i'm not letting you cut in line. bania: why not? jerry: because if he catches us, we'll never be able to get soup again. bania: okay. okay. george: medium turkey chili. jerry: medium crab bisque. george: i didn't get any bread. jerry: just forget it. let it go. george: um, excuse me, i - i think you forgot my bread. soup nazi: bread -- $2 extra. george: $2? but everyone in front of me got free bread. soup nazi: you want bread? george: yes, please. soup nazi: $3! george: what? soup nazi: no soup for you! [snaps fingers] elaine: what do you mean i can't bring in here? i live here. super: its sunday, elaine. there's no moving on sunday. that's the rule. elaine: but i didn't know, tom. i g -- can't you just make an exception? please. i've got a nice face. super: tomorrow, okay? you can move it in tommorrow. i'll even give you a hand, all right? elaine: ohh! well, you're just gonna have to hold this for me. furniture guy: i'm a guy on the sidewalk. i don't have layaway. elaine: oh, no...please don't go. please - please don't walk away. jerry: oh, man. ohh! this is fantastic. how does he do it? george: you know, i don't see how you can sit there eating that and not even offer me any? jerry: i gave you a taste. what do you want? george: why can't we share? jerry: i told you not to say anything. you can't go in there, brazenly flaunt the rules and then think i'm gonna share with you! george: do you hear yourself? jerry: i'm sorry. this is what comes from living under a nazi regime. george: well, i gotta go back there and try again. hi sheila. sheila: hi. hi shmoopy. jerry: hi shmoopy. sheila: no, you're a shmoopy! jerry: you're a shmoopy! george: i'm going. jerry: hey, listen, so we'll meet you and susan at the movie tonight? george: you know what? i changed my mind. i, uh, i don't think so. jerry: why? george: i just don't feel like it anymore. jerry: just like that? george: just like that. sheila: boy, he's a weird guy, isn't he? kramer: hey. jerry: hey. kramer: [taking jerry's couch cushion] yeah. jerry: hey. hey. hey. hey. hey. hey. hey. wha -- what are you doing? kramer: yeah. elaine, she has to leave her armoire on the street all night...i'm gonna guard it for her. i need something to sit on. jerry: well, sit on one of your couch cushions. kramer: yeah, but this is so nice and thick. ahoy there! elaine: oh, kramer! thank god. i really appreciate you doing this. kramer: yeah. well, you ask for it, you got it. elaine: do you need anything? kramer: well, a bowl of muligatawny would hit the spot. elaine: mulligatawny? kramer: yeah. it's an indian soup. it's simmered to perfection by one of the great soup artisans in the modern era. elaine: oh! who? the soup nazi? kramer: he's not a nazi. he just happens to be a little eccentric. most geniuses are. elaine: all right. i'll be back. kramer: wait a second. you don't even know how to order. elaine: oh, no. no. no. no. i got it. kramer: no. no, elaine! elaine: hey, i got it. hey. didn't you already get soup? george: no. i didn't get it. elaine: why? what happened? george: i made a mistake. elaine: [laughing] george: all right. well, we'll see what happens to you. elaine: yeah. no. listen, george, i am quite certain i'm walking out of there with a bowl of soup. george: yeah. hey, let ask you something. is it just me, or - or do you find it unbearable to be around jerry and that girl? elaine: oh, i know! it is awful! george: why do they have to do that in front of people? elaine: i don't know. george: what is that with the shmoopy? elaine: ohh! george: the shmoopy, shmoopy, shmoopy, shmmopy, shmoopy! elaine: ohh! stop it! i know. george: i had to listen to a five minute discussion on which one is actually called shmoopy. elaine: ugh! george: and i cancelled plans to go to the movies with them tonight. elaine: you know, we should say something. george: you know, we absolutely should. elaine: i mean, why does he do that? doesn't he know what a huge turnoff that is? george: i don't know. he can be so weird sometimes. elaine: yeah. george: i still haven't figured him out. elaine: no. me neither. george: all right. shh! i gotta focus. i'm shifting into soup mode. elaine: oh, god! george: good afternoon. one large crab bisque to go. bread. beautiful. soup nazi: you're pushing your luck little man. george: sorry. thank you. elaine: hi there. um, uh -- [drumming on countertop] oh! oh! oh! one mulligatawny and, um.... what is that right there? is that lima bean? soup nazi: yes. elaine: never been a big fan. [coughing] um..you know what? has anyone ever told you you look exactly like al pacino? you know, " scent of a woman." who-ah! who-ah! soup nazi: very good. very good. elaine: well, i -- soup nazi: you know something? elaine: hmmm? soup nazi: no soup for you! elaine: what? soup nazi: come back one year! next! ray: look at this. bob: it's an antique. ray: it's all hand made and i love the in-lay. bob: yes. yes. me, too. ay, it's gorgeous. completely. pick it up. no. no. pick it up from the bottom over there. kramer: wait. wait. wait. wait. what are you doing? bob: what does it look like we're doing? we're taking this. kramer: you can't take this. this belongs to a friend of mine. bob: look, you wanna get hurt? kramer: huh? bob: i don't think you wanna get hurt. because if you wanna get hurt i can hurt you. now, just back off. ray: bob. bob: just pick it up. kramer: what is this, huh? bob: you have some kind of problem here? what is it you not understanding? we taking the armoire and that's all there is to it. okay? elaine: i mean, is he allowed to do this? it's discrimination! i'm gonna call the states' attorney office. i really am. george: oh, this is fabulous. my god elaine, you have to taste this. elaine: all right. all right. give me a tsate. mmm! oh god, i gotta sit down. what happened? where's my armoire? kramer: well, b -- it was stolen. elaine: wha--? kramer: these street toughs, they robbed me. elaine: street toughs took my armoire? kramer: yeah. it was very frightening. my life was in danger. you should've seen the way they talked to me. elaine: i can't believe this! kramer: well, where's the soup? elaine: wha -- the soup nazi threw me out. kramer: oh...yeah! jerry: what are you gonna get? sheila: i'll decide at the last minute. jerry: you better decide, sister. you're on deck. sheila! jerry: uh-oh. soup nazi: hey, what is this? you're kissing in my line? nobody kisses in my line! sheila: i can kiss anywhere i want to. soup nazi: you just cost yourself a soup! sheila: how dare you? come on, jerry, we're leaving. jerry? jerry: do i know you? elaine: so, essentially, you chose soup over a woman? jerry: it was a bisque. elaine: yeah. you know what i just realized? suddenly, george has become much more normal than you. jerry: really? elaine: yeah. come on. i mean, think about it. he's engaged to be married. your top priority is soup. jerry: have you tastes the soup? elaine: yeah. all right. you made the right decision. jerry: see, the way i figure it, it's much easier to patch things up with sheila than with the soup nazi. jerry: hey. kramer: yeah. elaine: hey. kramer: yeah. jerry: oh, thanks. elaine: there he is. kramer: elaine, i'm really sorry about the armoire. elaine: yeah. i know. me, too. jerry: so, did these thieves want any money? kramer: no. jerry: they just wanted the armoire? kramer: yeah. they were..quite taken with it. jerry: yeah? george: hup! hup! jerry: hey, have you noticed george is acting a little strange lately? elaine: no. in what way? jerry: i don't know. a lot of attitude, like he's better than me, or something. elaine: i don't think george has ever thought he's better than anybody. george: hello. jerry: hello. kramer: hey. george: hello. elaine: hello. george: were you just talking about me? what's going on? jerry: absolutely not. george: something's going on here. kramer: all right, [claps hands] i'm gonna go get some soup. elaine: one of these days that guy is gonna get his. george: so, how was the movie? jerry: aw, we didn't go. sheila and i are kind of on the outs. george: oh, yeah? jerry: yeah. wha - wha - what are you, happy? george: happy? why should i be happy? jerry: i don't know, but you look like you're happy. george: why should i care? jerry: you can't fool me. don't insult me, george because i know when you're happy. george: all right. i am happy, and i'll tell ya why -- because the two of you were making me and every one of your friends sick! right, elaine? jerry: is that so? george: yeah. yeah. with all that kissing and the shmoopy, shmoopy, shmoopy, shmoopy, shmoopy out in public like that. it's disgusting! jerry: disgusting? george: people who do that should be arrested. jerry: well, i guess i have all the more reason to get back with her. george: ye - yeah. and we had a pact, you know. jerry: what? george: you shook my hand in that coffee shop. jerry: you're still with the pact? george: mmm-hmm. you reneged. jerry: all i did was shake your hand. george: ah-ha! kramer: and then they just ran off with the armoire, just like that. soup nazi: ohh! this city. newman: one large jambalaya, please. soup nazi: so, continue. kramer: well, my friend is awful disappointed is all. you know, she's very emotional. newman: thank you. [inhaling deeply] jambalaya! soup nazi: all right, now listen to me. you have been a good friend. i have an armoire in my basement. if you want to pick it up, you're welcome to it. so, take it, it's yours. kramer: how can i possibly thank you? soup nazi: you are the only one who understands me. kramer: you suffer for your soup. soup nazi: yes. that is right. kramer: you demand perfection from yourself, from your soup. soup nazi: how can i tolerate any less from my customer? customer: uh, gazpacho, por favor. soup nazi: por favor? customer: um, i'm part spanish. soup nazi: adios muchacho! kramer: git. jerry: it was stupid of me. sheila: well, it was very insulting. jerry: no. i know. i - i was really sort of half-kidding. sheila: well, behind every joke there's some truth. jerry: what about that bavarian cream pie joke i told you? there's no truth to that. nobody with a terminal illness goes from the united states to europe for a piece of bavarian cream pie and then when they get there and they don't have it he says " aw, i'll just have some coffee." there's no truth to that. sheila: well, i guess you're right. jerry: so, am i forgiven, shmoopy? sheila: yes, shmoopy. jerry: aw! susan: hey, jerry! jerry: oh, hi susan, george. you remember sheila. george: oh, yes. hello. sheila: hello. won't you join us? george: no, thanks. susan: of course. george: yes. well -- so, uh, sit on the same side at a booth, huh? jerry: yeah. that's right. you got a problem? george: i, uh, just think it's a little unusual. two people to sit on one side...and leave the other side empty. jerry: well, we're changing the rules. george: ahh. good for you. susan: aw, what are you getting george? george: i don't know, honey. what do you want to get? [in babying voice] i want you to get anything you want...'cause i love you so much. i want you to be happy. okay, sweetie? susan: oh, george, you're so sweet. george: well, i could be a little sweetie tweetie weetie weetie. susan: aww! jerry: what about you, shmoopy? how 'bout a little tuna? you want a little tuna fishy? sheila: yeah. jerry: yum yum little tuna fishy? george: come here. kramer: and..voila! elaine: [gasps] kramer: yeah. elaine: oh! oh, i love it! i absolutely love it! kramer: yeah. did the k man do it or did the k man do it? elaine: the k man did it! kramer: yeah! elaine: [laughing] how much did you pay for this thing? kramer: how 'bout zero? elaine: what? kramer: yeah. elaine: what? who's was it? where'd you get it? kramer: i'll tell ya where i got it. i got it from the guy you so callously refer to as the soup nazi. elaine: get out! elaine: the soup nazi gave it to you? kramer: yeah. elaine: why? kramer: well, i told him the whole story and he just let me have it. wha -- yeah. he's a wonderful man. elaine: [gasps] kramer: yeah. well, a little bit misunderstood but, uh.... elaine: well, i'm just gonna go down there and personally thank him. i mean, i had this guy all wrong. this is wonderful! kramer: yeah. well, he's a dear. george: how much tip do you leave on $8.15? susan: you know sweetie, i just want you to know that i was so proud of you today expressing your feelings so freely in front of jerry and all. just knowing that you're not afraid of those things is such a great step forward in our relationship. george: huh? susan: [in babying voice] because you love your little kiki don't you? customer: how is he today? bania: i think he's in a good mood. elaine: hi. you know, kramer gave me the armoire and it is so beautiful. i'm mean, i just can't tell you how much i appreciate it. soup nazi: you? if i knew it was for you, i never would have given it to him in the first place! i would have taken a hatchet and smashed it to pieces! now, who wants soup? next! speak up! jerry: i'm heading over to elaine's. kramer: oh. jerry, those are the guys that mugged me for the armoire. jerry: those two? kramer: yeah. jerry: are you sure? kramer: yeah. that's them. jerry: well, let's confront 'em. kramer: no. no. no. no. let's get a cop. jerry: there's no cops around. they're gonna leave. come on. kramer: no! jerry: let's go. bob: oh, wow look, that one is gorgeous. i would just kill for that one. ray: oh, not in blue. blue does not go with all. bob: oh, please. do you know what you're talking about? because i don't think you know what you're talking about. take a look at that. kramer: excuse me. ray: are you talking to me? kramer: uh, well, uh, we -- ray: i said, are you talking to me? bob: well, maybe, he was talking to me. was you talking to him? because you was obviously talking to one of us. so what is it? who?! who was you talking to?! kramer: well, wha -- i, uh -- uh, we were kind of, uh, talking to each other, weren't we? elaine: i mean, you know, i've never been so insulted in my entire life. there's something really wrong with this man. he is a soup nazi. what? what is that? jerry: i don't know. " 5 cups chopped porcine mushrooms, half a cup of olive oil, 3 pounds of celery, chopped parsley..." elaine: let me see this. [gasps] you know what this is? this is a recipe for soup, and look at this. there are like thirty different recipes. these are his recipes! jery: so? elaine: so? so, his secret's out. don't you see? i could give these to every restaurant in town. i could have 'em published! i could - i could drop fliers from a plane above the city. jerry: wait a second, elaine. where do you think you're going? elaine: what do you care? jerry: elaine, i don't want you causing any trouble down at that soup stand. i happen to love that soup. elaine: get out of my way, jerry. jerry: elaine, let the man make his soup! elaine: don't make me hurt you, jerry. susan: look, they have it in blue...for my baby bluey. are you my baby bluey? george: oh, yes. i - i'm your baby bluey. jerry: well. well. susan: hi, jerry. jerry: hey, susan, george. susan: you know, i really like sheila a lot. jerry: oh, really? susan: mmm-hmm. jerry: because we're kind of not seeing each other anymore. susan: oh, no! that's too bad. jerry: yeah. well, she was very affectionate - which i love. you know i love that - but mentally, we couldn't quite make the connection. george: really? jerry: yeah. too bad, 'cause you gotta have the affection - which you obviously have. i think it's great that you're so open with your affections in public. see, we had that. susan: mmm-hmm. george: you did? jerry: oh, yeah. but the mental thing. but anyway. i'll see ya. george: yeah. see ya. soup nazi: go on! leave! get out! woman: but i didn't do anything. soup nazi: next! elaine: hello. soup nazi: you. you think you can get soup? please. you're wasting everyone's time. elaine: i don't want soup. i can make my own soup. " 5 cups chopped porcine mushrooms, half a cup of olive oil, 3 pounds celery." soup nazi: that is my recipe for wild mushroom. elaine: yeah, that's right. i got 'em all. cold cucumber, corn and crab chowder, mulligatawny. soup nazi: mulliga...tawny? elaine: you're through soup nazi. pack it up. no more soup for you. next! newman: [panting] jerry! jerry! jerry! jerry: what is it? newman: something's happened with the soup nazi! jerry: wha - wha - what's the matter? newman: elaine's down there causing all kinds of commotion. somehow she got a hold of his recipes and she says she's gonna drive him out of business! the soup nazi said that now that his recipes are out, he's not gonna make anymore soup! he's moving out of the country, moving to argentina! no more soup, jerry! no more for of us! jerry: well, where are you going? newman: he's giving away what's left! i gotta go home and get a big pot! susan: hey, i gotta get some cash, i'm gonna run down to the atm. george: yeah, i better grab some too. susan: i'll get it for you; just give me your card. george: you sure? susan: yeah, just tell me your code. george: my code? jerry: so why didn't you tell her the code? george: no. no way. jerry: george, you're gonna marry this woman. most likely. george: it says very clearly, 'for your protection, do not give your secret code to anyone.' jerry: so you're taking relationship advice from chemical bank now? george: why does everything have to be 'us'? is there no 'me' left? why can't there be some things just for me? is that so selfish? jerry: actually, that's the definition of selfish. george: have you ever given your code to anyone? jerry: no one's ever asked. you want it? it's 'jor-el.' george: superman's father on krypton. jerry: of course. c'mon georgie, you wanna tell me. it's eating you up inside. sing it, sister. george: no. i am not giving my code to anyone for any reason. jerry: what if my life depended on it? george: if you're in some situation where some fast cash will save your life, i'll give you the code. george: what's the matter with your leg? jerry: my foot fell asleep. george: how'd your foot fall asleep? jerry: i crossed my legs, i forgot to alternate. fred: hey jerry. jerry: hey fred. george: hey fred. jerry: my foot fell asleep. fred: you're lucky, at least you got something to do. jerry: fred, do you know elaine? fred: no, it's nice to meet you. well, i'm outta here, see you guys. george: alright, bye. jerry: seeya. elaine: did you hear that? he said, 'nice to meet you.' jerry: so? elaine: so? we've met before. at katie ash's party, we talked for like ten minutes. jerry: and he didn't remember you? jerry: where are you going, you just got here? elaine: i gotta go talk to him. elaine: excuse me, excuse me, fred? fred: yeah? elaine: you just said, 'nice to meet you', but actually we've met before. fred: we have? elaine: yeah, at katie ash's party? fred: what was your name again? elaine: elaine. you don't remember our conversation? i talked about how my uncle worked in the book depository building with lee harvey oswald? fred: not ringing a bell. elaine: when my uncle said to him, 'the president's been shot' oswald winked at him and said, 'i'm gonna go catch a movie'? fred: mmm, no. elaine: that was right when we were in front of the bathroom door. fred: the bathroom door. i remember someone had played tic-tac-toe on it, and the x's won; they went diagonally from the top left to the bottom right. jerry: hey that sounds great, i'd love to do some tv commercials, that should really be fun. jerry: uh huh, okay, alright, bye. huh, how do you like that? i'm gonna do some tv spots for leapin' larry's appliance store. that was leapin' larry himself, i'm gonna meet with him tomorrow. kramer: leapin' larry! yeah, that's where i bought this. jerry: what is that? kramer: well, it's an emergency band scanner, it picks up everything fires, harbor patrol, even the police. i'm watching the watchers, jerry. uh oh, we got a big fire on 115th. i tell ya if could do it over again, i'd give it all up to be a fireman. jerry: yeah, those civil servants who risk their lives really got it made. kramer: when i was a kid, all i ever dreamed of was steering the back of that big hook and ladder. jerry: you're lucky they let you drive a car. kramer: no no no, they're talking the west side highway, at this time of day that's insane. they're heading straight into gridlock. oh, those fools. elaine: what was that? jerry: (waving his arm in dismissal) eh. elaine: alright. so, get a load of this. this guy, fred yerkes, remembers every little thing about that night except me. jerry: really? i'm surprised, he doesn't meet that many women. elaine: what are you saying? jerry: well, what's to be said? he didn't remember you. elaine: yeah, but why? i mean, ya know. jerry: i know. elaine: ya know? jerry: yeah, i know. elaine: huh, lookit, you got the new catalog. jerry: yeah, you wrote a good piece on the himalayan walking shoe. elaine: too good. peterman was so pleased, now he wants to take me out to dinner tomorrow. maybe you wanna come with me. jerry: why would i wanna do that? elaine: oh please, jerry, please please please, i can't sit with him, he tells these stories, it's gonna be awful. jerry: yeah, sounds like fun. susan: i want you to tell me, george. george: why? why is my code so important? susan: because, it's part of our relationship, it's an indication of trust. we're not supposed to keep secrets from one another. george: well i'm sure you have secrets from me. i don't know anything about your cycles. susan: my cycles? george: yeah, i never know what's going on there. susan: well from now on i'll keep you apprised of my cycles. george: please. susan: anything else? george: we're out of bosco! jerry: howbout this, come one down to leapin' parry's if you can beat our prices, we'll give you the store. leapin' larry: ya know i've always liked your comedy, you don't take cheap shots. jerry: no i don't. leapin' larry: sorry for keeping you here so long. again, i apologize for the mess. this renovation is killing me. jerry: (to himself) my foot's asleep again! leapin' larry: when i lost my leg in the boating accident, i got so depressed about this damn prosthetic i thought i was gonna have to give up the business. but now i'm rejuvenated. let me show you around the store. jerry: you know what? i'll be with you in a minute. employee: that is a great impression! jerry: larry, wait, you don't understand! kramer: i just came from leapin' larry's. making fun of crippled people, is that what you've sunk to? jerry: i didn't do it on purpose, my foot fell asleep. kramer: oh, oh your foot fell asleep. jerry: ya know, the guy has one leg and he still calls himself leapin' larry, you'd think he had a sense of humor about it. kramer: well, you just joked yourself right out of that commercial, didn't you, munjamba? jerry: yup. voice: hup. kramer: boy, look at that. se that's that fire i was listening to yesterday. jerry: wow, the whole building burned down. kramer: they just don't know what street to take. you remember that time i got us to yankee stadium in rush hour in fifteen minutes? jerry: of course. kramer: it's all up here, jerry. all up here. it's innate. jerry: the amazing thing is you never have any place to go. george: where we gonna eat? jerry: we're gonna meet elaine and peterman at the chinese place. george: peterman? nobody mentioned anything about peterman. jerry: of course not, if i did would you have gone? george: no way. jerry: there you go. george: i don't even know peterman. how the hell am i gonna relax? i'm gonna have to be on all night. i don't like being on, jerry, i would much rather be off. jerry: trust me, you're off. elaine: oh, hi fred. fred: um, hello? elaine: it's elaine. fred: oh yeah, yeah, right. elaine: how ya doin'? fred: i'm depressed. i got this new shirt, the button fell off. once the button falls off, that's it. i'll never fix it. elaine: yeah, that's too bad. fred: yeah, i'm gonna get some vitamins, i feel depleted. elaine: hmm. i never take them. fred: cause they make you nauseous, right? elaine: yeah! yeah, that's right, you remembered! fred: do you wanna have dinner tonight? elaine: hmm. tonight. fred: what, you have other plans? elaine: no, no no no, none that i can, um, remember. jerry: ...alright, you're locked up in a prison in turkey, i have your wallet. the only way i can bribe the guards to get you out is for you to give me your atm code. george: call the embassy. jerry: they're closed. george: why? jerry: bomb threat. george: we're in turkey? jerry: midnight express, my friend. george: my card won't work there; they're not on the plus system. peterman: you must be jerry seinfeld. jerry: yes, hi, mr. peterman. this is, uh, george costanza. peterman: j. peterman. george: (grabbing lapels) j. crew. jerry: well, is elaine here? peterman: oh, elaine just called, she won't be joining us. not to worry, i'll tell the maitre'd it'll just be the three bulls. george: what's going on? he still wants to have dinner with us? jerry: without elaine? what for? george: what, is he crazy? jerry: we gotta get out of here. come on; weave your web, liar man. george: i've got nothing, i-i-i-i'm blank. jerry: george, what's the matter with you? george: i'm choking! peterman: ah, fong has been most accommodating. shall we? jerry: actually, you know i just remembered i promised this comedy club that i'd do a set tonight, so, terribly sorry. peterman: i understand, no hard feelings. george and i will miss your company. fong? it will just be two this evening. george, we dine. elaine: (to herself) i can't believe this, is this guy standing me up? peterman: ...and there, tucked into the river's bend was the object of my search. the gwon-jaya river market, fabrics and spices traded under a starlit sky. it was there that i discovered the pamplona beret. sizes seven-and-a-half through eight-and-three-quarters. price? thirty-five dollars. george: howbout sports? do you follow sports? tv announcer: it's fourth and inches and the giants are going for it! you gotta love sports! george: you know, this is very nice, but i really could take a cab. really. peterman: ha ha, nonsense, george. besides it gives me a chance to tell you about my latest trip to burma where i discovered a very unusual corduroy. peterman: peterman here. what? oh no. alright, i'll be right there. (to george) it's my mother; she's at death's door. i just pray to god we can make it there in time. jerry: i can't believe you blew us off; we were doing you the favor. elaine: well, fred asked me out. jerry: fred? elaine: yeah, and then he stood me up. i don't get this guy. jerry: you see what's going on here? you're attracted to him because he can't remember anything about you. elaine: i am? but that's so sick. jerry: that's god's plan. he doesn't really want anyone to get together. elaine: anyway, so how was the dinner? jerry: well, when i heard you weren't coming i made up and excuse and got the hell out of there. elaine: what about georgie? jerry: nah, he didn't make it. peterman: doctor, how is she? doctor: she's too weak to talk but she'll be happy to hear your voice. peterman: mama, it's me. jacopo. i'm here for you, mama. george: i'm, uh, george costanza. i was having dinner with your son. peterman: shake off the dew, my friend. george: yeah. what time is it? peterman: it's morning. thanks for seeing me through the night. i'll make us a pot of coffee, george. watch her, won't you? george: who? peterman: momma. just talk to her, george. the doctor seems to think it helps. george: hi. i-i really should be getting back to my fianc, you know, we, uh, we had this big fight yesterday and, uh, well she, she wants to-to know my secret code. i-i don't know, i can't tell her. the funny thing is, you know, i would really love to tell someone 'cause it's killing me. you uh, you wanna know what it is? it's bosco. you know, the chocolate syrup? i love that stuff, i pour it in milk, it's my favorite drink. hoo-hoo, boy, that is a relief! mrs. peterman: bosco. bosco. george: oh, shhh. mrs. peterman: (sitting up) bosco! mrs. peterman: bosco! bosco! bosco! george: shut up! shut up! peterman: momma! what are you trying to say? mrs. peterman: bosco. peterman: she's gone. bosco? george: you know this whole thing never would have happened if you hadn't bailed out on me at the restaurant. jerry: i did not bail out on you. george: well why couldn't you include me in your excuse? jerry: why didn't you come up with your own? george: i froze. i think i'm losing it. jerry: ah, c'mon. maybe you're just in a slump? george: no, no. i reached down and there was *nothing* there. george: now peterman wants me to go to the funeral. jerry: oh, come on, just tell me your code already. what is it? george: i am not giving you my code. kramer: i'll bet i can guess it. george: pssh. yeah. right. kramer: oh, alright. yeah. uh, let's see. um, well, we can throw out birthdays immediately. that's too obvious. and no numbers for you, you're a word man. alright, let's go deeper. uh, what kind of man are you? well, you're weak, spineless, a man of temptations, but what tempts you? george: huh? kramer: you're a portly fellow, a bit long in the waistband. so what's your pleasure? is it the salty snacks you crave? no no no no no, yours is a sweet tooth. george: get out of here. kramer: oh you may stray, but you'll always return to your dark master, the cocoa bean. george: i'm leaving. kramer: (building up steam as george bolts for the door) no, and only the purest syrup nectar can satisfy you! george: i gotta go. kramer: if you could you'd guzzle it by the gallon! ovaltine! hershey's! george: shut up! kramer: nestl's quik! george: shut up! george: what was that? elaine: what? george: you just checked your watch. are you thinking of bailing on him? elaine: i got a date. elaine: oh, mr. peterman. peterman: oh, elaine. george, when momma said 'bosco' she must have been trying to communicate something, a legacy, a dying wish perhaps. george: mothers say things. my mother goes babbling on and on like a crazy person. elaine: mr. peterman, you have my deepest sympathies. unfortunately, i've gotta get going. peterman: you do? george: uh, yes, actually we-we both do. elaine: i have a personal commitment. george: well, personal, i mean, we both uh... peterman: what is it? elaine: i'm speaking at a women's' rights conference. george: yes, and i'm speaking at a men's' conference. peterman: i don't believe that for a minute. well, elaine, it was good of you to stop by. elaine: my pleasure. peterman: fortunately, i still have george here to help me through this. peterman: you know george, growing up as a boy in costa rica, i heard a rumor that momma had taken a lover. perhaps bosco was this man's name. kramer: hey, you wanna come down the fire station with me? jerry: fire station? kramer: yeah, i made a map of my shortcuts. i'm gonna rock their world! jerry: nah, i gotta go down to leapin' larry's. kramer: oh, so he took you back. jerry: yeah, we straightened it out, all is forgiven. kramer: well, you know the important thing is that you learned something. jerry: no i didn't. captain: well, mr. kramer, your list of short cuts is most impressive. kramer: yeah, and this is just the upper west side. wait until i get to the village, then you're gonna see a magic show. captain: mr. kramer, just about every week some brash young hothead like yourself saunters in here talking about faster routes and snazzier colors for the trucks, well, fact is we feel things are fine the way they are. jerry: anyway, thanks for having me back, and sorry about the misunderstanding. leapin' larry: water under the bridge. come on, i never did get a chance to show you around the store. jerry: oh sure. jerry: uh, again? (limping towards the door) i'll be right there. dispatcher: attention company 390, structure fire at leapin' larry's appliance warehouse. kramer: leapin' larry's? hey, that's uptown. you gotta take amsterdam. captain: stay out of this, kramer. kramer: are you ok, cowboy? where do you need to go? kramer: well, you'd better take it easy. fred: sorry about the other night but my mother called, she couldn't find her pills. i had to go into brooklyn to help her find her pills, and they were right there in the medicine cabinet. could you believe that? elaine: huh. fred: the worst part is getting from the subway station to the house. there's no transportation... elaine: (to herself) what am i doing? i'm on a date with this guy because he didn't remember me? he's demented, listen to him... fred: ...i could have taken a cab but if my mother saw me pull up in a cab, she'd start yelling at me, "freddy! what are taking a cab for? it's so expensive!" she's out of her mind. eventually, you'll meet her. peterman: bosco. bosco. bosco. (a woman rushes in and shouts: there's a big fire down the street, the whole block is going up in flames! peterman gets up and runs towards the door, he stops and looks back. george is still sitting on the couch, looking up and shaking his head. peterman: george! captain: gonna make a left onto broadway. captain: who is this? kramer: it's kramer! captain: kramer?! what the hell are you doing back there? kramer: desoto's down, but cosmo's got the caboose. woman: how did this start? jerry: beats me. leapin' larry: where the hell's the fire department? i'm gonna lose the whole store! captain: kramer, get the hell off of there. you're not trained to operate this equipment! man on the street: hey, kramer! leapin' larry: try the scanner, see if you can pick up anything. captain: what are you doing, kramer?! you're all over the road! kramer: don't worry, cap, i can handle it! jerry: kramer? captain: you're losing control! hard right! hard right! jerry: ah, that's a shame. peterman: the fire will eat up this entire block! peterman: look, there's a man in there. get out of there, you're in danger! man: but my sleeve, it's stuck in the machine, it ate my card! peterman: george, give me your atm card! george: i don't have my atm card. peterman: george, you're obviously lying, anyone can see that! peterman: it's jammed! i'll slide it under the door, man: now give me your code! george: what?! why? man: the machine won't open without the code! peterman: george, give him your code! george: but i-i-i- peterman: george, there's no time! tell him your code! shout out your code, man!! man: the code!! the code!! susan: hi. here's your cash, george. george: hm. thanks. susan: and here's your card back. anyone for bosco? jerry: oh my god. look at this. george: hm? jerry: it's the new j. peterman catalog. look. george: the rogue's wallet. that's where he kept his card, his dirty little secret. short, devious, balding. his name was costanza. he killed my mother. george: let me ask you a question. who would win in a fight between you and me? jerry: well, what do you mean? george: well if you and i ever got into, like a really serious fight you know, and the punches started flying -- who do you think would win? jerry: well i think that's pretty obvious. george: yeah. me too. jerry: hey elaine. elaine: hey. jerry: who, who, who do you think would win in a fight between me and ah, gorgeous george here. (pointing up and down at george) elaine: you mean in a real fight fight? jerry: mona a baldo . elaine: george. george: ah-ha! (he turns and walks over to the refrigerator) jerry: why? elaine: george fights dirty. (she sips her coffee) jerry: really? what would you do? george: pull hair, poke eyes, groin stuff. whatever i gotta do. (he opens a blue bottled beverage) jerry: hmm. elaine: so. listen ... you're not doing anything tomorrow, are you? because i have an extra ticket to the historical clothing exhibit at the met. jerry: im sorry. elaine: george? george: would i want to see what mary todd wore to lincoln's funeral? elaine: there's nobody i can go with. elaine: you know what. i don't have one female friend left. kramer: oh, no, of course you don't. you're a man's woman. you hate other women, and they hate you. elaine: thank you. kramer: so jerry, (smacks hands and rubs palms together) what time we going to the movies? jerry: ah, how about 830? kramer: saddle up and ride. (opens the fridge and pulls out some food -- takes a big bite) jerry: you want to get something to eat first? kramer: (mumbling with full mouth) no, im good. george: i wonder if, ah, susan ... (picks up the phone from the coffee table, then decides not to call) no. i better just go. (claps hands) heh. all right! see ya. (grabs his rain coat from the hook by the door and rushes out) kramer: there's nothing more pathetic, than a grown man, whos afraid of a woman . (voice get high-pitched for the last line) jerry: hey, why don't cha ask susan? elaine: george's susan? jerry: yeah. elaine: yeah. why not susan. i should be friends with susan. (smacks her forehead with hand) of course! susan! oh! ok, ill see you guys. huh. (rushes out the door.) kramer: that's gunna be trouble. jerry: why? kramer: jerry, don't you see? this world here, this is george's sanctuary. if susan comes into contact with this world, his world's collide. you know what happens then? kramer: ka shha shha shha pkooo (exploding sound) kramer: did i tell you im getting a new telephone number? jerry: how come? kramer: whew, chicks man. too many chicks know my number. ramon: (recognizes jerry) hey jerry. how are you mr. backstroke? jerry: kramer this is ramon, from the new health club i joined. kramer: oh, yeah. ramon: so you know what happened don't chu? jerry: no what? ramon: i got fired. jerry: really? ramon: yeah, said i put too much chlorine in the pool. jerry: ahh. ramon: hey well, ah, stay out of the deep end, eh. jerry: ok, see you later. kramer: what's in the deep end? george: hello? elaine: hey george. george: hey elainie. what's going on? elaine: (sitting up in bed) nothing much, um. can i talk to susan george: ha, yeah right, hang on, ill ah, ill get her for you. he, he, he, he. seriously, what's up? elaine: no, george really. can i talk to susan? george: susan, why? elaine: because i want to ask her to lunch and to the met tomorrow. george: oh, i don't think you want to do that. elaine: why not? george: well what would be the point of that? elaine: george, are you going to put her on the phone? george: where did this come from all of a sudden? elaine: george, are you going to let me talk to susan, or not? george: i really think i should have been consulted about this. george: here ... something. susan: hello? (with hesitant surprise) oh, that sounds great. i love that sort of stuff. kramer: you want to sit here? jerry: yeah. (kramer sits in the seat next to jerry) uh, uh, oh, oh, over there. (points to the next seat over) kramer: why? jerry: little buffer zone. kramer: (quietly) buffer zone (kramer moves to the other seat) jerry: thank you. if we were in my apartment and we were watching a movie on the couch, would we sit right next to each other? kramer: no. you got a point. jerry: all right. kramer: i can't ... jerry: what are you doing? kramer: well these seats have no lumbar. jerry: oh hey, there's ramon. pre, pretend we're talking. kramer: we are talking. jerry: pretend it's interesting. kramer: so, ah then, i ah had to kill him and ah, well the police are still looking for me. jerry: that's shocking, but sounds ... ramon: hey, hi jerry. jerry: oh, hey ramon. ramon: hey, hey, i took a bunch of napkins. you want some? jerry: oh, no thanks. (turns back to kramer) ramon: hey, ahhh, is this seat taken? jerry: no. jerry: and then the worst part is, after the movie, he leached on to us ... we wound up having coffee with him for like two hours. then he walks us home, all the way back to the front of the building. finally i said, look ramon, i gotta go to bed now. george: by the way, have you spoken to elaine yet today? jerry: no why? george: (sighs) she called susan last night. jerry: oh yeah, i know. george: how do you know? jerry: well it was my idea. george: your idea? jerry: yeah. george: whad you do that for? jerry: she was looking for someone to go to the show with. george: well that was a really stupid thing! you know what's going to happen now? jerry: world's collide. (points at george) george: whe ... well yeah! jerry: because this world is your sanctuary and if that world comes into contact with -- george: yes! it blows up! if you knew that, what did you tell elaine for? jerry: i didnt know. kramer told me about the worlds. george: you couldn't figure out the world's theory for yourself? it's just common sense. anybody knows, ya gotta keep your worlds apart. (gesturing with hands going outward) jerry: yeah, i guess i slipped up. kramer: hey. george: hey. jerry: hey. george: he knows the worlds theory. kramer: what is it blowing up? george: ha! (grabs his coat and exits the apartment) kramer: cosmo, go. no, no, na, na. (he pushes the end button and pushes the antenna down) boy this new telephone number's driving me crazy -- wrong numbers, every five minutes. jerry: what is it? kramer: well it's 555-3455. jerry: 555-3455. kramer: yeah. jerry: (picks up the phone on the coffee table) 555-3455. well wait a second, don't you see that's 555-filk. kramer: what's filk? jerry: filks nothing, but 555-film is movie phone. kramer: oh movie phone. jerry: yes, so people are just dialing it by mistake and getting you. kramer: so, im filk? jerry: you're filk. kramer: oh, mama. elaine: well what about that number susan b. anthony wore to the 19th amendment party. hnuh. eye yye yye. susan: oh whoo. quite the dcolletage for a suffragette. elaine: ha, ha, ha, ha, well it must have been one hell of a party. susan: whoo. elaine: ha, ha, ha, ha. susan: oh, i know what i wanted to tell you. elaine: what? susan: ehahh, forget it. elaine: what? you can tell me. ill put it in the vault. susan: the vault? elaine: mm-hmm. paul - locker room attendant #1: oy, mr. seinfeld. we heard you went to the movies with ramon. jerry: oh, well, i didnt actually go with ramon. i just bumped into him there. (putting on coat) dustin - locker room attendant #2: it's a good thing he has friends like you to cheer him up. paul: tell him to call us. dustin: tell him, dustin says, hello. jerry: all right, i gotta go. paul: to see ramon? jerry: what else did you two do? elaine: oh, i don't know, you know, girlie stuff. jerry: ah, so, ah, flower shows and, shopping for pretty bows, and then back to her place, strip down to bra and panties for a tickle fight? elaine: that's really what you think girls do, isn't it? jerry: yes, i do. (very serious) elaine: all rightee. (turns and walks to the bathroom) jerry: hey you know george isn't to happy, ahh, about your new friendship. elaine: yeah? well i don't really give a sh... (closing the bathroom door) kramer: hey man, what's going on? jerry: hey. kramer: ooh, here we go. (pulls a cordless phone from his pocket) yeah hello. yeah, no, no, no, hold on. kramer: yeah, cupids rifle -- 830, sony lincoln square. yeah, no, no, no, no problem, yeah. jerry: you're looking up movies for people now? kramer: i got time. kramer: and this. (pulls out the cordless phone from his pocket) cosmo here. yeah, un-huh, no, no, no, no, ill help. yeah, firestorms good. i saw it yesterday. yeah well my buddy jerry , ah, he's seen it twice. you want to talk to him? here -- (holds the phone out to jerry) jerry: (shaking his head no) no kramer i don't want to talk to him. kramer: just, just tell him about the picture. what's the matter with you? stop it. (puts the phone back to his ear) yes, are you still there? look im sorry about that. all right there's an 830 and a 1015showing. jerry: oh that's george. (presses the intercom button) yeah? ramon: (hey it's ramon) jerry: what? ramon: (hey, it's ramon jerry. im coming up) jerry: (to ramon) oh. okay. (to elaine) wh, what is he doing here? elaine: who? who is ramon? jerry: he's the pool guy. elaine: what pool guy? jerry: do me a favor. just stick around while he's here. elaine: yeah, no problem. elaine: you know, you have the slowest elevator in the entire city? that's hard to get used to when you're in so many other fast ones. jerry: well, the apartment elevators are always slower than the offices, because you don't have to be home on time. ramon: hee hey, hey jerry (claps hands and points both index fingers at him) how are you, crazy guy? jerry: hey. so, ah, ramon this is my friend elaine. elaine: yeah and i was just leaving. bye-bye jerry. (smiling as she closes the door. jerry looks at her like he can not believe she left him on his own) jerry: so, ah, what are you doing around here ramon? ramon: well, i was in the neighborhood. i figured id check you out. jerry: ah, actually, i ka, kinda had some things to do. ramon: oh, oh yeah. wha? where you going? jerry: ah, just, you know, i don't know. stuff, i gotta do. (grabs coat and throws it over his shoulder) ramon: hey that's cool. im up for some stuff jerry: all right. ramon: so get this. i get down there, and right away, i see the drain is clogged. i mean it's obvious. can you believe it? jerry: all right ramon, im going to get going. jerry: i think we should separate here actually. ramon: what are you trying to say jerry? jerry: look ramon, you're, you're a nice guy. but i, i actually only have three friends. i really can't handle any more. ramon: oh i see. it's cause i clean pools, right? jerry: that has nothing to do with it. ramon: you su -- (no audio) (through the moving subway window, ramon is swearing and pointing at jerry) susan: yeah, we got along real well. george: you know, uh, she has no female friends! you know that, don't cha? something strange about a woman whos friends are all men. susan: yeah, i know. we talked all about that. george: you talked all about that? susan: oh yeah. elaine opened up her vault. george: did you just say vault? susan: yeah, why? did i use it wrong? george: you got that from elaine. susan: yeah. so what? george: well it's a little strange. you going to start to talk like elaine from now on? susan: i don't know. anyway i thought we'd all go to a movie on friday. george: wed all go to movie on friday? susan: yeah. george: this is not good. world's are colliding! george is getting upset! george: ah you have no idea of the magnitude of this thing. if she is allowed to infiltrate this world, then george costanza as you know him, ceases to exist! you see, right now, i have relationship george, but there is also independent george. that's the george you know, the george you grew up with -- movie george, coffee shop george, liar george, bawdy george. jerry: i, i love that george. george: me too! and he's dying jerry! if relationship george walks through this door, he will kill independent george! a george, divided against itself, cannot stand! george: you're killing independent george! you know that, don't you? elaine: george i don't even want to get -- george: you know what word susan used last night? hnuh. vault! hu, elaine: so? george: she got that from you! elaine: well, i didnt tell here to say it. george: is she the only girl in the whole world? why can't you get find your own girl? elaine: i like her! george: you see (to jerry). you see. you see what im talking about. it's all just slipping away. and you're letting it happen. (exits -- slamming the door) jerry: so you want to catch a movie later? elaine: ahh, yeah, sure. jerry: i don't have a paper though. elaine: hmm. (picks up the phone and dials) kramer: hewwo and welcome to movie phone. brought to you by the new york times and hot 97. coming to theaters this friday ... kevin bacon, susan sarandon -- you've got to get me over that mountain! now (bang, bang) ahhhhhhhhhh there is no place higher than ... mountain high . rated r. if you know the name of the movie you'd like to see, press 1. elaine: kramer, is that you? kramer: elaine? elaine: uh, what time does chow fun start? kramer: i don't know. ramon: well, well. look whos here. jerry: ramon, what are you doing here? you could get in trouble. ramon: no, i don't think so jerry. you see they gave me my job back. jerry: what? ramon: im a pool boy ... again. jerry: look ramon, about the other day. im sorry if i offended you. i get a little crabby on the subway. ramon: do you? jerry: what happened to all the towels? ramon: oh, ah, i guess they must have disappeared. (walks away) newman: hey jerry. look at all the towels they gave me! i really hit the jackpot! (holding a large stack of towels, newman pats his face with the top one) ha, ha, ha. jerry: it's been a terrible situation down there the past couple of days. he's really been making things uncomfortable for me. there's always a big pile of dirty towels in front of my locker ... elaine: uh-huh. jerry: and then when i come out of the pool, my towel's always gone. elaine: uhh, so frustrating! jerry: tell me about it. elaine: uhh, so you want to join me and susan for lunch at the coffee shop? jerry: you're meeting susan for lunch at the coffee shop? elaine: yeah. jerry: im meeting george for lunch at the coffee shop. elaine: oh, huh. well, this should be very interesting. susan: hey! elaine! jerry. over here! kramer: there they are. susan: yeah, look who i ran into. kramer: hey. elaine: yeah. (sits down next to susan) kramer: yeah. elaine: ahh. kramer: come on jerry. aren't you going to join us? jerry: ah, you know. im supposed to meet, eh, someone -- ill, ill wait for them outside. (walks towards the door) kramer: yeah, wait here. come on, sit down. what's the matter with you? jerry: this is gonna to be ugly. (quietly) susan: what's that jerry? jerry: (coughing) i said, boy am i ugly. susan: oh, hey, hey, georgie boy, over here. george: one, two ... three, four. george: ha ho! (he turns and walks out the door) susan: hey george! jerry: we'll pull up another chair. jerry: i see you there ramon. jerry: hey, lll just keep swimming. hey, hey. im not done. i know what you're up to ramon. because im a member here, this is my place to swim. jerry: hey, you better cut it out ramon. just stop it. ramon: oh. newman: olly, olly, oxen, free! jerry: (no!) jerry: i think he's gonna need, mouth-to-mouth resuscitation. newman: mouth-to-mouth? jerry: yeah. newman: huh. jerry: well? go ahead. newman: you go. jerry: you knocked him out. newman: yeah, but you pulled him in. jerry: come on newman. do it. newman: nah. jerry: he might die. newman: yeah. maybe. elaine: (on the phone to) look jerry, we'll meet you at the theater. (hangs up the phone) ok, next showings at 900, we can't wait any longer. susan: elaine, where could he be? it's not like george to just disappear. elaine: look, let's just leave him a note, okay? susan: oh, i don't know. elaine: oh, come on, come on, come on. (picks up pad of paper and writes) george, elaine and i went to see chunnel ... with jerry. love? susan: yeah. elaine: love ... susan. jerry: so eventually these people came and, somebody, gave him mouth-to-mouth. elaine: he could have died jerry: yeah, it was a gamble. susan: why didnt you give him mouth-to-mouth? jerry: ah. (makes face) elaine: how can you possibly show your face there again? jerry: oh i can't. they revoked my membership. newman too. you know, we can't go anywhere near there. elaine: hi, ah, three for chunnel -- two adults ... one child. (looking towards jerry) george: what the hell is this? george, elaine and i went to see chunnel ... with jerry. with jerry, huh? with jerry! great. great! (dials phone) probably went to the 84th st. that's where i always go with jerry. kramer: hewwo and welcome to movie phone. if you know the name of the movie you'd like to see, press one. george: come on. come on. kramer: using your touch-tone keypad, please enter the first three letters of the movie title, now. kramer: you've selected ... agent zero? if that's correct, press one. george: what? kramer: ah, you've selected ... brown-eyed girl? if this is correct, press one. kramer: why don't you just tell me the name of the movie you've selected. george: chunnel ? kramer: to find the theater nearest you, please enter your five digit zip-code, now. kramer: why don't you just tell me where you want to see the movie? george: lowes paragon, 84th and broadway. kramer: (picks up paper) chunnel , is playing at the paragon 84th street cinema in the main theater at 930 pm. george: yeah, now i gotcha! (hangs up the phone and rushes out the door) kramer: it's also playing in theater number two at 900. george: jerry ... where are you? i know you like to sit back here. elaine! susan! movie patron: shh! (from the movie we hear this dialogue: the english channel tunnel, chunnel, runs 32.3 miles, with two openings. one here, in england and another one here, in france. that's all we got. thank you for your time gentlemen. can i ask you a question mr. mckittrick. -- it's a bit hard to hear the movie dialogue, as we are supposed to be focused on george, but i was able to make out most of it) jerry: i can't figure out what's going on here. i can't follow the plot. why did they kill that guy? i thought he was with them? susan: no, no. that's not the guy. that's a different guy. jerry: what is he doing in the chunnel? susan: would you two, please? (again, from the movie we hear this dialogue: let me tell you something about the chunnel, mr. thane. that our only freeway is adept. (inaudible) elaine brookstone will get the money bag (inaudible) not as long as i have these long stickers. find him and kill him! i don't care if we have to turn this chunnel upside down! find him! everybody out of the chunnel! everybody out! the chunnels gonna blow! ahhhhhh (explosion) george: susan! jerry! where are you? i know you're there! answer me! movie patron: (hey, sit down!) george: hey. hey. answer me! come on, show yourselves! movie patron: (hey, we're trying to watch a movie here!) george: drink your soda! come on! i know you're there, laughing at me. laughing and lying and laughing! i had to go to reggies, jerry! reggies! movie patron: (move it off of there!) george: where are you! 2nd movie patron: (hey are you sure you got the right theater?) george: yeah, yeah, yeah. chunnel . susan! 2nd movie patron: (it's playing in two theaters.) george: two theaters? 2nd movie patron: (yeah, there's a 900 too.) george: oh. sorry. (once again, from the movie we hear this dialogue: there's something else, your ex-wife. alexandra? she's in france, im telling ya. no, she's in the chunnel. the chunnel? no! mr. president, im sorry to disturb you. what is it? there's something about the chunnel. oh? (inaudible) and that means your daughter is in the chunnel. somewhere between france and ... (inaudible) elaine: i thought that was pretty good, huh? jerry: whad you think susan? susan: oh, i don't know. i couldn't hear anything. you, you talked the whole movie. elaine: oh, well come on. you want to go grab a bite to eat? jerry: yeah. susan: ah, no. i don't think so. elaine: why not? susan: well you know, all you guys ever do is sit around the coffee shop talking, sit around jerry's apartment talking. frankly, i don't know how you can stand it. ill see you. george: i know they're in there, the three of them, laughing at me. together, laughing and lying. usher: let's go pal. george: they're -- they're killing independent george! and they're, they're all in on it! world's are colliding! [outside kramer’s apartment door: 5b a partial view of a man's face and his hand knocks 3 times on the door.] movie phone guy: hello, and welcome to your worst nightmare. movie phone guy: (cont) i know your in there, cosmo kramer, apartment 5b. you're in big trouble, now. you've been sealing my business. if you'd like to do this the easy way, open the door, now. or, please select the number of seconds, you'd like to wait, before i break this door down. please select now. kramer: hey, boys and girls. i need you both to sponsor me in the aids walk. elaine: is that tomorrow? kramer: yeah, yeah, so...git-git...(gestures to elaine to sign the form.) elaine (signing): well, i admire you for joining the fight against aids. kramer: well, if i didn't do something i wouldn't be able to live with myself. jerry (signing): it's hard enough living next door. kramer: i tell ya, there's some people, they just wear a ribbon and they think they're doin' something? not me. i talk the talk, and i walk the walk, baby. (gets up) i'll be right back. elaine: new jeans? jerry: yeah. elaine: still a 31 waist? jerry: yep. since college. (looks at kramer's aids walk list.) hey, lena small's on this list. elaine: lena small? jerry: yeah, that girl i was gonna call for a date, she was unlisted...and now here's her number. elaine: oh, you're not gonna cop a girl's phone number off an aids charity list! jerry (copying down the number): elaine, you should admire me...i'm aspiring to date a giving person. elaine: you're a taking person. jerry: that's why i should date a giving person. if i date a taking person, everyone's taking, taking, taking, no one's giving - it's bedlam. elaine (warns): she's gonna ask how you got her number. jerry: oh, i'll tell her i met some guy who knew her and he gave it to me. elaine: what's he look like? jerry: i really didn't pay much attention, i'd just come from buying a speedboat. elaine: you're buying a speedboat? jerry: see, we're already off the subject of how i got her number. (elaine laughs.) all i gotta do is get past the first phone call and i'm home free. elaine: i don't know about that. jerry: so if billy had gotten your number off the aids walk list, you wouldn't have gone out with him? elaine: well... jerry: yeah. so you really like this guy. elaine: very much. jerry: how's the...sexual chemistry? elaine: haven't been in the lab yet. but i am birth control shopping today. (kramer overhears as he returns to the booth.) kramer: are you still on the pill? elaine: uh, kramer... kramer: i'll tell ya, i think birth control should be discussed in an open forum. elaine: the sponge, o.k.? the today sponge. kramer: but wasn't that taken off the market? elaine: off the market? the sponge? no, no...no way. everybody loves the sponge. kramer: i read it in wall street week ...louis, uh, rukeyser. jerry: hello, lena? hi, it's jerry seinfeld. how did i get your number? i met a guy that knows you, he gave it to me...i don't remember his name. think it began with a w, maybe a q. i wasn't paying that much attention, i'd just come from shopping for a speedboat... susan: you know, i really like those new jeans jerry was wearing. he's really thin. george: not as thin as you think. susan: why? he's a 31. i saw the tag on the back. george: the tag, huh? susan: mmm-hmm. george: let me tell you something about that tag. it's no 31, and uh...let's just leave it at that. susan: what are you talking about? george: he scratches off a 32 and he puts in 31. susan: oh, how could he be so vain? george: well, this is the jerry seinfeld that only i know. i can't believe i just told you that. susan (laughing): why not? george: well, jerry doesn't want anyone to know. susan: well, it's alright, i'm your fiance. everyone assumes you'll tell me everything. george: where did you get that from? susan: well, we're a couple. it's understood. george: i never heard of that. susan: well, you've never been a couple. george: i've coupled! i've coupled! susan: keeping secrets! this is just like your secret bank code. george: this is totally different! that was my secret, this is jerry's secret! there's...there's attorney-client priveleges here! if i play it by your rule, no one'll ever confide in me again, i'll be cut out of the loop! george: hey. jerry: hey. what's the matter? george: i had a fight with susan. jerry: what about? george: oh...(is about to tell jerry, but reconsiders) ...clothing, something, i dunno. so, uh, what are you doing today? jerry: i got a date with that girl, lena. george: lena, how'd you meet her? jerry: i actually met her a few weeks ago, but... (jerry stops, and mentally visualizes george telling susan about how jerry got lena's number from the aids list...then susan passing the information along to monica on the phone at work.) george: you met her a few weeks ago, but...? jerry (slowly): i didn't call her till today. george: so, uh...wanna double? jerry: what? george: well, i just had a fight - i need a group dynamic. jerry: i dunno. (elaine enters.) hey. elaine: well, kramer was right. my friend kim told me the sponge is off the market. jerry: so what are you gonna do? elaine: i'll tell you what i'm gonna do - i'm gonna do a hard-target search. of every drug store, general store, health store and grocery store in a 25-block radius. george: just for these sponges? elaine: hey man, women are really loyal to their birth control methods. what does susan use? george: i dunno. elaine: you don't know? george: i, uh...figure it's something. (kramer enters.) jerry: what are you all out of breath from? kramer (panting): the elevator just broke. i had to walk up five flights. jerry: and you got the aids walk tomorrow. you're never gonna make it, you're in horrible shape. kramer: hey, i'm in tip-top shape. better than you! jerry: i got a 31 waist, mister! kramer: yeah, well i'm walking for charity, what are you doing? jerry (proudly): what am i doing? i'm...dating a woman who happens to be sponsoring one of these walkers. pharmacist: can i help you? elaine (with little hope): yeah, do you have any today sponges? i know they're off the market, but... pharmacist: actually, we have a case left. elaine (excited): a case! a case of sponges? i mean, uh...a case. huh. uh...how many come in a case? pharmacist: sixty. elaine: sixty?! uh...well, i'll take three. pharmacist: three. elaine: make it ten. pharmacist: ten? elaine: twenty sponges should be plenty. pharmacist: did you say twenty? elaine: yeah, twenty-five sponges is just fine. pharmacist: right. so, you're set with twenty-five. elaine: yeah. just give me the whole case and i'll be on my way. jerry: hey, i have found the best-smelling detergent. lena, smell my shirt. lena (smells jerry's arm): mmm! very nice. jerry: it's all-tempa-cheer. lena: i use planet. it's bio-degradable and doesn't pollute the oceans. george: yeah, the oceans really are getting very sudsy. lena (to waiter): can you wrap up all the left-overs on the table, please? i always take the left-overs. i work in a soup kitchen every morning at 6 a.m. jerry: they serve soup at 6 a.m.? lena: yeah. that's all they have. jerry: do the bums ever complain? "soup again?" george: i'd get tired of it. jerry: how could you not? lena: guess who volunteered last week? george: mick jagger. lena: no. maya angelou. susan: oh, the poet! jerry (to lena): so, let me ask you something - these people eat soup three times a day? lena: i don't know. susan (to lena): so, did you get to talk to her? lena: talk to who? jerry: is it a lot of cream soups? susan: maya angelou, the poet. lena: no, i didn't get the chance. george: oh, well, i'm sure you can reach her...she's a poet. what does a poet need an unlisted number for? susan: i'm going to the ladies room. lena: i'll go with you. (they leave.) george: what are you looking at me like that for? jerry: why'd you have to mention 'unlisted number'? george: what are you talking about? jerry: alright, i gotta tell you something, but you cannot tell susan. susan: jerry got her phone number off of an aids walk list? oh, that's awful! george: i know, but don't say anything to anyone. he told me not to tell you. susan: but you told me anyway? george: well, you know, i was thinking about what you said before, and...you're right, i've never really been a couple, so...if that's the rule, then i'm gonna go by the rule. susan: thank you, honey. george: so, you wanna go home and...make up, officially? susan: can we stop by a drug store first? george: what for? susan: i'm out of birth control stuff. george: oh, o.k., yeah. where am i gonna park here...? (pulls over.) susan: oh, don't park. i'll just sit in the car, you can run in. george: me run in? why don't you run in? susan: you don't know what i use for birth control, do you? george: of course i do. susan: you do? what? george: you know. you use the, uh...(mutters something unintelligible under his breath.) susan: the what? george: you know, the uh...(mutters it again.) susan: just get me some sponges, please. george: wait, wait a minute...they don't have them anymore. i just found out, they just took them off the market. susan: off the market? the sponge? george: yeah, so you gotta use something else. susan: i can't! i love the sponge! i need the sponge! george: o.k....(thinks) i think i know where we can get one. jerry: kramer, what the hell is going on in there? kramer: it's a poker game...(yells to the crowd) and i'm kickin' some serious butt! jerry: are you out of your mind? you got the aids walk tomorrow! voice from poker game: hey, kramer - are you in? kramer: oh, you gotta be kiddin'! you see those two ladies i got showin'? do they look scared?! jerry: you're never gonna make it! billy: you, uh...you wanna go in the bedroom? elaine: o.k. hold on just a second. (gets up and heads to the bathroom. george knocks at the door.) george: elaine? it's me, george. (elaine opens the door.) hey, sorry to bother you so late. (to billy) hey! how ya doin.' (to elaine) uh, did you get any of those sponges? elaine: yeah. cleaned out the whole west side. why? george: well...susan. elaine: ah, susan uses the sponge. george: susan loves the sponge. elaine: yeah, i'm sorry, george. i can't help you out. george: what? elaine: i can't do it. no way, there's no how. (tries to push george out the door. george resists.) george: elaine...let me just explain something to you. see, this is not just a weekend routine...i'm on the verge of make-up sex here. you know about make-up sex? elaine: oh yeah, i know all about make-up sex, and i'm really sorry. (shoves george into the hallway and closes the door. george blocks the door with his foot.) george: elaine, can i just explain something to you very privately here? susan and i have been together many, many times now, and just between you and me, there's really no big surprises here, so...make-up sex is all that i have left. elaine: i'm sure you'll have another fight, george. (stamps on george's foot and closes the door.) (to billy) hold that thought! susan: so, listen to this. but don't tell anyone - jerry seinfeld? he got a woman's number off an aids walk list. monica: he got her number off an aids walk list? lena: he what? jerry: how'd you find out? lena: a friend of a friend of a friend of susan's. jerry: george! lena: pardon? jerry: nothing. listen, i'm sorry, i just - lena: it's o.k.! there's nothing to be sorry about. i don't mind. jerry: you don't mind that i got your number off the aids walk list? lena: no, not at all. no problem. (jerry looks at lena suspiciously. lena leaves with all of kramer's poker buddies, who are filing out of kramer's apartment.) kramer: ah, you're lucky you're walkin' out of here with a pair of pants on! jerry: you went all night? kramer (shows jerry his winnings): jerry, ah? breakfast on me, huh? jerry: kramer, are you out of your mind? you got the aids walk in like, three hours! you're never gonna make it! kramer: aids walk! that's a cake walk. (george enters.) hey! jerry: so, george, guess what? lena found out how i got her number. george: really? how'd she do that? jerry: a friend of a friend of susan's. george: my susan? jerry: why'd you tell her?! george: because, jerry, it's a couple rule! we have to tell each other everything! jerry: well you know what this means, don't you? george: what? (img src=http: //tinyurl.com/2b9c width=200 ) jerry: you're cut off, you're out of the loop! george: you're cutting me off? no, no, no jerry, don't cut me off! jerry: you leave me no choice! you're the media now as far as i'm concerned! george: c'mon jerry, please! it won't happen again. jerry: if you were in the mafia, would you tell her every time you killed someone? george: hey, a "hit" is a totally different story. jerry: i don't know, george. george: so, lena was upset, huh? jerry: you know what? that was the amazing thing. george: what, it didn't bother her? jerry: no, she said it was fine. there's something very strange about this girl. george: what? jerry: she's too good. george: too good... jerry: i mean, she's giving and caring and genuinely concerned about the welfare of others - i can't be with someone like that! george: i see what you mean. jerry: i mean, i admire the hell out of her. you can't have sex with someone you admire. george: where's the depravity? jerry: no depravity! i mean, i look at her, i can't imagine she even has sex. jerry (using elaine as an example): on the other hand... elaine: what? george (to elaine): thanks again for last night! elaine: hey, i didn't even use one. jerry: i thought you said it was imminent. elaine: yeah, it was, but then i just couldn't decide if he was really sponge-worthy. jerry: sponge-worthy? elaine: yeah, jerry, i have to conserve these sponges. jerry: but you like this guy, isn't that what the sponges are for? elaine: yes, yes - before they went off the market. i mean, now i've got to re-evaluate my whole screening process. i can't afford to waste any of 'em. george: you know, you're nuts with these sponges. george is gettin' frustrated! kramer (to organizer at desk): uh, cosmo kramer? organizer: uh...o.k., you're checked in. here's your aids ribbon. kramer: uh, no thanks. organizer: you don't want to wear an aids ribbon? kramer: no. organizer: but you have to wear an aids ribbon. kramer: i have to? organizer: yes. kramer: see, that's why i don't want to. organizer: but everyone wears the ribbon. you must wear the ribbon! kramer: you know what you are? you're a ribbon bully. (walks away.) organizer: hey you! come back here! come back here and put this on! george: elaine and her sponges...she's got like, a war chest full of them. susan: well, i don't see why you just can't use condoms. george: oh, no, no...condoms are for single men. the day that we got engaged, i said goodbye to the condom forever. susan: just once...for the make-up sex. george: make-up sex? you have to have that right after the fight, we're way past that. susan: come on, just once? george: no, no...i hate the condom. susan: why? george: i can never get the package open in time. susan: well, you just tear it open. george: it's not that easy. it's like "beat the clock," there's a lot of pressure there. walker #1: hey, where's your ribbon? kramer: oh, i don't wear the ribbon. walker #2: oh, you don't wear the ribbon? aren't you against aids? kramer: yeah, i'm against aids. i mean, i'm walking, aren't i? i just don't wear the ribbon. walker #3: who do you think you are? walker #1: put the ribbon on! walker #2: hey, cedric! bob! this guy won't wear a ribbon! (cedric and bob turn around and glare at kramer.) bob: who? who does not want to wear the ribbon? (kramer is frightened.) elaine: so, you think you're sponge-worthy? billy: yes, i think i'm sponge-worthy. i think i'm very sponge-worthy. elaine: run down your case for me again...? billy: well, we've gone out several times, we obviously have a good rapport. i own a very profitable electronics distributing firm. i eat well. i exercise. blood tests - immaculate. and if i can speak frankly, i'm actually quite good at it. elaine: you going to do something about your sideburns? billy: yeah, i told you...i'm going to trim my sideburns. elaine: and the bathroom in your apartment? billy: cleaned it this morning. elaine: the sink, the tub, everything got cleaned? billy: everything, yeah. it's spotless. elaine: alright, let's go. (they head for the bedroom.) jerry: hi. lena: hi! hey, look at this - i just got a citation in the mail for my work with shut-ins. jerry: oh, the shut-ins, that's nice. you know, they're a very eccentric group. because they're shut in. of course, they're not locked in, they're free to go at anytime. lena: oh, by the way, i checked at the soup kitchen - they do have cream soups. jerry: hey, that's dynamite. you know, lena, i wanted to talk to you about something...you know, because you're such a good person - lena: oh, hang onto that thought - i'm rinsing a sweater, i left the water running. (goes into the bathroom.) hey, jerry, can you get me a towel out of my bedroom closet? jerry: oh, o.k. (goes to the closet for the towel and finds dozens of boxes of today sponges.) jerry's brain: oh my god! look what's goin' on here! she is depraved! (grabs a towel and brings it to lena.) there you are. lena: thanks. so, you were saying...? jerry: what? nothing. lena: no, you said i was a good person... jerry: oh... lena: you seem like you want to tell me something. jerry: tell you something...i do. lena: what is it, jerry? you can tell me anything. jerry: oh, uh...you see these jeans i'm wearing? lena: yeah. jerry: i change the 32 waist on the label to a 31 on all my jeans. so, you know. that's it. (lena is puzzled.) susan: come on, george, just tear it open. george: i'm trying, dammit. susan: tear it. george: i tried to tear it from the side, you can't get a good grip here. you gotta do it like a bag of chips. susan: here give it to me. george: would you wait a second? just wait? (they fight over it.) susan: give it to me. (she rips it open.) come on. come on! george (tosses the condom aside): it's too late. bob: so! what's it going to be? are you going to wear the ribbon? kramer (nervously): no! never. bob: but i am wearing the ribbon. he is wearing the ribbon. we are all wearing the ribbon! so why aren't you going to wear the ribbon!? kramer: this is america! i don't have to wear anything i don't want to wear! cedric: what are we gonna do with him? bob: i guess we are just going to have to teach him to wear the ribbon! jerry: it completely turned her off. george: well, i can see that. what do you have to do that for? who cares about your pants size? jerry: i don't wanna be a 32. george: i'd kill to be a 32. jerry: she said i wasn't sponge-worthy. wouldn't waste a sponge on me! george: that condom killed me. why do they have to make the wrappers on those things so hard to open? jerry: it's probably so the woman has one last chance to change her mind. george: you never run out, do you? (jerry smiles.) where's kramer? everything's finished here. jerry: oh, i told him he'd never make it. he was up all night! oh my god...kramer? jerry: look at you. i told you. up all night playing poker. come on. (jerry and george are about to leave. george turn's back and looks at kramer.) george: hey, where's you aids ribbon? elaine (smiling): good morning. billy: how'd you sleep? elaine (stretches): great. you? billy: fine, fine. everything o.k.? elaine: yep. billy: no regrets? elaine: nope. (billy leans in to kiss her.) what are you doing? billy: what do you mean? elaine: oh...i don't think so. billy: why not? i thought you said everything was fine. elaine: i wish i could help you, but i can't afford two of 'em. (pats billy on the shoulder and gets out of bed.) george: you think she's happy? jerry: who? george: (indicates with his head) the cashier. jerry: ruthie cohen? george: (surprised) you know her name? jerry: sure. george: i don't think i've ever spoken to her. jerry: maybe that's why she's happy. kramer: (handing jerry & george a flyer) good morning, gentlemen. jerry: what is this? kramer: (removing his coat) yeah, well, it's the latest offering from the alex theatre. jerry: that stinky old movie-house? kramer: (sits beside jerry) well, you should smell it now. we fixed up the place. george: (gesturing with flyer) with spartacus? kramer: (lighting his pipe) well, it's a rare archival print. (jumps as his burns his fingers) twelve extra minutes, full wide-screen cinemascope, and if you come to the one o'clock show, you can hear geoffrey har-harwood. jerry: geoffrey who? kramer: har-harwood, jerry. he was the assistant wardrobe man on spartacus. some fascinating insights into the production. george: why would i spend seven dollars to see a movie that i could watch on tv? kramer: well, why go to a fine restaurant, when you can just stick something in the microwave? why go to the park and fly a kite, when you can just pop a pill? (looks around monk's) listen, you guys haven't seen lloyd braun, have you? i'm supposed to meet him here. george: lloyd braun? what d'you have to meet him for? kramer: well, he's using his connections in the mayor's office, to uh, get the theatre landmark status. jerry: i thought he screwed up the dinkins campaign. kramer: well, he did. you know, after that, he had a nervous breakdown? had to spend a few months in an institution. george: really? kramer: yeah, but he's doing a lot better now. i've taken him under my wing. jerry: oh, then i'm not worried. kramer: but he still needs all of our support. now, when he gets here treat him like he's one of the gang, huh. george: (thoughtful) breakdown, huh? lloyd: hey kramer. kramer: oh, hey lloyd, hey buddy. (gets up and shakes lloyd's hand) lloyd: how you doing? kramer: (slaps lloyd on the shoulder) sit down. (sits himself) lloyd: hi jerry. jerry: lloyd. lloyd: george. george: hello, lloyd. how you doing? kramer: yeah well, he's doing fine, george. lloyd: (offering packet) gum? jerry: (peering) that's an interesting package. lloyd: yeah, it's from china. go ahead, try a piece. tell me that's not the most delicious gum you've ever tasted. kramer: yes, yes. we shall all try a piece and tell you how delicious it is. (he takes pieces for himself and jerry) lloyd: george? george: i don't chew gum. jerry: (chewing) mmm, different. where'd you get it? lloyd: friend of mine in chinatown gave it to me. if you want i can ask him where he got it. jerry: nah, don't bother. lloyd: no, it's no problem. jerry: i don't want it. kramer: jerry, jerry. lloyd says it's no problem. he's capable of locating the gum. jerry: alright. kramer: mmm, delicious. this is delicious. mmm. george: you know what? i think this ruthie cohen gave me the wrong change. didn't i pay with a twenty? i'm sure i paid with a twenty. elaine: hey. george: hey. jerry: i think i finally figured out what the flavor is in this gum. it's a little lo-mein-y. (he spits it into the waste bin) elaine: what kind is that? jerry: it's chinese gum, lloyd braun gave me. elaine: lloyd braun? how's he doing? george: (almost gleeful) after dinkins lost the election, he had a complete nervous breakdown. they had to lock him up. elaine: you know, that's around the same time i broke up with lloyd. y... you don't think that i had anything to do with his breakdown, do you? jerry: you know, i remember when we parted company, i was babbling incoherently for months. elaine: yeah? well, i got news for you. george: the whole time that i was growing up, all i ever heard from my mother was 'why can't you be more like that lloyd braun?' jerry: and in the end lloyd braun became more like you. george: right, gotta get going. jerry: aren't you coming with us to spartacus? george: nah, i gotta deliver some christmas presents to my parents. jerry: i thought your parents were outta town? george: why d'you think i'm going now? [street: queens] pop: georgie! george: hey, mr lazzari. pop: back in the old neighborhood, ah? george: yeah, yeah. just delivering some presents to my folks. pop: oh, snazzy car. le baron? george: yeah, eighty-three. used to belong to john voight. pop: the actor, right? george: something like that. pop: mind if i look under the hood? george: oh, no no no no. go ahead, pop, you always knew your cars. pop: oh, deena! deena, deena, l... look who's here. deena: george costanza, is that you? george: hey deena, come on, give us a hug. (they hug) oh my gosh, you look as pretty as you did back in high school. deena: boy, those were some crazy times. george: yeah, yeah. speaking of crazy, did you hear about lloyd braun? [alex theatre: lobby] kramer: the alex was built in nineteen twenty-two, during the golden era of movie palaces. minor restorations in nineteen forty-one, forty-seven, fifty-two, fifty-eight, sixty-three, and currently to our present period of time. elaine: boy, you're really getting into this aren't you? kramer: yes, yes i am. the icing on the cake would be getting that landmark status from the city. we're hoping lloyd braun can pull a few strings. jerry: oh, can lloyd really do that? kramer: lloyd braun can do anything he puts his mind to. he's fine, jerry. (to elaine) and you should say hello to him, elaine. elaine: (concerned) what? lloyd is here? elaine: what? no, no, i'd rather... lloyd: hi elaine. elaine: (big fake smile) lloyd, yes. hello. lloyd: kramer tell you? we reserved some special seats, so we can all sit together. elaine: (reluctant) oh, well... i, uh, actually lloyd, jerry and i have to sit in the front row, uhm, (desperately inventing) because uh, because, because he, he forgot his glasses. so uh, thanks for getting us... uhm, we'll see you afterwards. lloyd: that was odd. am i crazy, or does jerry not wear glasses? kramer: (emphatic) you're not crazy. jerry does wear glasses. he just forgot 'em, that's all. (puts an arm round lloyd's shoulder) not crazy. [alex theatre: auditorium] jerry: we're all the way in the front row. why couldn't we sit in the special seats? elaine: i'm sorry, but i didn't want lloyd thinking i was leading him on again. seeing him made me feel very uncomfortable. jerry: nah, you don't wanna be uncomfortable. [street: queens] deena: poor lloyd. george: i know. completely bonkers! deena: sorry i can't be so flip about this kind of thing. you know, after what happened to pop. george: pop? what happened to pop? deena: i thought you heard. he had a nervous breakdown last year. that's why i'm taking care of him. pop: oh, i tell you, they don't build 'em like this any more. george: (a little worried) he uh, he doesn't have the auto shop any more? deena: uhn, it was too much for him. george: (very worried) uhm, i, i gotta go. deena: what? george: i just remembered, i gotta be someplace. yuh-hu-hur, that's enough. pop. pop, put down the wrench, pop. [alex theatre: auditorium] george: pop! pop!! [alex theatre: lobby] lloyd: 's a great movie, huh? kramer: yeah. lloyd: sorry you forgot those glasses. jerry: i don't know what i was thinking. lloyd: how'd you like that gum? jerry: (noncommittal) errh. kramer: (slapping jerry on the back) ah, he loved it. elaine: hey kramer, you know what? there, there isn't a light there, in the ladies' room. kramer: yeah, yeah. it's being repaired. elaine: oh. oh god. lloyd: you alright? elaine: ah, i sat too close to the screen. oh. i just gotta stretch out in a hot bath. it was nice to see you again, lloyd. elaine: officer. officer, is there some reason this man has to always be using a hose? i mean, he's flooding the sidewalk. it's a waste of water. couldn't he just use a broom? cop: lady, you sold me. (strides toward florist) hey, you with the hose. kramer: yeah, put these glasses on. jerry: (taking them) well, what's this for? kramer: yeah, well lloyd, he's gonna be here any minute now. jerry: so what? kramer: well, he thinks you wear those. kramer: they're from the lost and found at the alex. jerry: aw, c'mon kramer, this is ridiculous. i'm not gonna put these on. kramer: oh. okay. so he'll just think that the two of you didn't sit with him on purpose. ooh yeah, that's very nice. very nice. george: 'scuse me. i uh, i was in here this morning and uh, i believe i paid you with a twenty dollar bill, (smiles) but you only gave me change for a ten. cashier: i don't think so. george: oh, i think so, and i can prove it. you see, i was doodling on the bill and uh, so if you have a twenty in there with big lips on it... well, (smiles) that's mine. would you mind opening up the register? cashier: not unless you buy something. george: fine, i'll buy a pack of gum. lloyd: hey george. thought you didn't chew gum? george: i don't. cashier: take a look. george: i know i gave it to you. lloyd: george, would you mind. i'm kind of in a hurry. george: (frustrated) fine. fine. (to customer) excuse me. (heading for the door) think i'm gonna forget about this? i haven't forgotten about this. i don't forget that easily! kramer: hey, jerry, look who's here. jerry: ah, lloyd. lloyd: hi jerry. got some more of that gum. jerry: (unenthusiastic) oh, the gum. kramer: yeah, let's all enjoy a chew, huh? jerry: (still not happy) uh, alright. (he takes a piece) kramer: oh, boy. kramer: now see, this is what the holidays are all about. three buddies, sitting around, chewing gum, huh? mmm, mmm, yeah. so uh, you know, lloyd, he thinks he can get more of this. jerry: well, lloyd's a very industrious fellow. i'm sure he can accomplish anything he sets his mind to. lloyd: actually, the importer's right in chinatown. i'll introduce you to him, you can get it whenever you want. jerry: 's not necessary. kramer: hey, jerry, you know, lloyd wants to do you a favour. jerry: i know that, kramer. lloyd: well, if you don't want to... kramer: no, sure sure, he wants to. it's very kind of you. yeah, jerry, he appreciates it. don't you, jerry? jerry: yes i do, kramer. lloyd: so... kramer: yeah? lloyd: how about that elaine today, huh? kramer: oh, baby, what was that all about, huh? lloyd: (to jerry) she was practically undressing in front of me at the theatre. jerry: i didn't see anything. kramer: yeah, you uh, really missed a show, buddy. wooh, ba-boom, ba-boom-ba-ba-ba-boom-ba. deena: you're probably wondering why i wanted to see you again. george: well, you know. (grins, snorts) it's understandable. deena: i'm glad you feel that way. because since my father's breakdown i uh, become very sensitive to the warning signs. george: warning signs? deena: nervousness, irritability, paranoia. george: (disbelief) what? (laugh) wh... what're you talking about? i'm not the one with the problem. (defensive) lloyd braun was in the nuthouse, not me. deena: yet again, taking pleasure in the misfortunes of others. george: all my friends do that. deena: george, i'm only trying to help... deena: i'm... i'm concerned. george? george, are you listening to me? george: you see that woman on the horse? (points) george: she stole twenty dollars from me. (getting angry) yeah, i might've gotten it back, but lloyd braun interfered! deena: so again it all comes back to lloyd. george: (rising to his feet) hey! hey, you! (setting off after her) come back here!! don't gallop away!! jerry: so you say she was on a horse? george: i'm telling you, that cashier is riding horses on my money. jerry: well, here's what i propose. go down to the stables, snoop around. see if any high-flying cashier's been throwing twenty dollar bills around with big lips. elaine: hey. jerry: well, if it isn't chesty la rue. elaine: (sits beside jerry) what? jerry: i was chewing gum with lloyd braun, and he was bragging about the peepshow you gave him at the alex. elaine: (laughing it away) oh god. i lost a button, so my blouse was wide open. i musta left it at the theatre. jerry: maybe it's in the lost and found. elaine: yeah, i know. i have to go check it out. it's a beautiful button too, you know. it's antique ivory. it was my mother's. jerry: you know, the way you were wolfing down that popcorn, maybe you ate it. [alex theatre: lobby] kramer: mr har-harwood. well, what an unexpected surprise to have you back at the alex theatre. haarwood: well i, i'm in a bit of a quandary. i've misplaced my spectacles. kramer: well, let's look in lost and found, shall we? haarwood: they're half-glasses. kramer: brown? haarwood: mmm, yes, yes. kramer: uh, yeah. ah, well if they're not in the box, i'm sure they'll turn up soon. listen, could you keep an eye on the place? i wanna go out and get some paraffin wax, and bring out the lustre of this vintage countertop. haarwood: certainly. haarwood: oh my goodness. what a spanking button. [george's car: street outside alex] george: (glances in mirror) alright. alright. george: (getting annoyed) hang on, it's warming up! george: (angrily) oh you mother... george: hey! what is your problem? george: oh, hello, it's you! (angry) listen lady, i got six minutes left on that meter, and i'm not budging til you admit you stole my twenty dollars. (smug) huh-hu-hur, you're not so tough when you're not on your horse, are you ruthie? cashier: your car's on fire. george: aah! fire! cashier: (after george) merry christmas! george: (shouting) fire!! george: your hose! where's your hose?! florist: cop made me disconnect it. kramer: jeez! what happened to your car, buddy? george: the jon voight car is no more. kramer: wow. well, don't you sweat it. you can use my car any time you want to. george: no kidding? kramer: no kidding. george: hey, thanks. i owe you a big one. kramer: yeah, merry christmas. george: (staring at the wreck) whatever. [alex theatre: lobby] jerry: alright, i'm here. where's braun? kramer: what, he's not here yet? jerry: look, i'll go downtown to chinatown with him, but that is it! kramer: listen, i'm gonna need those glasses. jerry: why? kramer: they're geoffrey haarwood's. kramer: (proffering) here, try this pair. jerry: aw, these are really strong glasses. lloyd: hey gum-buddy. nice frames. you ready to go? jerry: (lacking enthusiasm) yeah, yeah. kramer: (clapping jerry on the back) oh yeah, he's all ready to go. lloyd: anybody see elaine today? kramer: oh yeah, she called a little earlier. she's coming over to check out lost and found. lloyd: maybe i'll stick around and see what she's wearing today. or not wearing, if you know what i mean. jerry: absolutely. let's just stick around. lloyd: ah, tell you what, they're expecting us though. lemme just grab a hotdog here. kramer: uh, yeah. lloyd: i'd like a hotdog, please. attendant: are you outta your mind? kramer: wh...wh...wh... what's the problem here? attendant: this hotdog's been here since the silent era. you'd have to be insane to eat it. kramer: no, no, no, no, no. this man is not insane. now there's nothing wrong with it or you. lloyd: kramer, maybe... kramer: no, no, no, no. i'll show you. (slams a bill down on the counter) one hotdog please. attendant: (on your head be it) okay. kramer: mmm, doesn't that smell good, huh? kramer: yeah, here we go, yeah. (he takes a big bite) mmm, oh. that's delicious. mmm. it's a perfectly sane food to eat. (he takes another bite) kramer: uhm, interesting texture. it's chewy. (he half-coughs, half-retches) i gotta get, some air. [street outside alex: later] elaine: excuse me. 'scuse me, weren't you told to stop using that hose? florist: how would you happen to know that? elaine: well, uhm... i... florist: (accusing) you're that lady that was talking to the cops, aren't you? elaine: uh... i... voice (o.c.): hey, joe! elaine: no, wait! you're soaking me, you're soaking me! [alex theatre: lobby] elaine: hey. hey everybody. lloyd: whoah, elaine! once again, you've managed to top yourself. c'mon jerry, let's go. car's out front. jerry: lloyd? jerry: lloyd? elaine: (exasperated) what is lloyd's problem? kramer: look, honey, i know you're trying to get lloyd to notice you, but this is too much. parading around in a wet t-shirt. elaine: uhh, i got sprayed with a hose. kramer: yeah, well, i'm sorry, but the alex is a family theatre, not one of your swing joints. deena: so, you want my father to pay for this? george: you saw him. he was fiddling with the engine. god knows what he did there. deena: and i suppose lloyd braun had something to do with it too. george: no, not lloyd braun. but the cashier. deena: what cashier? george: you remember the woman on the horse? she wanted my spot. deena: to park her horse? george: no, she wasn't on the horse. deena: so, your car caught fire because of my father and the woman on the horse? george: that's right. george: (points) and him! deena: the man with the flowers? george: yeah, yeah, the flower guy. listen, i know this all sounds a little crazy, but... george: i can't believe it. look, that's jerry seinfeld. deena: who? george: jerry seinfeld. my best friend. he can explain all of this. (calls to jerry) jerry. george: jerry! over here jerry. it's me! george: jerry, where y'going? it's... what're... deena: (doubtful) that was your best friend? george: yeah, yeah, but he doesn't wear glasses. deena: that man was wearing glasses. george: i know. don't you see. (emphatic) he was doing it to fool lloyd braun! lloyd: i'll run in and get the gum. jerry: alright. lloyd: got any money? jerry: (handing it over) here. lloyd: (climbing out of the car) i'll be back. george: look, deena, i know you think i'm crazy, but i'm not. this is just a series of bad coincidences. deena: i don't know, george. i don't know what to believe. george: believe me, i am not crazy. deena: well, i guess it's possible. lloyd: here y'go. jerry: (indistinct) got all this? lloyd: yeah. a hundred dollar's worth. jerry: (incredulous) i gave you a hundred dollars?! lloyd: you sure did. am i crazy, or is that a lotta gum? jerry: it's a lotta gum! kramer: mr hararwood. found your glasses. haarwood: oh, splendid. welcome to the institute for the preservation of motion picture costumes and wardrobe. kramer: ah, the i.p.m.p.c.w. haarwood: well eh, we prefer to call it the institute. kramer: is that from henry the eighth? haarwood: yes, yes, it is. kramer: well, you know, we're screening that tonight at the alex. do you think that i could wear that to promote the theatre? haarwood: well, i... i'd love to lend it to you, but i doubt if it would fit a man of your impressive, raymond massey-like, physique. the only person who could really fit into this costume, would have to be a short, stocky, man of somewhat generous proportions. kramer: (an idea occurs) you don't say. kramer: you're really helping me out with this, buddy. kids are gonna be so thrilled. george: yeah, yeah. you really cashed in on that favor pretty quick. kramer: remember, you're a king, you must project a royal bearing. george: (angry undertone) oh, i'm gonna give you a royal bearing. wait a minute, wait a minute. lemme get a pack of gum here. george: (handing over a bill) can i get a pack of gum, please? guy: i beg your pardon, your majesty, but we don't accept bills with lipstick on the president. george: what? huh, so i had it all along. how d'you like that? (snorts) i guess i owe that cashier an apology. deena: oh my god! george: no, no. deena, it's not what you think. george: th... this isn't mine. george: i got it from the institute. the institute. george: (shouting) dee... deena! [alex theatre: lobby] kramer: ahh, mr haarwood. well, you certainly know how to dress for a premiere. haarwood: well, thank you. uh, where is your friend king henry? kramer: oh, he ran away. lloyd: hey kramer. kramer: i need to talk to you. elaine: you know, that button looks very familiar. haarwood: yes, it, it, it's antique ivory. elaine: i, i think that's my button. (wanders over to haarwood) you know, i've been looking all over for it. did, did you find it here? haarwood: yes, it was in the lost and found. elaine: shall i undo it? haarwood: oh yes, of course you can. elaine: oh, thank you. haarwood: i'm a little ticklish. elaine: oh. (giggly) tickle, tickle. lloyd: we've really gotta get that elaine a boyfriend. kramer: oh, tell me about it. elaine: (thinking) i can't believe i'm going out with this guy. wow! he's so cool. maybe he'll write a song about me. that would be amazing. oh, elaine, you are so beautiful. so, so beautiful. not so mention your personality which is so, so, interesting. if you want, you can quit your job and never work again. elaine: jerry, you have got to come see him. he is so terrific. jerry: maybe he'll write a song about you. elaine: yeah. right. (laughing) like that really matters. jerry: so i take it he's spongeworthy? elaine: oh, yeah. jerry: well, he's a musician. i guess they're supposed to be very, you know, uninhibited and free. elaine: well, actually, he's - he's not that way at all. jerry: oh, no? elaine: yeah. in fact, he....(moaning) jerry: come on. come on. elaine: i don't wanna! jerry: elaine, you're among friends. elaine: (sighs) well, actually, he, um, doesn't really like to do... everything. jerry: oh. elaine: yeah. it's surprising. jerry: yes, it is. it is surprising. does that bother you? elaine: no. no, it doesn't bother me. i mean, it would be nice. i'm not gonna lie to you and say it wouldn't be nice. jerry: sure. why not? you're there. elaine: exactly. jerry: but you said he was just coming out of a very serious relationship. maybe he's, you know, still....kind of...he...not gonna happen. kramer: hey, jerry! listen, i need you to come downstairs, help me get my stuff outta the car. jerry: what stuff? kramer: i just came from the price club. i'm loaded up, baby. jerry: all right. what are you, outta your mind? look at this. what did you buy here? you will never be able to finish all this stuff. kramer: course i will. these are staples. jerry: a four-pound can of black olives? that's a staple? kramer: lindsay olives, jerry. jerry: a forty-eight pack of eggo waffles? a gallon of barbecue sauce? ten pounds of cocktail meatballs? kramer: $17.50. you can't beat that. jerry: look...look at this can of tuna! kramer: yeah. star kist, jerry. most tuna don't make their cut. jerry: this isn't for a person. this is for biosphere 3. kramer: hey, clyde! clyde: hey, kramer! what's happening, dude? kramer: yeah. ahh. hey, this is jerry here. clyde: how ya doin'? jerry: hi. kramer: you know, clyde, he plays backup with john germaine. jerry: john germaine? that is amazing. i was just talking about him upstairs with elaine. clyde: oh yeah? jerry: oh, yeah. my friend elaine and him are goin' out. they're pretty hot and heavy. clyde: is that right? kramer: hey, how 'bout giving me a hand? you know, bring some of this stuff upstairs. clyde: oh, sorry kramer, i got to watch the hands. my hands are my life. estelle: georgie, can you zip me up? george: yeah. yeah, one second. estelle: well, come on! george: all right. all right. let's not get into panic mode! let's not make a big deal outta this thing or we're never gonna get through this night. estelle: well, i'm meeting your in-laws, i think i should look nice. george: my in-laws. oh, my.... frank: so, what do you think? your old man can look pretty good when he wants to, huh? estelle: i don't like that tie. frank: what's the matter with this tie? i've hardly worn it. estelle: it's too thin. they're wearing wide now. frank: how do you know what kind of ties they wear? estelle: go to any office building on 7th avenue and tell me if there's anyone there wearing a thin tie like that. go ahead! frank: oh, get the hell outta here. 7th avenue. estelle: george, do you think he should wear a tie like that? frank: huh? george: i think he should wear whatever tie he wants. frank: we gotta stop off and pick up a marble rye from schnitzer's. estelle: it's out of our way. why can't we pick up something at lord's? it's right over here. frank: no! we have to go to schnitzer's! i'll show these people something about taste! george: this is gonna be fun. jerry: hey, you'll never guess who i bumped into. this guy clyde. he's in your friend john germaine's band there. elaine: so what did he have to say? jerry: nothing. i told him you two were pretty hot and heavy. elaine: hot and heavy? you said hot and heavy? jerry: yeah. elaine: what did you do that for? jerry: what? elaine: what if he tells john? then john's gonna think that i think that we're hot and heavy. i don't want john thinking that i'm hot and heavy if he's not hot and heavy. jerry: oh elaine: i'm trying to get a little squirrel to come over to me here. i don't wanna make any big, sudden movements. i'll frighten him away. jerry: well, clyde might not tell him. elaine: how do you know that? jerry: i should have helped kramer with those packages. elaine: ohh! dennis: let me give you a hand. hey, kramer. i wonder, could you do me a favor? i'm taking the family to disneyworld next week. i wonder... kramer: uh-huh. dennis: i wonder, could you pick up my mail? kramer: yeah. sure. sure. dennis: in fact, you know what, how would you like to take my hansom cab for the week? kramer: drive the horse? dennis: it'll just be sitting there. you can really clean up. 500 bucks a day. i'll split it with ya. kramer: oh, giddyup. yeah. george: this is delicious, mrs. ross. mrs. ross: oh. mr. ross: what are you complimenting her for? she didn't make it rowenna did. frank: what is this thing anyway? mrs. ross: it's cornish gamehen. frank: what is that, like a little chicken? george: it's, uh, it's not a little chicken. (laughing) little chicken. it's a gamebird. frank: gamebird? george: yeah. frank: what do you mean? like, you - you hunt it? mr. ross: yes. frank: how hard could it be to kill this thing? estelle: i couldn't help but notice that you have quite a library in there. mrs. ross: if i had a dime for every book he's actually read, (laughing) i'd be broke. susan: more wine anyone? frank: yeah. i'll take some. susan: hmmm? frank: thank you. susan: how do you like the merlot? estelle: merlot? i never heard of it. did they just invent it? mrs. ross: oh, mother. george: she's, uh, she's heard of merlot. frank: let me understand, you got the hen, the chicken and the rooster. the rooster goes with the chicken. so, who's having sex with the hen? george: why don't we talk about it another time. frank: but you see my point here? you only hear of a hen, a rooster and a chicken. something's missing! mrs. ross: something's missing all right. mr. ross: they're all chickens. the rooster has sex with all of them. frank: that's perverse. george: did anybody see firestorm? mr. ross: firestorm, that's a hell of a picture. george: yeah. mr. ross: remember when they had the helicopter land on top of that car -- frank: hey! hey! come on! come on! i haven't seen it yet. mr. ross: it doesn't have anything to do with the plot! frank: still! still! i like to go in fresh! george: oh mother of god. kramer: of course, uh, this is central park. uh, this was designed in 1850 by joe peppitone. um, built during the civil war so the northern armies could practice fighting on...on grass. oh, yeah. giddyup. on rusty! john: thank you. now, i'd like to play something th -- well, actually, it's my latest so it's nice and fresh. it's called " hot and heavy." george: thank god that's over. estelle: the mother seems to hit the sauce pretty hard. i didn't like that. frank: and who doesn't serve cake after a meal? what kind of people? would it kill them to put out a pound cake? something! george: so, they didn't give you a piece of cake? big deal. estelle: it is a big deal. you're supposed to serve cake after a meal. i'm sorry. it's impolite. frank: not impolite...it's stupid, that's what it is. you gotta be stupid to do something like that! estelle: your father's absolutely right. we're sitting there like idiots drinking coffee without a piece of cake! george: what is this? the marble rye? mrs. ross: oh, dear. i forgot to put out that - that bread they brought. estelle: we forgot to bring it in. frank: no, i brought it in. they never put it out. mrs. ross: where is it? susan: i don't know. where'd you put it? mrs. ross: right over there. susan: well, it's gone. george: you stole the bread? frank: what do you mean stole? it's my bread. they didn't eat it. why should i leave it there? george: because we brought it for them! frank: apparently, it wasn't good enough for them to serve. mrs. ross: is it possible they took it back? susan: who would bring a bread and take it back? mr. ross: those people, that's who. i think they're sick. estelle: people take buses to get that rye. george: maybe they forgot to put it out! frank: aw, they didn't forget to put it out! it's deliberate! deliberate, i tell ya! jerry: he stole back the rye? george: yeah. jerry: why? george: why? why? 'cause he's off his rocker! that's why. jerry: so, do the ross's know? george: i don't know. they're all very suspicious. jerry: why wouldn't they be? a rye bread doesn't just disappear. george: now, because of that stupid rye bread, i gotta keep them all separated for the rest of my life. jerry: bad situation. george: i'll tell you what i'd like to do. i'd like to replace that rye. jerry: what do you mean replace it? george: you know, you go out, you get another rye. of course, it would have to be the same one from schnitzer's. you put it in the kitchen somewhere and you say ohh! there it is. jerry: well, there ya go. what's so hard about that? george: what's so hard about that? how am i supposed to get it in there? i can't just walk in with it. i have to get the rosses out of the apartment! jerry: all right. all right. don't panic. let's just think about it. get the ross's out of the apartment. that can't be so hard. wait a minute. wait a second. wait a second! you know, kramer's been driving that hansom cab. george: so? jerry: well, kramer'll take them around for a while. george: and it's their anniversary friday night. i could send them for a hansom cab ride. y -- you think they'd like that? jerry: are you kidding? people love it. there's something about the clip clop, clip clop. they're nuts for it. george: so, they go off for the ride, by the time they come back the bread is there. jerry: what about susan? george: she's working late that night. we're - were supposed to have dinner with everybody at eight o'clock so i'll set up the ride for seven o'clock. jerry: beautiful! george: you think kramer'll do it? kramer: of course i'll do it. i'd be happy to. so, all i gotta do is be there at seven? george: yeah. just take 'em out and ride 'em around for about..half an hour. kramer: hey. jerry: what the hell are you doing there? kramer: it's beef-a-reeno..and i got fifty cans. you want some? jerry: no. no thanks. kramer: jerry, i think i bought too much at that price club. i don't have any room for it all. george: hold on. hold on. wait a minute. how am i gonna get the rye bread into the apartment? jerry: just put it under your shirt. george: have you ever seen a schnitzer's rye? it - it's huge! jerry: i'll tell ya what, i'll bring it over. i'll stop by schnitzer's, i'll come by five after seven right after they leave. george: oh, this is all locking in now. it is all locking in! (laughing) elaine: hey. is that your horse outside? kramer: yeah. that's rusty. george: what? he's outside? kramer: uh-huh. george: aw, come on. i wanna go see him. kramer: you wanna go see him? george: yeah. hey! hey! kramer: i'll show ya rusty. george: hey, lainey, wanna see the horsey? elaine: well, you really did me in this time, didn't ya? first guy i like in a really long time. i mean, we're getting along, everything is just great. i mean, all right, so he doesn't do... everything, and then you have to come along with your hot and your heavy. jerry: so, you think clyde told him? elaine: he wrote a song about it! jerry: well, maybe it's a good thing. elaine: no! it's not a good thing! it's a bad thing! do you know what this is like? to have no control over a relationship? and - and you feel sick to your stomach all the time? do you know what that's like? jerry: no, but i've read articles and i must say it, doesn't sound very pleasant. elaine: you know, one of these days, something terrible is gonna happen to you. it has to! jerry: no. i'm gonna be just fine, but as far as your situation, you're seeing him tonight so talk to him about it. elaine: i can't! he's got a big showcase for record producers at his late show tonight. i don't wanna upset him. aw, what the hell, i'll upset him. mr. ross: yeah george, i gotta tell ya, this is a very nice gesture. we really appreciate it. george: aw, well, you know, it's your anniversary. it's - it's the least i can do. i - i just want you guys to go out and have a good time. ha ha. so, you think we should, uh, we should get downstairs? mr. ross: oh, we got about twenty minutes. you, uh, seem a little nervous george. anything wrong? george: oh, no. no. no. no. no. nothing. i'm fine. everything's fine. fine. just get a little nervous on the weekends, that's all. could i, uh, could i get a glass of water? mrs. ross: we've got water. i don't think we have any bread, but we've got water. kramer: yeah. there ya go. that's beef-a-reeno. (singing) i'm so keen-o on beef-a-reeno what a delicious cuisine-o fit for a king and queen-o! yeah. eat up. i got thirty four more cans. mr. ross: nice night for a hansom cab ride, 'ay george? mrs. ross: you know, george we haven't done anything romantic like this in ....years. george: (thinking) oh my god, it's 701. what have i done? my whole plan is depending on kramer? have i learned nothing? how could i make such a stupid mistake? he'll never show up! kramer: ah ha! george: there he is. right on time as usual. counter woman: 53. mabel: 53. i'd like a marble rye, no plastic, in a bag. counter woman: ah! you're lucky. it's our last one. jerry: wait a second, that's your last marble rye? counter woman: that's right. jerry: there's none left? counter woman: that's what i said. number 54. jerry: uh, excuse me. i know this is gonna sound crazy but i - i have to have that rye. it's a - it's a long story, but a person's whole future may depend on it. mabel: well, i'm sorry, but you should have got here earlier. jerry: yes. well, be that as it may, if you could just find it in yourself to give it up. mabel: you're not getting this rye -- jerry: all right. all right. i'll tell ya what i'm gonna do, i will give you double what you paid for it. mabel: you're in my way! kramer: ahh! mr. ross. mrs. ross. my name is cosmo and i'll be your driver for this evening. we have blankets for your comfort. i also have hot chocolate if the mood should strike you. mrs. ross: my favorite. kramer: well, if we're all set to go, why don't you two hop aboard and let me show you a little taste of old new york...the way it once was. oh, happy anniversary. on, rusty! jerry: all right. look, i'll tell ya what, i'll give you $50. now, be reasonable you cannot turn down $50 for a $6 rye. mabel: no? watch me. jerry: give me that rye! mabel: stop it! jerry: i want that rye, lady! mabel: help! someone help! jerry: shut up, you old bag! mabel: stop thief! stop him! he's got my marble rye! elaine: i'm sorry to just show up unexpectedly like this. i know you've got your big showcase coming up later and i know how important it is, i know how hard you work for this night, but i just had to tell you that i never told jerry hot and heavy. i didn't think we were hot and heavy. i mean - i mean, who's hot and who's heavy? john: whoa. hold on, elaine i.....i'm kinda disappointed. elaine: disappointed? john: yeah. i mean, i was excited when clyde told me that. elaine: you were? john: absolutely. elaine: ohh! whew! i am so relieved! john: listen, uh, i've still got a couple of hours to kill before the next show. my place is only a few blocks from here. elaine: really? john: and you know what? elaine: what? john: i've been thinking about what we do and i'm thinking..of...adding a new number to my, you know, repertoire. elaine: ohh! kramer: y'aah! mrs. ross: (sniffing) what is that? mr. ross: i think it's the horse. mrs. ross: oh, god. kramer: hey, how's everything? you..you need anything? mrs. ross: this is - this is...horrible. mr. ross: excuse me,...what do you feed this animal? kramer: oh, you know, oats and hay. you know, they like that stuff. mrs. ross: i can't take this. let me out of this thing! mr. ross: turn this thing around. we've had it. we can't breathe back here! and hurry it up! kramer: rusty! rusty! george: (whistling) kramer: whoa! george: wha - what happened? what are you doing back so soon? mr. ross: ask rusty. kramer: i'm terribly sorry, mr. ross. one never knows how the gastrointestinal workings of the equine are going to function. mrs. ross: thanks for nothing! come on, george. let's go upstairs. george: what the hell happened? kramer: the horse is gassy. must have been the beef-a-reeno. george: beef-a-reeno? you fed the horse beef-a-reeno?! kramer: well, i overbought! mr. ross: george. george: (muttering) music guy: what's going on? where is he? manager: uh...he'll be here soon. music guy: i'll give him ten more minutes. i'm not gonna stay here all night. jerry: how much did you give him? kramer: just a can. but he really liked it, though. george: jerry! up here! jerry: yeah. hey, what do you want me to do with this? george: i can't come out. they're standing right by the door. throw it up! jerry: really? george: yeah. yeah. it's the only way. come on. what are you, kidding me? jerry: will you get this horse outta here. he's killing me. i can't get any oxygen. kramer: i don't wanna go back on there! george: come on! jerry: (grunting as he throws bread into the air) george: (grunting) hey! hey, wait a second. i got an idea. elaine: no. no. don't be silly, john, you were very good. you just don't have to try so hard. good luck, honey. george: come on! come on! jerry: wait a second! i never baited a hook with a rye before. your hook is too small. this is for, like, a muffin. all right. take it away. george: come on. come on. come on. yeah. yeah. (grunting) manager: ladies and gentlemen, john germaine. jerry: how did you lock your keys in the car? george: how? cause im an idiot. jerry: so why don't you get a locksmith? george: i was going to, but then i found out that the auto club has this free locksmith service, so i signed up. just waiting for the membership to kick in. jerry: how long has your car been sitting in the yankee parking lot? george: i don't know, about three days. kramer: hello boys. jerry: y- you're not playin' golf? kramer: yes, indeed. the calendar says winter, but he gods of spring are out. george: are the courses open? kramer: no, no........i'm sneaking in with stan the caddy, we've been going through the caddies entrance. george: huh, no kidding? kramer: yeah, and i'll tell ya something else. stan's advice has transformed my game. he's never wrong. oh, he thinks eventually i'll have a shot at making it big on the senior tour. (sucks in air through tight lips) oh, that's my dream, jerry. jerry: really, you're getting that good? kramer: oh, i'm the real deal. kramer: yeah, here, stan, in here! kramer: there he is, yeah - jerry, george, *this* is stan the caddy. george: how ya doin'? jerry: hi. stan: nice to meet you. ready to hit the links, kramer? kramer: oh yeah, you betcha. stan: what are those, ah, cotton pants? kramer: yeah, yeah...why, is it too cold out? stan: here's what you do you bring a lightweight jacket, that way the sun comes out, you play the jacket off the sweater. kramer: ah, that makes sense, that's a good call, stan. alright, we'll see you guys later, huh? george: yeah. jerry: yeah, we'll see ya. george & jerry: (together -- with arms extended -- palms upwards) stan the caddy. sue ellen: elaine? sue ellen: hi! elaine (thinking to herself): oh, great. it's the bra-less wonder. who does she think she's kidding? look at her, she's totally out of control. sue ellen: i was thinking that woman looks like elaine benes. elaine: yeah, ha ha ha. what have you been up to? sue ellen: i've just been hanging out. elaine (nodding): i see. sue ellen: hmm. oh, listen! i'm having a birthday party tomorrow evening, i'd love it if you came by. elaine: oh tomorrow...? sue ellen: um-hm. elaine: i don't know if i can. sue ellen: nooo? elaine: yeah, i'm just really, really busy. sue ellen: oh, that's too bad. elaine: yeah, yeah. sue ellen: well, i hope you can get me a gift anyway.........ha ha ha. elaine: ah ha ha ha ha ha ha ha ha ha. wilhelm: george!? george: (he drops a paper airplane he was holding) mr. wilhelm! wilhelm: i'm sorry to interrupt you, but mr. steinbrenner and i really want you to know we appreciate all the hours you've been putting in oh, and, ah, confidentially, sozonkel, our assistant to the general manger, hasn't really been working out. and the boss thinks you're the man for the job! so, keep it under your hat! george: assistant to the general manager!! do you know what means?!? he'd could be askin' my advice on trades! trades, jerry, i'm a heartbeat away! jerry: that's a hell of an organization they're running up there. i can't understand why they haven't won a pennant in 15 years. george: and, it is all because of that car george: see, steinbrenner is like the first guy in, at the crack of dawn. he sees my car, he figures i'm the first guy in george: then, the last person to leave is wilhelm. he sees my car, he figures i'm burning the midnight oil. between the two of them, they think i'm working an 18 hour day! (he stands there with his hands on his hips, a wide grin - laughing.) jerry: locking your keys in your car is the best career move you ever made. elaine: hey. jerry: hey. george: hey, how ya doing?!? elaine: better, now. jerry: yeah, what happened? elaine: you know sue ellen mishke? jerry: sue ellen mishke? elaine: yeah, the woman i grew up with in maryland, she moved here last year... jerry: sounds familiar. elaine: the heiress to the o'henry candy bar fortune-- jerry: oh, yeah, you mentioned her. elaine: yes. yes i ran into her today. this woman has never, not once, ever, as long as i have known her, worn a bra. george: ah, that is disgusting-- jerry: that is just shameless, i don't know, there's no-- george: shes a pig. the woman's a pig, what wrong with her-- jerry: it's wrong, it's rude, and it's incorrect. george: it's disgusting-- elaine (getting up to leave): alright, there's no--- george: come on! come-on. jerry: we're only kidding! elaine: you don't understand. see, she hasn't changed at all. she stole my boyfriend when i was in high school. (flashback sequence)i was at this party, and i was dating this *really* cute guy, his name was tom cosley, by the way, and she goes walking by, in this little floozy outfit, and he follows her, right out the door! jerry (excited): she's your lex luthor! elaine: her birthday's comin' up, see, so i decided to get her a little present. jerry: what are you going to get her? elaine: a very traditional, a very supportive, brazier. jerry: there's nothing subtle about that. george: no, no, she might just think its a gift. jerry: have i ever bought you a jock strap as a gift? george: ahh, hey-ho. ahhhhh (exhales) jerry: what the hell are you doing here, aren't you supposed to be at work?!? george: yeah, well i'm thinking about getting out of town with susan for a few days....her parents rebuilt the cabin! jerry: so, you're just taking off from work? george: yeah well, they won't know. i got the car there. jerry: do you think this is such a good idea, with you being on the verge of this big promotion? george: my presence, in that office, can only hurt my chances. receptionist: (on intercom) sue ellen mishke to see you. elaine: sue ellen mishke? ah, alright, send her in. sue ellen: hi elaine. elaine: hellllloo. sue ellen: i happened to be in the neighborhood, so i thought i'd stop in, and thank you for your lovely gift. elaine: ohhhhh. you're....welcome. sue ellen: is anything wrong? elaine: well, sue ellen, it's a, it's not a top, it's a bra. sue ellen: oh, i know. thanks again. george: this is the life! isn't it, huh, kid? susan: wanna check out a swap meet? george: yeah, maybe. (snifs)where'd you get that? susan: oh, it was on the windshield of the car when we came out of that rest stop. jerry : yello. george: (on a pay phone) hey, hey, it's george, i need ya to do me a favor. jerry: what's goin' on? george: i just remembered, th-th-there's this chinese restaurant out near yankee stadium, that puts flyers on all the cars. jerry: yeah, so? george: alright, this is what ya gotta do i need ya to go out to the parking lot at yankee stadium, take the flyers off my car. jerry: you know last time you had me throwin' a rye bread up three floors to you, now you want me to go up to the bronx, take flyers off your car, where does it end?!? george: alright, fine.i'll drive the 3 hours each way, 6 hours all together, and take 'em off myself!! jerry: alright, alright, i'll do it!! kramer: oowe (kramer noise -- hes eating something) jerry: hey, what are ya up to? kramer: nothin'. jerry: you wanna go with me up to (clap) the bronx and see if there's any flyers on george's car. kramer (excited): sure! jerry: i guess i coulda said just about anything there, couldn't i? (throws coat over his right shoulder) kramer: yep. jerry: oh, man, look at this mess! you know what's gonna happen if they see this? kramer: wheehh jerry: what are we gonna do? kramer: i don't know. jerry: well, we gotta get it washed (pulls off a few flyers)....ah, the keys are locked inside! kramer: wait a second.... jerry: what are ya gonna do? kramer: i'll just snag the lock with this. auhh here we go... jerry: yeah, this quite a life i lead here, huh? [leaving the gentle touch car wash: jerry and kramer driving george's car. kramer is behind the wheel.] kramer: well, george has gotta be happy about this. jerry (indifferent): yeah, yeah, yeah... jerry: oh my god, kramer, is that woman just wearing a bra? kramer: oh, mama. jerry: kramer!!! (jerry points to the lamp post they are about to crash into) elaine: my god, are you okay? kramer: well i got a cut on my head and i banged my shoulder. (he has a large band-aid on his forehead) jerry: i guess i have to bring his car back up to the stadium, if it can make it. elaine: so how did this happen? jerry: he was starin' at some woman! kramer: well i couldn't help it, you saw what she was wearing. elaine: what woman? jerry: there was this beautiful woman walking down the street wearing *just* a bra. i can't get that image out of my mind. elaine: oh...my god. jerry: what? elaine: was it a tall woman, in a black blazer? jerry: yeah! elaine: ohhh! that's sue ellen mishke! jerry: sue ellen mishke? elaine: that's the bra i gave here, she's wearing it as a top! the woman is walking around in broad daylight with nothing but a bra on, she's a menace to society. kramer: hey you know, my arm really hurts. i wonder if its gonna affect my golf swing. kramer: oohh. stan (out of breath): i got your message, how's the shoulder? kramer: yeah, it's my left arm, i can't swing it! stan: oh, no.not the left arm! kramer: well what happens if i can't play like i was? what about the tour, and all my dreams? elaine: oh! i got it! let's sue her! kramer: sue her? elaine: yeah, she's loaded. she's the heiress to the o'henry candy bar fortune. kramer: ah, no, no, no, i can't. i learned my lesson from that coffee company. elaine: kramer, listen to me. listen! this is a once in a lifetime opportunity. your dreams have been shattered, somebody's got to be held accountable. come on, we'll take for every penny she's got! kramer: what do you think, stan? stan: let's go for the green! you know a good lawyer? jackie: so you're driving in the car, you're with your friend, minding your own business? kramer: yeah. jackie: then what happened? kramer: well then we saw this woman, and she was wearing a bra with no top. jackie: no top? she didn't have a top on? kramer: yeah.so i got distracted and i crashed the car. jackie: well how would you describe this woman? would you say she was an attractive woman? kramer: oh, yeah. jackie: so we got an attractive woman, wearing a bra, no top, walkin' around in broad daylight. she's flouting society's conventions! kramer: she was flouting. jackie: that's totally inappropriate. it's lewd, lascivious, salacious, outrageous! kramer: it was outrageous. and she's the heir to the o'henry candy bar fortune. jackie: could you repeat that? kramer: i said she's the heir to the o'henry candy bar fortune. jackie: o'henry? that's one of our top-selling candy bars. it's got chocolate, peanuts, nougat, it's delicious, scrumptious, outstanding! have you been to a doctor? kramer: no. jackie (speaking to the intercom): susie, call dr. bison, set up an appointment for mr. kramer, tell him it's for me. kramer: so whadda ya think, jackie? i mean we got a case? jackie: like taking candy from a baby. george: i think i got it. how 'bout this? how 'bout this? we trade jim leyritz and bernie williams, for barry bonds, huh? whadda ya think? that way i have griffey and bonds, in the same outfield! now you got a team! ha ha ha. susan: i don't know, george. i'm still worried about this car thing. george: oh, would ya stop worrying? susan: well, what about the flyers? george: jerry took the flyers off the car, i got the whole thing covered. steinbrenner: come in! steinbrenner: ah, wilhelm. wilhelm: mr. steinbrenner, i am very concerned about george costanza. steinbrenner: how 'bout a 'good morning'? wilhelm: oh yes sir, good morning, good morning, sir. steinbrenner: good morning to you, wilhelm. wilhelm: uh-a anyway, his car's in the parking lot, the front end is bashed in, and there's blood in the car, and we can't find him anywhere. obviously he was in some sort of a terrible car accident, and trooper that he is, he tried to make it into work, sir. steinbrenner: alright, wilhelm, listen to me. i want the stadium scoured. he could be bleeding to death in the bullpen. wilhelm: yes sir. (he starts backing up to the door.) steinbrenner: put everyone on alert, check all the area hospitals, clinics, shelters, we've gotta find that kid. wilhelm: yes sir, yes sir. (opening the door) steinbrenner: we must find george. wilhelm: yes sir. steinbrenner: find him, wilhelm! wilhelm: (from behind the closed door in the hallway)yes sir. sue ellen: excuse me, do you happen to know the gentleman across the hall? jerry (mesmerized): yes, yes, i do. sue ellen: do you happen to know if he'll be back anytime soon? jerry: no, i don't. sue ellen: oh... jerry: is there, something i can help you with? sue ellen: no, i really just needed to speak with him. (exhales) jerry: well, you can wait for him in here if you like. sue ellen: oh, well maybe i will. sue ellen: if you don't mind. jerry: no, no, not at all. sue ellen: thanks. jerry: i'm jerry seinfeld. steinbrenner: what is with these people, all day long. come in, come in. wilhelm: ah, mr. steinbrenner, you know, w-we've searched everywhere, th-there's no sign of him. n-n-not even anyone who remotely fits his description, sir. steinbrenner: oh my god. do you know what this means, wilhelm? wilhelm: what, sir? steinbrenner: he's dead! ca-costanza's dead! wilhelm: no no no sir. well, you see, i don't think-- steinbrenner: oh, as quickly as he came here, he's gone. the poor little guy! easy. easy, big stein, get it together. ok, wilhelm. wilhelm: yessir? steinbrenner: find out where his parents live. wilhelm: parents. steinbrenner: i'm gonna personally notify them. ...and, ah, line up some candidates to fill that assistant to the general manager position wilhelm: yessir. (he starts backing up to the door.) steinbrenner: we can't grieve forever! wilhelm: right. yessir. steinbrenner: we gotta get back to business! wilhelm: yes sir! (closes the door) steinbrenner: back to business wilhelm! wilhelm: (from behind the closed door in the hallway) yes sir! kramer: well, buddy, (claps) he's taking the case! jackie chiles is right on it! right on it, he's all over it! jerry (not happy): oh, really? kramer: why, wh-wh-what's wrong, come on? jerry: i don't know kramer: uuh- jerry: so the woman was walking around in a bra kramer: yeah- jerry: i mean it's no big deal. you're still drivin'. you should have been watching the road. kramer: well, your attitude has certainly changed. jerry: i don't think my attitude has changed. kramer: now listen, jerry, i'm gonna need you to testify. jerry: (quietly, yet in a high and whiney tone) well, i don't know if i.... kramer: jerry, jerry, you gotta testify! jerry: kramer i don't think i can-- kramer: listen, this is a million dollars we're talkin' about, jerry, now this is the big league, the big time, now i need you on my team, jerry! jerry: well, i'm just not sure how i feel about it, kramer. kramer: alright what's gotten into you, what's happened?!? jerry: nothing's happened. kramer (in disgust): goohhhhck. kramer (picking up the wrapper): ohhhh, what's this? jerry: oh, no, no, no, wait a second, wait a second th-th-that-- kramer: oh i see....yessss. little miss candy bar paid a visit, didn't she? jerry: kramer, it is not what you think. kramer: ah, ah, ahhhhh! i know what i think. i think you're gaga over this dame. she's twisted you around her little finger, and now, you're willing to sell me, and elaine, and whoever else you have to, right down the river. jerry: and what about yooou?!? tryin' to bilk an innocent bystander out of a family fortune, built on sweat and toil, manufacturing quality o'henry candy bars, for honest, hard-working americans! kramer: you're just out for sex!! jerry: you're just out for money!! kramer and jerry (together): ah, ah, ahhhhh!!!!!! steinbrenner: mrs. costanza? estelle (smiling): yesss? steinbrenner: my name is george steinbrenner, i'm afraid i have some very sad new about your son. estelle: (gasps) estelle (crying): i can't believe it, he was so young. how could this have happened? steinbrenner: well, he'd been logging some pretty heavy hours, first one in in the morning, last one to leave at night. that kid was a human dynamo. estelle: are you sure you're talking about george? steinbrenner: you are mr. and mrs. costanza? frank (yelling): what the hell did you trade jay buener for?!? he had 30 home runs, and over 100 rbis last year. he's got a rocket for an arm - - you don't know what the hell you're doin'!! steinbrenner: well, buhner was a good prospect, no question about it. but my baseball people love ken phelps' bat. they kept saying 'ken phelps, ken phelps'. jerry’s outgoing message: im not here, leave a message. frank (from the answering machine): jerry, it's frank costanza, mr. steinbrenners here, george is dead, call me back! jerry (answering phone): hello? george (on a pay phone): hey, it's george. jerry: where have you been?!? george: what? jerry: i just got the most bizarre message from you father, steinbrenner is at you house, they think you're dead! george: dead? jerry: yeah, and we had an accident with your car, it's a, its a little crumpled. george: my cars a little crumpled?!? jerry: yeah, yeah, i didn't know what to do so i put it back at the stadium. oh, wait a second, wait a second, they saw the car, they saw the blood, they couldn't find ya, that's why steinbrenner thinks you're dead! george: allright, i gotta head back right away, i'll-ill -- i gotta figure something out here. jerry: well you gotta call your parents. george: i can't, steinbrenner might still be there! jerry: aren't you gonna tell your parents you're still alive? george: oouuoo! they could use the break! peterman (holding up a bra): elaine, do you see this? do you see what i'm holding in my hands? elaine: yeah, it's a bra. peterman: i saw a woman in our hallway wearing one of these as a top. (sits on the corner of the desk)what exquisite beauty, i ran down the hallway to talk to her, but the elevator door closed. it was not to be.perhaps our paths will cross again some day. elaine: w-what is this all about? peterman: i wanna market this item as a new direction in women's fashion. elaine: oh-oh, but- peterman: we're gonna sell this as a top. here's the angle zelda fitzgerald, aaaand, somebody in the 20s, wearing this at wild parties, driving all the men crazy (tosses the bra on elaines desk) have it on my desk by the end of the week. steinbrenner: come in, come in. george: mr. steinbrenner-- steinbrenner (shocked): ahhh, ahhh! ah, ah ah! is it you? george: yeah, it's me sir. it's been a harrowing few days. uuh,after the car accident, i-i crawled into a ditch, and managed to survive on, grubs and puddle water, until a kindly old gentleman picked me up. steinbrenner: grubs, huh? gotta admit, i never tasted one of those. george: anyway, as i was lying in the puddle, i-i think i may have found a way for us to get bonds and griffey, and we wouldn't have to give up that much. steinbrenner: well, don't tell it to me george, tell it to the new assistant to the general manager. george: i didn't get the job? steinbrenner: well, once you were dead, we couldn't just sit on our hands. we had to make a move... steinbrenner: but, you still have your old job. of course, we'll have to dock you for the time you missed. we're running a ball club here. if i give special treatment to you, everyone will want it. next thing you know its chaos! and i can tell you this, (george closes the door) chaos does not work for the new york yankees! not as long as i'm running the show! jackie: so it was the meeting on the street that prompted you to buy the bra for miss mishke, would you say that was correct? elaine (on the witness stand): yes...ummm, (leans into the microphone, pulling it closer it squeaks) yes, that's correct. jackie: and you have also brought with you, another bra, (goes over to the table and pulls a bra out of a bag) exactly like, the one that she so flagrantly exhibited herself in! elaine: yes, that's correct. jackie: uh, what was you golf score, the last round you played uh, before you shoulder was injured? kramer: three under par. jackie (impressed): oooohhhh, three under par, hmmthat's what the professionals shoot, isn't it? kramer: well if they're lucky. jackie: well would you tell this jury exactly what you saw at the corner of 83rd street and columbus? jerry (hesitant): i...don't remember. jackie: well, did you, or did you not, see the defendant, wearing the bra? jerry: i don't know. maybe. jackie: mr. seinfeld, i might remind you that you are under oath. now i ask you again, did you or did you not, see this woman wearing a bra?!? jerry: ....alright, alright, i saw her! jerry: and she was beautiful in that bra! i'm crazy about her! i love her whole free swinging, free wheeling attitude! judge (banging his gavel): this court will come to order! jackie: no further questions, your honor. judge: you may step down. jackie: well kramer, i think we got this wrapped up. kramer: yeah, yeah...what's your read, stan? stan: you're close, you're on the green. you just have to go for the cup. kramer: what do you mean? stan: have her try on the bra, see if it fits. jackie: no, no, no, no! kramer: do it, jackie. stan's the man. jackie: stan? who the hell is stan? kramer: he's my caddy. jackie: you're caddy?!? this is a big mistake! kramer: gu-gu- cada- jackie: your honor, we request at this time, that miss mishke...try on the bra. judge: (bangs the gavel twice)this court will come to order! go ahead miss mishke, try it on. sue ellen: uhhh-ah, it doesn't fit...i, i-i can't put it on. jackie (to kramer and stan): damn fools! look at that! we got nothin' now, nothin'! i've been practicing law for 25 years, you're listenin' to a caddy! kramer: ok, ok- jackie : this is a public humiliation! you can't let the defendant, have control of the key piece of evidence. plus, she's trying it on over a leotard, of course a bra's not gonna fit on over a leotard. a bras gotta fit right up against a person's skin, like a glove! woman #1: oh, hey, elaine, how 'bout some lunch? elaine: oh, no, i-i don't think so. woman #2: great job on the gatzby swing top. it's a winner. elaine: yeah, yeah, thanks. woman #1: are you sure you don't wanna go? we have reservations. elaine: oh, i don't think you'll have any trouble gettin' a table. woman #1: ciao. woman #2: ba-bye. elaine: (awed) oh, look at this! jerry: boy, i miss the days they made toys that could kill a kid. elaine: (excited) oh, cool! look at that! jerry: (admiring christie) yeah, i'm right there with ya. elaine: (excited) that is a schwinn stingray! and it's the girl's model! oh, i always wanted one of these when i was little. elaine: what d'you think jerry? jerry? jerry: (tearing himself away from christie) huh? elaine: what d'you think? jerry: oh yeah, be great for your paper route. elaine: (laughs) i love it. i'm getting it. elaine: can you help me get it down, jer? jerry. christie: i think your friend needs some help over there. jerry: you know, the only way to really help her is to just let her be. elaine: hey! susan: a little baby girl? ken: doctor says it could be any day now. george: (through mouthful of food) so, carrie, you and susan are cousins. so your baby daughter is gonna be susan's second cousin, right? so what does that make me? carrie: doesn't make you anything. george: (jokingly) well, so, legally, i could marry your daughter. susan: so, have you picked out a name yet? carrie: well, we've narrowed it down to a few. we like kimberley. susan: aww. george: (negative) hu-ho, boy. ken: you don't like kimberley? george: ech. what else you got? ken: how about joan? george: aw c'mon, i'm eating here. susan: (warning) george! carrie: pamela? george: pamela?! awright, i tell you what. you look like nice people, i'm gonna help you out. you want a beautiful name? soda. ken: what? george: soda. s-o-d-a. soda. carrie: i don't know, it sounds a little strange. george: all names sound strange the first time you hear 'em. what, you telling me people loved the name blanche the first time they heard it? ken: yeah, but uh... soda? george: yeah, that's right. it's working. carrie: we'll put it on the list. george: i solve problems. that's just what i do. kramer: (sniffing a slice of meat) yeah, oh boy. mmm, that's good. jerry: you're really going to town with that turkey there. kramer: oh yeah, i got a big appetite. kramer: uhh, jerry, you got no mustard, huh. jerry: it's on the door. kramer: (examining a yellow squeeze bottle) what, this yellow stuff? no, i said mustard, jerry. dijon. kramer: ah, 's no good. kramer: no. that's bush league. jerry: hey, hey. wha... wait... what, you're gonna leave it there? that's like half a pound of turkey! kramer: no, no, i can't eat that. you can't eat a sandwich without dijon. jerry: (sarcasm) yeah, you're right. i really should keep more of your favourites on hand. kramer: hey, hey, hey. i'm getting a vibe here. what, are you unhappy with our arrangement? jerry: what arrangement? kramer: well, i was under the impression that i could take anything i wanted from your fridge, and you could take whatever you want from mine. jerry: (sarcasm) yeah, well, lemme know when you get something in there and i will. kramer: oh, hey. elaine: hey. jerry: hey. what's with your neck? elaine: still killing me from having to get that bike off the wall. (pointedly) by myself. jerry: well, if it's any consolation, i did get her number. elaine: (sitting) ah, i think i really strained it. ow. jerry: aw, i doubt you strained it. maybe you pulled it. elaine: ach, maybe. jerry: did you twist it? you coulda twisted it. elaine: i don't know. jerry: did you wrench it? did you jam it? maybe you squeezed it. turned it... elaine: (patience exhausted) you know what, why don't you just shut the hell up? jerry: awright. elaine: god. man, this is killing me. right now, i would give that bike to the first person who could make this pain go away. kramer: aw, you really hurting, huh? elaine: oh, kramer, it's just awful. kramer: uh hmm. well, your arterioles have constricted. kramer: alright, lean forward, relax. elaine: (worried) what? what? kramer: encounter shiatsu. elaine: wait a minute. kramer, you know what you're doing here? kramer: (continuing to work) ohh yeah. a wise man once taught me the healing power of the body's natural pressure points. elaine: ah hah. kramer: (to jerry) he sells tee-shirts outside the world trade centre. elaine: (seriously worried) wha...? kramer: he's a genius. here we go... kramer: from pain, will come pleasure. kramer: uh? voila. elaine: (pleasantly surprised) oh my god! kramer: yeah. elaine: wow! that is unbelievable. the pain is totally gone! jerry: what's even more amazing is his formal training is in pediatrics. kramer: awright, my work is done here. elaine: (big smile) oh man! kramer, thank you! kramer: (closing the door) yeah, you can send that bike over any time. elaine: (after kramer) what? (to jerry) what, what is he talking about? jerry: i dunno. (realising) oh, 'cos you said you'd give the bike to anyone who fixes your neck. elaine: you really think he wants the bike? jerry: oh yeah. elaine: it took him like ten seconds! jerry: well, that's the most he's worked in the last four months. george: i think they really went for that soda. susan: what, are you crazy? they hated it. they were just humouring you. george: ah, alright. believe me, that kid's gonna be called soda. susan: i can tell you, i would never name my child soda. george: oh, no no no. course not. i got a great name for our kids. a real original. you wanna hear what it is? huh, you ready? susan: yeah. susan: what is that? sign language? george: no, seven. susan: seven costanza? you're serious? george: yeah. it's a beautiful name for a boy or a girl... george: ...especially a girl. or a boy. susan: i don't think so. george: what, you don't like the name? susan: it's not a name. it's a number. george: i know. it's mickey mantle's number. so not only is it an all around beautiful name, it is also a living tribute. susan: it's awful. i hate it! george: (angry) well, that's the name! susan: (also angry) oh no it is not! no child of mine is ever going to be named seven! george: (yelling) awright, let's just stay calm here! don't get all crazy on me! jerry: seven? yeah, i guess i could see it. seven. seven periods of school, seven beatings a day. roughly seven stitches a beating, and eventually seven years to life. yeah, you're doing that child quite a service. george: (adamant) yes i am. i defy you to come up with a better name than seven. jerry: awright, let's see. how about mug? (picks up the mug) mug costanza, that's original. (he turns and sees another item) or uh, ketchup? pretty name for a girl. george: alright, you having a good time there? jerry: i got fifty right here in the cupboard. how about bisquik? pimento. gherkin. sauce. maxwell house. george: (shouts) awright already!! this is a very key issue with me, jerry. i had this name for a long time. jerry: oh, i forgot to call christie. george: christie? that's the one you met in the antique store? jerry: yeah, she had this great black and white dress, with a scoop neck. she looked like some kinda superhero. george: and you met her in an antique store! i don't know how you do it! jerry: (smug) i'm not engaged. kramer: ah, i got it. jerry: got what? kramer: (putting the items on the counter) got the answer, jerry. refrigerator problem, is solved. jerry: oh, it's no problem. you can take whatever you want. kramer: oh, i will. but now, i'm accountable. alright, i take what i want. kramer: here. i write it down. (he writes) "one cupcake." and then i put it in the bowl. (he tears off the sheet, crumples it and drops it into the bowl) there. very simple. jerry: sort of a mooching inventory. kramer: no, no. not mooching. 'cos at the end of the week, you add 'em all up, and you give me the bill. jerry: alright. kramer: alright, now look i gotta run some errands, so look. when elaine comes by with that bike, you hang onto it for me, alright? jerry: kramer, i don't know if you're getting that bike. kramer: yes i am. we had a verbal contract. if we can't take each other at our word, all is lost. kramer: (waving at the bowl) oh yeah, yeah. put that on my tab. jerry: well this is it. the food is atrocious, but the busboys are the best in the city. maitre d': may i take your coat, miss? christie: yes, thank you. george: the same outfit? jerry: the exact same outfit. george: how many days was it between encounters. jerry: three. george: three days. well, maybe you caught her on the cusp of a new wash cycle. you know, she did laundry the day after she met you, everything got clean and she started all over again. jerry: possibly, but then shouldn't the outfit only reappear again at the end of the cycle? george: maybe she moved it up in the rotation. jerry: why? it's our first date, she's already in reruns? george: very curious. jerry: indeed. george: you know, einstein wore the exact same outfit every day. jerry: well, if she splits the atom, i'll let it slide. george: (picking up his coat) awright, i'm heading home. jerry: hey, did susan change her mind about the name? george: (standing) not yet, but she's weakening. jerry: you know, george, just because your life is destroyed, don't destroy someone else's. george: it's mickey mantle, jerry. my idol. jerry: how about 'mickey'? george: 'mickey'? (incredulous) 'mickey'! kramer: hey buddy. jerry: (holding up a can) hey, is this your half a can of soda in the fridge? kramer: no, that's yours. my half is gone. jerry: what? kramer: yeah, i put my half a can here on the tab. why, what's your beef? jerry: you cannot buy half a can of soda. kramer: well, why not. jerry: well, i don't wanna get into the whole physics of carbonation with you here, but you know the sound a can makes when you open it? kramer: yeah. jerry: that is the sound of you buying a whole can. and the same goes for this, okay... jerry: ...when you pierce the skin of a piece of fruit, you've bought the whole fruit. not a third of an apple, not a half of a banana... kramer: alright. jerry: ...you bite it, you bought it. kramer: alright, alright. i'll make the necessary adjustments, alright. jerry: thank you. kramer: yeah. elaine: hey. kramer: oh. (pointedly) so, how's the neck? nice and loose? elaine: lookit, kramer, you are not getting this bike. i don't even know why you ant it. (laughingly) i mean, it's a girl's bike. kramer: (deadly serious) it's a verbal contract. we had a deal. elaine: no we didn't. you take these things too literally. it's like saying, you're hungry enough to eat a horse. kramer: well, my friend jay reimenschneider eats horse all the time. he gets it from his butcher. elaine: this is not the point. (emphatic) the point is, you just can't have the bike. kramer: boy, i am really surprised at you. (opening the door) you are the last person i figured would do something like this. i mean, george, yeah, i can see that. even jerry. but not you, elaine... kramer: i always put you up here... kramer: ...they're over here. now you're... aww-whawww. elaine: (grudging) alright. kramer: (points) digidi. george: aw c'mon. it's a fantastic name. it's a real original, nobody else is gonna have it and i absolutely love it. susan: well, i dunno how original it's gonna be any more. george: why not? susan: well i was telling carrie about our argument, and when i told them the name, they just loved it. george: so, what're you saying? susan: they're gonna name their baby seven. george: (disbelief) what?! they're stealing the name?! that's my name, i made it up! susan: i can't believe that they're using it. george: (anger) well now it's not gonna be original! it's gonna lose all its cachet! susan: i dunno how much cachet it had to begin with. george: (rage) oh, it's got cachet, baby! it's got cachet up the yin-yang! elaine: (in pain) oh god! oh, god. (bitter) kramer! man: watch your step. elaine: (pain) oh, ah. (bitter) stupid kramer. christie: excuse me. elaine? elaine: huh? christie: over here. i thought that was you. you're jerry's friend, right? elaine: yeah, yeah. uh, christie? christie: yes. how y'doing? elaine: (bearing up) i'm fine. christie: well, i gotta run. it was good to see you. elaine: (after christie) okay, oh, it was good to, good to see you. voice 1 (o.c.): lookin' good. voice 2 (o.c.): hey cosmo, nice wheels. kramer: you got that right! kid: (scorn) hey, you're riding a girl's bike. elaine: (shouting) kramer! kramer! ken (o.c.): hello. george: hello, ken. it's george costanza. i think we need to talk. elaine (o.c.): (angry shout) kramer! elaine: kramer!! jerry: hey elaine: ow! god! is kramer back from his little joyride yet? jerry: haven't seen him. how's the neck? elaine: his chiropractic job was a crock. it's even worse than it was before. jerry: boy, i'm surprised. (sarcasm) i would think kramer would have a knack for moving pieces of a person's spine around. elaine: hey, you know what, i think i ran into that girl from the antique store. what's her name, christie? jerry: you saw her? what was she wearing? elaine: i don't know. i couldn't see. i couldn't look down because of my neck. jerry: didn't you get a glimpse? an impression? elaine: what d'you care? jerry: both times i've seen her she's worn the same dress. elaine: did you have a nice ride? kramer: oh, great ride. elaine: oh, that's good. 'cos it was your last! kramer: what're you talking about?! we had a deal! elaine: (anger) you better give me back that bike! (indicating neck) look at this! look! ow. i couldn't even crawl out of bed this morning. kramer: bed? you should be sleeping on a wooden board for at least a week. elaine: what? you never told me that. kramer: well, it's common sense. elaine: jerry, what is he talking about? he's being ridiculous. kramer: alright, look. jerry, you know the whole story, you should settle this. elaine: yeah jerry. jerry: well, i'm flattered that you would both appeal to my wisdom, but unfortunately, my friendship to each of you precludes my getting involved. what you need is an impartial mediator. elaine: yeah, i'd go for that. would you go for that? kramer: alright, i'm down. jerry: course, it would have to be someone who hasn't heard the story before. someone who is unencumbered by any emotional attachment. someone whose heart is so dark, it cannot be swayed by pity, compassion, or human emotion of any kind. elaine: so, that's the situation. newman: mmm. you present an interesting dilemma. each of you seemingly has a legitimate claim to the bicycle, and yet the bicycle can have only one rightful owner. quite the conundrum. as a federal employee, i believe the law is all we have. (getting worked up) it's all that separates us from the savages who don't deserve even the privilege of the daily mail. (angry) stuffing parcels into mailboxes where they don't belong!!... kramer: newman! newman: ...but, you must promise that you will abide by my decision, no matter how unjust it may seem to either of you. do i have your word? kramer: uh, yeah. elaine: yeah. newman: alright, let's begin. newman: (excited) ooh, my cocoa! ken: why can't we use seven? george: it's my name. i made it up. you can't just steal it. carrie: well, it's not as if susan's pregnant. you've already postponed the wedding. who knows if you'll ever get married. george: hey, hey hey. don't worry about me. i'm not a waffler. i don't waffle! ken: right, we're both big mickey mantle fans, and we love the name. it's very unusual. george: (shouting) what happened to soda?! i thought we all agreed on soda. ken: (emphatic) well, we don't care for soda. george: you don't care for soda?! carrie: (worked up) no, no. we don't like soda at all! george: (shouting) how d'you not like soda?! it's bubbly, it's refreshing! carrie: oh! ken: what is it? carrie: i felt something. ken: are you okay, honey? carrie: i think i'm going into labour. ken: oh god, oh god. okay, let's not panic. let's just get to the hospital... carrie: okay. ken: ...alright? i got the suitcase packed, right here. george: what about six? george: nine. thirt... thirteen's no good. george: fourteen. (shouting after ken) fourteen! christie: are you okay, jerry? you seem quiet. jerry: no, i'm just a little uh, worn out. christie: i know exactly what you mean. jerry: oh, i'm sure you do. jerry (v.o.): what in god's name is going on here? is she wearing the same thing over and over again? or does she have a closet full of these, like superman? i've got to unlock this mystery. christie: (horrified) oh my god! jerry: oh. christie: ahh. i can't go to the movies like this. do you mind if we go back to my apartment, so i can change? jerry: change? (thoughtful) yes, i think that's a super idea. carrie: are we almost there? ken: just keep breathing, okay. carrie: (deep breaths) okay, okay. ken: okay. george: (to carrie) you know, the thing is, i kinda promised the widow mantle that i would name my baby seven. ken: now's not the best time, george! george: (to carrie) it's just that, i know her, and boy... ken: (firm) george! she's in labour! george: (angry shout) so am i! newman: well, you've both presented very convincing arguments. on the one hand, elaine, your promise was given in haste. but was it not still a promise? hmm? newman: and, kramer, you did provide a service in exchange for compensation. but, does the fee, once paid, not entitle the buyer to some assurance of reliability? hmm? huh? ahh. these were not easy questions to answer. not for any man... newman: ...but i have made a decision. (revelatory) we will cut the bike down the middle, and give half to each of you. elaine: (shout) what?! this is your solution?! to ruin the bike?! elaine: alright, fine. fine. go ahead. (standing) cut the stupid thing in half. kramer: no, no, no. give it to her. i'd rather it belonged to another than see it destroyed. newman, give it to her, i beg you. elaine: yeah, yeah, y-yeah. newman: not so fast, elaine! only the bike's true owner would rather give it away than see it come to harm. kramer, the bike is yours! elaine: what?! kramer: sweet justice. newman, you are wise. elaine: (frustration) but this isn't fair! lookit, my neck is still hurting me, and now you have the bike?! kramer: well, tell it to the judge, honey. i'm going for a ride. christie: here we are. jerry: (looking around) ah, so this is the fortress of solitude. christie: well, i guess i'll go change. jerry: yes, change. by all means, change. jerry (v.o.): august seventeen, nineteen-ninety-two. the same dress! she never changes! oh my god. (looking around) she's gotta have hundreds of these dresses. jerry (v.o.): there must be a secret stash around here somewhere. christie: ahem! are you looking for something? jerry: what're you doing? i thought you were changing. christie: no, i, i'm thinking we should just call it a night. jerry: no, no. c'mon, put something else on. it's early, let's go out. christie: if it's all the same to you, i think i'm just gonna go to bed. jerry: you know, i'm kinda tired myself. maybe i'll just sleep here on the couch. then in the morning, you'll get dressed, we'll walk out together. both dressed, different clothes. well, i'll be in the same clothes. you'll of course be in different clothes, because it's your apartment. but we'll go downstairs, me in my same clothes, you in your different clothes. christie: (unequivocal) jerry. i don't think so. jerry: you wanna throw something on and walk me to a cab? christie: (gesturing) get out. jerry: (pleading) tell me what you're wearing tomorrow. i'll help you lay it out on the bed. ken: okay, breathe, honey. breathe. george: (to carrie) you know, you're really being very selfish. it would be nice if you would think of someone other than yourself every now and then! carrie: (shouts) i'm having a baby!! ken: george, you're not getting seven! now get outta here!! george: (desperate) please! i have so little! orderly: sorry sir, it's family only. george: i'm family. i'm having sex with the cousin! george: seven!! jerry: hello, christie? i was wondering if we could get together again? (listens) oh really? well you can't break up with me over the phone. c'mon, you gotta do this in person. it doesn't even have to be one on one, you can bring a group of friends. i just wanna see you. wait, don't hang up on me. (hurriedly) why d'you wear the same dress all the time? hello. kramer: (indicating the cereal) hey, jerry, if you're gonna be snacking on these, you can't expect me to pay for the whole box. jerry: alright, hobo joe. i didn't wanna put a damper on your little smorgasbord here, but it's the end of the week, so i added up your tab. kramer: (does a double take) yikes. jerry: i know. pretty steep. kramer: well, i don't have this kind of cash. jerry: few do. kramer: i'm good for it. jerry: yeah, well, until this bill is paid... jerry: ...the food court is closed. kramer: (opening the door) alright. i'll get that money for you in five minutes. and, don't eat any more. elaine: hey, that's my bike! along the sidewalk comes a happy-looking newman, pedalling the schwinn for all he's worth. he rings the bell. newman: gangway! elaine: this is my bike! newman: oh no. no no no no. i bought it from kramer. he was hard up for cash. fifty bucks! (he laughs) can you believe it? of course, i had to make some minor modifications, you know. solid tires, reinforced seatpost, heavy duty shocks. but, baby, this is one sweet ride. elaine: (chasing newman) no, you better gimme back that bike. newman, gimme... newman: hey!! help me! kramer: hey! you're back! jerry: oh, i'm back, baby. kramer: yeah, how was it? jerry: great. one of the best jobs i ever had. kramer: good for you. jerry: i killed. kramer: you killed. jerry: (taking off his jacket) slaughtered. wiped the floor with 'em and (hanging up jacket) not only that, the money was unbelievable. kramer: unbelievable. jerry: yeah. highest paying job i ever had. kramer: how much? jerry: (reluctant) nah, nah. i'd rather... kramer: aw, c'mon. jerry: nah. it's not good for friends to talk about money, it can affect the friendship. kramer: i tell you how much i make. jerry: and i'm always impressed. kramer: just show me the cheque, c'mon. jerry: awright, fine. you wanna see it? kramer: i wanna see it. jerry: okay. jerry: here, check that out. kramer: (stunned) whuf! this is unbelievable. jerry: i told you. kramer: my god, you're rich. jerry: (taking back the check) oh yeah. kramer: i didn't know you made that kinda money. (subdued) jeez. jerry: what? kramer: i don't think i can talk to you any more. i feel inferior. jerry: i never shoulda told you. kramer: you know, jerry, i think this changes the relationship. i mean, i feel it. do you feel it? jerry: no, i can't feel anything. kramer: well, what're you gonna do with all that money? jerry: actually, i was thinking of donating a large portion of it to charity. kramer: (pleased) really? jerry: (deadpan) no. kramer: well, you should, jerry. jerry: no, to tell you the truth, i was thinking of buying my father a new car. kramer: now, you see, that's nice. jerry: maybe a cadillac. kramer: (smiles) cadillac. ooh-la-la. jerry: yeah. (thinking) that would really blow his mind. he's always wanted one, his whole life, he's never been able to afford it. (decisive) i'm gonna do it. kramer: you're gonna score some big points with the man upstairs on this one. jerry: oh, isn't that what it's all about? elaine: who was pippi longstocking? katy: pippi longstocking? (thoughtful) hmm, i don't don't know. elaine: did she have anything to do with hitler? katy: hitler? (thinks) maybe. george: hey. elaine: hey george. george: have you seen jerry? (sitting beside elaine) i told him two o'clock. elaine: (indicating) you remember katy? george: (distracted) mm? (acknowledges katy) oh, hi. oh, yeah, yeah, yeah. we met uh, skiing that time. you're uh, married to the eye guy. katy: also ear, nose and throat. george: nose. (chuckles) what's the worst that can happen to a nose? what does it get? stuffed? (chuckles) katy: (amused) he's funny. elaine: ah, you don't have to tell me. george: ahh, ladies, please, please. (chuckles) elaine: oh, you know what? he got engaged. katy: oh, you did? (disappointed) oh. george: what? is that bad? katy: i actually would've set you up with a friend of mine. george: oh-ho, yeah? katy: you'd be perfect for her. she loves quirky, funny guys. george: (curious) bald? uh? katy: loves bald. george: loves bald? (laughs) wow. who uh, who is she? katy: marisa tomei. george: (taken aback) the actress? katy: yeah. george: you're friends with marisa tomei? katy: that's right. george: (getting excited) that's, that's incredible. my cousin vinnie, i love her, she was fantastic! katy: yeah, i know. george: (more excitement) you were gonna fix me up with her? katy: yeah, she's just been sitting home. george: (fever pitch) marisa tomei's sitting home, elaine! wh..why didn't you tell me that katy was friends with marisa tomei?! elaine: (deadpan) oh, i don't know what i was thinking. jerry: i want this baby fully loaded. (listens) well, how soon can you get it there? (listens) oh, that's terrific. (listens) okay, thanks, bye. jerry: hey, guess what. i just bought my father a cadillac george: really? wow, you're quite the good son. jerry: yeah, i'm a very good boy. i'm flying down there and surprising him. george: you gonna sleep on the fold-out? jerry: (joyless) yeah, yes. george: uh, let me ask you something. you uh, you ever hear of marisa tomei? jerry: the actress? george: yeah. she's uh, she's something, isn't she? jerry: oh yeah. george: well, you know katy, elaine's friend? jerry: yeah? george: she happens to be very good friends with her. jerry: marisa tomei? george: uh-hmm. jerry: how does she know marisa tomei? george: i don't know, i didn't ask. jerry: you didn't ask how she knows marisa tomei? george: not the point! jerry: alright. george: can i finish? jerry: go ahead. seems like a reasonable question, is all i'm saying. i would've asked her. george: alright! so, she said, that she could've fixed me up with her. jerry: what d'you mean, could've? george: well, you know, if i uh, wasn't engaged. jerry: ohh! george: coulda fixed me up with marisa tomei. she said i was just her type! jerry: really? george: (getting animated) yeah. yeah. you know the odds of me being anyone's type?! i have never been anyone's type, but apparently, this marisa tomei loves funny, quirky, bald men. jerry: you know, she won an academy award? george: (sarcasm) hu-hu, like i don't know that? (excitement) my cousin vinnie, i love that! i, george costanza, could be on a date with an oscar winner! an oscar winner, jerry! you know what that's like? it's like if fifty years ago, someone fixed me up with katherine hepburn? same thing! jerry: now there's a match. you and katherine hepburn. george: i mean, you've seen her, right? jerry: katherine hepburn? oh yeah. george: (shout) marisa tomei! jerry: yeah, yeah, yeah. george: i mean, she's beautiful, right? she's just my type. the dark hair, the full lips. jerry: you like full lips. george: oh, i love full lips. something you can really put the lipstick on. jerry: mmm-mmm. too bad you're engaged. george: (downcast) yeah, too bad. too bad. jerry: (about the pie) this is no good. jerry: hi. nick: hi, uh, excuse me. i'm uh, i'm with plaza cable. i'm sorry to bother you. i...i'm looking for the guy who lives over here. been waiting about uh, heh, two hours. you uh, happen to know where he is? jerry: no. nick: if you see him, could you just tell him the cable company was here? jerry: sure. nick: thanks. jerry: (about the cable guy) nice people. george: listen, lemme ask you a question. what if i got a cup of coffee with her? jerry: well, what about susan? george: (worked up) i can't have a cup of coffee with a person?! i'm not allowed to have coffee?! jerry: would you tell susan about it? george: (frustrated) not necessarily. jerry: well, if you can't tell susan about it, then there's something wrong. george: (shouts) of course there's something wrong! (points at jerry) we had a pact! jerry: hey, cable guy's looking for you. kramer: oh, yeah? jerry: yeah. kramer: oh. yeah, i been getting hbo and showtime for free. see, they just found out about it, so now they wanna come and take it out. jerry: well, said he was waiting about two hours. seemed a little put out. kramer: oh, was he? was he? i guess the cable man doesn't like to be kept waiting. jerry: you don't seem too bothered by it. kramer: you remember what they did to me ten years ago? "oh, we'll be there in the morning between nine and one", or "we'll be there between two and six"! (quiet anger) and i sat there, hour after hour, without so much as a phone call. finally, they show up, no apology, tracking mud all over my nice clean floors. (malice) now, they want me to accommodate them. well, looks like the shoe's on the other foot, doesn't it? jerry: boy, i've never seen you like this. kramer: oh, you don't wanna get on my bad side. marisa: ...positrack, which was not available on the sixty-four buick skylark. susan: hey. (glances at tv) hey what're you watching? what is that? my cousin vinnie? george: yeah. susan: i thought you saw that before. how come you're watching that again? george: i..i..i dunno. susan: did you know marisa tomei won an oscar for that? boy, she's beautiful, don't you think? i wish i looked like that. susan: turn it off. you're making me jealous. i'm gonna think you like her more than you like me. george: (forcing a laugh) hu, ha. elaine (o.c.): hello. george: (whispering) elaine, it's me, george. elaine: george. how come you're whispering? george: (still quiet) never mind, never mind. i need you to do me a favour. uhm, remember what we were talking about at the coffee shop earlier? elaine: no. george: (still quiet) think, a second. you know, your friend was talking about me and, you know... elaine: ech, george, i have no idea what you're talking about. george: (still quiet) the actress. elaine: what? george: (shouts) marisa tomei! susan (o.c.): what? george: (calling to susan) uh, ah, nothing. nothing. elaine: oh, yeah. yeah, what about her? george: well, uhm, i think i'd like to do it. elaine: what? (shocked) what?! george, no way. you're engaged! george: a cup of coffee. that, that doesn't mean anything. elaine: uhh. no george! george: elaine. elaine: forget it! george: elaine! (shouts) elaine!! george: d'oh...oh, oh, the judge! i hate this guy! elaine: i can't believe you're buying your father a car. jerry: and, best of all, it's a cadillac. elaine: (sharp intake of breath) hoh. a cadillac! (impressed) wow. elaine: i had no idea you had this kind of money. jerry: ahh, i uh, i don't like to talk about it. elaine: yeah, i thought you were doing okay. i just didn't think you were in this kind of, you know, uh... position. jerry: ah, it's just money. elaine: (smiling) so, when're you getting back from florida? jerry: oh, i don't know, play it by ear. why? elaine: i don't know. (big smile) just, things seem a little more exciting when you're around. that's all. jerry: are you okay? elaine: (squeaky) sure, sure. jerry: what was that? kramer: quiet, quiet. nick: hey, uh, you know the guy who lives here? george: yeah. nick: (quietly angry) all morning i been waiting here. all morning. nick: (still angry) the guy says he's gonna be home. i show up and all i do is wait. i'm getting pretty sick and tired of it. i'm not gonna put up with it much longer. kramer: i'm loving this. george: kramer, there's a guy out here that... kramer: yeah, yeah. i know, i know. george: (pointedly to elaine) oh. thanks very much for yesterday, by the way. elaine: jerry, he want me to fix him up with marisa tomei. i am not gonna be a part of this! george: (animated) fixed up? a cup of coffee! a cup of coffee is not a fix up! elaine: you wanna meet her. you wanna see if she likes you? george: (defensive) so what? so what if i do? elaine: (shrill) you're engaged! george: (worked up) i'm aware! i'm aware!! but this is marisa tomei, elaine. an oscar winner! how can i live the rest of my life, knowing i coulda been with marisa tomei? she said i was just her type! she loves short, stocky, balding funny men! jerry: i notice you threw 'stocky' in there. george: yeah, what the hell?! elaine: george! it's cheating. george: (adamant) it's not cheating if there's no sex! elaine: yes it is! george: (frustrated) ahh! elaine: (looking for support) jerry! jerry: uhm, hold, hold on a second. (pauses counting) i'm, i'm sorry, i didn't hear what you said. george: (pleading) elaine, c'mon. would you just make the call? (indicates the phone) please, make the call. elaine: (distractedly) yeah, yeah, fine, i'll make... george: (triumph) alright. elaine: eight-fifty. jerry: oh, right. elaine: so uh, how are you getting to the airport? d'you need a ride, or... jerry: no, don't be silly, i've arranged a car. elaine: you sure? you sure? 'cos, you know... jerry: maybe i'll let you pick me up. elaine: (big smile) okay. elaine: oh, hi. uhm, is katy there? (listens) wh...? uhm, what? (listens) oh, really? elaine: well, could you tell her elaine called? yeah, thanks. elaine: huh, she's in the hospital. (concerned) she has an arrhythmia. george: (impatient) what about marisa tomei?! helen: morty, what d'you have to open this box for? (waving at another box) there's already a box of cookies open. morty: i wanted a chip ahoy. helen: i don't like all these open boxes. morty: look, i got a few good years left. if i want a chip ahoy, i'm having it. jerry: surprise! morty: (shout) jerry! helen: (shock) oh, my god! morty: what the hell are you doing here? jerry: i'm a good son. helen: just like that? no calls? jerry: just like that. morty: boy, you are really something. helen: to what do we owe this great honour? jerry: you wanna know? come on outside. morty: outside? what's going on? helen: whenever jerry comes, something exciting happens. morty: (laughs) heh hah! jerry: c'mon, c'mon. jerry: well, what d'you think? morty: look at this! look at this! (excited) you bought a cadillac?! jerry: i bought it for you. it's yours. morty: you what? you bought me a cadillac? jerry: i bought you a cadillac. (hands over the keys) here you go. helen: (sharply, to jerry) are you out of your mind? jerry: what? morty: (to helen) you don't want it? are you kidding? helen: he's not buying us a cadillac. morty: what are you, nuts? helen: it's a very nice gesture jerry, but take it back. morty: (to jerry) can you believe this?! helen: i'm not letting him buy us a cadillac. he hasn't got that kind of money. jerry: how d'you know? helen: oh, get out of here mister big shot. jerry: why can't i buy my father a car? helen: your father doesn't need a car. morty: yes, i do! helen: oh, morty. morty: we're keeping it. helen: over my dead body. jerry: (under his breath) well, this worked out just as i had hoped. machine (kramer): giddyup. nick (o.c.): yeah, this is nick stevens, from plaza cable. nick (o.c.): well, i waited all morning again. you said you were gonna be there from nine to one. nick (o.c.): i was there. where were you? you think i got nothing better to do than stand outside all morning, waiting for you to show up?! nick (o.c.): you're not gonna get away with this! morty: hey jerry, look at this. my seat's got a memory, in case somebody moves it. i could be in prison for five years. i come out, my seat goes right back to where i like it. jerry: that's what i was thinking. jack: (pointing) hello, jerry. jerry: hiya, jack. morty: (indicating) so, how d'you like this? jack: who's car? morty: it's mine. jack: yours? morty: that's right. my son bought it for me. jack: he what? morty: my son bought me the car. it's a present. jack: (disbelief) you bought it? jerry: that's right. i bought it. morty: you ever see one so nice? jack: some car. morty: you wanna take a ride? jack: no, thank you. morty: c'mon, take a ride. jack: i don't wanna take a ride. morty: why not? jack: i don't feel like taking a ride. do i have to take a ride?! jerry: he doesn't wanna take a ride. morty: uh huh. jack: (worked up) what d'you think? i've never ridden in a cadillac before? believe me, i've ridden in a cadillac hundreds of times. thousands. morty: (skeptical) thousands?! jack: what? d'you think you're such a big shot now, because you got a cadillac? morty: (dismissive) ahh! jack: (dismissive) yaah! morty: could you believe that guy? jerry: aahh! george: anyway, i was thinking about what you said. about uh, me and marisa. george: you know, about the uh, two of us getting together. and i know that i said i was engaged, but (laughs) uh, you know, it's really just something you say. it's like, going steady. you know uh, going steady, engaged, it's, it's all just stuff you say. (chuckles) anyway, i was watching uh, my cousin vinnie, on the uh, on the tape the other day, and i was thinking that uh, you know, the two of us might take a meeting, as they say. (chuckles) so, what d'you, what d'you think? george: (urgent) move a pinkie, if it's yes. can you move a pinkie? kramer: y'hello. nick (o.c.): (inexpertly disguising his voice) hi, uh ah, mister kramer, ah, this is mcnab down at the phone company. we've got a report about some trouble on your line. kramer: hmm. well, i haven't had any trouble. nick (o.c.): uh, the thing is, we happen to have a man right in your neighbourhood. kramer: (playing along) ohh, is that right? well, i have been having a little trouble with my call-waiting. nick: we can fix that. we can fix that. kramer: (sitting back on the couch) oh, can you? that's funny, because, as it happens, i don't have call-waiting. seems to me that the phone company would know that. nick: oh, right. (laughing it off) i'm sorry, i was looking at the wrong work order. kramer: yeah. could you hold on for a second? i've got something on the stove. kramer: hey, mcnab! kramer: chunnel's on hbo tonight. why don't you stop by? morty: alright. next thing on the agenda, the restoration of the fence at the briarwood gate. at the present time, we are still accepting bids. herb: c'mon morty, it's been broken for six months already. what the hell are you doing? morty: well, i, as your president, have to find the best price, and right now, i for one, do not think it's cost-feasible. jack: (half to himself) i'll bet you don't. morty: what was that? jack: c'mon morty, the jig is up! morty: what're you talking about? jack: i'm sorry. i'm sitting here, the whole meeting, holding my tongue. i've known you a long time, morty, but i cannot hold it in any longer. herb: what's going on, jack? jack: i'll tell you what's going on. morty seinfeld has been stealing funds from the treasury. morty: stealing?! ralph: what proof do you have? jack: proof? you want proof? he's driving around in a brand new cadillac. now what more proof do you want? morty: my son bought me that car! jack: your son? morty: yeah. jack: your son could never afford that car. we all saw his act, last year, at the playhouse. he's lucky he can pay his rent! herb: jack's right! he stinks! ralph: it's his material. morty: i tell you, he bought it for me! herb: (bangs table with his fist) i move for a full investigation! ralph: i second. marisa: ...go introduce myself. susan: hey! what're you watching? (looks at tv) only you? that's another marisa tomei movie, and you've seen that one too. (jokingly) what, d'you have a thing for her? george: (laughing it off and trying too hard) yeah, yeah. i have a thing for marisa tomei. like she would ever go out with a short, stocky, bald man. (forced laughter) hu hu, ha ha. like that's her type. huh. she's an oscar winner. (nervous laughter) he heh. besides, i don't even know her. it's not like anyone's trying to fix us up. who, who would try and fix me up with marisa tomei? susan: what are you talking about? marisa: have i told you how much i love you today? george: not in the last fifteen minutes. marisa: well, i do love you very much. george: and i love you, marisa. marisa: well then, c'mon, get dressed. we're going to be late for the premiere. helen: impeachment? morty: that's right. have you ever heard of anything like that? helen: can they do that? morty: if they get the votes. helen: i told you we shouldn't have let him give us the car. jerry: didn't you tell 'em i got the bill of sale? that proves i paid for it. morty: it doesn't make a difference. they think we're in cahoots. jerry: you know, you could put a fence around these condos, and call it an insane asylum. nobody would know the difference! morty: no-one's ever been impeached before. i couldn't live here. we'd have to move to boca. evelyn: hello? jerry: oh, hi evelyn. evelyn: hello, jerry. (to the senior seinfelds) i just got off the phone with saul brandus. helen: what'd he say? evelyn: he's voting to impeach. evelyn: not because he think you stole the money, but mainly because you never thanked him for giving you his aisle seat at freddy roman's show. morty: i did so thank him! helen: (admonishing) no, he never heard you. (prods morty's back) i told you he didn't hear you. morty: ah, he's deaf anyway. evelyn: now, my sources tell me, there's three votes for impeachment, three votes against impeachment, and one undecided. morty: who's that? evelyn: mrs choate. jerry: who's she? morty: oh, that one. she's been a member of the board longer than anybody. she's very tough to deal with. helen: maybe we should have her over for coffee, and explain our side of it? morty: that's a good idea. evelyn: okay. i'll see you at the lichtenberg's, tonight. helen: (surprise) the lichtenberg's? evelyn: yes, they're having a party. helen: we weren't invited. evelyn: oh. probably they think you're too good for them. you know, because of the car. jerry (v.o.): last week, on seinfeld. jerry (v.o.): ow. stupid fold-out! why'd they put the bar in the middle of the bed? jerry: hello? elaine: (flirtatious) hi jerry. jerry: elaine? wh..what's going on? elaine: (clears throat) i was thinking, i mean, i'm not really doing that much this weekend, and i thought, well, huh, what the hell, maybe i'll come down there and hang out a little. jerry: (a little confused) you wanna hang out here, at phase two of the pines of mar gables? elaine: well, it's just two hours by plane... jerry: gee, i dunno what to tell you. elaine: dammit! i got another call. uh, hang on, don't hang up jerry. elaine: yeah? george: (urgent whisper) elaine! you have got to get me marisa tomei's phone number! elaine: (impatient) okay, george, i am on the other line. i promise you, i'll get you her number. george: yeahhh. elaine: goodbye. elaine: (smiling and flirty) hi. jerry: hi. elaine: so, what d'you think? jerry: uh, i don't think so. elaine: (disappointed) oh. jerry: i'll be back on monday. elaine: well, if you need that ride, just uhm, gimme a call. (little laugh) heh. i can meet you at the gate, jer. jerry: yeah, yeah. whatever. alright, i'll see you. elaine: (urgent) jerry? jerry? jerry: (putting the phone back to his ear) yeah. elaine: (breathy) bye. jerry: bye. kramer: hello. john: hello, mister kramer? this is john hanaran, from con ed. kramer: ohh, it's hanaran now, is it? john (v.o.): yeah. we've had some reports of power surges in your building. it seems some jokers were up on the roof, and they must've damaged some of the wires. kramer: oh, you don't say. john: (a little confused by kramer) yeah. either way, we need to get into your apartment and do a safety check. kramer: (impressed) ohh, you're good. you are really good. john: (confused) what're you talking about? george: marisa tomei! i, just spoke to marisa tomei! (sitting opposite elaine) and i wasn't even that nervous. george: you know, i can't remember the last time i called a woman without being nervous. i, usually, i'm pacing all over the room, i'm... elaine: (looking at her watch) okay, well that's all the time we have for today. why don't we pick up with this next week? george: hey, where you going? elaine: i got stuff to do. george: what? you can't leave yet. elaine: why not? george: we have to discuss my alibi. elaine: alibi? what does that have to do with me? george: i usually spend saturday afternoons with susan. she's gonna want to know what i'm doing. i can't use jerry, he's in florida. elaine: oh, so you wanna say you were with me? george: yes. elaine: (pulls a face) puh. okay, fine. you were with me. george: wait a second, wait. why are we together? elaine: what is the difference? george: because, if you ever see her and it comes up, we have to be in sync. hmm? george: okay. now, why do i have to see (points) you? elaine: ah! because, i'm going to the dentist, and i'm afraid, and i want you to go with me. george: (dismissive) it's no good. elaine: (pointedly) okay. fine. george: what? elaine: i don't like the way you just rejected my suggestion. george: hey, hey, let's not get so defensive here. this is a give and take process. elaine: i thought that my suggestion was good. and, i think you could've been a little more tactful. george: (explaining, with lots of hand gestures) okay, look. we've never worked together on a lie. now, you don't understand how i work. i have a certain way of working. jerry and i have worked together a few times. he knows how i work. it's not a personal thing, y'know? we're just trying to come up with the best possible lie. that's what this is all about. elaine: (weary) okay. george: alright? elaine: okay. george: okay. elaine: fine. george: good. elaine: fine, fine, fine. george: okay. how about this? elaine: what? george: (pleased with himself) you are having problems with your boyfriend and i am meeting you to discuss the situation. elaine: i don't have a boyfriend. george: (still pleased) she doesn't know that. we say that you do. elaine: (not convinced) ech. george: it's good. believe me. elaine: i thought my idea was just as good. george: the dentist thing? elaine: (pointed) yeah, right. the dentist thing. george: alright, the dentist thing was not good. elaine: okay, alright. what's his name? who is he? george: (after a moment's thought) art vandelay. elaine: (incredulity) art vandelay? this is my boyfriend? george: that's your boyfriend. elaine: what does he do? george: he's an importer. elaine: just imports? no exports? george: (getting irritated) he's an importer-exporter. okay? elaine: okay. so, i'm dating art vandelay. what is the problem we're discussing? george: (thoughtful) yes. yes. elaine: (sighs) yi-yi-yi. elaine: ah! (explaining, with hand gestures) how 'bout this? how about, he's thinking of quitting the exporting, and just focussing in on the importing. and this is causing a problem, because, why not do both? elaine: (irked) oh, what? you don't like that suggestion either? george: it's very complicated. elaine: (definitely irritated) you know, it seems to me that it's all you, and none of my ideas are getting in. you know, i mean, you just know it all and i am miss stupid. right? morty: what're you doing? are you making coffee? helen: yeah. morty: well, maybe you better make a pot of tea, too. helen: morty, you're driving me crazy. morty: look, i don't want anything to go wrong. if this woman votes to impeach me, i'll be a laughing stock. helen: you wanna drive a cadillac? expect to pay the consequences. morty: there she is. morty: hello. hello, mrs choate. helen: oh, come in, come in. may i take your coat. mrs. choate: no, no. i prefer to wear it. nobody's taking my coat. helen: ah, how 'bout a cup of coffee or something? mrs. choate: coffee? ach. i'll take hot water with lemon, if you have it. helen: i'll see. (indicating the couch) have a seat. that's a lovely scarf you're wearing. where did you get it? mrs. choate: ahh, they're a dime a dozen. helen: oh, hi jerry. mrs choate, (indicating) this is my son, jerry. jerry: gimme that rye!) mrs. choate: stop it. let go. help! someone, help! jerry: shut up, you old bag! mrs. choate: (shouting after him) thief! stop him! stop him, he's got my rye! jerry: nice to meet you. mrs. choate: hello. morty: (holding jerry's shoulders) jerry lives in new york. you just came from new york, didn't you? mrs. choate: yeah. i was visiting my daughter, and i'll never go back. the crime there is just terrible. do you know i got mugged for a marble rye, right on the street? helen: (sympathy) oh, that's terrible. they stole a rye? why would they steal a rye? morty: that's what the city's turning into. they'll steal anything. mrs. choate: they're like savages. jerry: yeah, there's some sickos out there. mrs. choate: (peering at jerry) you look very familiar. have we ever met? jerry: you ever go to camp tiyoga? helen: maybe you've seen him on television. morty: jerry's a comedian. mrs. choate: naw, i don't watch tv. jerry: (opening the door) well, it was nice meeting you. morty: jerry, don't go. jerry: ah, i think i'll go. mrs. choate: so, morty, what's this all about? what d'you want? susan: hey, where're you going? george: wha..? i didn't tell you? i gotta go meet elaine. susan: elaine? what for? george: i don't know. she..she's having some problems with this guy she's seeing. susan: i didn't even know she was dating anyone. george: yeah, yeah. she's seeing this guy, art vandelay. susan: so what does he do? george: he's an importer-exporter. susan: what kind of problems are they having? george: (not happy delivering elaine's lie) well, he uh, he wants to uh, quit the exporting and uh, focus just on the importing. and it's a problem, because she thinks the exporting is as important as the importing. susan: are you having an affair with elaine? george: (trying to laugh it off) right. c'mon! i'm having an affair with elaine?! if i was having an affair with elaine, i wouldn't tell you i'm going to see elaine. i would make up some other person to tell you i was gonna go see, and then i would go see ela..elaine. susan: huh? nick: (yelling after the fleeing kramer) i'll get you! i'll get you kramer! you won't get away with this! morty: alright, are you ready to eat? helen: (glancing at her watch) oh, right, let's go. jerry, let's go, it's time to eat. we're going to dinner. jerry: (confused) dinner? w..what time is it? helen: (pulling on a coat) it's four-thirty. jerry: (bewildered) four-thirty? who eats dinner at four-thirty? morty: by the time we sit down, it'll be quarter to five. jerry: i don't understand why we have to eat now. helen: we gotta catch the early-bird. it's only between four-thirty and six. morty: yeah. they give you a tenderloin, a salad and a baked potato, for four-ninety-five. you know what that cost you after six? jerry: can't we eat at a decent hour? i'll treat, okay? helen: you're not buying us dinner. jerry: (emphatic) i'm not force-feeding myself a steak at four-thirty to save a coupla bucks, i'll tell you that! helen: alright, (sitting on the couch) we'll wait. (pointedly) but it's unheard of. george: ...so, anyway, if you think about it, manure is not really that bad a word. i mean, it's 'newer', which is good, and a 'ma' in front of it, which is also good. ma-newer , right? marisa: (laughing) you're so right. i never thought of it like that. manure. 'ma' and the 'newer'. marisa: did you just make that up? george: what, you think i'm doing material here? marisa: (laughs) no, no. it's hard to believe anyone could be so spontaneously funny. george: (modest) and i'm a little tired. marisa: so, tell me, how is it that a man like you, so bald, and so quirky and funny, how is it you're not taken? george: well, marisa. see, the thing is... i'm sort of engaged. marisa: what? george: i'm, you know, engaged. jerry (v.o): hey look, there's a spot right in front. morty(v.o.): always, jerry. always. doris: was that delicious or what? jack: where you gonna get a better meal than that? doris: better than danny's. jack: danny's? (scoffs) c'mon! morty: hello jack. helen: doris. doris: hello, hello. jerry: jack. doris: hello, jerry. jerry: hi doris. jack: hello morty. (looking at watch) well, missed the early bird. morty: yeah, so? jack: (pointed) must be nice to have that kind of money. jack: bernie, look who's eating at six o'clock. (pointed) your suddenly well-to-do president. but, you enjoy your last meal in office. tomorrow, they kick you out, you'll have plenty of time to drive around in your cadillac. morty: they're not kicking me out. you don't have the votes. jack: that's what you think. morty: we'll see. jack: yes, we will. jerry: awright, let's eat already. elaine: hi, susan. susan: hi. elaine: hi. come in, come in. have a seat. susan: (standing) uh, elaine, i have to ask you a question. elaine: oh, sure. susan: (dead serious) are you having an affair with george? elaine: (disbelief) wha...?! (uncontrolled laughter) ha ha ha. ha, no. elaine: (laughter) don't be ridiculous! (laughter) i mean, why would anyone wanna sleep... elaine: ...well, obviously... you know... (disbelief) ap..ap, chu... why would you think i was having an affair with george? susan: ohh, because he said that he had to talk with you earlier about some problem that you were having. elaine: (recalling the arranged lie) yeah, yeah, i did have to talk with him. i definitely had to talk with him. having a problem with my boyfriend. susan: art vandelay? elaine: yeah, art vandelay. susan: i'm sorry. (laughing it off) i feel like an idiot. elaine: (smiling) no, no. (laughing) huh-hu-hu. it's okay. susan: oh, just forget that we ever talked. okay? elaine: it is so forgotten. susan: alright. elaine: okay. (relieved) okay, no problem. susan: so, was george helpful at all? elaine: (unconvincing) yeah. oh, yes, yes, he was very helpful. (hesitant) uhm, because, you know, art and i were getting into this whole thing about his business. uhm, you know he's an importer-exporter. susan: (not convinced) yeah. elaine: (explaining, with gestures) uhm, george felt that i was too adamant in my stand that art should focus on the exporting and forget about the importing. susan: (spotting an inconsistency) wait a minute. i thought that art wanted to give up the exporting. elaine: what'd i say? susan: the importing. elaine: (caught out) i did. uh... susan: so, what does he uh, import? elaine: (extemporising) uh... chips. susan: oh. what kinda chips? elaine: potato. susan: ah. elaine: (embroidering) some corn. susan: and what does he export? elaine: diapers. susan: (fake smile) i'm sorry for bothering you. elaine: oh, no, it's okay. elaine: okay. elaine: (to herself) c'mon, george, pick up. oh, pick up. oh, pick up. george: hi. susan: hi. (pointedly) so, george, what does art vandelay import? george: matches? long matches. herb: ...there she is. okay, if i can have your attention for a minute here. we're calling this emergency meeting of the board of phase two, to consider a motion of impeachment of our president, (indicating) morty seinfeld. morty: nervous, jack? jack: what for? morty: because i have the votes. morty: nice to see you, mrs choate. mrs. choate: hello, morty. herb: building a. are you for, or against, the motion to impeach? ralph: what does that mean? herb: it means, if you're for the motion, you're against morty. ralph: so why don't you say that? herb: hey, i'm running the meeting. ralph: if you think so. herb: building a? building a: for impeachment. herb: building b? building b: against impeachment. herb: building c? building c: for impeachment. herb: building d? mrs. choate: against impeachment. jack: (a whisper to morty) i can't believe you got that old bag. mrs. choate: help! someone help! jerry: shut up, you old bag! mrs. choate: (after jerry) oh, thief! thief! mrs. choate: it's him. (pointing at morty) it's your son. now i know where i saw him. he stole my marble rye. morty: my son never stole anything. he's a good boy. ralph: they should lock him up. mrs. choate: (pointing at morty) like father, like son. (thumps table) i change my vote. i vote to impeach! building b: me too. i change my vote. herb: all those in favour, say aye. all (except morty): aye. herb: all opposed. herb: the ayes have it. the motion passes. herb: morty seinfeld, you are officially dismissed as condo president. as vice-president, jack klompus, in accordance with the phase two constitution, is hereby installed as president. herb: hear, hear, jack. nick: (weary) alright, i know you're in there. i know you can hear me. you win, okay? you win. i can't do it any more. what d'you want from me? apology? alright, i'm sorry. there, i said it, i'm sorry, i'm sorry. i see now how we made you feel when we made you sit home waiting. i dunno why we do it. (upset) i guess maybe we just kind of enjoy taking advantage of people. (reasonable) well, that's gonna change. from now on, no more 'nine to twelve', no more 'one to five'. we're gonna have appointments. eleven o'clock is gonna mean eleven o'clock. and, if we can't make it, we're gonna call you, tell you why. (worked up) for god's sakes, if a doctor can do it, why can't we? (almost sobbing) anyway, that's it. jerry: the bags are in the car, i guess we better go. elaine: mr. peterman sent me over here for a physical because as you may or may not know, he and i are going on a trip to kenya. africa. my first such mission for the company. the massai bushmen wear these great sandals and we're gonna knock them off. not the massai, the sandals. doctor: i'll need a urine sample. elaine: right. george: you know how hot it gets there? like 150 degrees. your skin is gonna be simmering with boils. elaine: oh, come on. jerry: hey george, you coming to the tonight show on thursday? george: hey, yeah. my parents want to come too, is that ok? jerry: yeah, sure. my parents will be there. elaine: the tonight show? jerry: yeah, they're in town this week, you wanna go? elaine: are you doing new material? jerry: no. elaine: i don't think so. kramer: hey. super's in my bathroom changing my shower head. have they changed your shower head? jerry: no, he's doing mine next. they're low flow you know. kramer: low flow? well i don't like the sound of that. elaine: so what are your parents doing here in new york? jerry: well, they were humiliated. i mean after the impeachment, my father left office in disgrace. elaine: so what are their plans? jerry: well, this is the problem. they're moving into this new development. here's the pamphlet. del boca vista. but they're not quite ready to go back so they're in seclusion here for a while at uncle leo's. elaine: you mean the three of them in that tiny apartment? jerry: no, leo's not there. he's got a girlfriend, lydia. in fact, he moved in with her. george: uncle leo's having regular sex? jerry: yeah, i know. it devalues the whole thing. jerry: (answering phone) hello? morty: jerry, what time do we have to be at the the tonight show on thursday. jerry: you gotta be there at 430. morty: but it comes on 1130. jerry: yeah, well they tape it in the afternoon and then they air it at 1130. morty: how long they been doing this? jerry: 30 years. morty: helen, did you know that they tape this thing in the afternoon? jerry: all right, i'll see you later. elaine: georgie, how come your parents never moved to florida? george: yeah, that is odd, isn't it? jerry: yeah, it is. george: i mean, they're retired. jerry: no economic reason for them to be here. george: they have no friends. jerry: no social reason for them to be here. elaine: you're all grown up. george: yeah, they're all through ruining my life. what the hell are they still doing here? lemme see this pamphlet. hm. all right, so i'll, uh, get back to you. helen: where can i buy some ice? your father likes a lot of ice. jerry: i don't know, maybe get an ice tray? helen: i can do that. jerry: you know dad just called me. helen: yeah, i know. his phlebitis is acting up. jerry: yeah, all right, well i got some people here. helen: ok. jerry: all right, bye. (to elaine) you see this? any thought pops into their head they're calling me because it's a local call now. elaine: ahh. jerry: i'm used to a 1200 mile buffer zone. i can't handle this. plus i got the dinners, i got the pop ins. they pop in! it's brutal! elaine: they have no idea when they're going back to florida? jerry: the only way out of this is if leo breaks up with his girlfriend and has to move back into the apartment and then they would have to go back to florida. elaine: how's that gonna happen? uncle leo: it's about time you called your uncle. we've got to do this once a week. jerry: (to himself) once a week? (to uncle leo) so how's lydia? uncle leo: ah, she's a real tiger. jerry: i don't know how you do it. uncle leo: what? jerry: a man like you, limiting yourself to one woman, i don't know. but it's none of my business. uncle leo: what are you talking about? jerry: well... uncle leo: look at this, i told them medium rare, it's medium. jerry: hey, it happens. uncle leo: i bet that cook is an anti-semite. jerry: he has no idea who you are. uncle leo: they don't just overcook a hamburger, jerry. jerry: all right. anyway, the point i was making before goerbbles made your hamburger is a man like you could be dating women twenty years younger. c'mon uncle leo, i've seen the way women look at you. when's the last time you looked in a mirror? you're an adonis! you've got beautiful features, lovely skin, you're in the prime of your life here, you should be swinging. if i were you i'd tell this lydia character, "it's been real," move back into that bachelor pad and put out a sign; open for business. uncle leo: believe me, i thought about it. but she is so perfect in every way, i can't see a flaw. jerry: well, keep looking. peterman: i'm afraid i have some bad news, elaine. it appears you will not be accompanying me to africa. elaine: what? why not? peterman: i'm afraid it's your urine, elaine. you tested positive for opium. elaine: opium? peterman: that's right, elaine. white lotus. yam-yam. shanghai sally. elaine: ihat's impossible, i've never done a drug in my life. dr. strugatz must have made a mistake. peterman: not a chance. i'm afraid i'll just have to find someone else to accompany me on my journey. the dark continent is no place for an addict, elaine. elaine: obviously, mr. peterman, there's something wrong with this test. i don't take opium. let me take another one, please? i'll call the doctor right now, i'll take a pop urine test. peterman: all right, elaine. elaine: oh, thank you mr. peterman. (drinks a glass of water) i'll be ready in three minutes. george: whew! boy, it's cold outside, huh? oh, these new york winters, huh. bitter cold, bitter. frank: i was out for five minutes before, i couldn't feel my extremities. estelle: what extremities? george: you know what the temperature in florida is today? eh? seventy-nine. that's almost eighty. yeah, i read someplace the life expectancy in florida is eighty-one and in queens, seventy-three. estelle: so george, why are you here? george: what, i can't stop by and visit my parents? (drops pamphlet on coffee table) estelle: what's this. george: that's where the seinfeld's are moving. they got a great deal. yep. you know what they got in florida? jai-alai! you bet on the games, you clean up. estelle: i don't bet. george: what about the dolphins? you could swim with the dolphins down there. estelle: i don't swim. george: you could pet them. they come right out of the water onto the sidewalks. estelle: are you trying to get rid of us? george: rid? nah, c'mon, the word is 'care'. care. i care about your comfort, be it here in queens or twelve-hundred miles away. elaine: no? kramer: jerry? jerry! kramer: wha, you too? jerry: yeah! kramer: these showers are horrible. there's no pressure, i can't get the shampoo out of my hair. jerry: me either. kramer: if i don't have a good shower i am not myself. i feel weak and ineffectual. i'm not kramer. jerry: you? what about me? i got the tonight show tonight. i'm gonna have to shower in the dressing room. kramer: (leaving) aw. jerry: where are you going? kramer: i gotta find another shower. kramer: they got you too? newman: this stuff is awful! i'm not newman! kramer: oh, elaine. yeah. elaine: kramer, you look terrible. kramer: look, i need the keys to your apartment, i gotta take a shower. elaine: what's wrong with your shower? kramer: there's no water pressure. elaine: why don't you just go see jerry? kramer: jerry's got nothing. newman's got nothing. you're the only one i know who's got the good stuff, and i need it bad, baby, cause i feel like i got bugs crawling up my skin. now you gotta help me out. peterman: (busting in) not on my watch! (grabs kramer by the collar) i won't have you turning my office into a den of iniquity! get your fix somewhere else! elaine: mr peterman! what are you doing? peterman: elaine, you're out of control. you need help. elaine: huh? peterman: i know what you're going through. i too once fell under the spell of opium. it was 1979. i was travelling the yangtzee in search of a mongolian horsehair vest. i had got to the market after sundown, all of the clothing traders had gone, but a different sort of trader still lurked about. "just a taste," he said. that was all it took. elaine: mr. peterman, i don't know what's going on here. i am not addicted to anything. peterman: oh, elaine. the toll road of denial is a long and dangerous one. the price? your soul. oh, and by the way, you have til' 500 to clear out your desk. you're fired. helen: all they serve is chicken? jerry: there's more food down the hall. morty: wrap it up, we'll take it home. jerry: oh, hi. estelle: hello seinfelds. morty: hello. helen: hi. frank: this is your dressing room? they treat you like toscanini. estelle: oh, jerry. i don't know how you could do this. i'm so nervous for you. jerry: actually, i'm drunk. george: hey, hey, how was florida? morty: well, we just bought a new place down there. estelle: i know, we were looking at the brochure. morty: what? helen: why, you thinking of moving? frank: not really. morty: because if you are, you shouldn't. there's nothing available in that development. frank: are you telling me there's not one condo available in all of del boca vista? morty: that's right. they went like hotcakes. frank: how'd you get yours? morty: got lucky. frank: are you trying to keep us out of del boca vista?! jerry: i know this doesn't seem like work to any of you, if you could perhaps conduct your psychopath convention down the hall, i could just get a little personal space. elaine: how could i have tested positive twice? once i could understand, that's a mistake. but twice? waitress: yeah, it's hard to figure. elaine: i mean i lost my job, i can't go to africa. i was gonna meet the bush-men of the kalahari. waitress: ah, the bush-men? elaine: and the bush-women. man: (also seated at the counter) excuse me. i couldn't help overhearing. i notice you're eating a poppy seed muffin. elaine: yeah, i eat these muffins all the time. man: well, you know what opium is made from... elaine: (as though receiving a revelation) poppies! jay leno: welcome back. talking with jerry seinfeld. jerry, lemme ask you, i saw some people back there, they look like.. family? is that family? jerry: yeah, i got some family backstage. course my family's nuts; they're crazy. yep. my uncle leo, (quick take of uncle leo in bet with lydia, watching jerry on tv. lydia is laughing, leo is not) i had lunch with him the other day, he's one of these guys that anything goes wrong in life, he blames it on anti-semitism. you know what i mean, the spaghetti's not al dente? cook's an anti-semite. loses a bet on a horse. secretariat? anti-semitic. doesn't get a good seat at the temple. rabbi? anti-semite. jerry: hey, listen to this, uncle leo broke up with his girlfriend because of the bit i did. she thought it was funny, so he accused *her* of being an anti-semite. they had a huge fight and now he's moving back into his apartment. you know what this means, my parents are gonna go back to florida... what? what number is this? oh, i'm terribly sorry. jerry: hey kramer, my parents are gonna have to move back to florida, isn't that great? kramer: (halfheartedly) yeah, well i'm really happy for ya. jerry: hey, you're not giving it to me, man. what's wrong? kramer: i just took a bath, jerry. a bath? jerry: no good? kramer: it's disgusting. i'm sitting there in a tepid pool of my own filth. all kinds of microscopic parasites and organisms having sex all around me. jerry: well, you used to sit in that hot tub? kramer: jerry, that was superheated water, nothing could live in that. jerry: (offering a plate) chicken? kramer: oh, yeah. elaine: well, this you're not gonna believe. i found out why i was testing positive for opium. poppy seeds! jerry: poppy seeds! kramer: well, that makes sense. (offers plate to elaine) want some chicken? elaine: yeah. thanks. so, i'm gonna get tested again later, hopefully i'll get my job back and i will be on my way to africa. jerry: hello newman. newman: hello jerry. well, i may have a solution to our little problem. elaine, would you excuse us? elaine: oh c'mon, newman. newman: i have a private matter to discuss with my fellow tenants. (opens door) if you don't mind? elaine: jerry? newman: look, sister, go get yourself a cup of coffee, all right? beat it! (pushes elaine out the door and closes it) all right, now here's the lowdown. from a certain connection, i've been able to locate some black market shower heads. they're all made in the former yugoslavia, and from what i hear the serbs are fanatic about their showers. jerry: not from the footage i've seen. newman: nevertheless, sometime this afternoon, behind the market diner, an unmarked van will be waiting. i'm expecting the call at any time. are you in? kramer: i'm down. newman: jerry? estelle: so, georgie, we have some big news for you. george: big news? estelle: we're moving to florida. george: (ecstatic) what? you're moving to florida!?! that's wonderful! i'm so happy! (pause) for you! i'm so happy for you! oh, what do you need this cold weather for? frank: has nothing to do with the weather, it's because of the seinfelds. george: what do you mean? frank: they don't want us there, so we're going. we're moving right into del boca vista! george: so you're moving there for spite! frank: absolutely. no one tells frank costanza what to do! george: that's right, who the hell are they? how dare they?! estelle: so, georgie, are you gonna come to visit us? george: oh, every chance i get. estelle: (warmly) ohhh. george: jerry? jerry! i'm busting! i'm busting! jerry: what's going on? george: my parents are moving to florida! jerry: are you kidding? george: can you believe it? it's happening! it's finally happening! i'm free!! jerry: where are they moving to? george: del boca vista! jerry: del boca vista, that's where my parents are gonna live! george: i know! jerry: we could visit together! george: every five years! jerry: that's incredible! george: i know, i know and you know *why* they're moving there? jerry: why? george: to spite your parents! jerry: to spite my parents? george: yeah! jerry: your parents are crazy! george: i know, they're out of their minds! it's fantastic! jerry: my parents are moving back too! george: beautiful! morty: i'm sorry leo's moving back here. i'm not ready to go back to florida. helen: he was getting along so well with that woman, what happened? morty: hello? voice: this is frank costanza. morty: what do you want? frank: you think you could keep us out of florida? we're moving in lock, stock and barrel. we're gonna be in the pool. we're gonna be in the clubhouse. we're gonna be all over that shuffleboard court! and i dare you to keep me out! morty: i'm sorry, we can't go back to florida. george: i can't believe i didn't push for this sooner. jerry: you have no idea how your life is gonna improve as a result of this. food tastes better. the air seems fresher. you'll have more energy and self confidence than you ever dreamed of. jerry: hello. morty: hello, jerry? it's your father. jerry: oh, hi dad. morty: listen, is it all right if we move in with you for a little while? sounds of breaking glass, jerry dropped his bottle. morty: what was that? jerry: nothing. a bottle broke. that's all. what do you mean, you're gonna move in here? morty: because the costanzas are moving into del boca vista. jerry: but it's a big complex. morty: you don't understand, you gotta have a buffer zone. jerry: all right, fine. come over here. (hangs up phone) george: what? jerry: they're not going back to florida. they're moving here. george: what? why? jerry: because your parents are going down there. my buffer zone just went from twelve hundred miles down to two feet! you gotta do something. george: hey, i'm sorry, you had your buffer zone for many years. it's my turn to live, baby. jerry: you know what you're doing, don't you? you're killing independent jerry! i gotta go see my uncle leo. i think he may have made a big mistake. uncle leo: move back with lydia? jerry: c'mon, you're lucky to have anybody. uncle leo: last week you told me i was in my prime, i should be swinging. jerry: swinging? what are you, out of your mind? look at you, you're disgusting. you're bald, you're paunchy, all kinds of sounds are emanating from your body twenty-four hours a day. if there's a woman that can take your presence for more than ten consecutive seconds, you should hang on to her like grim death. which is not far off, by the way. uncle leo: but she's an anti-semite. jerry: can you blame her? helen: you don't think he minds us staying here, do you? morty: why would he mind? we're his parents. elaine: oh. helen: hi elaine. elaine: hello. jerry's not here? helen: no. elaine: huh. (pause) oh my god. helen: what? elaine: a poppy seed! it must have been in the chicken. oh, i'm dead. i'm going to the doctor's in a half an hour. helen: why? elaine: it's a long story. helen: just a second, i have to go to the bathroom. elaine: what are you gonna do in there? helen: what am i gonna do in the bathroom? elaine: you gotta do me a favor. helen: elaine, i really-- elaine: hold on a second. mrs. seinfeld, i need your sample. helen: you want my urine? elaine: i need a clean urine sample from a woman. helen: i don't know. elaine: oh please, mrs. seinfeld, please? helen: well, what am i gonna do it in? elaine: well, one of those glasses. helen: jerry's glasses? elaine: yeah, he won't mind. c'mon, you're his mom. helen: oh, i could uh-- should i use a coffee cup? elaine: yeah, a coffee cup's fine. helen: or maybe a juice glass. elaine: yes, fine, fine, a juice glass is perfect. helen: this one is kind of scratched. elaine: it doesn't matter. helen: howbout a milk glass. elaine: a milk glass, a juice glass, any glass, just pick a glass. helen: jerry doesn't wash these very well. elaine: mrs. seinfeld, pick a glass! pick a glass, mrs. seinfeld! salesman: all right, i got everything here. i got the cyclone f series, hydra jet flow, stockholm superstream, you name it. jerry: what do you recommend? salesman: what are you looking for? kramer: power, man. power. newman: like silkwood. kramer: that's for radiation. newman: that's right. kramer: (pointing to the largest one) now, what is this? salesman: that's the commando 450, i don't sell that one. what about thi- kramer: well that's what we want, the commando 450. salesman: nah, believe me. it's only used in the circus. for elephants. newman: we'll pay anything. we've got the (hands a wad of money to kramer) what about jerry? kramer: he couldn't handle that, he's delicate. helen: it's nice being back at leo's jerry's place was too small. morty: first leo breaks up, then he goes back. what the hell's going on? morty: who is it? super: it's the super. we're installing new low-flow showerheads in all the bathrooms. morty: low flow? i don't like the sound of that. peterman: so as a result of your test being free of opium, i am reinstating you. elaine: oh! yes! what a load off. so when are we going to africa? peterman: i'm afraid i can't take you. elaine: what? why not? peterman: elaine, according to your urine analysis, you're menopausal. you have the metabolism of a sixty-eight year old woman. elaine: but i wanted to see the bushmen. peterman: oh, and one more thing. you may have osteoporosis. jerry: well, it's been a great visit. morty: jerry, i'll tell ya. the first thing i'm gonna do when i get back to florida is take a shower. jerry: well, at least the costanzas changed their mind and decided not to move. they couldn't bear being away from george. helen: george must be happy about that. jerry: you have no idea. frank: take my swim trunks. i won't need them. estelle: what does he want with your swim trunks? frank: why should they go to waste?!? [setting: night club] jerry: thank you! goodnight! (walks off stage, sighing deeply. instantly, a red-headed woman runs up and hugs him - taking jerry by surprise) sally: jerry! jerry: (trying to ward her off) hey. hey! sally: (reminding him who she is) sally weaver! (sees jerry's expression - he still has no clue who she is) susan ross' roommate from college.. hello! (laughs slightly) jerry: right.. oh, i'm sorry. uh, oh, so you saw the show? sally: saw it? i loved it! and thank you for the free tickets. you are so funny. jerry: (modest) oh, thanks. sally: (serious) no, no, i mean it. you're very funny. jerry: (blunt) i believe you. sally: oh, anyway, let me show you memphis. i am taking you (points to him) out to dinner. jerry: (grabbing his coat) oh, i'm sorry, i can't - i'm going straight to the airport. sally: ohh.. that's too bad.. susan thought we'd really get along - i guess because we're both wacko! (jerry laughs) you know what, um.. (turns around, picking up a large gift from a table) you have to give this to them for me. okay? here. (hands the box to jerry, he struggles under the size of it) it's a wedding present. jerry: oh? sally: and jerry? be careful with it, okay? be very careful. jerry: uh-huh. [setting: the coffee shop] frank: george, as you may be aware, your mother and i are not moving to del boca vista, florida. george: (resenting the fact. nodding) i am aware. frank: so, i was wondering, would it be okay if i turned your room into a billiard parlor? george: a billiard parlor? frank: regulation table, the hi-fi, maybe even a bar.. give it real authenticity.. george: well, that's.. elaine! elaine: oh, hi, frank. george: (sliding over to make room for her) sit down. join us, please. elaine: (trying to come up with an excuse not to sit with them) actually, i gotta get to the.. uh.. thing. george: (somewhat stern) oh, the thing's cancelled. sit down. elaine: (giving up) okay.. (sits, george laughs) so.. (trying to think up something to talk about) frank, did george ever show you that photo? george: (confused) what photo? elaine: you know, the photo i took in tuscany of the little man in front of the sign that said "costanza"? frank: (interested) there's a costanza in tuscany? (elaine nods) did he look like me? did you talk to him? elaine: i didn't talk to anyone - i was just walking by, and i saw the sign, and i thought george might get a kick out of it. frank: i gotta get that picture - it could be my cousin, carlo. elaine: who is that? george: (muttering out, not really wanting to talk about his family) when the costanzas came here, one brother stayed behind. frank: i played with him every day until the age of four - and then we separated. elaine: so, you weren't born here? frank: no. that's why i can never be president.. it always irked me. that's why, even at an early age, i had no interest in politics. i refuse to vote. (yelling out) they don't want me, i don't want them! george: i don't know what you're getting all riled up about. there are probably a million costanzas- frank: (cutting him off) don't bring me down. (to elaine) do you have another copy of that photo? elaine: no, i, i don't. but.. well, the maestro might. frank: the maestro? what maestro? elaine: he's this guy that i went to tuscany with. he's a great guy, but i just wouldn't feel comfortable calling him. george: really? why? elaine: (explaining) because he hasn't called me since we got back.. i spilled wine on his 8 by 10 photo of one of his favorite italian opera stars. george: who? elaine: you know the three tenors? george: yeah.. (trying to remember) poverotti.. domingo.. and.. uh.. the other guy. elaine: (nodding) the other guy. [setting: airplane] stewardess: (overly nice) could i take that box for you? jerry: uh.. well, you better not. i'm supposed to be careful with it. stewardess: oh, then, i'll have to put your bag in the over-head. jerry: oh, okay.. stewardess: there we go. [setting: jerry's apartment] jerry: ohh.. look at this.. kramer: what? jerry: i bought a bottle of bbq sauce in memphis. i think the stewardess broke it when she tried to jam it into the overhead compartment because of this kramer: well, don't press the panic button. i'm sure that we can still salvage some sauce.. jerry: i don't care about the sauce. it came in this funny little bottle, and there was a guy on the label that looked exactly like charles grodin. kramer: (taking some of jerry's clothing over to the kitchen) i see.. jerry: no, you don't see - because i'm going on the show this week, and this was going to be my bit on the show. kramer: well, why don't you do your material? jerry: i'm out. kramer: (looking up, sighs) well, you better get to work. jerry: (sarcastic) thanks for the tip. george: hey, buddies. jerry: hey. hey, this is for you. (taps the gift) it's from.. uh, susan's roommate, sally. george: oh yeah.. (starts to open it) sally called susan - said you guys really hit it off. jerry: (annoyed at the thought) nobody hit anything off. she just gave me the box. (looks over at kramer. he is scraping the bbq sauce off jerry's clothes with a knife, then dipping some bread into it) what the hell are you doing? kramer: (looks up) i'm salvaging the sauce. what's the matter with you? (eats the bread) jerry: (pleading) hey, hey, hey. come on, come on. kramer: (moving out into the living room) jerry, why don't you do a bit on styrofoam? jerry: like what? kramer: well, uh.. (starts to impersonate jerry's act) "what is this stuff? why do we need this stuff?.. and why do they make it so small..?" jerry: (confused) where's the punchline? kramer: it's all attitude.. (makes a humorous face - mocking jerry's) goerge: (taking out a mat from the huge box) well, this is certainly a crappy gift.. jerry: a door mat? that's what she had me lug up from memphis?! george: pretty chintzy, huh? considering the money she makes.. she's a big executive for federal express. jerry: federal express?! is she out of her mind? why didn't she just ship it?! kramer: look, it's personalized. (holds it up, reading) "the costanzas" george: no, no. forget it. i don't want it. let's just get rid of it. kramer: well, maybe your father would be interested in that. george: i doubt it. you know what he's doing now? he's putting a pool table in my old bedroom. kramer: (interested) oh yeah? well, maybe i'll go out there and knock a few balls around with him. you know, show him a thing or two.. [setting: george's old bedroom] kramer: so, what's your game? what do you like to play? frank: eight ball. kramer: no, nothing doing. let's, you and me, play a game of straight pool.. hmm? frank: you like to gamble, cosmo? kramer: yeah, now and then - you know how it is.. frank: five dollars a game, huh? kramer: i'll break. frank: okay. [setting: george and susan's apartment] george: what's all this? susan: oh, i'm just moving in some more of my stuff. george: (muttering to himself as he walks to the bedroom) more stuff.. susan: (calling out) oh, i put up my doll collection.. george: oh my god! what is that?! susan: (rushing in) what? what is it? george: (staring at the doll) this doll (pointing) looks like my mother. susan: george, it's a doll. george: i know it's a doll, but it looks like my mother! susan: (going back to the living room) oh, get outta here.. [setting: george's old bedroom] estelle: what's going on in here? (kramer hits the cue ball, it jumps up from the table and flies off screen) are you two still playing?! you've been up here three hours! frank: we still haven't finished the first game. estelle: the first game?! kramer: (explaining why they are doing so bad) well, we're still, uh, learning the subtleties of the table. frank: (to estelle) he knows the maestro. he could have the picture.. estelle: oh, forget about it. it's not your cousin. frank: (yelling out) you don't know that! (estelle leaves, slamming the door) we're gonna go see him, huh? kramer: (judging up his next move) as soon as the game is over.. frank: (sensing the game is going to last a long time) oh boy. kramer: eleven, corner pocket. (pulls back on his stick, accidentally crashing it into the window) [setting: george and susan's bedroom] george: what is this thing doing here? susan: oh, i used to love to sleep with my dolls when i was a little girl.. george: uh, i'm sorry, i can't do this.. susan: why? george: i feel like i'm in bed with my mother. susan: oh, stop it. [setting: jerry's apartment] jerry: hey, elaine, you have got to buy this new electric toothbrush i just got - the ori-dent. elaine: (just making conversation) oh yeah? jerry: oh, it's unbelievable. every time you use it you feel like you just came from the dentist! elaine: (mock enthusiasm) oh, that's dynamite. jerry: hey, what are you doing tomorrow? you want to come see me on the charles grodin show? elaine: who else is on the show? jerry: uh.. one of the three tenors. elaine: (interested) the three tenors? (stands up) which one?! jerry: uh.. it's not poverotti.. it's not domingo.. elaine: (extremely excited) the other guy?! jerry: (nodding) yeah, the other guy. elaine: (screams out in joy) my god! i can't believe the other guy's going to be on the show! jerry: why? elaine: because i ruined this autographed picture of him that belonged to the maestro. you think i can go and get his autograph? jerry: why not? elaine: (extremely giddy) wow! the other guy! jerry: hey, you look awful. george: (sitting on the sofa) i'm on no sleep, bro. jerry: problem in the bedroom? george: (muttering) susan has the doll collection.. one of the dolls looks exactly like my mother.. she likes to sleep with it. jerry: wow. you were in bed with your mother last night? george: (long pause) ..felt like it. i tell you, this doll is pretty spooky. (takes off his glasses, rubbing his eye) it's freakin' me out man. and now i got to go back out there and pick up this doormat. jerry: i thought you didn't want the doormat. george: i don't. susan wants to have it out when sally comes tomorrow. jerry: sally? (getting upset) wait, wait a minute - she's coming to new york? george: yeah, (smiling) susan said you'd be excited. jerry: excited? i'm gonna kill her! she knew she was coming here and she made me carry that box?! elaine: who's sally? george: susan's college roommate. jerry: it's because of her that bottle got broke that i was going to give to charles grodin on his show. george: so call her up and tell her to bring you another one. she'll be delighted to talk to you. jerry: (while opening a cereal box) i will - don't worry. (plotting revenge) in fact, i'll have her bring up a whole case of the stuff. it'll be really heavy. let's see if she likes sitting on a plane with a big box on her lap! elaine: that's sounds pretty juvenile. jerry: (pulling out the toy from the cereal box - he displays even more immaturity by holding it up, smiling) hey! a dinosaur! [setting: the maestro's office] frank: his name was carlo costanza. we played together everyday until i was four. if i could just look through your photographs, maybe i could recognize him. maestro: unfortunately those photographs are at home. kramer: well, listen, if you bring 'em by, maybe we could interest you in a game of pool.. yeah, frank here - he's got his own billiard room. frank: (trying to concentrate) yes, it's, uh, it's.. uh, uh.. what do you call it, kramer? kramer: a billiard room. frank: no, not billiard.. (scolding) not billiards.. it was.. come on, already. come on.. kramer: (confused) what? frank: we call it.. the, uh.. kramer: (snaps) the place to be! frank: the place to be! yes! it's the place to be. maestro: (agreeing to a game) ah, then i shall be there. and now, gentlemen, (making dramatic actions) if you will excuse me - i must prepare for the symphony. kramer: oh, yeah? maestro: (noticing the expressions) ohh, my pants. (begins putting on a near-by pair of pants) it's an old conductor's trick i learned from leonard bernstein. kramer: really? maestro: you keep a perfect crease by not sitting in them before the performance. kramer: that's good thinking. [setting: jerry's apartment] george: you see?.. you see?! jerry: well, it doesn't look exactly like her. george: jerry, come on. if my mother keeps shrinking, this is exactly what she's gonna look like in ten years! jerry: why don't you just get rid of it? george: i tried! i almost threw it down the incinerator, but i couldn't do it. the guilt was too overwhelming. (grabs the doll, opening the door to leave) susan's so attached to this thing. jerry: wait, where are you going? don't take your dolly and go home. george: hi, elaine. elaine: did you see that?! jerry: i'm just glad it's outta here. (elaine exhales deeply - getting over the scare of the doll. she moves into the apartment) what's that? (pointing to a rolled up poster elaine is carrying) elaine: oh, it's a poster of the three tenors. jerry: oh. (intercom buzzes, jerry answers it) yeah? sally: (through the intercom) it's sally. jerry: oh, did you bring the bar-b-que sauce? sally: a whole case. jerry: (letting her up) excellent. (to elaine) so, did you buy that electric toothbrush i was telling you about? elaine: (blunt, to the point) no. jerry: how come? i told you - it's fantastic. elaine: eh, i like mine. jerry: i've had yours, i'm telling you - this one is ten times better. don't you believe me? elaine: i don't want it. jerry: (slightly confused by her behavior) i don't understand this. why wouldn't you want to get something that's better if i'm telling you it's better? and it's not a little better - it's much better. elaine: (not committing to the conversation) it doesn't matter to me. jerry: come in. sally: (peppy) well, here i am! jerry: oh, hi. elaine, this is sally. elaine: hi. jerry: how was your flight? (wishful thinking) pretty uncomfortable? sally: (setting the box down on his table) actually, the seat next to me was empty, so, there was no problem at all. jerry: (let down) oh.. (starts to open the box) oh, wait.. (holding up one of the bbq jars) this isn't the sauce that i asked for! sally: that's right. it's a special gourmet sauce. "the pride of memphis!" jerry: (complaining) no, no. i wanted the one in the little bottle with that guy on it that looks like charles grodin! sally: this is much better. and frankly, in memphis, we think that other sauce as (whispering) kind of a joke. jerry: i know it's a joke. it's supposed to be a joke! now i'm going on the charles grodin show with nothing. (sets the jar down angrily) nothing! sally: you could just do your material. jerry: (peeved) i don't have any material! elaine: (yelling out) he's got nothin'! [setting: the coffee shop] doll: georgie! don't eat with your hands! (george starts eating faster) why do you eat so fast?! you can't even taste it! george: (losing it) don't tell me how to eat! doll: you're wearing that shirt? you've had it for five years already! why don't you get a new shirt?! george: (trying to keep it down) because i like this one! (notices people staring at him, he quickly gets up, collecting the his coat and the tiny replica) c'mon, let's go. let's go! (on his way out, he stops in front of a woman blocking his path) oh, hi.. (embarrassed about the doll, he sheepishly walks out) woman: (to ruthie, the cashier) that man should really be in a sanitarium. (ruthie nods, agreeing) [setting: george's old bedroom] kramer: now this is remarkable. i'm lounging, and yet, my pants remain perfectly creased. frank: it's him! (standing up) it's carlo costanza! kramer: come on. are you sure? frank: i'd know him anywhere. maestro: i've seen that man in tuscany. eccentric fellow. reputation of being kind of a village idiot. frank: i still say we're related. maestro: (recognizing the currently playing song) ohh, i love this piece. (turns it up, then pantomimes that he is conducting the instruments) kramer: alright, come on frank. it's your shot. frank: (complaining) i can't make anything.. kramer: (like a professional) well, that's because you don't know how to follow through correctly. frank: follow through? what do you mean? kramer: right here, come on, i'll show you.. (gets behind frank, holding the pool stick with him) take hold of your stick.. alright, bring it back slowly.. frank: it's a little unnatural, but i think i'm getting the hang of it. estelle: oh, my god! [setting: jerry's apartment] jerry: (still ticked off) that woman is such an idiot! i was gonna do this whole bit on that bottle - and now i got nothing to talk about. elaine: well, have you ever considered writing new material? jerry: well, maybe if i didn't have so many people in my apartment all the time i'd be able to get some work done. elaine: (getting the hint) me? are you talking about me? jerry: (deeply sarcastic) no. you're never here. elaine: (reflecting) boy, that doll was really freaky, wasn't it? jerry: yeah. really. (forming and idea) hey, you know what? maybe i could talk about that on the show. elaine: what? jerry: show the doll - show the picture of george's mother.. it's pretty funny. (moving toward the phone) i'm gonna call them. sally: hello? jerry: hello, susan? it's jerry. sally: hi jerry, it's sally! jerry: (disappointed) oh. is george there? sally: no, but he should be home soon. jerry: uh, listen, this is important. tell him to meet me at the tv studio with a picture of his mother and that doll that looks like her. sally: is this for your comedy routine? jerry: (obviously resents talking to her) yes. sally: (gasps) don't worry. (like a detective) i'm on the case. [setting: george's old bedroom] maestro: (sighs slightly) i, uh, think i'll get some air. (slowly leaves) kramer: yeah.. (sizes up his next shot. his stick jams into the window as he draws back) see? this is no good.. (looks around the room. his sights fall on the maestro's baton) hey, the baton. (chalks it up) i got a hunch, fat man, i can't miss. (measures up his shot) 13 in the side pocket. (does just that) giddy-up. (moves around to the other side of the board, judging his next move) six in the corner. (hits it in) this table's mine. (a series of kramer's plays are displayed, and, on the last ball of the game..) you know where it's going.. [setting: the charles grodin show dressing room] elaine and jerry: hey! elaine: is george here? jerry: not yet. (points over to a man sitting in one of the room's chairs. whispers) the other guy. elaine: it's.. .. you! it's really you! oh, i'm such a huge fan of yours. would you mind signing this poster for me? carreras: my pleasure. (reaches for a pen as elaine unravels her poster) elaine: (as he is signing) oh, thank you so much. (he finishes. elaine gives out a happy gasp) thank you so much, mr.. (tries to read his signature) camaro. (carreras gives her a look as he is getting up) mr. casea? (he walks off as elaine rolls the picture back up. jerry gives his "that's a shame" face) well, whatever. (to jerry) i'm gonna take this to the maestro. he's, he's playing at the queens convalescent center. jerry: (joking around) well, that's one hell of a gig. (turning around, he picks up a box labeled "ori-dent") hey, look, i got something for you. the ori-dent! elaine: (mock joy) ohh.. thank you. (accepts the gift) huh.. (struggles under the size) wha-- why does a toothbrush come in such a big box? jerry: well, it's a delicate mechanism - it, you know, needs lots of packaging. elaine: (still trying to get a grasp on the package) how am i supposed to carry this thing? (she looks up to see jerry taking his pants off) what are you doing? jerry: well, i want to sit down. elaine: so? jerry: it's a trick i just learned from kramer. it keeps a crease in the pants. (folds his pants over the head of a chair, then sits down in another. when he sees elaine's staring at him, he makes a "tada!" gesture with his hands. elaine holds her hand up - as if to say "i'll see ya.", and while she's slowly walking out jerry gives her a salute) [setting: george's old bedroom] maestro: (making his exit, he lays the charm on mrs. costanza) madame, you have been an extremely gracious hostess. (kisses her hand) estelle: (coy) ohh.. thank you, maestro. (giggles to herself as the maestro leaves) frank: (holding up a picture) here, take a look at this. estelle: (looking at it) yeah, what is it? frank: it's carlo. i found him! estelle: (handing the picture back) you've been cooped up in this room too long. frank: (yelling out) you never support me! let's see what george says about this.. where're my pants? (takes his pair off a rack and leaves) kramer: (taking his pair off, he inspects them) aw, beautiful! [setting: the charles grodin show dressing room] sally: hey there, mr. hairy legs! jerry: (surprised to see her, he gets up) where's george? sally: don't worry, i brought your doll.. (pulls out an extremely different doll - this one resembles a baker) tada! jerry: (complaining) no! that's the wrong doll! sally: jerry, i saw the doll you were talking about - not funny! this doll's much funnier. look, it has a little bowtie, and a cute little hat.. i think it's a riot! jerry: (slow whispering) this is a nightmare. sally: oh well, i'll be watching. (sets the doll down, then crosses her fingers) don't screw up. (leaves) jerry: my pants! stagehand: mr. seinfeld, you're on. [setting: nyc street] maestro: elaine? what a surprise. elaine: i know you're very busy, but i just wanted to come by and give you this. maestro: ohh.. (looking at the box) ori-dent - that electric toothbrush i've heard so much about.. elaine: no, no, no. not the toothbrush.. (holds out the poster) this. maestro: ohh, what a sweet gesture. and autographed poster of my favorite tenor, with.. those two other guys. oh, elaine, this is magnifico! elaine: oh, well, i just felt so bad about what happened in tuscany.. stagehand: (yelling from off-camera) maestro, you're on! maestro: oh, elaine.. wait for me after the concert? we'll celebrate. elaine: oh, ok! (picking up the ori-dent box, she knocks over a bottle of wine. it spills all over the poster) [setting: george and susan's apartment] susan: i want to know why you took my doll out of the house. george: i just wanted a second opinion. frank: (holding up the picture) take a look at this. doesn't that look like my flesh and blood? of course, your mother- (his attention is drawn over to susan's doll. like george did earlier, he starts to imagine that the doll is scolding him as his wife would) doll: oh, stop bothering everybody with that picture. it's ridiculous! frank: (walking toward the doll) ridiculous?! i'll show you ridiculous! (struggles with susan for possession of the doll) come here! susan: (pleading) no, mr. costanza! no, no! frank: (holding out the head in his hand, he addresses it) there! now what have you got to say for yourself?! george: (to susan) i told you it looked like her.. [setting: a street in tuscany] frank: (sets a gift he's brought down) carlo! it's me, frank! (attempts to hug the guy, but he resists - pushing frank away. he scolds frank in another language) i'm your cousin, frank! aren't you carlo? man: carlo? no. mi nome e giuseppe. frank: (realizing) what do you know.. alright. (picking up his present) i guess i was wrong. (walks off) george: (joyful) june. it's june. george: (high-fiving) hey! george: it's june.mark's michelle is a dog. george: june, june, june. george: (to passerby) hey, he-hah. it's june, june. george: it's juu-uu-une! hey hay. yes. george: i love juu-uuu-uu-uune! george: june. juune, baby! jerry: what? george: the catering hall screwed up. the wedding is delayed until june. it's like a stay of execution. jerry: dead man walking. george: (pointing to jerry in joyous agreement) ha-ha-hah. this is my lucky day. jerry: well, one outta twenty thousand. that's not bad. george: yeah. hey, wait a second, you know, good news for you too. susan's best friend, hallie? broke up with her boyfriend. jerry: she did? george: yeah. jerry: so? wheels? george: in motion. the wheels are in motion. jerry: beautiful. george: aah, hey. (enthusiastic) if this works out, forget about it. vacations together, movies together, dinner together. it..it's almost as good as if i didn't get married. jerry: so, set it up. you know what, we could have dinner at the friars club. george: the friars club? jerry: yeah, i'm thinking of joining. pat cooper said he would put me up for membership. kramer: hey everybody. (to jerry) listen, uh, do me a favour, will you? i got a hot date tonight with connie. knock on my door, wake me up in twenty minutes, alright? jerry: catnap? kramer: no, no, no, no. (comes in) this is evolutionary. i been reading this book, on leonardo de vinci. see, that means 'from vinci', d'you know that? jerry: (deadpan) that must be some book. kramer: yeah, well, turns out that the master slept only twenty minutes every three hours. now, that works out to two and a half extra days, that i'm awake per week, every week. which means, if i live to be eighty, i will have lived the equivalent of a hundred and five years. jerry: just imagine how much more you'll accomplish. kramer: oh, i got a lot of things in the hopper, buddy. jerry: i didn't know you had a hopper. kramer: (smiling) oh, i got a hopper. a big hopper. peterman: alright, people, i'd like to begin with a hearty hail and well-met good fellow, to bob grossberg, who's joining us from business affairs. bob: thanks. hi everybody. peterman: bob, we have a little baptism by fire for you, so to speak. elaine: (whispers) poor bastard. peterman: (to bob) i want you to handle all the fact-checking and the copy-editing for the new catalogue. bob: ah, could you repeat that? peterman: (slower and louder) why don't you handle all the copy-editing? bob: (apologetic) i..i'm sorry. what? peterman: (louder still) copy-editing! peterman: eh, never mind. (turns to elaine) elaine, you do it. jerry: hi, i'm jerry seinfeld. pat cooper made a reservation for me. maitre d': yes, mr seinfeld, but uhm, all gentlemen are required to wear jackets in the dining room. jerry: (downcast) oh, i'm sorry. hallie: (smiling) how embarrassing this must be for you. jerry: (jocular) you just bought your own dinner. maitre d': no problem. please, follow me. jerry: (passing hallie) 'scuse me. george: (smiling) ho ho. funny. isn't he funny? funny guy. ha ha ha. george: friars. jerry: hey, not bad. (pointing to crest) i kinda like this little thing here. maitre d': this way please. george: hup, here we go. here we go. george: (adamant) ah, c'mon! i'm telling you, i can coach for the nfl. it's not that hard susan: (to hallie) mmm, mm, mm. hallie (points to her plate) taste this fish. it's really delicious. jerry: (to george) that might be the stupidest thing you've ever said. george: (to jerry) oh, get outta here. jerry: (to george) i mean, come on. (a thought occurs) no, the stupidest thing you ever said was when you said steve kroft from sixty minutes is the same guy from *seals and croft*. hallie: (to susan) mmm, it is good. susan: (to hallie) what do you think about having fish for the wedding? george: (to jerry) you watch the old videos. (insistent) i'm telling you, look at him. hallie: (to susan) oh. remember (indistinct) wedding? jerry: oh, come on. george: look... jerry: alright. jerry: (looking at kramer) this is nice. kramer: yeah, morning. jerry: morning? kramer: yeah, what time is it? jerry: (looks at watch) ten-thirty. kramer: (pleased) ah, see. (rubs his hands together) i got the whole night ahead of me. (looks at jerry) boy, that's a nice jacket, huh? jerry: (realising) ohh, i don't believe this. i forgot to give it back. it belongs to the friars club. kramer: yeah, i like that crest. (he shakes cereal into the bowl) alright, here we go. jerry: breakfast? kramer: (pouring cereal) oh yeah. most important meal of the day. jerry: so this da vinci sleep is working out? kramer: (enthusiastic) oh, i'm percolating, jerry. i'm telling you, i have never felt so fertile. i'm mossy, jerry. my brain is mossy. listen to this idea. (fetches a spoon from the drawer) a restaurant that serves only peanut butter and jelly. (clicks tongue) jerry: what d'you call it? kramer: p b and j's. what d'you think? jerry: (deadpan) i think you need more sleep. kramer: (dismissive) ahh. jerry: so, how'd your date work out with the mysterious connie? kramer: i am telling you, this woman is strange. she never wants to leave the apartment. it's almost like she doesn't wanna be seen with me. jerry: oh, now you're being ridiculous. kramer: (laughing) he he, yeah. jerry: (indicates the bowl of cereal) no milk? kramer: oh, i'll be back. kramer: (quietly) jerry. kramer: (quietly) hey jerry. kramer: (prodding jerry) c'mon buddy. jerry: (startled) kramer! kramer: you awake? jerry: (confused) wha..? what time is it? kramer: w...it's four. jerry: (aghast) four in the morning?! kramer: yeah. jerry: well, what's wrong with you? kramer: i'm bored. i got all this free time on my hands, i dunno what to do. you wanna do something? jerry: no. would you just get out? kramer: you wanna rent a movie? jerry: no! kramer: well, what am i gonna do? jerry: ready for lunch? elaine: (irked) i'm stuck here, editing the stupid catalogue, because of stupid bob grossberg. elaine: listen, there is something really suspicious about this guy. every time mr peterman tries to assign him any work, he says he can't hear, and it all gets dumped on me. jerry: you think he's faking? elaine: i don't know. but i'd like to try that earpiece on, see if it's real. bob: hey elaine. (he spots jerry) oh, you have a friend. bob: (to elaine) just wanted to say hi. elaine: bob, you know what? i'm kinda swamped here. you think you could give me a hand with some of the catalogue? bob: (cupping his hand behind his ear) i..i'm sorry. what? elaine: (slower and louder) i'm kind of swamped. bob: thank you. i'm having lunch with mr p. i better get going. elaine: did you see that? did you see that, jerry? jerry: that was him? elaine: yes. jerry: somehow i thought he'd be taller. elaine: alright, listen, we'll have to do this again some other time, okay? i got a lotta work to do. jerry: (standing) alright, i'll see you later. elaine: alright. jerry: hey, bob. jerry: bob. jerry: hey, bobby, over here. jerry: bob. oh, bob. jerry: (louder) bob! bob: hi. jerry: (urgent whisper) elaine. elaine: (makes an irked noise) jerry: i was just in the bathroom. elaine: (really doesn't want to know) okay, jerry, please, please. i'm really busy here. jerry: no, no, no. i was just in the bathroom with that bob guy. elaine: so what? jerry: no, i kinda tried to test his hearing. elaine: get out! what'd you do? jerry: well, i kinda snuck up behind him at the urinal and tried to see if he could hear me. elaine: (hopeful) and? jerry: well, he flinched, sort of. elaine: what d'you mean, sort of? what'd he do? jerry: well, he kinda moved his head, you know. it mighta been on the zip up, i dunno. elaine: so you don't know anything? jerry: actually, no. elaine: (sarcasm) alright, good job. jerry: right. jerry: come in. george: (entering) last night, huh? was that something, or was that something? jerry: that was something. george: ah. she's great, isn't she? jerry: (positive) fantastic. fantastic woman. george: i told you. jerry: i'm nuts about her. george: you think she could be an 'it'? could she be an 'it'? jerry: she could be an 'it'. george: (claps hands triumphantly) we might have an 'it'! jerry: she's got 'it' written all over her. george: she's got everything, right? (counts on his fingers) she's intelligent, she's smart, she's got a great sense of humour. jerry: well, i dunno. i didn't really talk to her. george: well, she's smart. you take my word for it. jerry: whatever. george: (gleeful) hehee. w..we could be like the gatsbys. didn't they always like, you know, a bunch of people around, and they were all best friends? jerry: that doesn't sound right. george: no. so, tonight she's got tickets for that show she's been working on. the flying sandos brother. jerry: flying sandos. beautiful. george: great. seven-thirty, alright? jerry: walk me down to the friars. george: sure. so, uh, jerry, there's an empty apartment in my building. if you and hallie want, we could try and hold it, may... jerry: it's not here. george: what? jerry: th..the jacket, it's not here. it's gotta be here somewhere. kramer: oh, boy. jerry: (to kramer) thanks for that four a.m. wakeup call last night. (frustrated) where the hell is that jacket? kramer: oh, the one with the crest. jerry: yeah. jerry: oh, well, that's at the cleaners. jerry: the cleaners? how did it get there? kramer: well, i, uh, i borrowed it last night and it got a little dirty. jerry: (irritated) great. kramer: (laughing to himself) somehow i dozed off and woke up in a pile of garbage. jerry: somehow? you've had an hour and twenty minutes sleep in three days! kramer: well, so, look, the cleaner said you could pick it up tonight at six. jerry: alright. i just hope i can get it to the friars club before the show. george: won't be a problem...(mumbles) jerry: (to kramer) hey. jerry: (louder) hey!! kramer: watch out, boy. elaine: can you give us a hand with some of these boxes, bob? elaine: bob! elaine: (sexily) i want you so bad, bob. you turn me on... elaine: ...so much. you're so damn...sexy. elaine: (sexy) ohh. i'm starting to unbutton. elaine: (dropping the sexy voice) anything getting through? bob? hallie: well, they perform all over. europe mostly. george: a-ha, huh. (mumbles) tours. hallie: yeah. jerry: sorry, sorry i'm late. george/susan: hey! susan: jerry. george: isn't that the uh, friars club jacket? jerry: yeah, it wasn't ready on time. i have to return it after the show. george: sure, sure, sure, sure. (patting jerry on the shoulders) how about these seats? are these fantastic, huh? huh? i feel like lincoln. jerry: yeah. well, let's hope this evening turns out a little better. kramer: so, uhm, are you sure you don't wanna go to the movies? connie: mmm, no, cosmo. i like just being here with you. kramer: oh, it's uh, it's a bold adventure. kramer: ooh. well, this is uh, risky business, huh? i'm all a-twitter. sandos brother 1: how would you kind people like to lend a hand with our next trick? jerry: (smiling) i don't think so. sandos brother 1: please, take off your jacket. jerry: my jacket? sandos brother 1: yes, the jacket. (turns to the crowd) what do you say, ladies and gentlemen? sandos brother 1: (to jerry) can't argue with that. hallie: c'mon. susan: do it. come on, jerry. george: give him the jacket. jerry: (giving in) alright. sandos brother 1: and now, we say the magic word. (gestures with his hand) agrabah! and we make it disappear. connie: (passionate) oh cosmo. mm-mmm, cosmo. oh cosmo. connie: (uncomfortable) uh, honey, can you move a little, this hurts. connie: (worried) cosmo? connie: (panicky) oh my god. cosmo, wake up! connie: cosmo? connie: (horrified) oh my god! he's dead! he's dead. connie: (into phone) yeah, tommy, this is connie. you gotta help me. some guy dropped dead on top of me. (listens) i can't call the cops, 'cos joey might find out. (listens) i can't. i'm stuck. you gotta help me. george: this is very exciting. the inner sanctum. jerry: hi. i..i was in the audience earlier. you threw my jacket down. i just wanted to pick it up. sandos brother 2: jacket? what jacket? jerry: (explaining) i had a jacket with a crest on it. you came into the audience, you threw it away. agrabah. sandos brother 2: a..are you sure it was me? jerry: well, it was either you or one of your brothers. sandos brother 2: well, two of them have left already. sandos brother 2: (shaking his head apologetically) no. jerry: it doesn't even belong to me. it belongs to the friars club. sandos brother 2: sorry. hallie: jerry, i'm sure it'll turn up. jerry: (cynical) i'm sure it won't. hallie: don't worry. i'll get the jacket back. george: (cheerful) alright, there you go. she's gonna get the jacket back. (claps hands) so, let's go get some coffee, huh? jerry: (downcast) no, i'm a little tired. i think i'll go home. susan: aww, that's too bad. george: really? jerry: yeah, we'll do it another time. susan: (bright) george, we'll go. george: i, uh, oh, broke a shoelace today. susan: oh, i can get you shoelaces tomorrow. george: okay. susan: so, what colour? george: brown. george: maybe a black. susan: mmm. waitress: more coffee? george: (urgent) no! check! (quieter) please. jerry: (looking after the guys) that nut is always up to something. kramer: hey!! sh..! shii! mama!! kramer: aah! aagh! peterman: elaine. i think i've been working you a little too hard, lately. elaine: (shrugging it off) oh. peterman: so, i have two tickets for you (holds up the bits of card) to the flying sandos brothers magic show. elaine: (pleased) ah. peterman: it is a real hoot. elaine: (delighted) well, thank you mr peterman. peterman: ah, the tickets are for tonight. so you and bob can knock off a little early, so you both can get ready. elaine: mr peterman, you... peterman: (interrupting) there's no need to deny it, elaine. i heard every word you said. peterman: and i know you wouldn't be just having fun with his handicap. (staring away) that kind of cruelty would be grounds for dismissal. elaine: (resigned) of course, mr peterman. jerry: (into phone) tell 'em i'll come down and talk to 'em. okay, bye. (to george) well, that was the friars club. d'you think they're gonna let a jacket-stealer join? i don't think so! they're gonna charge me eight hundred dollars for the jacket, and i gotta deal with pat cooper! jerry: (worked up) wh..what kinda show is that sandos brothers? they take your jacket, then they just throw it? i never heard of that! george: it's a little unusual. so, uh, susan and i were thinking, uh, dinner at our house saturday night. just the four of us. jerry: (unenthusiastic) uhh, i don't think so. george: (worried) why not? jerry: (impassive) ah, i'm a little turned off. george: (standing) c'mon, what're you talking about? jerry: ahh, i'm, i'm kinda soured. george: you're soured? jerry: yeah, i'm soured. george: don't be soured. jerry: i'm sorry. i'm soured. george: (animated) what're you kidding me? we were all getting along so well. where is all this coming from? jerry: well, you know, frankly, i don't think she was too concerned about my jacket. george: (animated) what're you talking about?! she's very concerned! she said she was gonna get it back. jerry: (indifferent) yeah, we'll see. george: (worked up) because if she gets it back, then you'll have no reason to be sour. you'll de-sour, right? jerry: i'll try and de-sour. george: (aggravated) oh, that's not good enough! you don't try and de-sour. you have to sweeten too! jerry: (sharp) i'll try! i'll try and de-sour and sweeten. george: i wanna get it back when we were the gatsbys. jerry: i still don't know what that means. george: (neither does he) yeah, well. kramer: god. jerry: (astonished) oh god! what happened to you?! kramer: (animated) she tried to kill me jerry! jerry: who? kramer: (shouts) connie! jerry: what'd she do? kramer: i don't know! (building to a shout) but i woke up in the hudson river in a sack!! i think she drugged me, but she's a murderer and i'm calling the cops. jerry: (bewildered) why would she try and kill you? kramer: (animated) well, isn't it obvious? she doesn't want anybody else to have me! kramer: (to door) gah! jerry: hey, there's uncle milty. george: (pleased) yeah, it is. jerry: (pointing) and there's david steinberg. george: the comedian, or the manager? jerry: the manager. jerry: (to george) hey, there's pat. (calls) hey, pat. pat: hey, jerry. what the hell went wrong? what's the matter with you? are you a kleptomaniac, or what? jerry: i forgot to take it off. pat: (dubious) you forgot to take it off? oh, you go into a department store, you put a suit on, and you walk right out. what are you some sort of an idiot? jerry: i'm sorry. pat: where's the jacket? jerry: well, one of the gypsies took it. pat: (skeptical) aww, the gypsies took it! of course, new york has a lot of gypsies! oh, on every block there's a gypsy! george: (meekly) well, it's true. i saw it. pat: (probing) excuse me, are you an entertainer? are you in showbusiness? george: no, i uh... pat: (interrupting) then what am i talking to you for? (to jerry) jerry, bring the jacket back tomorrow. jerry: alright. george: wait a minute, wait a minute. george: look at that guy. right there. isn't that the guy from the show? he's..he's wearing the jacket. jerry: god, you're right. george: (motioning jerry to follow) c'mon. maitre d': wait a second! excuse me gentlemen, are you members? jerry: well, i'm a prospective member. maitre d': until then, (pointing) that's the way out. jerry: but that guy has my jacket. maitre d': c'mon, let's go. george: excuse me, the guy is wearing a jacket that my friend is... maitre d': come on. jerry: come on. maitre d': let's go. george: if i could talk to the guy for just a sec... bob: these seats are fantastic. it was really nice of mr peterman to give us these tickets. elaine: (flat) yeah, yeah. was nice. bob: (smiling) yeah. got our own little private box here, don't we? elaine: (pushing bob away) get offa me! stop it. stop it. elaine: get offa me! elaine: get a hold of yourself, bob! (throwing bob back between the seats) get a hold of yourself! jerry: i dunno how that guy gave us the slip at the friars club. george: i told you, he probably went out the back. jerry: ouf. jerry: hey. it's you! (pointing) th..that's my friars club jacket! sandos brother 1: no, it is not. it is my jacket. jerry: (adamant) no, no, no. that's my jacket, give it back. sandos brother 1: no, it is not. this is mine. jerry: c'mon i need it. jerry: (determined) i wanna join. i need it to become a member. george: give 'im the jacket already! sandos brother 1: (yelling) help! help! (foreign language) azobar! azobar disay! george: what's he yelling about? they're stealing jackets here! jerry: can you believe it?! jerry: (examining) hey george, you know what? i think this crest is different. it's got a moose on it. george: moose? jerry: yeah. (subdued) i don't think this is the jacket. hallie: no, it's not. hallie: this is the jacket. jerry: ohh, you got the jacket back. george: ohh, yeahh. jerry: (taking the jacket) thank you. hallie: it got a little dirty, so they wanted to clean it before they gave it back to you. jerry: oh. (smiling) oh, that's nice of 'em. george: (smiling) that is really nice. hallie: yeah. jerry: yeah. hallie: yeah. jerry: yeah. george: this is nice. jerry: yeahh. hallie: yeah. george: (forced buoyancy) hey, you know, let's call susan, we'll go have coffee. hallie: (flat) i'll see you at the wedding. george: (moody) great! now she's sour! jerry: maybe she'll sweeten. george: (angry) she won't sweeten, and i'm bitter! sandos brother 1: (pointing) there they are! george: here. (panicky) we'll leave it here for you! kramer: (pointing) that's her, officer. connie: (shocked) kramer! oh my god, i thought you were... kramer: (animated) what? sleeping with the fishes? i guess i woke up! detective: you're under arrest for the attempted murder of cosmo kramer. connie: (defensive) i didn't do anything. kramer: (sarcastic) oh, yeah! yeah! detective: get your coat, we gotta take you in. connie: can i call my lawyer? detective: okay, go ahead. connie: (on phone) you gotta meet me at the police station. they're arresting me for attempted murder. jackie: attempted murder? of whom? connie: this guy, kramer. jackie: oh. (hesitantly) cosmo kramer? connie: (surprised) yeah, that's right. jackie: (adamant) i don't want nothing to do with it. jerry: i'm looking for a crested blazer craig: a crested blazer.. jerry: i've worn one once and i really think it did something for me. craig: (turning around) yes .i think we may have something. (picks up a blazer) the joseph aboud crested blazer is the finest.... that's hand ticking around the crest and these are the world famous corriso buttons made from the finest andulo corn. jerry: (softly) hmm.. they'll match my sneakers. craig: it looks fabulous on you... shall i wrap it up? jerry: you know...i'm not sure. i'll tell you what. i'll come back later with someone and see what they think. craig: (doubtful) a hum! jerry: really i'll be back. craig: yeah! jerry: so i didn't like the crest all that much., but the guy spent fifteen minutes with me so to get out of the store i told i wanted to see what someone else thought.... and then he makes a face like he doesn't believe me. elaine: ah! so he knew that you were making it up.! jerry: yeah..... he caught me so here's what i want you to do. come back with me to the store and we'll pretend to look at the coat. elaine: that's ridiculous. why do do you want to go back there if you don't want the coat? jerry: because he thinks i was lying and i want to show him i wasn't. elaine: but you were!! jerry: but if you go back with me , then i'm not. george: (still on the phone) all right fine.... whatever jerry: (to george) problems with the house guest? elaine: what house guest? george: this friend of susan's is staying with us for two weeks...now am i wrong or is that excessive? kramer: well bob sacamano he stayed with me once for a year and a half. elaine: who is he? george: he's a wig master elaine: what is a wig master? george: he's with the touring company of joseph and the amazing technicolor dreamcoat. he's the guy in charge of the wigs. jerry: boy.. imagine.. liking wigs to the point it becomes a career choice. kramer: about some tickets george , you know i'd kill for a peek.. george: (leaving) yeah, sure, sure ,,, i got to drop my car off at the new lot. kramer: euh what...what lot is that? george: jiffy park. it's incredible.. seventy-five dollars a month. kramer: seventy -five bucks a month! george: yeah and you get this really cool t-shirt when you sign on.. kramer: oh i'm down. jerry: (proud of himself) remember me? i said i 'd come back with someone and i did. surprised?. craig: no i believed you. jerry: yeah.... well elaine. elaine: (looking up to the salesman) craig: oh!... hello i'm craig. elaine: .....hi. craig: well (picks up the blazer again) here it is. elaine: oh!!.....joseph aboud .. and look at this hand ticking around the crest. craig: you know your coats? elaine: well i'm in the biz .. i work for j. peterman. craig: i love j. peterman. elaine: (giggling) ohhh!!. craig: i especially enjoy the catalogue, those fanciful narratives really take me away.. elaine: ohhh!! really ..well you know what, i write those. craig: no!!! elaine: yeeeahh!!! jerry: (impatiently cutting in) hey elaine what about the crest.? what d'you think of the crest here. jerry: you what?? elaine: i think it's great. i think you should get it. craig: well .... will it be check or credit card? jerry: (giving up) check. craig: i'll need you to write down your phone number on the check for me. (turning to elaine) perhaps you could do the same. elaine: (laughs and giggles like a schoolgirl) jerry: you weren't supposed to say that. elaine: but i really did like it jerry: that's not the point. you put me in a position where i had no choice. elaine: uhn... sorry! jerry: and what about that guy asking you out right in front of me? elaine: what is the big deal!! jerry: ...'s very emasculating, he doesn't know the nature of our relationship. you're there approving new clothes.....that's a girlfriend job! how dare he!! elaine: he dared.... ethan: (sitting in the couch and combing his wigs)hi george.. how was your day? george: good....good day (not too convincing) you? ethan: i am getting so much work done..... see? george: very nice susan: (walks in) hi sweety how was your day? ethan: i already ask him that. he said good...good day.... kramer: (frantically pulling at his doorknob) thank god you're home. i'm wiped out. i drop my car at jiffy park and i forgot to take my apartment keys off the ring. so you got my spare? jerry: no i gave it back to you kramer: y'did.........phfwelll. look.. hum..... can you take me over there? jerry: oh come on!! kramer: oh come on jerry, it's all the way over to twelfth avenue.. jerry: i didn,t tell you to park in that lot .. now someone's gonna have to drive you every time you need your car.? take the bus! kramer: i'm not going to take the bus that's why i got a car! jerry: forget it. kramer: awright i'm gonna get george to pick me up. jerry: he wont take ya.. george: (grabs the phone quick) got it, got it,...hello? kramer: listen, can you take me over to the jiffy park? george: yeah,yeah!! i'll pick you up right now.....all right all right....hey! gotta go. george: so the wig master.......the wig master said you could stop by the theater tonight.. and he'll show you around. george: would you pick a station!!!!! kramer: i like 'em all(still fiddles with the radio) george: aw great. now the volume knob fell off kramer: (seems to pickup something on the floor) ....'s'this? kramer: gawd!!! george: what? kramer: that's a....ca.....ca..........condom!! elaine: how do you like working there at the .... hum...andover shop? i mean it's a pretty swanky upscale clientele. craig: hmmm elaine: except for jerry!(laughs) craig: so did you see anything you'd like.... elaine: oh!!! craig: cause i can get you a considerable discount. elaine: really!...well actually yeah i did see this ......'mazing little black dress...it was sleeveless.... craig: the nicole miller elaine: yeah..yeah... craig: i'll take care of it. elaine: really....but i barely know you. craig: well...hum.....we'll just have to do something about that. won't we. elaine: ah! ah!ah! jerry: hey! greg craig: it's craig jerry: ah! right...nice. lunch with elaine? craig: yes lovely. jerry: you know 'm just curious, how did you know she wasn't my girlfriend? craig: well i could just sense it jerry: because you know we used to go out. craig: oh ! you did jerry: oh yeah we went way out and wild. elaine: hey jerr... jerry: hi elaine. lady: would you like to buy a rose for your wife? ( to craig) jerry: how do you know she's not my wife? george: i want to know how did that get into my car? attendant: hey look ..you walk in to this city you got to expect things are gonna stick to your foot. you open in your car and bing!! condom. george: that doesn't explain the lipstick on the dashboard? attendant: here take a few shirts.... attendant: i'm terribly sorry mr kramer but we can't get your car now, the keys seems to have been misplaced. kramer: wait a minute i need those keys. i wont be able to get into my apartment. attendant: aaye mr kramer....you like cadillacs? kramer: ...yeah i like cadillacs (cautiously) why ? what you got on your mind? attendant: take that pink eldorado cadillac over there , it's a mary kay car.... kramer: mary kay uh? attendant: mary kay car.. kramer: (to george) well listen see you later ..thanks for driving me by.. hooker: hey!! whats happening? george: we're gonna hang around here a little while....something funny going on here elaine: you were wrong about craig . he's a very sweet guy. jerry: well, what about the ponytail? elaine: what about it? jerry: c'mon ponytail ...get real. elaine: all i know he's promised me a discount on that dress. jerry: of course he did ..the guy's working ya. elaine: ah! jerry i've been around long enough to know when i'm being worked. jerry: have you slept with him yet? elaine: i just met him this morning. jerry: it's been known to happen....... telling you right now elaine, this guy 's gonna dangle that dress in front of you like a dirt farmer dangles a carrot in front of a mule. elaine: . well this is all very flattering... jerry: (interrupts)like a shark fisherman with a bucket of (?) ch.... elaine: ok.... jerry: (continues)like a shrimp farmer.... elaine: okay!!! ethan: well that's the grand tour ... aw but i save the best for last... kramer: oh yeah!! ethan: behold .. the technicolor dreamcoat. kramer: oooooh ...pops .... wow!! spectacular. george: s'cuse me ..do you mind if i ask you a few questions? hooker: are you a cop?? george: oh no nonono i'm not a cop ...heum... i work for the yankees. hooker: urghh they stink. george: nevertheless.. i was wondering if you and your .friends are doing business here at the jiffy park.... you know ..hum what do you people call it? turning tricks? anyway i...i....found a condom in my car....and i'm not saying it's yours but.... i want to know if i should just change parking lots. hooker: get lost mister, i'm trying to make a living here. george: i'll pay you for your time....i just ..i just need some information . how much do you want? ten....fifteen? you have change for twenty? hooker: fifteen? susan: (walks in) george? george: hi honey.. susan: ..so you're telling me the truth? george: of course i'm telling the truth. susan: because i have to be able to trust you... if i can't trust you then there's no way that this can work. george: really! susan: yeah. george: well then...then you really have something to think about because.....you know if there's any doubt in your mind ....and.. and,, it doesn't even have to be a big doubt, you know even a tiny doubt, a dot of a doubt.. and..... susan: there's no doubt. george: because if there's any doubt at all i...i feel we should cultivate it. susan: cultivate it? george: yes, you know. deal with it .we have to deal with the doubt, susan the doubt!! must be dealt with. susan: i have no doubt george. do you? george: (hesitates) ...nooooooooooo... elaine: you know... i can't wait to get that dress.. craig: yeah... it should arrive eminently. elaine: arrive? craig: yes! from milan. elaine: but you said it was in the store!. craig: no no no we sold out we had to order some more. elaine: but i thought .. nicole miller was made....... craig: (interrupts) eeen!!! ian: hey craig. craig: elaine this is een. elaine: hi e-an ian: een.. elaine: e-an craig: een... he's a friend a mine from england ian: (word missing) what are doing? craig: i'm working at the andover shop actually....you should come by. i'll get you a great discount. ian: maybe i will. nice meeting you. elaine: oh..nice to meet you. craig: bye ian: ..cheery-o elaine: bye eeeen. elaine: so you're giving him a discount too? craig: hummm why so surprised? elaine: hem!! no reason. jerry: you know that clothing salesman had a lot of nerve hitting on elaine right in front of me. he stands to make a big commission too on that jacket with the crest that nobody seems to like. you know what i'm gonna do.? i'm gonna take that jacket back.. i'm putting this guy ....right out of commission.... kramer: heeeeeummmrph.... i'm gonna turn in jerry: turn in? kramer: yeah,i had a tough day jerry: it's only nine o clock. kramer: well ..i don't argue with the body jerry. it's an argument you can't win. jerry: i can't go to sleep at nine o clock! kramer: well you can go to your room and read. jerry: hey look ,you know, you're the one who's locked out. i'm letting you stay here. you're wearing my bathrobe. you should adapt to me. kramer: but i'm tired.. jerry: oh why don't you go sleep over at newman's. kramer: aah! he's got a girl up there. this quilt is too thin...i know i'm gonna get cold. i don't even fit on this couch. don't even know if i'm gonna sleep.... jerry: well that's all i got. kramer: can i sleep with you? jerry: huh? kramer: well you got that big comfortable bed and that nice warm quilt. jerry: kramer , there's no way you're sleeping with me. kramer: why? jerry: why? kramer: yeah! jerry: do i really have to explain why? kramer: well i......( elaine pops in at that moment) elaine: hi!. kramer: hi...........what's that? elaine: squire's walking stick. i had to write about it for the catalogue. kramer: wow. elaine: you want it? kramer: yeaaahmm.... elaine: you can have ,i don't need it anymore. kramer: ooh mama...( walks away) elaine: ok so ..i am positive you are wrong about craig. jerry: yeah why? elaine: because he told a man he'd give him a discount too... a man jerry. jerry: so ,who is he? elaine: some friend of his from england. jerry: don't you see?...........it's all a big scam. elaine: you're nuts! kramer: how do you know he's not wondering the same thing about you? elaine: what d'you mean? kramer: what do i mean?.. well perhaps he thinks that you're working him for the discount. shaking that little butt of yours into big, big savings.... and then when you get it,you know, you drop him like a hot potato. elaine: aawwh please..... kramer: now see the two of you need to work on trust... and then and only then will there be a free exchange of sex and discounts.. cornerstones of a healthy relationship....and now if you would (taps twice on the door) excuse us. we need to get to bed. kramer: (softly)hmmm....patio furniture's on sale. george: excuse me...huh... i think i made a big mistake. i'd like my deposit back please. attendant: whats the problem george: you got hookers turning tricks in my car. how's that for starters. attendant: haaan! that is all hearsay. george: allright, very good i'd like my car and my deposit back please attendant: can't do it' george: whadday'mean.? attendant: if you read the agreement you signed the deposit is not refundable. george: well does it say anywhere in the contract about my car being used as a whorehouse? 'cause i don't remember reading that clause either.. attendant: what can i tell you buddy. take it up with consumer affairs. george: . all right , just give me my car and let me get the hell out of here. attendant: well that's going to be a problem george: why? attendant: it's all the way in the back. can't get it out for a couple of days. george: what are you talking about.. i want my car!! attendant: we ask that you please bear with us. george: bear with you! this is a parking lot people are supposed to be able to get attendant: ideally.. jerry: excuse me i'd like to return this jacket. teller: certainly. may i ask why? jerry: ........for spite... teller: spite? jerry: that's right. i don't care for the salesman that sold it to me. teller: i don't think you can return an item for spite. jerry: what do you mean? teller: well if there was some problem with the garment. if it were unsatisfactory in some way, then we could do it for you, but i'm afraid spite doesn't fit into any of our conditions for a refund jerry: that's ridiculous, i want to return it. what's the difference what the reason is. teller: let me speak with the manager...excuse me .............bob! teller: ........spite.....(manager walks over) bob: what seems to be the problem? jerry: well i want to return this jacket and she asked me why and i said for spite and now she won't take it back. bob: that's true. you can't return an item based purely on spite. jerry: . well so fine then ..then i don't want it and then that's why i'm returning it bob: well you already said spite so...... jerry: but i changed my mind.. bob: no...you said spite...too late. kramer: it's halloween (not sure) charmaine: get a calendar honey! it's the 90's kramer: hey! elaine.. jerry: oh! hey!! kramer: these are my friends jerry and elaine. jerry & elaine: hi! how 'r u doing? charmaine: hi i'm charmaine ethan: i'm ethan kramer: yes, she's the costume designer and he's the wig master for the show. jerry: hey you're staying with my friend george. ethan: right george! i get the feeling he doesn't want me there. jerry: well he doesn't even want himself there. charmaine: why don't you sit down and join us? jerry: all right. (sits down) elaine: i can't i 've got to meet a friend. kramer: well what are we ...dog meat. ethan: (to waiter) ....champagne coolies , please. ethan: (to elaine) you've got really beautiful hair. elaine: oh thanks, thank you very much. ethan: have you ever thought about selling it .it would make a brilliant wig.. jerry: they make wigs out of human hairs? ethan: ..and pay plenty for them. elaine: well you guys are gonna have fun here so..bye take care kramer: yeah. see ou later.. all: bye, now... charmaine: oh! i just remembered i 've got to get the dreamcoat from the dry cleaners kramer: hey! you gonna let me try the other one right?' charmaine: yeah. but you gonna have to be really careful with it , it's my only backup. kramer: hey! who do you think you're talking to. charmaine: ok. buh- bye! kramer: bye!! jerry: bye! ethan: there's your champagne coolie. well looks like it's just you and me cowboy!. jerry: ...guess so. elaine: well, here we are. craig: i....am..beat.(sits on the couch) elaine: (sighs) craig: ohh! that's nice. elaine: so.ehmmmm. so, do you have any ideas when the nicole millers are coming in? craig: oh! yeah. the nicole millers ...hemm.. well the funniest thing. elaine: huh! craig: i've learned that the new shipment's coming in by boat... which does tend to take a little longer with, you know ,what with the waves and all .. so you'll just have to be a little bit patient . elaine: hummm.... so you've no idea when.. they'll arrive. craig: (yawns) ...nno....i really don't...... ethan: how can she go with a guy like that , he's a mess... i just don't see them together at all jessie: ethan? ethan: yes.. jessie: . hi it's me jessie....george hamilton's personal assistant. ethan: . right, right. ethan: how you doin'? jessie: nice to see you.. ethan: this is jerry. jerry: hello.. jessie: yeah , hummm ( turns back to ethan) ethan ,what brings you in to town. ethan: i'm touring with joseph and the amazing technicolor dreamcoat jessie: you're kidding... listen maybe you and i should...ehmmm get together . have you been on the slide at club usa it's ...intense. jerry: (interrupts) excuse me...excuse me... are you asking him out ? jessie: yeah...i guess you could say that.. jerry: right in front of me!. how do you know we're not together. two guys, sittin' laughin' drinking champagne coolies. jessie: i dunno i just didn't think you were. jerry: well we're sitting here together. why wouldn't you think that. jessie: i dont know. i just didn't. jerry: well it's very emasculating.. elaine: hello. bob: . hi this is bob from the andover shop. i'm trying to reach craig stewart. he left this number. elaine: uhmmm huh! is it important.? bob: well..... elaine: let me ask you something. ahemm..do you know when the nicole millers are coming in from milan?. bob: nicole millers, we're not expecting any nicole millers, in fact we have too many as it is. elaine: well do you have any in a... size four.? bob: yes several.. just tell him he doesn't have to be in tomorrow before eleven. elaine: (sarcastically) oh! yeah i'll make sure he gets the message. (looks at the sleeping craig and thinks) they make wigs out of human hair? (still thinking, ethan's voice) and pay plenty for them. kramer: (looks inside the car and gasps) ohhh sweet maria. hey! lets go. kramer: hey what are you doing in my car? hey!hey!hey! where you going. hooker: hey. you just cost me some money mr.(starts hitting kramer) kramer: cool it lady ( they struggle and we here a siren) police: policer officer. freeze right there. police: ok big daddy. take the hat off...... awright turn to your right...(kramer hesitates) i said turn pimp. kramer: (cries) i'm not a pimp.!!!. george: i believe the doors on the bathroom stalls, here at the stadium, don't offer much by way of privacy. but i was thinking if we extend the doors all the way to the floors...... mr. steinbrenner: all the way to the floor! what are you crazy! you'd suffocate in there. your lucky you have any doors at all. you know when i was in the army...... hey costanza. what's that your eating over there? it looks pretty tasty. george: it's a calzone, sir. mr. steinbrenner: a calzone huh. pass it down here. let's have a look at at it. i want a little taste. come on, come on. pass it down here. that's a good boy. okay. what's in this thing? george: uh. cheese, pepperoni, eggplant. mr. steinbrenner: eggplant. yes. that's a hell of a thing. okay let's get back to business. okay here you go. very good, very good. excellent. excellent calzone you got there costanza. okay a little jealous now. okay lets go. ok last week....... you know that eggplant was very good. everybody out. i got eggplant on my mind. costanza get me couple of those calzones right now. pronto. move out. pigstein what's an eggplant calzone. must have one. everybody out. out. elaine: one of those fabric wholesalers. this guy todd gack. i won a bet from him. jerry: what bet? elaine: he bet me dustin hoffman was in star wars. jerry: dustin hoffman in star wars!?! short jewish guy against darth vader. i don't think so. elaine: that's what i said. jerry: so the bet was that the loser has to buy dinner? elaine: yeah. jerry: huh. elaine: what? jerry: no. nothing. jerry: what's with you? kramer: feel this. jerry: wow.that's hot. kramer: yeah. it's piquing hot. it's fresh out of the dryer. hey elaine you have to feel my pants. elaine: i'll see you later. kramer: oh. all right. you don't know what your missing. i'm loving this jerry. i am never putting on another piece of clothing unless it's straight out of the dryer. jerry: so know every time you get dressed. you are going to go down to the basement and use the dryer. kramer: oh yeah. it's a warm and wonderful feeling, jerry. so what are you doing later? jerry: i got a date with nikki. kramer: oh yeah she's a beauty. jerry: she's also quite bold. kramer: oh bold and beautiful. mr. steinbrenner: i am loving this calzone. the pita pocket prevents it from dripping. the pita pocket. (phone rings)what is it watson? a lost and found. no. i don't think we need that. if people keel over because they lost something that's there tough luck. you got a drip on your mouth by the way. george: you know a lost and found could be a good idea. mr. steinbrenner: hold on watson. you like lost and found george? george: definitely. mr. steinbrenner: all right lost and found. but these got to be a time limit. we're not running a pawn shop here. jerry: hey, elaine. elaine: hi jerry! jerry: this is nikki. nikki: hi! elaine: hello. this is todd gack. jerry: oh of course. todd gack. you did you bet was in star wars? sammy davis jr. elaine: so what movie are you guys seeing? nikki: "means to an end" elaine: oh. we were going to see that but it was sold out. so were going to see"blame it on the rain" jerry: why don't you see what you can do? nikki: okay. elaine: what's she going to do? there's no more tickets. jerry: we'll see. todd: hey jerry. do you like cigars? jerry: yeah. why? todd: i am going to montreal tomorrow and they sell them dirt cheap. jerry: hey,that might be a nice idea for george's wedding. todd: so do you want a box? jerry: sure. if there cheap why not. todd: all right i buy a box and give to elaine. nikki: okay two tickets"means to an end" jerry: told you. elaine: how did you do that? nikki: i just talked to the manager. jerry: all right. enjoy"blame it on the rain" george: there putting in a lost and found because of me. there's a time limit but still. jerry: there really building a utopian society up there huh.and you tribute all this to the calzone. george: yeah. i am like a drug dealer. i got the guy hooked. i am having lunch at his desk everyday this week. he doesn't make a move without me. it's very exciting. jerry: with you two guys at the helm. the last piece of the puzzle is in place. george: so let me ask you a question about the tip jar. i had a little thing with the calzone guy this week. i go to drop a buck in the tip jar and just as i am about to drop it in he looks the other way. and then when i am leaving he gives me this look think thanks for nothing. i mean if they don't notice it what's the point. jerry: so you don't make it a habit of giving to the blind. george: not bills. jerry: so george. remember when i told you nikki gets whatever she wants. we are at the movies last night. it's sold out. nikki goes and talks to the manager. right in. george: beautiful women. you know they could get away with murder. you never she any of them lift anything over three pounds. they get whatever they want whenever they want it. you can't stop them. jerry: she's like a beautiful godzilla. george: without thousands of fleeing japanese. kramer: hey buddy. jerry: what the hell is all this? kramer: i am looking for quarters for the dryer. jerry: why can't you do this on your table? kramer: because i don't have a table. elaine: hey. jerry: hey. so how was"blame it on the rain?" elaine: huh. yeah thanks for getting us tickets too. jerry: oh!! let me ask you a question. was the movie part of the bet? elaine: no. we were both in the mood for one. jerry: you know elaine, it is not my way to intrude on the personal lives of close fiends.... elaine: oh is that so. jerry: absolutely. but i feel i must inform you that what happened last night was more than a simple bet. elaine: what are you talking about? jerry: come on. dustin hoffman in star wars. he made a bet he knew he was going to lose just to take you to dinner elaine: if he wanted to ask me out why didn't he just ask me. jerry: because if he doesn't ask you out he doesn't get rejected. he has found a dating loop hole. elaine: i don't buy it. jerry: so what happened after the movie? elaine: nothing. he walked me home. jerry: to the door? elaine: yeah. jerry: that's a date. elaine: no it's not. jerry: but i never walk you home. elaine: that's just because your a jackass. kramer: ah!! i found a quarter. anybody want there clothes heated up? jerry: no, no. elaine: no, no. jerry: so how did you leave it with him? elaine: i am supposed to meet him to pick up your cigars. jerry: that's another loop hole. that's two dates without asking you out. elaine: your crazy! jerry: crazy like a man. worker: number 49. george: you know my last name is costanza. that's italian. so you and i are like country men. pisano's! worker: $ 6.50 your change. george: and i always take care of my pisano's. so here is a little something. (drop in tip and worker looks the other way, so george decides to take it out and try again only to get caught) worker: hey! you steal my money!! george: no no. that's not what i was trying to do. worker: i know what you try to do. get out. don't ever come back ever. george: i got your calzones mr. steinbrenner. mr. steinbrenner: beautiful. i am starving george. george: i thought tomorrow maybe we'd try a little corn beef. mr. steinbrenner: corn beef. i don't think so. it is a little fatty. george: how about chinese? mr. steinbrenner: uhhhhh. no. too many containers. big mess, big mess. too sloppy.i want to stick with the calzones from pisano's. that's the ticket. george: i just thought it would be nice. a little variety. mr. steinbrenner: no, no, no. george let me tell you something. when i find something i like i stick with it. from 1973 to 1982 i ate the exact same lunch everyday. turkey chili in a bowl made out of bread. bread bowl george. first you eat the chili then you eat the bowl. there's nothing more satisfying than looking down after lunch and seeing nothing but a table. elaine: thanks for the dinner. todd: well i had to give these cigars and we were both hungry. elaine: hey todd. let me ask you a question. um. was this whole date thing just a way of asking me out? todd: what? elaine: i mean dustin hoffman in star wars? todd: elaine that was a legitimate bet and i lost so i bought you dinner. elaine: oh all right. okay well, goodnight. todd: hey, if your not doing anything saturday do you want to meet somewhere? elaine: see what is that? is that a date? todd: why can't two people go and do something without it being a date? elaine: all right. i am sorry it's not a date. todd: no way. so i'll see you saturday night? elaine: all right. todd: pick you up at 800 p.m. police officer: do you know what the posted speed limit on this road is? jerry: i was got to be 55. police officer: that's right it is. do you know how fast you were going? jerry: a lot faster than that! police officer: step out of the car sir. jerry: okay dokey police officer: can i have your license and registration please? jerry: absolutely. nikki! nikki: yes. jerry: would you mind bringing the officer the registration? nikki: not at all. police officer: i got you on the radar at 93 miles per hour. jerry: you must have gotten me when i slowed down to take that curve because for a while there i was doing well over 100. nikki: officer. hi. do you really have to give us a ticket? jerry: all right nik. that's it. kramer: hey buddy. i am waiting for my shirt. jerry: you got your shirt in my oven!?! kramer: i didn't have any quarters for the dryer. anyway this is better. and it's more convenient. jerry: for both of us. kramer: and i have a lot more control. i have one shirt going for 10 minutes at 325 degrees. jerry: what's wrong with your oven? kramer: i am baking a pie! jerry: yeah. george: yeah. jerry: come on up. kramer: you got cigars, huh. jerry: i got some cubans for george's wedding. they were more than i wanted to pay for but what the hell! kramer: oh yeah baby. spit, spit. what are these?"perducto de peru"jerry, if you think these are cubans you have another thing coming. jerry: peru! i paid $300 bucks for these. i could have bought a house in peru for $300 bucks! kramer: you got ripped buddy. jerry: i got to pay this todd gack guy $300 bucks just so he has some excuse to see elaine again without asking her out. kramer: that's a nice name. todd gack. is that dutch? (dingggggg) oh baby. here we go. uh momma.(putting his fresh out of the oven shirt on) hey george hey. george: well this is bad. i am really in a bad situation now. jerry: so what is steinbrenner going to do if he doesn't get his calzones? george: what's he going to do? that's exactly the point. nobody knows what this guy is capable of! he fires people like it is a bodily function. jerry: why don't you get someone else from the office to go get pisano's for you? george: because before you know it he'll be having lunch with him. you know how these interoffice politics work. jerry: no. i never had a job. kramer: i decided to go with the brown one 's. (pants) george: what the hell is this? jerry: kramer's cooking up some corduroy. george: there has got to be some way to get back into pisano's. kramer: pisano's. that's the place by the stadium right? george: yeah. you've heard of it? kramer: yeah. newman raves about it. it's on his mail route. he goes by there everyday. george: i'll see you guys later. jerry: what kind of pie are you cooking? kramer: huckleberry. newman: you certainly are in a bind. george: yeah. and since you go buy there everyday. i was hoping that we could help each other out. newman: oh well. let me perfectly blunt. i don't care for you costanza. you hang out at the west side of the building with seinfeld all day and just it up wasting your lives. george: are you going to help me or not? newman: all right, all right. i'll help you but i will except something in return. george: what? newman: well for starters i want a calzone of my own..... george: all right. newman: and a slice of pepperoni pizza and a large soda and three times a week i will require a canolie. george: that's a little steep don't you think? newman: you know i hear mr. steinbrenner can be a bit erratic. i would hate to see him when he's hungry. george: all right, all right. newman: do we have a deal? george: but i have to have them by one o'clock. he's very regiment about his meals. newman: i know exactly how he feels. pleasure doing business with you. do come again. ha, ha, ha, ha. elaine: this is nice. todd: gack. party of four. elaine: party of four? who are we meeting? todd: mom! dad! this is elaine. mom: hello. elaine: hellllllooooo. mom: nice meeting you. todd: bye mom. mom: she's wonderful. elaine: what the hell was that? todd: what? elaine: why did you introduce me to your parents? todd: there nice people. i thought you would like them. elaine: come on todd. admit it, this is a date. todd: why is this a date? elaine: saturday night with your parents. unless i'm your sister this is a date. todd: elaine. i don't understand why you can't meet someone else's parents without classifying it as a date. elaine: well if it's not a date then what is it? todd: it's a lovely evening together. elaine: i don't believe this. todd: well i am getting a cab want to join me? elaine: no. i'll just walk home. todd: okay goodnight. (goes to kiss her) elaine: now what was that? newman: hello. what 's this? george: well i was dropping of the calzone money for the week.... um shouldn't you be at work by now? newman: work? it's raining. george: soooooo newman: i called in sick. i don't work in the rain. george: you don't work in the rain? your a mailman."neither rain nor sleet nor snow....."it's the first one. newman: i was never that big on creeds. george: you were supposed to deliver my calzones. we had a deal! newman: i believe the deal was that i get the calzones on my mail route. well today i won't be going on my mail route! will i. perhaps tomorrow. george: but i'm paying you! newman: yes thank you. (slams door) george: newman!! nikki: peru? i thought you wanted cigars from cuba? jerry: i did. nikki: well if these aren't what you wanted then why did you pay him? jerry: well what could i do? unless you pay him a visit. nikki: okay. george: kramer! kramer: hey you! george: look i need you to do me a favor. i need you to get me lunch at pisano's. kramer: what happened to newman? george: he called in sick. kramer: oh yeah right it's raining. george: can you do it? kramer: what time do you need it at? george: 100 p.m. do you need any money? kramer: no. i got eight tons of change. i'm loaded. kramer: hey hold that bus! kramer: hey. it's really wet out there. worker: what can i get you? kramer: i here you make a pretty mean calzone. worker: calzone! kramer: yeah calzone. worker: the best! kramer: all right. lay them on me. i'll take three. worker: three calzones. kramer: hey. that's a big oven. huh. listen. i was wondering if you could do me a favor. elaine: hey todd. todd: hi. you know nikki. elaine: yeah sure. nikki: wait. elaine will settle this. what's the"m"stand for in richard m. nixon? elaine: milhouse. nikki: i told you so. he said it was moe. you owe me a dinner. worker: your order is ready. three calzones and one shirt and jacket. kramer: oh. this is all burned up. look at this. worker: what the hell do i know about cooking a shirt? what the hell is this? your paying in pennies? kramer: that's all i got. worker: no. you have to have bills. paper money. you can't pay with this. kramer: i told you this is all i got. worker: then no calzones. george: what happened? where have you been? kramer: the guy wouldn't give them to me because i wanted to pay in change. george: what the hell happened to your shirt? kramer: he overcooked it. it's ruined. george: your clothes smell just like pisano's. there's another italian place on jerome. maybe i can fool him. mr. steinbrenner: (on phone) that's right. do you want to say it again. i'll say it again. i hadn't had a pimple since i was eighteen and i don't care that you don't believe me or not. and how's this. your fired. okay your not. i am just a little hungry. where's costanza with my calzone. it's 115. he's late. that smell. i have to call you back. costanza. he's in the building. costanza is in the building and he's not in this office. costanza! i'll get you. jerry: stupid cigars. you know if i didn't send nikki over to talk to him they wouldn't be together. elaine: these are terrible. jerry: it's like trying to smoke a chicken bone. elaine: what kind of a name is todd gack anyway. jerry: i think it's dutch. i got to get going. elaine: where are you going? jerry: i... uh....promised nikki that i'd walk her dog for her. elaine: but she broke up with you. jerry: i know, i know. but some how she explained it to me and i couldn't say no. elaine: it smells like a rubber fire. jerry: what's that? elaine: i said rubber fire. jerry: oh. elaine: did you ever pay todd for these things? jerry: actually it's being taken care of right now. kramer: you gack? todd: yeah. kramer: here's your money. mr. steinbrenner: george. why do these clothes smell like pisano's? george: because they were heated up there. mr. steinbrenner: heating up your clothes? that's not a bad idea. wilhelm: and you can tell the players that i reimburse the trainer for the cigarettes and the dive checks. george: sorry, the players will be reimbursed? wilhelm: the trainer, george. tell the players i'll reimburse the trainer. what's the matter with you? this is the third time i've had to repeat myself. george: sorry, mr wilhelm. wilhelm: look, sorry doesn't cut it. we're running a ball club here george. you've got to pay attention. george: i know, sir. it won't happen again. wilhelm: lemme see, i uh, i had an assignment for you... uh. wilhelm: lemme think here. peterman: elaine. elaine: hi, mr peterman. peterman: you know what a huge fan i am of john f kennedy. elaine: i do. peterman: it was the peace corps that gave me my start in this business. (nostalgic) clothing the naked natives of bantu besh. elaine: the pygmy pullover. peterman: sotheby's is having an auction of jfk's memorabilia. one item in particular has caught my eye. the presidential golf clubs. to me, they capture that indefinable romance that was camelot. elaine: whatever. peterman: but, unfortunately i will be out of town with my lady-friend and therefore unable to bid on the lot. i was hoping maybe you would go in my stead. elaine: oh. (pleasant surprise) oh yeah, i'd be happy to. uhm, how much d'you want this thing? (smilingly) i mean, you know, how high are you willing to go? peterman: i would see no trouble in spending up to, say, ten thousand dollars. have my secretary give you a signed cheque. elaine: wow. wilhelm: ...when you're done george, and bring it directly to me. mr steinbrenner is very interested in this. george: yes, sir. wilhelm: (drying his hands and heading for the door) yes, george. i want you to make this project a top priority. george: i will, sir. top priority. wilhelm: (exiting) top priority. george: top priority. george: so he walks out of the stall, he's been talking the whole time. jerry: he pulled an lbj on you. george: lbj? jerry: lyndon johnson, used to do that to his staffers. george: no kidding? jerry: oh yeah. he'd hold national security meetings in there. he planned the hanoi bombing after a bad thai meal. george: well, i still don't know what i'm supposed to do. i don't even know what my assignment is. jerry: ask him to repeat it. tell him there was an echo in there. george: i can't. he's been on my case about not paying attention. besides, it's too late, i already told him i heard him. jerry: you know what you do? ask him a follow-up question. tell him you're having trouble getting started, and you want his advice. george: yeah, follow-up question, that'll work. kramer: hey buddy. jerry: hey. george: hey. jerry: can i have my keys... kramer: (tossing car keys to jerry) yeah. jerry: (catching keys) ...back, please? kramer: you shoulda come, jerry. newman: we made quite a haul. george: where'd you go? kramer: price club. george: why didn't you take your car? kramer: ah, the steering wheel fell off. i don't know where it is. kramer: what're you doing. (fetching the bottle from the trash) don't throw that away. newman: well, i'm not paying the five cents for that stupid recycling thing. kramer: you don't pay five cents, you get five cents back. here, read the label here. (reads from bottle) vermont, connecticut, massachusetts, new york. refund, (brings bottle up close to newman's eyes) vrrup, five cents. newman: (taking bottle) refund? kramer: yes. jerry: well, what d'you think the hoboes are doing? newman: i don't know, they're deranged. george: awright, listen, can you uh, gimme a lift back to my place? jerry: no i can't. i gotta pick up elaine. i'm taking her to this kennedy auction. george: awright, i'll see you later. newman: (peering at bottle label) what is this 'mi, ten cents'? kramer: that's michigan. in michigan you get ten cents. newman: ten cents!? kramer: yeah. newman: wait a minute. you mean you get five cents here, and ten cents there. you could round up bottles here and run 'em out to michigan for the difference. kramer: no, it doesn't work. newman: what d'you mean it doesn't work? you get enough bottles together... kramer: yeah, you overload your inventory and you blow your margins on gasoline. trust me, it doesn't work. jerry: (re-entering) hey, you're not talking that michigan deposit bottle scam again, are you? kramer: no, no, i'm off that. newman: you tried it? kramer: oh yeah. every which way. couldn't crunch the numbers. it drove me crazy. jerry: (leaving) you two keep an eye on each other? newman/kramer: (simultaneous) no problem. you bet. jerry: are you sure you didn't hear my car making a funny noise? i know those two idiots did something to it. elaine: no, i didn't hear anything. (she spots a familiar face) oh, my god, look who's here. jerry: sue ellen mishke, the braless 'o henry' candy bar heiress. sue ellen: well. hello elaine. jerry. elaine: hi sue ellen. jerry: hi sue ellen. sue ellen: i'm surprised to see you here. come to catch a glimpse of high society? elaine: (faked laughter) oh, ho ha ha. no, no, i'm actually here to bid, sue ellen. i mean that is if anything is to my liking. jerry: i'm here to catch a glimpse... of high society. sue ellen: well, i hope you find something that fits your budget. elaine: (half under her breath and half to jerry) i... hate that woman. newman: i don't understand. you fill an eighteen-wheeler? kramer: no, an eighteen-wheeler's no good. too much overhead. you got permits, weigh-stations, tolls... look, you're way outta your league. newman: i wanna learn. i want to know why. elaine: (loudly, for the benefit of sue-ellen) oh. those are handsome. look at that set. yeah, think i might bid on those. auctioneer: lot number seven forty-five. we have a full set of golf clubs, that were owned by president john f kennedy, as seen in the famous photograph of the president chipping at burning tree on the morning of the bay of pigs invasion. the set in perfect condition, and we will start the bidding at four thousand dollars. four thousand dollars? do i have four thousand dollars? auctioneer: i have four thousand dollars. do i have five? (another person bids) five thousand dollars. i have five thousand dollars. do i have six? six thousand dollars for this set of beautiful clubs. (another bid) six. i have six thousand dollars. can i have sixty-five hundred? auctioneer: sixty-five hundred to the dark-haired person on the right. we are at sixty-five hundred, do i hear sixty-six hundred? auctioneer: the president's own golf clubs. leisure life at camelot. sixty-five hundred going once... sue ellen: eight thousand. auctioneer: eight thousand. we have eight thousand. the bid is now eight thousand dollars. elaine: (to jerry) what is she doing? she's starting in on the bidding now? (to auctioneer) eighty-five hundred! auctioneer: we have eighty-five... sue ellen: nine thousand. auctioneer: nine thousand dollars. jerry: think she wants those clubs. auctioneer: do i hear ninety-five? ninety-five hundred... elaine: ninety-five hundred. sue ellen: ten thousand. auctioneer: ten thousand, to the shapely woman on the left. ten thousand going once... jerry: well, that's your ceiling. auctioneer: ten thousand going twice... elaine: (determined) eleven thousand! sue ellen: twelve thousand. elaine: (angrier) thirteen thousand! sue ellen: fourteen thousand. elaine: (vicious) fifteen thousand!! elaine: peterman is gonna kill me. jerry: i really thought you had her there at seventeen thousand. elaine: why didn't you stop me? jerry: do you hear this clunking? elaine: (listening) a little. elaine: oh. you know what? (indicates clubs) i'm gonna grab these from you later. you'll take care of 'em, okay? okay. see you tomorrow. jerry: okay. elaine: alrighty, bye. jerry: bye. jerry: what's going on here? jerry: oh god! jerry: (angry) oh, you idiots! newman: so we could put the bottles in a u-haul. you know, go lean and mean? kramer: newman, it's a dead-end, c'mon. (jerry enters) hey, there he is. jerry: hey. you put your groceries under the hood of my car? kramer: (to newman) aw, that's right, we forgot about those. newman: (to kramer) that's where my missing soda is. jerry: and your crab legs, and a thing of cheese. the triple-a guy said i was this close to sucking a muffin down the carburetor. what were you thinking? kramer: we ran outta space. jerry: now i gotta take the car down to tony and get it checked out. kramer: ah, tony, he's good. jerry: yeah, he's real good. but he's so obsessive about the car. he makes me feel guilty about every little thing that's wrong with it. i gotta get it washed before i bring it down to him, or i'm afraid he'll yell at me. kramer: (offering the artichoke can) 'choke?' jerry: no, thank you. tony: (lovingly) oh, yeah. i remember this car. beautiful car. jerry: yeah. so, anyway, the engine's been idling a little rough. i thought it might be time for a check up... jerry: there's really nothing wrong on the inside. tony: well, the shift knob is loose. you know about that? jerry: no, i hadn't noticed. tony: (accusingly) have you been picking at it? jerry: have i been picking at it? no. you know. it's just wear and tear. tony: (disapprovingly) wear and tear. i see. jerry: the engine is really the only thing that needs checking. tony: you been rotating the tires? jerry: try to. tony: (sharp) you don't try to. you do it! fifty-one percent of all turns are right turns. you know that? 'try to.' peterman: twenty thousand dollars!?! elaine, that's twice the amount i authorised you to spend. elaine: i know, mr peterman, but but but but once i saw them, i just couldn't stand to let anyone else have them. (warming to her subject) you know, certainly not some stuck-up candy bar heiress who shamelessly flaunts herself in public without any regard... peterman: well, where are they? elaine: (ingratiatingly) they should be here today. george: uh, mr wilhelm. wilhelm: (entering the office) yes george. george: hi, i was just uh... i just had one little question about uh, my assignment. wilhelm: yes, well i trust things are moving smoothly. mr steinbrenner's counting on you, you know. george: yes, yes. very smooth, super smooth. no, but i really wanna attack this thing, you know. sink my teeth into it. so i was just wondering... what do you think would be the very best way to get started? wilhelm: (confusion) get started? i don't understand, george. george: well, i was wondering... wilhelm: you mean you haven't been to payroll? george: payroll? no, no, i haven't done that. wilhelm: well, what's the problem? now come on george. i told the big man you were moving on this. now, don't let him down! george: payroll!! [yankee stadium: payroll office] george: hello there. i'm george costanza. clerk: yes? george: assistant to the travelling secretary. (fishing for a reaction) i'm uh, working on the project. clerk: what project? george: payroll project. wilhelm? big uh, big payroll project. clerk: you're gonna have to fill me in. george: you know what, i'll just uh, i'll just look around for a little while. (moving to come round the counter) i'll just browse around. clerk: (blocking george) hey, wait, hey. excuse me, uh, you can't come back here. george: look, i am under direct orders from mr wilhelm. so if you have a problem with that, maybe you should just take it up with him. clerk: well, maybe i will. george: (spotting possible salvation) you know what, i urge you to take it up with him. go ahead, give him a call, he'll tell you what i'm doing here. (half to himself) then you can tell me. clerk: (on phone) mr wilhelm, uh, this is lafarge in payroll. uh, there's a costanza here, says he's working on some project? clerk: (on phone) oh. (he swaps the phone to his other ear) oh, i see. (listens) interesting. (listens) well, that's quite a project. alright, thank you. clerk: (apologetically) ah, i'm sorry uh, that i doubted you. whatever you need, just uh, make yourself at home. george: so he explained it all to you? clerk: yes, he explained it all very clearly. george: what'd he tell you? clerk: (upset) look! you were right, i was wrong! you don't have to humiliate me about it, alright! newman: damn! newman (v.o.): oh, mother's day. (inspiration strikes) wait a second. mother's day?! newman: (triumphant) yessss! newman: ahaha! newman: come on kramer! kramer: wha...? newman: it's the truck, kramer. the truck! kramer: look, newman, i told you to let this thing go. newman: no, no, no, no no. listen to me. most days, the post office sends one truckload of mail to the second domestic regional sorting facility in sagenaw, michigan. kramer: (interested) uh-huh. newman: but, on the week before holidays, we see a surge. on alentine's day, we send two trucks. on christmas, four, packed to the brim. and tomorrow, if history is any guide, will see some spillover into a fifth truck. kramer: (realisation) mother's day. newman: the mother of all mail days. and guess who signed up for the truck. kramer: a free truck? oh boy, that completely changes our cost structure. our g and a goes down fifty percent. newman: (excited) we carry a coupla bags of mail, and the rest is ours! kramer: newman, you magnificent bastard, you did it! newman: (triumph) let the collecting begin! [yankee stadium: george's office] wilhelm: so... wilhelm: ...did you go down to payroll? george: (standing) yes, payroll. yes i did. very productive. payroll... paid off. wilhelm: (pleased) well then, i guess you'll be heading downtown then, huh? george: oh, yeah. downtown. definitely. wilhelm: well, i'm very interested to see how this thing turns out. george: (to himself) yeah, you said it. (to wilhelm) uh, excuse me, mr wilhelm. uh, do you really think... well, is this downtown trip really necessary, you know, for the project? wilhelm: oh no, you've got to go downtown, george. it's all downtown. just like the song says. george: the song? wilhelm: there's your answer. downtown. george: (thoughtful) downtown. jerry: the song downtown? you mean the petula clark song? george: yeah. jerry: you sure he didn't just mention it because you happened to be going downtown? george: i think he was trying to tell me something, like it had some sort of a meaning. jerry: okay, so how does it go? george: 'when you're alone, and life is making you lonely, you can always go...' jerry: '... downtown.' george: 'maybe you know some little places to go, where they never close...' jerry: '...downtown.' george: wait a second. 'little places to go, where they never close.' what's a little place that never closes? jerry: seven-eleven? george: 'just listen to the music of the traffic, in the city. linger on the sidewalk, where the neon lights are pretty.' where the neon lights are pretty. the broadway area? jerry: no, that's midtown. george: 'the lights are much brighter there. you can forget all your troubles, forget all your cares, just go...' jerry: '...down town.' george: 'things'll be great, when you're...' jerry: '...downtown.' george: i got nothing, jerry. nothing. jerry: well, 'don't hang around and let your troubles surround you. there are movie shows...' george: you think i should come clean? what d'you think, you think i should confess? jerry: how can you lose? tony (o.s.): yeah, jerry, it's tony abato at the shop. look, we gotta talk. you better come down, any time after four. jerry: hello. elaine: hi, it's me. jerry: oh, hi. elaine: listen, i need to come over and pick up the clubs for peterman. jerry: oh, you know what? elaine: (worry) oh no. what? jerry: oh, no. it's no big deal. i left the clubs in the car. elaine: you left them in the car? how could you leave them in the car? jerry: i forgot. elaine: oh, go down and get them. jerry: i can't. the car's at the mechanics. elaine: ah, this is great. alright, well, where is the mechanic? i'll just go and pick 'em up myself. jerry: no, no, you can't. he's working on the car right now. you can not disturb him while he's working. but i'm going down there in like an hour, if you wanna meet me down there. you know the place, it's on fifty-sixth street? elaine: (resigned) ugh, okay, alright, fine. jerry: hey, tony. tony: thanks for coming in, jerry. jerry: sure. tony: i think i know what's goin' on here, and i just wanna hear it from you. but i want you to be straight with me. don't lie to me, jerry. you know that motor oil you're puttin' in there? (reproachful) from one of those quicky lube places, isn't it? jerry: well, i change it so often, i mean to come all the way down here... tony: jerry, motor oil is the lifeblood of a car. okay, you put in a low-grade oil, you could damage vital engine parts. okay. (holds up component) see this gasket? (throws it down) i have no confidence in that gasket. jerry: i really wanna... tony: here's what i wanna do. i wanna overhaul the entire engine. but it's gonna take a major commitment from you. you're gonna have to keep it under sixty miles an hour for a while. you gotta come in, and you gotta get the oil changed every thousand miles. jerry: how much money is this gonna cost me? tony: (contempt) huh. i don't understand you. it's your own car we're talking about. you know you wrote the wrong mileage down on the form? you barely know the car. you don't know the mileage, you don't know the tyre pressure. when was the last time you even checked the washer fluid? jerry: the washer fluid is fine. tony: (angry) the washer fluid is not fine! jerry: alright, you know what, uhm... i just wanna take my car, and i'm gonna bring it someplace else. tony: what d'you mean? jerry: just, can i have my car? i wanna pay my bill, i'm gonna be on my way. tony: well, the car's on a lift. jerry: well, just get it down. tony: (subdued) alright. okay. well, uhm, wait here and i'll uh, i'll bring it around. jerry: okay. thank you, very much. elaine: hey. where's the car? jerry: he's bringing it. elaine: good. jerry (v.o.): last week on seinfeld. so far: newman and kramer are using a usps mail truck to run deposit bottles and cans to michigan, in order to collect 10 cents on each of them. george has been given an assignment by mr wilhelm, but he hasn't a clue what it is. elaine outbids sue-ellen mishke at an auction, to buy john f kennedy's golf clubs on behalf of mr peterman, and leaves them in the back of jerry's car. kramer and newman have left groceries under the hood of jerry's car, meaning jerry has to take it to tony the mechanic, who loves the car more than jerry does. when jerry asks for his car back, tony flees in it, taking jfk's clubs with him. jerry: okay, thank you. (hangs up the phone) elaine: so? what'd they say? jerry: they're sending a detective to my apartment tomorrow. elaine: what the hell were you thinking leaving my clubs in that car?! jerry: well, i didn't count on my mechanic pulling a mary-beth whitehead, did i? elaine: what kind of maniac is this guy? jerry: he's a very special maniac. elaine: what am i supposed to tell mr peterman. jerry: i don't know. elaine: why couldn't you take better care of that car?! peterman: well, are they here? elaine: mr peterman, uh... there seems to be a bit of a snag. peterman: snag? elaine: it seems that a psychotic mechanic has absconded with my friend's car. peterman: what does that have to do with my clubs? elaine: they happened to be in the back seat at the time. detective: what was the suspect wearing at the time of the incident? jerry: you know, like mechanic's pants, a shirt that said 'tony'. lemme ask you something, have you ever seen a case like this before? detective: all the time. a mechanic forms an emotional attachment, thinks he'sgonna lose the car, he panics, he does something rash. i'm gonna ask you somepersonal questions. i'm sorry if i touch a nerve, but i think it'll help with the case. had you been taking good care of the car? jerry: had i been taking...? detective: well, did you leave the a/c on? do you zip over speed bumps? do you ride the clutch? things like that. jerry: w-well, what does it matter? it's my car, i can do whatever i want with it. jerry: not that i would think of doing such things. detective: (making a note) alright mr seinfeld, we'll let you know if we find anything. i gotta be honest with you, these cases never end up well. jerry: well uh, whatever you can do. thanks. [yankee stadium: george's office] george: (hesitant) uh, mr wilhelm. uh, about the project... wilhelm: that's what i came to talk to you about. great job george. (shakes george's hand) you really nailed it. george: i did? wilhelm: oh yes, i read through it this morning. i couldn't have done it better myself, and i turned it right over to mr steinbrenner. good work george. jerry: i don't get it. he assigns it to you, you don't do it. somehow it gets done, and now he's telling you what a great job you did. george: maybe somebody did it and didn't take credit for it. maybe it was already done and didn't need doing in the first place. i have no idea who did it, what they did, or how they did it so well. and you know what? jimmy crack corn and i don't care. wilhelm: the gardener did a nice job planting the rose bushes, didn't he dear? mrs wilhelm (o.c.): you planted the rose bushes, dear. wilhelm: i did? mrs wilhelm (o.c.): yesterday. you remember. wilhelm: (thinks for a moment) that's right. (pause) what's for dinner? mrs wilhelm (o.c.): we just ate. did you forget to take your medicine? george: the point is, however it got done, it's done. so, any luck with the car? jerry: no. the police have no leads (sitting on the couch arm) and i just found out today my insurance doesn't cover it. george: why not? jerry: they don't consider it stolen, if you wilfully give the guy the keys. elaine: (to george) hey. george: hey. elaine: (to jerry) hey. what did the detective say? jerry: they're looking. george: i gotta go. jerry: y'hello. detective (v.o.): mr seinfeld? jerry: yeah. detective (v.o.): it's detective mcmahon... detective (v.o.): ...i'm at the warehouse on pier 38. ah, i think you'd better get down here. jerry: yeah, okay. (to elaine) they may have found the car. elaine: (makes surprise noise) are the clubs in it? ask him. jerry: are there golf clubs in the back? detective (v.o.): we really can't tell. you better bring your service records. young cop: watch where you step. there's quite a bit of... grease. detective, jerry seinfeld is here. detective: how d'you do. thanks for coming down. jerry: (indicating) this is elaine benes. elaine: (explaining) we used to date, but now we're just friends. detective: i see. jerry: yeah. detective: i'm sorry to make you go through this, but we need to make sure. jerry: well, what's going on? what is this thing? detective: one of our patrolmen stumbled over this. elaine: (horrified) huuh! (she turns away and covers her mouth) jerry: oh my god! detective: the block is nearly split apart. we found the overhead cams thirty feet away. we can only hope the body sold for scrap. elaine: oh, my god. detective: and we know it's a saab. the angle on the vee-6 is definitely ninety-two. the model is hard to determine because the drive train is all burnt out. jerry: what is that smell? detective: look at the clutch. elaine: uuh. young cop: excuse me. detective: whoever did this didn't just dismantle it. i mean, they took their time, they had fun. they were very systematic. they went out of their way to gouge the sides of every piston, and the turbo was separated from the housing and shoved right up the exhaust pipe. elaine: uhh jerry: wait a second. turbo? i didn't have a turbo. detective: your car's not a turbo? jerry: no, it's a nine-hundred s. (happy) it's a turbo, elaine, a turbo! elaine: (sobbing happiness) it's a tu-hur-bo. woman: excuse me, did you say turbo? saab turbo nine-thousand? is it... (voice breaking) midnight blue? detective: (condolences) yes ma'am. kramer/newman: (singing) nine thousand, nine hundred and ninety-nine bottle and cans in the trunk, nine thousand, nine hundred and ninety-nine bottles and cans. at ten cents a bottle and ten cents a can, we're pulling in five hundred dollars a man. nine thousand, nine hundred and ninety-eight bottle and cans in the trunk, nine thousand, nine hundred and ninety-eight bottles and cans. we fill up with gas, we count up our cash!!... jerry: hello. tony: hey jerry, it's tony. jerry: tony, where are you? tony: aw look, i just want you to know that the car is fine. i got her all fixed up. we're in a nice area, no potholes, no traffic. so there's nothing to worry about. okay? in fact, here, somebody wants to talk to you. jerry: tony, y-you better bring that car back! tony: (angry) nobody's giving anything back! you tried to take it from me, i don't forget that. jerry: tony, it is my car, and i want it back! tony: oh, your car. you want your car back! jerry: tony. tony: listen, that registration may have your name on it, jerry. but this engine's running on my sweat and my blood. jerry: (exasperated) where do i find these guys? newman: how much gas we got? kramer: three quarters of a tank. kramer: that's better than we estimated. newman: (smugly) that is seven dollars and twenty-two cents better. newman: maybe we could uh, stop for a snack. kramer: ah, no, that's not in the budget. newman: yeah well, the budget changed, you know. i mean, it might be a good investment. kramer: that's not a good investment, that's a loss. kramer: hey, d'you see that car? looks like jerry's. i'm gonna check out that license plate. kramer: yeah, those are new york plates. newman: is that jerry's number? kramer: i don't know, but that's new york and we're in ohio. those are pretty good odds. newman: what're you doing? kramer: i'm calling jerry. newman: on what? kramer: brought my phone. jerry: (answering phone) y'hello. kramer: yeah, hey jerry, what's your licence plate number? jerry: why, what's up? kramer: yeah, well i think i spotted your car. jerry: oh my god, you're kidding. (dives for his wallet) hang on a second. (reading from his registration) it's jvn 728. kramer: (checks the car ahead of him) hey, that's it! that's it. hey, uh look, we got him. we're driving right behind him in a truck. jerry: oh my god. yeah, yeah, he said he brought it to the country. kramer: well we're in the country and we're right on his tail. jerry: good work kramer, this is incredible. kramer: yeah, don't worry jerry. we're right on this guy like stink on a monkey! i'll check back with you. elaine: elaine benes. jerry: yeah, it's me. kramer found the car! elaine: oh my god, where is it? jerry: it's somewhere in the country, they're following 'em. elaine: are the clubs there? jerry: i don't know. they're tailing him. i'm waiting for them to call me back. elaine: alright, i'm heading over right now. elaine: what's the status? jerry: last check-in, they were still on him. elaine: well, have they called the police yet? jerry: no, they won't call the police. elaine: what? why not? jerry: they're afraid they'll get in trouble for misusing a mail truck. kramer doesn't want a record. elaine: kramer has a record. jerry: not a federal record. elaine/jerry: kramer? jerry: what's going on? kramer: yeah, nothing. we're still following him. kramer: wait a second, he's getting off. yeah, he's gonna be going south on the one-thirty-five. elaine: keep following him. kramer: alright, alright, i'll follow him. newman: hey, we can't follow him, we're going north to michigan. kramer: yeah, hey listen, i can't. it's gonna be taking us out of our way. elaine: i need those clubs. jerry: kramer, i want my car. kramer: well, i don't know what to do. newman: hey, we got ten thousand deposit bottles here. i mean, this guy could be going to arkansas. jerry: keep following him kramer. don't let me down. newman: hey, don't listen to him. i mean, we can't afford a detour. our budget won't hold it. kramer: well, i don't know what to do man! newman: kramer! stay left. left, left, left. elaine/jerry: right. go right!/south! kramer: alright! alright. i'm getting off! i'm gonna go on the ramp. newman: i hope you realise what you've done. you've destroyed our whole venture. kramer: this ramp is steep. newman: all my work, my planning, my genius. all for nought. kramer: alright, look, we're pulling too much weight. he's getting away from us here. (indicating) take the wheel. newman: what're you doing? kramer: (climbing though into the back of the truck) i'm gonna get something. newman: are you crazy? kramer: keep your foot on the gas. newman: hey! you're not dumping those bottles back there, are you? newman: hey kramer, those have wholesale value! we could cut our losses. kramer: look out below!! [yankee stadium: steinbrenner's office] steinbrenner: (to himself) with this magnifying glass, i feel like a scientist. george: you wanted to see me, sir? steinbrenner: ah, come in george, come in. steinbrenner: uh, wilhelm gave me this project you worked on. george: (smiling) yes sir. steinbrenner: let me ask you something, george. you having any personal problems at home? girl trouble, love trouble of any kind? george: (wondering where this is leading) no sir. steinbrenner: what about drugs? you doing some of that crack cocaine? you on the pipe? george: (worried now) no sir. steinbrenner: are you seeing a psychiatrist? bcause i got a flash for you young man, you're non compos mentis! you got some bats in the belfry! george: what're.. what're you talking about? steinbrenner: george, i've read this report. it's very troubling, very troubling indeed. it's a sick mind at work here. steinbrenner: okay, come on boys, come on in here. george, this is herb and dan. steinbrenner: they're gonna take you away to a nice place where you can get some help. they're very friendly people there. my brother-in-law was there for a couple of weeks. the man was obsessed with lactating women. they completely cured him, although he still eats a lot of cheese. george: ah, see, mister.. i didn't write that report. that, that's not mine. steinbrenner: of course you didn't george. of course you didn't write it. george: i didn't do it! it..it just got done. i don't know how it got done, but it did. steinbrenner: of course. of course it got done. things get done all the time, i understand. (as george disappears) don't worry, your job'll be waiting for you when you get back. (banging his fist on his desk) get better george. get better! kramer: (frustrated) damn. i don't understand this. i've ditched every bottle and can, and we still can't gain. it's like we're... kramer: ...sluggish. newman: i went through all those bottles and all those cans, for what? what a waste. and i'm really gonna catch hell for those missing mailbags. kramer: heyy, wasn't that a pie stand back there? newman: (perks up) a pie stand? where? kramer: oh yeah. home-made pies, two hundred yards back. newman: aww, c'mon, pull over, pull over will ya. newman: where? i..i..i don't see it. kramer: well open the door, you get a better look. newman: i don't see any pie... newman: ...aargh! newman: kramer!! kramer: i'm sorry newman, you were holding us back. newman: (after speeding truck) kramer!! kramer: (shouting) jerry! we've lost the fat man, and we're running lean. we're back on track, buddy! newman: federal employee. federal employee. farmer: hello stranger. newman: (a touch desperate) ah, look, i..i'm sorry to bother you, but i'm a us postal worker and my mail truck was just ambushed by a band of backwoods mail-hating survivalists. farmer: calm down, now. calm down. don't worry, we'll take care of you. this farm ain't much, but uh, you're welcome to what we have. hot bath, hearty meal, clean bed. newman: oh, thank you, sir. farmer: just have one rule. keep your hands off my daughter. kramer: jerry, we got 'im. i'm riding his tail. there's no escape. he's running scared, buddy. jerry: how's the gas situation? kramer: (checks dial) i got enough to get to memphis. kramer: he's reaching in back. he's grabbing at something. kramer: he's pulling out a gun! he's got a gun, jerry!! jerry: duck, kramer! duck! kramer: it's a golf club! it's no gun. he threw a golf club at me! elaine: those are jfk's golf clubs! kramer: hey, i'm under fire here. (another club hits) i'm under heavy fire here, boy. (another hit) jeez! that was a five-iron! elaine: stop the truck, kramer. pick up the clubs! jerry: no, don't stop, kramer. keep going, don't let him get away. kramer: wait a minute, i think he's done. (peers at the saab) oh no, he's taking out the woods! kramer: (noise) kramer: (yelling at tony) you'll have to do a lot better than that! jerry: (hearing the noises) what's happening! kramer: this truck is dying. we're losing him. kramer: i think we lost him. jerry: (disappointment) dammit! elaine: (quietly) can you stop and pick up those clubs kramer? kramer: (subdued) yeah, yeah, i'll get 'em. farmer: enjoy that mutton? newman: (mouth full) it's delicious mutton. this is uh, this is outta sight. i would, i would love to get the recipe. it's very good. farmer: that cider too strong for you? newman: no, no. i love strong cider. (for the farmer's daughter's benefit) i'm a big, strong, cider guy. farmer: gonna be milking holsteins in the morning, if you'd like to lend a hand. newman: (reluctant) you know, i don't really know that much about uh.. i don't have any.. i don't.. i don't think i know much about that. farmer: ahh, susie here'll teach you. farmer: just gotta pull on the teat a little. susie: (suggestive) nice having a big, strong, man around. newman: you know, those mail bags, they get mighty heavy. i uh, i nautilus, of course. (puffs out his chest) newman: (breaking from his pose) can i have some gravy? george: (desperate) steinbrenner had me committed! i'm in the nuthouse! deena: i'll be back same time next week, pop. george: (quieter desperation) they took my belt, jerry. i got nothing to hold my pants up. (listens) well, you gotta come over here now! just tell 'em what we talked about, how i, how i, i didn't do the project. deena: george? deena: i see you're finally getting some help. george: aw, hoh, oh deena, thank god. (he hugs deena) thank god you're here. listen, you gotta help me. you gotta tell these people that i'm okay. you know that i don't belong in here. deena: george, this is the best thing for you. (she walks away) george: yea... (sinks in) what? no, no! george: deena! deena, wait a... deena, help! pop: is that little georgie c? how's the folks? you still got that nice little car? newman: (screaming in panic) aaah!! aaah! kramer: what you doing?! newman: (pushing past kramer) kramer, help me! help me! kramer: (takes one look and sets off after newman) jeez! farmer: (taking aim) i told you to keep away from my daughter! susie: no daddy, you'll hurt him! i love him! (waving after newman) goodbye norman, goodbye. peterman: (excited) elaine! you found the clubs. that's wonderful news. where are they? elaine: (not the soul of happiness) yep. lemme get 'em for you, mr peterman. peterman: oh, i'll be inaugrating them this weekend, with none other than ethel kennedy. a woman whose triumph in the face of tragedy is exceeded only by her proclivity to procreate. elaine: the uh, the letter of, authenticity's in the side pocket there. peterman: elaine. i never knew kennedy had such a temper. elaine: (spotting a chance to keep her job) oh. oh yeah. the only thing worse was his slice. (she laughs nervously) peterman: see you on monday. elaine: have a good game. [setting: the coffee shop] jerry: hairdo? elaine: (looking up from a menu) yeah. jerry: you look like brenda starr. elaine: is that good? jerry: it's better than dondi. elaine: hey, my god, look at that. (jerry looks over at the table. a man and a woman are dining) david and beth lookner. (leaning in for confidentiality) you know, i heard a rumor their marriage was a little rocky. jerry: (interested, still looking at the couple) really? elaine: mm-hmm. jerry: you know, i have a little thing for beth lookner. elaine: well, i have to admit, i've always thought david was kind of sponge-worthy. (winks, making a clicking sound with her tongue) jerry: yeah.. i've been waitin' out their marriage for three years. elaine: yeah, me too. well, i've been waiting out two or three marriages, but this is the one i really had my eye on. george: this car out there is taking up, like, three parking spaces. elaine: oh, (laughs at george's misfortune) that's mine. george: you have a car? elaine: well, my friend, elise, lent it to me for the week. she's out of town. jerry: (noting) you know, i've never seen you drive. george: me either. beth: (unsure as to whether it's him or not) jerry? elaine, hi! elaine: (overly generous) hi, david! jerry: hi, beth! beth: oh, uh, george, (introducing to two) this is my husband, david. george: oh, hi.. (they shake hands) david: hello. so, george, uh, you're the one who works for the yankees, right? george: yeah. why, what do you do? david: well, i sell insurance, but beth used to be don mattingly's doctor. george: really? beth: mm-hm. david: yeah. george: (laughs slightly) a physician married to a salesman. (chuckles) well, i gotta tell you, beth, you coulda done a lot better than him. [setting: jerry's apartment] kramer: hey! jerry: hey. hey, mickey. what's going on? mickey: i'm very nervous. i'm auditioning to be in the actor's studio tonight. jerry: really? kramer: it's a method, jerry. it's intense. (clicks his tongue) mickey: kramer's going to be my scene partner. jerry: kramer? mickey: he doesn't have to say anything, he just has to sit there. i'm playing a detective. kramer: yeah, and i'm playing a business man accused of murder. jerry: ohh boy. well, i gotta meet elaine and run some errands. so.. (goes for his coat) kramer: (fixing up his pants) yeah.. look at this, mickey. these pants are fallin' apart, huh? jerry: (fishing for his keys in a kitchen drawer) you know, when i first met you, kramer, you used to wear jeans all the time. kramer: (looking over mickey's shoulder at the script) yeah, well, i was a different man then. jerry: (jokingly playing off kramer's statement) with a different body. kramer: (slightly offended) hey, i got the body of a.. taught, pre-teen, swedish boy. jerry: ehh, i dunno.. kramer: now, what are you thinkin'? (getting upset) you think that i'm not able to wear jeans anymore? is that what you're sayin'? because if that's what you're sayin', jerry, i'll go and i'll buy some jeans. (jerry shrugs. kramer raises his voice to a menacing tone) i swear to god i will! (jerry's showing off a skeptical face. [setting: elaine's car] elaine: god, it is so great to drive again. i miss it so much! (suddenly swerves to the right, then yells out of her window) how about a left turn signal, ya moron?! jerry: (his thoughts) i'm so nauseous. she's the worst driver. elaine: you know what? on my first road test, i hit a dog. (jerry nods, blinking) i think it was a golden retriever. no, no, no, it was a - it was a yellow lab. (picks up the car phone) i'm gonna check my messages. (begins to dial as she pulls up to a pedestrian crosswalk. she stops right before hitting a man crossing the street) man: hey! jerry: (once again, the audience hears his thoughts) i'm so car sick. i'm gonna vomit! elaine: oh my god! jerry! my friend, kim called - david and beth got separated last night! jerry: (out of it) huh? elaine: they're gettin' divorced! (quickly breaks, stopping traffic) [setting: monk's coffee shop] elaine: so, now, what is our move? what do we do? jerry: i don't know, but we don't have much time. elaine: (agreeing) mm. jerry: the city's probably teeming with people who've been waiting out that marriage. elaine: right. jerry: it's like when tenant dies in a rent controlled building - you gotta take immediate action. elaine: yeeah, but david and beth are going to need their grieving time. jerry: their grieving time is a luxury i can't afford. i'm calling beth tonight, and if you want a clean shot at david, i suggest you do likewise. elaine: (nodding) yeah, yeah.. jerry: but we gotta make it seem like we're not calling for dates. elaine: then why are we calling? jerry: good question. (more to himself than to elaine) why are we calling? elaine: ah! (jerry has a surprised look) i've got it! i've got it! we're calling just to say, "i'm there for you." jerry: (nodding, trying it out) "i'm there for you." elaine: then, after a period of being "there for you", we slowly remove the two words "for you", and we're just (makes a "ta-da!" gesture) "there". [setting: jerry's apartment] elaine: hey. jerry: hey, remember beth and david from yesterday? they got separated. george: really? (realizes) well, you don't think it had anything to do with what i said, do you? jerry: what'd you say? george: you know, that, that thing about her being too good for him. i mean, i was just bein' folksy. they could tell i was just being folksy..? elaine: yeah, i thought you were being folksy. george: totally folksy. jerry: hey, uh.. (kramer walks around a little) what'd you get there? kramer: uh, yeah, i bought dungarees. elaine: kramer, they're painted on! kramer: well, they're slim-fit. jerry: slim-fit? kramer: (talking fast) yeah, they're streamlined. jerry: you're walkin' like frankenstein! kramer: (making his way toward the door) what? they just gotta be worked in a little bit, that's all. (pulling the door shut behind him) alright, see you later. [setting: elaine's apartment] elaine: (mock sympathy) well.. david, it happens. jerry: sure, beth, these things happen. (brief pause) so, have you told many.. people yet? elaine: because it's really nobody's business. jerry: anyway, i just called to tell you that, i'm there for you. elaine: "there" is, um.. anywhere you want me to be.. jerry: sure, dinner would be fine. elaine: and i could just be there. (adding) for you. kramer: jerry, you gotta help me! jerry: what's wrong? kramer: i can't get my pants off, and mickey's audition is in twenty minutes! you know, i'm supposed to be a business man, i gotta be in costume! jerry: alright, alright. uh, undo them. i'll help you get them off. kramer: (bracing himself on a bar stool) yeah, i already did it. it won't come off. the zipper's suck.. jerry: (walks over and starts pulling on kramer's pants) you just gotta wiggle your hips a little bit. kramer: (wiggling and floppin) pull down jerry: (stops pulling on the pants) alright, alright, that's no good. (moves kramer over to the couch) let me try getting them from the bottom. (goes for kramer's leg) just gimme one leg. kramer: (feet off the ground, his body going everywhere on the couch) wait, jerry...wait a minu... jerry: (still pulling on kramer's pants from the ankles) man these are tight. (yanking) squinch your hips in jerry: (still pulling) squinch em! kramer: (getting pulled and pulled) i...um...ei... jerry: (stops) alright, that's not gonna work, it's not gonna work. let me just think for a second here. kramer: (starts to tilt back onto the couch) you better get me. (falls back and jerry starts to him upright) get me up, get me up, get me up. jerry: hold it, hold it...look your gonna need the jaws of life to get out of those things. kramer: (walking toward the door) look i don't have time to wait, i'm gonna be late. jerry: (kramer waddling out the door) maybe you can soak in the tub. kramer: you better get the door. [setting: restaurant] beth: it was nice to get your call. jerry: well, i just want you to know i'm there for you. course now i'm here for you, but when i'm not here for you, i'm there for you. beth: (laughing) well where ever you are i appreciate it. jerry: so how did this all happen? beth: well actually, it had a lot to do with george's comment. jerry: (stunned) is that right? beth: i thought maybe i could do better. jerry: maybe, maybe beth: well it wasn't just that, i realized after 3 years of marriage that david's little quirks were getting on my nerves a little. jerry: (agreeing) well three years is a long time to be married. beth: like in the middle of our fight last night he did this thing that he always does where he asks questions to himself, aloud. and then answers them. david: am i happy beth left me? of course not. do i hope to pick up the pieces and move on? absolutely elaine: you're gonna pick up the pieces. david: just had our third anniversary on april 8th elaine: 10th david: (very sad) right elaine: right david: (mad) you know as far as i'm concerned, this whole thing is george's fault elaine: well, david the thing about george is that he's an idiot. [setting: play house] casting director: alright, auditioning next is mickey abbott (mickey starts looking around for kramer and checks his watch) doing a scene from the terrance clifford play "press wounds in ithaca" mickey: (stands up) sorry my scene partner isn't here yet so i guess uh..(kramer enters and runs into some chairs) oh kramer: hey, sorry i'm late. mickey: (quietly talking to kramer) what's with the jeans you're supposed to be a business man kramer: i know, it's a long story. mickey: well just get up there mickey: so, bradley. i guess this is the last place you expected to find yourself. kramer: (takes a breath) mickey: well we're gonna be here a while so take a seat. (kramer starts trying to sit down, mickey has his back to him and gets out a pack of cigarettes, mickey then turns around once he has his cigarette to find kramer struggling to sit down) you know if it hadn't been for that secretary of yours...i said sit down! (kramer still trying to sit down, mickey throws the pack of cigarettes to the floor) are you deaf bradley?! i said sit down! kramer: (still trying to sit down, says under his breath) i'm trying. {hard to make out} mickey: (almost starts to laugh) bradley! (looking to the crowd) it's very important that you sit down (kramer still trying to sit down) now for the last time, (angry) try again to sit down! (running at kramer with his arms in the air) sit down you big stupid ape! (mickey tackles kramer) [setting: jerry's apartment] elaine: did i have a great time with david lickner last night? i sure did. (jerry comes over to the couch with a beverage and sits down) do i think there is a future here? i don't see why not. jerry: i'll tell you, that there for you crap was a stroke of genius. elaine: ooooh, please. jerry: never mind elaine: ah come on jerry: you're a genius! elaine: aaalright! elaine: mmmnn, georgie! george: (confused) what, what's going on? jerry: what's going on? you're the man of the hour, that's what's going on. elaine: right george: what do you mean? elaine: well thanks to you and your little comment there to david and beth. jerry and i are in prime pouncing position to scoop these two up (jerry and elaine do a little slow dance of joy) before they know what hit em. george: so it was my comment that broke them up? jerry: according to them elaine: ya george: i feel terrible, i can't be responsible for breaking up a marriage. oh no (starting moving for the door, elaine begins to stop him) jerry: (moving over to block the door) where are you going? george: well i gotta go talk to beth. jerry: talk to beth? george: well i gotta undo what i did. jerry: you're not undoing anything. george: oh yes i am jerry: oh no you're not! george: (starts to try to get passed jerry and elaine) alright get out of my way. (jerry and elaine push him back, george very annoyed) alright don't make me get physical here! elaine: (put her finger in george's face) you be careful george. [setting: beth's apartment] beth: (opens the door to reveal a ruffed up george) george?! george: hi beth (scene ends then re-begins with beth and george on beth's couch) um anyway jerry told me that uh.. it might have been my comment in the coffee shop that broke you up. beth: oh, well you know it's funny george. sometimes you don't know how you're really feeling about something until a person like you comes along and articulates it so perfectly. george: oh (snorts) articulate....me? i've never articulated anything, i'm completely incoherent. beth: (gets up to answer the phone) i don't know about that. hold on (picks phone up) hello...hi (pauses for jerry to speak) ya last night i had a good time too (pauses for jerry to speak) really? that's so funny he's here right now. jerry: (talking to beth on the phone) could you put him on, i'd love to say hello. beth: (talk to jerry) sure. (starts to hand george the phone) george it's jerry. george: he..he wants to talk to me? beth: ya he says he wants to say hello. george: sweet guy (receives the phone from beth, starts to talk to jerry) hello jerry: george what the hell are you doing over there? i told you to mind your own business now stay out of my affairs! george: oh jerry, that is so sweet of you but actually i already ate. jerry: ate? what? what the hell are you talking about? now you listen to me, you get out of that apartment this instant. if you screw this up for me i swear.... george: (cuts into jerry talking) chocolate chip mint? oh well, actually jerry i prefer chocolate chip. what is it about the chocolate and the mint that makes it go so well together? jerry: what are you talking about? george: oh of course you can use it, sure. (jerry saying stuff through the phone) ok, bye. (hangs the phone up) [setting: jerry's apartment] kramer: hey jerry: hey, are you still wearing those things. kramer: oh ya, i think they are starting to loosen up a bit. (mrs. anvino come to jerry's threshold) oh hi mrs. anvino. mrs. anvino: oh kramer would you do me a favor my baby sitter hasn't show up could you come watch joey for an hour i gotta run out. kramer: sure mrs. anvino, ya. mrs. anvino: he's sleeping already, you don't have to do anything, just wait till i get back kramer: (salutes jerry on his way out) see you later buddy. jerry: see you later jerry: hello beth: hi jerry it's beth. jerry: (excited) oh, hi beth beth: hi, i've been doing a lot of thinking today and i don't know maybe i made a huge mistake jerry: (under his breath) george. beth: i'm feeling really confused. jerry: um. i'll call you back ok? beth: ok jerry: trouble elaine: what jerry: george elaine: is it? jerry: ya elaine: dam jerry: what are we gonna do? elaine: what do we do? you get your ass over to beth's, toot sweet. that's what you do and turn on some of that so called charm you're always telling me about. jerry: ya i could try and do that. elaine: (pushing jerry) you don't try, you do it! i got the loser in this relationship and i'm breathing new life into him, you give me three more days, he won't be able to remember her name. you got the winner, you got the easy part. alright let's go (claps) i'll drive you over there. come on. jerry: no you go on ahead, i'll take the bus. elaine: what? i'm parked right outside, let's go. come on (grabs jerry's arm) come on. jerry: no, no. i'll take the subway. elaine: (pulling jerry out the door) nah it doesn't matter come on, i'll take you. jerry: na, uh, no, uh, i'll hitch hike. elaine: what's your problem? jerry: it's really not necessary. [setting: monk's] george: (breaks a long silence) the uh, the shoe laces that you bought me, they uh, they worked out well. (thumbs up) susan: well you know, if you need some more. i can get them for ya. george: should be a while though. [setting: jerry and elaine driving through the city] elaine: (car tires screeching) woah, ahhh. hehe ha ha ha. that was close. confide in her, open up to her. you know women like that. jerry: i don't feel so good. [setting: beth's apartment] jerry: anyway beth, you know i was thinking on my way over how when i was 9. i wanted these handball sneakers, they were all black but they came in adult sizes so you know i never got the sneakers. (beth looks him confused) beth: oh really? [setting: elaine and david walking] elaine: my father left us when i was 9 so i guess that is why i have such a fear of abandonment. david: wow that's so touching elaine: yes it is. david: (looking in through the window) hey it's george elaine: oh, maybe we should go some place else. david: no, let's go in. george: oh uh hi hi, david david: hi george george: elaine elaine: hi george: listen uh, david, i, i, i want to apologize about that comment david: (interrupting) george please, please i'm fine. george: oh ya, this is my fiance, susan. this is david susan: david david: oh fiance. boy you coulda done a lot better than him. (susan laughs) come on elaine lets go. [setting: the anvino apartment] joey: (wakes up to see a shadow image of kramer and takes off out of the apartment) aah! it's frankinstein! frankinstein! kramer: (waddling after joey) joey! joey! [setting: apartment} girl: mickey you were so incredible in that scene yesterday, the rage. mickey: right, the rage. tons of rage. kramer: (going to the phone) i don't believe this mickey: (phone rings, sighs, answers) hello? kramer: mickey mickey: oh hi kramer. what do you want, i'm a little busy. kramer: look, you gotta do me a favor. mickey: what? now? i can't kramer: hey, you owe me. i got you into actor's studio. they thought what we did was the scene. mickey: oh alright, alright. i'll be right over. george: (coming back to the table from the bathroom) oh uh. you ready? susan: (sighs) you know what george, uh. why don't you go ahead. i think i'd like to be alone for a while. george: oh sure, sure. you wanna be alone, sure. i understand that, you wanna a little time to think uh thing..ponder things..you know..ruminant..(chuckles) you go ahead, lotta stuff on your mind..you think things out..think, mull, mull, do a lot of mulling. (short laugh then exits monk's) [setting: anvino apartment, joey's bedroom] kramer: i gotta go find this kid. so all you gotta do is lay here, pretend you're asleep in case she gets back, here (grabs the covers and throws em over mickey) keep the covers over ya. mickey: why don't you just cut the stupid pants and get them off already/ kramer: i'm breaking them in, and they're feeling better. mickey: what am i gonna do in here? kramer: just keep the lights down and your eyes closed. i'll be back. [setting: jerry's apartment] george: jerry! jerry! je jerry jerry . the most unbelievable thing has just happened, it's too unbelievable! i'm sitting in the coffee shop, i'm talking to susan, were talking about shoe laces (does two guns to the head) so in walks..in walks david, right, he walks right to the table..righ i introduced him to susan..and he says get this (laughs) he says 'boy you could do a lot better than this guy' huh right (more laughing by george, jerry is totally just mellow and straight faced) the exact same thing that i said to him, just to get back at me just to get back at me..and then, and then she says she wants to be alone for awhile..alone jerry! i think that she thinks that she could do better (laughs) do you appreciate this? do you see the irony of this? do you see what is going on here? what's the matter? jerry: i'm nauseous. george: is that what's hurting your appreciation for the story? jerry: a little george: because it's really a pretty good little story. don't you think? jerry: it's not bad. george: yea kramer: joey, there you are. hey joey: ah!! kramer: joey joey: (runs into the arms of a police officer) a monster kramer: i'm the babysitter mrs. anvino: goodnight, honey. mickey: goodnight jerry: it's gotta have something to do with kramer [setting: david and elaine at david's apartment] david: elaine, here's to you being there. elaine: and here. david: excuse me. (answers the door) beth beth: david elaine: (takes a huge shot) i'll tell ya, it's not bad. [setting: george and susans' apartment] susan: george? george: (places the doll presumingly where it belongs on a shelf) ya? susan: can i talk to you for a minute? george: ya, sure sure. susan: i've been doing a lot of thinking about the wedding and all. and uh (george puts his head down and his hand on her shoulder as if to brace himself for something big) i've decided to go with the chicken. [setting: kramer at the police station] officer: so chasing little kids huh? you're in a lot of trouble mister. kramer: no no look, i was baby-sitting officer: ya ya right. sit down! officer: what are you deaf? i said sit down! (kramer tries to sit down but struggles) hey, for the last time, sit down. kramer: (somewhat under his breath) ya ya. susan: hi. clerk: hi.. may i help you? susan: yes, we'd like some wedding invitations. clerk: ohh! well...congratulations susan: (happily) thank you. george: (mildly embarrassed) yeah.. thank you. clerk: when 's the wedding? susan: june george: late june. clerk: oh! well, we have quite a few to pick from ( turns around and picks up a huge binder) they're arranged in order of price , the most expensive are in the front. george: he..hmmm. humm...what about this one. clerk: hmmm,..to tell you the truth they haven't manufactured that one for a number of years. i might have couple of boxes left in our warehouse in new jersey. i'd have to check. susan: oh! no. george that's so ugly we don't want that. george: what's the difference you just read it and mail it right back. these we'll do. susan: why don't they make'em anymore? clerk: well.. for one thing the glue isn't very adhesive. it takes a lot of moisture to make them stick. george: so we pick up some (word missing) susan: (disappointed)all right. you see what i do for you. george: hey! kramer. kramer: hey! george.....lily.. susan: no. susan. kramer: no. no it's lily susan: i think i know my own name. george: it's susan kramer: (lost for words) well you look like a lily... george: it's coming jerry, it's coming. jerry: what's coming? george: the day.. jerry: ahhh...the day.. george: we ordered the wedding invitations today,, nothing can stop it now. nothing. it's here! it's happening. can i do this? i can't do this...look at me. look at me i can't do this, i can't do this (manic) help me jerry, help me. jerry: why don't you just break it off with her. tell her it's over george: i can't jerry: why not? jerry: all right take it easy, just take it easy. george: what about a letter? jerry: a letter. george: i...i...write a letter and then i..i go to china. i disappear in a sea of people for like six months, a year you know just while things simmer down. ehm.. ehm...dear susan. i'm sorry. i made a terrible mistake. i'm really , really sorry. jerry: that's it? george: what? too short? both: seems a little short, yeah.. jerry: you can't go to china what about your job? george: my job..arghhh jerry: so write a letter.. move to another...move to staten island., 'lot easier to blend in a sea of people in staten island than china believe me. george: yeah! yeah!..staten island . what about my clothes ,how do i get the rest of the clothes? jerry: aagh! you come back for your clothes george: i'm not going back in there. jerry: so forget about your clothes. george: well i'm not starting up a whole new wardrobe now!!! jerry: look, freedom with no clothes is a lot better than no freedom with clothes. george: if she'd just take a plane somewhere. jerry: and what, hope for a crash? george: it happens. jerry: you know what the odds are on a crash it's a million to one. george: it's something . it's hope. elaine: hey!...( sees george) hey!! georgie. you know what i just realized; the wedding is like a month away.ha..haa.. jerry: euhh...elaine.... elaine: what?...oh! by the way. what am i going to be in the wedding party? george: what do you mean? elaine: well jerry's gonna be the best man and kramer's gonna be the usher so what am i gonna be? george: i don't know. i don't think you're anything. elaine: wel...i have to be something. i 'm a close friend....what about being a bridesmaid. george: those are susan's friends. elaine: well then...aaahh how about being an usher? george: well...i'll ask susan about it later. elaine: you don't ask.. you tell. george: ( to jerry) what about the letter, should i think about the letter? jerry: hey elaine if a guy wanted to end a relationship with you . what could he do? elaine: start smoking. george: smoking. jerry: does she hate cigarettes? george: yes, she hates cigarettes. jerry: but you don't smoke. george: nooooooo...... jerry: you know, i think i'm getting a little depressed about george's wedding. elaine: really? jerry: yeah. well once he gets married that's it, she'll probably get pregnant, they'll move to westchester. i'll never see him again. elaine: yeah! you're probably right. jerry: then it'll just be me, you and kramer. elaine: no! not me pal. i can't keep this up much longer. i'm sick of being single. i'm getting out. jerry: so it's just gonna be me and kramer. elaine: yep! just you and kramer. jerry: see you ... me and kramer... kramer: hey!! buddy. i thought of a great invention for driving. a periscope in a car, so you can see the traffic. jerry: (annoyed) how you gonna drive when looking through a periscope? besides it's not a submarine and there's no room for a periscope in a car. kramer: huh! you make a higher roof. jerry: they're not making higher roofs. kramer: why can't you make a higher roof. jerry: because it's a stupid idea. no one's gonna go for it. don't you understand it's stupid ,stupid... jerry: .....stupid , stupid. jeannie: hey! hey! look out. (she pulls him back saving his life.) ok!, are you okay? jerry: yeah!.. thanks.oh! my god you saved my life. jeannie: shouldn't there be some kind of reward for that. jerry: oh! thank you. jeannie: you know you should be a lot more careful crossing the street like that, otherwise you could die.. if that bothers you. jerry: well i... jeannie: you see..(points to his collar) to me this is a waste. jerry: what? jeannie: the shirt you got on under your sweather. it sits for three weeks in your drawer, waiting to come out. and when it finally does . it sticks up only half an inch out of your collar. jerry: i'm jerry seinfeld. jeannie: jeannie steinman. jerry: hey! same initials . how do you like that? jeannie: i like it. george: listen i was talking to elaine today and she said she'd would really like to be an usher at the wedding susan: no. out of the question. i don't want any women ushers at my wedding and while we're on the subject, kramer is not an usher either. george: why not? susan: he doesn't even know my name. george: that was an honest mistake. susan: nah! he's too weird he'd fall or something. he'd ruin the whole ceremony. george: yeah! you're right.. you're probably right. susan: whadda doing? george: (shrugs and lights it up) susan: since when do you smoke? george: (coughs) i've always smoked. susan: i've never seen you smoke. george: oh yeeah.. well , big smoker... i (coughs some more) gave it up for a while but it was too tough. y' know.....i got no will power. susan: i don't like this one bit. george: well(coughs) i can't stop now...(coughs) i'm addicted... susan: well you are gonna have to quit. george: oh my god.... waitress: menus? jerry: no. i know what i want. waitress: the usual? jerry: yeah., waitress: and for you? jeannie: i'll have a bowl of cheerios , not to much milk. waitress: ok two bowls of cheerios. jeannie: you too.?... jerry: yeah!!! kramer: hey! did you hear the bank on the corner is offering a 100 dollars if you go in there and they don't greet you with a hello? jerry: uh! really .that's nice. kramer: now what's with you? jerry: i think i'm in love. kramer: oh. come on. jerry: no it's true. this woman saved my life. i was crossing the street .i was almost hit by a car...and then we talked and.......the whole thing just seemed like a dream. kramer: if a guy saved your life you'd be in love with him too. jerry: no, no this woman is different , she's incredible. she's just like me. she talks like me, she acts like me. she even ordered cereal at a restaurant. we even have the same initials. wait a minute, i just realised what's going on. kramer: what? jerry: now i know what i've been looking for all these years......myself! (kramer is speechless) i've been waiting for me to come along and now i 've swept myself off my feet. kramer: you stop it man.. you're freaking me out!!! kramer: hey! teller: hey! kramer: hey! wait a second. you didn't say hello. teller: yes i did kramer: no no you didn't ...hundred dollars.. i get a hundred dollars. teller: no, no i said hello. kramer: no, no you said hey! teller: well.. hey! is hello, same thing. kramer: the add said that the bank's gonna pay a hundred dollars if you are not greeted with a hello teller: you're taking that much to literally. now sir , do you have any business to transact. kramer: no, i want to speak to the manager. teller: well, he's not here right now. kramer: then i'll be back. elaine: so i'm not gonna be an usher? george: no.. elaine: so i'm nothing. jerry is best man , kramer is an usher and i am nothing. george: well kramer's not an usher anymore. kramer: what are you talking about? george: you've been demoted. kramer: why? george: because you called her by the wrong name. kramer: but she really looks like a lily elaine: jerry ( as they come into the apt.) jerry, susan says i can't be an usher at he wedding. kramer: yeah. me neither. jerry: (shrugs) hey george i think i want to bring a date to the wedding george: who!!? jerry: i just met her, she's incredible. elaine: aaawh...this is great!!.....now i'm gonna be stuck at the singles table with all the losers. jerry: you can go with kramer kramer: no , no no no no. weddings are a great place to meet chicks. i have to be unfettered. george: do you see what this is turning in to? do i need this. i have to get out of this thing. elaine: did you try the cigarettes? george: yeah.. they made me sick. kramer: all right, all right. lets get down here. you really want to get out of this thing ? george: yeah... kramer: all right. i got two words for you; pre-nup. george: what does that mean? kramer: ask her to sign a pre-nup. george: what does that do? kramer: because most women when they're asked to sign a pre-nup are so offended they back out of the marriage. george: they are?... elaine? elaine: i wouldn't sign one. george: pre-nup of course ..kramer.... kramer: get out of here. george: hi. susan: hi. hey i've been going over the list .what about the drake? wanna invite him? george: yeah. got to invite the drake. listen hem...there's something that's been on my mind and we haven't really talked about it..i t's kind of important to me. susan: what is it? george: well i i ..put a lot of thought into this and i think i would like you to sign a prenuptual agreement. susan: a pre-nup? george: yeah. susan: (burst out laughing) george: what's so funny? susan: ha.ha.ha. ha...you don't have any money. i make more money than you do. ha. ha. ha. yeah.. give me the papers i'll sign 'em.( she leaves) a pre-nup... jerry: excuse me.( gets up and opens the door) kramer: jerry.... hey jeannie. jeannie: hello. kramer: remember i told you about the bank? jerry: yeah. kramer: yeah well i went in there and they said hey! jerry: hey is the same thing as hello. what do you think jeannie. jeannie: yeah i think it's the same thing. kramer: oh! big surprise ( he leaves frustrated) delivery man: delivery from melody stationaries. susan: oh those are the invitations. delivery man: just sign there. susan: yeah! thank you. george: see ya later. susan: urgh.. these are so cheap. (as george leaves) and don't forget tommorrow we're going shopping for some rings, so don't make any plans...and this time we're not skimping. kramer: hey jerry: hey. kramer: jeannie left? jerry: yeah , she's coming to see my act tonight. kramer: oh yeah! well that's nice. i'm sure that's right up her alley. jerry: what's with you? kramer: nothin' jerry: something on your mind? kramer: no. jerry: looks like there is? kramer: no jerry: come on. something's on your mind. out with it. kramer: i don't like her. jerry: you don't like her? kramer: that's right i don't like , i never like her from the get-go. jerry: what's wrong with her? kramer: everything she thinks. you think. everything you think she thinks. no i can't take it. i can't take it jerry. it's too much. it's too much. jerry: well you can't take her maybe you can't take me either. kramer: so that's how it's going to be jerry: that's how it's gonna be. kramer: oh! god help us!!! susan: eurk.. awful manager: may i help you? kramer: yeah. uh..i was in here the other day and i went up to that teller and he didn't say hello. manager: then you are entitled to a hundred dollars. that's our policy. kramer: yeah., but he wouldn't give me the money. manager: hehummm.. jim...can i see you for a second jim: uh.. yes can you give me a minute. manager: yea....hum......he'll be. hum.. right over.(awkward pause) kramer: (knocks on desk) is thi oak? manager: 'think it's pine. kramer: pine is good. manager: yeah. pine's okay. jim: you want to see me manager: yeah... hum..jim , a man here says came in the other day , you didn't say hello? jim: no, no that's not true, i said hey! you know like a friendly greeting, hey! kramer: but that's not hello. manager: that's a tough one. kramer: uhummm... manager: you know what, let me bring some other people in on this...barbara, jane, mike can i see you please. barbara: how you doin'? jane: what's happening? mike: what's up? manager: (to kramer) can you excuse us for one minute. just one minute. manager: thanks. (they huddle) some guy: how's it going? manager: thanks, thanks everybody. (they leave) sir, have a seat. manager: well , we've discussed this, here's the feeling. you got a greeting starts with an h how's twenty bucks sound. kramer: i'll take it. manager: awright sir (they shake hands) jerry: will you marry me? jerry: i would like to propose a toast....wait a second.. george! george costanza come in here. jeannie: georgie boy.. jerry: george, big news; i'm getting married!! george: married , what!(astounded) jerry: september 21st, first day of autumn. leaves changing colours.. beautiful colors. jeannie: ... all that crap. jerry: you see , i kept up my end of the pact. george: good for you (sympathetic) jerry: hey look , champagne.. george: hehehe. .(feebly) jerry: to our future wives....yeah... jerry: well it's been quite a night i could sure use a cup of coffee. jeannie: hey! what's the deal with decaf; how do they get the caffeine out of there and then where does it go? jerry: (weakly) i dunno jeannie: that's a shame.. jerry: (to waitress) i' ll just have a cup of coffee. jeannie: bowl of corn flakes. jerry: more cereal? that's your third bowl today, you had it for breakfast and lunch. jeannie: hey! so what's the deal with brunch, i mean that if it's a combination of breakfast and lunch. how comes there's no lupper or no linner. kramer: hey!! frank just called me. congratulations. jerry: thanks , thanks kramer: look i'm sorry about before....i mean i'm sure i'll learn to like her, jerry jerry: yeah , yeah . kramer: c'mon , c'mon what's the matter? jerry: i think i may have made a big mistake. kramer: oh! come on. jerry: all of a sudden it hit me, i realized what the problem is; i can't be with someone like me.. i hate myself!! if anything i need to get the exact opposite of me....it's too much. it's too much i can't take it ...i can't take it!!! kramer: (mocking) too bad you got engaged. jerry: yeah! too bad. jerry: hello. oh! hi george.......what! ..really! all right i'll call elaine , we'll meet you down there. kramer: what happened? jerry: they just took susan to the hospital jerry: so she was just lying there. george: tsss...yeah.. elaine: i wonder what happened? george: i don't know....hmmm ha! here's the doctor. doctor: excuse me , are you the husband? george: well , not yet.. fianc. doctor: well , i'm sorry.....she's gone. george: .........what's that?... doctor: she expired. george: ...are you sure? doctor: yes , of course. george: so.....she's dead? doctor: yes george: ...huh! doctor: let me ask you ; had she been exposed to any kind of inexpensive glue? george: ...why? doctor: we found traces of a certain toxic adhesive commonly found in very low priced envelopes. george: well she was sending out our wedding invitations. doctor: that's probably what did it. george: we were expecting about two hundred people...well...thank you , thank you. george: she's ahem....gone jerry: dead? elaine: i'm so sorry george jerry: yeah! me too kramer: poor lily.. jerry: how did it happen? george: apparently the glue in the wedding invitations was a....toxic. all: aah!.. kramer: well that's weird jerry: so i guess , you're not getting married? george: (embarrassed with a touch of unrestrained jubilation) yes. jerry: but.... george: yeah? jerry: well , now i'm engaged.. george: yeah?... jerry: well i thought we'd both be getting married. george: hey!.. what can i tell ya. elaine: all right. (they start to leave except jerry) george: well humm.. lets get some coffee. jerry: we had a pact!!! george: yes i'd like to speak to marisa tomei, please? marisa, hi it's george costanza.. i'm the short, funny, quirky bald man you met a little while ago, heh! yeah i was just calling 'cos i wanted you to know that i'm not engaged anymore......well huh, she died....toxic glue from the wedding invitations.....well we were expecting about two hundred people. yeah... anyway.. hum i got the funeral tomorrow but huh.. my weekend is pretty wide open and i was wondering... (dial tone interrupts george)..... hello...hello.. george: well... it's a magnificent stone. mr. ross: they put it up this morning. george: it's just a magnificent stone. (turns to jerry) jerry? mrs. ross: george... we'll leave you alone with her. george: what? mrs. ross: i'm sure there are things you'd like to say. george: no, i-i-i-i'm good. really. george: jerry... jerry: thank you, no. george: (to susan's stone) ...and then, right after the all-star break, we, we just swept the orioles. four games. in baltimore. (adjusts necktie nervously) so... yeah. george: boy, that was awkward! jerry: i don't mind the cemetery. george: what were you saying to the rosses over there, anyway? jerry: oh, i don't know. i told them her death takes place in the shadow of new life. she's not really dead if we find a way to remember her. george: what is that? jerry: star trek ii. george: (identifying it) wrath of khan! jerry: right. kramer and i saw it last night. spock dies, they wrap him up in a towel, and they shoot him out the bowel of the ship in that big sunglasses case. george: that was a hell of a thing when spock died... jerry: yeah... george: well anyway, the, uh... the stone is up, i paid my respects, guess that's it. jerry: so it's over? george: i have mourned for three long months! summer months, too! anybody could grieve in january! it's time for george to start being george again. jerry: all right, so uh, let's do something later. how 'bout a movie? george: yes! nothing says george like a movie! kramer: movie? jerry: yeah, you in? kramer: no, no, no, i can't. i got my martial arts class. george: george is going to the movies! (exits) jerry: (to kramer) so how's your karate class going? kramer: (pronouncing it "kar-ah-tay") karate, jerry. karate. the lifetime pursuit of balance and harmony. jerry: ...but with punching and kicking. kramer: jerry, karate is not here (pointing to the ground). it's here (points to head), and here (points to chest), and here (makes a circle with his hands). jerry: alright, i gotta go to the airport to pick up elaine. kramer: what, she's been away? jerry: she's been in mexico for six weeks. kramer: no, i really think you're wrong. we just went to the fireworks the other day. jerry: that was july 4th! jerry: alright, i'm outta here, and when i get back, i don't want to see you here (points to kitchen), here (points to living room), or here (makes similar circle with his hands). elaine: it was unbelievable. six weeks of traveling through mexico all on peterman's peso. jerry: wow. so did you get any good ideas for the catalog? elaine: oh, tons! jerry: anything you couldn't have gotten tearing open a bag of doritos and watching viva zapata? elaine: (laughs sarcastically) you don't respect my work at all, do you? jerry: no, i don't. elaine: so what's been going on around this dump? how's your fiancee? jerry: my what? elaine: jeannie... your fiancee. jerry: oh, yeah, that. well... elaine: all right. spill it, jerome. jerry: there's really not that much to tell. jerry & jeannie: (simultaneously) i hate you! jeannie: see ya. jerry: see ya. jerry: (continuing) no rejection, no guilt, no remorse. elaine: you've never felt remorse. jerry: i know, i feel bad about that... elaine: i bet your parents were upset, huh? jerry: eh. elaine: you haven't told them yet, have you? jerry: no. dugan: "so i pressed through the rushes, there below me, the shimmering waters of lake victoria..." j. peterman: oh, for the love of god, man! just tell me what the product is. dugan: it's a, uh, washcloth. j. peterman: no washcloths! elaine: well, mr. peterman, i've got a really good idea for a hat. it combines the spirit of old mexico with a little big city panache. i like to call it the urban sombrero. j. peterman: (rubbing his neck) oh, my neck is one gargantuan monkey fist. elaine: are you okay, mr. peterman? j. peterman: yes, yes. go on, go on, go on. elaine: well, see, it's... businessmen taking siestas. you know, it's the, uh, the urban sombrero. elaine: mr. peterman? george: (inhales deeply) i tell you, jerry, i'm feeling something. something i haven't felt in a long time. jerry: pride? george: no. autonomy, complete and total autonomy. jerry: well, you're your own boss now. george: i wanna go to a tractor pull. jerry: go ahead. george: i am staying out all night! jerry: who's stopping you? george: i wanna bite into a big hunk of cheese, just bite into it like it's an apple. jerry: whatever. jerry: oh god. george: what? jerry: it's dolores. george: who? jerry: mulva. dolores: jerry, hi. jerry: hi, dolores. george, you remember dolores? george: dolores! dolores: hi. (to jerry) i heard you got engaged. jerry: yes, dolores, i did. it didn't work out, though, dolores. dolores: oh, that's too bad. you know... we should get together sometime. see ya. jerry: see ya. george: bye, dolores. george: i thought mulva hated you. jerry: yeah, so did i. you know what? i bet it was the engagement. i've shown i can go all the way. george: all the way? jerry: not our "all the way", their "all the way." i got the stink of responsibility on me. george: yeah, and you were engaged for like a minute, i was engaged for a year. jerry: you stink worse than i do! george: i'm feeling something else here, jerry! secretary: elaine, it's mr. peterman on the phone. elaine: (answers the phone) hello, mr. peterman, how are you feeling? j. peterman: elaine, i'll be blunt. i'm burnt out. i'm fried. my mind is as barren as the surface of the moon. i can run that catalog no longer. elaine: what? well, who's gonna do it? j. peterman: what about you? elaine: me? why me? j. peterman: why, indeed. elaine: mr. peterman, you can't leave. j. peterman: i've already left, elaine. i'm in burma. elaine: burma? j. peterman: you most likely know it as myanmar, but it will always be burma to me. bonne chance, elaine. (to a passerby) you there on the motorbike! sell me one of your melons! (runs after him) elaine: mr. peterman? jerry: where? elaine: burma. jerry: isn't it myanmar now? elaine: jerry, he wants me to run the catalog! it's crazy! i can't be in charge! jerry: no, certainly not. elaine: i mean, i can't give people orders! jerry: no one's gonna listen to you. elaine: i am not qualified to run the catalog! jerry: you're not qualified to work at the catalog. kramer: hey. (notices elaine) what's wrong? elaine: oh, peterman ran off to burma, and now he wants me to run the catalog. kramer: where? jerry: myanmar. kramer: the discount pharmacy? elaine: well, i'm just gonna tell him no. i can't run the catalog. kramer: whoa, whoa. can't? when did that word enter your vocabulary? what, is the job too difficult? (jerry nods) what, you don't have enough experience? (jerry shakes his head) oh, you're not smart enough? (jerry shakes his head) where's your confidence? (jerry shrugs his shoulders) look, elaine, let me tell you a story. when i first studied karate... elaine: karate? kramer: yeah, karate. i had no support. not from him, not from newman, no one. the first time i sparred with an opponent, i was terrified. my legs, they were like noodles. but then i looked inside, and i found my katra. elaine: katra? kramer: yeah, your spirit, your, uh, being. the part of you that says, "yes, i can!" jerry: sammy davis had it. kramer: so i listened to my katra and now i'm dominating the dojo. i'm class champion. elaine: well, you know, i, i have watched peterman run the company. kramer: sure you have. elaine: i know how to do it. pair of pants, a stupid story, a huge markup. i can do that. kramer: you follow your katra, and you can do anything. (leads her to the door) now get out of here. elaine: (excitedly) okay. kramer: that kid is gonna be all right. jerry: no, she's not. joey: come on, kramer! kramer: hey there. joey: come on. mom's down in the car. kramer: okay, joey. jerry: you guys both have class at the same time? kramer: no, we're in the same class. jerry: what do you mean you're in the same class? kramer: he almost beat me. jerry: kramer, you're fighting children?! kramer: we're all at the same skill level, jerry. jerry: he's nine years old! you don't need karate, you can just wring his neck! kramer: i got carpool. (exits) kramer: thanks for the juice box, mrs. z. joey: hey, could we stop for ice cream on the way home, mom? mrs. zanfino: mmm, i don't know... mrs. zanfino: all right. kids & kramer: yay! dugan: *you're* taking the job? elaine: you got that straight. now i want four new ideas from each of you by 600. no, make that six ideas by 400. all right, let's move, move, move, move, move! sansei: are you prepared for kumite? kramer & joey: yes, sansei. sansei: fight stance. sansei: hydjama! begin! sansei: (raising kramer's arm) winner! george: it's open! george: (surprised) rosses. mrs. ross: hello, george. george: well, uh... come in, come, come in. (frantically clears the couch of newspapers and crumbs) mr. ross: we, uh, tried to call, but the line was busy. george: oh. oh. yeah, sure. here. uh, sit down. uh, uh, cheese, there? (he grabs a suit jacket from the desk chair and puts it on) mrs. ross: we know the last three months have been hard on you. george: oh, yes, yes, yes. very, very hard. mr. ross: and they've been hard on us, too. it's a terrible tragedy when parents outlive their children. george: yes, i agree. i hope my parents go long before i do. mr. ross: that's why we decided to create a foundation to preserve susan's memory. george: oh, that's wonderful. mr. ross: and, of course, we want you to be an integral part. george: yes, inte-- h-how inte-- how integral? mr. ross: you'll be on the board of directors. george: (feigning excitement) great, great. o-oh, oh, oh, gosh. you know, it's just... my duties with the yankees... mrs. ross: don't worry, george. the foundation will revolve around your schedule. evenings, weekends, whenever you have free time. george: i can't believe this is happening. mr. ross: well, it wouldn't have without your friend jerry's inspirational words. he said to us, "she's not really dead if her shadow is..." uh, w-what was it, dear? mrs. ross: something about a way, a-and a light, uh... ha. who the hell knows? mr. ross: well, what's important is that your relationship with susan doesn't have to end. mrs. ross: so will you be sure to thank jerry for us? george: (feigning happiness) the second i see him. jerry: hey. george: hey. how's your day, good? jerry: actually, yeah. i'm meeting mulva here in a few minutes. george: so uh... wrath of khan, huh? jerry: yeah. was that a beauty or what? george: what was that line again? something about finding your way in a shadow? jerry: no, no, no, it's... "she's not really dead if we find a way to remember her." george: that's it. that's the line... (squirts mustard into jerry's coffee and stirs it) ...that destroyed my life. jerry: (stares into coffee cup and looks back at george) problem? george: the rosses have started up a foundation, jerry, and i have to sit on the board of directors. jerry: hey, board of directors. look at you! george: yeah! look at me! i was free and clear! i was living the dream! i was stripped to the waist, eating a block of cheese the size of a car battery! jerry: before we go any further, i'd just like to point out how disturbing it is that you equate eating a block of cheese with some sort of bachelor paradise. george: don't you see? i'm back in. jerry: all because of wrath of khan? george: yes! jerry: well, it was the best of those movies. george: khan! wyck: george. wyck: george. (taps him on the shoulder) george: (startled) oh! wyck: i'm wyck thayer, chairman of the susan ross foundation. george: wink. wyck: (correcting him) wyck. george: wyck. wyck: now, as you know, the rosses had considerable monies. george: oh. i know they have some monies. wyck: they had more than some monies. many, many monies. and they planned to give a sizable portion of their estate to you and susan after the wedding. george: so, if susan and i had... i mean, if the envelopes hadn't, uh... then we-- wyck: yes. george: and now? wyck: not. it's all been endowed to the foundation, even this townhouse. george: this townhouse? wyck: this would have been your wedding gift. george: and now? wyck: not. george: not. wyck: also endowed. george... i know how much susan meant to you. it can't be easy. george: you know, it really can't. dolores: so who broke it off? jerry: well, that's the thing. it was completely mutual. dolores: oh, come on. everybody knows there's no such thing as a mutual breakup. tell me the truth. jerry: i am. it was the world's first. dolores: you know, when i heard you got engaged, i thought *maybe* you had matured. but obviously there's no growth here. (exits) jerry: well, i can't argue with that, but the fact remains... i was completely... (to himself, cursing her) mulva! jerry: (answering) hello? secretary: please hold for elaine benes. jerry: oh, i don't believe this. elaine: (picking up) jerry! jerry: hey! elaine: hey. guess who just finished laying out her first issue of the j. peterman catalog. jerry: how's it look? elaine: (muffled, as she's smoking a cigar) it's a peach. jerry: huh? elaine: i say, it's a peach. jerry: elaine, let me ask you something. when i told you my breakup was mutual, did you believe me? elaine: no, no, no. it's weak. no one's gonna buy it, and you shouldn't be selling it. jerry: i gotta do some research here. elaine: hey, hey. me. talking. you know, between you and me, i always thought kramer was a bit of a doofus, but he believed in me. *you* did not. so as i see it, he's not the doofus. *you* are the doofus. jerry: oh, i'm the doofus? elaine: yeah. you, jerry, are the doofus. jerry: you know, it occurs to me that kramer is at karate right now. elaine: oh, well, maybe i'll just go down there and thank him in person. jerry: yeah, that's what i was thinking. elaine: kramer! kramer: oh, hey. elaine: what are you doing? kramer: oh, well, i-i-i'm dominating. elaine: you never said you were fighting children. kramer: well, it's not the size of the opponent, elaine, it's, uh, the ferocity. elaine: this is what you used to build me up? this is where you got all that stupid katra stuff? kramer: no, no. that's from, uh, star trek iii... the search for spock. elaine: search... for spock?! kramer: yeah, i know jerry will tell you that the wrath of khan is the better picture, but for me, i always... elaine: (pushes him) you doofus! jerry: okay, question #8. what if i told you my fiancee left me for another man? does that make me more likable, less likable, as likable? let's start over here this time. waitress #1: more. waitress #2: less. ruthie: same. willie: are we about through here? kramer: i thought you said your mom was meeting us in the alley. joey: she had a little change of plans. kramer: what's going on? hey, timmy, clara. that was some kind of workout we had tonight, huh? girl: now we finish it. kramer: aah! aah! mama! jerry: (on the phone) dad, i wouldn't eat anything you caught in that pond out in front of the condo. jerry: uh, look, elaine's here, i gotta get going. oh, by the way, uh, i'm not getting married. tell mom. bye. (hangs up) jerry: so... did you stop by the dojo? elaine: yep. jerry: how's your confidence level? elaine: shot. jerry: self-esteem? elaine: gone. jerry: doofus? elaine: (raises her hand) yo. jerry: all right, so what? you put out the catalog. how bad could it be? jerry: what is that? elaine: it's the urban sombrero. i put it on the cover. jerry: well, nobody sees the... cover. kramer: god! jerry: what happened to you? kramer: whew! i got whooped. you should have seen the rage in their little eyes. and those tiny little fists of fury. oh. (notices the urban sombrero) what is that? jerry: it's the new cover of the j. peterman catalog. it is elaine's choice. let's congratulate her. kramer: oh i see. (elaine walks up to him) woof! elaine: (pointing a finger accusingly at kramer) you! this is all your fault! you told me i could run the company! kramer: well, then i was way off! elaine: well, i'll see ya... (exits) jerry: vaya con dios. kramer: (with his forehead in his hands) man, i gotta go lay down. you and george going out a little later? jerry: no, he's still stuck at the foundation. kramer: you know, you oughta go down there and help him out. he's a widower. jerry: widower? wait a second. (goes to a notebook of his research) wyck: okay, let's see. the beachhouse. 48 acres... ooh. southampton. that should fetch a fair price. george: would i have had access to that? wyck: of course, it would have been yours. george: and now? george: (anticipating the answer) not. george: hello? jerry: hey, georgie! i'm doing some research down at the coffee shop. your story's the one. george: my story? jerry: yeah, your widower story's tested through the roof. (various patrons give the thumbs up in approval) when are you getting out of there? george: uh, excuse me, wyck. uh, are we, uh, almost done here? wyck: (chuckling) oh, no, not even close. george: (remorsefully) i can't go. jerry: what do you mean you can't go? there's two really girls sitting at the counter eating grilled cheese. cheese, george! cheese! wyck: okay, next item. susan's doll collection. estimated value $2.6 million. what do you say we go through this doll by doll? george: you want me to find a poem about susan? may she rest in peace?! wyck: well, we think it would be a nice touch for the foundation literature. do you have a favorite poet, george? george: i like, uh...(mutters something unintelligible under his breath.) wyck: pardon? george: (mutters it again) wyck: well, you should choose the poem since you knew susan best at the time of her unfortunate (clears his throat)...accident. jerry: he cleared his throat? george: yes! jerry: so? george: he did it right as he said "her unfortunate accident." jerry: not getting it. george: jerry, a throat-clear is a non-verbal implication of doubt - he thinks i killed susan! jerry: oh, help me, rhonda. george: what time is it? jerry (looks at his watch): 115. george: right now? jerry: i gotta go meet pam. george: oh, the bookstore girl. how's that goin'? jerry: okay. i'm just not ga-ga over her. for once i'd like to be ga-ga. george: where's elaine? jerry: she's having carol, gail and lisa over. you know they all have kids now? george: what's with all these people having babies? jerry: perpetuation of the species. george: yeah! right! jerry: by the way, just for the record - george: no, i did not! (they exit the coffee shop.) carol: ...but because it comes out of your baby, it smells good! elaine: well, that's...that's sweet. gail: being a mother has made me feel so beautiful. carol: elaine, you gotta have a baby! elaine: oh, hey, you know...i had a piece of whitefish over at barney greengrass the other day... lisa: elaine. move to long island and have a baby already. elaine: i really like the city. carol: the city's a toilet. when's the last time you saw my little adam? elaine: uh, it was in the hamptons. carol: oh! i have pictures! elaine: no, no, that's okay, it's uh... carol (shows elaine and the girls pictures of adam): look at him! just look at him! jerry: so, elaine was telling me about this piece of whitefish she had the other day... george: do you really think i'm wrong about this wyck guy? jerry: you know, if you really want to test him out, why don't you try the old jerry lewis trick? george: jerry lewis? jerry: i heard that when jerry lewis left a meeting, he'd purposefully leave a briefcase with a tape recorder in it. then after five minutes, he'd come back for it and listen to what everyone said about him. george: that's pretty paranoid. jerry: yes, it is. george: i like it! jerry: i thought you might. pam: oh, hi! i'm pam. you must be kramer. (kramer is smitten with pam and grins goofily.) jerry's told me a lot about you. (kramer continues grinning.) well, i'm supposed to meet jerry, it's my day off. i work in a bookstore. kramer (mouths the words): books. (knocks over a bowl of fruit on the counter.) pam: oh, careful! (jerry enters.) jerry: hi, sorry i'm late. pam: that's okay. kramer let me in. jerry: you know, if we rush, we can still make the movie. pam: okay. (touches kramer's hand) it was really nice meeting you. kramer: i'm in trouble, buddy. i just met a woman. newman: go on. kramer: well, she's jerry's girlfriend. newman: ah, yes. forbidden love. kramer: she works in a book shop. her name is pam. newman: "pam." i don't know the woman, but she sounds quite fetching. kramer: i can't even speak in front of her. (sits down on the couch.) newman: jerry! what could she possibly see in jerry? (walks in front of kramer and trips over his feet.) kramer: she has delicate beauty. newman: jerry wouldn't know delicate beauty if it bludgeoned him over the head. kramer: and yet, he's my friend. newman: and therein lies the tragedy. for i believe, sadly for you, that there is but one woman meant for each of us. one perfect angel for whom we are put on this earth. kramer: aw, that's beautiful, newman. newman: one winsome tulip we ceaselessly yearn for throughout our dreary, workaday lives! and you, my friend, have found your angel. i can tell. for my heart has also been captured by a breathless beauty - whom i fear i will never possess. kramer: i thought we were talking about me. newman: right. kramer, you have to confront jerry. kramer: confront jerry? i can't. newman: you must! kramer: i won't! newman: you will! elaine (to jerry, imitating carol): "elaine, ya gotta have a baby." ugh. george: where are all the poetry magazines? elaine: the new yorker has poetry. george: yes. the new yorker. jerry: why do you invite these women over if they annoy you so much? elaine: they're my friends, but they act as if having a baby takes some kind of talent. jerry: c'mon, you want to have a baby. elaine: why? because i can? jerry: it's the life force. i saw a show on the mollusk last night. elaine, the mollusk travels from alaska to chile just for a shot at another mollusk. you think you're any better? elaine: yes! i think i am better than the mollusk! kevin: i couldn't help overhearing what you were saying. elaine: oh, i'm sorry. kevin: no, no, i think i agree with you. i mean, all this talk about having babies. elaine: yeah, like you must procreate. kevin: besides, anyone can do it. elaine: oh, it's been done to death. (smiles) george: i, uh, should have a poem very soon now. wyck: are you okay, george? george: no, no, not really. ever since susan passed on, i have good days and bad. (turns the briefcase towards the woman on his left.) some days, i'm haunted by one word - why. why susan? why wasn't it me licking those invitations? why am i still here? well, i gotta run. (gets up and leaves the meeting.) wyck: ...and the stock options for this year look quite, uh... (george returns and retrieves the briefcase.) george (apologetic): briefcase. (shrugs and exits.) elaine: so, kevin. if i don't want children, does that make me a bad humanitarian? kevin: not at all. elaine: 'cause, i mean, when you get to know me, you'll see that i'm a pretty good humanitarian. (waitress comes to the table and pours more coffee.) you are doing a wonderful job, by the way. thanks a lot. (to kevin) right? am i right? (kramer walks by.) kramer. kramer! come here, look at my new friend kevin. (kramer and kevin shake hands.) oh, you got a little, uh... kramer (wipes chocolate off his face): oh, i just had two double-fudge sundaes. elaine: oh. are you alright? kramer: yeah, i'll be okay. elaine: you know, jerry has one of those every time he bombs on stage. kramer: well, i'm sure he'll be sharing his next one with pam. elaine: oh, no...that won't last. kramer: what do you mean? elaine: he's not ga-ga. george: lemme tell you something, that jerry lewis? you wonder how some of these people get to the top? it's ideas like this! brilliant! hah-hah! (notices that the briefcase is damaged.) look at this - what the hell happened? the whole side is damaged here...and the lock is broken. jerry: how long did you leave it up there? george: five minutes. what the hell happened here? jerry: play the tape, maybe we'll get a clue. george: i have to rewind it first. (george presses the rewind button on the tape recorder. he and jerry stand there, waiting impatiently as it rewinds.) alright, alright. jerry: is that it? george: stopped dead. jerry: what do you make of it? george: i don't know. (george sits down at the table. kramer enters.) kramer: jerry. uh, can we talk? george (to kramer): kinda busy here. kramer: i'd like to talk to jerry in private. george: why can't i stay? kramer: because it doesn't concern you. george: well, if it doesn't concern me, then i can stay. (kramer grabs the back of george's chair, drags him out into the hallway and closes the door.) jerry: so, what's on your mind? kramer: it's pam. jerry: pam? what about pam? kramer: i love her, jerry! jerry: you what? kramer: i love her! jerry: is that right? kramer: oh, she's uh...she's real. she can bring home the bacon and fry it in the pan. jerry: what does that mean? kramer: oh, and that voice! jerry: what about her name? kramer: pam? oh, it's a beautiful name. (kramer sits on the couch.) pam. pam. pam! jerry: she's got really nice hair. kramer: oh, it's incredible. although, i might replace her tortoise clip with one of those velvet scrunchies. i love those. jerry: you've got really specific tastes. kramer: oh, i know what i want, jerry. jerry: she's got nice calves. kramer: oh, she's a dreamboat. but, you don't like her, so... jerry: maybe i could, you're making some pretty good points. kramer: no you can't, jerry. jerry: but i might. kramer: oh, no you don't. jerry: why not? the voice? the calves? the bacon? kramer: what...? jerry: i think i can! i even like the name! pam! kramer (frantic): huh? jerry: pam! kramer: huh? jerry: pam! kramer: huh-yah! (kramer loses it and runs out past george, who is still sitting in the hallway on a chair.) kramer: so now he wants her more than ever! newman: blast! kramer: what am i gonna do, huh? newman: don't despair, my friend. (newman walks in front of kramer and trips over his feet. again.) i won't allow your love to go unrequited. not like mine. kramer: what, again with you? newman: sorry. but love is spice with many tastes. a dizzying array of textures...and moments. kramer: if only i could say things like that around her. newman (getting an idea): yes... elaine: well, i hear three distinct sounds. a low rumple...followed by a metallic 'squink'... george: yes! yes, i heard the 'squink'! elaine: ...followed by a mysterious...'glonk.' george: it's baffling, isn't it? elaine: well, one question does come to mind. have you considered just...asking them what happened to the briefcase? george: they would never tell me, elaine. first of all, they probably think that i killed susan. besides, i don't even think they like me. (jerry comes over to the table.) jerry: that pam! i am ga-ga over her! elaine: ga-ga? when did that happen? jerry: yesterday. six-ish. elaine: well, maybe we should double. i'm pretty ga-ga myself. jerry: you just met the guy yesterday. elaine: yeah, but we have a common goal. jerry: a barren, sterile existence that ends when you die? elaine (happily): yeah. george: and you really believe this guy doesn't want to have kids. elaine: yeah, of course. jerry: elaine, a guy'll say anything to get a woman. elaine: oh, please. he wouldn't say that. george: elaine, i once told a woman that i coined the phrase, "pardon my french." jerry: i once told a woman that i don't eat cake 'cause it goes right to my thighs. george: i once told a woman that i really enjoy spending time with my family. newman: with your looks and my words, we'll have built the perfect beast. (kramer claps him on the shoulder, then goes to the other side of the aisle to talk to pam.) pam: oh, hi! kramer. newman (whispers through the bookcase): hi. how are you? kramer: hi. how are you? pam: i'm great. newman: i too am well. kramer: i too am well. newman: do i smell pantene? kramer: do i smell? newman: pantene! kramer: uh, pantene. pam: oh, my shampoo. yeah, it is pantene, i got a free sample in with my junk mail. kramer (talks rapidly in an attempt to keep up with newman): well, there really is no junk-mail...well, everybody wants to get a check or a birthday card, but... newman (frantic): ...it takes just as much man-power to deliver it as their precious little greeting cards... kramer: newman! (elbows him through the books. newman falls over.) pam: what? kramer: uh, human. it's...human to be moved by a fragrance. pam: that's so true. kramer: her bouquet cleaved his hardened... newman: shell. kramer: ...shell. and fondled his muscled heart. he embibed her glistening spell...just before the other shoe...fell. pam: kramer, that is so lovely. kramer: it's by an unknown 20th-century poet. pam: oh, what's his name? kramer: newman. (on the other side of the bookcase, newman preens proudly.) kevin: elaine, you've changed my life. elaine: oh, kevin...you can go on and on about how you don't want kids...and it sounds, it sounds really nice, but...the truth is, i don't know if you mean it or not. kevin: i got a vasectomy this morning. elaine: although, i have a hunch you mean it. jerry: i just came by to tell you - i'm really, really happy about this relationship. really happy. pam: oh. well, that's um...(clears her throat)...nice. (jerry looks suspicious. pam turns around and jerry notices her tortoise clip has been replaced with a velvet scrunchie.) jerry's brain: a velvet scrunchie! jerry: kramer! jerry: hello, newman. newman: hello, jerry. how's pam? jerry: pam? what do you care? (newman shrugs. jerry notices he's carrying a brentano's bookstore bag.) newman: well, ta-ta! (scampers away.) jerry: wait a minute! (a manic chase scene ensues, with jerry chasing newman from one end of the building to the other. jerry finally catches up with him in the hallway on another floor.) jerry: alright, newman! this is it! (shoves him against the wall.) newman (sweating): easy, jerry. steady. you wouldn't want to lose your cool at a time like this. jerry: why not? newman: because right now, i'm the only chance you've got. (newman giggles nervously. jerry makes newman flinch, and his giggling is choked off.) jerry (rolls his eyes): c'mon. (they exit.) jerry: i can't believe i'm losing pam! newman: i know how you feel. for i, too, have a woman for whom i pine. jerry: i thought we were talking about me. newman: right. jerry: anyway, i don't need your help. (turns to leave.) newman: oh, don't you? joke boy? you really think you can manipulate that beautiful young woman like the half-soused nightclub rabble that lap up your inane "observations"? jerry: alright, newman. what do i have to do to get you to stop pulling the strings for kramer? newman: well, there is a little something you can do for me... jerry: c'mon, out with it. newman: it's about...elaine. jerry: elaine? what does she have to - (notices newman looking up at him longlingly.) oh no... newman: you dated her. give me some inside information. anything i can use! jerry (shrugs): well, i know she doesn't want to have kids. (newman considers the implications of this.) kevin: i thought you'd be a little more enthusiastic about it. elaine: i know, i don't want...(clears her throat)...kids. kevin: what was that? elaine: well, kevin, maybe i have a little doubt. i mean, nothing is a hundred percent. kevin: this is! oh boy, i always do this. elaine: what? kevin: oh, i get all jazzed up about something and i go way to far with it. elaine: really? kevin: oh, yeah. like last summer. i'm watchin' tv and i saw one of those jet-skis. $4000 later and it's sitting in my garage. elaine: you know, that's weird, actually, 'cause i'm sort of the same way. i mean once for like, no reason, i flattened my hair and i had all these strands hanging in my face all the time... kevin: sometimes i think i do want kids. maybe a lot of kids! elaine: sometimes i think about wearing my hair real short. kevin: yeah! i think i like short hair. really short. elaine: yeah! kevin: yeah! george: this is a crude mock-up of the conference room. 1/14th scale. jerry: when did you build this thing? george: yesterday, took the day off. (picks up a red power ranger action figure from the model and pretends it's him.) now, from the time i left the room... jerry (points at the power ranger): wait, that's you? george: yeah. jerry (picks up a yellow m&m toy from the model): i really think the m&m should be you. george (grabs the m&m away from jerry): alright, whatever! now. whatever caused the damage...(drops a tiny briefcase onto the table in the model)...was jarring enough to completely stop the tape. jerry: and? george: okay. that's what we know. jerry: but we already knew that. george: well, yeah. jerry: just give me some idea of what you think it could be. george: i don't know if you're ready for it. jerry: please. george: i believe that i am about to become the target of a systematic process of intimidation and manipulation, the likes of which you have never - jerry: hold it, hold it! you're right, i'm not ready for this. (the door buzzer sounds, jerry answers it.) yeah? voice on speaker: it's pam. jerry: c'mon up. (to george) alright, it's pam, you gotta get goin.' george: i'm not through here, jerry. (picks up the model of the conference room.) i'm gonna keep on investigating. this thing is like an onion. the more layers you peel, the more it stinks. (pam enters, george leaves.) pam: what was that? jerry: we were just playin.' pam: listen, i had a long talk with kramer today... jerry: uh huh... pam: well, the thing is, i uh...i think i have a little crush on him. (kramer slides in the door on his knees.) kramer: i'm so happy! my world suddenly has meaning! jerry (to pam): this is the man you have a crush on? pam: well, i have feelings for both of you. kramer: how can you have feelings for him? we're soul mates. jerry: why can't i be a soul mate? kramer: jerry, you really think that pam would want you to be the father of her children? pam: children? who said anything about children? i don't want to have children. george: there are some people in this room who would have been very happy to never see this briefcase again. there are people in this room who think they can destroy other people's property and get away with it. well, let me tell you something about those people. they weren't counting on this brain! and this tape recorder. wyck: george... george: you'll have your turn! the truth must be heard. (plays back the tape.) that's all there was. and yet, it speaks volumes. a low rumple. a metallic 'squink.' a 'glonk.' someone crying out..."dear god!" let's start with, uh...with you, wyck. wyck: george, quinn here was moving a chair...he lost his balance and dropped it...it must have fallen on your briefcase, which, for some reason, contained a running tape recorder? george: alright, then. we've gotten to the bottom of that. elaine: what are you guys doing here? jerry: we're getting vasectomies. elaine: why? newman (to elaine): i'm doing it for you. elaine: what? jerry (to elaine): what'd you do to your hair? elaine: i cut it. jerry: it's a little short. kevin: y'think? jerry (to kevin): what are you doing here? elaine: kevin's having his vasectomy reversed. jerry and newman: reversed?! (kramer comes hobbling out of the doctors office in pain, after having a vasectomy of his own, and exits. jerry and newman look at each other, and bolt for the door themselves.) george: ...he embibed her glistening spell...just before the other shoe...fell. wyck: is that a keats poem? george: no, it's a newman. well, i gotta run. (smiles, pats his briefcase and exits.) wyck: does anyone think george might have murdered susan? mr. cross: oh, yeah. i just assumed he murdered her. ms. baines: of course he killed her. wyck: so it's not just me, then. alright! back to business. jerry: all right. how 'bout this one let's say you're abducted by aliens. george: fine. jerry: they haul you aboard the mother ship, take you back to their planet as a curiosity. now would you rather be in their zoo, or their circus? george: i gotta go zoo. i feel like i could set more of my own schedule. jerry: but in the circus you get to ride around in the train, see the whole planet! george: i'm wearin' a little hat, i'm jumpin' through fire.. they're puttin' their little alien heads in my mouth.. jerry: (resigned) at least it's show business.. george: but in the zoo, you know, they might, put a woman in there with me to uh.. you know, get me to mate. jerry: what if she's got no interest in you? george: w--then i'm pretty much where i am now. at least i got to take a ride on a spaceship. [exterior long shot: looking up at an office building; interior of office reception area of "brand/leland" as george, jerry, and kramer come in. they calmly keep it quiet.] kramer: george, why couldn't i use the bathroom in that store? george: kramer, trust me, this is the best bathroom in midtown! kramer: (frustrated) wha?? jerry: (dry) he knows. george: (anyway,) on the left--exquisite marble! high ceilings. an' a flush, like a jet engine! (imitates sound) ha ha! kramer: (impressed) now, listen, uh. you better not wait. i'll catch you later. george: you sure? jerry: (dry) he knows. george: wow. nice. jerry: why don't you try your engagement story? george: (considers, but got into elevator) won't work. jerry: are you sure? george: (wry) he knows. elaine: look. kevin. i really like you, heh, heh, uh. but, um, maybe we'd be, better off just being.. friends. (takes a bite of her sandwich) kevin: friends? elaine: well. i mean. (distracted by the food) oh, god. this tuna tastes like an old sponge. kevin: friends. yeah! why not friends? i might like to try that! like you an' jerry! man: (frustrated) damn thing is jammed again.. kramer: you know what happens with these? the rollers, they get flat spots on 'em. (hits button several times and whacks it) man: come on, let's go. kramer: (absently wants to be part of it) oh, yeah--yeah.. (follows them) elaine: (to jerry) remember i was telling you about gillian, my friend who writes for the l.l. bean catalogue? i really think you should give her a call. jerry: (doubtful) i don't know, do you have a-- jerry: not bad. wuh--what does she-- elaine: (dry) i put her stats on the back. jerry: pretty impressive--"serious boyfriend '92 to '95." owns her own car.. "favorite president james polk!" (elaine had echoed "uh-huh. yup." during it) george: hnn! let me see that. jerry: (hands it to him as he asks elaine) so how'd it go with kevin? did you, steel-toe his ass back to kentucky? elaine: (laughs in appreciation) you are not gonna believe this! i told him that i just wanted to be friends. he's fine with it. he really wants to be friends. jerry: why would anybody want a friend. elaine: (dread) uh. it's really not that bad, actually. he said he'd even go with me to the museum of miniatures. this is something you would never ever do. jerry: i mean all that stuff is so small.. ((elaine is wryly assessing him)) stupid.. george: (still looking at that picture) you know if i told my engagement story to that receptionist, but told her this, was my fiance.. jerry: what? george: don't you see. women like that are like, members of a secret tribe living in a forbidden city. people like me have not been inside in thousands of years.. but with this, it's like i've already been with one of her own! my hands been stamped! i come and go as i please! elaine: (wry, not impressed) well you cracked it! i warned the queen you were gettin' close an', now it looks like we're gonna have to move the whole damn forbidden city. (chuckles with jerry) george: (getting up) can i keep this? elaine: no, i need it. george: (absently leaving with it) thanks. george: hi. i'm ah, i'm here to see a mr. art vandelay.. amanda: i'm sorry sir, there is no mr. vandelay here.. george: (taking out wallet) well, let me. heh. let me just eh.. check an', make sure i have the right man--ha! heh, heh, heh! seems--oh! i, oh! (has conveniently dropped the photo into her view) amanda: oh! she's beautiful! who is she? george: (humble) well, if you must know, shhhe, was my fiance, susan. may she rest in peace. amanda: oh, sorry.. she was lovely. i'm amanda. george: (shaking hands) i'm george. man #3: good work today, k-man! man #3: heh, heh! kramer: you want a drink? i'm buyin'. man #3: in that case, make mine a double! gillian: jerry? jerry: gillian. hiii.. gillian: very nice to meet you. jerry: it's nice to meet you! jerry: she had man-hands. elaine: (pause) man, hands? jerry: the hands of a man. it's like a creature out of greek mythology, i mean, she was like part woman, part horrible beast. elaine: (weary) (look,) would you, prefer it, if she had, no hands at all? jerry: would she have hooks? elaine: do uh, do hooks make it more attractive, jerry? jerry: kinda cool lookin'.. elaine: (getting up to go) uh.. listen, you're picking me up from my (place tomorrow)-- jerry: (leaving too) yeah. yeah. elaine: okay, i've got five, huge boxes of (buttons). jerry: right. well if you need an extra set of hands, i know who you can call-- elaine: (weary) jerry! jerry: kramer?! kramer: hey buddy! hey! jerry: it--eight o'clock in the morning! what the hell is goin' on?! kramer: breakfast. i gotta be in at brand/leland by nine. jerry: why?? kramer: because i'm workin' there, that's why. jerry: (disoriented) how long have i been asleep? what--what year is this? kramer: jerry. i don't know if you've noticed, but lately, i've been drifting, aimlessly? jerry: (snaps fingers) now that you mention it. kramer: but i finally realized what's missing, in my life. structure. an' at brand/leland, i'm gettin' things done. an' i love the people i'm workin' with. jerry: how much are they payin' you? kramer: oh, no, no, no-no--i don't want any pay. i'm doin' this just for me. jerry: really. so uh, what do you do down there all day? kramer: t.c.b. you know, takin' care o' business. aa--i gotta go. jerry: all right. kramer: (leaving) i'll see you tonight, huh? (turning back, grabs his briefcase) forget my briefcase. jerry: w-w-wha' you got in there? kramer: (as he leaves with it) crackers. (music (sheena easton's "morning train (nine to five)") accompanies assorted shots of working-man kramer: getting on the subway (everyone else is going the opposite direction). washing his shoes at the water cooler. eating rolls of crackers out of his briefcase. laughing it up after hours with co-workers at a tgif-type restaurant.) jerry: so the picture worked. amazing! george: hey, she wants me to dress uh "smart casual." what uh, what is that? jerry: i don't know, but you don't have it. george: right. bye. elaine: where were you today? jerry: what? elaine: pick. up. jerry: (whispers) damn. elaine: so? where were you?! jerry: uh, here i guess, an' uh, uh i went out and picked up a paper. elaine: (irritated, throwing down her bag) i had to ask kevin, to leave his office an' come an' pick me up! jerry: so? what are friends for? elaine: yeah! an' he is a friend, jerry. he is reliable. he is considerate. he's like your, exact opposite. jerry: so he's bizarro jerry! elaine: (pause) bizarro jerry? jerry: yeah. like bizarro superman. superman's exact opposite, who lives in the backwards bizarro world. up is down. down is up. he says "hello" when he leaves, "good bye" when he arrives. elaine: (pause) shouldn't he say "bad bye"? isn't that the, opposite of "good bye"? jerry: no. it's still a goodbye. elaine: uh. does he live underwater? jerry: no. elaine: is he black.. jerry: look. just, forget it, (already). all right? kramer: wow. man. what a day. could i use a drink. (starts getting a drink and ice) jerry: tough day at the office? kramer: just comin' in, an' that phone just wouldn't stop. jerry: well, we better get goin' if we're gonna go to that uh, seven o'clock cold fusion. kramer: yeah. well, count me out. i'm swimmin'. old man leland is bustin' my hump over these reports. if i don't get 'em done by nine, i'm toast.. ((takes a swig and reacts)) george: this is a fantastic place! i always thought it was a meat packing plant! model #1: hey! amanda! amanda: these are my friends. anabelle, justina, and nikki. we used to model together. george: oh! modelling! what's that like? fun? ha ha. (to self in head) stupid! stupid! stupid! amanda: so nikki, uh, how was paris this time? model #2: (petulant) a bore. george: you know, i used to love paris. my uh, dead fiance, susan.. (opening wallet) in fact i. think i, i may have a picture of her.. model #3: (awed) wow.. she was beautiful.. do you wanna dance? gillian: would you like some bread, jerry? jerry: no.. no thanks, i'm, just not hungry. gillian: well, then at least drink your beer.. (she's opening the bottle--brief closeup on hands) jerry: (to self) oh. twist off.. gillian: you have a little something on your face. jerry: i can get it. (feeling his face) gillian: eh, no-no, no-no.. you're missing it, it's higher. (reaches over) gillian: (friendly) it's an eyelash. make a wish. jerry: i don't want to. gillian: make a wish. jerry: okay. (closes eyes, blows on her finger, opens eyes, says to self) didn't come true. gillian: (smiles at him) don't you just love lobster? kevin: that museum of miniatures was amazing. elaine: i know, he's so tiny! kevin: yeah! hey--hey guys! elaine, sit down. these are a couple o' my friends. uh, this is gene. and this guy, we.. just call "feldman!" elaine: (to self in head) bizarro world.. george: (delighted) jerry? it was incredible! models! as far as the eye could see! jerry: then it does exist. george: yes. the legends are true. jerry: so when are you goin' out with this girl again? george: i'm not! i'm inside the walls! jerry: so you're gonna burn that bridge. george: flame on! gene: (about the check) i got it. kevin: (grabs it) no. you got it last time. gene: (calmly takes it) don't worry about it. elaine: (to self in head) this is unbelievable.. feldman: hey elaine, what do you think of an alarm clock, that automatically tells you the weather when you wake up? elaine: well, i gotta say that i think that that is a fantastic idea, feldman! feldman: nah, it's not--it's just not practical. kevin: (getting up) well. see ya later, elaine. feldman an' i 'a' gotta get down 'o the library. (the three guys are leaving) elaine: what are you gonna do down there? kevin: read! elaine: (pause, then vaguely waves while watching them leave) hello? jerry: so, uh. gillian's comin' over later. i think i'm gonna end it. kramer: uh-huh. jerry: those meaty paws, i feel like i'm dating george the animal, (steer). kramer: yeah.. jerry: maybe i'll chain her to the refrigerator an' sell tickets. kramer: that's nice.. jerry: kramer, put the paper down! you never listen to me anymore! we hardly even talk! kramer: well, we're, talkin' now, aren't we?-- jerry: i sit here for twenty lousy minutes in the morning-- kramer: oh here we go-- jerry: an' then when you come home at night, you're always exhausted--we never do anything anymore! kramer: what are you starting with me for? you know this is my crazy time o' year?! jerry: (pause) it's your third day.. kramer: (grabs briefcase to leave) i gotta go to work. we'll talk about this later. (leaves) jerry: well. (calling down the hall) call if you're gonna be late! elaine: what? what is goin' on with you two? jerry: oh, i don't wanna talk about it.. elaine: all right, listen. have you seen my addre-- (sees address book on counter) --ah! there it is. okay. i got it. i'll see you later. (leaving) jerry: hey! wait! wait! wait a second! where you goin'? i-i hardly ever see you anymore. elaine: (stops, pause) well, i. (a little ashamed) i guess i been at reggie's.. jerry: the bizarro coffeeshop? elaine: kevin and his friends are nice people! they do good things. they read.. jerry: i read. elaine: books, jerry. jerry: (pause) oh. big deal.. elaine: well! i can't spend the rest of my life coming into this stinking apartment every ten minutes to pore over the, excruciating minutia, of every, single, daily event.. jerry: (what's goin' on,) like yesterday, i go to the bank to make a deposit, an' the teller gives me this look, like-- elaine: i'll see you later man. i gotta go. jerry: (frustrated, to self) the whole system is breakin' down! george: hello? amanda. hi, yes. listen. you know, i'm thinkin', we might just be better of bein' friends. yeah. yeah, you know what, i can't even really talk about it right now. bye-bye. (hangs up) (happy with himself, but then sees the burned up photo) no! no! gillian: friends. just friends. jerry: yeah. gillian: yeah. all right. well, do you still want to see a movie later? jerry: i wish i could, but, we're friends.. gillian: i'm just gonna go, wash my hands. jerry: good idea. (phone's ringing, goes to it) (muttering) there's a beach towel on the rack.. (to phone) yeah. george: (frantic) jerry! jerry, muh--muh--my hair-dryer ruined the picture! an' i need another one or i can't get back into the forbidden city! jerry: (to drive him crazy) who is this.. george: jerry! i need you to get another picture of man-hands. i'm beggin' you! jerry: (pause) if i get it for you, will you take me to that club an' show me a good time? george: yes! yes, all right--anything! jerry: got it. (but now a man-hand grabs his arm) uh! kramer: jerry. hey jerry? jerry: i'm right here. (note he has an athletic bandage on his right hand) you're late. kramer: yeah, well, i got held up, you know. what happened to your hand? jerry: like you care. kramer: the work piled up, i lost track of time-- jerry: (calmly getting up with plate of chicken) oh! sure! sure! you an' your work! elaine's off in the bizarro world, george only calls when he wants something, an' i'm left sitting here like this plate of cold chicken, which, by the way, (drops chicken into sink) was, for two. kramer: you cooked? jerry: (calm) i ordered in. it's still effort. kramer: (in pain) ow! jeez! jerry: what's wrong? kramer: (ow!) it's my stomach. jerry: you're probably gettin' an ulcer. this job is killing you! it's killing us. kramer: (putting briefcase down) you know what? you're right. these reports, they can wait a couple of hours. whadda say we go out tonight? any place you want. jerry: the coffeeshop? kramer: you got it, buddy. jerry: (pleased) i'll call george! jerry: hey. isn't that elaine? george: (quiet, desperate) maybe she can get me another picture of man-hands. (calling) elaine! jerry: elaine! kramer: elaine! all three: elaine! elaine! (elaine finally notices them, but suddenly from the other direction, three other guys are coming: gene, kevin, and feldman.) kevin: hey! elaine! hi-i! over here! elaine: jerry.. george, kramer.. this is kevin, gene.. and feldman. jerry: (quietly crept out) this is really weird.. elaine: (diplomatically to kevin, gene, and feldman) could you guys excuse us, just for a moment. kevin: sure. (strolls away with his friends) elaine: (pause) thanks. (to jerry, george, and kramer) what.. what do you guys want.. george: elaine, i got to have another picture of gillian. jerry: i tried to get him one but man-hands almost ripped my arm out of the socket! kevin: (here ya are.) elaine: (pause, turns back to jerry et al.) guys. i gotta go. take it easy. george: elaine? (she turns, sighing) can i come? elaine: i'm, i'm sorry.. we've already got a george.. kramer: what did you want to see me about, mr. leland? leland: kramer, i've.. been reviewing your work.. quite frankly, it stinks. kramer: well, i ah.. been havin' trouble at home and uh.. i mean, ah, you know, i'll work harder, nights, weekends, whatever it takes.. leland: no, no, i don't think that's going to, do it, uh. these reports you handed in. it's almost as if you have no business training at all.. i don't know what this is supposed to be! kramer: well, i'm uh, just--tryin' to get ahead.. leland: well, i'm sorry. there's just no way that we could keep you on. kramer: i don't even really work here! leland: that's what makes this so difficult. george: hi. george. model #4: are you sure you're supposed to be here? george: oh, yeah. yeah. i used to come here all the time with my fiance, back when it was a meat-packing plant. ha. here's her picture. (hands her a magazine page) model #4: what'd you do? cut this out of a magazine or something? george: huh? model #4: that's me? it's from a clinique ad i did.. george: ha! heh. bouncer: let's go. private party. (escorts him out) kevin: who is it? elaine: (off-camera) it's lainey! kevin: (unlocks, opens door) hi elaine! (warmly hugs her) elaine: hi (?). oh! oh-oh-oh-oh! kevin: come on in! elaine: okay. hi gene! (comfortably tosses her bag to the left, it falls on the floor) uh-ha! (smiling, picks up her bag, puts it on a chair that's to the right) elaine: what's up? kevin: (friendly) just reading.. (elaine decides to make herself at home, opens the refrigerator and starts eating olives out of a jar, with her fingers. in the living room area, kevin is looking at her. note: a statue of bizarro superman on a stereo speaker.) kevin: hey.. what're you doing? elaine: eatin' olives. kevin: have you ever heard of asking? (door bell rings) who is it? feldman: (off-screen) feldman.. from across the hall. kevin: (drops his suspicion and smiles, goes to door) hold on. (unlocks and opens door) hey. feldman: he-ey, kevin! kevin: hi. feldman: look who i ran into. vargus: (testy) hello, kevin.. kevin: (testy) hello, vargus.. kevin: ya wanna catch a ballgame this weekend? vargus: great! i'll see ya later! (leaves) kevin: okay. (to self, smiling) vargus.. (to feldman) so? feldman: i got 'em.. kevin: all right! hey, elaine, feldman was able to get us all tickets to the bolshoi! elaine: oh! (comes to him) kevin: (enthused) fourth row, center. elaine: get out! (pushes him back, but he falls back on the floor!) gene: (to elaine) what is the matter with you? elaine: oh, kevin! i'm so sorry. is there anything i can do? gene: haven't you done enough already? elaine: (turning to them, awkward) it's locked.. jerry: so this is it, huh? george: but it--eh.. it was here, i'm tellin' you, an' w--w--it was really here! the, there was, a, bar, and a, an' a dance floor.. jerry: (dry) i guess the dj booth was over there behind the bone saw? (really disappointed) let's get out of here george. gene: at work today, i discovered there's a payphone in the lobby that has free long distance. kevin: oh, so what did you do? gene: i called the phone company an' immediately reported the error. kevin: nice. (doorbell rings) who is it? feldman: (off-screen) feldman.. from across the hall. kevin: (smiles, relieved) hold on. feldman: kevin! brought some groceries. kevin: again?! feldman, you didn't have to do that! feldman: hey, what are friends for? kevin: you know, i may not say this enough but you two are about the best friends a guy could have. kevin: (eyes closed in hug) oh. me so happy. me want to cry. kramer: i wouldn't walk over there. jerry: why not? kramer: it's the most dangerous part of the sidewalk. cab hops a curb, wap! you've had your last egg sandwich. jerry: what about over there? you know air conditioners fall out all the time. kramer: i'd much rather get hit by an 80 pound air conditioner than a two ton cab. jerry: no, cab's comin' in right here (hand at waist) set of plastic hips, prosthetic legs, and a monkey to answer the door, i'm back in business. kramer: much rather take it to the head, like i did in '79. jerry: you were livin' in the village then, right? kramer: don't really remember. elaine: (showing fingernails) toxic waste green. jerry: that is disgusting. elaine: you know, revulsion has now become a valid form of attraction. jerry: well, then you're drivin' me wild. elaine: i had 'em done for the big peterman bash i'm throwin'. jerry: (george enters) oh, why you havin' a party? elaine: i drive my people hard, and then i reward them. jerry: like with dogs. elaine: exactly. george: party? elaine: yeah. george: food? elaine: uh huh. george: bar? elaine: yeah. george: george? jerry: he's gonna show up anyway. elaine: george, i just don't want you interfering. george: how could i possibly interfere? jerry: isn't that what jack ruby said? george: (eating) oh yeah. these are fantastic, fantastic. (to server) you know, i'd love to get a jump on the next batch, where do you come out? (server leaves) (to anna) she's been ignoring this section all night. quesadilla? anna: no thanks. george: hi ah, my name is george. anna: anna. i don't recall seeing you around the office. do you work in the mail room? george: no, i'm a friend of elaine benes. anna: oh. excuse me. (she leaves) george: so... man: how 'bout leading us in a toast? elaine: oh sure. hey guys, i wanna make a toast. um... here's to us who wish us well, and those who don't can go to hell... all right, who's dancin'? c'mon, who's dancin'? you want me, you want me to get it started? i'll get it started. whew! (she dances) george: sweet fancy moses! kramer: you get the tickets? jerry: who wants two? special sneak preview of death blow. kramer: death blow when someone tries to blow you up, not because of who you are, but for different reasons altogether. (jerry buzzes up george) jerry, do you think you can get an extra ticket for my friend brody? jerry: kramer, do you know what i had to go through to get these? kramer: yeah, i know, but he's a big fan of the genre. you know i'd consider it a personal favor to me. jerry: yeah i guess i do owe you. kramer: uh, listen, do you want me to stay here until george gets up? jerry: no, i'm okay. kramer: there's no problem, really. jerry: i'm fine. (george enters, kramer exits) how was the party? george: food was good. jerry: yeah, so i didn't miss anything? george: well, actually you did miss one nugget of entertainment. (pause) have you ever seen elaine dance? jerry: elaine danced? george: it was more like a full bodied dry heave set to music. jerry: did she do the little kicks and the thumbs? george: what, you mean you know about this? jerry: for some time... (video of elaine dancing on the street with jerry and the street musicians watching her awful dance) it was about five years ago. i never knew what to say to her about it. it was one of those problems i hoped would just go away. george: well, sometimes you can't help these people 'til they hit rock bottom. jerry: and by then you've lost interest. george: hey, you gotta take a ride with me later. i borrowed my father's car. '68 gto. jerry: what made him get that thing? george: during that period when my folks were separated he went a little crazy. jerry: not a very long trip. (enter kramer) kramer: brody's in. jerry: i don't even have the extra ticket yet. kramer: well, you better get on the horn. elaine: i'm tellin' you jerry i'm gettin' a vibe. if i didn't know better, i'd say the staff completely lost respect for me. (staff mocks her dancing in the background) jerry: how could that be? elaine: jerry, it's like the feeling is palpable. you think it could have something to do with the party? jerry: no, george was there, he said he had a great time. elaine: ah, it's george. i bet you this is somehow george related. jerry: oh, what are you talkin' about? elaine: he's like a virus. he attaches himself to a healthy host company, and the next thing you know, the entire staff's infected. jerry: now you're talkin' crazy! elaine: all right, jerry, if that's not what it is, you tell me. what is it? jerry: (makes sound) oh there's my call waiting, i gotta get goin'. anna: you have a minute to approve some copy? elaine: oh yeah, sure, sure. so ah, did ya have a good time at the party last night? anna: it was a real... kick. elaine: hey, did you happen to speak to my friend george? anna: as a matter of fact i did. elaine: ah hah. well, listen. you would be wise to keep your distance from him. anna: why? he seems harmless. elaine: oh he's not. he's very harmful. anna: really? elaine: oh trust me. he's a bad seed. he's a horrible seed. he's one of the worst seeds i've ever seen. anna: and you two are friends? elaine: yeah, we're good friends. george: so this anna called me from out of the blue. jerry: really? i thought you were rebuffed. george: with extreme prejudice. jerry: maybe elaine put in a good word for you. george: no, no. that's just the thing. anna told me that elaine said i was one of the worst seeds she'd ever seen. jerry: interesting. she doesn't care for you, then a stern warning, suddenly a phone call. seems elaine's made you the bad boy. and anna digs the bad boy. george: i'm the bad boy. i've never been the bad boy. jerry: you've been the bad employee, the bad son, the bad friend... george: yes ... yes, yes jerry: the bad fianc&mac226;, the bad dinner guest, the bad credit risk... george: okay, the point is made. jerry: the bad date, the bad sport, the bad citizen... (looks at table as george exits) the bad tipper! jerry: half of show business is here. kramer: there's brody. brody! over here. brody: hey kramer. and you must be jerry. thanks for the ticket. jerry: that's quite a feed bag you're workin' on there. brody: it's for all of us. is there a problem? kramer: brody, c'mon. he's just kidding. he's a joke maker. tell him, jerry. jerry: i'm a joke maker. kramer: all right, here we go, death blow. (brody takes out video camera) jerry: (to kramer) hey, hey, what the hell is he doing? kramer: relax, he does that all the time. jerry: does what? kramer: he's making a copy of the movie for sale on the street, hum? jerry: may i see you outside for a moment please? kramer: but i want to-- jerry: outside! elaine: hey, have you seen anna? worker: uh, she just went to meet your friend george. elaine: to meet george? i knew it. where did they go? worker: the park, why? elaine: don't you see? george is in the bloodstream! you stay away from him, too! jerry: what do you mean he's bootlegging the movie? kramer: well, it's a perfectly legitimate business. jerry: it's not legitimate. kramer: it's a business. jerry: where did you meet this guy? kramer: he's a friend of a friend. you know corky ramarez up on 94th street? one day he and i are playing pachinco-- jerry: kramer. (boom sound) kramer: man, we're missin' the death blow! jerry: i don't believe this. (they run into theater) anna: you know i'm not supposed to be talking to you. george: no one's putting a gun to your head. do i, uh, scare you? anna: no... a little. nice car. george: yeah, she's a sweet ride. anna: is that your orthopedic back pillow? george: maybe. anna: well is it or isn't it? george: guess not. elaine: (to george) stay away from her. george: i didn't do nothin'. elaine: (to anna) get in the car. anna: but... elaine: you heard me young lady, get in the car. (to george) and you, you should know better. i don't want you infecting my staff. george: lighten up. kramer: go get 'em, death blow! (to brody) you okay? (movie voice: so death blow, we meet again ...) brody: uh, i got a cramp. kramer: well, it's no wonder. you ate that entire bag of candy. brody: uh, there it goes again. kramer, you gotta drive me home. jerry: hey, what is going on over there? brody: jerry, finish shooting the movie for me. jerry: are you nuts? there's no way i'm holding that thing. kramer: jerry, if the man is in pain... jerry: yeah well, maybe if he didn't lick his fingers before he reached in the bag we would've eaten some. serves him right. brody: (pulls out a gun) what are you some kind of tough guy? kramer: okay. let's everybody just relax. jerry, take the camera. jerry: all right, i'm, i,m takin' the camera. kramer: (to brody) c'mon, let's go. jerry: oh man... kramer: hey man, so how was the rest of death blow? jerry: how was the rest of death blow? kramer: yeah, who got the final death blow, 'cause i thought that hawaiian guy, he had it comin' to him! jerry: kramer, you make me get a ticket for this friend of yours and then the guy forces me to bootleg the movie at gun point! kramer: he's quite a character, isn't he? jerry: you know, he came by here at 3 o'clock in the morning to pick up the tape. i was scared out of my mind! kramer: i got it. yep. brody: brody. kramer: come on up. it's brody. jerry: what are you, crazy? i don't want to see this guy again. kramer: jerry, you did him a favor. he probably wants to come up and thank you. jerry: what if i didn't do it right? kramer: it's your first time. he'll understand. jerry: people with guns don't understand. that's why they get guns. too many misunderstandings. kramer: hey, brody! jerry: hi. brody: jerry, i have to talk to you about the tape. jerry: yeah. brody: i've never seen such beautiful work. jerry: what? brody: (con,t) you're a genius. the zoom-ins, the framing. i was enchanted. jerry: well, i did the best i could. brody: i got another project for you. it's a movie called cry cry again. i was gonna give it to one of my other guys, but it's an arty movie and quite frankly, they don't have the sensibility. brody: may i use your phone? kramer: uh yeah. it's under the couch. kramer: look at you! you've got another gig! uhh. jerry: i don't want another gig! i'm not doin' this. kramer: but you have a gift. jerry, this is not your little comedy act. we're talkin' feature films. jerry: we're talkin' federal crime here. brody: (to jerry) i'll expect that tape by three o'clock tomorrow. (to kramer) may i borrow this? (holding baseball bat) kramer: sure, do you need a glove? brody: nah. worker: i pressed through the rushes and there, the native dancers whirled before me limbs flailing, arms akimbo, feet kicking up dust... (all workers laugh) elaine: what? what is so funny? anna: sorry, i got hung up. elaine: at yankee stadium? anna: this? it's mine. elaine: oh really? 'cause it looks a little big for you. it looks like something a short, stocky, slow-witted, bald man might wear. anna: he's not stocky. elaine: who did that? who did that?!? kramer: (laughing) the french guy fell off his bike. oh man, that's precious. (eats popcorn) jerry: no, no, no, no, no, no, no! what were you thinking when you shot this? kramer: that's fine. jerry: do you even know what this scene is about? kramer: it's about a guy buying a loaf of bread. jerry: no, bread is his soul. he's trying to buy back a loaf of his soul. kramer: wha? where? jerry: kramer there is no way you're giving this tape to brody and telling him i shot it. kramer: nah, nah, he's not going to know the difference. jerry: i don't care about brody. i was up on 96th street today, there was a kid couldn't have been more than ten years old. he was asking a street vendor if he had any other bootlegs as good as death blow. that's who i care about. the little kid who needs bootlegs, because his parent or guardian won't let him see the excessive violence and strong sexual content you and i take for granted. kramer: so you'll do the movie? (jerry watches the movie kramer shot - we hear kramer, on the tape say 'ah man, i sat in gum') jerry: i have to. but i'm gonna need to storyboard this whole thing. where are my magic markers? kramer: right here. (elaine enters) elaine: well, i have lost complete control of my staff. why did i let george go to that party? i mean, we were having so much fun. we were wining, we were dining, we were dancing. (she starts dancing, kramer flips out) what? kramer: (he shows her) this umpf thing. elaine: it's dancing. kramer: no, no. that ain't dancing, sally. elaine: i dance fine. kramer: you stink. (he exits) elaine: he doesn't know what he's talkin' about. (jerry fake laughs) jer? jerry, i'm a good dancer, right? jerry: i forgot to make my bed. (he tries to get away) elaine: jerry, do i stink? jerry: all right, you're beyond stink. elaine: but i really enjoy dancing. jerry: and that's not helpin' either. that's why you're havin' trouble with your staff, not because of george. elaine: it's that bad? jerry: have you ever seen yourself? (she starts dancing) ah, ah, please, please. not in my home. i gotta go throw this stuff in the laundry. i'll be right back. voice: i have george costanza still holding. elaine: george, hi. i have anna here. there's something i wanna say to both of you. george: yo, anna. anna: hi, george. what're you up to? george: (ironing) you don't wanna know. elaine: uh, well, listen. i feel really horrible about trying to keep you two apart and i just wanted to apologize. george: what, wha, what're you talkin' about? elaine: well, george, i just want you to hear me say to anna that you're a good and decent person. george: pick up the phone, elaine. pick it up! elaine: i never should have given anna the impression-- george: pick it up, pick it up! elaine: --that you're a bad seed, i mean, you're a fine seed. george: elaine, get off the speaker! (elaine picks up phone) elaine: what? george: you are ruinin' everything. elaine: i'm trying to help. why are you being so difficult? george: yeah, yeah, yeah, yeah. that's it. more of that, difficult. i'm a difficult seed. elaine: george, i don't have time for this. uh, anna, do you wanna talk to george? anna: um, no, i don't think so. elaine: no, she doesn't want to. okay, bye, george. we'll see ya. george: i'm a bad man! brody: so where's the tape? jerry: no, i didn't shoot this one. i'm just scouting the location. brody: i need the tape. jerry: you'll get your tape. but here's what i'm gonna need. i'm gonna need three cameras, two on the floor, one in the balcony. and i want headsets for the guys runnin' 'em. i wanna be able to talk to 'em. brody: are you out of your mind? jerry: kramer... kramer: i know, jerry. it's okay. (jerry steps aside) yeah, look, brody. uh, jerry wants to do the bootleg. he's dyin' to do it. but if you don't make him happy, the work suffers. and then, nobody's happy. brody: just shoot the damn thing so i can get it out on the street! jerry: all right. that's it, i can't work like this. kramer: jerry... jerry: i'm off the project. (he exits) kramer: jerry! brody: i want the tape. kramer: yeah. george: well, i'm the good boy again. can you believe that? jerry: they think they can get anyone to shoot these bootlegs. george: anna actually has respect for me now. (laughs/snorts) it's all over. jerry: eh, the whole business has changed. it's all about money now. the sad thing is it's the kids that suffer. (kramer enters) kramer: listen, man. you gotta shoot this movie for me. brody, he's a reasonable man, but he's insane! jerry: kramer, i'm not doin' this anymore. i don't know what i was thinking. it's illegal, it's dangerous... george: did you say dangerous? george: i'm a bootlegger. anna: you're a what? george: i'm bootleggin' a movie, baby! anna: isn't that illegal? george: i can do hard time for this one. and community service! anna: is this your fibercon? george: (takes it and throws it out window) get outta my way! kramer: jerry, george got arrested. jerry: what? kramer: yeah. he went down at the beackman, he tried to lam, but they cheesed him. jerry: oh now i see. (buzzer) yeah. brody: brody, i'm comin' up. jerry: what're we gonna do? kramer: well, i ah, gotta give him something. come on, where's that tape i shot? jerry: i think that's it. (they play it and see elaine dancing) sweet fancy moses! kramer: jerry, she taped over the whole ending! (brody enters) brody: where's the tape? jerry: uh, well. it, uh... brody: is that it? kramer: uh, yeah, yeah. here it is, brody. one copy of cry cry again. brody: how'd it turn out? kramer + jerry: uh... great. kramer: although the whole story kinda comes apart at the end there. jerry: yeah, out of nowhere there's this lone dancer who appears to be injured. kramer: yeah, it's a disturbing image. jerry: yeah, so you cry... and when you see the dancing, you cry again. anna: (george is crying) it's all right, george. you'll just pay a fine and that'll be it. george: why did the policeman have to yell at me like that? (elaine enters) elaine: anna... anna: oh, elaine, thanks for picking me up. i can explain everything. elaine: all right. well, we'll talk about it tomorrow at the office. (mr. costanza enters) frank: okay, where's my boy? george: oh my god. frank: i'm sitting at home, reading a periodical, and this is the call i get? my son is a bootlegger? (he hits george in the head) george: ow! dad... frank: who put you up to this, was it her? elaine: all right. wait a minute. i think you've got it backwards. frank: my george isn't clever enough to hatch a scheme like this. elaine: you got that right. frank: what the hell does that mean? elaine: that means whatever the hell you want it to mean. frank: you sayin' you want a piece of me? elaine: i could drop you like a bag of dirt. frank: you wanna piece of me? you got it! (they begin to fight) jerry: but he's an old man, elaine. elaine: well, he wrote the check, and i cashed it. jerry: (seeing a street vendor) hey, it's the bootlegged death blow that i shot. elaine: oh, cry cry again, i wanna see that. jerry: no you don't. man: you shot death blow? jerry: yeah. man: that was brilliant. jerry: thank you. (they continue walking) elaine: you were big. jerry: i'm still big. it's the bootlegs that got small. so how are things at the office? back to normal? elaine: yeah, pretty much. although i still get the vibe every once in a while. jerry: i wouldn't worry about it. (people on sidewalk behind them are doing her dance as they go) kramer: well, i really miss the bermuda triangle. newman: i guess there's not much action down there these days. kramer: oh, there's action. there's plenty of action. that damned alien autopsy is stealing all the headlines. newman: yeah, tell me about it. kramer: see, what they gotta do is loose a plane or a greenpeace boat in there. see, that would get the triangle going again. newman: what keeps the water in there? i mean, why doesn't it disappear? kramer: what would be the point in taking the water? newman: it's gorgeous water. (pause) do we own bermuda? kramer: no. it belongs to the british. newman: lucky krauts. kramer: so, what do you think about that alien autopsy? newman: oh, that's real. kramer: i think so too. attendant: the doctor will be with you in a moment. elaine: difficult? doctor: elaine. you shouldn't be reading that. so tell me about this rash of yours. elaine: well it's, it's..... you know i noticed that somebody wrote in my chart that i was difficult in january of 92 and i have to tell you that i remember that appointment exactly. you see this nurse asked me to put a gown on but it was a mole on my shoulder and i specifically wore a tank top so i wouldn't have to put a gown on. you know there made of paper. doctor: well that was a long time ago. how about if i just erase it. now about that rash...... elaine: but it was in pen. you fake erase. doctor: all right miss benes. this doesn't look to serious. you'll be fine. elaine: what are you writing? doctor. sheila: here you go. george: thanks. sheila: i hope you got that mustard stain out of your shirt. george: ohhhhhh jerry: no. all you got to do is jiggle it with this screwdriver. george: smile jerry: what are you doing? george: i meet this women, sheila. she works down at the one hour photo pace. she's got this incredible smile. like she's got extra teeth or something jerry: extra teeth. i love that look. george: hey check this out. i go to pick up my pictures and she says " i hope you got that mustard stain out of your shirt." jerry: what mustard stain? george: don't you see. she's looking at my pictures. jerry: why did you take a picture of a mustard stain? george: that's got nothing to do with it. jerry: i see. she's looking. george: yesssss. kramer: hey, you got to get this thing fixed. jerry: they've tried to fix it. but it keeps coming back the same. kramer: would you like a refund? jerry: well i can't the warranty expired two years ago. kramer: would you be interested? jerry: well how are you going..... kramer: would you? jerry: i guess i would. kramer: yeah, yeah. elaine: you are not going to believe what happened to me at the doctors office today. jerry: not the gown again. elaine: no, no. i was looking at my chart and it said i was difficult. why would they write that? jerry: they have gotten to know you. elaine: then the doctor writes more stuff down and doesn't even look at my rash. george: why don't you find a doctor that doesn't know your difficult. elaine: oh come on. i'm not difficult. i'm easy. jerry: why because you dress casual and sleep with a lot of guys. elaine: listen to me you little shi........ george: smile. doctor: well elaine you really didn't have to put on the gown. elaine: oh it's my pleasure. i love these. in fact i got one at home. it's perfect when you just want to throw something on. doctor: all rightly. let me just review your history before we begin. elaine: where did you get my chart? doctor: from your last doctor. it's a standard procedure. elaine: you know i can tell you my whole history. let's just....... doctor: okay. let's take a look. well that doesn't look to serious. you'll be fine. elaine: please, please. it's really, really itchy. postal worker danny: seinfeld? jerry: yeah. postal worker danny: i got a package for you. sign here. jerry: who's it from? postal worker danny: no return address. jerry: what if i don't want it? postal worker: are you refusing delivery? jerry: maybe i am. postal worker danny: why would you do that? jerry: i've never done it before. postal worker danny: why start now? jerry: why not? postal worker danny: all right. george: why did you refuse the package. everybody loves a package. jerry: i don't know it was weird. crazy printing. i don't know who it was from. george: what do you think it's a bomb? jerry: it's not totally impossible. george: oh the ego on you. jerry: why can't i be bombable? george: who's going to bomb you. an airline for all the stupid little peanut jokes. jerry: i suppose you think your bombable. george: hey. there is a couple of people that wouldn't mind having me out of the way. jerry: there's more than a couple. george: hey. check these out. i just picked them up from sheila. she must have loved these. jerry: you don't have a mercedes. george: i know. i just sort of leaned on it so it would look like it was mine. jerry: the driver seems a little put out. george: no. he was fine with it. check that out. jerry: is that burt reynolds? george: wax museum. jerry: oh. george: oh. what is this? jerry: that's a lot of skin. george: this must be sheila from the photo place. jerry: you can barely see her face. george: she must have slipped it in here. kramer: i i i george: photo store sheila. kramer: well hello photo store sheila. george: all right. i will see you boys later. jerry: where are you going? george: to ask her out. kramer: no, no. your not playing the game. george: what game? kramer: she goes to these lengths to entice you and your only response is " gee i really like your picture. would you like to go out on a date with me please. " george: no good? kramer: george. it's the timeless art of seduction. you got to join in the dance. she sends you an enticing photo, you send her one right back. george: oh, i don't know. kramer: well as you know i've always been something of a photog. jerry: oh yeah i like this idea. uncle leo: hey danny. hello. how are you? postal worker danny: hey leo. leo what's up with your nephew. he wouldn't except his package. uncle leo: oh he wants it. he's just trying to be funny. yeah i'll sign it . elaine: and then he starts writing on my chart. george: well why don't you get a hold of it and change what you don't like. elaine: you can't change your chart. it's your chart. george: i am in and out of my personnel file at work all the time. elaine: you are!?! george: hey. i've kept the same job for more than two years. it's not luck. elaine, have you ever sent a racy photograph of yourself to anyone? elaine: yeah. i sent one to everyone i know. remember my christmas card. george: oh yeah the nipple. but besides that. how did you feel about kramer's work? elaine: actually i thought he was very professional. george: so it was a good experience. elaine: oh yeah. in fact i like the picture so much i cropped out the nipple and am using as my health club id. george: nice. elaine: yeah it is nice actually. elaine: i need to see dr. burke right away. this rash is spreading. attendant: he can't see you miss benes, he's busy. elaine: oh come on. have some compassion. okay well i hope it's contagious elaine: come on. move. (elevator doors reopen; dr. burke and two orderlies are revealed) oh hi dr. burke. i didn't know if uh.... dr. burke: the chart miss benes. elaine: oh please no more. jerry: hey george: where's kramer? jerry: he went to get some steak sauce. why? george: personal matter. jerry: hello uncle leo: jerry! it's your uncle leo! hello! jerry: hello leo. you don't have to yell. uncle leo: i got your package. jerry: how did you get my package? uncle leo: what should i do with it? jerry: i don't know what you should do with it. george: tell him to open it. jerry: i am not going to treat my uncle like a bomb defusing robot. uncle leo: jerry, your cousin jeffrey is in the parks production of "the mikado". i want you to go see it with me. jerry: open the package leo. uncle leo: okay. opening. jerry: opening. (through the phone: boom!!!) elaine: so it wasn't a bomb. jerry: no, no bomb. elaine: well then what? jerry: oh stupid leo was using one of those oven cleaners. he left the canister in there and the pilot light was on. the whole thing blew up. elaine: but he's okay? jerry: yeah but the explosion singed off his eyebrows, mustache everything. he's all smooth now. look's like a seal. elaine: yeah i am still holding. jerry: is this my stereo? kramer: hey you got it. jerry: what happened to my stereo? it's all smashed up. kramer: that's right. now it looks like it was broken during shipping and i insured it for $400. jerry: but you were supposed to get me a refund. kramer: you can't get a refund. your warranty expired two years ago. jerry: so were going to make the post office pay for my new stereo? kramer: it's just a write off for them. jerry: how is it a write off? kramer: they just write it off. jerry: write it off what? kramer: jerry all these big companies they write off everything jerry: you don't even know what a write off is. kramer: do you? jerry: no. i don't. kramer: but they do and they are the ones writing it off. jerry: i wish i just had the last twenty seconds of my life back. elaine: what?!? he doesn't have one appointment this whole month!?! oh come on. i am dying here man. hello, hello. jerry: still no luck elaine: jerry i am at doctor zimmerman. i am at the end of the alphabet. jerry: there's no zorn or zoutraph. elaine: there on vacation. every doctor in this city seems to know who i am . jerry: hey what about dr. resnick my uncle leo is going to see him tomorrow . elaine: dr. resnick. he's not listed. jerry: he's not that good. george: elaine said your pretty good at this stuff. kramer: oh yeah. elaine was a fun project. i enjoyed working with her. george: you don't have your own camera. kramer: uh no. look at this. okay yeah this looks good and i like what your wearing. george: i feel fat. kramer: no, no. you're stoked. the camera loves stokedness. look were not going to do anything that makes you feel uncomfortable. the key word is tasteful. now i want you to relax and have fun because your a fun guy. all right let's do it. okay come on. feel the beat. feel the beat. you know you got some real strong pecks but it's hard to tell under that t-shirt. george: well do you want me to take it off? kramer: i don't know it's up to you. george: do you think it would be better if i did? kramer: it might be. i mean whatever you want. george: all right!! kramer: that's it george. come on, come on. give it to me. come on,work it. work it. yeah be a man, be a man. kramer: you are a lover boy!! jerry: oh yeah. this can't miss. elaine: hello. guy: is this elaine marie benes? elaine: yes. who it this? guy: we are with the american medical association. can you confirm the correct spelling of your last name? is it b-e-n-e-s. elaine: yeah. what is this all about guy: good bye. elaine: hello, hello. guy: what? elaine: oh uh uh... guy: get off the line. were trying to make another call. uncle leo: elaine. hello. what are you doing here? elaine: leo. has the doctor been in yet? uncle leo: no. i am going to ask him about my eyebrows. elaine: okay listen leo. your hairless, your scared. when the doctor comes in let me do the talking. okay. dr. resnick: leo. i heard you had a little mishap. uncle leo: it was a fireball. elaine: i should have never left him alone. dr. resnick: and who are you? elaine: i am his nurse... poloma. uncle leo: you're not my nurse. elaine: he has good days and bad. dr. resnick: what seems to be the problem? uncle leo: are my eyebrows going to grow back? elaine: and he's has a bit of a rash. dr. resnick: really. elaine: yeah. dr. resnick: well there's been a bit of that going around lately. will you excuse me poloma. i just need to get some ointment. elaine: i don't like this, it is to easy. uncle leo: elaine... elaine: shut up! i think he's on to us. uncle leo: elaine what about my eyebrows? elaine: shhhhhh. here. jerry: i don't like this kramer. will it be much longer? attendant: i am sorry. it looks like the claim has been red flagged. your under investigation. jerry: investigation? newman: hello jerry. jerry: hello newman. newman: kramer you might as well run along. jerry might be a while. suspicion of mail fraud. kramer: mail fraud. your in a lot of trouble buddy. dr. resnick: i got your ointment. where's your nurse? uncle leo: she left. dr. resnick: no need to get angry. calm down. uncle leo: i am calm. dr. resnick: leo i don't care for your demeanor. uncle leo: demeanor? dr. resnick: now your just being difficult. uncle leo: what are you writing? george: so i really liked the pictures i picked up here yesterday. sheila: i am glad george. george: and here's a roll that i think you may enjoy. sheila: great. george: shall we say an hour. sheila: hey ron i got to go to lunch. can you do a roll? ron: no problem. sheila: by the way. you know that model that is always in here. she's missing one of her lingerie shots. have you seen it? ron: no. newman: all right. then let me ask you this. didn't you find it interesting that your friend had the foresight to purchase postal insurance for your stereo. huh. i mean parcels are rarely damaged during shipping. jerry: define rarely. newman: frequently. jerry: are we about throw here newman? newman: it's pretty hot under these lights huh seinfeld. pretty....... hot . jerry: actually i am quite comfortable. newman: can i have a sip? jerry: no. newman: not going to play ball. huh all right. admit it that stereo was all ready busted. jerry: you can't prove anything. newman: is this or is this not your signature? jerry: no in a matter of fact it isn't. newman: uncle leo? this case is closed pending further evidence. jerry. elaine: get in there. get chart. get out. you got it. kramer: yeah let me borrow your scarf. elaine: this. kramer: yeah. all right one chart coming up. elaine: okay. kramer: bennette right? elaine: benes. my last name is benes you jackass. yeah. newman: jerry, jerry, jerry, jerry, jerry, jerry, jerry, jerry, jerry. kramer: i like what you've done with that. attendant: may i help you? kramer: yes, yes. i am dr. vanostran from the clinic. i need elaine benes chart. she's a patient of mine and she's not going to make it. it's uh very bad very messy. attendant: i see and what clinic is that again? kramer: that's correct. attendant: excuse me. kramer: from the hoffer-mandale clinic in belgium. attendant: really? kramer: the netherlands? elaine: where's my chart? did you get it? kramer: no. elaine: what? what happened? kramer: i don't know. but now they got a chart on me. sheila: i don't know where they could be. george: can't find them. that's marvelous. the dance continues. sheila: well if i find them i'll call you. george: and maybe we could go out and do something. sheila: sure. ron: hello. george: hi. sheila: so the little guy finally asked me out. ron: really? sheila: hey i can't find his photo's anywhere. ron: oh you know what happened. some guy from the post office confiscated them. he left his card. sheila: newman? george: i don't know what newman wanted to see me for. newman: gentlemen, gentlemen. i am so happy to see you both. there is just some inconsistencies i'd like to straighten out. jerry: i'm clean and you know it. newman: clean? hardly. this looks like a man that isn't happy with his stereo performance. jerry: where did you get that? george: i think that's one of mine. newman: it looks like your breaking into it like an otter breaking into a clad. jerry: i don't know about that but i'm sure there is a explanation. newman: yes. it's called mail fraud. oohhhh. how i've longed for this moment seinfeld. the day when i would have the proof i needed to hall you out of your cushy lair and expose to the light of justice as the monster that you are. a monster so vile..... guy: newman!! newman: there will be a small fine. jerry: okay. george: can we go now? newman: not so fast pretty boy. there is more to this sorted little affair. jerry: oh my god!! newman: this photo clearly indicates your involvement in some ill-conceived mail order pornography ring.as does this one found in the same disturbing packet. george: oh my god!!! newman: we have some questions we'd like you to answer. jerry: i have some questions of my own. sheila: hi. one of your mailmen....... oh my god, george!?! george: listen sheila it's not what you think. i put my trust into the wrong person. he said the key word was tasteful. jerry: the timeless art of seduction. george: sheila!!! woman: well i started out working in mortgage bonds, but i just found that so limiting. jerry: my friend kramer and i were discussing that same thing the other day. he was with brant-leland for a while. woman: wow. well then my mentor suggested that i move into equities, best move i ever made. jerry: mentor? you mean your boss. woman: oh, no no no, cynthia's just a successful businesswoman who's taken me under her wing. jerry: hmm. so cynthia's your mentor. woman: and i'm her protg. you must have someone like that. you know, who guides you in your career path. jerry: well, i like gabe kaplan. george: i still don't understand this. abby has a mentor? jerry: yes. and the mentor advises the protg. george: is there any money involved? jerry: no. george: so what's in it for the mentor? jerry: respect, admiration, prestige. george: pssh. would the protg pick up stuff for the mentor? jerry: i suppose if it was on the protg's way to the mentor, they might. george: laundry? dry cleaning? jerry: it's not a valet, it's a protg. george: alright. listen, i gotta get some reading done. you mind if i do this here? i can't concentrate in my apartment. jerry: (checking out george's textbook) risk management? george: yeah. steinbrenner wants everyone in the front office to give a lecture in their area of business expertise. jerry: well what makes them think you're a risk management expert? george: i guess it's on my resume. jerry: hello? voice: please hold for elaine benes. george: you know what? i can't do this. i can't read books anymore; books on tape have ruined me, jerry. i need that nice voice. this book has *my* voice. i hate my voice. jerry: so get this book on tape. george: you can't, it's a textbook. elaine: hey, jer. are you going to this bob sacamano party? jerry: am i going? it was three nights ago. elaine: what? you're kidding, i just got this invitation today. oh, i was so excited. it's really a beautiful invitation. jerry: oh, it was a lovely affair. elaine: wait a minute; this postmark is three weeks old. man, this happens all the time. (into intercom) jeanine? who the hell runs the mailroom? jeanine: eddie sherman. elaine: alright, send him up here. jerry: you gonna do a little yelling? elaine: i'm gonna do a little firing. jerry: that is so cool, can you put me on the speaker? elaine: oh yeah, sure. (hangs up) gimme a break. jerry: hey, copernicus? jeanine: eddie sherman is here. elaine: oh, great. send him in. eddie: you wanted to see me? elaine: eddie. yes, um, i am so sorry but i'm afraid we're gonna have to... promote you. jerry: so, what did you say? elaine: well, i called him all the way up to my office, so i had to tell him something important. so i promoted him. jerry: what? what did you-- elaine: copywriter. jerry: he's writing copy? elaine: well it can't be any worse than the pointless drivel we normally churn out. kramer: yowza yowza. check it out. jerry: (reading) jewish singles night? kramer: i expect you both to be there. elaine: i'm not jewish. kramer: well neither am i. jerry: well why are you going? kramer: i'm not, i'm running it. jerry: what are you talking about? kramer: well lomez, he usually runs it but he's in the everglades. jerry: lomez is jewish? kramer: oh yeah yeah yeah. orthodox, jerry. old school. elaine: (reading) at the knights of columbus? kramer: yeah, frank costanza, he's getting me a room at his lodge. so jerry, you know i'm really counting on you to come to this. jerry: kramer, you know, i-- kramer: no, jerry, look i'm cooking all the food myself. elaine: (reading) a tempting schmear of authentic jewish delicacies. kramer: do you like tsimmis? abby: my mentor says the duck is outstanding here. jerry: i'm not really a duck fan, the skin seems sort of human. abby: oh! look who's here, cynthia! cynthia: hello, abby. abby: hello. jerry, this is cynthia pearlman, my mentor. jerry: hello. cynthia: hi jerry, nice to finally meet you. abby: well come join us, we could pull up a chair. cynthia: great, my boyfriend's just parking the car. actually, jerry, you jerry: no kidding? cynthia: kenny bania. jerry: bania? bania: hey, jerry!! how's it going?! you gonna join us for dinner? the duck here's the best. the best, jerry. george: excuse me, i'm sorry to bother you, i noticed that you have a textbook on tape. may i ask where you got that? man: reading for the blind. they can get any book on tape. george: i tell ya, i am hooked on these books on tape. man: oh, tell me about it. these things have ruined me for braille. jerry: reading for the blind? george: i take an eye test; i flunk it, the next thing you know i am swinging to the sweet sounds of risk management. jerry: so, i finally met the mentor. george: what's she like? impressive? jerry: oh yeah, she's dating bania. george: bania? jerry: yeah. i had to spend two hours at dinner last night with that specimen. george: what did you have? jerry: chicken, how could she look up to a person who voluntarily spends time with bania? george: marsala? jerry: piccata, if anything i should be dating a mentor and bania should be setting pins in a bowling alley. jerry: hey, good luck with that. george: thank you. george: dad. frank: what are you wearing, an athletic sweat suit? george: what are you doing here? kramer: well, he came by to pick up his check for the banquet hall. you know i got a hundred and eighty-three responses? oh, it's gonna be a rager. jerry: kramer, how are you gonna cook jewish delicacies for a hundred and eighty-three people? kramer: yeah, you're right. that's a lot of pupkitz. hey frank, you know anybody who can help me cook? frank: cook? no, i don't know any cooks. i don't know anything about cooking! kramer: what's the matter with him? george: my dad was a cook during the korean war. something very bad happened, ever since you can't get him near a kitchen. kramer: shell-shocked? george: oh yeah, but that has nothing to do with it. elaine: that's good work, guys. that aught to do it for today. eddie: wait. you didn't ask me about my ideas. elaine: oh, eddie, well it's your first day. eddie: i'm ready. elaine: oh, okay. eddit: (reading) it's a hot night. the mind races. you think about your knife; the only friend who hasn't betrayed you, the only friend who won't be dead by sun up. sleep tight, mates, in your quilted chambray nightshirts. elaine: what am i gonna do? he is a disaster. jerry: well, if he's doing that bad, maybe he's in line for another promotion. elaine: you know what? you are exactly right. that is what i should do, i should promote him. i'll give him another office on another floor and he can sit there with his nice title and his bayonet and stop freakin' me out. george: nothing at all. doctor: well george, your vision is quite impaired. if you'll just sign this insurance form, here's a pen. george: you're a very handsome man, by the way. jerry: what the hell is going on here? jerry: what are you doing? kramer: i got three kitchens going. i got brisket going at newman's, i got kugel working at mrs. zamfino's, this is kreplach. here, try some of this. jerry: no, i don't want to. kramer: eat, eat! you're skin and bones. kramer: hah? jerry: oh, this is awful. kramer: jerry, it's kreplach. it's an acquired taste, yeah. jerry: did you follow the recipe? kramer: the recipe was for four to six people; i had to multiply for a hundred and eighty-three people. i guess i got confused. jerry: it tastes like dirt. kramer: well i also dropped it on the way over. look i'm in trouble, i got no skills. i can't peel, i can't chop, i can't grate. i can't mince! i got no sense of flavor, obviously. you know, i gotta talk to frank. jerry: kramer, you can't talk to frank. kramer: no i gotta talk to him, i know that he can help me, jerry. abby: i think there's a dead animal in the elevator. kramer: my stuffed cabbage! abby: so, great dinner last night. jerry: yeah, it was alright. abby: i told cynthia we'd double with her and bania saturday and then catch his act. jerry: no. no, no way, no bania. abby: what? jerry: have you seen his act? he's got a twelve-minute bit about ovaltine. he's a punk, a patsy, a hack. abby: cynthia would not date a hack. jerry: would. does. is. elaine: before we get started, i am happy to tell you that eddie sherman is no longer writing for this catalog. elaine: he's upstairs, i made him director of corporate development. employee: you promoted him? elaine: well, no, i would hardly-- employee: i bust my hump ever day. elaine: relax-- employee: as far as i'm concerned, you and your deranged protg can run the catalog by yourselves! i quit! elaine: well, hey? hey. hey!! voice: chapter one. in order to manage risk we must first understand risk. how do you spot risk? how do you avoid risk and what makes it so risky? george: this guy sounds just like me. voice: to understand risk, we must first define risk. george: this is horrible. voice: risk is defined as-- george: (banging the recorder) stop it! stop it! kramer: c'mon frank, i need you. i mean the war was fifty years ago. frank: in my mind, there's a war still going on. kramer: alright, what happened, frank? what is it that you can't get over? frank: inchon, korea, 1950. i was the best cook uncle sam ever saw, slinging hash for the fighting 103rd. as we marched north, our supply lines were getting thin. one day a couple of gis found a crate, inside were six hundred pounds of prime texas steer. at least it once was prime. the use date was three weeks past, but i was arrogant, i was brash, i thought if i used just the right spices, cooked it long enough... kramer: what happened? frank: i went too far. i over seasoned it. men were keeling over all around me. i can still hear the retching, the screaming. i sent sixteen of my own men to the latrines that night. they were just boys. kramer: frank, you were a boy too. and it was war. it was a crazy time for everyone. frank: tell that to bobby colby. all that kid wanted to do was go home. well he went home alright, with a crater in his colon the size of a cutlet. had to sit him on a cork the eighteen-hour flight home! kramer: frank, now listen to me. two hundred jewish singles need you. this is your chance to make it all right again. frank: no. no, i'll never cook again! never! now get out of my house!! get out. go. jerry: so you saw bania's act? abby: he got two minutes into that ovaltine thing and i just couldn't take it anymore. jerry: i told you, it's like getting beaten with a bag of oranges. abby: why is he so obsessed with ovaltine? jerry: he just thinks that anything that dissolves in milk is funny. abby: anyway, cynthia and i got into this big argument afterwards and i think it's over. jerry: no more mentor? abby: looks that way. jerry: well at least you and i are okay again. abby: actually i was kind of thinking that maybe we shouldn't see each other for a while. jerry: why? abby: well i'm feeling a little disoriented. it's just weird for me not to have an advisor. jerry: i can tell you what to do. abby: no, it's more than that. jerry: i can tell you what to think. abby: i need someone i can trust. jerry: oh. george: i got a big problem here, jerry. the tapes are worthless. jerry: kind of in the middle of something here, george. jerry: george? abby: i gotta run anyway. jerry: i can't believe you feel you really need a mentor. abby: i just need someone who can give me some kind of direction. i'll see ya. jerry: yeah, see ya. jerry: what's your problem. george: no problem. eddie: hey, i think i got something here. the bengalese galoshes. elaine: oh. eddie: (reading) it's tough keeping your feet dry when you're kicking in a skull. elaine: you know, eddie, that might be just a tad harsh for womenswear. eddie: well, i'm not married to it. eddie: dewy meadow. estelle: here's your omelet. frank: it's dry. estelle: that's the way i always make it. frank: well it sucks. estelle: what did you say? frank: your meatloaf is mushy, your salmon croquettes are oily and your eggplant parmesan is a disgrace to this house! estelle: well that's too bad, because i'm the only one who cooks around here! frank: not any more! gimme that spatula! i'm back, baby! abby: and you're sure with your busy schedule you'd have time to take on a protg? george: i'll make time, because abby, i was once like you; wide-eyed, naive, i didn't know the first thing about a subject as fundamental as risk management. abby: i'm not familiar with that, you'll have to explain it to me. george: i'll tell you what, why don't you read this book and let's just see if you can explain it to me. abby: alright. george: okay. bania: hey jerry. jerry: oh, hey bania. bania: didja hear what happened? the mentor saw my act. she dumped me. jerry: oh, that's too bad. bania: maybe she's right. maybe i am a complete hack. i'm the absolute worst. the worst, jerry. jerry: well it's just that you got so many things with the milk. you got that bosco bit then you got your nestl's quik bit, by the time you get to ovaltine-- bania: you think you can give me a hand with my material? kramer: hey. frank: you still need a cook? kramer: oh yeah, come on in, frank. frank: ya got t-fal? kramer: keflon. frank: no! follow me. bania: (reading) why do they call it ovaltine? the mug is round. the jar is round. they should call it round tine. that's gold, jerry! gold! elaine: let's just replace "hail of shrapnel" and "scar tissue" with "string of pearls" and "raspberry scones". jerry: george costanza is your mentor? abby: yeah, he's great! i am learning so much. jerry: about what? how to calculate five percent of a restaurant check? abby: you know what your problem is? you just have no respect for the mentor/mentor relationship. jerry: as a matter of fact, i happen to have a protg of my own. abby: who? jerry: a mister kenneth bania. abby: bania? jerry: i'm gonna mentor this kid to the top. abby: huh, well, i don't think i want to date a mentor whose protg is a hack. jerry: well, i don't think i want to date a protg whose mentor is a costanza. elaine: i don't know how we did it, but there's some kind of chemistry between us, we turned out one hell of a catalog. eddie: cool. elaine: hey ed, let me ask you something. what's with the fatigues and all the psychotic imagery? huh? eddie: i don't want to talk about it. elaine: come on, don't be a baby. eddie: i went out on a couple of dates with this woman, i thought she really liked me, and then things kind of cooled off. elaine: that's it? eddie: well it's tough meeting somebody you like, let alone somebody jewish. elaine: mm. this food is fantastic. jerry: have you tried the hamentashen? elaine: i can't get off the kishkas. bania: hey jerry! jerry: bania? bania: i just stopped by to thank you. that risk management stuff you wrote for me? it's killer! jerry: risk management? bania: aw, it's gold, jerry! gold! i got all these corporate gigs and even cynthia took me back. woman: so you went from the mailroom to the director of corporate development in two days? eddie: that's right. woman: how much are they paying you? i'll double it. kramer: ya know these latkes are going like hotcakes. frank: where's the powdered sugar? kramer: you know frank, you could take a break. frank: no breaks. i fell reborn, i'm like a phoenix rising from arizona. elaine: you're quitting? eddie: i can't churn out that pointless drivel any more. elaine: well, you can't quit, you're all i've got. i need you! voice: our next speaker is george costanza on the subject of risk management. george: ovaltine. have you ever had this stuff? why is it called ovaltine? george: they should call it round tine. you know what i'm talking about. wilhelm: (proudly, to the man seated beside him) he's my protg. frank: noooo!!! don't eat it! no good!" jerry: hey, have you seen all these new commercials for indigestion drugs? pepcid ac, tagemat hb. elaine: ugh, the whole country's sick to their stomach. jerry: now, you know you're supposed to take these things before you get sick? elaine: what is this, a 'bit'? jerry: no. elaine: 'cos i'm not in the mood. jerry: we're just talking. is this not the greatest marketing ploy ever? if you feel good, you're supposed to take one! elaine: yeah, i know that tone. this is a bit. jerry: they've opened up a whole new market. medication for the well. elaine: (tired) alright, are you done with your little amusement? jerry: (hopeful) then you admit it was amusing? elaine: it was okay, but move the 'medication for the well' to the front, and hit the word 'good' harder. jerry: (thinking) great. thanks. elaine: so, your firm designed all the furniture in here? brett: we manufacture it. the original designs are by karl farbman. elaine: (as if she knows) oh, farbman. brett: you know farbman? elaine: mm, love farbman. brett: most people go their whole lives without sitting in a farbman. elaine: wuh, if you call that living. (laughs) ahaha. elaine: wouldn't it be great if farbman designed shoes? elaine: brett? don't you think that would be great? elaine: brett? brett: (still staring off) after the song, babe. elaine: huh? brett: the song. jerry: so when do i meet this jerk? elaine: he's not a jerk, jer. he only works with karl farbman. jerry: who? elaine: (dismissive) i dunno, some designer. anyway, brett is so generous, and sensitive. last night he was moved just listening to a song. jerry: what song? elaine: desperado. jerry: desperado? elaine: uh huh. jerry: and you're still dating him? i tell you who sounds a little desperado. jerry: (pointing toward the guy) see that salesman, twirling that umbrella. elaine: uh huh. jerry: i invented that. elaine: that, had to be invented? jerry: when i started out as a comedian, i sold umbrellas. it was my idea to twirl it, to attract customers. elaine: (skeptical) oh hoh, really? well, why don't we ask him about it? jerry: elaine. elaine: excuse me. hey, how you doing. uhm, my, uh, friend here says that he invented that little twirl you're doing. jerry: elaine, please, it was a long time ago. the man doesn't want a history lesson. clicky: teddy padillac came up with this twirl. elaine: (looking at jerry) ohh. jerry: i know teddy padillac. i worked with him on forty-eighth and sixth. clicky: yeah, that's where he come up with it. jerry: in his dreams. elaine: alright, can we (glances at her watch) go? jerry: (to clicky) by the way, you're doing it too fast. you'll disorient the customers. jerry: it's the twirling that dazzles the eye. george: (pulls a face) i find it disorienting. who buys an umbrella anyway? y..you get 'em for free in the coffee shop in the metal cans. jerry: (as if speaking to a moron) those belong to people. kramer: hey. well. (proffers the envelope) this was downstairs for you. ker-ching. jerry: (taking the envelope) oh no, not more checks. they're coming faster than i can sign 'em. george: what checks? kramer: oh, you didn't hear? jerry's a big star in japan. jerry: i don't know why. there's a one-second clip of me in the opening credits of some japanese comedy show. kramer: yeah, the super terrific happy hour. jerry: (opening the envelope and pulling out a stack of checks) they run it all the time, and now i'm starting to get all these royalty checks. george: look at all of those! you're rich! jerry: naw. each one is for like twelve cents. it's barely worth the pain in my hand to sign 'em. kramer: hey, jerry, you need any new furniture? jerry: why? kramer: (getting a bottle of water out of the fridge) yeah, well, elaine's new boyfriend, you know. he's giving me this oversize chest of drawers. it's a farbman. george: he's giving you furniture? who is this guy? jerry: ah, who are any of her losers? george: (dryly) you're on that list. george: alright, i gotta go home and open up with the house for the carpet cleaners. you know they're doing my whole place for twenty-five dollars. kramer: oh, no, no, no. not the sunshine carpet cleaners? ego: yeah, you heard of 'em? kramer: they're a crazy religious cult. the carpet cleaning is just a means for them to get into your apartment. george: so? for a twenty-five dollar cleaning, i can listen to some pointless blather. jerry: i do it, i'm not even getting the cleaning. jerry: signed over a hundred checks this morning. kramer: hello, twelve dollars. mr oh: excuse me. would you take picture please? kramer: (takes camera) oh, yeah, sure. jerry: i'm gonna ask this guy something. jerry: (to umbrella guy) hey. nice twirl you got there. you know who invented that, don't you? kramer: (to tourists) hey, are you folks from japan. mr yamaguchi: hai. mr oh: yes. kramer: (points over to jerry) you recognise that mug? kramer: that's the funny face that greets you at the beginning of the super terrific happy hour. mr oh: ahh, super terrific happy... kramer: ah, yeah. yeah, that's him. mr oh: what is he doing? kramer: well, i don't know. but something super terrific, i'm sure. mr oh: he's funny. kramer: oh yeah, very funny. and it wouldn't be impolite to laugh at his antics. kramer: yeah. yeah, that's it. because everybody laughs at jerry here in america. crew leader: (calling to george) we're pretty much finished. crew leader: there's just one more thing. george: (smiling expectantly) here it comes. crew leader: (clears throat) you forgot to sign your check. george: (signs) sorry. (expectant) you're sure, uh, there isn't anything else? crew leader: (flat) no. george: (let down) so, that's it? crew leader: unless you need a receipt. george: (melancholy) i wish that was all needed. life can be so confusing. i..i'm searching for answers, anywhere. crew leader: (flat) good luck with that. jerry: hey. elaine: what's with the claw? jerry: super terrific carpal tunnel syndrome. brett: (to elaine) there's no sign of kramer. elaine: oh, brett. (indicating) this is jerry. jerry: hi. brett: that's very funny. elaine told me you were some kinda comedian. jerry: ah, i'm one kind. elaine: have you seen the chest of drawers that brett gave to kramer? jerry: the fleckman. brett: farbman. jerry: right. elaine: you gotta see 'em. beautiful. jerry: (not interested) oh, i'm sure they are. brett: i'd be happy to get you some if that's what you're driving at. jerry: no. i'm fine, thank you. brett: don't worry. it's no charge to you. brett: looks like what you really need is a decent desk for writing your skits. jerry: (quiet annoyance) i don't write skits. brett: (walking back to elaine) well, of course you don't. you don't have a proper workstation. i'll fax you over my catalogue. elaine: mmm. brett, uhm, jerry doesn't have a fax machine. brett: (quiet) oops. brett: well, i'm sure things'll pick up for you soon. elaine, maybe we should get going. elaine: oh. jerry, you wanna join us? jerry: oh, where you going? the coffee shop? brett: (scoff) coffee shop? i think we can do a little better than that. you look like you could use a solid meal at a real restaurant. jerry: you look like you could use a... elaine: (warning) jerry. kramer: (reads) three hundred dollars. hey, mr oh, how much would these run you in tokyo? mr oh: (thinks for a second) ahh, about, uh, thirty thousand yen. kramer: (shocked) thirty thousand?! these are practically free. kramer: giddyup. you're a cowboy now. brett: i feel terrible about your friend jerry. he's upset that i gave kramer that chest of drawers, isn't he? elaine: why? why d'you think he's upset? brett: how could he not be? living in that cramped little apartment. and outdated furniture, so terribly... un-karl farbman-like. elaine: (romantic) we're not gonna talk about karl farbman all night, are we? brett: (smiling) i hope not. elaine: (surprised) brett? everything alright? elaine: (worried) brett! what is it? is there someone outside? brett: elaine, the song. elaine: (relieved) oh. oh, oh, phew. you know, for a minute there i thought it was like that urban legend about the guy with the hook who's hanging on the fender... brett: elaine, could you just not talk for one minute? elaine: (apologetic, silently mouthed) sorry. jerry: no spiel? george: (annoyed) not a peep. they just cleaned the carpets and left. call themselves a cult! jerry: so you're angry that this bizarre carpet cabal made no attempt to abduct you? george: they could've at least tried! jerry: you know, maybe they thought you looked too smart to be brainwashed? george: please. jerry: too dumb? jerry: (impressed) well! mack is back in town! nice duds. kramer: konichi-wa. yeah, it's a gift from my japanese friends. (sits beside jerry) they're known as gift-givers. and tonight we're going dancing at the rainbow room. jerry: sounds like you're throwing a lot of their money around. kramer: well, jerry, they're japanese. i mean, that tv you watch, that sushi you eat, i mean, even that kimono you wear. where to you think all that money goes, hmm? kramer: that's right. george: how'd you hook up with these guys? kramer: well, they recognised jerry from the super terrific happy hour. see now, you should be doing your own show in japan. now, they get you. jerry: what kind of show am i gonna do in japan? kramer: (to george) alright, what'd you do with that pilot you did. george: (excited) yeah, the pilot! kramer: that's right, i think that had marvellous production values. george: (enthusiastic) and, you know, i do a lotta business with japanese tv. they broadcast a lot of american baseball. they got an office here in new york! jerry: forget it! the pilot was awful. it failed. george: (animated) it failed here! because, here, every time you turn on a tv, all you see is four morons sitting round an apartment, whining about their dates! kramer: george is right, jerry. see, here, you're just another apple, but in japan, you're an exotic fruit. like an orange. which is rare there. tv jerry: you had a date? you went out with my butler?! who said you could go out with my butler?! tv elaine: well, why do i need your permission? tv jerry: because he's my butler. george: (eager) so? what d'you think? executive 1: we're bit confused. why was this man jerry's butler? george: ah. you see, the man who was the butler, uh, had gotten into a car accident with jerry, and because he didn't have any insurance, the judge decreed that the man become jerry's butler. executive 1: is this customary in your legal system? jerry: no. that's what makes it such a humorous situation. executive 1: (speaks japanese) subtitle are you following any of this? executive 2: (speaks japanese) subtitle i'm still trying to figure out why they gave us a bag of oranges. executive 1: (to jerry and george) i'm sorry. i'm sure mr seinfeld is very funny to americans, but i'm not sure this butler show would work in japan. george: oh, i, uh, i disagree. you've, uh, you've been living in america too long. (indicates the bag of oranges) you've forgotten what it's like to have no oranges. executive 1: (speaks japanese) subtitle again with the oranges jerry: (flexing his fingers) sorry. my hand is numb. george: (positive) yes. from endorsing checks for the super terrific happy hour. (laughs) executive 1: you must go now. elaine: ah, i think i'm on the outs with brett. i got shushed during desperado. jerry: (throws out his hands) what does he listen to? the all desperado station? elaine: he is just in his own world when he hears that song. it's like, i'm sitting there in the car, and he's.. out riding fences. jerry: you know, what you need is a song you can share. elaine: yes. you're right. we need to find 'our' song. jerry: okay. so, is there any song that you feel very strongly about? elaine: (points) i like witchy woman. jerry: witchy woman? elaine: you know, witchy woman. (sings) 'ooo-ooh, wit-chay woman'. jerry: (getting it) ahh. wit-chay woman. kramer: (to jerry) hey, man. elaine: hey. jerry: hey. how was the rainbow room? kramer: uh, well, we, uh, we had to leave early. there was a, uh, slight monetary discrepancy regarding the bill. jerry: ah. kramer: uh, listen, uh, can i borrow some pillows? jerry: what for? kramer (o.c.): yeah, well, uh, my japanese friends're gonna stay with me. jerry: i thought they all had suites at the plaza? kramer: well, i'm sorry, jerry, we all don't have checks rolling in like you do. jerry: well, what about all that money from the kimonos i wear? kramer: well, they ran out of it. manhattan can be quite pricey. even with fifty thousand yen. elaine: fifty thousand yen? isn't that only a few hundred dollars? kramer: evidently. (to elaine) oh, by the way, tell brett that his chest of drawers are a big hit. my guests are very comfortable in them. elaine: in them?! jerry: you have them sleeping in drawers?! kramer: jerry, have you ever seen the business hotels in tokyo? they sleep in tiny stacked cubicles all the time. they feel right at home. jerry: this has 'international incident' written all over it. kramer: (smiling) oh yeah, yeah. kramer: goodnight, mr tanaka. mr tanaka: goodnight. kramer: goodnight, mr oh. mr oh: (sits up) goodnight. kramer: goodnight, mr yamaguchi. mr yamaguchi: (sits up) oyasuminasai *(japanese for goodnight) jerry: what is this? kramer: rice crispies. east meets west, jerry. jerry: ah. it's a lovely little bureau and breakfast you're running. well, i'm off to the bank. kramer: (opening the fridge) sayonara. jerry: (leaving) konichi-wa. brett: elaine, i... elaine: shh-shh! (smiling) what d'you think? elaine: what are you doing? that's witchy woman. that could be our song. brett: witchy woman is okay for you, but i've already got a song. elaine: oh. oh, then how about desperado? (smiling) we can share it. brett: (flat) no. it's mine. kramer: here you go. snap, crackle and pop. kramer: (loudly) good morning, mr oh. i gotta make up the drawer. mr oh (o.c.): ach, come back in half hour. jerry: (calls) hey, i'll take one. clicky: well, look who's back! clicky: teddy! (indicates jerry) this's the guy says he invented the twirl. teddy: (unfriendly recognition) jerry seinfeld! jerry: teddy padillac. long time, no see. (pointing at the umbrellas) what've you got in a push-button mini. teddy: (bitter) same thing we had, when you bailed on us, fifteen years ago. jerry: bailed? c'mon, you knew i wanted to be a comedian. besides, we had some good time. remember tropical storm renee? teddy: (angry) oh, yeah, sure. but where were you during the poncho craze of eighty-four? i almost lost my house. clicky: umbrella, buddy? clicky: now we got that damn 'urban sombrero' to contend with. teddy: (to clicky) easy, there. (to jerry) i hear you're taking credit for the twirl. jerry: aw, it was so many years ago. who cares? teddy: (intense) i care. clicky cares. jerry: so, could i... jerry: could i just buy an umbrella? teddy: (sour) yeah, sure. two hundred dollars. jerry: (shock) what?! teddy: (caustically) special price, for a real foul-weather friend. kramer: hey, george. how about that tour, huh? these guys are ready to run the bases. george: (indicating the window) kramer, it's, it's raining. they got the tarp on the field. kramer: (quietly) ah, listen, george, what else can i do with these guys? now, bear in mind, they're a little light on the yen. george: well, i, i got the pilot of the jerry show. kramer: (snaps his fingers) that's perfect. (to the japanese) hey, how would you guys like to watch super terrific happy star jerry seinfeld? mr oh: but, we are also very hungry. kramer: oh, yeah, yeah. (feeds tape into vcr) well, you guys just watch the tape and, uh, i'll get you some food. kramer: (shouts) hey, peanuts! wilhelm: george. (waves george over) george. wilhelm: (puzzled) uh, george, uh, did you call some carpet cleaners? george: are they here? wilhelm: they're in my office, right now. george: (suspicious) they haven't said anything to you, have they? wilhelm: about what? george: (to himself, resentful) what kind of a snobby, stuck-up, cult is this?! brett: (calls over) hey jerry! jerry: oh, hi brett. brett: haven't you ever heard of an umbrella? jerry: ah, i didn't have enough money. brett: i'm sure things'll pick up for you. jerry: no, it's not that, it's the... jerry: oh no, look at the checks! hours of hard work ruined! brett: ah, don't worry, i can spot you the (reads) twelve cents? jerry: no, it's not the money. it's my hand. it's crippled from writing and writing. brett: nothing's working for you, is is? jerry: (bitter) not at the moment, brett. brett: i'd give you a ride, but i got karl farbman here. jerry: (sarcastic) thanks for stopping! elaine: brett said you ran away from him, as if he were the boogetyman. jerry: boogeyman. elaine: boogey? jerry: i'm quite sure. anyway, any luck getting together on a song? elaine: no. he blew out my witchy woman, and he won't share desperado. hey, what d'you think of oye como va? jerry: (negative) eehh. elaine: (desperation) well, i'm running outta guys here in this city, jer! jerry: hey. george: (excited) great news! i showed the pilot to kramer's japanese friends. they loved it! jerry: really? they bought the butler character? george: (excited) did i tell you that story's relatable?! that was a great show! that is why i'm bringing it back to nbc. jerry: nbc? george: (little subdued) nakahama broadcast corporation. jerry: ah. but they told us we must go now. george: but now i have my own market research. actual japanese viewers, that love the show! i'm gonna talk to kramer. jerry: hey, george, do me a favour. if they make you an offer, whatever it is. (vehement) just take it! george: hey, by the way, what'd you think of miss yoshimura? jerry: who? george: the network executive. you think she liked me? kramer: heyy! look who's here. kramer: (beckoning to george) come on, i want you to come in here. mr oh: come on in, fat boy! george: get a good night's sleep, alright fellas. (thumbs up) big day tomorrow! jerry: (to himself) last one. jerry: (agonised) uugh! ahh. kramer: there you are. george: uh. (smiles) where's the boys? kramer: uh, no, i let 'em sleep in. kramer: i'm on my way to cash in their plane tickets for them. they need a little food money. george: (horrified) but that meeting starts in ten minutes! kramer: no, well, i set their alarm. but they did have a lot of sake in that hot-tub. george: (frantic) i'm calling jerry. jerry: yeah? george: (panicked and rushed) jerry! the japanese guys had sake in the hot-tub! you gotta get 'em outta the drawers and get 'em down here, or i don't have a focus group to sell the pilot to japanese tv! jerry: (kidding) uncle leo? george: (scream) jerry!! jerry: alright, alright. i'll wake 'em up. jerry: (to himself) hmm, testy. jerry: hello? mr oh (o.c.): mr jerry! open the drawer, please! jerry: it's stuck. (pained) oww! the steam from the hot-tub musta warped the wood. mr oh (o.c.): pull harder. jerry: i'm trying. i can't get a grip. my hand's had kind of a bad week. mr oh (o.c): very funny, but no joking, please. jerry: (looks round) don't worry, i'll get you out. elaine: brett, believe me. you don't have to do this. brett: elaine, i know he'll appreciate this. granted, it's not as nice as kramer's cabinet, but it's start. elaine: uh, i promise you, jerry is not jealous of kramer's cabinet. jerry (o.c.): (yell) move to the back of the drawers! elaine: jerry? elaine: jerry. brett: (shouting) not the farbman!! mr oh: (speaks japanese) subtitle jerry seinfeld is a dangerous lunatic. he wouldn't let us out of the drawers. then he came at me with an axe. executive 1: (speaks japanese) subtitle we suspect his friend here is also unbalanced. george: so, uh, gentlemen, do we have a deal? mr oh: (speaks japanese) subtitle could we have a couple of those oranges? mr oh: (speaks japanese) subtitle we are very hungry and have survived many hardships. george: (to the executives) excuse me. did you hire the sunshine carpet cleaners? executive 1: yes. cleaned up the (points) coffee stain, left by jerry seinfield. george: mr wilhelm? wha..what're you doing here? wilhelm: i'm here to clean the carpets. most of the world is carpeted. and, one day, we will do the cleaning. george: (incredulity) him you brainwashed! (angry shout) what's he got that i don't have?! george: (urgent) mr wilhelm, listen. you've been abducted! please, mr wilhelm, you gotta listen to me! wilhelm: wilhelm? (he raises the nozzle of his cleaner) my name is tanya. executive 1: (speaks japanese) subtitle with these two idiots i don't know how the yankees won the world series. jerry: (apologetically) brett, i'm, i'm really sorry. i didn't mean to hit you in the head with.. an axe. jerry: (defensive) at least it was just the handle! brett: it was a beautiful cabinet. what am i gonna tell... brett: i can't remember his name! jerry: fleckman? elaine: calm down brett, okay. you could have a concussion. calm down. (holds brett's head and sings) 'desperado, mmm-mm-mmm. you better...' elaine/jerry: (singing) '...let somebody love you. let somebody love you, before it's too...' nurse: his pulse is fine. doctor: hmm. looks like a minor concussion. let me see what i can do to relieve the swelling. nurse: doctor? nurse: (concerned) doctor? nurse: (worried) doctor? nurse: (alarm) doctor, i think we're losing him! george: dollar eighty-nine. why is this a dollar eighty-nine? why is there no haggling in this country? jerry: i guess we like to think we've progressed beyond a knife fight for a citrus drink. george: not me. everything should be negotiable. (he picks up a container of fruit) jerry: restaurants too? george: absolutely. you're telling me there's no room to move on pasta. all starches are a scam. jerry: yea especially ziti, with that big hole. george: ahh, excuse me, how much is this? worker: dollar nineteen. george: i'll give you a quarter. worker: get the hell out of here. jerry: tell him forty and no fork. george: thirty. worker: that's it you leave and never come back! jerry: how about we leave and, come back in a week? worker: deal! (turns and walks into the market) george: alright see? we got something there. kramer: awe check it out. jerry: wow. kenny rogers roasters. finally open. hey, look at the size of that neon chicken on the roof. kramer: roger's can't sell chicken around here, we got chicken places on every block. jerry: he is the gambler. kramer: well, (rubs hands) i gotta meet newman at the pet store. helping him pick out a turtle. jerry: try and stay calm. kramer: yea, yea. man: hey jerry. jerry: seth! wow what has it been like five years? seth: at least. jerry: you wanna grab lunch? seth: ah, i'm actually headed back to the office. jerry: seth, it's me. what's more important than catching up with an old college buddy? seth: well i am, supposed to be in this meeting. jerry: blow it off. remember poli sci? how many of those did we go to? seth & jerry: alright, alright. jerry: hey whatever happened to moochie? seth: he's dead. jerry: is that right? george: you know i still don't know how you can call lunch with me a business expense. elaine: what do you think of the catalog? george: it stinks. elaine: there, we just talked business. sales woman: we do have the down comforter and the cookware you liked. elaine: oh great, put it all on the peterman account with the other stuff. sales woman: you know what else we have that you might like? elaine: i'll take it. george: hey, you like? sales woman: i think it looks very nice on you. george: really? (feeling flattered) sales woman: hmm. george: elaine, huh... peterman account? elaine: why not? (to the sales woman) and some hair for my little friend here. seth: so how's your stand up career? jerry: good, as a matter of fact. i almost had my own show in japan. seth: do you speak japanese? jerry: no seth: so you would have done it in japan, but in english. jerry: i don't know. so what's this job of yours? seth: big investment firm. jerry: mmmm. seth: we just got the citibank account. in fact today was our first big meeting with them. jerry: the, the meeting you blew off? seth: yea. jerry: wasn't that kind of important? seth: yea. elaine: ...and i brought i whole new set of cookware, and a water pik. jerry: you use a water pik? elaine: sure. water pik, floss, plax, brush, listerine. jerry: so you go in the bathroom at eleven your in bed by what, two? elaine: well, at the latest. oh hang on a second, i gotta another call. elaine: hello? man: good day ms. benes. its roger ipswitch. elaine: oh hey! how things doing in accounting? roger: ms. benes, i notice youve been charging quite a bit of merchandise on the peterman account. elaine: well, i am the president. roger: yes, and we're all very impressed. never the less, the expense account is for business purposes only. elaine: well, well isn't the president allowed to do anything that they want? roger: no. i'll be in your office first thing tomorrow. good day. (hangs up the phone) elaine: good day. jerry: hello. anybody? george: hey. jerry: hey. why didn't cha get the big one? george: this hat just bottles in the heat, i -i don't even need a coat! it's unbelievable! jerry: i don't believe it. george: ah, and i got a date with the sales woman. she's got a little marisa tomei thing going on. jerry: ahh, too bad you got a little, george costanza thing going on. george: i'm going out with her tomorrow, she said she had some errands to run. jerry: that's a date? george: what's the difference? you know they way i work. i'm like a commercial jingle. first it's a little irritating, then you hear it a few times, youre hummin it in the shower, by the third date it's (sings) "by mennen!". jerry: how do you make sure your gonna get to the third date? george: if there's any doubt, i do a leave-behind. keys, gloves, scarf -- i go back to her place to pick it up...(pop sound) date number two. jerry: that is so old. why don't you show up at her door in a wood horse? jerry: (sings theme) "by mennen." what the?... jerry: what's going on in there? kramer: what? jerry: that light! kramer: oh the red. yeah, its the chicken roaster sign. you know, its right across from my window. jerry: can't you shut the shades? kramer: they are shut. oh by the way, your friend seth, he stopped by. jerry: oh yeah? what'd he have to say? kramer: yeah, he was fired. elaine: well, as you can see the comforter i expensed is actually the aristotle goose down tunic. (laughs, modeling the comforter) what do you think? roger: another bulls eye. elaine: hmm. well mr. ipswitch since everyone of my expenses was obviously for a legitimate business purpose. roger: i just need to see the sable hat you purchased yesterday. elaine: the hat? why do you need to see the hat? roger: it costs eight-thousand dollars. elaine: what? elaine: ohh. (trying to control the water pik and shut it off.) jerry: seth, if you knew the meeting was so important why did you go the lunch with me? seth: we're old college buddies. jerry: i only knew you through moochie. seth: hey jerry don't worry about it all right. the important thing is, is we got to catch up. mind if i ah, grab the want ads? jerry: um, actually i haven't read tank mcnamara yet. (takes the paper back) jerry: how's life on the red planet? (shuts door) kramer: its killing me, i can't eat, i can't sleep. all i can see is that giant red sun in the shape of a chicken. (gets some cereal from the cubard and pours it in a big bowl) jerry: well, did you go down to the kenny rogers and complain? kramer: ah, they gave me the heave ho. you know, i don't think that kenny rogers has any idea what's going on down there. jerry: what are you doing? kramer: getting some cereal jerry: that, that's tomato juice. kramer: that looked like milk to me! jerry my rods and cones are all screwed up! alright, that's it. i gotta move in with you jerry. jerry: i don't know kramer, ahh, my concern is that .... jerry: ..living together after a while we... we might start to get on each others nerves a little. kramer: alright listen to me, i got a great idea. now, you're a heavy sleeper, right? why don't we just switch apartments? jerry: or i could sleep in the park? you could knock these walls down, make it an eight room luxury suite. kramer: jerry these are load bearing walls, they're not gonna come down! jerry: yea, that's no good. kramer: i may have to drive that place out of business. jerry: how you gonna do that? kramer: like we did in the sixties, takin' in to the streets. heather: thanks george, but i got it from here. george: oh no i'm in already come on. george: so eh, you eh, wanna get together tomorrow? heather: no, i'm gonna be pretty busy. george: what about this weekend? heather: i'm gonna be busy for a while. george: ok, ah.. (george throws his keys on the table) see ya! heather: hey, you forgot your keys. george: oh, those, those aren't my keys. heather: well they're not mine. george: oh. ha. they are my keys, how weird. (laughs) heather: goodbye george. george: yea bye. heather: george, bye! (picks up phone) hello? you are not going to believe the date i just had. george: (sings) co-stan-za. (like "by mennen") elaine: what do you mean you don't have the hat? george: i left it at heather's. are these alive? (pounding on glass display) elaine: no dead! george, i need that russian hat back! george: alright, alright, i'll call heather, you'll get your hat back, i will get a second date. ha ha ha. now watch the magic. elaine: dial 9- merlin. heather: hello? george: (clears throat) heather hi, it's george costanza. heather: oy! george: ah, listen ah, i don't mean to bother you but ah, silly me, i- i think i may have left my hat in your apartment. so ah, i thought i'd just come by later and pick it up. heather: you didn't' leave a hat here. george: i- i'm pretty sure i left it eh, behind the cushion of the chair ... accidentally. heather: no hat. george i gotta go. george: ah, a, you know what, maybe i'll just come ... umm, yummm (stammering) jerry: seth? seth: jerry hi! what do you think? jerry: i think your taking the trash out for this chicken place, but that couldn't be. seth: yeah, i'm the new manager jerry: but your were an executive, this is fast food. seth: not fast food, good food quickly. hey, next time lunchll be on me, huh jer. kramer: hey, stay away from the chicken. bad, bad chicken, mess you up. seth: that's not going to be good for business. jerry: that's not going to be good for anybody. kramer: jerry im so glad we switched apartments. it was a perfect solution. jerry: look kramer, i-i-if i'm gonna live over there, y-y-you gotta take some of this stuff out. i mean this thing is really freaking me out (holds up a ventriloquist dummy). i feel like its gonna come to life in the middle of the night and kill me. kramer: what, mr. marbles? he's harmless. jerry: and one other thing, i don't want newman using my... jerry: oh no. newman: nice place you got here kramer ... kramer: yeah. newman: ... a man can really get some thinking done. (sits on couch, next to kramer.) jerry: well don't get too comfortable. as soon as seth gets a real job you two are gong back in that chicken supernova. kramer: what is that roger's chicken? oh get that outta here. newman: i don't know. the man makes a pretty strong bird. kramer: well i'm boycotting it. newman: (eating) hm. kramer: what is that, hickory? newman: yea, it's the wood that makes it good. kramer: really? newman: uh-huh. kramer: oh stop it. (he slaps newmans shoulder) whats the matter with you. kramer: mmmmm. heather: can i help you? elaine: hi, yeah, i'm elaine benes, we met at barney's... heather: oh. elaine: ... i'm a friend of george costanza's. (while she is talking, she is dragging george in by pulling his ear) george: hi. elaine: ah, (releases georges ear) whether you're aware of it or not george had this pathetic little plan to, leave something behind so he could weasel a second date. heather: really? elaine: i know, he- he has a real confidence problem. george: well not really... elaine: george... george: ah... (quietly) elaine: ... anyway i know you told him you didn't have the hat because you didn't want to see him again. and, more sympathetic i could not be. but, i really do need to have the hat back. heather: look, i don't know what to tell you, but there's no hat here. i mean, maybe the maid took it, i had people over, but... george: well that makes sense. elaine: well then you wouldn't mind if we took a second look around? heather: be my guest. george: good to see you again. george: she's bluffing... elaine: uhhh... george: ... she's got it stashed away in there somewhere. elaine: this is an absolute disaster. george: oh i don't know. check this out. elaine: you stole her clock? elaine: well done. (pats george on the shoulder) george: yep, this one for our side! jerry: (thinking) what is that creaking, its like i'm in the hold of a ship. gotta relax. jerry: (startled - eyes wide open) hello, is somebody there? (scurrying sound) mr.- mr. marbles? elaine: so i told ipswitch i'd have the hat by this afternoon. what am i gonna do? kramer: you should sleep with him. jerry: hey buddy. i'm on no sleep, no sleep!. you don't know what it's like in there, all night long things are creaking and cracking. and that red light is burning my brain! elaine: you look a little stressed. jerry: oh i'm stressed! (makes like kramer, outstretching his arm. jerry heads for the freezer for some ice cream.) elaine: so kramer what am i supposed to do? if i don't have that fur hat by four o'clock they're gonna take me down like nixon. jerry: you know my friend bob sacamano? elaine: i thought he was kramer's friend. jerry: well, he called last night about 3 a.m. and we got to talking, he sells russian hats down at battery park, forty bucks. elaine: forty bucks? are they sable? jerry: no, but the difference is negligible. kramer: oh yea, i like this idea. (sounding very much like jerry) elaine: alright, lets give it a shot, lets go. jerry: giddee up! newman: it's getting cold, it's getting cold. kramer: that was a close one. newman: well why do we have to keep this from jerry? kramer: because if jerry finds out that i'm hooked on roger's chicken i'm back there with the red menace. ipswitch: ms. benes the hat you charged to the company was sable, this is nutria. elaine: w-w- well, that's a -ah, its kind of sable. ipswitch: no, its a kind of rat. elaine: that's a rat hat? ipswitch: and a poorly made one, even by rat hat standards. i have no choice but to recommend your prompt termination to the board of directors. nothing short of the approval of peterman himself will save you this time. elaine: but, but, he's in the burmese jungle. ipswitch: and quite mad too from what i hear. elaine: wait a minute, wait a minute. can i fire you? ipswitch: no. kramer: so heather called? george: yeah, but get this, the message said 'call me if you have the time'. heh heh if i have the time, you get it? kramer: no, but this is all very exciting. (sounding very much like jerry) george: she knows that i have her clock. i know that she has my hat. i think she's getting ready to make an exchange. kramer: well there is the possibility that you've gone right out of your mind. george: i've looked at that, seems unlikely. kramer: i'd look again. so ah, how come you didn't call jerry about all this? george: jerry, i can't talk to jerry anymore. ever since he moved into that apartment he's too much ... like you. kramer: hmm. that's a shame. jerry: seth, you're the manager, can't you turn off that sign? seth: jerry i lied. i'm just an assistant manager. seth: (on loud speaker) number sixty seven, family feast. newman: number 67, right here, right here! jerry: hello newman. newman: hello jerry. seth: and don't forget your steamed broccoli. jerry: hold it. broccoli? newman, you wouldn't eat broccoli if it was deep fried in chocolate sauce. newman: i love.. broccoli, its, good for you. jerry: really? then maybe you'd like to have a piece? newman: gladly. (starts munching on the broccoli, then spits it out) newman: vile weed! jerry: it's kramer isn't it? i knew it! the greasy door knob the constant licking of the fingers, he's hooked to the chicken isn't he? newman: yes, yes, now please. someone, honey mustard. kramer: newman, what took you... ah hey, hey jerry: expecting newman? that's funny because i just happened upon him down at the kenny roger's roasters. kramer: oh, shh, kenny roger's? whew, boy, i hate that place. jerry: he was buying quite a load of chicken, almost for two people ... kramer: oh jerry: ... as long as one of them is not him. kramer: (laughs) oh hey, you know elaine, ah she stopped by... jerry: uh-ha. kramer: ... yeah dropped off that bob sacamano hat. oh she's ah, upset at him, oh yes siree. yeah well thanks for stopping by. jerry: i sure do miss my apartment. maybe i'll switch back. kramer: oh you don't want to think about that no sir. otherwise i'd have no choice but to put that banner back up and eh, he-he-hwow, run that roger's right out of town. jerry: i don't think you will. as a matter of fact i'll save you the trouble. i'll do it myself. kramer: yeah, yeah go ahead yeah, put the banner up doesn't matter to me. jerry: all right. (opens door - red light floods hallway - a buzzing sound emanates.) kramer: no jerry! i - i need that chicken, i gotta have that chicken. now you leave those roasters alone. kenny never hurt anybody. jerry: you got a little problem. kramer: oh i got a big problem jerry! boy: here, kneel here. elaine: what? boy: kneel. elaine: kneel? peterman: elaine. elaine: mr. peterman. peterman: jaba! bagama ma jaba. olymala hungui. (the boy runs out of the room) elaine: you speak burmese? peterman: no elaine, that was gibberish. elaine: ah. peterman: so did you have any trouble finding the place? elaine: no, you're the only, white poet warlord in the neighborhood. (laughs) peterman: are you an assassin? elaine: i - i work for your mail order catalog. peterman: you're an errand girl, sent by grocery clerks, to collect a bill. elaine: well actually um, i do have a bill here. if you could just sign, this expense form, i think i could still make the last fan boat out of here. peterman: i'd be happy to elaine (he starts reading the form as she hands him a pen)... but i will have to see this hat. elaine: right... (nodding) george: so how do you want to do this? heather: alright george, i'll be honest. the first time we went out, i found you very irritating. but after seeing you a couple of times, you sorta got stuck in my head, (sings) ca-stan-za! (like "by mennen") (laughs) george: so you - you really don't have my hat? heather: what? george: uh, le - let's go do, something. heather: what's in the bag? george: oh that's eh, that's a sandwich. george: ...ah (picks up the bag) damn salami. heather: (grabs the bag) my clock, you stole it! george: that damn delicatessen that - that is last time they screw up one of my orders. jerry: hey seth. man it is coming down hard out there. jerry: oh, gross. that's not gonna be good for business. seth: that's not gonna be good for anybody. kramer: (his mouth is very full) kenny? ... kenny? kramer: (quietly and staring across the street) kenny .... kenny ....... kenny jerry: home at last. ahhhh. (light turns off) jerry: is someone there? jerry: mr. marbles? elaine: this the urban sombrero, i put it on the last catalog cover. peterman: the horror ... the horror. definitions of several items in the chicken roaster episode: nan http: //www.nutria.com/site.php http: //www.nationaltrappers.com/nutria.html george: say you, me, and kramer are, uh, flying over the andes. jerry: why are we flyin' over the andes? george: we got a soccer game in chile. anyway, the plane crashes. who are you gonna eat to survive? jerry: kramer. george: so fast? what about me? jerry: no. george: kramer's so stringy. i'm plump, juicy. jerry: kramer's got more muscle, higher protein content. it's better for you. george: well i would eat you. jerry: that's very nice, i guess. george: i still don't see why you wouldn't eat me. i'm your best friend. jerry: look, if other people are having some, i'll try you. george: thank you. jerry: can i have a piece of that? george: no. louise: george, i can't have sex. george: with me or in general? louise: i went to the doctor today. i have mono. george: nucleosis. louise: oh i hope it's not a problem for you. george: no, no, pff... louise: how long is this not gonna be a problem for me? jerry: six weeks? george: yeah, six weeks. jerry: well, so what? you've gone six weeks before. george: i can do six weeks standin' on my head. i'm a sexual camel. that's not the point. at least there was the possibility. jerry: well, so, are you gonna break up with her? george: i don't know. i don't wanna be one of those guys. jerry: what guys? george: like us. (elaine enters) jerry: yeah. george: so it's just mono. elaine: mono? huh, well, if anyone needs any medical advise, elaine met a doctor. and he's unattached. jerry: i thought the whole dream of dating a doctor was debunked. elaine: no, it's not debunked, it's totally bunk. jerry: isn't bunk bad? like, that's a lot of bunk. george: no something is bunk and then you debunk it. jerry: what? elaine: huh? george: i think. (pause as they all look down) elaine: look it, i'm dating a doctor and i like it. let's just move on. (phone rings) jerry: hello? katie: jerry. jerry: oh hi, katie. katie: listen, something just came up for tuesday at the dayton civic center. that's ohio, jerry. jerry: i've heard of ohio, katie. but tuesday's no good. i'm doin' career day at my old junior high. katie: okay, jerry. that's fine. you're the boss. katie works for jerry. jerry: yes, all right, katie. katie: sorry for the late notice. jerry: yes, bye. katie: you're the-- (he hangs up) george: they asked you to do career day? jerry: yeah, it's no big deal. george: oh with all due respect, i went there too, and i work for a team that just won the world series. jerry: and you were integral. teacher: jerry, it was so nice of you to come down here. jerry: i'm on next, right? teacher: well, unfortunately, mr. o'meary from the bronx zoo... jerry: the guy with the lizard. teacher: yes. well, he started feedin' it crickets, and the children just love him. and we're outta time. teacher: so can you come back tomorrow? jerry: i'm getting bumped? you're bumping me from career day? elaine: so do most doctors like er or do you guys just think it's fake? ben: i couldn't tell you. you know, i'm not really a doctor. elaine: oh, yeah. and i'm not really attracted to you. ben: well, i'm serious, elaine. i went to medical school, but i still have to pass my licensing exam. elaine: when do you take this exam? ben: i've taken it. three times. i almost passed the last one. elaine: well, you're basically a doctor. right? i mean, people do call you doctor. ben: well, um... elaine: well, can i introduce you as doctor? ben: yeah. elaine: all right, that's all i wanted to know. louise: mono. (george removes hand) george: it was fantastic, jerry. we wound up talking all night. jerry: so you're enjoying the not enjoying. george: you know, just by conversing, you can really learn a lot about a person. jerry: i'm finding that out. (kramer enters) kramer: hey, buddy. how was career day? jerry: ah, i didn't get on. the lizard guy went long. george: you got bumped from career day? jerry: it was a mix-up, i'm sure. kramer: they're trying to screw with your head. jerry: now why would a junior high school want to screw with my head? kramer: why does radio shack ask for your phone number when you buy batteries? i don't know. george: hey, hey. kramer, what are you doing? you can't smoke in here. kramer: no, come on. (larry the cook comes over) larry: take it outside. kramer: come on, larry. you know me. larry: it bothers people, and it's against the law. jerry: you can make all the laws you want, he's still gonna bother people. kramer: what, did they kick you out too? man: yeah, they kicked us all out. teacher: thanks so much for coming back, jerry. care for a graham cracker? jerry: no, let's just do it. (fire alarm goes off) what? what is going on? what is that about? teacher: fire drill. sorry. single file everyone! jerry: but i was promised this slot. teacher: single file, jerry. (jerry joins the line) jerry: fire drill, can you believe that? george: what is pericles? alex trebek: pericles is correct. jerry: like fire in a school is such a big deal. (kramer enters) kramer: hey, you got any matches? jerry: middle drawer. george: who is sir arthur conan doyle? alex trebek: we were looking for 'who is sir arthur conan doyle.' kramer: thanks. (kramer leaves, phone rings) jerry: hello? katie: jerry. jerry: oh hi, katie. katie: i heard what happened to the junior high. they can't bump you like that. that is so unprofessional. jerry: oh relax, katie. it's not a problem. george: what is borax? alex trebek: yes, you're right. katie: they bump you in junior high, the next thing you know you're being bumped in high schools, colleges, trade schools. before you know it, letterman's not returning your calls. (kramer enters) kramer: ashtrays? jerry: no, i don't have any ashtrays. kramer: ooh, cereal bowls. katie: jerry, now don't freak out, i'll take care of it. jerry: no, katie, don't-- (he hangs up phone) kramer: all right, thanks. (kramer leaves) george: what is tungsten or wolfram? alex trebek: we were looking for 'what is tungsten, or wolfram'. jerry: is this a repeat? george: no, no, no. just lately, i've been thinking a lot clearer. like this afternoon, (to television) what is chicken kiev, (back to jerry) i really enjoyed watching a documentary with louise. jerry: louise! that's what's doin' it. you're no longer pre-occupied with sex, so your mind is able to focus. george: you think? jerry: yeah. i mean, let's say this is your brain. (holds lettuce head) okay, from what i know about you, your brain consists of two parts the intellect, represented here (pulls off tiny piece of lettuce), and the part obsessed with sex. (shows large piece) now granted, you have extracted an astonishing amount from this little scrap. but with no-sex-louise, this previously useless lump, is now functioning for the first time in its existence. (eats tiny piece of lettuce) george: oh my god. i just remembered where i left my retainer in second grade. i'll see ya. (he throws finished rubik's cube to jerry and he exits. kramer enters) kramer: need some more matches. jerry: what is goin' on in there? kramer: i met some people smoking on the street, so i invited them up to my apartment to smoke. jerry: why? kramer: well somebody had to. you know, just because a person's a smoker, that doesn't mean he's not a human being. jerry: it doesn't? kramer: well you can confine them, you can punish them, you can cram them into the corner, but they're not going away, jerry. jerry: all right. kramer: yeah. elaine: so when they're handing you those cadavers, do you get to choose whether it's a man or a woman? ben: i dunno. dead bodies really gross me out. (sue ellen mischke enters with a man) elaine: oh my god. ben: what's wrong? elaine: it's sue ellen mischke, this old braless friend i hate. (elaine tries to cover her face) sue ellen: elaine? hi. elaine: oh hi, sue ellen. sue ellen: oh rick, this is an old, old, friend of mine, elaine benes. rick is a periodontist. he does giuliani's gums. elaine: well, this is my boyfriend, doctor ben gelfen. ben: well, i'm an intern. elaine: hey, stop kidding me. he's a doctor. he's a very good doctor. woman: carlitto's just passed out. can anyone help? elaine: well, there's a doctor right here. ben: no there's not. elaine: can't you at least tell him what to do? ben: like what? sue ellen: shouldn't he elevate his legs? ben: right. elevate your legs! elaine: i hope carlitto feels better. ben really wishes he could've helped. larry: i thought he was a doctor. elaine: oh he is. kind of. i mean, i call him doctor. (she walks away and sees george sitting down reading books) george. (he holds up his hand to signal her to wait a second.) george: of course. absolute zero! elaine: what? what is with all these books? george: i stopped having sex. kramer: all right, i'll see ya bill. all right, i got room for two, but the only thing i have is in the non-filter section. (jerry enters) hey. jerry: hey. wh-what'd you got, a smoker's lounge in there? kramer: oh yeah, people really seem to be enjoying themselves. you know, they come in once, it's like they're addicted. (katie enters) katie: jerry, oh there you are. you didn't answer the phone. jerry: i was out. katie: oh. jerry, great news. i got you an assembly. jerry: an assembly? katie: two hours in front of the entire junior high, grades six through eight. that's six grade, seventh grade-- jerry: i understand. but what am i gonna talk about for two hours? katie: and, it is already in the school paper. they cancelled rick james. jerry: superfreak? katie: yes. elaine: what is your answer to number 74? ben: medobolic acidosis. elaine: no! hypocalimia, not medibolic acidosis. duh! ben: man, i'm never gonna pass this thing. elaine: oh yes you are. we'll just stop having sex. george: guys, hitting is not about muscle. it's simple physics. calculate the velocity, v, in relation to the trajectory, t, in which g, gravity, of course remains a constant. (hits a home run) it's not complicated. jeter: now who are you again? george: george costanza, assistant to the traveling secretary. williams: are you the guy who put us in that ramada in milwaukee? george: do you wanna talk about hotels, or do you wanna win some ball games? jeter: we won the world series. george: in six games. jerry: ...so if you like to tell jokes, and love to make people laugh, stand-up comedy may be the career for you. george: nine minutes. jerry: how am i gonna fill two hours? george: hello? i can take an hour off your hands. give the kids a chance to see a real live yankee. jerry: and give you the chance to see some real disappointed kids. (waitress comes to table) waitress: more coffee? george: excuse me, darling, do i detect a portuguese accent? waitress: si george: das kaffes un salat e grand por favor. waitress: mute pragalas senor george: eh, don't mention it. elaine: portuguese? george: yeah, my cleaning lady's portuguese. i must've picked it up. elaine: how come he's gettin' so smart? i stopped having sex with ben three days ago and i don't know no portuguese? jerry: are you all right? elaine: i don't know. it's just the last coupla days my mind has been, not good. jerry: wait a second, i know what's happening. the no sex thing is having a reverse effect on you. elaine: what? what are you talking about? jerry: to a woman, sex is like the garbage man. you just take for granted the fact that any time you put some trash out on the street, a guy in a jumpsuit's gonna come along and pick it up. but now, it's like a garbage strike. the bags are piling up in your head. the sidewalk is blocked. nothing's getting through. you're stupid. elaine: i don't understand. jerry: exactly. kramer: hey buddy. jerry: hey. kramer: hey, you should come over. tonight's pipe night. jerry: what? what happened to your face? it looks like an old catcher's mitt. kramer: what? (kramer checks it out.) my face is all craggly, it's crinkly. jerry: it's from all that smoke. you've experienced a lifetime of smoking in 72 hours. what did you expect? kramer: emphysema, birth defects, cancer. but not this. jerry, my face is my livelihood. everything i have i owe to this face. jerry: and your teeth, your teeth are all brown. kramer: look away, i'm hideous. elaine: hey, ben. i need a four letter word. winnie the blank. ben: pooh! elaine: pooh...(laughing) ben: no, it's winnie the pooh. louise: so the hospital called, turns out some stupid intern screwed up my test. i never had mono. so we can... you know. jerry: so what did you do? george: i told her i would have to think about it. jerry: but ultimately, you're gonna choose in favor of sex, right? george: i don't know. perhaps i can better serve the world this way. jerry: you mean, not subjecting yourself to your sexual advances. george: simple joke from a simple man. jerry: so you're never gonna have sex again? george: well, jerry. there was a pretty good chance i was never gonna have sex again anyway. jerry: so you ready for the assembly tomorrow? you know what you're gonna say about the yankees? george: oh, sports are so pedestrian. i've prepared some science experiments that will illuminate the mind and dazzle the eye. jerry: i wrote a 20 minute bit about how homework stinks. jackie: my vacation was restful, splendid, magnificent. in fact, next time i'm plannin' on going to kofu. jackie: oh no. kramer: jackie we gotta talk. jackie: no way, kramer. you've brought nothing but a mountain of misfortune and humiliation. now get out. kramer: but jackie-- jackie: i said out. kramer: jackie, i think i gotta case against the tobacco companies. jackie: the who? kramer: the tobacco companies. jackie: i've been wanting a piece of them for years. jackie: did that cigarette warning label mention anything about damage to your appearance? kramer: no, it didn't say anything. jackie: so you're a victim. now your face is shallow, unattractive, disgusting. kramer: so jackie, do you think we gotta case? jackie: your face is my case. jerry: how ya doin'? elaine: not good. i'm a moron. jerry: well, don't worry about it. once he passes the test, you'll have sex again, and you'll be fine. elaine: well, that kinda brings us to why i'm here. you got eleven minutes? jerry: what for? oh come on. elaine: i just wanna clear my head. it has nothing to do with you. jerry: i think it has something to do with me. elaine: you could read the paper through the whole thing if you want. jerry: (thinks about it for a second as to reconsider) no, no, no. i'm sorry, it's too weird. elaine: oh, all right. is kramer home? george: you know, louise. i think you'll find this amusing. in early euclidean geometry-- louise: george, i have to have sex. george: i used to share that same outlook. but now, i have so many things to occupy my mind. for instance, the atom. louise: goodbye, george. i hate you. (she leaves) george: what a fascinating turn of events. (waitress approaches) waitress: mas caf? george: si, por favor. jackie: miss wilkie, your tobacco company has turned this beautiful specimen, into a horrible twisted freak. kramer: who could love me? wilkie: i disagree. in fact, i feel mr. kramer projects a rugged masculinity. jackie: rugged? the man's a goblin. he's only been exposed to smoke for four days. by the time this case gets to trial, he'll be nothing more than a shrunken head. wilkie: all right, mr. chiles. you'll have our offer by tomorrow. good day, gentlemen. (she exits) kramer: bye-bye. jackie, you did it. we're rich. jackie: you better believe it. jackie's cashin' in on your wretched disfigurement. elaine: congratulations! you passed! ben: elaine, elaine. i don't think we should see each other anymore. elaine: what? you're breaking up with me? but i sacrificed and supported you while you struggled. what about my dream of dating a doctor? ben: i'm sorry, elaine. i always knew that after i became a doctor, i would dump whoever i was with and find someone better. that's the dream of becoming a doctor. elaine: look it, are we going to have sex, or not? katie: okay, jerry, now when the glee club's finished singing, george goes on, then you. (george enters) george: hey. jerry: where have you been? you know, you're on next. george: i got lost on the way over. jerry: got lost? we went to school here for three years. george: what are these? (holds test tubes to his head like antennae) take me to your leader. jerry: oh my god. you had sex. you had sex with louise! george: no, the portuguese waitress. jerry: the portuguese waitress? george: i calculated my odds of ever getting together with a portuguese waitress. mathematically, i had to do it, jerry. katie: george, george, you're on. george: no, no. i'm not going on. jerry: then what'd you come down here for? george: tell you about the portuguese waitress. jerry: it's good to have you back. katie: one of you has to go on. jerry: all right, i'll do it. (goes on stage) hey kids. what's the deal with homework? you're not working on your home! (audience boos) kramer: it was a great lunch, jackie. thanks. jackie: it's a little puzzling we haven't gotten that offer yet. kramer: mrs. wilkie, from the tobacco company called me. we had a little pow-wow. jackie: a pow-wow? who told you to have a pow-wow? i didn't tell you to have pow-wow. kramer: she made an offer. i took it. jackie: how much? kramer: no, no, no. there was no money. jackie: no money? then what'd we get? kramer: check it out. (they see a marlboro man billboard with kramer on it) jackie: this is the most public yet of my many humiliations. jerry: cancelled? but i was supposed to be on tomorrow night. letterman: yeah, but then, you know, some people were telling me about that little flap out there at the junior high assembly. and before that, you were bumped by a lizard? jerry: actually, it was a ********. letterman: those things, deadly dangerous. a long time ago my uncle and a date are driving, like, through mexico. they see one on the road, drags him out of the road, and chews his face off. listen, we'll call you if anything opens up. okay, jimmy? jerry: jerry. letterman: right. jerry. [setting: jerry's apartment] george: jerry! (slams the door) georgie's moving out! jerry: (gets up) get out! george: i'm out! fantastic apartment right across from mine, huh. i can't wait for you to see it. jerry: (looks around his apartment) is it better than mine? george: (definite) oh yeah. jerry: so, it's a two-bedroom-one-bath-make-your-friends-hate-ya? george: you know what? it's better than elaine's, too. i gotta give her a call. (moves tward the phone) jerry: she's out. george: (stops) oh right, the blind date. jerry: yeah, well, they like to call it a set-up now. i guess the blind people don't like being associated with all those losers. george: come on. come check out my new place. it'll take you two minutes. jerry: i can't. i'm meeting kramer down at my mini-storage. george: (gloating) hey, you got any extra furniture down there? i need some more stuff to fill that extra bedroom with the walk-in closet. (smiles) jerry: (grabs his coat) oh, this is really annoying. george: (laughs as they leave) it's working already! (both exit) [setting: manhattan mini-storage] jerry: (disgusted) what is with that?! kramer: well, it's coughing, jerry. it expells the diseased germs out of the body, into the air. (makes a guesture of germs being in the air) jerry: (takes out his key to unlock the unit door) where is your key? kramer: yeah, well, uh, newman. he's - he's got it. jerry: you know, kramer, i rented out half of my space to you. kramer: yeah, and i rented out half that space to newman. (starts coughing again) jerry: (picks one up) mail bags? he's storing mail in here? kramer: (looks at the bags on the floor) evidently. [setting: george's new apartment] ricardi: excuse me, george? (h1) george: (looks at her) yeah, uh, no menus. (waves her off) ricardi: (moves into the apartment, hand out) no, i'm mrs. ricardi - president of the tenant's association. george: oh, right! (shakes her hand) right! hey, hey.. i love the floors in here. it's like a gymnasium in here! try and guard me! (dribbles an imaginary ball ricardi: no, no.. (laughs nervously) uh, george, unfortunately, clarance eldridge in 8c has decided that he wants the apartment. george: (let down) yeah, but you - you promised it to me. ricardi: yes, but, you see - mister eldridge is an andrea doria survivor. and, in light of the terrible suffering that he's already been through, we've decided to give it to him. george: (depressed) well,.. the andrea doria.. that was quite a fire. (moves to the door, leaving) ricardi: (correcting) shipwreck. george: i remember.. (leaves) [setting: restaurant] elaine: where is this guy?! (checks her watch) i hate this! (sighs) i shoulda brought something to read.. (picks up a sugar packet) "cancer in labratory animals".. huh. waiter: excuse me, elaine benes? elaine: yeah? waiter: an alan mercer called for you. he said he's sorry, but he won't be able to make it tonight. (pause) he's been stabbed. elaine: (shocked) stabbed?! waiter: more bread? [setting: jerry's apartment] jerry: (talking to elaine) you ate more bread? elaine: that is not the point! the guy was stabbed! jerry: did you find out who stabbed him? elaine: yeah, (nodding) it turns out it was his ex-girlfriend. jerry: (like a father) well, you're not going near this hooligan anymore. elaine: well, i don't know.. i mean, think about it, jerry. there must be something exciting about this guy if he can arouse that kind of passion. (obviously turned on by the stabbing) i mean, to be stab-worthy.. you know, it's.. kind of a compliment. jerry: (sarcastic) yeah, too bad he didn't get shot. he could have been the one. kramer: (coughs) hey. how's everybody? (moves to the kitchen) jerry and elaine: hey. kramer: ehh.. (picks up a carton of food) no expiration date on this.. (opens it, then starts coughing directly onto the food) jerry: there is now. kramer, you should really get that cough checked out by a doctor. kramer: (shrugging it off) nah, no, no, no. no doctors for me. a bunch of lackeys and yes-men all towing the company line.. (looks at jerry, then leans in so elaine can't hear) plus, the botched my vasectimy. jerry: (in awe. whispering) the botched it? kramer: (complaining) i'm even more potent now! george: hey. jerry: hey. how's the new place?! george: gone. (moves over to a chair in the living room. kramer takes the carton of food to the table, and begins eating) the tenant association made me give it to this guy because he was an andrea doria survivor.. elaine: andrea doria? isn't that the one they did the song about? jerry: (correcting her) edmund fitzgerald. elane: i love edmund fitzgerald's voice. jerry: (gives elaine a look) no, gordon lightfoot was the singer. edmund fitzgerald was the ship. george: (talking about his would-be apartment) you could fit 15 people in that bathroom.. elaine: i think gordon lightfoot was the boat. jerry: (sarcastic) yeah, and it was rammed by the cat stevens. kramer: (like a teacher) the andrea doria collided with the stockholm in dense fog 21 miles off the coast of nantucket. (makes a clicking sound with his tongue) george: how do you know? kramer: it's in my book - "astonishing tales of the sea" 51 people died. george: 51 people?! that's it?! i thought it was, like, a thousand! kramer: there were 1,650 survivors. george: that's no tragedy! how many people do you lose on a normal cruse? 30? 40?! kramer, can i take a look at that book? (starts walking tward the door. kramer grabs his food, and follows) kramer: oh yeah. i also got "astounding bear attacks" jerry: hey, uh, before you go, did you talk to newman about getting that mail outta there? kramer: yeah, oh, yeah. yeah, he's not gonna do it. (leaves) [setting: newman's apartment] jerry: newman? newman: (eyes glued to the tv) i guess. jerry: listen, i want you to get the mail outta my storage unit. newman: sometimes we don't get what we want. jerry: (confused) what are you talking about? newman: i didn't get my transfer. jerry: "transfer"? newman: to hawaii. the most sought-after postal route of them all. the air is so dewy-sweet you don't even have to like the stamps.. but it's not to be - so, i'm hanging it up. jerry: you quit the post office? newman: kind of. i'm still collecting checks, i'm just not delivering mail. jerry: well, get it out of my storage. it's illegal. newman: and yet, it's perfectly legal to take a man's soul and crush it out like a stale pall mall. jerry: (cheerfully) well, a law's a law. (leaves) [setting: central park] kramer: ok, hold on there.. that's a nasty cough you got there, huh? man: what cough? [setting: restaurant] elaine: i love shrimp! (waves her knife around as she's talking) i'm a shrimp eater. you put shrimp infront of me, (waves her knife along with her hand gestures. alan is getting edgy about it, and even more so with every wave) and i will eat it until my stomach pops! (notices alan's unsettled) oh.. (puts the knife down) alan: no, it's okay. i'm.. still just a little bit jumpy. elaine: (leans in close) between you and me, what happened there with the stabbing? alan: just.. one of those things, you know. elaine: what? was she just so crazy in love with you that she just couldn't take it anymore? or..? alan: i don't know. could be. carol: alan?! alan: carol? elaine: (gets up, pointing after carol) was that the one?! was that the one who stabbed you?! alan: (between screams) no, that was a different girl. [setting: coffee shop] jerry: there was another crazed ex-girlfriend? elaine: right, so, i called my friend, you know - the one who set us up - i found out, he's a bad-breaker-upper. jerry: mmm.. bad how? elaine: (fast) well, you know when you break up, how you say things you don't mean? well, he says the mean things you don't mean, but he means them. jerry: (nods) i follow. so what are you gonna do? elaine: dump him. i can't be with someone who doesn't break up nicely. i mean, to me, that's one of the most important parts of a relationship. jerry: (agreeing) what's more important? [setting: nyc street] kramer: (between coughs) hey. george: what's with the dog? kramer: (petting smuckers) yeah, this is smuckers. i borrowed him. (starts coughing) george: oh.. kramer: (pointing at the dog) yeah, we share the same affliction, so i'm gonna have a vet check us out. george: a vet? kramer: oh, i'll take a vet over an m.d. any day. they gotta be able to cure a (snaps his fingers in rhythm with his words) lizard, a chicken, a pig, a frog (stops snapping) - all on the same day. george: so, if i may jump ahead - you're gonna take dog medicine? kramer: (smiling) you bet we are! huh, smuckers? (smuckers coughs. they turn to leave) i'll see ya. [setting: george's apartment building] george: ahoy! mr. eldridge. i understand you were on the andrea doria. eldridge: yes, it was a terrifying ordeal. george: i tell ya, i hear people really stuff themselves on those cruise ships. (laughs) the buffet, that's the real ordeal, huh, clarence? (laughs) eldridge: (defensively) we had to abandon ship. george: well, all vacations have to end eventually. eldridge: the boat sank. george: (holding up kramer's book) according to this, it took.. 10 hours. it eased into the water like an old man into a nice warm bath - no offence. (pause) so, uh, clarence, how about abandoning this apartment, and letting me shove off in this beauty? eldridge: is that what this is all about?! i don't think i like you. (enters his apartment, and slams the door behind him) george: (yelling out) it's my apartment, eldridge! the stalkholm may not have sunk ya, but i will! ha, ha, ha! [setting: vet's office] vet: what are the symptoms? kramer: well, uh.. it hurts when he swallows. expecially when he drinks orange juice. (vet gives him a look) i mean, uh.. dog food.. juice. (adding) what's worse - he has a nagging cough. (smucker's coughs) yeah, that's it. that's it. vet: yeah, well, uh - we've been seeing a lot of this lately. been drinking from the toilet? kramer: (offended) what? no. that's disgusting.. [setting: coffee shop] alan: so that's it? we're, uh, we're breakin' up? elaine: (confused by his sudden change-of-heart) what? break-up? we went out on one date. alan: (fast) ok, yeah, sure, fine, right. whatever you say. elaine: (shows no sign that she cares) alright, good. good. alan: ok, then, well, so.. see ya around.. big head. (gets up to leave) elaine: pardon? alan: you got a big head. it's too big for your body. (walks for the door) elaine: (laughing out loud) that's it?! (laughs again) that's the best you got?! (laughs loudly as alan exits) [setting: jerry's apartment] george: so, he's keeping the apartment. he doesn't deserve it, though! even if he did suffer, that was, like, 40 years ago! what has he been doing lately?! i've been suffering for the past 30 years up to and including yesterday! jerry: you know, if this tenant board is so impressed with suffering, maybe you should tell them the "astonishing tales of costanza". george: (interested) i should! jerry: i mean, your body of work in this field is unparalleled. george: i could go bumper to bumper with any one else on this planet! jerry: you're the man! newman: jerry! jerry: i'm with people, i'll be with you in a moment. (slams the door on newman's face. then tries to delay talking to newman by keeping the conversation with george going) so, you want a protein shake, or something? george: nah, i guess i should really get moving on this, huh? i'm gonna go. (opens the door, letting newman in. leaves) jerry: (angered) hello.. newman. newman: (urgent) i need that mail, where is it?! jerry: what's the difference? newman: the guy who had the hawaii transfer got busted for hoarding victoria secret catalogues. i gotta deliver that mail! jerry: well, go ahead. there's 8 bags of it. newman: blast! there's no way i can handle 8 in addition to my ususal load of one! i'll never get to hawaii! (moves over to jerry's couch, depressed) i'll be stuck in this apartment building forever! (lays down on jerry's couch) the dream is dead. jerry: you're giving up that easy? newman: i usually do. (gets up to leave) see ya. jerry: (stopping him) no, wait a minute, newman! you can't let this dream die. you moving away is my dream too! newman: (intrigued) what are you proposing? jerry: (fast) whatever it takes, for as long as it takes me, where ever it takes me as long as it takes you away from me! newman: an alliance? jerry: (confirming) an alliance. (they both shake hands and laugh evily) now get the hell outta here. (newman leaves) [setting: jerry's apartment] elaine: hawaii? that's why you're helping newman with the mail? jerry: (like an army general) elaine, newman is my sworn enemy. and he lives down the hall from my home - my home, elaine! where i sleep, where i come to play with my toys. elaine: well, anyway, get this i spoke to alan. you know, i told him i didn't want to see him anymore.. he called me "big head". jerry: "big head" (scoffs) that's almost a compliment. elaine: (agreeing) it's one of the nicest things anyone's ever said to me. jerry: hello? george: (on the other line) hey. jerry: hey, george. george: yeah, listen, i can't make it later. jerry: you can't make it? george: yeah, the tenant association has decided to hear my side of the story. so, uh, i gotta kinda get ready. i'll see ya. jerry: alright. (hangs up) elaine: is he not gonna go to the coffee shop? jerry: (saddened) doesn't look like it's gonna happen. elaine: (gives a "that's a shame" face) alright, well, i'll see ya. (opens the door to exit. kramer enters coughing. elaine does her best to dodge out of the way of kramer's coughs, then walks off) jerry: kramer, aren't you taking any medication for that? kramer: yeah, yeah. (pulls a bottle out of his pocket) i got some pilss. they taste terrible. jerry: (takes the bottle from him) just swallow 'em. kramer: (gestures to his throat) no, my throat's too tender. jerry: alright, sit down, sit down. (grabs a pill from the bottle, and starts advancing tward kramer - like an owner with his dog) kramer: i don't want to! jerry: c'mon. just sit down! kramer: (squirming) jerry! what?! jerry: sit down! sit down! kramer: (struggling) hey! jerry: lean your head back. open your mouth! (grabs kramer's head) open your mouth! open it! open it! jerry: (reads the pill bottle) what kind of pills are these, anyways?! "for smuckers"? "may cause panting and loss of fur"? (turns to kramer) these are dog pills! kramer: whe have the same symptoms. jerry: but, he's a dog! you need to see a real doctor. kramer: no, no. no doctors. jerry: alright.. (heads for the door, grabbing his coat) kramer: where are you going? jerry: i'm taking the car. i gotta run some errands. you want to go? kramer: i don't know.. jerry: (opens the door) c'mon, you wanna go for a ride? (starts jiggling his keys - as if he's calling out for a dog) huh? c'mon! c'mon! [setting: taxi cab] driver: lady, could you move your head a little bit? elaine: what? driver: your head. i can't see out the back. (elaine slumps down in her seat) little more.. (elaine slumps lower) ..little more. (slides down until just her eyes and forehead can be seen) thank you. [setting: jerry's car] kramer: i don't see any tissues back her.. (looks out the windows) wait a minute!.. (jerry looks like he's trying to keep something from kramer) this isn't the way to the park! (starts getting even more energetic) where are we going?.. i recognize this block! (looks at jerry, scared) you're taking me to the doctor! [setting: coffee shop] george: so, uh, mom, dad, i was hoping that you could help me to remember my childhood a little clearly.. estelle: i feel a draft. (grabs the bread basket and her drink) let's change tables. frank: get outta here! we have a booth. estelle: frank, i'm cold! frank: order a hot dish. estelle: why can't we sit over there? (points to a table) frank: (yelling) that's not a booth! estelle: (trying to match frank's loudness) so, who says we have to sit in a booth?! frank: (loud shouting) i didn't take the subway all the way to new york to sit at a table like that! (gestures to the table) estelle: (nagging yell) well, i didn't take the subway to be in a drafty restaurant! george: (pleading for them to stop) mom.. dad. frank: now, george, what do you want to know about your childhood? george: (fed up with his parents) actually, i think i'm pretty clear on it. frank: (looks up) where's that breeze coming from? [setting: nyc street] jerry: kramer, outta the car. out, now! kramer: no, jerry! jerry: alright, that's it.. (grabs kramer, trying to pull him out of the car) kramer: no! don't! jerry: hey, hey! get back over here! kramer! get over here! you are bad! bad neighbor! kramer! [setting: tenant board room] eldridge: just then, a rescue ship emerged from the fog and saved us. it was.. (stops, then gives george a look. george stops knocking on the walls) it was the sweetest sight my eyes ever saw. ricardi: (touched) thank you mr. eldridge. the tenant board will now hear mr. costanza's testimony. [setting: newman's apartment] jerry: newman, how'd it go? did you get it all delivered? (sees the pac) what happened? newman: kramer bit me! jerry: bit you?! newman: we had an arguement about me going to hawaii, and he locked onto my ankle like it was a soup bone. i'm hubbled! i don't think i can do my route - and they're awarding the transfer in two days! jerry: (bravely) well, what if i deliver it? newman: you?! (laughs hysterically) you can't deliver mail! jerry: well, why not? newman: (thinks for a moment) i guess you're right. it's just walking around putting it into boxes.. jerry: what am i gonna wear? newman: i could give you my uniform from my rookie year. jerry: (excited) i can't believe i'm gonna be a mailman! jerry: (hands him some mail) there you go. merry chirstmas! owner: mail on sunday? jerry: (shrugs) oops. (continues walking along the route, whistling. hands a newspaper to a homeless bum on the street, then keeps walking) [setting: tenant board room] george: i was handcuffed to the bed.. in my underwear, (sighs) where i remained.. (scene cuts to another story) she was attractive.. she was, also, infact, a nazi.. (cuts to another story) the water.. that i had been swiming in was.. very cold. and, when i dropped the towel, there was.. significant shrinkage.. (scene cuts to, yet, another story) her parents were looking at me.. so, there i was, with a marble rye hanging from the end of a fishing pole.. (scene cuts to his closing statements) in closing, these stories have not been embellished, because - they need no embellishment. they are simply, horrifyingly, the story of my life as a short, stocky, slow witted bald man. (gets up) thank you. (every memeber of the board shows some sign that george's story is most deserving of the apartment. ricardi is crying. george turns to leave, then remembers one more thing..) oh, also.. my fiance died from licking toxic envelopes that i picked out. (sobs and loud crying erupts from the board members) thanks again. (leaves. eldridge looks defeated) [setting: newman's apartment] jerry: hey, i've been trying to jam stuff in the box, like you told me, but sometimes it says, like, "photographs - do not bend". newman: "do not bend". (laughs evilly) just crease, crumple, cram.. you'll do fine. (phone rings. newman answers it) hello?.. this is he. i don't understand.. very well. (hangs up in disappointment) jerry: what? newman: that was the vice president of the post office. i didn't get the transfer.. they knew it wasn't me doing my route! jerry: how did they know?! newman: (stands up) too many people go their mail! close to 80%. no body from the post office has ever cracked the 50% barrier! it's like the 3-minute mile! jerry: (pleading) i tried my best! newman: exactly. you're a disgrace to the uniform. (newman takes off jerry's mailman hat. jerry turns his head in shame. newman then tears the post office badge from jerry's coat) jerry: you know, this is your coat. newman: (realizing) damn! [setting: central park] man 2: he flew right into your head. like he couldn't avoid it. elaine: (rubbing her head to relieve the pain) really? man 2: never seen that before. bird into a woman's head.. [setting: coffee shop] george: it's not contest. the guy had nothing! the ship went down, he got into a life boat, i mean, come on. jerry: boy, he didn't know what he was up against. (george laughs) so, when do you move into the apartment? george: they're making their decision today. jerry: what's the matter with you? elaine: nothing.. except that a bird ran into my giant freak-head. (sits down) jerry: what giant freak-head? elaine: (annoyed, near tears) the one that sits atop my disproportunately puny body.. i'm a walking candy apple! jerry: so, it's actually gotten to you? you're playing right into his hands! elaine: (realizing) what? yeah.. you're right!.. all i have to do is call him up, and sit with him, and show him that it doesn't bother me. you know, laugh it off.. or jam a fork into his forehead. jerry: (casually, sarcastic) either way. elaine: (getting up to leave) alright. [setting: restaurant] alan: i want to apologize for.. elaine: (shrugging it off) oh, please. alan: so you have a big head. elaine: (casually playing along) so what? alan: it goes well with that bump in your nose. elaine: (suddenly angry) what?! woman: please! get help! there's a crazy big-headed woman beating up some guy! tell the police "the old mill restaurant". hurry! cop: boy, that's some cough you got there. cop 2: no, i think he's trying to tell us something. what is it? (between coughs, kramer manages to say the word "trouble") trouble?! trouble? where? where's trouble? (kramer coughs out the words "old mill") trouble at the old mill?! oh my god! good boy, good boy! lead the way! come on. [setting: george's apartment building] george: excuse me, uh, what are you doing in there? alan: i'm moving in. alan mercer. new neighbor. (they shake hands) george: what? elaine's big-head guy? they have you the apartment?! alan: yeah. george: why?! because you were stabbed, and.. got coffee thrown in your face, and.. uh.. (points to alan's bandaged forehead) alan: oh, fork in the forehead. george: that's why they gave you the apartment? alan: no, i just gave the super 50 bucks. george: wait a minute, that is my apartment. i earned it with 34 years of misery! alan: tough luck, chinless. (goes into his new apartment, and slams the door on george) jerry: so what happened to you yesterday? we were supposed to go to the auto show, i waited for you, you never came. elaine: i'm sorry, i got really busy. how long did you wait? jerry: five minutes. elaine: five minutes? that's it? jerry: what's the difference? you never showed up. elaine: i could've! i mean, last week we waited for that friend of kramer's for like, forty minutes. jerry: well, we barely knew the guy. elaine: so, the longer you know someone, the shorter you wait for 'em. jerry: that's the way it works. elaine: when did you tell george to be here? jerry: i told him to meet us here in ten minutes. how long has it been? elaine: about five. jerry: that's enough. (they leave. george comes around the corner.) george (looks at his watch): early! alright! (shivers.) cold. kramer: so, i noticed you bounced a check at the bodega. jerry: how did you know about that? kramer: because marcelino, he taped it up on his cash register with all the other bad checks. jerry: he can't do that. kramer (sternly): it's the only way you'll learn. (tastes his eggs.) aw, these eggs are disgusting. this chicken should be ashamed of himself. george: fantastic day! fantastic! jerry: what happened? george: (laughs - hehe) well, first, i'm brushing my teeth and this piece of apple-skin, that must have been lodged in there for days, comes loose. jerry: fantastic. george: then, i'm at the foundation... jerry: you're still doing that? george: sometimes, once in a while. jerry: when you feel guilty. george: no, occasionally i'll forget to let the machine pick up. anyway, they made this large donation, to a women's prison, and i get to go down there and check it out. kramer: that's caged heat. george: yeah-hah! jerry: what are you gonna do there? george: nothing really, you know...just eh, stroll around the cell blocks, maybe eh, take in a shower fight. (chuckles.) hey eh, you know you got a bounced check hanging up in the little market over on columbus? jerry: yes, i know, i know. george: i noticed you eh, chose the eh "clowns with balloons" check design. jerry: it was a mistake, the bank sent me the wrong ones. elaine: hey! look who's here! hey kurt, this is jerry, and george, and kramer. kramer: hey, kurt. taste these eggs. kurt: uh, no - i only eat cage-free, farm-fresh. kramer: yes! these are sweatshop eggs. kurt (to elaine): ah, i gotta call the office. honey, will you order for me? elaine (sitting down): i'm a "honey." he's pretty great, huh? jerry: is he from the future? elaine: no, he just shaves his head. i think it's pretty gutsy. george: listen, sweetheart, let me tell you a little something about guts. (points to his head.) this is guts. elaine: what? clinging to some scraps? george: these are not "scraps." these are historic remains of a once great society of hair. elaine: oh, did you guys stop at the bodega today? some moron bounced a clown check! [the bodega, starts with a shot of marcelino's cash register with jerry's clown check attached under a sign that reads "checks no longer accepted from: ".] check #1246, dated dec. 15 ‘96, made out to: columbus deli for $40.00 jerry: again, i'm really sorry about the check, marcelino. marcelino: people seem to like the clowns. jerry (takes out his wallet): look, let me just give you the forty, plus another twenty for your trouble. marcelino: 'kay. jerry (turning to leave): aren't you going to take the check down? marcelino: sorry, no. it's store policy. jerry: but it's your bodega. marcelino: even i am not above the policy. betsy: those are our tennis courts. george: tennis courts? w-w-what about the yard? where do they have the gang fights? betsy: there's no fights here, mr. costanza. this is a minimum security facility. george: hmm. what about a hole? you ever put anybody in "the box"? betsy: no. george (to himself): this prison stinks. betsy: and finally, the library, which has just been refurbished thanks to your generous donation. this is celia morgan, our librarian. celia: nice to meet you. betsy: i'll be in my office if you need me. george: thanks, warden. betsy (sweetly): betsy. george (disappointed): betsy. celia: so, are you the head of the foundation? george: well, let's just say it wouldn't exist without me. (notices another person in the library dressed the same as celia.) so you two uh, shop at the same store, (hu)? celia: no, it's standard issue. george: oh my god...you're in jail? (celia nods.) that is so cool! jerry: you asked her out? george: well...not "out." she's a prisoner. jerry: how could you ask her out? george: why not? jerry: i remember when you wouldn't date that girl who lived in queens because you didn't want to go over the bridge! george: that was different! jerry: i'll say. george: jerry, i like being with her. plus, i know where she is all the time. i have relatively no competition. an-and you know how you live in fear of the pop-in? jerry (shudders): the pop-in. george: yeah, no pop-in, no "in the neighborhood," no "i saw your light was on." and the best part is, if things go really well... jerry: conjugal visit? george (giddy): don't jinx it! don't jinx (trails off quietly in elation) kramer: hey. george: hey. kramer: what's up? jerry: george is dating a convict. kramer: oh? what's she in for? (putting groceries in the fridge) george: embezzlement. kramer (approvingly): sounds like a nice girl. hey jerry, is it all right if i put some stuff in your fridge? 'cause mine's full. jerry: yeah, sure. you don't even have a fridge, do you? kramer: well, not here. kramer: okay (lifting the bag and carrying it into the apt.) jerry: kramer, kramer, wait a minute, what the hell is that? kramer: well, it's chicken feed. (slams the bag into jerry's fridge.) jerry: i sense something is afoot. kramer: yeah, i bought a chicken. george: allow me. why? kramer: cage-free, farm-fresh eggs. jerry: allow me. what are you, an idiot? kramer: no (throws hand in the air and turns and looks back at jerry) kurt: hold it, hold it, hold it, here, i got it. catch. (tosses his wallet to elaine, she pays the delivery guy.) elaine: hm. (looking at kurt's driver's license photo) hey, driver's license. oh...my god. kurt: what? elaine: your hair. it's so thick and lustrous. i mean, it...it was. kurt: well, it still is. i shave my head for my swim team. i just liked the way it looked, so i kept it. elaine: are you saying that i could be dating this hair? i mean wi..with you under it? (kurt shrugs.) jerry: (sits up in bed) oh what... kramer: hey. jerry: is that your "chicken" making all that noise? kramer: oh, jerry loves the morning. jerry: who? kramer: little jerry seinfeld. i named my chicken after you. jerry: thanks, that's very sweet, but that is not, a chicken. kramer: of course it is. i picked it out myself. jerry: well, you picked out a rooster. kramer: well, that would explain little jerry's poor egg production. celia: this was fun. george: yeah. i had a great time. guard: five minutes, mr. costanza. george: the whole hour just flew by. (laughs - hehe) (begins cleaning up the table.) guard: i'll get that. george: oh, thanks, bobby. (to celia) well, i guess i'll see you in four days. celia: yeah. go out and have a ball with the guys. i'll be waiting right here for you. george: of course you will. (quick chuckle). you're the best. (with a light fist motion across her chin) celia: hmm jerry: hello? helen (in florida with morty): jerry? leo told us he saw your bounced check. are you having money problems? jerry: i'm not having money problems. helen: enough with the comedy! you're very clever, you should look into advertising. morty: he never even called ed roydlick. they were looking for someone! jerry: i'm not calling ed roydlick. i'm doing fine! helen: that's it. i'm gonna to send you fifty dollars. jerry: you are not sending me fifty dollars! helen: we're sending you fifty dollars! morty, get me an envelope. jerry (angrily): i swear to god, if you send me fifty dollars, you are gonna be so sorry! morty: i don't see envelopes! helen: they're right in front of you! oh, for heaven's sakes... (she puts the phone down on the couch and goes to help morty.) show you... jerry: ma! ma! maaa! (hangs up the phone in disgust.) oh, ahhhh (sighs quietly) george: how're the folks? jerry: good. george: so? movie tonight? jerry: i thought you were going out with celia? george: i did. i'm back. i love this relationship, i feel so liberated! jerry: having her in jail. george: the only thing that bothers me is that i'm just coming up with this now. jerry: yeah, dating a convicted felon. i don't know how you missed it. elaine: here. (shows kurt's driver's license to jerry.) take a look at that. jerry: huh. kurt's an organ donor. elaine: no! he's not bald. look! he's got a full head of hair. jerry: so he just shaves his head for no reason? george: that's like using a wheelchair for the fun of it! elaine: and he's growing it in just for me. (happily) it's mine. it's all mine. (clutches the photo between her hands and to her chest then looks at it again) jerry: it's just hair. elaine: it's not just hair! look! jerry: it's brown. elaine: it's chestnut with auburn highlights! jerry: so? elaine: you're not around women. you don't know how important a man's hair is. elaine: i'm sorry, george, but it's true. george (close to tears): i knew it. marcelino: hey, kramer. kramer: yeah (quietly) marcelino: nice rooster. kramer: yeah (again quietly) marcelino: what's his name? kramer: ah, well, this is little jerry seinfeld. marcelino: little jerry seinfeld. does he bounce checks? (laughs) kramer: look, can't you take jerry's check down? marcelino: sorry kramer, can't help you. kramer: hey, hey jerry, come on. sorry. marcelino (impressed): i like the way he handles himself. kramer: oh yeah (quietly) elaine: ohhh, it's coming in already! kurt: yeah (quietly) elaine: wow, you have some very nice little seedlings here. huh... kurt: what? elaine: well, it doesn't seem to be coming in so good over here. or here. kurt: what do you mean? (goes into the bedroom to look in the mirror.) elaine: well, i don't know... h- how long have you been shaving your head for? kurt (from the bedroom): about three years. elaine: huh. kurt: oh my god! (steps into the doorway) i'm going bald! celia: george! i'm so glad to see you! george: hey, i brought you some cigarettes. you buy yourself something nice. celia: good news - i'm up for parole. george: parole! (feigning joy) that's dynamite! jerry: so marcelino's going to take down the check? kramer: yeah, well, it comes down if little jerry seinfeld wins the cockfight. jerry: great! (realizing) what? kramer: well, marcelino, he has cockfights in the back of his store. jerry: ah ha... kramer: yeah, so he says if little jerry seinfeld wins, the check comes down. jerry: kramer, cockfighting is illegal. kramer: only in the united states. jerry: it's inhumane! kramer: no, jerry, it's not what you think it is. jerry: it's two roosters peckin' at each other! kramer: what? jerry: yeah! kramer: well, i thought they wore gloves and helmets, you know, like "american gladiators." jerry: no kramer, little jerry could get hurt. kramer: yeah, well, i left him with marcelino! kramer: my little jerry! (runs out.) jerry: hey, did you get little jerry, is he o.k.? kramer: oh well, he's more than o.k., he won! jerry: you let him fight? kramer: yeah, well i couldn't get there in time to stop it, but you should have seen little jerry, jerry! flappin' his wings and struttin' his stuff! he was peckin' and weavin' and bobbin' and talkin' trash! he didn't even have to touch him! the other rooster ran out of the ring. the whole fight lasted two seconds. jerry: how long do they usually last? kramer: five seconds. and marcelino says he's taking your check down today. jerry: great! kramer: hey. george: celia's up for parole. kramer: hey, little jerry won his cockfight. george: what? kramer: who? jerry: i'm too tired. kramer (to jerry): o.k., listen, i want you to come by later, alright? 'cause we're having a victory party for little jerry. jerry: o.k. (kramer leaves.) george (sadly): it's over, jerry. she's gettin' out. jerry: ah, i'm so sorry. george: she's been locked up for two years. she's gonna want to make up for lost time. dinners. movies. (rubs his forehead.) talking... jerry: in other words, a normal relationship. george: heh, haa. and that's no good. i've tried it straight, jerry. we've all seen the results. for me, sick is the only way to go. jerry: well, she'll still be an ex-con. george: it's not the same. jerry: hey, if you two are meant to be together...i'm sure the cops'll pick her up on something. elaine: kurt? what's with the sweats? aren't we going out? kurt: i don't care. elaine: you, uh...got a big stain on your shirt. kurt: oh yeah...meatball...fell out of my sandwich. elaine: you already ate? kurt: it's from yesterday. marcelino: jerry! you missed a hell of a cockfight last night. jerry: then what is my check still doing up? we had a deal! marcelino: now we have a new deal. jerry: new deal? marcelino: when little jerry seinfeld is mine, the check will be yours. jerry: this is outrageous! (to marcelino) pack of juicy fruit. marcelino (tosses the gum on the counter): 85 cents. jerry: 85 cents? that is outrageous! jerry: kramer, marcelino wants us to sell him little jerry seinfeld. kramer: well, that's out of the question. jerry: but kramer, cockfighting is an illegal and immoral activity. kramer: yeah, if you got a loser. but little jerry was born to cockfight! jerry: no, no more cockfighting. let's just sell him to marcelino the cockfighter and be done with it! kramer: you know, i think you're jealous. jerry: of what? kramer (points at jerry like he's found him out): yah, yah! you see in little jerry seinfeld the unlimited future you once had. now, just because jerry seinfeld is a has-been, don't make little jerry seinfeld a never-was! jerry: kramer, give me that rooster! kramer: never! you hate him because he's doing more with your name than you ever will! yah-yah! (kramer leaves.) betsy: george, celia has listed you as a character reference. whatever you can tell us would certainly be helpful in, her getting paroled. george: well, anything i can do to help, um...she's a wonderful girl. very smart. very eh...crafty. betsy: does she have any plans after she's released? george: plans. schemes. she ah, she keeps talking about getting back together with her old friends, you know - "the gang," as she likes to call them (chuckles), you know. yeah, they're eh, they're hatching something, you can count on that. marcelino: jerry! tomorrow night's fight-night. where's my rooster? jerry: kramer won't sell. marcelino: well, tell you what i'm gonna do. i'm gonna take down your check anyway. jerry: oh well, thank you, marcelino. marcelino: well, perhaps someday you will do me a favor. and that day is today. little jerry seinfeld must go down in the third round of tomorrow's main event. jerry: you want little jerry to take a dive? marcelino: shhh, not so loud. jerry: first of all, i don't think you can make a rooster take a dive. marcelino: can, too! jerry: second of all, jerry seinfeld - big or little - doesn't go down for anyone, anywhere, at anytime! now i'd appreciate it if you please leave. marcelino (leaving): big jerry is making a big mistake, jerry. jerry: we'll see about that. (runs to the window and shouts up to kramer, who's on the roof.) kramer, i'm comin' up! we got a cockfight to win! kramer: o.k.! kurt: elaine said you would be the best person i could talk to. george (examining kurt's head with a lamp): yep. classic horseshoe pattern. i've seen a lot of this. kurt: oh, god. george: no, no, kurt - wrong attitude. you should be happy now. kurt: happy? why should i be happy? george: you've still got pretty good coverage. once the enemy advances beyond this perimeter - (points at kurt's head with a pen) - then you won't be kurt anymore. kurt: who will i be? kurt: how long do i have? george (solemnly): 14 months. maybe 10. kurt: is there anything i can do? george: yes. live, dammit. live! every precious moment as if this was the last year of your life. because in many ways...it is. (there's a knock at the door.) excuse me. george: celia? w-w-what are you doing here? celia: well, i didn't get my parole, so i busted out. george (nervously): and-and you just decided to pop in...! elaine: kurt! kurt: elaine...(holds out a wedding ring) will you marry me? kramer: oh, yeah. oh, yeah. boy he's lookin' good, huh jerry? jerry: yeah. alright, i think that's enough for today. (kramer picks up little jerry and takes him to the sink.) little jerry is lean, mean, peckin' machine! (kramer starts filling a pot with water.) what are you doing with that? kramer: i'm just gonna heat this up. make a little hot-tub for little jerry. jerry: hey, kramer...? jerry: be careful. george: hey. jerry: hey, guess what! little jerry ran from here to newman's in under thirty seconds! george: is that good? jerry: i don't know. where have you been? george: celia broke out of prison. i'm sitting in my home, she shows up at the door! jerry: oh my god! the break-out/pop-in! george: yeah. hey jerry, listen to this. i discovered something even better than conjugal visit sex. fugitive sex! now, it's like everytime - jerry (interrupts): george, this is a little too much for me - escaped convicts, fugitive sex...i got a cockfight to focus on. (jerry leaves.) elaine: hey hey kurt, slow down! i can't just marry you, whim-bam-boom! i mean, i need some "fiance-time," i need some "make-my-girlfriends-jealous" time... kurt: plus, you want to get to know me. elaine: yeah, yeah, that too. kurt: well, how much time? elaine: (sighs wa-ah) i don't know...a year? kurt: no, no, no...it has to be now. elaine: (sighs ahh) could i see the ring again? jerry (to elaine): so, you're actually considering it? elaine: well, it'll be a couple of years before he's completely bald. those'll be good times. jerry: marriage is a big step, elaine. your life'll totally change. elaine: jerry, it's three-thirty in the morning. i'm at a cockfight. what am i clinging to? george: oh, hey, sorry i'm late. jerry: hey. george: sorry i'm late. jerry: where's celia? george: she didn't want to come, she-she's not really into sports. jerry: hmm. (nodding head) jerry: hey, how's he doin'? kramer: ohh, he's got a big sweat going. (takes an envelope out of his pocket.) oh, this came for you express-mail. it's from your parents. jerry (opens the envelope): fifty dollars. i don't believe this! kramer: there's marcelino. (marcelino enters the ring holding a huge white rooster.) jerry: look at the size of his bird! kramer: that looks like a dog with a glove on his head. kurt: hi, is george back from the cockfight yet? you know, i gotta thank him, he changed my life. celia: no, it must have been a good fight, he's not back yet. kurt: ah, damn. detective #1 (to kurt): sorry to bother you, mr. costanza. well, well, well. look who's here. celia: aw, man! detective #2 (to kurt): mr. costanza, you're under arrest for aiding and abetting a known fugitive. kurt (laughs): i'm not george costanza. detective #2: save it. we know you're bald. we know it's you. let's go! (they escort kurt and celia out.) elaine (to a woman at the fight): muchos gracias. (turns back to jerry and kramer.) o.k., i got the whole scoop. marcelino flew the bird in from ecuador. he's 68 and 0! jerry: he's a ringer! george: where's the tamale guy? kramer: little jerry's going to get his clock cleaned. i gotta get him outta there. kramer (lunging for little jerry): lit _ tle jer _ ry! jerry: kra _ mer! elaine: stop _ the _ fight! george (holds up one finger): ta _ mal _ e! kramer: ahhh, uh, uh, uh, ohuh, aaaa ouh au au au ah ah (more pecking) ah, ah, ah, ah. elaine: why? why did you get into a fist fight with the cop? you were innocent! kurt: they thought i was george. i'm not that bald. and i have too little time left to take that kind of crap, so i, slugged him. elaine: so, how long are you gonna be in here for? kurt: well, my lawyer says 14 months, but with good behavior, maybe...10? elaine: (sighs) so 10 to 14 months. kurt: yeah. kramer: well, that was alright, huh? emily: yeah. kramer: well, um, goodnight. emily: goodnight. (kramer rolls over to go to sleep. the bedside clock reads 12: 30. emily snuggles up to him and puts an arm around him. kramer doesn't look comfortable with this.) (the clock reads 3: 31. kramer is lying on his back, sleeping. beside him, emily lies face-down, sleeping, with her arms flung out wide. one hand is on the pillow above kramer's head, then it moves and emily's forearm runs across kramer's face, waking him. kramer looks disgruntled at being awakened.) kramer: (quietly, to himself) look at this. (the clock reads 5: 11. a wide awake kramer is right over to the edge of the bed, with emily cuddled up to him, sleeping happily. kramer tries to carefully move, so as to not wake emily, but as he shifts his weight, he slips off the end of the mattress and falls to the floor. emily rolls into the space vacated, continuing to sleep.) helen: jerry, we can only stay four days. jerry: well, i'm upset, but we'll make the most of it. morty: helen, did you pack my travel gym? helen: yes. (to jerry) oh, your father bought a exercise device off the television. he does it every morning at four. morty: only twenty-five minutes a day, and you can attach it to any doorknob. jerry: huh. so, i guess your travel miles are about to expire. helen: well, actually, jerry, we wanted to talk to you about something. jerry: am i finally getting a baby brother? helen: jerry, be serious. morty: how would you feel if we sold the cadillac? jerry: what? the cadillac i bought for you? morty: it's too much car, jerry. jerry: aw, c'mon, you love that car. what about the northstar system? morty: i don't think we even use it. jerry: well, it's a gift and i want you to keep it. helen: we already sold it. jerry: wh..why didn't you tell me before you sold it? morty: because we had a buyer, and we couldn't get a free flight until now. helen: well, we could, but we wanted the bulkhead. jerry: (exasperated) ugh. kramer: (to jerry) man, that emily is wearing me out. jerry: kramer. kramer: no, no, no. it's not the sex, jerry. (noticing morty and helen) heyy! seinfelds. helen: hi kramer. morty: hiya kramer. jerry: we're in the middle of a discussion here. kramer: oh yeah? what about? helen: jerry's upset we sold the cadillac. kramer: what'd you get for it? morty: jack klompus gave us six grand. jerry: you sold my cadillac to jack klompus? morty: (trying to press the cheque on jerry) and we want you to have the money. jerry: (getting worked up) i don't need the money. morty: what're you talking about? you had a cheque bounce at the bodega. jerry: (animated) oh, is that what this is all about?! i bounce a cheque and you sold a cadillac?! helen: well, also, jerry, we read an article in the sun sentinel. (digs in her purse and extracts a newspaper clipping) it says standup comedy is not what it used to be, what with def jam and all. kramer: yeah, that def jam is a force. helen: jerry, you know, i hear wonderful things about bloomingdales' executive training program. jerry: (sits on the back of the couch) oh my god. kramer: y'know you've given this comedy thing your best shot. yeah, you had some good observations, but it's over. now, this bloomingdale thing, that could be the next wave. george: uh, excuse me. uh, pound of arabian mocha java, please. elaine: so, you understand how my peterman stock options are gonna work? george: i'm going to the bathroom. elaine: just, very interesting. jerry: yeah, when it's your money, it's fascinating. counterperson: arabian mocha java? elaine: (looks for george) mmm. (can't see him) oh, um, i got it. jerry: that arabian is strong coffee. elaine: it's plo blend. elaine: ohh, i got your coffee. george: oh oh, here, lemme uh... elaine: (waving away) nah, nah, it's on me. (looks at her watch) aww, man. okay, listen guys, i'm gonna be late. (taking her cup of coffee) i'll see you, okay? (begins to walk away) george: yeah. elaine: bye. george: mmm. george: you see what just happened here? jerry: what? george: she treated me to the arabian mocha java. jerry: and you misinterpret this how? george: she's stickin' it to me that she makes more money than me. jerry: i'm sure she was just being nice, buying you the coffee. george: no, not nice. she's stickin' it to me. jerry: you're crazy. george: (worked up) stickin' it to me, jerry. jerry: george. george: (angry) stickin' it! george: so you're buying the car back for your parents? jerry: i'm flying down to florida tomorrow. george: your parents'll never let you do it. jerry: they lied to me about selling the car. i'll lie to them about buying it back. they think they can dump six grand on me? think again. george: what kind of money you think your parents have? jerry: excuse me? george: i bet they have more money than mine. jerry: come on, your parents have money. george: you think? jerry: when did they ever spend any money? george: never. jerry: what are their living expenses? george: nothing. jerry: where do they ever go on vacation? george: nowhere. george: how much money d'you think they have? jerry: few hundred grand? george: (excited) you're saying i stand to inherit three hundred thousand dollars, is that what you're saying?! jerry: course you may not see it for twenty years. george: twenty years? that long? jerry: does your father still eat bacon and eggs every day? george: fortunately, yes. jerry: how's your family history? george: i have an aunt that died at seven. jerry: really? george: aunt baby. kramer: elaine. uh, you got a moment? elaine: yeah, kramer, come on in. kramer: i, uh, need to speak to you about some lady problems. elaine: (unsure) oh-kay. kramer: (a little anxious) you know, after i have sex with emily, uh, i don't want her in the bed any more. elaine: ah. kramer: yeah, because she's throwing off my whole sleep. she's got the jimmy legs. elaine: (confused) jimmy legs? kramer: jimmy leg. elaine: (grasping the concept) ohh. kramer: so, uh, well, maybe i should just be honest with her, huh? elaine: tell her after sex, you just want her outta there? kramer: well, i'd say it nicely. elaine: i don't think so. kramer: well, you know, i really like this girl and i, you know, i think if i could just work out this one thing... elaine: (interrupting) yeah. i gotta be honest with you kramer. you might be more than just a coupla tweaks away from a healthy relationship. kramer: well you're not exactly zeroing in yourself, lady. elaine: (pointing to the door, angry) alright, get out. elaine: (impatient) get out! jerry: so listen, i gotta go down to atlantic city. i'm performing at bally's. morty: you just heard about this today? jerry: (pulling on a jacket) they had a cancellation and they instantly called me. helen: who cancelled? jerry: carrot top. i told you, my career's fine. george: i been, uh, thinking about the family. tell me, uh, about aunt baby. frank: (looks up to heaven) she's deceased. george: (glances upwards) yeah. uhm, why did she die so young? frank: (looks to estelle) she had problems. (estelle nods) internal. george: is that common in our family? estelle: well, your uncle moe, he died a young man. frank: also internal problems. estelle: it's that temper on your side. they're yelling and yelling, and then one day, they're all gone. frank: what about your side? your cousin hennie. (animated) she was sickly from the moment i met her! estelle: (shouts) don't you talk about hennie! george: i guess you two are the lucky ones. frank: so far. estelle: frank, if aunt baby were alive today, how old would she be? frank: she'd never make it. emily: so let me get this straight. you enjoy the lovemaking... kramer: shh, shh. emily: (quieter) well, do you? kramer: oh yeah, like strawberry pie. emily: okay, but you have a problem sharing a bed with me? kramer: i know it's not what the ladies like. but without some solid sack time, i'm a zombie. emily: i don't know. kramer: (pleading) aww, c'mon, man. meet me halfway. emily: you're not easy, kramer. kramer: i know. jack: so, to what do i owe the pleasure of this, unannounced, visit? jerry: i wanna buy back the cadillac. jack: you wanna buy it back? why, you go drugs hidden in the trunk? jack: i'm kidding. jerry: (reaching into his pocket) alright, i'll give you nine thousand for it. jack: nine thousand for a cadillac? it's got no miles on it. jerry: you bought it for six! jack: you're not me. jerry: (standing) how much d'you want for it? jack: the kelly blue book value. twenty-two thousand dollars. jerry: fourteen thousand. jack: done. but, i get to drive it tomorrow, because doris wants to go to naples. jack: need a pen? jack: still works. kramer: hey, where's jerry? helen: he's performing at bally's in atlantic city. kramer: aw, okay. (picks up the phone and starts dialling) yeah, i need his shoeshine kit. (still dialling) he always hides it from me. (puts the phone to his ear and waits for a second or two) yeah, bally's? yeah, jerry seinfeld's room, please. morty: you know that number? kramer: i used to have a problem. (into phone) well, what d'you mean, he's not registered? wha..s, e, i, n, v... helen: f. f, e, l , d. kramer: ...f, e, l, d. (half-laughing) well, i think you're wrong. (listens) alright, you have a lucky day, too. helen: he's not there? kramer: no, they never heard of him. elaine: this is so nice of you to take us all out to dinner, george. george: (oozing fake sincerity) well, as much as i enjoy all the good-natured ribbing, nothing really makes me happier than spending money on the people i care about. helen: where's jerry? george: oh, he'll be here. by the way, elaine, (reaches under the table and brings out a large coffee machine) thank you for laying out for the arabian mocha java. elaine: george, you didn't have to do this. i'm president of a big company. i can afford to buy you coffee. morty: (surprised) president? elaine: yeah. george: hey look, he's back. jerry: i got your message, (sitting) so i came straight from atlantic city. helen: jerry, kramer called bally's. you weren't registered. jerry: (extemporising) well, i can't stay under my own name. i was registered under slappy white. george: mom? dad? estelle: well, look who's here. hello, seinfelds. george: wh..what're you doing here? frank: we're having an upscale dinner. george: what? estelle: well, after talking to you, we realised we may not have much time left. frank: so, we're blowing it all. frank: (holding out his tie) look george, it's a pierre cardin. kramer: that was alright. emily: yeah. kramer: (abruptly) well, i'll see you. jerry: hello. jack: (shouting like there's a bad line) jerry, i had a little mishap with the car. jack: i'm down here in alligator alley. you better get down here. jerry: (quiet) huh. alright. helen: who was that? jerry: (extemporising) that was the golden nugget. also in atlantic city. they heard such good things about my show at bally's, they want me for tonight. so i'll have to repack, and go. morty: that didn't sound like the golden nugget. helen: i'm worried. what happens if we have to support jerry? morty: i'd have to go back to work. helen: where would you work? morty: maybe i should talk to elaine. elaine: well, mr seinfeld, i..i'm not sure i understand why you want a job here. morty: what's not to understand? elaine: well, for one thing, you live in florida. morty: i'm very comfortable working outta the house. i have a phone, we have a kinko's nearby. you know, i think that my resume speaks for itself. elaine: (looking around her desk) where is your resume? morty: i don't have it. i'll mail you one. elaine: alright, mr seinfeld, i... what kind of position did you have in mind? morty: you sell clothes here, don't you? elaine: yeah. morty: well, i sold raincoats in the garment centre for thirty-eight years. in nineteen forty-nine... elaine: (interrupting) alright. alright, alright. you come in tomorrow, we'll find something for you to do. morty: you won't regret this, miss benes. what time should i be in? i get up at four, i could be here as early as four twenty-five. elaine: uhm... peterman: (upbeat) oh, elaine, this dry air is curing me like a black forest ham. elaine: (stunned) mr peterman. you're back. morty: who's mr fancy? kramer: (hesitant) i uh, i was thinking maybe i should spend the night. emily: aww, that's sweet, but actually i, i think i'd prefer it if you left. kramer: (surprise) what? emily: you were completely right. i sleep so much better when i'm alone. (pause) and you scream in your sleep. kramer: i do? kramer: (fearful) there was a man, he was trying to get into my apartment last night. he was jiggling the doorknob for twenty-five minutes. emily: c'mon, it was probably the wind. kramer: no, no, no. it was a fearless cat burglar. (pleading) now listen, you gotta let me sleep here, huh? y'know, i'll stay here on my side, and i'll stuff a sock in my mouth. (panicky) 'cos i don't wanna sleep alone. emily: (adamant) well, i do. jack: what took you so long? jerry: i live in new york. (slams the cab door) what the hell happened? jack: this thing is a, is a behemoth. jerry: what did you do? jack: i was, i was making a, a simple lane change. i, i put on the blinker and it took off on me. and the next thing you know, i was submerged. i'm telling you, jerry, i'm very lucky that those crocs didn't get me. jerry: (exasperation) you are such an idiot. well, we gotta get the car cleaned up for my parents. jack: (shrugging) do whatever you want. it's your car. jerry: my car? you drove it into the swamp! jack: it drove itself into the swamp! besides, i think i lost my pen, too. jerry: (smiling with pleasure) you know, that almost makes this all worthwhile. george: (pointing outside) why is there a cadillac parked in front of the house? frank: that's your mother's new car. george: you bought that? frank: it's a coupe de elegance. estelle: your father wanted a mercedes, but i won't ride in a german car. kramer: mornin'. kramer: oh, boy. george: what the hell is going on here? kramer: i had some trouble at my place, so i need a little company at night to sleep. estelle: george, your mother and i, and kramer (holds kramer's hand) have been talking. george: (dread) oh god. kramer: uh, george, your parents can't blow through their savings in this community. it's low-rent. now, we feel that florida is really the place where they should be. frank: (claps his hands) you can drop a grand in disneyworld, like that. george: wait a minute. (astonished) you're thinking of moving to florida again?! estelle: well, it's either that or we stay here, near you, and just sit on the money. what do you think we should do, georgie? peterman: so, anyway, effective immediately, miss benes will return to her old position, at her original salary... peterman: ...and i, of course, will return to mine. kudos, elaine, on a job... done. elaine: (hardly daring to ask) what about my stock options? peterman: i think not. peterman: now, down to business. (thoughtful) i have had this vision of a diaphanous rum-runner scarf. elaine: well, we could fly some fabric in from our silk factories, for about a thousand dollars a bolt. morty: (shocked) a thousand?! i know a coupla chinamen over there on forty-third street, who'll do it for half that. elaine: (tactful) it's, ah, asian-americans. morty: what? peterman: (puzzled) who are you? elaine: don't worry, i... morty: morty seinfeld. i cut velvet for forty years with harry altman. elaine: okay, mr seinfeld, this is not the t... peterman: elaine, did you hire this man? elaine: (worried) no, no. well, i mean, you know, he's more like an intern, you know, at best. elaine: so, if your parents move to florida, you're poor. george: (pointing out the positive) but happy. elaine: obviously. and if they stay, you're rich, but... george: obviously. elaine: quite a dilemma. you know, i have a bit of a dilemma of my own. george: no, no. no, no, no. (determined) we're staying on me. we haven't solved anything yet. elaine: alright, this is easy. let 'em go. george: what d'you mean, let 'em go? they're spending all my money. elaine: alright, well, then they stay. lemma ask you something... george: (upset) could you put a little thought into this? jerry's gone, you could humour me. he humours me. elaine: speaking of jerry, his father is driving me so crazy down at peterman's. george: you know what i do at the yankees, when one of these old guys is breathing down my neck? elaine: what? george: you schedule a late meeting. elaine: (puzzlement) huh? what does that do? george: these old guys, they're up at 4 a.m., by two thirty they're wiped. (animated) how did we get back onto you?! elaine: (grabbing her bag and coat) i gotta split. george: (shouted after elaine) you know, i got nothing outta this! kramer: hey frank, you got two beds in here. frank: that's right. that's me on the left. kramer: so, you sleep in separate beds. frank: thirty years ago, we came to an agreement. it was the only way i could get some rest. kramer: (intrigued) really? frank: (confidential) estelle's got the (jerks his elbow) jimmy arms. kramer: you can get that in your arms? frank: like you wouldn't believe. jack: jerry, it's getting late. you've cleaned up the car. you've made all your phone calls. why are you still here? jerry: well, i uh, maxed out my credit cards, and i don't have enough cash for a hotel room. so... jack: you are uh, thinking of staying here? jerry: well... jack: (laughing) you've got some nerve. i almost break my neck in that death-trap of yours, and now you ask me for a favour! jerry: you didn't like that crack about the pen. jack: i did not. george: well, i've given this a lot of thought, and i've gotta say... george: (attempting sincerity) as much as i'd like to see the two of you living it up in a warm, tropical, setting, i, i would just miss you too much. (smiling) so, i've decided, i want you to stay. frank: it's too late. we bought a condo at del boca vista. we're leaving tonight. george: (crestfallen) but you said it was my call. estelle: we were just being nice. estelle: (motherly concern) cosmo, are you sure you're gonna be alright here alone? kramer: oh, yeah, yeah. i got emily coming over tonight. george: (animated) you're letting him have a woman over?! frank: he's not family. it's different, psychologically. peterman: and so, i made an explosive out of chick peas, and i stopped that great rhino right in his tracks. morty: well, it's getting kinda late, why don't we uh... elaine: mr peterman, that can't have been the only time that you faced mortal danger. peterman: (smiles and laughs) ha ha ha. funny you should ask, elaine. morty: look, if we're gonna stay here until all hours of the night, can we at least get some food here? peterman: (looks at his watch) it's only five fifteen. so, later on that same day, i developed a great hankering for some wild honey... morty: (standing) okay, i'm done. i'll be back in the morning, when he's close to finish with his story. peterman: morty. my stories are what sell these clothes. morty: cheap fabric, and dim lighting. that's how you move merchandise. peterman: (winks) morty, you're out. morty: (unconcerned) ach, i never knew what the hell i was peddling with those stupid cartoons and that paper book, anyway. kramer: i don't know why i let you talk me into that corned beef at snitzer's. emily: (not looking up from her book) no-one held a gun to your head. kramer: (dismissive) yeah. emily: (still reading) don't forget, we're eating dinner at the feinerman's tomorrow night. kramer: (moody) oh, why do i have to go? they're your friends. emily: you like 'em. kramer: i've had it with 'em. emily: then we won't go. kramer: (yielding) okay, okay. what time? emily: eight thirty. kramer: (satisfied) ahh. that was alright. elaine: 'one bright note in today's market, was the stock of retailer j peterman, whose founder's surprise return generated a rise of twelve and a half points.' jerry: mmm-mmm-mmm. that means, if you still had those stock options... elaine: (downcast) yeah. george: (jerry-style) that's a shame. elaine: (sharp) what, are you sticking it to me? george: (innocent) what? elaine: i think you're sticking it to me. jerry: elaine, i'm sure george is just being sympathetic. elaine: (leaning forward and accusing) stickin' it! jerry: you're not alone. i'm practically broke. elaine: really? jerry: no. but, i did blow over twenty thousand on that cadillac. george: (relishing) hmm-hmm-hmm-hmm. delicious. jerry: well, you seem happy. george: i am. the folks are twelve hundred miles away. (gleeful) i'm basking in the buffer zone. (looks for the waitress) 'nother piece of pie here! elaine: so, were your parents shocked to see the cadillac? jerry: actually, i haven't heard from 'em yet. elaine: hmm. morty: when are we gonna tell jerry? helen: i don't wanna worry him. we'll tell him next time we go up. morty: he thought he could buy back that cadillac for us? he's not getting away with that. helen: besides, that condo was too much house. estelle: how many times can you check the car? frank: (coming away from the window) i saw a bum sleeping in a cadillac the other day. estelle: why would someone break into a car to take a nap? frank: they don't nap. they make it their home. they urinate in there! estelle: (shouts) you're driving me crazy! frank: (standing) that's it, we're going back to queens. (claps hands) where's my hat? estelle: (shouts) nooh! bill: well, if the big man wants a new scoreboard, i don't wanna be the one to tell him no. reilly: no-one in the park is gonna be able to see it from there. george: (through a mouthful of shrimp) well, why don't we just put a monitor in his skybox? reilly: hey george, the ocean called. they're running outta shrimp. george: (angry, to himself) the ocean called. running outta shrimp. outta shrimp! (a thought occurs) oh! yes! that's what i shoulda said! (frustrated shout) dammit! jerry: 'the ocean called, they're running outta shrimp'? george: yeah, yeah, yeah. but then, i said to him, 'oh yeah? well, the jerk store called, and they're running outta you.' jerry: (smiling) really? that's great. you said that to him? george: (confessing) well, actually, i thought it up on the way over here. jerry: oh. that's not quite the same. george: no. no it's not. you don't know this guy. it woulda been so sweet. jerry: i'm gonna grab a can of balls. george: right. milos: hello. my name is milos. how can i help you. jerry: i need a can of balls. milos: can of balls for the nice guy, alri... milos: ...ahh. you don't plan to hit these balls with that racquet, do you? kramer: checking out the staff picks, miss benes? elaine: oh. (laughs) ha-ha. hey. yeah, yeah. (indicating shelf) this vincent guy, he is the best. he and i have the exact same taste in movies. kramer: oh, vincent is an art-house goon. i stick to the gene rack. elaine: gene? oh, it's so stupid and mainstream. kramer: (indicates 'gene' shelf) i've seen all these, so i went with a kramer pick. elaine: (reading) 'the other side of darkness'. huh, i never heard of that one. kramer: yeah, went straight to video. kramer: (positive) that makes me the premiere. elaine: (gets kramer's point) hah. kramer: jerry, have you ever seen the movie the other side of darkness? jerry: no. kramer: it's about this woman, in a coma. well, i couldn't finish watching it, so i want you to read this. jerry: (reading) 'i, cosmo kramer, having just seen the movie the other side of darkness, and not wanting to be in a coma like that lady in the movie, hereby want jerry seinfeld to remove my life support, feeding machine, lung-blower, etcetera, etcetera, etcetera.' kramer: can you do that for me, buddy? jerry: well, i don't if what you have here constitutes a legally binding document. kramer: well, i'm gonna type it up. jerry: yes, well, of course, but, even so, you may wanna talk to a lawyer. kramer: yeah, but, jackie chiles, he put a restraining order on me. (frustrated) i'm not allowed within two hundred feet of his office. i couldn't even give him his christmas present. kramer: oh, hey, new racquet, huh? jerry: yeah. (hands racquet to kramer) i wasn't gonna get it, but this guy milos, who runs the pro shop, he really recommended it. jerry: in fact, it's the only racquet he plays with. kramer: (picking up jerry's old racquet) well, you're not gonna need this any more. jerry: (accusingly) hey, this is the zee page of my address book. kramer: (explaining) oh yeah, i put all your zees on the weights and measures page. elaine: (emotional) oh. oh, bravo, vincent. bravo. (sniffs) elaine: what? vincent (o.c.): did you enjoy the movie? elaine: who is it? vincent (o.c.): it's vincent. elaine: of vincent's picks? vincent (o.c.): the same. jerry: he called you? elaine: he musta got my number off the computer. we ended up talking for, like, two hours. jerry: to a guy you've never met? (mild sarcasm) your screening process is getting ever more rigorous. elaine: trying to meet him. he's never at the video store. they said he sets his own hours. player (o.c.): little help, hey! elaine: (tossing the ball back) yeah. player: thank you. elaine: (laughing to jerry) oh god, that guy's terrible. jerry: (pulling on a jacket) mmm-hmm. elaine: hey, how come we played at this crummy place instead of your club? jerry: george used up all my guest passes already. elaine: ah. player: ahh. jerry: come on. player: thank you. jerry: (tossing the ball) here you go. jerry: (disbelief) milos? milos: (shock) oh, hey. (puts sunglasses back on) how you doing? milos: okay, we should uh, wrap it up here. elaine: so he was bad. what d'you care? jerry: elaine, i paid two hundred dollars for this racquet, because he said it's the only one he plays with. he could've played just as well with a log. kramer: hey. right, i talked to this lawyer guy, shellbach. now, he's gonna set me up, but you gotta come with me and be the executor. elaine: the executor? of what? jerry: kramer wants to die with dignity. elaine: there's a feather in your cap. kramer: i don't wanna be a vegetable, elaine. i just want out. (snaps fingers) george: sometimes in life, the gods smile upon you, my friends. jerry: d'you get someone to take that canadian quarter? george: i got another meeting with reilly. a whole new audience, and i bet i can get him to try that line again. elaine: who's reilly? jerry: george was scarfing shrimp at this meeting, and this guy says 'hey, george, the ocean called. they're running outta shrimp.' george: listen to the comeback. (pleased) 'oh yeah? well the jerk store called. they're running outta you.' george: (worked up) wha...you gotta be kidding me?! elaine: how 'bout this one? how 'bout, 'your cranium called. it's got some space to rent.'? george: (confused) what does that mean? jerry: (taps george's chest) hey, here you go. 'hey, reilly. the zoo called. you're due back by six.' george: (frustrated) no. no, no, no. you're not helping me. kramer: look, just tell him you had sex with his wife. that'll kill him. george: (shouting) i'm not looking for another line. i got the line. kramer: look, george, just think about it. you know, you're married, how would you feel if somebody says to you that they just had se... george: (really animated) alright, alright. you see? this is why i hate writing with a large group. everybody has their own little opinions, and it all gets homogenised, and you lose the whole edge of it. i'm going with jerk store! jerk store is the line! jerk store! yess! kramer: (picking the racquet up) did you take this out of the garbage? jerry: yeah, it's still got some spring in the strings. kramer: oh, jerry, this is a piece of junk. (drops racquet in the trash) how are you gonna be the executor of my living will? kramer: (indicating) you see? you can't let go. jerry: trust me, kramer. given the legal opportunity, i will kill you. kramer: i wish i could believe you. hey, elaine, do you have some free time tomorrow afternoon? elaine: me? kramer: yeah, because you're perfect. you're a calculating, cold-hearted businesswoman. and when there's dirty work to be done, you don't mind stomping on a few throats. elaine: (smiling, flattered) oh, ho, c'mon. shellbach: situation number four. you're breathing on your own, you're conscious, but with no muscular function. kramer: well, would i be able to communicate? shellbach: i don't see how. elaine: ach, i don't like the sound of this one. kramer: huhh, yeah, let's pull the cord. elaine: yank it like (pops open soda can) you're starting a mower. shellbach: moving on. you have liver, kidneys and gall bladder, but no central nervous system. kramer: well, i gotta have a central nervous system. shellbach: okay. one lung, blind and you're eating through a tube. kramer: naw, that's not my style. elaine: bore-ing. shellbach: alright, you can eat. but machines do everything else. kramer: (hesitant) uhm... elaine: i'd stick. kramer: yeah, yeah. stick. (to elaine) 'cos i could still go to the coffee shop. elaine: (points to kramer and smiles in agreement) that's right. jerry: hello milos. milos: jerry, thank god you got my message. thank you so much for coming down here. uhm, listen... jerry: (animated) you know, i spent two hundred dollars on a racquet because i thought you knew what you were talking about. milos: i..i... jerry: you can't even play. milos: believe me, it is milos great shame. but jerry, i could lose my business if anybody find out. how would you like extra year membership of the club? free. no charge. jerry: you could do that? milos: jerry, for you, anything. jerry: (indicating the woman) game, set and match, huh milos? milos: (apologetic) hah, jerry, i am so sorry. they tell me there is no way they can do it. (meek) is there anything else i can do for you? anything at all. i refund your money. jerry: (animated) you know what milos, i don't even care about the money. i just feel like i was taken by the worst tennis player i... milos: shhh-shhh. (whispers) i make it up to you. jerry: (doubtful) yeah, you'll make it up to me. jerry: tennis, anyone? elaine: oh, this is the one vincent told me about. the pain and the yearning. (reads from the box) 'an old woman experiences pain and yearning.' a hundred and ninety-two minutes? kramer: that's a lotta yearning, huh? elaine: you know, these movies are great, but they're just so emotionally exhausting. kramer: yeah, well, what you need is some summertime adolescent high jinx. elaine: really? kramer: (looking at 'gene' rack) see what doctor gene prescribes, huh? (pulls down a cassette) oh, here, look at that. weekend at bernies two. now, that's an hilarious premise. elaine: (laughs) huh. (looks from tape to tape) well... kramer: yeah. (taps the weekend at bernie's ii box) elaine: yeah, i could use a chuckle. kramer: (approving) yeah. elaine: what're you getting? kramer: nothing, i'm gonna finish watching the other side of darkness. elaine: oh. how much you got left? kramer: yeah, about two hours. kramer: yeah, she shot in that coma pretty quick. elaine: (at tv screen) bernie is dead, you moron! (frustration) just because he's wearing sunglasses he looks alive?! (picks up video box) ugh, how long is this weekend, anyway? (reads from label) ugh! elaine: hello. vincent (o.c.): (accusing) how's the movie. elaine? elaine: vincent? vincent (o.c.): (betrayed) the gene pick. how could you? i thought we had something special. elaine: (defensive) no, it doesn't mean anything. i'm not even gonna rewind it. elaine: vincent? fred: alright, let's get to it. george: wha..wait a minute, wha..what about reilly? fred: reilly doesn't work here any more. george: (surprise) what? i..i didn't hear about that. fred: oh, we only wake you up for the important meetings. patty: hello. jerry: hello. didn't i see you at the pro shop yesterday? patty: i think so. i'm patty. milos gave me your address. i hope you don't mind me waiting for you here. jerry: (to himself) hoh, that milos. (to patty) well uh, what shall we do, uhm, care for a cup of coffee? patty: why don't we just go up to your apartment? jerry: (surprised) alright. jerry: (to himself) gotta be an easier way. nurse (o.c.): doctor, how's her coma? doctor (o.c.): oh, exactly the same. doctor (o.c.): wait a minute, she's coming out of the coma. doctor (o.c.): mrs allbright, can you hear me? are you okay? allbright (o.c.): (bright and cheerful) i feel so rested and refreshed. get me a toothbrush. jerry: so, you play tennis? patty: (putting the glass down on the counter) enough talk, jerry. jerry: not for me, i love chatting. patty: (putting her hand to jerry's face) shh. patty: (anguished) no! no, i can't do this. (moving away) i can't go through with it. (sitting on the couch) not even for him! jerry: who? patty: (cries) milos. my husband! jerry: (shocked) your husband?! george: so concerned was he, that word of his poor tennis skills might leak out, he chose to offer you his wife as some sort of mediaeval sexual payola? jerry: (explanation) he's new around here. george: (hopeful) so, details? jerry: (walking away) well, i didn't sleep with her. george: because of society, right? jerry: (weary) yes, george, because of society. so how did the big meeting turn out? george: reilly is no longer with the club. (getting up) you believe that? jerry: ah, you're better off. now you can just let it go. george: yeah, i'm gonna let it go. jerry: you never really had the right comeback, anyway. george: (animated) are you insane? jerk store, woulda smoked that guy! smoked him, i say. kramer: hey. oh, jerry, listen uh, you know, i saw the rest of that movie, the other side of darkness? the coma lady wakes up at the end. george: (frustrated) ohh, i wanted to see that. (waves his arms in frustration) thanks. thanks a lot. kramer: i didn't know it was possible to come out of a coma. jerry: i didn't know it was possible not to know that. george (o.c.): (from bathroom) how was eric roberts as the husband? kramer: (shouting back) oh, unforgettable. george (o.c.): (disappointed) oww. kramer: (nervous) i gotta find elaine. y'know, she's gonna pull my plug. elaine: what? betrayed? oh, vincent, i'm so sorry. i... kramer: yeah, listen, uh, elaine, i've changed my mind about the whole coma thing. (positive) yeah, i decided i'm up for it. elaine: kramer, do you have any idea what you've done? manager: excuse me. elaine: what're you doing? elaine: wha..wha...? manager: vincent stopped making picks. elaine: (upset) well, how am i gonna know what movies to see? manager: we have a wide variety of gene picks. elaine: (dismissive) gene's trash. manager: i'm gene. elaine: (forcing a smile) hi. jerry: milos, i can assure you, i had no intention of telling anyone about your unbelievably bad tennis playing. milos: (not cheered) thank you, but, unfortunately, i have much larger problems to fry. my wife, she has no respect for milos anymore. jerry: i guess that's a risk you run when you dabble in the flesh trade. milos: patty, she, she loves tennis, as much like i do. (hopeful) wou..would you, wi..will you let me beat you in tennis? that is the only way i can show her i am still a man. jerry: (reluctant) well, i'll do it as long as there's no other girls around. i mean, i wanna be a man too. jerry: so you hurt vincent's feelings? elaine: (handing jerry an envelope) look what came in the mail today. jerry: (taking the envelope) wh..what's this? elaine: it's the play button, off his vcr. jerry: (examining the button) boy, look how far back it goes. it's like a tooth. george: (sitting) so, guess where mr 'ocean phoned' turned up? he's working for firestone, in akron, ohio. elaine: ohio? george: yep. i'm leaving first thing tomorrow morning. jerry: (nonplused) you're flying to akron, just to zing a guy? george: don't you understand? it's not about him. to have a line as perfect as 'jerk store' and to never use it. i, i couldn't live with myself. elaine: see, there are no jerk stores. it..it's just a little confusing, is all. george: (adamant) it's smart. it's a smart line, and a smart crowd will appreciate it. (shouting) and, i'm not gonna dumb it down for some bonehead mass audience! george: (waving apologetically) not you. old woman (o.c.): oh, brittle bones. how i long to be rid of the pain. elaine: hello. vincent (o.c.): elaine? it's vincent. elaine: (surprised) vincent. (pleading) where are you? i have to meet you. vincent (o.c.): no. i can't bear to have anyone see me. elaine: vincent, listen, i won't judge you the way everyone else does. you're, you're strange and beautiful, and sensitive. (blunter) now, let's have a look at you. vincent (o.c.): (relenting) alright, but, can you bring me few things from the store? i haven't been out in a while. kramer: (indicating that cars should pass him) well, go around, you bunch of crazies. you maniacs are gonna get us all killed. secretary: hi, can i help you? kramer: oh, yeah, yeah. i'm cosmo kramer. yeah, i had an appointment to annul my living will. secretary: oh. (looks at her watch) mr kramer, you had a ten-thirty appointment. it's two o'clock. mr shellbach had a tennis lesson. he's gone for the day. jerry: too good. milos: (triumphant shout) another game for milos!! hahaha! jerry: you're on fire today. milos: (shouting over) hey patty. look at this guy. he's awful! milos: (milking it) he's not a man, this jerry. he's not even married like i am. (laughs) huhuhuhu. jerry: (quietly) hey, uh, milos, i don't mind rolling over here, but could you lighten up on the 'not a man' stuff? milos: (shouting) hey everybody, look! the little chicken girl wants me to ease up. he can't handle this, so he cries like a woman! (laughs evilly) hahaha! elaine: hello? vincent? vincent: elaine? elaine: i got what you asked. vincent: just, leave it and go. elaine: w..well, can't i come in? vincent: no. go away. now. elaine: (pleading) no, no. vincent, i... don't shut me out. (beseeching) i just, i know you feel what i feel. woman: excuse me. can i help you? vincent: aw, dammit! elaine: (confused) uh, uhm, i'm, i'm here to see vincent. woman: well, i'm his mother. (stern) vincent, what's going on here? vincent: (shrieks) no, my acne! elaine: ahh-cnee. woman: (regarding the grocery bag) what d'you have here? woman: (disapproving) vodka, cigarettes, fireworks. (accusing) what kind of a sick woman brings this to a fifteen year old? elaine: (sick smile) we have the same taste in movies. woman: did he send you part of our vcr? elaine: yeah. woman: (entering the apartment) vincent! milos: (pointing and shouting) look at the big baby! (laughter) hehaha. (to jerry) hey, big baby, are you wetting yourself? maybe it is time for you to be changed. (laughter) hahah. jerry: (quietly) i told you to cut it out. milos: (quietly, to jerry) hey, c'mon, what're you doing? (to his audience) kramer: (waving) shellbach. kramer: racquet. reilly: so, george. you're proposing a snow tyre day at yankee stadium? george: (through a mouthful) long as they don't throw 'em on the field. (laughs) huhu. (indicating dish) help yourself to some shrimp, i brought enough for everybody. mcadam: (doubtful) i have to say this, this proposal doesn't make a whole lot of sense. george: well, you never know. (picks up more shrimp) let's see how many i can fit in my mouth. reilly: (leaning forward) you know, george... reilly: the ocean called. they're running outta shrimp. george: (standing) oh yeah, reilly? (smugly) well, the jerk store called. they're running outta you reilly: (unperturbed) what's the difference? you're their all-time best seller! george: yeah? well, i had sex with your wife. mcadam: his wife is in a coma. elaine: (to jerry) hi. (indicating kramer) how's he doing? jerry: he's been sleeping a lot. he's still groggy. elaine: oh. (puts the vcr down) i thought a movie might cheer him up. i got him a gene pick. jerry: what happened to vincent? elaine: (evasive) i'm kinda off of him. (looking around) uh, outlet? elaine: ah. kramer: (screaming) waahhh!!! george: 'my wife's in a coma.' yeah? well, the life support machine called and... george: (shouts) wait! yes! that's what i should've said! (frustration) d'ohh! george: (cocky laughter) huh haha! (shouts) you're meat, reilly! you just screwed yourself! (laughter) ha ha! [setting: a restaurant] ellen: so, they have this clock now, where you punch in your age, and all your risk factors. it actually counts down how much time you have left to live. jerry: so what's the great moment? you're on your death bed, they're pounding on your chest - and you're going 10, 9, 8,.. i told you this thing was good! ellen: (laughs) i can't believe this is our first date. jerry: i know.. how about dessert? ellen: i suppose i have to get a piece of cake.. jerry: why? ellen: today's my birthday. jerry: what? today? really? ellen: yeah. [setting: jerry's apartment] george: so, she went out with you on a first date.. and it was her birthday? jerry: yeah. and she picked the day! george: is she socially awkward? jerry: no, she's great! she's.. attractive, she's fun.. george: well, maybe she decided to celebrate her birthday on the monday after the weekend. jerry: she's not lincoln. kramer: hey! anybody up for lorenzo's pizza? jerry: i'll pass. kramer: oh, yeah? huh. (turns to george) hey, george! pizza? yum, yum! george: eh, i can't. i gotta go down to the foundation. i'm interviewing high schoolers for the susan ross.. scholarship. jerry: does it ever bother you that this organization- george: nope! jerry: is beating the bushes- george: nope! (starts heading for the door) jerry: to basically give this money away- george: noo! jerry: to virtually anyone, as long as they're not you? george: (standing in the doorway) i'm fine with it! fi-hi-hi-hine i say! (leaves) [setting: susan ross foundation conference room] student 1: and then i received a 740 on the english achievement test. (george looks bored) george: quick, what's your favorite animal? student 1: i.. i don't know.. frog? george: (disappointed) a frog? student 1: well, i.. i.. george: (annoyed) frog is wrong. george: (reading) i see here that you play the harp.. tell me, why do you have to tilt it? can't you just build it on an angle? it'd save you a lot of trouble. student 2: well, the modern-day harp has been refined over thousands of years- george: (annoyed) yeah, yeah. we'll, uh, let you know. george: (reading) i see your g.p.a's a 4.0. student 3: (smiling gloatingly) you like that, don't you? george: so, uh, steven.. i see you're president of the chess club. steven: state champs. george: who's your favorite chess player? steven: (hesitating, he mumbles) nastercoff? george: right. (mumbles) nastercoff.. what country is he from, again? steven: (sighs) i don't know.. i made it up. (gets up to leave) i'm never gonna get this thing. george: (gets up, stopping him) woah, woah, woah! what are you telling me for? you really had me going, there! c'mon, sit down. (they both sit back down) what do you want to do when you grow up? steven: i've been telling people that i'd like to be an architect.. [setting: jerry's apartment] elaine: so, get this mister peterman is finally letting me do some real writing. he's got this book deal, for his autobiography. he's gonna let me ghost write it. jerry: wow. that's great! when it comes out, i'll have to get someone to ghost read it. kramer: hey. jerry: hey. elaine: hey! kramer: alright, so there i am at lorenzo's - loading up my slice of the fixin's bar.. garlic, (imitates the shaking of garlic onto a pizza) and what-not.. mmm, mmm.. and i see this guy over at the pizza boxes giving me the stink-eye. (imitates the 'stink-eye') so i give hime the crook-eye back, (imitates the 'crook-eye') you know.. then, i notice that he's not alone! i'm taking on the entire van buren boys! jerry: the van buren boys? there's a street gang named after president martin van buren? kramer: oh yeah, and they're just as mean as he was! so, i make a move to the door, you know, (makes a noise) they block it! so, i lunged for the bathroom. (demonstrates) i grab the knob - occupado! then they back me up agains the cartoon map of italy, and all of the sudden, they just stop. elaine: what? what happened? kramer: because i'm still holding the garlic shaker.. yeah.. like this (grabs jerry's peper shaker, and demonstrates) i'm only showing eight fingers. jerry: well, what does that mean? kramer: that's their secret sign! see, van buren, he was teh eighth president.. (holds up 8 fingers) they thought i was a former van b. boy! [setting: outside a coffee shop] ellen: (sees a pay phone) oh, jerry, can you hold on a sec? i just want to check my messages.. (she meets up with two of her friends on the way to the phone) oh, melissa! kim! melissa: ellen. ellen: hey! you guys, i want you to meet jerry. (gestures tward jerry, then goes back to the phone) melissa: ohh, we've heard a lot about you! (confidentially) it is so sweet of you to take her out. kim: yeah, you don't even know how much she needs this. jerry: (sympathetically) she coming of a bad break-up? kim: (casually) no. melissa: see ya! jerry: any messages? ellen: yeah, no one called. [setting: coffee shop] jerry: they act like it was some act of charity. just going out with her. george: so, she's the loser of the group. every group has someone that they all make fun of.. like us with elaine. (jerry thinks about this, then shakes it off) jerry: there is no way ellen is the loser of that group. george: are you looking deep down at the real person underneath? jerry: no, i'm being as superficial as i possibly can! george: (changing subject) hey, i htink i may have found someone for the scholarship. jerry: yeah? george: i'm interviewing all these annoying little overachievers.. finally, this kid walks in - steven koren - a regular guy.. likes sports.. watches t.v.. jerry: is he smart? george: (defensively) he knows how to read. and he also knows finishing an entire book doesn't prove anything. and get this he's into architecture. jerry: hey! just like you pretend to be. george: yes. with a little guidance, steven koren is going to be everything i claim to be, only for real. that's my dream, jerry. jerry: i had a dream last night that a hamburger was eating me! [setting: j. peterman's apartment] elaine: mister peterman, thanks for having me over. your place isn't quite what i imagined.. (it's plain, with no sign of peterman's personality) peterman: ohhh.. it's just a place to flop. (sits in his recliner) elaine: well, (clears throat) what part of your life (hits the record button on a mini-recorder, and sets it down on the table) do you want to start with? foreign intrigue? exotic romances? peterman: oh, elaine, we've covered all of that in the catalogue ad nauseum. no, i would like this book to be about my day-to-day life. elaine: oh. peterman: (turns on the t.v, and starts flipping through the channels) oh damn. they changed the cable stations again.. just when i finally memorized them. elaine: well, mister peterman, do you want to, um.. peterman: (still flipping through the channels) 2.. cbs.. elaine: get, um, started.. peterman: 3.. i don't know what that is.. where's my damn preview channel? elaine: (after observing peterman's home life) well, i - i got ta tell you, mister peterman.. i don't think i see a whole book here. peterman: well, i'm sure we'll come up with something. what do you say you and i order ourselves a pie? do you like lorenzo's? elaine: you know, a friend of mine almost got beat up at that place by the van buren boys? peterman: (interested) you don't say. elaine: yeah. the only think that saved him is that he accidentally flashed their secret gang sign. peterman: well, that's pretty exciting. (pause) let's put that in the book. elaine: but, that didn't happen to you. peterman: so, we pay off your friend, and it becomes a peterman. elaine: no, i - i really don't think you can do that. peterman: (looking at his dying plant) ohh, damn. i forgot to buy plant food again.. i'll bet i got a coupon for it. (starts looking through a small coupon box) elaine: you know what? maybe i better talk to my friend. [setting: coffee shop] jerry: is that the same outfit you were wearing yesterday? ellen: no, this is brand new. do you like it? jerry: actually, yeah. (pause) wait a second! is that the fork that fell on the floor?! (dramatically) are you using the fork that fell on the floor?! ellen: (laughs) no, jerry, the waitress game be another one. jerry: i guess that's all right. ellen: is something wrong, jerry? jerry: no, absolutely nothing. (they get up to leave) you're fantastic! (they meet up with kramer and george on the way out) hey guys! george: hey. jerry: (gesturing to ellen) kramer, george, this is ellen. [setting: susan ross foundation conference room] george: ladies and gentlemen, this (opens the door, steven is standing there) is steven koren. his g.p.a. is a solid 2.0! right in that meaty part of the curve - not showing off, not falling behind. wyck: george, the quailifications for this scholarship were suppose to be.. largely academic. george: i'm sure we're all aware of the flaws and biases of standardized tests.. wyck: these aren't standardized tests - these are his grades. george: besides, steven koren has the highest of aspirations. he wants to be (pauses for effect) an architect. wyck: is that right? steven: actually, maybe i could set my sights a little bit higher. george: (laughs) steven, nothing is higher than an architect. steven: i think i'd really like to be a city planner. (sits down, addressing the entire foundation board) why limit myself to just one building, when i can design a whole city? wyck: well, that's a good point. george: (mutters) no, it's not. steven: well, isn't an architect just an art school drop-out with a tilty desk, and a big ruler? (laughs - so do the board members) george: (irritated) it's called a t-square. wyck: you know, the stupidest guy in my fraternity became an architect - after he flunked out of dental school! (everyone but george laughs) contratulations, young man. (shakes steven's hand) steven: thank you. wyck: susan would be proud of what you're doing. steven: thank you. [setting: peterman's office] kramer: and they made it their sign, because, van buren, our 8th president, was the man they most admired. peterman: (laughs) kramer, my friend, that is one ripping good yarn.. (hands kramer a check) kramer: you know, if you like that one, i got more.. what are you looking for? romance? comedy? adventue? .. erotica? (clicks his tongue) elaine: no, uh, kramer. i don't think - peterman: (interrupting) how much would you take for the whole lot? kramer: my whole lot? peterman: name your price, man! kramer: (thinks) 1500 dollars. peterman: i'll give you half that. kramer: (excited) done! peterman: kramer, my friend, (gestures to elaine) consider elaine at your disposal. kramer: okay.. (to elaine) well, i, uh.. i like to work in the evenings.. (elaine slumps back, and covers her head in misfortune) [setting: elaine's office] elaine: would you please just get on with the stupid bob saccamano story?! kramer: well, i'm on the phone with bob, and i realize right then and there that i need to return this pair of pants. so, i'm off to the store. elaine: what happened to bob saccamano? kramer: well, nothing. his part of the story is done. (elaine covers her face with her hands - showing her difficulty coping with kramer) so i'm waiting for the subway, it's not coming, so i decided to hoof it through the tunnel. elaine: alright, well, now that's something.. kramer: well, i don't know if i lost track of time - or what, but the next think i knew.. elaine: (adding) a train is bearing down on you?! kramer: no, i slipped - and fell in the mud. ruining the very pants i was about to return. elaine: (reflects on the story) i don't understand.. you were wearing the pants you were returning? kramer: well, i guess i was.. elaine: (still confused) what were you gonna wear on the way back? kramer: elaine, are you listening?! i didn't even get there! (pauses) all right, next story.. elaine: alright, i think i got enough for one day. kramer: yeah, yeah, chew on that. elaine: (mocking) yeah, i'll chew on that. kramer: oh, hey, listen, by the way - i'm hosting a little get-together tonight in honor of my little financial upturn.. elaine: oh, thanks. i've got plans. kramer: elaine, you should be there to document it. elaine: (putting on her coat) oh, you're getting together with some of your jackass friends, and you want me to take notes? kramer: yeah, but get there after nine. you know, give the poeple a chance to loosen up. [setting: jerry's apartment] jerry: so you're denying him the scholarship just because he wants to be a city planner? george: i was betrayed! that kid was like a son to me. and if there's one person you should be able to hold down, it's your own flesh and blood. like my father.. my father's father before him. jerry: you know, maybe philanthropy is not your field. (phone rings, he answers it) hello. oh, hi, ellen. yeah, i called the hotel.. we're all set for the weekend. george: you're spending the weekend with ellen? jerry: (to george, in a 'cha-ching!' motion) vermont! (to ellen) with any luck, they said we could stay an extra couple of days if we want to! (george is disturbed. he gets up, goes go kramer's door, and knocks. they talk) four days at a beautiful bed-and-breakfast! i can't wait.. buy-bye. (hangs up. george and kramer come into jerry's apartment, confronting him) what? (george takes the phone off the hook) what is this? george: (to kramer) you want to start? kramer: (to george) uh, no, no, no.. you go ahead. i gotta get my thoughts together. george: jerry, this whole ellen situation.. has gone far enough. jerry: what?! kramer: (adding) jerry, she's a loser. (george points to kramer - gesturing that he's right on target) jerry: where is this coming from? she's great! george: (concerned) why're you doing this, jerry? is it your career? things will pick up. jerry: there's nothing wrong with my career! kramer: (like a parent) well, i still like the bloomingdale's executive training program for him. george: i though we said we weren't going to discuss that now! kramer: well, you know, i think it's something he should consider. george: of course he should consider it, but now is not the time! kramer: listen, george, all these issues are interrelated. jerry: (fed up) alright! excuse me! (gets up) i'm not buying any of this! kramer: all right, so what're you saying? that we're wrong? oh, everybody's wrong but you! jerry: you know, this is liek that twilight zone where the guy wakes up, and he's the same - but everyone else is different! kramer: which one? jerry: they were all like that! [setting: nyc street] steven: why'd you take away my scholarship, mister costanza? george: well, steven, i, uh.. (all the sudden, a small gang steps out of nowhere, surrounding george) steven: these are my new friends - the van buren boys. member 1: he became so disillusioned, he had to join us. george: oh.. nice. steven: i want my scholarship back, so i can be a city planner. george: what about architect, steven? member 1: (moves threateningly close to george) city planner. [setting: cafe] friend 1: great party, k-man! kramer: yeah, well, you got that straight! (turns to elaine) hey, elaine, try the beef - because that's realy au jus sauce, huh. (dramatically) real au jus sauce! elaine: (sourly) i'll make a note of it. friend 1: hey, kramer, kramer: yeah? friend 1: ramirez has never heard your pants story. kramer: ohh kay! well, you know, i had bob saccamano on the phone, and i suddenly realized that i- (elaine stops him) elaine: you can't tell that story now. it belongs to peterman. kramer: what do ya mean? elaine: you signed the release. kramer: yeah. elaine: he sat in mud. not you. kramer: but i did sit in mud. elaine: (stern) ya didn't! you never sat in mud! kramer: (pleading) i was all dirty! elaine: it ever happened! understand? kramer: (to crowd) hey, hey, hey! all right! yeah, uh, yeah.. well.. uh, the pants. they, uh, they fit, uh, well - and so i, uh, decided i wasn't gonna return them! (laughs) wooh-hoo-hoo-hoo! friend 1: it's getting late. maybe we better get going. (they all get up to leave) kramer: what? you're gonna go now? hey, woah! i don't.. (watches his friends leave) kramer: (frantic) kramer, kramer! i got big trouble with the - with the van buren boys. kramer: hey, now, they're tough cookies. george: yeah, and i - i heard you got on their good side. now, what'd you do? kramer: uh.. ah, (looks over at elaine, and realizes he can't tell the van buren boys story) oh, nothing - nothing.. no, i certainly don't have any stories, if that's what you're implying. (laughs heartily) george: (frantic) kramer, do you know what those guys are gonna do to me?! kramer: yeah, well, uh.. you know uh, you didn't hear from me, but, uh, the van buren boys - they never hassle their own kind. george: you mean, like, a former member? [setting: jerry's apartment] elaine: these kramer stories are unusable! (thumbs through them) i mean, some of them aren't even stories! (holds one out) look, this is a list of things in his apartment! jerry: is my toaster oven on there? elaine: how am i ever gonna turn this into a book? jerry: well, just shape them - change them. you're a writer. elaine: yes! i'm a writer. jerry: make them interesting. elaine: interesting! of course! people love interesting writing! jerry: well, i gotta go to the airport. i'm picking up my parents. elaine: what? wheren't they just here? jerry: yeah. i'm flying them in to meet ellen. i don't know where to turn! i gotta see what they think of her. elaine: maybe we could all have dinner later? jerry: i don't think so. i'm gonna try to get them to fly right back tonight. kramer: oh, hey! hey, have i told you about my bunions? oh, you're gonna love this story! (rubs his hands together) so, i line up my cold cuts on the couch next to me, but as i'm stacking them up, they keep falling into my foot bath! (jerry and elaine look disgusted) jerry: kramer, this is awful! we don't want to hear about this! kramer: damn! jerry: what? kramer: oh, i bought a bunch of bunion stories from newman - but they all stink! elaine: how much did you pay for them? kramer: eight bucks! i think i got ripped off! (leaves, yelling out "newman!") [setting: peterman's office] elaine: oh, what didn't you like about the first chapter? peterman: well, it started out nicely "i'm returning some pants." a very identifiable problem.. (turns page) "i set of down a train tunnel.".. (turns page) but that's where the story takes a most unappealing turn. elaine: oh, no, no! that's where it gets interesting! don't you see? the - the train is bearing down on you, you - you dive into a side tunnel - and you run into a whole band of underground tunnel dwellers! peterman: it just seems so cliched, and obvious. it's not interesting writing. elaine: yeah.. yeah. i know. um.. how about if, instead of.. diving from the train, you.. uh, you, i don't know, you slip and, and fall in some mud, and.. ruin your pants? peterman: (intrigued) the very pants i was returning. that's perfect irony! elaine, that is interesting writing! (the intercom beeps) secretary: i have a cosmo kramer on line 4. peterman: (picks up the phone) peterman, here. kramer: mister peterson, you gotta sell me my stories back! peterman: you want to know something? i no longer need them! elaine: no, no. mister peterman, why don't we keep them - as a, as a reference? peterman: nonsense! (to kramer) i have benes' woderfully imaginative mind to spin my stories. you take back your tales, you vagabond! kramer: yippie-yi-yay! peterman: (hangs up) there you are, elaine. go forth, and create. (elaine gets up to leave) and, by the way, when you get to that chapter about my romantic escapades - feel free to toss yourself in the mix. [setting: nyc street] george: hey, van b. boys. steven: so, mister costanza, did you get my scholarship back? george: now, fellas, fellas.. easy. you wouldn't want to beat up on one of your own. member 2: is that right? then why don't you flash us the sign? george: right.. the sign. (hesitates, then makes a series of stupid gestures) steven: that's not the sign. george: (defensively loud) it was when i was banging! member 2: all right, if you really are one of us.. let's see you take the wallet off the next guy who walks by. george: love to! (cracks his knuckles, then winces under the pain) [setting: coffee shop] ellen: and after college, i got my masters at the sorbonne. morty: sorbonne? oh, hey. (to helen) that's in paris. ellen: (looks at her watch) oh, jerry, you're parking meter's about to expire. don't get up, i've got change. (leaves with her purse) jerry: (to his parents) so? what do you think? helen: jerry, she's fantastic. jerry: i knew it! i'm not crazy. helen: she's so sweet, and she's got some body on her! morty: and smart! like a computer! helen: and so much personality! but, it doesn't matter what we think. do you like her? jerry: (after seeing how much his parents like her) now, i'm not so sure. helen: well, she's 10 times better than that awful amber girl that you were with. jerry: yeah, amber.. i wonder if she's back from vegas.. [setting: nyc alley] member 2: the next one, or you're meat! george: alright, alright! (goes out onto the sidewalk. the seinfelds walk by) seinfelds! morty: hey, george! george: shhh! listen, you gotta do me a favor. give me your wallet. i'll give it back to you later. morty: how're your folks? george: eh, they're trying to pick out a new couch - you don't want to know. (remembering the watching van buren boys) give me your wallet, or i'll spill your guts right here on the street! morty: what did you say? george: come on, hurry up, old man! i'm an animal! helen: you're being very rude. come on, morty. george: (pleading) please, please, they're gonna hit me! (attempts to grab helen's purse, she starts hitting george defensively, he backs off) morty: tell your parents we said 'hi!' (they leave) kramer: look how dark it's gettin' already. jerry: well, it's not daylight savings time yet. kramer: when does it start? jerry: (pause) i don't know, they just tell you the night before. kramer: uh. well, i'm sick o' waiting. (pulls out his pocket-watch (it has a chain, too)) i am springin' ahead riiight now. jerry: (under breath) oh, i'm sure that won't cause any problems.. jerry: oh, god, it's mike moffit.. kramer: oh now, don't tell me you're still mad at him for calling you a phony. jerry, that was five years ago! jerry: i'm not a phony an' i don't want anything to do with this guy. kramer: hey! mike! mike: (sees and is enthused, coming over) kramer! jerry! how's it goin'?! jerry: fine. an' i'm not just sayin' that.. mike: guess what? i just started my own business. i'm a bookie! jerry: no openings in arson? mike: (pauses, struck by j's attitude) either of you guys wanna place a bet i'm your guy. kramer: (quickly) ah no no no. no bets for me, i uh, i got a disease. jerry: i'm feelin' a bit queasy myself. maybe i'll see you in another five years. (casually leaves) mike: kramer. jerry still mad about that "phony" thing? kramer: you kidding? it's all water near a bridge. mike: hey, what time you got? kramer: (pulling out his timepiece) oh yes. uh.. it's aaalmost six. mike: whoa--uh--i'm really late. (leaves) elaine: oh! these designs look great! peggy, you really saved me. peggy: oh, it was no problem. elaine: (leaving with the drawings) mr. peterman is gonna love 'em. peggy: (focusing on her work) thanks, susie. elaine: you won't believe this but, as i'm leaving, she calls me "susie." jerry: i don't see you as a susie. sharon maybe. elaine: what am i, a--a bulimic, chain-smoking, stenographer from staten island? jerry: who are you describing? elaine: someone i know. jerry: named sharon? elaine: i'd rather not say. george: hey. elaine: (to say hello) mmm! what's in the bag? george: (sitting) newww tuxedo. for the pinstripe ball. steinbrenner is throwing a huge party at tavern on the green, heh! jerry: kind of a yankee prom? george: (resentfully dampened) it's not a prom. it's a ball. jerry: you taking allison? george: yes, of course i'm taking allison. this woman is genetically engineered to go to a ball. tall, blonde, lithe-- jerry: live? elaine: lithe. george: live? elaine: (rolling her eyes) lithe! jerry: oh, lithe! elaine: well, you two'll have a great time there. jerry: it can't be worse than this. elaine: mmm! george: an' wait'll you see the dress that she's got. it's backless! uh?! i'm finally gonna make a great entrance! elaine: backless? ya gonna back her in? george: elaine, when a woman makes a ball entrance.. she twirls. elaine: she's not gonna twirl-- george: she'll twirl. george: that is what mr. steinbrenner wants. he wants, everyone, ta, twirl around. allison: (weary) all right. george: hey! uh--listen--did you get your--uh--boss's knick ticket, for kramer? allison: (digging in purse) yeah, uh--here. (hands him ticket) george: oh! great! allison: uh. say, george-- george: woo! courtside! (mock-snide) is that the best you could do? ha ha! allison: (sitting) george. we need to talk. george: what? allison: i really, think we need to talk. george: (pause) uh-oh. jerry: she wants to talk. george: she doesn't want to talk, she needs to talk. jerry: nobody needs to talk. george: who would want to. she tried to end it with me, jerry. jerry: what'd ya do? george: i told her i was out o' soda, i went out to get some, an' i never went back. jerry: (pause) all night?! george: yeah, i slept at my parents' house. jerry: and she wants to break up with you.. george: ha! (snort) can you believe it? (amused) i'm supposed to be havin' lunch with her right now at pomodoro. jerry: uh-oh. "everybody breaks up at pomodoro's." george: so? what'm i gonna do? jerry: you really like this girl. george: no. i like the ball! this is my one chance to make a great entrance! my whole life! i have never made a great entrance! jerry: you've made some fine exits. george: (admitting) all right.. jerry: so what do you do? you can't keep avoiding her. george: (resolved) why not. (determined) if she can't find me, she can't break up with me. and, if we're still goin' out, she has to gooo to the ballll. kramer: (suddenly entering) hey, oh--listen. did you get my ticket from allison-- george: yeah, yeah, right here. (hands it to him) kramer: all right! yeah.. courtside.. whoa! don't let this girl get away.. george: (clipping on shades) ha.. she'll have to find me first. (leaving) kramer: (all right.) (to jerry) ah? oh, by the way you owe mike a hundred dollars. jerry: what for? kramer: well i put a bet down for ya on tonight's game. yeah, if the knicks beat the pacers by more than thirty-five? it pays ten to one. oo-oo! that's some sweet action! jerry: but i don't want any "sweet action." kramer: well, i couldn't do it i got a gamblin' problem. jerry: so you put down my money?! kramer: (impatient sigh) you don't have a problem. jerry: not (with) that, no.. peggy: susie. susie! elaine: (coming in) uh.. hi, peggy. um.. look, i should have said this yesterday, but-- peggy: did you get this memo from elaine benes? elaine: yeah. see that-- peggy: (preoccupied) you know, it's amazing peterman hasn't fired that dolt. she practically ran the company into the gro-ound. elaine: well. well, i thought she did a pretty good job.. peggy: i heard she was a disaster, suze-- elaine: (testy, leans into peggy's personal space) look-it. it's not suze. all right? it's su-zie. my name, is su-zie! george: (on tape, singing) "believe it or not, george, isn't at home, please leave a mes-saaage at the beep. i must be out or i'd pick up the pho-one. where could i be? believe it or not, i'm not hooome." (beep) jerry: george, pick up. i know you're screening for allison. george: (answers phone, good mood) hey. jerry: so, coffee shop? george: no, i can't. she knows i go there. it's not secure. (the call waiting beeps) hey, i got another call comin' in. i gotta let the machine get it. bye. (hangs up) george: (on tape, singing) "believe it or not, george, isn't at home, please leave a mes-saaage at the beep. i must be out or i'd pick up the pho-one. where could i be? believe it or not, i'm not hooome." (beep) allison: (on phone machine, peeved) george? are you there? (muttering) i hate that stupid message. (terse) i know you're avoiding me, i'm at the office, please call me, i've gotta talk to you. (hangs up) george: (to phone) hi, allison? oh, i guess you're not at home.. i probably should 'ave tried you at the office. anyway, good to hear from ya, really looking forward to the ball.. (hangs up and happily chuckles) ha ha! elaine: can you believe this woman? jerry: (ironic outrage) the nerve. talkin' about ya behind your back--and right to your face! elaine: no. "suze!" i mean, "suzie!" "suzanne!" "suzanna." fine! but there is no, way, i'm gonna be a suze. jerry: no. no suze. elaine: (tense) i mean--what am i--some pom-pom-wavin' backseat bimbo?! jerry: who are you describin'? elaine: someone i know! jerry: named suze? elaine: no, still sharon! kramer: (comes in, subdued) hey. (grabs a water from refrigerator) jerry: hey, i thought you went to the game. kramer: no. i was kicked out for fightin' with one of the players. (leaving) jerry: wait. way--way--way--way--way--way--wait! who?! kramer: (stops) w--reggie miller. elaine: cheryl miller's brother? kramer: yeah. (leaving) jerry: hey--hey--hey--wait, wait, wait, wait! what happened! kramer: (stops again) well, first of all, for some reason, they started the game an hour late. and uh, i was sittin' next to spike lee an' he an' reggie were jawin' at each other, so i guess i got involved. (leaving) elaine: (same time as jerry) --wait, whoa--whoa--whoa--whoa!-- jerry: well--wait--wait--wait--wait! what do you mean "involved"?! kramer: (stops again) well i.. ran out onto the court an' threw a hotdog at reggie miller. "involved." an' they threw meee, an' reggie, an' spike out o' the game. elaine: so that's it? kramer: well i, well i, felt, pretty bad about everything an' uh, then the three of us, we went to a strip club. (leaves) jerry: can you believe that? elaine: i didn't know cheryl miller's brother played basketball. kramer: (suddenly comes back, excited) the knicks killed 'em a hundred an' ten to seventy three! jerry: what--of course, without reggie miller, it's a blowout! kramer: no, jerry--that's thirty-seven points! the knicks covered! you won! see, that's a cooool-g, daddy-o--now you gotta let it riiiide! jerry: on what?! kramer: (real addict) ah, come-on, jerry--i don't wanna lose this feeling. hey--let's go down to the o.t.b. we'll put some money on the ponies. (getting out pocket-watch) jerry: yeah, all right. kramer: (looking at watch) ssssh--ah! they just closed! jerry: (not) oh. too bad. elaine: mr. peterman? you wanted to see me? peterman: apparently peggy--down in design?--got into a liiiittle bit of a tiff yesterday with somebody named, "susie"? elaine: su-sie? peterman: yes. between you, me and the lamppost. and the desk. peggy says this "suze" isn't much of a worker. elaine: (nit) it's susie. peterman: nevertheless, elaine. the house, of peterman is in disorder. first thing tomorrow morning i want to see you, peggy, and, susie right here, in my office. elaine: (dismayed) ah, all o'--all of us? kramer: allison. hi. uh--listen i'm really sorry about what happened at the game last night. listen--could i have a ticket tonight--'cause the rockets are in town an' that, hakeem olajuwon? ohhh--he's got a real attitude. allison: kramer? have you seen george, around? i can't get a hold of him. kramer: oh, yeah, yeah. well, he--uh--visits the guy across the hall from me like every ten minutes. allison: oh yeah? jerry: (singing) believe it or not, geooorge isn't at home. mike: (comes up) hey. jerry. jerry: hey mike.. how 'bout those knicks? mike: (a little anxious) yeah! how 'bout 'em? ha ha. look, jerry. i can't pay you. jerry: why not? mike: 'cause i don't have the money.. jerry: mike. you say you're a bookie? you take a bet an' then you can't pay? i don't know, mike, to me it sounds a little, how you say.. "phony"? mike: just give me 'til friday. please. please! jerry: you know, you're supposed to be the bookie. act like one. mike: i'm sorry. uh--oh here--let me give you a hand with that. jerry: (trying to shut the trunk hood) something wrong with this trunk. mike: oh. let me see. george: so--ah, kramer. why'd you ask me out to dinner? (amused) an' why pomodoro? kramer: (quiet, delicately) allison spoke to me, and um. she wanted me to speak to you. george: (quiet) uh-oh. kramer: we all know that this relationship isn't working. so allison an' i think that the best thing to do is just.. make a, clean break. george: can't we discuss this? kramer: (reasoning) we just don't think you're ready for a serious relationship! george: (dismayed) i didn't even know you wanted to get serious! kramer: (dismayed) so what am i in this for? you know, i'm getting to a point in my life where i need something more than just.. a good time. (is tearing up) george: (pause) are you? kramer: wha--me? no! no. but she is. george: i, i can't believe this is happening! kramer: george, we're sorry. george: krama. please. kramer: (leaves, upset) waaa-aa--aa! i'm sorry-- elaine: (entering, uneasy) mr. peterman, peggy, i.. guess we, should just get this over with. (sits) peterman: just hold on a minute. still one short. elaine: oh. no, we're not-- peggy: susie has been very rude to me. peterman: well, elaine, has nothing but good things to say about susie. elaine: look. (engaging smile) we don't have to name names, or, point fingers, or.. (breathes in) name names! (indicating empty chair) me and her, have had our problems. she and i have had our problems! you and i, and she and you-- peterman: don't you drag me into this! this is between you and her, and her. (indicating empty chair) elaine: yes! and i am convinced that if she were here with us today, she would agree with me, too. peterman: who. elaine: (uh-oh) her? peterman: where is she?! elaine: ah--this is part of the problem! peggy: iiii thought i was, part of this problem. elaine: (smiling, convincing) you're a, huuge part of the problem. but, i think that at it's core, this is a susie-and-elaine problem that requires, a susie-and-elaine solution! and, who better to do that than.. elaine and susie! susie and elaine! peterman: well, now that we have that cleared up.. why don't the three of us have lunch. elaine: (feigning hearing something) what?! oh! oh, i'm, coming! i--i gotta go. (rushes out!) peterman: she is the best. what was your name again. kramer: mike's outside. he wants to talk to you. jerry: well why doesn't he just come in? kramer: because he's scared, jerry. jerry: why is he scared. kramer: (sighs, opens door) come on in. did you do this? (mike has two hand casts on) jerry: yeah, but-- kramer: uh--ah--ah! you broke his thumbs. jerry: it was an accident. kramer: oh, is that what you call it when, somebody doesn't pay up? mike: (desperate) i'll get you the money, jerry. i got a hundred dollars in my front pocket if you want to, reach in an' take it! jerry: (hands up) i don't want it that way. kramer: nuh! okay jerry, how about if mike fixes your truuunk, we call it even, an' this way, nobody has to get hurt. jerry: (whatever) fine.. mike: oh--uh--thank you, jerry, thank you! i won't forget this, i'm gonna fix your trunk good--real good! kramer: see that was nice, jerry. (under breath) oh, by the way, i'm the one who broke your trunk. jerry: ah, it's just a car. george: hi. kramer: (looking down, nodding) hi. george: it's, funny runnin' into you here. kramer: yeah, yeah.. george: (embarrassed/self-conscious about his gut) do i? thanks.. you too.. kramer: ooo, yeah.. (indicating his face, embarrassed) (heh, right.) you know, it's gettin' kind of late, i, i really have to be going, so, uh, it's nice seeing you again, all right-- george: (sad) yeah! yeah. hey--hey you, you know.. maybe i'll call you sometime. kramer: george, it's over. it's just.. it's over. (leaves) george: (pause) what do you think, jerry. jerry: (wistful) i don't know, i just see you guys together. mike: thumbs! mike: (from inside the trunk) oh! help! somebody, help! help! jerry: so peterman bought it? i can't believe you got away with that! elaine: well, i'm very fortunate to be surrounded by such stupidity. jerry: yeah, i know how you feel. elaine: do you hear something? jerry: what? jerry: oh, the trunk's broken, it's rattling. elaine: jerry, i don't know how much longer i can keep this up. they're starting to give susie assignments now! jerry: well, there's only one thing to do. eliminate her. elaine: what? jerry: (firmly matter-of-fact) get rid of susie. make her disappear. elaine: i kinda like her. jerry: she's gooone. elaine: jerry-- jerry: (impatient) gone! (starts maniacally laughing) (briefly stops to point and explain) that bumper sticker. mike: (desperately anxious) oh god, i'm in trouble.. george: krama. open up! i--i know you're in there! kramer: (opens door) uh--george, uh--uh--it's five o'clock in the morning, what's the matter with you.. george: (sad) it's only four.. kramer: huh? george: i--i've been, walkin' around all night.. i've been thinkin' about allison and me.. an' you-- kramer: oh. oh, george. george: please. give me another chance. kramer: (regretfully) uh.. i know i'm gonna regret this. (sigh) all right. george: (grateful, relieved) thank you! i'm gonna make you both so happy! kramer: all right, all right, i'll see ya later. (shuts door) george: (delighted!) woooo! peterman: elaine! where's susie? i want her to head up our new fingerless glove division. elaine: (quiet) oh, but i thought i was in line for that assignment. peterman: mmmmm--nah. elaine: all right, then, i was gonna wait, to tell ya this, but.. last night, susie.. (difficult subject, quiet) she took her own life.. kramer: (happy, enthused) we're takin' george back-- allison: what?! kramer: he's gonna make us very happy. elaine: (quiet) look at this turnout. jerry: (quiet) where did susie find the time to meet all these people.. elaine: (irritated) your funeral's not gonna come close to this. peggy: (to herself) oh my god! (quiet) susie? elaine: (quiet) oh, oh--ho--i'm not susie.. i'm elaine. peggy: but i've been calling you susie. elaine: oh! hadn't noticed! excuse me. (she's going to the podium) peggy: i guess i never met susie. jerry: (privately amused) suze? i actually had a little thing with her for a while. (indicating elaine) her too. elaine: what can you say about a girl like susie? (she doesn't know..) kramer: hey. george: where's uh, where's allison.. kramer: oh, allison, she didn't want to come. george: but you took me back. kramer: well, yeah, i did, but she's a tough nut. how d'ya like the tuxedo. it's a rental but i've had it for fifteen years. all right, eh. (heading in) george: where are you goin'.. kramer: the ball, silly. george: (afraid not) no no, no no no. you're not goin' in there. kramer: george. i thought you were gonna change. george: (impatient) for her. not for you. kramer: (light admonishing, under breath) let's just try, an' have a nice time for once, an' we'll talk about this when we get home.. george: all right, look--wait--wait--krama--wait, wait a minute, you are not. you are not goin' in. ah-ahhh! wilhelm: wow! what an, entrance! (friendly, to george) and eh, who might this be? kramer: oh, i'm with him. wilhelm: oh. ah-ha.. elaine: and.. also, much like me, susie hated going to the, market. peterman: elaine! may i say a few words. elaine: oh, god, yes, mr. peterman. (steps down) peterman: (steps up to the podium, refreshed) ahhh. i don't think i'll ever be able to forget susie--ahhh. and most of all, i will never, forget that one night. working late on the catalogue. juuust the two of us. and we surrendered to temptation. and it was pretty good. jerry: (proud to peggy, under his breath) yeah, but he didn't sleep with both of 'em. (winks) peterman: but iiii never heard her cries for help. (sighs) an' nowww.. susie is gone. mike: (running in, still hoarse, desperate!) hold on! hol--on! susie didn't commit suicide! (rushes up to podium!) she was murdered, by jerry, sein-feld! jerry: (smugly, under-his-breath) not only that, i broke his thumbs. peterman: elaine? guess what. i've decided to form a charitable foundation, in susie's honor. and as susie's best friend, i want you to be involved. elaine: mr. peterman.. (leaning forward, whispering) i'm susie.. she's me.. peterman: (leans forward, whispers carefully) i feel the same way. (announcing) and that's why this foundation will meet around your schedule. nights! weekends! every, free moment you have. (leaving, pats her shoulders confidently) elaine: (looks up, screaming in frustration!) suuuuuuuuuuze! [jenna's apartment: bathroom] jenna: morning. jerry: morning. jenna: hope you don't mind baking soda flavour. jerry: (applying paste to brush) ah, baking soda. annoying little product. 'i can do this. i can do that.' why doesn't this stuff just shut up? jenna: i'm gonna grab you a towel. jerry: ooh-ooh george: so? jerry: so? she used the toothbrush! george: you said you grabbed it outta there real fast, right? jerry: yeah. george: so i'm sure whatever germs it landed on were knocked out, and by the time the rest of them realised what was going on, you had already grabbed it out. jerry: how many years of med school did you have? george: was she mad? george: you didn't tell her. jerry: jenna's like me. she's very... (searches for word) george: finicky? prissy? fastidious? jerry: i'll take fastidious. jerry: what is that? george: ahh, steinbrenner gave 'em to us, in honour of phil rizzuto being inducted into the hall of fame. head: holy cow! jerry: they don't actually have to squeeze his head to get him to say 'holy cow', do they? george: just the last few innings of a double-header. kramer: hey. look at this. i'm in the passing lane of the arthur berkhardt expressway, going seventy and (makes impact sound - pckergh!) dragged this thing for five exits. jerry: why didn't you pull over? kramer: well i was draughting behind a semi. i didn't wanna lose him. the infrastructure, jerry, it's crumbling. head: holy cow! kramer: well, look at that. a talking nixon. owner: china panda. elaine: yeah, i'd like to place an order. owner: ah yes, what you like? elaine: this supreme flounder, it says first time served in america. is that true? owner: what number? elaine: forty-seven. owner: yeah, first time. what else? elaine: uh, that's it. owner: address? elaine: seventy-eight, west eighty-sixth street. apartment three e. owner: that's southside. sorry, we don't deliver below eighty-sixth. elaine: i'm not below. owner: yes you are. street itself is boundary. elaine: your guy can't cross to my side? owner: if we deliver to you, then what? eighty-fifth street, wall street, mexico, eighty-fourth street. elaine: alright, fine. i'll just cross and meet him. owner: sorry, food only for those who live within boundary. (slams down phone) owner: (picks up phone) china panda. elaine: (using silly voice) uh, yeah yeah. i'd like to place an order. owner: ah, what you like? kramer: well, i'm a poppa. jerry: bring it on. nothing's throwing me at this point. kramer: (handing jerry a cigar) well, as of today i am a proud parent of a one-mile stretch of the arthur berkhardt expressway. jerry: oh, that adopt-a-highway thing. kramer: yeah, i'm part of the solution now jerry. yeah, i went down there and i checked it out this morning. here, take a look. mile one-fourteen. jerry: aw, looks just like you. kramer: aw, i'm beaming jerry. jerry: so what d'you have to do? pay to keep it clean? kramer: they try to push you into using their cleaning crew, with all their so-called maintenance equipment. jerry: that old scam. kramer: yeah, well that's why i'm doing it all myself. this parenting isn't about delegating responsibility, it's about being there. jerry: at the side of the road, with a pile of garbage. kramer: quality time. george: keys. i can't find my keys. jerry: you lost phil rizzuto's head?! george: have you seen 'em? jerry: no. george: dammit! kramer: c'mon, retrace your steps. what d'you do today? george: i got up, i was supposed to go to work, i came here instead. kramer: right. jerry: well, they're not here. you'll have to dig up your spare set. george: i don't have a spare set. all my keys say 'do not duplicate'. jerry: so? george: so you can't duplicate 'em. kramer: sure you can. (to jerry) such a sweet kid. elaine: oh. oh, hi. china panda? delivery boy: (suspicious) why you waiting on the street and not in your apartment? elaine: i... thought that i would meet you halfway. delivery boy: you really live here? elaine: oh yeah. (handing over money) there you go, keep the change. bye now. i'll see you. elaine: (at the boy's back) this isn't fair. this is address discrimination! jerry: well, i cleaned out their whole dental hygiene shelf. george: so the plan is to secretly sterilise her mouth? jerry: by the time i'm through with her mouth, she'll be able to eat off it. is it safe to drink bleach if you dilute it? george: no, stings the throat. anyway, so i was coming along here, and i felt like a piece of cake, you know? but then i thought, it's morning, i should really have a muffin. i like those chocolate chip ones. then i figured, well, they're really both cake. so i, uh, i sat on that bench for a little while, twenty minutes or an hour, and then i figured, check and see what you were up to. (a thought occurs to him) wait a minute, wait a minute. the broad jump! the broad jump over the pothole on eighty-sixth street! george: now i remember, as i jumped over the hole i heard a, like a jingling sound. jerry: you didn't look down? george: i was trying to stick the landing. (indistinct) ...was right around here. george: no! no!! head (o.c.): holy, holy cow! jerry: poor son of a bitch. jerry: it's a hundred thousand revolutions a second. it's the most powerful one they make. jenna: it's like i'm holding a blender. jerry: the engine's made by mcdonnell-douglas. jerry: oh no, you keep going. it shuts off automatically. jenna: (restarting and reapplying the brush) really, it does? jerry: (unheard by jenna) when the battery runs out. jenna: (shouting to jerry) i was really happy with my old toothbrush. jerry: no, trust me, that one was doing more harm than good. don't forget to use the plax too. jenna (o.c.): that stuff tastes like bleach! jerry: i don't know anything about that. jenna: mmm. my mouth feels so clean. jerry: that's the idea. jerry: you know, maybe we better not. i, i think i'm getting a little cold. i don't wanna give you any of my germs. jenna: aww. okay. thanks, i guess. elaine: you still couldn't kiss her? jerry: she has a taint. i can't see it, but i know it's there. elaine: oh, so now you're finding fault on a sub-atomic level. jerry: maybe if i could shrink myself down, like in fantastic voyage, and get inside a microscopic submarine, i could be sure. although if there was something there, it might be pretty scary. course, i would have that laser. elaine: jer, do you see where this is going? jerry: being really clean and happy? elaine: jerry, you have tendencies. they're always annoying, but they were just tendencies. but now, if you can't kiss this girl, i'm afraid we're talking disorder. jerry: disorder? elaine: and from disorder, you're a quirk or two away from full-on dementia. jerry: (thoughtful) hmm, that could hurt me. (pointing out of window) hey, there it is. elaine: shall we stop and say hi? jerry: nah, we've seen it. elaine: yeah. kramer: (shouting after car) hey jerry! yeah, i'll see you back at the house! kramer: mile one-fourteen, clean as a whistle. man: yeah? elaine: hi. i'm your neighbour, uh, fr... from across the street. and uh, (coughs nervously) i was wondering, if it wouldn't be too much trouble, if i could use your apartment to order some food? man: wha? what d'you want? elaine: you see, there's this certain flounder and they won't deliver it to my side of the street. man: wh, when is that? elaine: no, i just need them to deliver it here and i have to be kinda inside is all. man: who are you with? elaine: no, actually i'm... i'm just kind of hungry. man: who let you in? elaine: well, the lock was broken. you just have to jiggle it, actually. but, i just need like a half an hour to an hour. jerry: what's with the signs? kramer: hey, you should see the berkhardt, jerry. my mile is spotless. i mean the big stuff was easy. cinderblocks, air-conditioners, shopping carts (makes sound - fzup!), i just rolled 'em into the woods. jerry: yeah, that stuff's all natural anyway. kramer: (holding up a sign) speed limit, one hundred and sixty-five miles per hour. see? they slipped a one in there. (laughing) those kids with the spray paint, god love 'em. jerry: hey. so, keys? george: no keys. and i been calling the city all day. course there's not really a number to call if you wanna make a pothole. jerry: i guess they leave that up to the general population. george: i tell you this. if the real phil rizzuto was down there, this wouldn't be happening! jerry: hard to say. kramer: hey, you need some roadwork done? 'cos i met some maintenance guys today on the highway, they could probably help you out. george: really? kramer: oh yeah, yeah. i borrowed some cones from them when i was sweeping my car-pool lane. jerry: yeah? jenna (o.c.): it's jenna. jerry: if you guys wouldn't mind, i would like to ward off dementia. george: you think you could hook me up with these guys? kramer: oh yeah, yeah. give me a ring tomorrow. i'm gonna be at emergency callbox seven-eight-four. george: seven-eight-four. jenna: hey. jerry: hi. jenna: how you feeling? jerry: good. my cold's gone, and i've been looking forwards to kissing you, which i'm ready to do now, if you are ready. jenna: what?! jerry: nothing. i just, i uh, i bruised my lip. i was drinking a celray, and i brought it up too fast and i banged it into my lip, (lower voice and hurriedly) and then i knocked your toothbrush into the toilet and i wasn't able to tell you before you could use it. jenna: what? jerry: i'm sorry. jenna: when were you gonna tell me this?! jerry: obviously never. kramer: i need the yield sign. jerry: kramer, i'm kind of in the middle of something. would you get these signs out of here, please? kramer: you could've introduced me. jerry: i wouldn't know where to start. jerry: (knocking) hey, jenna. hey! jenna: there. now something of yours has been in the toilet. jerry: what?! wha... what'd you put in there? jenna: gotta run. jerry: oh, man! jerry: (into phone) hello, jenna, did you dunk the spatula? was it the spatula? hello? dammit! elaine: she won't even give you a hint? jerry: no. could be anything. the whole apartment's a biohazard. elaine: you know what i bet it is? (points) your remote. jerry: yes, that is a definite possibility. elaine: (walking to the couch) or, could be your walkman there. jerry: are you just screwing with me? elaine: yeah, i am. kramer: hey ah. jerry: hey, how's life on the road? kramer: oh, i'm making a difference jerry. jerry: i don't doubt it. kramer: you should see the smiles on the drivers' faces. i mean, you gotta look quick, but they're there. jerry: what's this? kramer: well, you know, those annoying little bumps on the lane-lines? (makes noise - bum, bum, bum, bum, bump) jerry: isn't that some kind of safety thing? kramer: well, i had to pull 'em up if i'm gonna widen the lanes. jerry: what the hell are you talking about? kramer: ah, you know how in planes they got first class? more leg room, better ride? well, i'm bringing that concept to mile one-fourteen. elaine: how are you gonna widen the lanes? kramer: well you black out lane-lines one and three, and a four-lane highway becomes a two-lane comfort cruise. (to jerry) so, you got any black paint? jerry: (sarcasm) yeah, in my toolshed, next to the riding mower. elaine: (into phone) yuh, i'd like an order of supreme flounder, number forty-seven. yeah, apartment one-q. jerry: one-q? whose apartment is that? elaine: that's the janitor closet, across the street. jerry: you're pretending to live in a janitor's closet, just to get this flounder? elaine: it's better than eating it alone in the restaurant, like some loser. kramer: that stuff is unbelievable. i'd eat it out of a dumpster. elaine: (heading to door) how do you know about it? you're not in the delivery zone. kramer: well, newman uses his mail truck to run fish for china panda on the weekends. elaine: well, mine's coming in ten, so... see you boys. kramer: now, where's that tool shed of yours? elaine: hi. sorry, i didn't hear you. i was in the shower. elaine: i'll see you. ralph: you costanza? george: yeah. thanks for, thanks for coming by fellas. eh, got a set of keys, buried in the pothole. ralph: what're the keys doing in there? george: just need to uh, to dig 'em up. ralph: you put 'em in there? george: nah, nah, it's uh, it's a long story. just uh, try to get it up. ralph: bad place to put your keys. george: yeah, i know that. (clears throat) could you start, working? ralph: difficult job. you want those keys, we're gonna have to dig this up. george: (penny drops) oh, uh, wait a minute, wait a minute. (snorts) is this about money? ralph: yeah. (snorts) it's about money. mrs allister: 'scuse me, what are you doing in there? elaine: uhm, nothing. i was just uhm... i wasn't in there. mrs allister: you were hanging around in there, lazing on the job. when you shoulda been downstairs in the basement, cleaning out those old carpets and scrap wood. elaine: right, because... i'm the janitor. (picks teeth with fingernail) mrs allister: don't get smart with me. elaine: (meek) yes ma'am. radio: hey, and if you're heading north on the arthur berkhardt, whoah nelly, for some reason four lanes are converging into two, instantaneously right at mile-marker one-fourteen. i don't know what that is, but the a-b's a parking lot out there. somebody screwed up on that one. elaine: oh it's you. jerry: is the flounder here yet? elaine: no, it's not here yet. you want the tour? elaine: (gesturing) there's this. jerry: nice. french doors'd really open this place up. oh, but you have a slop-bucket. elaine: (gleeful) the fish! elaine: ah, what're you doing here? george: hey. jerry: hey. george: oh, i was uh, i was waiting downstairs for the jackhammer, thought i'd drop by. jerry: kramer's guys? george: yeah. i got 'em down to fifty bucks. i just have to do all the jackhammering myself. jerry: oh that's nice, kind of a hard-labour fantasy camp. george: ow! elaine: uh, man! kramer: huh, yeah. (looks round) oh, sweet setup. elaine, d'you have any paint thinner? i need like uh, forty gallons. elaine: i'm plumb out. kramer: oh man, if i don't get that black paint off the city's gonna go ape. i don't wanna lose my baby! mrs allister (o.c.): janitor? elaine: (to the guys) uh, mrs allister. (louder) yeah, uh, just coming mrs allister. (to guys) okay, i've gotta get out. elaine: here, can you move, you gotta move from the door. elaine: hi, i uhm... what can i do for you? mrs allister: i told you yesterday to haul that trash outta the basement. elaine: yeah, i am so sorry. mrs allister: some of the children have been playing near it and putting it in their mouths. elaine: well, a lot of it is vegetable... mrs allister: get that stuff outta there today, or you'll be outta here. understand? elaine: (meekly) yes ma'am. george: ...stop pushing. (to elaine) kramer spilled ammonia. jerry: i don't feel like eating. kramer: (holding up a set of heavy chains) i'm gonna borrow this, huh? elaine: (to mrs allister) janitor's meeting. jenna: so jerry, why'd you call me? jerry: well, i thought it's about time we put aside all this silliness. i know now you didn't put anything in my toilet bowl. (pause) did you? jenna: yes, i did. jerry: well, whatever. so, how've you been? jenna: good. jerry: good. (pause) steak knife? jenna: just eating away at you isn't it? jerry: nah. elaine: hi. jenna: hi. jerry: hi. elaine: hi. jerry, can i borrow your car? jerry: for what? elaine: i have to haul some dirty garbage to the dump. jerry: dirt? that's alright, (for jenna's benefit) because there's nothing wrong with dirt. elaine: well, actually it's pretty grimy. jerry: grime, grease, filth, funk, ooze. whatever it is, you take that stuff and put it right on my leather upholstery. elaine: well, i don't know who you are, but thanks for the car. jerry: sure. bye. elaine: bye. jenna: bye. elaine: bye. jerry: there, you see? i just leant her my car, and she's gonna fill it with all sorts of... (he cracks) alright! you win! that car was my last germ-free sanctuary. i slept there last night! now, for the love of god, please, what is it? what is it?! jenna: toilet brush. jerry: toilet brush, oh (he pulls a 'damn, shoulda guessed!' face). alright, i can replace that. jenna: you wanna order dinner? jerry: yeah. let's uh, go to your place. because i, threw out all my dishes. jerry: that's true. jenna: mm. jerry: but, i'll tell you this much. i am never going to let some silly hygienic mishap get in the way of, what could be, a meaningful, long-lasting relationship. jenna: do you hear something? jerry: i don't know what that could be. head: holy cow! jerry: anyway, i'm a new man, and i'm looking towards the future. clean, dirty, whatever. jerry: holy cow! have a nice life. elaine: hey, look at this. wide lanes. this is so luxurious. woo, yeah. kramer: bugger! newman: (sings) you're once. twice. three times a lady. newman: what the hell was that? kramer: double bugger! newman: (sings) yes, you're once. twice. three times... newman: aaah! aaagh! aah-aah. oh, oh the humanity! aaagh! kramer: hey buddy. what're you doing out here? kramer: man, did you see that fireball? woo-hoo-hoo, hoo-hoo. kramer: hey, i gotta skedaddle. you wanna lift? kramer: newman! newman!! kramer: well, i'll meet you at the coffee shop. jerry: you know at the movies, they show that little ad for the concession stand? elaine: where the cartoon candy's dancing and the milk dud's playing the banjo? jerry: he's wailing on that banjo. elaine: yeah. jerry: i just don't understand the raisinettes. elaine: the sax player? jerry: yeah. elaine: yeah. jerry: the box of raisinettes runs up to the concession stand, buys another box of raisinettes. elaine: so? jerry: box of raisinettes eating another box of raisinettes? it's perverse. elaine: he's not gonna eat them. he's buying 'em for his pepsi girlfriend. jerry: why's he dating a pepsi? they're not having children. elaine: he's a musician. jerry: musicians. get a real job. waitress: what d'you want? george: ah, i've had everything on the menu. uh, surprise me. danielle: (to george) neil. danielle: neil. danielle: (apologetic) oh, i am sorry. (smiling broadly) i'm supposed to meet my boyfriend here. he looks just like you. george: (bemused) really? danielle: (smiling) yeah. george: (pointing to himself) like me? danielle: uh-huh. sorry. george: (confused, to himself) like me? but how? waitress: here's your halibut omelette. surprised? george: yes, yes, i am. kramer: look what i got for you, for your florida trip. crazy shirts was closing 'em out. i got a dozen for a buck. kramer: saved a fortune. look at that. heyy. jerry: (reading, unimpressed) ohh, 'number 1 dad'. kramer: yeah. jerry: (examining the label) ooh, and it's in medium. perfect. kramer: hey. george: hey. jerry: hey. george: hey. you ready? jerry: almost. kramer: okay, look, uh, when you're in florida, can my cigar guy drop off some cubans for me at your parents' house? jerry: (reluctant) kramer, i'm helping my parents move into their new condo. i'm gonna be busy. kramer: aw, c'mon man. help a brother out. jerry: (grudging) alright. kramer: yeahh. i owe you one. jerry: (holding up the '# dad' shirt) we're even. george: jerry, figure this out. i'm in the coffee shop, and this beautiful girl i could never even talk to, mistakes me for her boyfriend. jerry: (continuing to pack) that's a nice four seconds. george: (incredulous) i look just like him. i. me. (flings his arms out) this! this is what her boyfriend looks like. how is that possible? jerry: maybe he has money. george: (wondering) maybe he doesn't. maybe he and i are exactly the same, except for one minor, yet crucial, detail. you never know. jerry: (zipping up his bag) sometimes you do. george: maybe it's some small thing i could change. like a moustache. or wearing a top hat, or a monocle, or a..or a cane. jerry: (picking up his bag and coat) who's she dating? mr peanut? george: (pointedly) she could do a lot worse than mr peanut, my friend. blaine: so, what d'you wanna see? elaine: (indicating a movie poster) what about sack lunch? blaine: (indicating another poster) how about the english patient? it's up for all those oscars. elaine: oh, c'mon blaine. i mean, look at the poster for sack lunch. blaine: it's a family in a brown paper bag. elaine: (laughing) don't you wanna know how they got in there? blaine: no. elaine: (disappointment) aww. sold out. blaine: (to the booth guy) oh, two for the english patient. elaine: so d'you think they got shrunk down, or is it just a giant sack? george: (smiling) uh, hi. uhm, remember me? i..i'm the guy who looks like neil? danielle: (smiling back) hi. george: huh-hi. (looks around a little) uhm, is neil here? danielle: oh, no. he got held up at work. george: oh, that's too bad. i kinda wanted to meet him, seeing as how we look so similar. danielle: well, you know, you don't look that much like him. george: (disappointment) oh. course not. danielle: no, you're a little taller. danielle: you look like you're in better shape than neil. do you work out? george: (smiling) listen, i..i..i don't mean to seem forward... george: ...but is there any way that i could possibly have neil's phone number? elaine: (very dissatisfied) why is everyone talking about "the english patient, it's so romantic". (vehement) god, that movie stunk! blaine: i kinda liked it. elaine: (firm) no you didn't. carol: elaine. elaine, did you just see the english patient? gail: (tearful) didn't you love it? lisa: how could you not love that movie? elaine: how about, it sucked? carol: that ralph fiennes, i would give up my firstborn for him. elaine: (aside) huhh, getting the short end of that stick. morty: jerry, this is del boca vista's new physical fitness room. they got medicine balls, you can bike ride, anything you want. jerry: stairmaster? morty: what? jerry: nothin'. morty: (opening his tracksuit top) see what i'm wearing? jerry: oh, did you get that outta my bag? morty: no, your mother found it. son, this is the most wonderful and thoughtful thing you've ever done for me. jerry: you know, i bought you a cadillac. twice. morty: hoh, here he is. this is the man i wanted you to see. izzy mandelbaum. he's eighty years old, but strong as an ox. (pointing) watch this. morty: see that? you couldn't do that. jerry: i could, but i choose not to. sid: hey morty. (nodding toward jerry) who's this? morty: this is my son jerry, from new york. (leaning toward sid) he thinks he can lift more than izzy. jerry: (protesting) i..i didn't say that. sid: (calling over) hey, izzy, this kid says he can lift more than you can. izzy: your kid's pretty funny, morty. should be a comedian. jerry: (smiles) actually, i am a comedian. sid: that's not so funny. izzy: (challenging) think you're better than me, huh? morty: izzy used to work out with charles atlas in the fifties. jerry: (jocular) eighteen-fifties? izzy: yeah, that's it. it's go time. (points to the weights he put down) let's see you lift that. jerry: (reluctant) mr mandelbaum, i... izzy: c'mon, c'mon. pump it! jerry: (consenting) alright. izzy: yeah, wrong attitude. you're not bringing that trash into my house. jerry: there. alright? izzy: step aside, stringbean. izzy: i'll show you. we're gonna take it up a notch. izzy: (agonised) ah! my back. ugh. izzy: (drawn out) aaaahh. sid: somebody, call an ambulance. morty: (unpanicked) there's already an ambulance here for mrs glickman. there's room for one more. elaine: (handing over her money) okay, one for sack lunch. (taking the ticket) it's good, right? (smiling) yeah, good. elaine: (surprise) hey, what're you guys doing here? lisa: we just saw the english patient again. gail: it's even better the second time. elaine: they make it longer? blaine: (to the girls) got my umbrella. elaine: (shocked) blaine!? blaine: elaine. elaine: i thought you were busy tonight. blaine: (cold) well, to tell you the truth elaine. i don't know if i can be with someone who doesn't like the english patient. elaine: it's just a stupid movie. blaine: (to carol) that's what i'm talking about. carol: (taking blaine's arm) come on, blaine. let's go. blaine: (bitter) enjoy sack lunch! elaine: (fierce) i will! helen: (accusing) how could you do that to mr mandelbaum? you should be ashamed of yourself. jerry: (defensive) he egged me on. helen: you should be more mature. jerry: he's eighty! morty: (standing) okay. tomorrow, jerry and i will visit izzy and apologise. now, goodnight. helen: (walking after morty) you're not sleeping in that shirt. it's too tight. morty: this shirt will never leave my body. helen: (to jerry) goodnight. jerry: (smiling) alright. seven-thirty, got the place to myself. guillermo: jerry seinfeld please. jerry: ah, you must be kramer's guys. (indicating) come on in. you got the cigars? guillermo: what cigars? jerry: kramer said i was supposed to bring him back some cubans. guillermo: (indicating the threesome) we are the cubans. kramer: yeah, hello, jerry's place. jerry: (animated) they're real cubans?! they're human beings, from cuba?! kramer: i said cubans. what'd you think i meant? jerry: cigars! kramer: jerry, cuban cigars are illegal in this country. that's why i got these guys. jerry: (incredulous) you're making your own cigars now? kramer: yeah, yeah. i got investors all lined up. jerry: (to kramer) hold on a second. (to morty) hiya dad. morty: (without looking up) who are they? jerry: they're cuban cigar rollers. morty: (walking back out of the room) don't tell your mother. jerry: what is that bubbling sound? are you making your tomato sauce? kramer: hot and spicy. jerry: (accusing) you're not wearing a shirt, are you? kramer: yes i am. jerry: what colour is it? kramer: damn! george: you know, you could've just given me neil's number. you..you didn't have to take me out to dinner. danielle: i wanted to give it to you in person. danielle: (flirtatious) you know, i don't have to be up in the morning, and i know a great breakfast place, right around the corner. george: does neil like to eat a big breakfast? danielle: (inviting) why don't you come in? we'll take about it. george: (looking at his watch) i really should get going. y'know, i..i wanna be home in case neil calls. danielle: well, goodnight. george: (hurried) i'll see you. waitress: rough night? elaine: ugh. you wouldn't believe it. my boyfriend dumped me. my friends, who i don't even like, they won't talk to me. (face-pulling) all because i don't like that stupid english patient movie. waitress: really? i thought it was pretty good. elaine: oh, come on. good? what was good about it? (scoffs) those sex scenes! i mean, please! gimme something i can use! waitress: (sour) well, i liked it. elaine: (calling after) hey. you forgot about my piece of pie. hello? (irritated) you know, sex in a tub. that doesn't work! jerry: this is quite a condo. morty: the mandelbaums own the magic pan restaurants. jerry: the crepe place? morty: yeah. this is all big crepe money. jerry: (doubtful) there's crepe money? izzy: what are you doing here? jerry: (apologetic) aw, mr mandelbaum, i just wanted to come by and tell you how sorry i was that you hurt yourself. izzy: what the hell is that? jerry: what? izzy: that shirt. you think that you are the number one dad? morty: this was a gift from my son. izzy: oh, i see how it works now. (indicates jerry) he knocks me outta commission, so (indicates morty) you can strut around in your fancy number one shirt. (moves the bedcovers) well, i'll show you who's number one. jerry: mr mandelbaum, please. izzy: it's go time. izzy: (pained) ahh. my back. i can't move. morty: call an ambulance. jerry: i think i saw one a coupla doors down. jerry: (disbelief) so she wanted you to come up, but you left because you thought some guy might be calling you?! george: (animated) some guy. some guy? neil! i have got to find out how he could get a girl like danielle. jerry: (pointing out the obvious) george, you've got danielle. forget about neil. you've out-neiled him. george: (surprised) so, i'm neil? how did i do that? jerry: i don't know, but you better keep it up. george: i'm gonna go meet danielle. (grabs his coat) there's a new neil in town! (triumphant laughter) hahaha! jerry: (to himself) i try to take a vacation, i come back, the whole operation's a shambles. (answers phone) hello. morty: hey jerry. number one here. did you go see izzy at the back specialist? jerry: i will, i just walked in the door. helen: you have to go see him. jerry: ma. morty: helen, will you stop bothering him. helen: jerry, that shirt is gone right to his head. morty: number one, signing off. kramer: jerry, i just picked up the cubans at the bus station. (shrill) what's going on!? jerry: what? kramer: (animated) they're not real cubans. they're dominicans. jerry: so? kramer: so, jerry, if my investors don't get cubans, the whole deal's off. jerry: what's the difference? kramer: jerry, once you've had real cubans, there's just nothing else like it. jerry: (confused) we're talking about people, right? kramer: yes, yes. the quality, the texture, the intoxicating aroma. these guys don't have it. jerry: i thought they smelled pretty nice. kramer: jerry, your palate's unrefined. jerry: is not. kramer: is too. jerry: is not. kramer: is too. jerry: i'm not having this conversation. kramer: are too. jerry: am not. kramer: are too. jerry: am not. kramer: are too. peterman: another productive meeting. by the way, i saw that english patient film last night. it was extraordinary. dugan: (enthusiastic) oh yes. it was so romantic. it ravished me. peterman: elaine, what'd you think? elaine: (hesitant) well, uh, act..actually, i haven't seen it. so, i couldn't tell you whether i liked it, or whether it really sucked. peterman: (aghast) you haven't seen it? elaine: (shakes head) no. peterman: that's it! drop everything. we're going right now. jerry: again, mr mandelbaum, this back specialist is supposed to be the best. so if there's anything else i can do, please don't hesitate to, uh, try and find my number. izzy: uh, oh, wait. izzy: how 'bout that, huh? the world's greatest dad. my son made it for me. jerry: (humouring him) that's very nice. izzy: the best in the world. (pointing to himself) which means i'm better than just number one. jerry: well, i don't know how official any of these rankings really are. izzy: hi, son. izzy jr.: hi daddy. jerry: (surprise) this is your son? izzy: i got married in high school. izzy jr.: (to jerry) hey, who are you? izzy: this is seinfeld's kid. izzy jr.: oh, you think you're tough, picking on an old man? (squaring up to jerry) maybe you'd like to try taking on somebody your own age. jerry: (jocular) you got any kids? izzy jr.: oh, you think you're better than me? (challenging) go ahead, pick out anything in the room here. i'll lift it up over my head. jerry: (trying to defuse the situation) look, no-one is lifting anything. izzy: (pointing) the television. jerry: (under his breath) oh no. izzy jr.: this one's for you, pop. it's go time. izzy jr.: (pained) ohh! my back! izzy: (urgent) call an ambulance. jerry: (laconic) we're already in a hospital. haffler: awright, partner. let's get down to business. kramer: (nervous) okay, well, uh, i'll uh, i'll get the cubans. kramer: they're right out here. kramer: hey, here they are. the cubans. real cubans. haffler: you wouldn't be trying to sell old earl haffler dominicans in a cuban wrapper now, would you? kramer: (fidgety) oh, now, come on. look at these boys. if they were any more cuban, castro would've smoked them himself. huh. haffler: (confusion) we're talking about people, right? kramer: (puzzled) i think so. haffler: i thought he quit smoking cigars. kramer: well, yeah, yeah. but they also rolled for his brother... (thinks for a second) ...dennis. haffler: (dubious) dennis castro? kramer: uh, dwayne. haffler: get the hell outta my office. kramer: (shrill) what!? danielle: you know, neil called me today. george: (interested) really? danielle: yeah. he's pretty upset that i broke up with him to go out with you. george: (smug) ah, i guess i showed neil who's neil. danielle: he wants to get together tomorrow night and have coffee. george: (little worried) coffee? (thinks) i can beat that. move in with me. danielle: (surprised) what? george: (smiles) beats the hell out of coffee. peterman: (emotional) and i thought i knew what love was. elaine: (indifferent) yuh. jerry: (incredulous) you asked her to move in with you? george: i gotta stay one step ahead of neil. jerry: (musing) what if it's neil armstrong? george: (animated) then i'm going to mars! jerry: what if it's neil diamond? george: (tormented) aw, shut up jerry! just shut up! jerry: alright, i gotta go back to the hospital. george: what, to see the old guy? jerry: no, i got into a thing with the son, and now he's laid up too. george: how old's the son? jerry: i think he's the same age as the father. george: what is with this family? jerry: i dunno. it's like, if one of 'em dies, the other one wants to bench press the casket. kramer: (quietly) hey, jerry. kramer: (noise - like shivery) datiditadit. jerry: you're cold? kramer: no. (indicates with his head) (noise again) ditadidatidat. jerry: something wrong with your chest? kramer: (indicating with his thumb) dijadidatjd. there. jerry: (leaning round kramer) where? kramer: (urgent) no, no. don't look. don't look. kramer: over there. the dominicans. jerry: aren't they supposed to be rolling cigars? kramer: well, it didn't quite work out, and now i've got nothing for them to do. george: so? kramer: so, i taught 'em all about cuba, and they really took to it. you know, marxism, the worker's revolution, the clothing. jerry: boy, they seem pretty angry about something. kramer: (nervous) yeah. i'm a little worried. when there's no work, and the people get restless, who do you think they come after? (pointing to himself, shrill) el presidente! jerry: i swear to you, i didn't know they tv was bolted to the table. izzy jr.: i bet you pulled that trick on my daddy, in florida. jerry: he couldn't handle the weight. izzy: (hostile) oh, so now you think you're better than me? izzy jr.: (indicating izzy) you think you're better than him?! jerry: (placatory) look, let me just state for the record, i think you're both better than me. izzy: okay. izzy sr.: my boys. izzy: my dad. izzy jr.: my grandpa. jerry: (incredulous) oh, come on! izzy sr.: (indicating izzy jr) what happened to him? jerry: he was trying to lift the tv. izzy sr.: (pointing) that tv? jerry: (consternation) oh no. (to the bedridden two) it's go time. izzy izzy sr.. (o.c.): (pained) oohh! izzy sr.: why didn't anybody tell me? it was bolted down! izzy: i still thought you could do it. izzy jr.: me too. izzy/izzy jr/izzy izzy sr.: (chanting and punching the air) mandelbaum, mandelbaum, mandelbaum... jerry: fellas, fellas, look, i gotta go. izzy: oh yeah, that's right. go. put us all in the hospital. and you've ruined our business with all your macho head games. jerry: (defensive) i didn't ruin your business. izzy: yes, you did. there's nobody there now at the magic pan to roll the crepes. we gotta close it up. jerry: (uncertain) don't you hire people to do that? izzy: each crepe has to be hand-rolled by a mandelbaum. that's what puts the magic in magic pan! jerry: (thinking) so, you just need some guys that could roll 'em? izzy: yeah. jerry: (having an idea) i think i can help you out. i'll see you later. izzy sr.: (calls) hey, i can't see the tv. jerry: here. izzy: you think you're better than us, don't you?! huh!? peterman: elaine, i hope you're watching the clothes, because i can't take my eyes off the passion. elaine: (quiet vehemence) oh. no. i can't do this any more. i can't. it's too long. (to the screen) quit telling your stupid story, about the stupid desert, and just die already! (louder) die!! peterman: (surprised) elaine. you don't like the movie? elaine: (shouts) i hate it!! crowd: shh! elaine: (shouts) oh, go to hell!! peterman: (quietly) well, why didn't you say so in the first place? you're fired. elaine: (grabbing her bag and coat) great. i'll wait for you outside. jerry: he was gonna fire you? elaine: the only way i could talk him out of it was that i agreed to go and visit the tunisian desert. jerry: tunisia? elaine: that's where they filmed the movie. it's supposed to inspire me. jerry: well, that doesn't sound so bad. elaine: i have to live in a cave. jerry: (sardonic) oh. (smiles) kramer: these dominicans really know their way round a crepe. look at that. it's like they're rolling a double corona. kramer: (to one of the guys) just a cigar made outta bisquik, huh, guillermo? danielle: i'm very happy with george. i'm sorry neil, it's over. danielle: come on, let's just eat our crepes. customer: (pained scream) aaghh!! my face! danielle: (concerned cry) neil! jerry: why are the crepes spraying? kramer: (looks over at the three guys) the dominicans are rolling them too tight. (regretful) uhm, well, that's why you gotta get real cubans. george: danielle. where's neil? (indicating the bed) is this him? danielle: yeah, that blueberry crepe burned him pretty badly. george: (to danielle) whose cane is this? danielle: it's neil's. george: (to himself) a cane. i knew it. (to neil) so, we meet at last. i admire your skills, mr peanut. george: well, danielle, (digs in his pocket) we should get going. i got a key made for you. danielle: george, i can't move in with you. george: (shocked) what? danielle: i'm sorry, but i'm taking neil to a clinic in england. george: (animated) n..no, no. you can't leave me. (frantic) marry me! i'll burn myself. i'll burn my parents! danielle: sorry george. neil: (beckoning) george. neil: (quiet triumph) i win. tan: ladies and gentlemen. in just one moment, we'll be showing our feature presentation... elaine: (dread) no, no, no, no, no. tan: ...the comedy hit, sack lunch, starring dabney coleman. elaine: (cheering up) ah, right! aw, this is shaping up. guy: excuse me, please. elaine: oh, sure. elaine: (uncomfortable) ooh. guillermo: ladies and gentlemen. because we have been exploited by your magic pan crepe restaurants... guillermo: ...we are hijacking this plane to cuba! guillermo: everyone stay in your seats. and shut that movie off! elaine: (annoyed) aww, nuts! george: oh, boy i was up to four in the morning watching the omen trilogy. jerry: that's good stuff. george: i can't to myself. i'm exhausted. jerry: can you grab a nap at work. george: not with that big glass window looking out into the hall. i'd love a good nap. that's the only thing getting me out of bed in the morning. i'll see ya'. elaine: bye. jerry: so what are you doing now? elaine: i'm going to take a little stroll through the park. jerry: with a gentleman caller? elaine: yes, his name is hal. jerry: the walking date is a good date. you don't have to look right at the other -person. elaine: it's the next best thing to being alone. jerry: shower? kramer: no, pool. i just swam 200 laps. elaine: you are kidding. kramer: look at hose babies [hands]. they're prunes. i saw conrad going up to oyur place. elaine: oh, yeah, that's right. those new kitchen cabinets. how is that coming? jerry: a little slow. i've got to hold this guy's hand on every little decision. elaine: hey, kramer, listen, you've seen the omen right? elaine: what exactly was that kid? kramer: who, damien? nothing, just a mischievous, rambunctious kid. wilhelm: oh, george, have you seen the american league directory? it is a big green book. oh, thanks kiddo. hal: nan elaine: well i don't care. it was delicious. elaine: wanna sit down? hal: oh, i don't sit on park benches. they're very bad for the back. elaine: really? hal: i threw my back out about 15 years ago. ever since i have been very careful. i only buy furniture in the ergonomics store. elaine: oh those places have the stupidest names. like, uh, "back in ", or "good vertibrations". hal: not this one. it's called the "lumbar yard". conrad: oh, jerry are you okay with this hinge? jerry: yeah. conrad: i can get you any kind you want, you know. four holes, three holes, two holes, bronze, no hinge at all. jerry: you know, why don't we just go with the one in your hand? conrad: oh, these are different. jerry: drop one. . . . left! george: jerry, look at my eyes. jerry: a little less beady today. george: because i'm refreshed. i finally found a way to sleep in my office. under the desk. i lie on my back. i tuck in the chair. i'm invisible. jerry: sounds like a really cool fort. conrad: jerry, do you want a flat edge on this molding or do you want me to bevel it? jerry: i'll tell you what i would like you to do with it. george: conrad, is it? conrad: conrad, connie, or con, whatever you prefer. george: uh, let me ask you a question. could you, uh, expand the space underneath a desk to give it a little more headroom? jerry: he's kind of tied up here. george: it'll have to be a night job anyway. you don't normally work after dinner, do you? conrad: there is no normal, whatever jerry wants. he wants me here late, i'm here late, he wants me here early, i'm here early, he . . . jerry: why don't you just work on george's project for a while? conrad: whatever you want. jerry: so how was wednesday's walk in the park with hal. elaine: uh, it was okay,. he's coming over later to watch a movie. hey listen, what's better for your back? couch cushions or a folding chair? jerry: i don't know. elaine: uh, maybe we'll just stand and watch the tv. [knock knock]. i gotta go someone's at my door. yeah! delivery guy: delivery. elaine benes? elaine: yeah. delivery guy: we're from the lumbar yard, we got your mattress. elaine: mattress, i didn't order a mattress. who sent this? hal kitzmiller? george: do you think it might be possible to add a little shelf like, uh, for an alarm clock? conrad: you mean like that big? george: like this. conrad: yeah, i can do that. george: thanks. you know this could sound crazy but, what do you think about adding a drawer for - like a blanket? conrad: blanket or quilt? george: blanket. conrad: that thick? george: maybe like this. conrad: like that? george: yeah, like that. conrad: if that is what you want. george: that is what i want. conrad: hey george, you want this cup holder mounted on the left, or the right, or the middle, . . . george: whatever!!. . . . oh oh oh this is unbelievable. this is better than my bed at home. george: its been a long night. you go home and get some sleep. conrad: if that's what you want. george: that's what i want. wilhelm: morning george. george: good morning mr. wilhelm. kramer: got problems jerry. jerry: what happened? kramer: well i had been swimming for three hours and i was in a real grove so i decided to keep going. but at ten they start the aquasonics thirty-five geriatrics throwing elbows. it was like i was swimming through a flabby armed spanking machine. jerry: how long did that last? kramer: a half hour then diving class started. well that got a little messy. i gotta find a new place to swim 'cause that pooll can't hold me, jerry. jerry: how was the movie? elaine: i cancelled. hal sent a mattress to my apartment. the nerve of that guy. jerry: why? elaine: he's got a back problem. jerry: so you think he was expecting a roll in the supportive hay. elaine: after one date! kramer: what's that guy's last name again? elaine: kitzmiller. kramer: oh, that's right. jerry: so what are you going to do with the mattress? elaine: i don't know. chuck it? kramer: oh, no no no no i'll take it. why don't you come over. let's see if it will fit in my bedroom. elaine: oh, all right. kramer: my old one sprung a leak. elaine: you have a water bed? kramer: sand! it's like sleeping on the beach. conrad: hi, jerry i'm sorry i'm late. george and i have been up working all night long. i can make up the time in any number of ways. jerry: how about this? . . . finish this thing up today! conrad: couple of questions for you. jerry: no. no more questions. just figure it out for yourself and get it done. conrad: all right jerry. but i can figure it out myself any way you want. jerry: just . . . do it. steinbrenner: costanza? where's costanza? . . . excus mois? have you seen costanza? secretary: i've seen him around. steinbrenner: um, i'm stuck on this song yesterday. i can't seem to get it out of my head. i don't know the name of that. "she's a heart breaker, love taker . . ..oh. oh" . . .very catchy. you know what? i can't stay awake for that guy. what is this? people? um, the most beautiful people people. ally selica, nothing wrong with that uh? hal: elaine, your taking this totally the wrong way. that's not what ii intended. elaine: well, what did you intend, hal? hal: i just wanted you to have the comfort and report you deserve. that's why i had the mattress custom designed for you. elaine: custom designed? hal: they adjust the foam density and spring tension to your body type. i estimated your height and weight. five eight, about 110 pounds? elaine: uh, that is the nicest thing anyone has ever done for me. hal: so you do like the mattress? elaine: oh, i love it. i'm glad . . . i kept it. father: over there, that's brooklyn . that's where spike lee lives. son: hey, there's a man swimming in the water. father: naw, that's probably just a dead body son. you see when the mob kills someone they through the body in the river. kramer: jer. jerry: hi. kramer: well my swimming pool problems are solved. i just found myself miles and miles of open lanes. jerry: what is that smell? kramer: that's east river. jerry: you're swimming in the east river? the most heavily trafficked overly contaminated waterway on the eastern seaboard? kramer: technically norfok has more gross tonnage. jerry: how could you swim in that water? kramer: i saw a couple of other guys out there. jerry: swimming? kramer: floating, they weren't moving much. but they were out there. elaine: (on phone) hey, kramer, it's elaine, thanks for bringing my mattress back. and i guess i'll just get my spare key from you - whenever. all right, bye. elaine: oh, this is a good mattress. sniff, sniff, ugh! steinbrenner: what is with this guy? i've been waiting three and a half hours. should i go? no way jack! ??? at the registrar again, i'll tell you that. seconrad: mr. steinbrenner? steinbrenner: that's what they call me. seconrad: your grandchildren are here to see you. steinbrenner: oh, well, send them in. send the little tykes in. little people .. pony express wow, jerry: (on phone) hello. george: jerry, i'm trapped under my desk. steinbrenner is in the room. you got to help[ me. jerry: who is this? george: jerry, . . . brady: hi, george: sh, sh, goodbye, sh, get away. brady: hi, i'm brady. george: ?? get away?? jerry: why don't you just have him paged? george: can't you think of something. call in a bomb threat. jerry: a bomb threat? why would i call in a bomb threat? george: just call! jerry: i should have some reason. steinbrenner: hey you kids know tunes; see if this song rinsteinbrenner a bell, "heartbreaker , . . . " seconrad: mr. steinbrenner we just received a call. there's a bomb in the building. steinbrenner: a bomb in the building, oh, m'god. quick, everyone under the desk. steinbrenner: boy can you think of what went through my mind when i saw there wasn't going to be enough room under that desk for me and my babies. george: i'm sorry sir. steinbrenner: you know what i think? i think you knew about that bomb ahead of time. george: what? steinbrenner: ???? about that bomb. you climbed under that desk because you have esp. george, what's on my mind? . . . meatballs! huh? unbelievable. anyway this terrorist had a specific demand. not more cheap adjustable hats on hat day. he wants fitted hats just like the players wear. elaine: jerry, jerry. jerry: yeah. elaine: what the hell is this? where are you? jerry: over here. you can see right through here. elaine: what is this. it's like you're selling movie tickets back here. jerry: it's kind of cozy. elaine: hey, you're not going to believe what kramer did to my mattress. . . . i can't talk to you like this. so kramer completely funked up my mattress. jerry: does it smell like the east river? elaine: how did you know? jerry: because kramer has been swimming laps between the queensborough bridge and the brooklyn bridge. elaine: oh, great! kramer: oh man, i'm on the wrong floor again. elaine: hey, thanks for ruining my mattress. it reeks. kramer: hey, you know what i think it is? i think it's that east river. i think it might be polluted. george: well, you really did it to me this time, seinfeld. . . . what the hell happened here? elaine: hi. george: hi. look at how obtrusive this is. elaine: it is obtrusive, isn't it? kramer: it is very obtrusive. jerry: i don't think it's that bad. kramer: you can't get a stool in here. jerry: no the stools go over there. kramer: no, that's no good. i'm leaving. elaine: i'm with you. i'm going back to my place. george: fitted hat day! that's what you asked steinbrenner for? jerry: you mean they're actually doing the fitted hats? cool. george: guess who he put in charge of fitted hat day? me. jerry: hey look at you. george: yeah, look at me. now i gotta figure out the hat sizes of 59,000 different people!! what if a pinhead shows up. i gotta be on top of that. jerry: no knock offs. i want the ones like the real players wear. george: ??? knock offs. i not going to do it! and you're going to call steinbrenner back and cancel the whole thing. jerry: could you at least get a hat for me? george: fine? what size? jerry: seven and five eighths george: seven and five eighths!! jerry: why are you shouting? george: i don't know. it's this place. i'm very uncomfortable here. hal: so are you liking the mattress? elaine: i am totally loving it. uh, you know we should um get going. hal: what is that smell? elaine: what smell? hal: i think it's the mattress. did something happen to it. elaine: no no, oh, you know what that is? i um, went claming the other day and i forgot to hose off my boots. hal: claming? elaine: yeah, clam and scallop. i clam and scallop. steinbrenner: yes, yes, come in. george: sir, i just got a call from the terrorist. i told him to call back here. steinbrenner: just let me ask you something. is it "february" or " february"? because i prefer "febuary" and what is this "ru"? george: let me put that on speaker phone. steinbrenner: hello are you the bomber? jerry: yes this is the terrorist bomber. steinbrenner: costanza here is busting his ass on those hats. jerry: think i've changed my mind. steinbrenner: you don't want them, then goodbye. george: ??? sir. steinbrenner: well what do you want instead? jerry: what? steinbrenner: well, you're the terrorist. you're going to want something. jerry: i guess it would be nice if you called all the ticket holders if the game was going to be rained out. steinbrenner: all right george, you can handle that. steinbrenner: costanza what the hell are you doing? george: you have to stand tough sir. that's why i had to hang up the phone. steinbrenner: you know what i'm going to do? i'm going to run around the stadium and close all the windows. that's where i'm going, pal. and i'll tell you something else. i'm very nervous. elaine: gotta get some of that stuffed crust pizza. cheese crust pizza. hal: it's just more cheese. elaine: i'll tell you something. it'll be years before they find places to hide more cheese on a pizza. kramer! kramer: oh, hey, elaine: oh, hi. this is hal. hal, this is kramer. kramer, hal. kramer: hal, .. uh langerhans. hal: kitzmiller. kramer: oh, kitzmiller. that's right elaine: you feeling jiff? kramer: oh, i'm jiff. hal: that smell kramer: oh, listen i gotta get to the pier. the ferry traffic is really bad around four thirty. look, i still got the key to your apartment and i'll get it back to you as soon as i can. elaine: oh, baby. george: finished. hal: kramer? can i talk to you a minute? kramer: yeah, sure, um, oh boy, . . . hal: kitzmiller. kramer: that's it. hal: you and elaine are pretty close. kramer: oh, we go back a ways. hal: and you've, . . . how do i put this? you've been in her bed? kramer: that's right. hal: but this isn't still going on. kramer: no, no. she put a stop to that. hal: that's all i needed to know. so you actually swim in this thing? kramer: oh yeah. exercises every muscle in the body. it's great for the back. hal: great for the back. right. kramer: four hours in this chop and i'm a full inch taller. . . . giddyup. steinbrenner: "heatbreaker, brewbaker, " hey george, i remember that tune. george? george? um, what's that ticking. oh oh. oh, oooh,wo wo wo wo . [runs out] fire in the hole! elaine: i wouldn't believe the lumbar yard wouldn't pick this up. ug, oh, okay, . . . conrad: you want it back the way it was? jerry: yeah, that's right. conrad: you know i don't get you seinfeld. you want something one day. the next day you don't like it. come on man, make a decision. jerry: one second. hello. elaine: jerry you gotta help me. i threw my back out. jerry: just lie down. elaine: i am lying down. i am trapped under a funky mattress. i gotta go get a doctor or at least come over and roll this thing off of me. jerry: all right. i'll be right there., conrad i gotta go. conrad: stay, go whatever. hal: hey, kramer. kramer: what's going on? hal: i told my chiropractor how swimming in the river made my back heal. he recommended it to all his patients. old man: step aside. kramer: he just sunk like a stone. george: sir, i'm sure it's not a police matter. steinbrenner: don't be so sure george. mess with them and they're messing with you. all right boys send it in steinbrenner: what's that figure ahead? is that anything? okay, let's check the desk. that's where i heard the ticking. search each one of those drawers starting with the top one. so, empty calories and male curiosity, eh, georgie? bomb cop: looks like there's more compartments underneath. steinbrenner: compartments underneath, that's probably where it is. okay boys, let 'er rip. i'll tell you what george. starting tomorrow no more desks. just lucite tables and four lesteinbrenner. kramer: hey, watch where you're kicking! elaine: kramer. kramer: elaine elaine: i can't believe it. hey, i'll meet you at the coffee shop. kramer: yeah. elaine: yeah. george: hi connie, jerry around? conrad: no, and i prefer "conrad". so i heard what happened to the desk. george: there was something so reassuring about that cozy little space. conrad: yeah, well, whatever. see ya' jerry: ah, back to normal. not bad for four thousand bucks. . . . i can't believe i got the low fat! george: so, marcy, you should've seen me in the hot tub yoday. marcy: why? george: i was naked. marcy: oh, george. jerry: i saw it. marcy: how'd he look? jerry: okay. i wouldn't see it again. marcy: you know, a friend of mine thought she got legonare's disease in the hot tub. george: really? what happened? marcy: oh, yada yada yada, just some bad egg salad. i'll be right back. (she gets up) jerry: i noticed she's big on the phrase "yada yada." george: is "yada yada" bad? jerry: no, "yada yada" is good. she's very succinct. george: she is succinct. jerry: yeah, it's like you're dating usa today. (tim the dentist enters monk's) george: hey. jerry: hey, george, you know tim whatley. george: yeah, dentist of the stars. jerry: what's up? tim: i'll tell you what's up. i'm a jew. jerry: excuse me? tim: i'm a jew. i finished converting two days ago. jerry: well... (thinking of something to say) welcome aboard. tim: thanks. george: hey, where you just at the health club? tim: oh, well, i didn't do much. i just sat in the sauna. you know, it was more like a jewish workout. i'll see ya. (jerry and george give confused looks) jerry: elaine, the guy's jewish two days, he's already making jewish jokes. elaine: so what? when someone turns twenty-one, they usually get drunk the first night. jerry: booze is not a religion. elaine: tell that to my father. anyway, guess what? beth lookner called me. jerry: ooh. beth lookner, still waitin' out hat marriage. elaine: what are you talking about? that marriage ended six months ago. she's already remarried. jerry: i gotta get on that internet. i'm late on everything. elaine: anyway, beth and her new husband arnie have listed me a reference for an adoption agency. they're trying to get a baby. (kramer and mickey enter wearing the same shirt) kramer: elaine, all right, who looks better in this shirt? me or mickey? mickey: we're double dating tonight, and if we wear the same shirt we'll look like idiots. elaine: hmm, turn around. (they turn around) both so striking. kramer: tell me about it. we just picked up two women at the gap. elaine: how did you decide which one of you would date which girl? (they pause then look at each other) marcy: so i'm on 3rd avenue, mindin' my own business, and, yada yada yada, i get a free massage and a facial. george: what a succinct story. marcy: i'm surprised you drive a cadillac. george: oh, it's not mine. it's my mother's. marcy: are you close with your parents? george: well, they gave birth to me, and, yada yada... marcy: yada what? george: yada yada yada... karen: (to mickey, wearing the shirt elaine looked at for them) i like your shirt. mickey: oh, thank you. it's 100 cotton, and some wool. kramer: well, you too seem to have the same taste. julie: well i like it, too. kramer: well i have the same shirt. mickey: yeah, well i'm wearin' it. julie: i like your shirt too. karen: oh, so do i. kramer: oh. (waiter approaches table) waiter: anything to drink? some wine, perhaps. mickey: i like merlot. karen: i love merlot. julie: i'm crazy about merlot. kramer: i live for merlot. waiter: we're out of merlot. agent: so you, uh, know betha and arnie pretty well? elaine: oh, yeah, yeah. agent: do you socialize with them often? elaine: yeah, we got out to dinner a lot. usually chinese, well sometimes thai. and we go to the movies, arnie's a real film buff. agent: oh. elaine: actually, i remember this one time, um, this is funny. um, we went to see the movie striptease. i don't know if you've seen... doesn't matter. anyway, i was whispering something to beth, and arnie leens over to me, and he goes, "would you shut up?!" i mean, he barely even knew me. where did he get ah-- but they're nice people. (elaine tries to smile realizing her mistake) george: oh, you're in here. jerry: what're you doing here? george: i knew you had an appointment. jerry: well this is very awkward. george: i'll leave when the guy comes in. i gotta tell you, i am loving this yada yada thing. you know, i can cross over my whole life story. (picks up dental tool) jerry: hey, you don't play with that. that's going in my mouth. george: hey, what this thing? whew! jerry: all right, that's enough. now get going. get outta here. (tim and his staff enter) george: hey, tim. quick question. is it normal for your teeth to make noises, like a hissing or a chirping? jerry: george... tim: um... george: fine, i'll make an appointment. (he leaves) tim: all right, it is cavity time. ah, here we go. which reminds me, did you here the one about the rabbi and the farmer's daughter? huh? jerry: hey. tim: those aren't mahtzah balls. jerry: tim, do you think you should be making jokes like that? tim: why not? i'm jewish, remember? jerry: i know, but... tim: jerry, it's our sense of humor that sustained us as a people for 3000 years. jerry: 5000. tim: 5000, even better. okay, chrissie. give me a schtickle of flouride. jerry: and then he asked the assistant for a schtickle of flouride. elaine: why are you so concerned about this? jerry: i'll tell you why. because i believe whatley converted to judaism just for the jokes. (phone rings) phone: would you be interested in a subscription to the new york times? jerry: yes. (slams down phone. kramer and mickey enter) kramer: i don't believe that. mickey: if you had gotten into the backseat of the car we could've figured this whole thing out. kramer: why were you holding the door open for? mickey: not for you! who holds a door open for a man? kramer: well, i thought it was a nice gesture. but i guess i was wrong! mickey: let's just put they're names in a hat. kramer: i don't even know their names! look, why don't you just take the one that was on the left? mickey: i'm not sure she was my type. kramer: oh, everybody's your type. mickey: what the hell does that mean? kramer: you've been married three times. mickey: that's it, it's go time! (charges toward kramer, only to be held back by jerry and elaine) jerry: all right, take it easy. elaine: hey, hey, hey! kramer: come on, let him go. you want throw? let's throw! elaine: hey! hold on a second. all right, look, i got an idea. why don't you just show up early for your next date, sit across from each other, and see who the girls sit next to. mickey: that's not bad. kramer: all right, so we let the girls decide. mickey: yeah, why should we knock ourselves out? kramer: yeah, i wanna wear that shirt next time. mickey: no, no one wears the shirt next time. kramer: that's right, 'cause they already saw it. mickey: we'll look like idiots. (they exit) george: well, we were engaged to be married, uh, we bought the wedding invitations, and, uh, yada yada yada, i'm still single. marcy: so what's she doing now? george: yada. marcy: speaking of ex's, my old boyfriend came over late last night, and, yada yada yada, anyway. i'm really tired today. elaine: beth, arnie, hi. what's up? arnie: well our adoption application was denied. elaine: really. beth: the adoption agent seems to feel that arnie has a violent temper. elaine: oh. beth: so we're just asking our friends what they may have said to the adoption agent. elaine: uh, you know, i just told them what kind people you are and, uh, yada yada yada, that is it. jerry: how you doing? father: i have a discomfort in my molar. (enter tim) tim: well, the curtis, why don't you come in? (to jerry) father curtis, good guy. oh, which reminds me, did you hear the one about the pope and raquel welch on the lifeboat, huh? i'll tell you later. (exits) jerry: whatley. (like "newman") kramer: what are they doing here? mickey: i told you we should've gotten here a half hour early. kramer: all right, all right. now what're we gonna do? mickey: all right, don't panic. let's just decide now. which one do you want? kramer: all right, i'll take julie. mickey: i knew you wanted her. that's who i wanted. kramer: all right, i'll take karen. mickey: no, no, you think i'm fallin' for that? i'll take karen. kramer: all right, which one is julie? (they walk over to the table and fight over who sits where) hey, you ladies look lovely tonight. (continue to struggle) jerry: so whatley sayd to me, "hey, i can make catholic jokes, i used to be catholic." elaine: you see, i don't think it is a catholic joke. i think it's more of a raquel welch joke. what was it? no, i said hand me the buoys. (laughing) bouys! jerry: don't you see what whatley is after? total joke telling immunity. he's already got the two big religions covered, if he ever gets polish citizenship there'll be no stopping him. elaine: so what're you gonna do? jerry: i think this father curtis might be very interested to hear what whatley has the pope doing with raquel welch. elaine: (calling on phone) hey, beth, arnie, it's elaine. um, thought you guys might wanna have lunch. gimme a call. bye. jerry: they're not getting a baby so you're taking them out to lunch? elaine: thought it would be nice. jerry: poor beth. elaine: hey, arnie's just as upset. jerry: oh screw him! (george enters) george: listen to this. marcy comes up and she tells me her ex-boyfriend was over late last night, and "yada yada yada, i'm really tired today." you don't think she yada yada'd sex. elaine: (raising hand) i've yada yada'd sex. george: really? elaine: yeah. i met this lawyer, we went out to dinner, i had the lobster bisk, we went back to my place, yada yada yada, i never heard from him again. jerry: but you yada yada'd over the best part. elaine: no, i mentioned the bisk. george: well, i gotta do somethin'. (walks over to bathroom. kramer enters) kramer: well, i gotta do somethin'. jerry: george is already in there. kramer: (confused) no, mickey and i, we can't work it out. you know, i'm thinking of asking that karen out by myself. jerry: i thought you were leaning towards julie. kramer: i was, but the one i thought was julie turned out to be karen. george: well it was a helluva yada yada. marcy: he's moving to seattle. we wanted to say goodbye, i was just getting out of the shower, and yada yada yada-- george: all right, enough! enough! from now on, no more yada yada's. just give me the full story. marcy: okay. george: tell me about the free facial. marcy: okay, well, like i said i was on 3rd avenue, and i stopped by a large department store. george: which one? marcy: bloomingdale's. george: very good. go on. marcy: oh, and i stole a piaget watch. george: what's that? marcy: and then, i was on such a... high, that i went upstairs to the salon on the fifth floor, and got a massage and facial, and skipped out on the bill. george: shoplifting. marcy: well, what about you? you told me that you were engaged. what was the rest of that? (pause) jerry: excuse me, mother? nun: sister. jerry: sister, right. do you know when father curtis has office hours? nun: well not until tomorrow. jerry: hmm, i really need to speak with him. father: that's a kneeler. jerry: oh. (adjusts accordingly) father: tell me your sins, my son. jerry: well i should tell you that i'm jewish. father: that's no sin. jerry: oh good. anyway, i wanted to talk to you about dr. whatley. i have a suspicion that he's converted to judaism just for the jokes. father: and this offends you as a jewish person. jerry: no, it offends me as a comedian. and it'll interest you that he's also telling catholic jokes. father: well. jerry: and they're old jokes. i mean, the pope and raquel welch in a lifeboat. father: i haven't heard that one. jerry: oh, i'm sure you have. they're out on the ocean and, yada yada yada, and she says, "those aren't buoys." (father starts laughing) father... father: one second... well, if it would make you feel better i could speak to dr. whatley. i have to go back and have a wisdom teeth removed. jerry: you know the difference between a dentist and a sadist don't you? father: um... jerry: newer magazines. father: now if you'll excuse me. (closes door. george enters confessional.) george: jerry, i gotta talk to you. kramer: hi. karen: hi, kramer. kramer: got a minute? karen: uh, actually my parents are over, but, would you like to meet them? kramer: sure. karen: (parents enter and are little people like mickey) mom, dad. kramer: hi. arnie: elaine, i have to ask you something. what exactly happened down there? elaine: well, i don't know. i mean, i talked to him and, blah blah blah, he asked about you guys and, da da da da da, more questions, bleh bleh bleh.... arnie: all right, shut up! elaine: again you are telling me to shut up? arnie: what? elaine: you yelled that time at the movies. that's why you're not getting the baby. arnie: oh my god. how am i gonna tell beth? elaine: look, i'll go down and talk to this adoption guy and i'll make sure that it all gets worked out. arnie: all right, just don't screw it up this time! (he exits) elaine: see, again with the yelling. not a fan of the yelling. jerry: (in pain) oh, are you about done? tim: i'm just getting warmed up. because i'm just a sadist with newer magazines. jerry: huh? tim: father curtis told me about your little joke. jerry: what about all your jewish jokes? tim: i'm jewish, you're not a dentist. you have no idea what my people have been through. jerry: the jews? tim: no, the dentists. you know, we have the highest suicide rate of any profession? jerry: is that why it's so hard to get an appointment? kramer: so, i'll uh... all right. (hangs up) jerry: date with karen? kramer: no, julie. she's the one. jerry: what happened to karen? kramer: well, mickey and her have a lot more in common. you know her parents are little people? jerry: oh, small world. so little people can have not little people children? kramer: oh yeah, and vice versa. mother nature's a mad scientist, jerry. jerry: so you won't believe what happened with whatley today. it got back to hime that i made this little dentist joke and he got all offended. those people can be so touchy. kramer: those people, listen to yourself. jerry: what? kramer: you think that dentists are so different from me and you? they came to this country just like everybody else, in search of a dream. jerry: kramer, he's just a dentist. kramer: yeah, and you're an anti-dentite. jerry: i am not an anti-dentite! kramer: you're a rabid anti-dentite! oh, it starts with a few jokes and some slurs. "hey, denty!" next thing you know you're saying they should have their own schools. jerry: they do have their own schools! kramer: yeah! elaine: one little baby, whatever you have in stock. aent: miss benes... elaine: look it, look it, ryan. these people are gettin' a baby. period. now we can do this the easy way, or we can do this the fun way. beth: jerry, i'm sorry to bother you, but you always said you'd be there for me. jerry: well, what's wrong? beth: i'm thinking of leaving arnie. jerry: talk to me. beth: he met with elaine, and i asked him what happened, and he yada yada'd me. i mean, could he be having an affair? jerry: well, i wouldn't put anything past anybody. beth: but we just got married. jerry: well obviously that was a mistake. you need to forget about arnie. the important thing is you're moving on. beth: why would elaine do that to me? jerry: forget about elaine. let's just focus on us. come on, big hug. (mickey and karen enter) mickey: hey jerry. where's kramer? i've got exciting news. jerry: i'm kinda in the middle of something. mickey: karen and i are getting married. jerry: oh, congratulations. her marriage just fell apart. mickey: (to beth) how many is that for you? beth: two. mickey: you're a lightweight. come on, honey. elaine: hey jerry. what are you doing here with beth? jerry: beth and arnie broke up. elaine: so they don't want a baby? jerry: (shaking his head no) pff. elaine: (realizes her mistake) i think i'm gonna be sick. (george enters alone) jerry: hey, where's marcy? george: she, uh, went shopping for some shoes for the wedding and, yada yada yada, i'll see her in six to eight months. (kramer and julie enter) jerry: hey, kramer, over here. kramer: i just assume not sit next to you. jerry: kramer... oh look, there's mickey and his parents. elaine: nice looking family. jerry: very handsome. kramer: (to mr. abbott) how ya doing? mr. abbott: hey kramer. julie: oh mickey. excuse me, i can't take this. (she exits quickly) jerry: hi, mr. abbott. mr. abbott: that's dr. abbott, d.d.s. tim whatley was one of my students. and if this wasn't my son's wedding day, i'd knock you teeth out you anti-dentite bastard. beth: what was that all about? jerry: oh, i said something about dentists and it got blown all out of proportion. beth: hey, what do you call a doctor who fails out of med school? jerry: what? beth: a dentist. (they laugh) jerry: that's a good one. dentists. beth: yeah, who needs 'em? not to mention the blacks and the jews. (jerry fakes a smile) elaine: where's beth? jerry: she went out to get her head shaved. father: we are gathered her today to unite this couple in holy... matrimony. jerry: those wisdom teeth are tough to get out. father: marriage is not an intervention to be entered lightly... yada yada yada, i pronounce you man and wife. (they kiss, walk toward exit) karen: (to kramer) i really wanted you. elaine: uh, excuse me. gladys: be with you in a minute. (turns her back to elaine and continues into phone) no, you shoulda come last night, it was fun. elaine: uhm, i just have a question. gladys: (into phone) i know, the margaritas in that place are so strong. elaine: (walks up to counter) helloo? i'd like to buy these hirachis. gladys: (into phone) so? what else is goin' on? elaine: (shouts) hey!! gladys: listen, i'll call you back. (to elaine) yes? what can i do for you? elaine: (tosses the hirachis onto the counter) nothing. you, just lost a customer. valerie: ready to go? i don't wanna miss the previews. jerry: me neither. i love the previews. in fact i enjoy being in the theatre cut up(?). last week after a preview, i yelled out 'must miss'. valerie: i think that i was in that theatre. that, that was really funny. jerry: yeah, it got a good laugh. let me just check my messages before we go. george: so you're on the speed dial? jerry: after two dates! george: what number? jerry: seven. george: wha! you know, it's a pain to change that. you gotta lift up that plastic thing with a pen. kramer: uh, hey buddy. jerry: hey. kramer: it all right if i keep these here for a while? i'm having a new year's eve party. jerry: you're gonna keep these here for eight months?! kramer: no, jerry. new year's eve nineteen ninety-nine. the millennium. i told you about that. jerry: kramer, you're gonna leave these chairs here for two and a half years?! kramer: you're not gonna see 'em. i got a case of party poppers i'm gonna keep in front of 'em. george: hey, so get this. i get a call this morning from one of the mets front office guys. they wanna take me out to lunch. jerry: what for? george: (smiling) i'm on a winning ball club, jerry. they probably wanna pick my brains. jerry: really, why d'you think they're taking you out to lunch? george: (thoughtful) i have no idea. elaine: alright, i have had it with those mayans. jerry: i don't mind the mayans. elaine: (unfolding chair) you know that store, putumayo? (sits) i was trying to buy these hirachis, right, and the saleswoman just completely ignored me. kramer: what, we talking hirachis? i know a great store for hirachis. elaine: no, no, not putumayo. kramer: no, no. cinqo de mayo. (leaving) yeah, marcellino, he turned me on to it, and he's one sixty-fourth mayan. george: (slightly worried) you know, i'm starting to get a little nervous about this lunch. elaine: what'd you have? kramer: yeah, i'm gonna keep these here too, huh? they'll be alright. (begins to leave) jerry: kramer, these balloons aren't gonna stay filled till new year's! kramer: (at the door) well, those aren't for new year's. those are my everyday balloons. minkler: george, we'll be blunt. the mets need somebody to head up scouting, and we think that someone might be you. george: (surprise) head of scouting? mooney: interested? george: (playing it cool) i'm still here. minkler: now, unfortunately, league rules prevent us from making you an offer while you're still under contract. mooney: you understand what we're talking about? george: so you're talking... minkler: no, no. mooney: we're *not* talking. we're just, talking. george: so, you need me to get fired. minkler: we didn't say that. mooney: we couldn't say that, because even if we did... minkler: ...we couldn't say that we said it. mooney: you see what we're saying? george: (jokingly) you are still paying for this lunch? minkler: (serious) we didn't say that. jerry: hi. sorry i'm late. there's a lotta chairs and balloons in my apartment. how 'bout i make it up to you with dinner? valerie: (pointedly) someplace nice this time? jerry: yeah, i'm sorry about that mongolian barbecue last night. i'd heard good things. valerie: (rising) i don't know, got a two in zagat's. jerry: lemme just check my messages. (to himself) maybe a nicer girl called. voice (o.c.): hello? jerry: hello? who's this? voice (o.c.): jane. what number did you dial? jerry: seven? elaine: hey! see these? (raises her foot so her new hirachis can be seen) cinqo de mayo! sales commission, bye-bye-o! (waves) george (o.c.): (singing) meet the mets... george: ...meet the mets. come on in and greet the mets. jerry: good meeting? george: there was no meeting. (gets one of the folding chairs) but it was quite a meeting. you are looking at the next director of mets scouting. the only thing is, i have to get fired from the yankees first. jerry: you can do that. george: of course. but i really wanna leave my mark this time, you know, uh. i wanna walk away from the yankees with people saying 'wow! now that guy got canned!' jerry: so you want to go out in a final blaze of incompetence? george: ehh. (nostalgic) remember that summer at dairy queen where i cooled my feet in the soft-serve machine? kramer: you think people will still be using napkins in the year two-thousand? or is this mouth-vacuum thing for real? jerry: so, george... george: yeah. jerry: (rising) i had like a so-so date with valerie, now i'm number nine on the speed-dial. george: so? jerry: so? i used to be seven. i dropped two spots. george: what, she's ranking you? jerry: yeah, this speed-dial's like a relationship barometer. george: what is a barometer exactly? kramer: it's pronounced thermometer. kramer: you know, in the year two-thousand, we'll all be on speed-dial. you'll just have to think of a person, they'll be talking to you. it'll be like, wup (judders and puts his hands to his temples, as if receiving a call on a 'mental phone') getting a call here. kramer: (to jerry and george) hey, it's newman. (to 'mental phone') hey, how you doing, newman? kramer: (to 'mental phone') oh, you wanna talk to jerry? valerie: (pleased) oh, flowers. you didn't have to do that. i mean, the dinner, and the play, and the hansom cab ride. jerry: well, i just wanted to... (breaks off) you forgot the gift certificate to barnes and noble. valerie: oh. jerry: (resumes) ...you know, make a good impression. valerie: i'm gonna go put these in some water. jerry: i like the way you think. jerry: oh my god! number one!! seinfeld, you magnificent bastard! george: sorry i'm late, but look what i found in the yankee hall of pride display case. wilhelm: isn't that babe ruth's uniform? george: is it? (reaches into bag) george: huh, strawberries, anyone? (eats a strawberry) ah, that's good. ooh, juicy this time of year. george: gotta get the good ones. george: oh, that's bad. that's bad. kramer: so jerry, my millennium party's really coming together. will people be able to breathe underwater in the year two-thousand? jerry: some of us. kramer: (crumpling a piece of paper) i don't wanna exclude anybody. jerry: hola. elaine: shove it! jerry: what is all this? elaine: i got all this junk at cinqo de mayo, because i was trying to show putumayo how much business they'd lost. i mean, i been dancing (demonstrates dance) and strutting in front of their store for two days. jerry: ah, no wonder we're getting so much rain. kramer: elaine, i'm having a millennium party, so save the date. elaine: hey, you know what? newman sent me an invitation already, to his party. kramer: newman? elaine: yeah. kramer: (reads) come celebrate the millennium, with newmanniun. newman! jerry: hi valerie. jerry: you're not valerie. mrs hamilton: i'm her step-mother. drive. mrs hamilton: it's taken me thirteen years to climb up to the top of that speed-dial, and i don't intend to lose my spot to you. jerry: but, i never... mrs hamilton: (threatening) you just stay away from that phone. george: you wanted to see me, sir? steinbrenner: i heard about what happened at the meeting this morning... george: oh, yes. i already packed up my desk, sir. i can be outta here in an hour. steinbrenner: ...and i have to tell you, it's exactly what this organisation needed. steinbrenner: we wanna look to the future, we gotta tear down the past. babe ruth was nothing more than a fat old man, with little-girl legs. and here's something i just found out recently. he wasn't really a sultan. ah, what d'you make of that? hey, check this out. (he stands to reveal he's wearing baseball pants) lou gehrig's pants. not a bad fit. (a thought occurs) hey, you don't think that nerve disease of his was contagious, do you? uh, i better take 'em off. i'm too important to this team. (removes the pants to reveal his boxers) big stein can't be flopping and twitching. steinbrenner: hey, how 'bout some lunch. what're you going for? jerry: you know uh, valerie, i uh, couldn't help but notice that i'm on your speed-dial. valerie: you deserve it. jerry: but i can't help thinking that maybe there's someone in your life who deserves it more. someone you've known, you know, more than a week. valerie: my stepmother got to you, didn't she? jerry: what? no. valerie: uuh, i can't believe she did this again. that's it! she's off the speed-dial completely! jerry: yikes! kramer: well, i just got your invitation to the newmanniun party. newman: you just got it? damn, the mail is slow. kramer: (getting worked up) you knew i was having a millennium party, but you just had to throw yours on the same day! newman: i have done nothing unethical. kramer: yeah, well you're gonna have to cancel it, because i've told everybody about my party. newman: cancel! (jumps to feet) think again, longshanks! i started planning this in nineteen seventy-eight. i put a deposit down on that revolving restaurant that overlooks times square, and i booked christopher cross. kramer: (worked up) well, what am i gonna do? i got over two hundred folding chairs, and quite a bit of ice. newman: (thoughtful) what kind? kramer: cubed. newman: that's good stuff, and you can never have too much ice. alright, i'll tell you what i'll do. you can co-host the party with me, under one condition. no jerry. jerry is not invited. kramer: i gotta invite jerry. he's my buddy. newman: that he may be. but he's outta my life, starting in the year two-thousand. for me, the next millennium must be, jerry-free! jerry: how could they not fire you? george: never thought i'd fail at failing. jerry: aw, come on there now. george: (depressed) feel like i can't do anything wrong. jerry: nonsense. you do everything wrong. george: (hopeful) everything? jerry: everything. george: you really think so? jerry: absolutely. i have no confidence in you. george: alright. i guess i just have to pick myself up, dust myself off, and throw myself right back down again! jerry: that's the spirit. you suck! george: (pleased) i know. elaine: no, no, no no, listen to me. i work in fashion. together, we can drive putumayo outta business and make cinqo de mayo numero uno... de mayo. gladys: do you need some help with something? elaine: (puzzled) you? what're you doing here? gladys: i own this store. elaine: no you don't. you own putumayo. unless you own both stores. (laughs nervously) gladys: i'm gladys mayo. elaine: ah, this really sticks in my craw. jerry: well, mrs hamilton, it's certainly nice that you and valerie patched things up, so we could all get together like this. where is valerie? mrs hamilton: i'm sure she'll be along. (handing over a glass) have some wine, jerome. jerry: okay. mrs hamilton: you know jerome, i can understand what valerie sees in you. so attractive, so strong, so comedic. jerry: uh, good. mrs hamilton: jerome, i have a deliciously naughty idea. jerry: (nervous) what? mrs hamilton: why don't i put you on my speed-dial? jerry: i don't know, mrs hamilton. that doesn't sound... mrs hamilton: don't be such a child, jerome. how's number three sound? jerry: valerie's not coming over, is she? mrs hamilton: seven, four... jerry: no... mrs hamilton: two... jerry: stop, stop. this isn't right. what about valerie? mrs hamilton: i won't tell if you don't. jerry: (leaving hurriedly) wuhh... kramer: jerry... newman... two-thousand... kramer: (yells) newmanniun!! kramer: (whimper) jerry? koren (o.c.): alright, yankees, two. orioles, nothing. wait a minute! a short stocky bald man is streaking across the field. jerry: oh my god, george! koren (o.c.): check that. he's not streaking. he's wearing a flesh-tone body-stocking. apparently, he's a bit bashful, and oddly, no-one seems upset. jerry: kramer, look, it's george. koren (o.c.): everyone loves him. kramer: yeah, yeah, i know. (he clicks off the tv) listen, jerry, i can't let you come to my new year's party. jerry: (neutral) fine. kramer: (agitated) i mean, it's killing me! newman's got the jump on the invites, and will crush me if i try to go it alone! jerry: (neutral) no problem. kramer: (swung by jerry's argument) you're right. i won't do it without you. i feel so ashamed i even thought of it, huh. kramer: (pleading) elaine, you can't go to newman's newmanniun. elaine: (neutral) okay. kramer: no, no, no. you gotta spend new year's nineteen ninety-nine with me and jerry. elaine: (neutral) fine. kramer: (frustrated shout) oh come on!! elaine: (neutral) alright. kramer: (triumph) yesss! alright, so it's you, it's me, and it's jerry, huh. (claps hands) yeah, now things are starting to snowball, huh. i'll tell newman i don't need him. so, i'll uh, see you two in the twenty-first century. elaine: (following kramer to the door) okay. kramer, kramer, wait a minute. do you still have that pricing-gun? kramer: yeah. elaine: okay, i need you to help me put putumayo outta business. kramer: can do. jerry: what're you doing with a pricing-gun? elaine: that place is about to have the sale of the century. nothing over ninety-nine cents. jerry: (to himself) still a rip-off. jerry: hello? valerie: jerry, i was just at my stepmom's house, and i saw that you were on her speed-dial. jerry: uh, well, she uh, probably just wanted to be able to keep tabs on you. jerry: hold on a second. jerry: hello? mrs hamilton: (seductive) hi jerome. jerry: oh, mrs hamilton, this is a very bad time. i've got valerie on the other line. just a second. jerry: hello? valerie: that's her on the other line, isn't it? jerry: well... valerie: tell her i don't want you on her speed-dial. jerry: hang on. jerry: she knows about the speed-dial. mrs hamilton, you gotta get me off this thing. mrs hamilton: i won't, until she puts me back on hers. jerry: hang on. jerry: she wants to be back on yours. valerie: fine. but only if you're off hers. jerry: hang on. jerry: fine, if i'm off yours. valerie: no, still me. jerry: sorry. hang on. jerry: fine, if i'm off yours. mrs hamilton: i won't do it. it's my speed-dial, and i don't trust her. jerry: please, mrs hamilton, this is very awkward for me. mrs hamilton: (conspiratorial) alright. i'll hide you in one of the emergency buttons. jerry: (hurried) great, bye. jerry: she said she'll do it. valerie: great. jerry: hang on. jerry: hello? george: jerry. i can't get fired. fan: hey, body-suit man. 's up? fan: (pointing) hey, body-suit man. kramer: hi, i'm h.e. pennypacker. i'm a wealthy american industrialist uh, looking to open a silver mine in the mountains of peru and uh, before i invest millions in a lucrative mine, i, i'd like to go a little native. uh, get the feel of their condiments, of their unmentionables, you know, the real uh, gritty-gritty. gladys: well, lemme show you what we have. kramer: well uh, i think i can just browse around on my own. kramer: (re the chips) hmm, macchu picchu. are these free? gladys: yeah. kramer: hmm-mmm. gladys: some of those are women's clothes. kramer: oh, not a problem. george: attention steinbrenner and front-office morons! your triumphs mean nothing. you all stink. you can sit on it, and rotate! this is george costanza. i fear no reprisal. extension five-one-seven-oh. kramer: l'occupado. elaine: come on, what is taking you so long? kramer: elaine, i broke the price-gun, so i had to move to plan b. elaine: plan b? there is no plan b. kramer: (holds up some small white sachets) i took these out of every single garment in the store. elaine: what?! kramer: they're dessicates. see, they absorb moisture. (gleeful) these clothes won't last five years without 'em. elaine: that's not gonna do anything. kramer: patience. elaine: alright. forget it! kramer: what? elaine: you have screwed me again, pennypacker! gladys: ladies, care for some chips? kramer: (emerging from the changing room) well, i don't mind if i do. kramer: well, i've uh, i've changed my mind. i think i'm going to build a rollercoaster instead. steinbrenner: i heard what you did in the parking lot, big boy, and it is in-excuse-a-bull. you personally insulted me, my staff... i cannot believe that you, body-suit man, could perpetrate such a disloyalty. breaks my heart to say it... oh, who am i kidding? i love it. you're fi... wilhelm: wait, wait, mr steinbrenner. george doesn't deserve any of the blame for what happened in the parking lot today, sir. if there's anyone to blame here, it's me. steinbrenner: what're you talking about, wilhelm. you popping pills? you got the crazies again? wilhelm: no, no. no, no, sir. i ordered george to drive around insulting people today. because i'm tired of all your macho head games. george: (agitated) he's lying, sir! i'm tired of all your macho head games! steinbrenner: macho head games? wilhelm: (puts arm round george's shoulder) he's just being loyal to me, sir. steinbrenner: wilhelm, you're fired. i owe you an apology, body-suit man. streak on. (rising) now, if you gentlemen'll excuse me, i'm not going to the game today, i'm gonna go outside and scalp some tickets. (heads toward the door) owner's box, that's gotta bring in forty bucks, no problem. george: mr wilhelm, what was that?! wilhelm: i wanted to get fired. george, you are looking at the new head scout of the new york mets. wilhelm: (singing) meet the mets, meet the mets. come right out and greet the mets. kramer: i don't know what elaine is so upset about. i mean, without dessicates, those clothes'll be noticeably musty in five years. jerry: she never sees the big picture. jerry: hello, newman! newman: hello jerry. (to kramer) what did you say to elaine? i just got her cancellation in the mail. kramer: oh, well i guess she found some place better to go. newman: well, it's her mistake. because she is going to miss the party of a lifetime. kramer: well, maybe so, but come midnight, when she's looking for someone warm and cuddly to kiss, i guess you'll be caught between the moon and new york city. newman: alright. come back to my party, please. kramer: jerry too, of course. newman: (reluctant) you don't wanna do your... act, or anything, do you? jerry: no. newman: alright then, i guess i can accept a little jerry, if it gets me a (suggestive) lot of elaine. kramer: deal? newman: to the newmanniun! (holds out his hand) kramer: (grasps newman's hand) to the kramennium. jerry: by the way newman, i'm just curious. when you booked the hotel, did you book it for the millennium new year? newman: (smug) as a matter of fact, i did. jerry: oh, that's interesting, because as everyone knows, since there was no year zero, the millennium doesn't begin until the year two-thousand and one. which would make your party, one year late, and thus, quite lame. jerry: aww! mrs hamilton: i don't feel well at all. i feel all dried-out inside. valerie: i'll call for help. jerry: hello? valerie: who's this? jerry: it's jerry. who's this? valerie: uh, it's valerie. jerry: oh, hi valerie. what's up? valerie: i'll tell you what's up. my stepmother is violently ill, so i hit the button for poison control and i get you! jerry: wow, poison control? that's even higher than number one! jerry: hello? jerry: hang on just let me pick up a paper. man: excuse me. would you mind watching my bag for a minute? george: yeah. no problem. jerry: let's go. george: woah, i gotta watch this guy's bag. jerry: for how long? george: i'm sure he'll be back in a second. jerry: come on. george: excuse me sir. would you mind watching my bag for a minute? man 2: why? so i can stand here like an idiot not knowing if you'll ever come back? george: where are you going? jerry: i'm going to be this guy's friend. jerry: new clothes? george: yeah. i did some shopping. some new clothes shopping. (turns to a man) can i borrow your menu? jerry: strange. for new pants, there's noticable wear on the buttocks of those chinos. wait those are the clothes from the bag! george: the guy never came back. jerry: he asked you to watch them not wear them. george: i'm still watching them. jerry: you look like a tourist. george: all right, let me ask you something when do you start to worry about ear hair? jerry: when you hear like a soft russeling. george: it's like puberty that never stops. ear puberty, nose puberty, knuckle puberty, you gotta be vigilent. let me ask you this do you know where walker street is downtown? i've got a league meeting there. jerry: oh right, the new job, how is it? george: i love it. new office, new salary. i'm the new wilhelm. jerry: so who's the new you? george: they got a new intern from francis louis high. his name is keith. he comes in mondays after school. jerry: oh hi alex. alex: i'm sorry i'm late. have you ordered yet? jerry: no. alex: i'll be right back. george: where are you meeting these women? when they get off the bus at the port authority? jerry: right here, george. in here. (pointing to his chest) try opening this up. you'll find the biggest dating scene in the world. george: thanks. thanks a lot. kramer: hey. elaine: hey. kramer: hi. elaine: where's jerry? kramer: well he's in the shower. you want me to get him? elaine: no. no no. actually i kind of need to speak to you. kramer: well let's sit down. elaine: kramer, ahem, remember that whole deal with you selling peterman your stories for his book and then he gave them back to you? kramer: vaguely. elaine: well i was kind of, hehehe, short on material and i, um, i put them in the book anyway. kramer: you put my life's stories in his autobiography? elaine: kramer listen, it is such a stupid book. it doesn't matter. kramer: oh no. sure. it matters. wow. i've broken through, huh. i'm part of popular culture now. listen i've got to thank mr. peterman. elaine: he's doing a book signing at waldenbooks this afternoon. kramer: waldenbooks? that's a major chain huh. kramer: he jerry, i'm going to waldenbooks. jerry: (yelling) get out! get out! i don't want to live like this. kramer: all right, let's go. elaine: mr. lippman, how are you? mr. lippman: well i'm not bad. not bad. elaine: what are you doing here? mr. lippman: i work for pundant publishishing. this is our book. elaine: oh. mr. lippman: if you can call it that. why is it every half-wit and sitcom star has his own book out now? kramer: hey buddy. remember me? mr. peterman: you're that gangly fellow we bought the stories from. kramer: yeah, i'm just here to do my part. what's your name darling? woman: who are you? kramer: i'm the real peterman. mr. peterman: all right playtime's over. kramer: relax man. there's enough juice here to keep us all fat and giggley. woman: i can't believe somebody pulled the top off of this muffin. elaine: that was me. i'm sorry. i don't like the stumps. mr. lippman: so you just eat the tops. elaine: oh yeah. it's the best part. it's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of (makes hand motions) does it's own thing. i'll tell you. that's a million dollor idea right there. just sell the tops. kramer: i have a right to be here. these are my fans. hey you're hurting my elbow. man 1: try looking up hayseed. man 2: you wanna sightsee? get on a bus. mary anne: please don't think all new yorkers are so rude. george: well actually i'm... mary anne: i'm mary anne. i work for the new york visitor's center. where are you visiting from? george: little rock, arkensas. mary anne: ooh. jerry: hmm. that looks new. kramer: so get this. peterman has his henchmen forcefully eject me from the book signing like i'm some kind of a maniac. jerry: (uncomfortably) yeah that's too bad. kramer: what's the matter with you? jerry: (uncomfortably) nothing. kramer: no, no, no. don't give me that. i know you. something's wrong. what is it. jerry: i did something stupid. kramer: what did you do? jerry: well i was shaving. and i noticed an asymmetry in my chest hair and i was trying to even it out. next thing i knew, (high pitched voice) gone. kramer: don't you know you're not supposed to poke around down there. jerry: well women do it. kramer: (high pitched voice) "well women do it." i'll tell you what. i'll pick you up a sundress and a parasol and you can just (high pitched voice) sashey your pretty little self around the town square. jerry: well what am i going to tell alex? kramer: listen to me. you don't tell anybody about this. no one. you hear me? jerry: um hum. kramer: hey, jerry shaved his chest. jerry: hey! kramer: i forgot. wait. never mind. alex: how about the beach this weekend? jerry: you couldn't pay me enough to go to the beach on a weekend. i mean it's hard enough... alex: all right. all right. wow is that a mexican hairless? oh, i love those. ooh, hairless. this is where it's at. it's so much smoother and cleaner. jerry: really? elaine: "top of the muffin to you!"? mr. lippman: top of the muffin to you. elaine! elaine: mr lippman? jerry: so you're pretending to be a tourist? george: it's beautiful. she makes all the plans. i'm not from around here so it's okay if i'm stupid, and she knows i'm only in town visiting so there's no messy breakup jerry: how do you explain your apartment? george: i got a hotel room. jerry: you moved into a hotel? george: well i don't know anyone here jerry. where else am i going to stay? jerry: so get this we're in the park today alex goes wild for this hairless dog. george: so? jerry: so. i figure since she likes one hairless animal why not another. george: oh really. you tell her you shaved it? jerry: are you nuts? i don't want her to think i'm one of those low-rise briefs guys who shaves his chest. kramer: (yelling up at jerry) hey jerry. kramer: (yelling) i'm starting a peterman reality bus tour. check it out. hahaha. george: reality tour? jerry: the last thing this guy's qualified to give a tour of is reality. elaine: this was my idea you stole my idea. mr. lippman: elaine these ideas are all in the air. they're in the air. elaine: well if that air is comming out of this face then it is my air and my idea. mr. lippman: you want a muffin or not? elaine: peach. mary anne: so i notice you don't have much of an accent. george: yeah my parents have it. sometimes it skips a generation. mary anne: look george, i'm really enjoying spending time with you but i'm not sure this is going to work out. at some point you're going back to your job at tyler chicken and your three-legged dog willie. george: willie. yeah. mary anne: and i'm still going to be here. george: well what if i told you i'm thinking of moving here? mary anne: (laughs) george, no offense. but this city would eat you alive. jerry: you're moving to new york? that's fantastic. i can see you all the time now. george: eat me alive, huh? we'll see who can make it in *this* town. jerry: what is it she think you can't do? george: find a job. get an apartment. jerry: how did you do those things? george: never mind. the're done. all i have to do now is redo them. you know if you take everything i've ever done in my entire life and condense it down into one day, it looks decent. jerry: hey, what were you doing with that bus yesterday? kramer: here you go, here you go, check it out. jerry: "the real peterman reality bus tour". i'm confused. kramer: peterman's book is big business. people want to know the stories behind the stories. jerry: nobody wants to go on a three hour bus tour of a totally unknown person's life. kramer: i'm only charging $37.50, plus you get a pizza bagel and desert. george: what's desert? kramer: bite-size three musketeers. just like the real peterman eats. george: he eats those? kramer: no. i eat those. i'm the real peterman. george: i think i understand this. jay peterman is real. his biography is not. now, you kramer are real. kramer: talk to me. george: but your life is peterman's. now the bus tour, which is real, takes to places that, while they are real, they are not real in sense that they did not *really* happen to the *real* peterman which is you. kramer: understand? jerry: yeah. $37.50 for a three musketeers. mr. lippman: elaine. i'm in over my head. nobody likes my muffin tops. elaine: so? what do you want me to do about it? mr. lippman: you're the muffin top expert, tell me what i'm doing wrong. elaine: mr. lippman, when i worked for you at pendent publishing, i believed in you, you know as a man of integrity. but, i saw you in that paper hat and that aprin... mr. lippman: what if i cut you in for 30% of the profits? elaine: deal. here's your problem. you're making just the muffin tops. you've gotta make the *whole* muffin. then you... pop the top, toss the stump. taste. mr. lippman: ah. (takes a bite of the top.) mmmmm. ah hah? elaine: yeah. mr. lippman: so what do we with the bottoms? elaine: i don't know, give em to a soup kitchen. mr. lippman: that's a good idea. elaine: and one more thing, you really think we need the exclamation point? because, it's not "top of the muffin *to you!!!*" mr. lippman: no. no. it is. kramer: hey jerry. what is this? lady gillette? what's going on? jerry: what? can't i get a moment's peace? kramer: what are you doing to yourself? jerry: i can't stop. alex thinks i'm naturally hairless. kramer: you can't keep this up. don't you know what's going to happen? everytime you shave it, it's going to come in thicker and fuller and darker. jerry: oh that's an old wives tale. kramer: is it? look at this. kramer: (high pitched voice) look at it! look at it! and it's all me. i shaved there when i was a lifeguard. jerry: oh come on. that's genetics. that's not going to happen to me. kramer: won't it? or is it already starting to happen? elaine: wow. look at this. we're cleaning up. lippman: oh, rubin, get me another tray of lowfat cranberry. rebecca: excuse me, i'm rebecca demore from the homeless shelter. elaine: oh, hi. rebecca: are you the ones leaveing the muffing pieces behind our shelter? elaine: you been enjoying them? rebecca: they're just stumps. elaine: well they're perfectly edible. rebecca: oh, so you just assume that the homeless will eat them, they'll eat anything? mr. lippman: no no, we just thought... rebecca: i know what you thought. they don't have homes, they don't have jobs, what do they need the top of a muffin for? they're lucky to get the stumps. elaine: if the homeless don't like them the homeless don't have to eat them. rebecca: the homeless don't like them. elaine: fine. rebecca: we've never gotten so many complaints. every two minutes, "where is the top of this muffin? who ate the rest of this?" elaine: we were just trying to help. rebecca: why don't you just drop off some chicken skins and lobster shells. elaine: i think i might. mary anne: i can't believe you found something so quickly. how much you pay? george: $2300. mary anne: ouch. a month? george: yeah. mary anne: well, guess that's all right for now, but if you say here for more than a few months, you're a real sucker. george: yeah, well i uh got lots of other stuff to show you too. wait till you see the plum job that i landed. mary anne: yeah. we should let this place air out anyway. it smells like the last tenant had monkeys or something. kramer: comming up on the right, if you glance up you can just make out my bedroom window. it's the one that's covered in chicken wire. woman: hey if you're the real peterman, who come you're wearing those ratty clothes? the're not very romantic. kramer: (over the speaker) well that's your opinion. man 1: can i have another three musketeers? they're rather small. kramer: forget it. okay newman's postal route is around here somewhere. man 2: who's newman? man 3: who cares. man 4: hey fake peterman, let me off. i'm nautious. man 1: can i have his candy bar? kramer: ahh. everyone just settle down. we have three hours left on this thing, and i can't drive and argue with you rubes all at the same time. okay. lomez's place of worship is right on the right here. jerry: why do i have to go on the tour? kramer: jerry you're a minor celebrity. if you go on this thing, it could create a minor stir. bring that girlfriend of your and i'll only charge to 60 bucks. jerry: hey, how's business? elaine: ooh, i've got stump troubles. the sanitation department won't get rid of them all, i can't get a truck to haul this stuff until next week. meanwhile, i'm sitting on a mountain of stumps. kramer: all right, i've got to hose the puke off the floor of the bus. elaine: bus? wait a minute, wait a minute, bus? you've got a bus? kramer: yeah. elaine: you got any room on that thing? kramer: yeah there are a few seats still available. elaine: do you think you could transport some stumps for me? i'll make it worth your while. kramer: well, if they don't mind sitting in the back. elaine: no they don't. kramer: are they war veterans? mary anne: wow this is your office. mr. steinbrenner: woah. hello. sorry george, didn't know you got a girl in here. give me a signal on the doornob like a necktie or a sock or something. come on george, help me out. mary anne: mr. steinbrenner, i would like to thank you for taking a chance on a hen supervisor at tyler chicken like our boy george here. mr. steinbrenner: hen supervisor from tyler chicken? george: yes. very nice to have had her to mention... (starting to leave) mr. steinbrenner: wait a minute george. george: be right with you. look mr. steinbrenner. mr. steinbrenner: moonlighting for tyler chicken. pretty impressive george. days with the new york yankees and nights in arkensas with a top flight bird outlet. and a hen supervisor to boot. i am blown. bloooown away. blown george. (vibration in the "o"'s) bloooooooooooooooooooown. alex: you know when you make a pizza bagel, you really shouldn't use cinnimon rasin. jerry: you also shouldn't use a donut. kramer: all right ladies and gentlemen. welcome to the peterman reality tour... tape player: turn music off. jerry: can we just go? kramer: and go we will. man: what is this? a piece of pound cake? kramer: we have a bonus reality stop today. we will be hauling muffin stumps to the local repository. man 2: we're going to a garbage dump? kramer: and we're off. jerry: you know i never though he would be able to recreate the experience of actually knowing him, but this is pretty close. mr. steinbrenner: (the back of his head to the camera) john tyler? george steinbreener here. i want to talk about george castanza. i understand he's been dividing his time between us and you. i cannot have that. john tyler: (the back of his head also to the camera) well i don't know who he is but if you want him that bad i'm not giving him up that easily. mr. steinbrenner: oh is that so. playing a little hardball huh jonnyboy? john tyler: how about this. you give me castanza, i convert your concessions to all chicken no charge. instead of hot dogs, chicken dogs. instead of pretzels, chicken twists. instead of beer, alcoholic chicken. mr. steinbrenner: how do you make that alcoholic chicken? john tyler: let if ferment, just like everything else. mr. steinbrenner: that stuff sounds great. all right. i'll have costanza on the next bus. man: hey hey hey hey hey. where do you think you're going? kramer: i was going to dump this. man: it doesn't look like garbage. kramer: well it's muffin stumps man: where are the muffin tops? kramer: this is a garbage dump. just let me dump it. man: can't do it. kramer: is this a joke? man: that's what i'd like to know about it. alex: you have a pretty heavy beard, don't you? jerry: what's that? alex: well look it's almost time for you to shave again. jerry: oh. yeah. kramer: (gets back on the bus, yelling) well maybe i will take it up with consumer affairs. ladies and gentlemen you're in for an additional treat. we're going to extend the tour at no extra charge. man: where are we going? kramer: (looking at a map) i don't know. (over the speaker) uh, no more questions. waitress: so, the new york yankees traded you for a bunch of tyler chicken. george: dogs, twists, a kind of fermented chicken drink. man: hey, aren't you the guy i asked to watch my clothes? george: what clothes? man: these clothes. the ones you're wearing. jerry: (in low voice to next to kramer) kramer how much longer? my chest hair is comming back and it's itching me like crazy. i can't let her see me scratch it. kramer: don't worry. i've got a good feeling about this dump. jerry: i'm telling you man, i'm losing it. jerry: i can't sit on this bus anymore. i think i'll go play with that dog. kramer: i don't know where the tops are. kramer: jerry what's the matter? jerry: (for the first half of the howl, a dog howls along with him.) awoooooo-oooooooo, that feels good. bartender: hey, you looking for george? mary anne: yeah. bartender: he's been in the bathroom awhile. you might want to check on him. george: (talking on the phone) jerry you gotta bring me some clothes down here. i lost my job with the yankees. i'm standing in the men's room on 43rd street in my underpants. mary anne: i told you this city would eat you alive. mr. lippman: what is this guy again? elaine: they call him a cleaner. he makes problems go away. newman: hello elaine. where are they? elaine: in the back. newman: all right, i'm going to need a clean 8 ounce glass. mr. lippman: what is going on here? newman: if i'm curt, then i appologize. but as i understand it, we have a situation here and time is of the essence. (newman goes to the back room with the muffin stumps and sets down a cooler and an empty glass. from the cooler he takes out 4 bottles of milk and sets them down. he bites into a stump, then takes a drink of milk from the glass. (continuity error: he never actually poured the glass of milk.) he swishes the muffin and the milk together and swollows. he takes another stump.) jerry: nah, you had a good run. took them to the world series. george: i got to give the players most of the credit for that. jerry: don't sell yourself short. you made all the flight arrangements, hotels, busses. george: no, i don't know who was doing that. jerry: so, when you actually did work, what it was that you did? george: they had a pastry cart you wouldn't believe. lanette: here you go. your latt, your cappuccino. jerry: maybe i should ask her out? george: she is a good waitress. jerry: that's true. maybe i take her to the tony's. george: you're going to the tony's? jerry: yeah, i wrote some jokes to the show and they gave me two tickets. george: why didn't you ask me? i know a million theater jokes. 'what's the deal with those guys down in the pit?' jerry: they're musicians. that's not a joke. george: it's a funny observation. george: severance package...the yankees are giving me three months full pay for doing nothing. jerry: they did it for three years. what's another few months. george: i'm really going to do something with these three months. jerry: like what? george: i'm gonna read a book. from beginning to end. in that order. jerry: i've always wanted to do that... george: i'm gonna play frolf. jerry: you mean golf? george: frolf, frisbee golf jerry. golf with a frisbee. this is gonna be my time. time to taste the fruits and let the juices drip down my chin. i proclaim this the summer of george! elaine: ...and then peterman ate it. i never told him. elaine: who's that? dugan: that's sam, the new girl in the counting. walter: what's with her arms? they just hang like salamis. dugan: she walks like orangutan. elaine: better call the zoo. dugan: reer... elaine: what? walter: ssssss... dugan: cat-ty... elaine: it's like she's carrying invisible suitcases. jerry: like this? (imitates the walk) elaine: yes, exactly. jerry: that's so strange. elaine: right. so why i'm the one who gets 'reer'. you know i mean they were being as catty as i was. it's a double standard. jerry: oh, what about 'ladies night'? women admitted free before 10? elaine: that is so stupid. jerry: reer. george: hey, 'the white shadow' is on... jerry: boy, your really packing it all in. george: jerry, my vacation just started. i need a day or two to de-compress. besides, i did plenty today. jerry: like what? george: i bought a new recliner with a fridge build right in to it. kramer: hey jerry, you got any tums? jerry: stomach ache? kramer: i drank too much water in the shower. jerry: aah, top of the fridge. hey george, i'm taking that waitress to the tony's. george: shadow! kramer: oh, the tony's. i'll see you there buddy. elaine: you're going to the tony's too? kramer: roger that. jerry: where are you sitting? kramer: well, all over the place. yeah, i'm a seat filler. they don't like to see empty seats on tv so when somebody gets up i just park my kaboos on their spot until they get back. elaine: how did you get that job? kramer: mickey, mickey he hooked me up. he's a member of the academy. jerry: what academy? kramer: well, he didn't say (leaves). lanette: hi! jerry: hi! lanette: nice tuxedo. jerry: thanks, it's a breakaway. lanette: should we go? jerry: absolutely. lanette: lyle, were going! jerry, this is lyle. lyle: hey, how you doing? jerry: ok... lanette: bye. lyle: have a good time. jerry: thanks, lyle... kramer: are you leaving? cause i got you covered. kramer: i'll just squeeze in... man: what are you doing? kramer: my job. what are you doing? kramer: you know, if they catch two of us on tv, you got some explaining to do. jerry: so, you and lyle are roommates? lanette: no. jerry: gay? lanette: what? jerry: is he gay? lanette: no. jerry: are you sure? lanette: i think i would know. jerry: (to himself) this is a new one. kramer: (to woman next to him) pemmican turkey? come on take a bite...well more for me. announcer: ...and the best musical award goes to scarsdale surprise! george: kramer? mr. graham: (on tv) thank you and god bless you all. this has truly been a scarsdale surprise! sam: elaine, am i crazy? i just get the feeling that dugan and the others are making fun of me all the time. elaine: well, you might wanna think about...maybe, eh...moving your arms a little when you walk. sam: my arms? elaine: you know, sort of swing them, so your not lurching around like a caveman. sam: i a caveman? elaine: no no no no, it's just... sam: everybody told what a catty shrude you are. your horrible! george: she had a dude? jerry: yeah, when i went to pick her up there was this dude. george: how do you know it was her dude? jerry: what do you think it could've been just some dude? george: sure, dudes in this town are dime a dozen. jerry: i reckon. george: or maybe, she just wanted to go to the tony's. i tell you what; you ask her out again. no tony, just jerry. that way you know it he was her dude or just some dude. jerry: dude! george: all right, that's enough. i gotta go home and take a nap. jerry: it's 1030 in the morning? george: i tell you; i'm wiped. jerry: so, has the summer of george already started or are you still de-composing? george: de-compressing. kramer: whooa, good morning gentleman and tony says hello to you. jerry: you didn't give that thing back? kramer: jerry, it was a whirlwind. they whisked us backstage, the media is sworming, champagne is flowing...whooo! i can't describe how great it is to win. jerry: that's because you didn't win. george: 'scarsdale surprise'. that's the musical about that scarsdale diet doctor murder. kramer: featuring the mind-blowing performance of ms. raquel welch! jerry: you haven't even seen it. kramer: aah, jerry i'm not gonna let you bring me down from this high. i've been partying all night. i saw the sunrise at liza's! george: what, minelli's!?! kramer: no. elaine: sam, listen i'm so sorry about the other day. sam: no, don't apologize elaine. i was thinking that maybe i should swing my arms a little bit more. elaine: see, yeah, that's all i was saying. sam: how's this (sam hits a pen case out of the table), or this (swings a paper holder of the table and starts to clear the table left and right). elaine: well, you seem to be getting a hang of it... jerry: hi! lanette: sorry, i'm running late. i just lost track of time. jerry: no rush. lyle: hey, jerry! what's up? jerry: (to himself) i have absolutely no idea. jerry: ..except that the dude plays the showroom and i'm stuck doing food and beveridged! george: who's that? jerry: it's kramer. george: hey kramer. jerry: george says hi. kramer: (shouts to the telephone) hi george! george: how's that tony? jerry: why don't you just come over? george: why can't we do this on the phone? what's kramer doing now? jerry: he's looking on to fridgerator. george: kramer. anything good in there? any popsicles? jerry: i can't do this. kramer: so, what's george doing? jerry: he's not doing anything. goodbye! kramer: so listen, i'm going to crab a bite to eat at sardi's. you wanna go? jerry: are you taking the tony to sardi's? kramer: the tony is taking me to sardi's. jerry: oh, hello. kramer: i'm going. lanette: congratulations! kramer: oh, thank you, thank you so much. i have so many people i want to thank and don't want to forget anyone... jerry: all right, all right. jerry: i said no! (hangs up the phone.) lanette: jerry, i just want to let you know; lyle and i are completely over. i'd rather be with you. jerry: just me? no dudes or fellas? lanette: what you think? jerry: i can start right away. jerry: but not here. (they leave.) jerry's answering machine: 'i'm not here, leave a message.' george: (on the answering machine) jerry, what's happening? come on, pick up the phone. kramer: ...so i said to him arthur, artie come on, why does the salesman have to die? change the title; the life of a salesman. that's what people want to see. mr. graham: mr. kramer, my name is lewis maxton graham. i'm one of the producers of 'scarsdale surprise'. kramer: hey, eh, lew! mr. graham: we need to talk. peterman: elaine, what did you want to talk me about? elaine: this. my office. sam trashed my office. peterman: well, i see what's going on in here. i am smack dab in the middle of a good old fashioned cat fight. elaine: mr. petermen, this is not a cat fight. this is violent psychotic behavior directed at me all because are told her to swing her arms. peterman: woof! elaine: do you mean "reer?" peterman: yes, that's the one! good day elaine. (leaves.) elaine: oh, no please mr. peterman, she's crazy! (sam walks by and elaine starts to sing) crazy for feelings... jerry: i can't believe how much we did this afternoon. i have friends who this would've be their whole life. lanette: now, what time are you picking me up tonight? jerry: eh, what? lanette: you got our reservation from sfuzi's, didn't you? jerry: oh yeah, sfuzi? i- i've gotta do that. lanette: should i ware the outfit i bought today? jerry: sure. lanette: which one? jerry: the one with the...(mumbles.) lanette: if i wanna get my hair cut i've gotta go now. call me when you get home. i wont be there, but leave a message so i know you called. jerry: ok, ok... lanette: do you mind? jerry: no, i'll crab it. george: hey, i've done that today. jerry: what, did you lose your remote? george: nah, the cable's out. what's with you? you look dead. jerry: it's lanette! i need an assistant or intern or something. george: (laughs) relationship intern...hey, what if two of us teamed up? jerry: not. george: no, no... jerry: no, because that's... george: no, listen; we are always sitting here, i am always helping you with your girl problems and you are helping me with my girl problems. where do we end up? jerry: here. george: exactly! because neither one of us can't handle a woman all by ourselves. jerry: i'm trying. george: i've tried. we don't have it. but maybe the two of us, working together at full capacity, could do the job of one normal man. jerry: then each of us would only have be like a half man. that sounds about right! mr. graham: i'm sure how excited you are to have this very very prestigious award. but you didn't have anything to do with the actual production. kramer: no. mr. graham: i don't think there's no way how we can allow you to keep this tony. unless... kramer: anything... malcolm: are you familiar with our star, raquel welch? kramer: oh yeah, she's fantastic.... mr. graham: she's a train wreck. malcolm: there's a big tap dance number just before jean harris leaves the (?) school to confront dr tarnover. mr. graham: it is a gut wrenching scene. malcolm: but, raquel welch doesn't move her arms when she tap dances. it's very distracting. mr. graham: there's lot of this (swings his arms) in tap dancing. kramer: so, you'd like me to teach how to dance? malcolm: no, we want you to fire her. jerry: why they want you to fire raquel welch? kramer: because they're terrified of her. i heard from someone that when they cut one of her lines, she climbed up the rope on side of the stage and started dropping lights on peoples heads. story like that has got to be true. jerry: she seems very nice. kramer: jerry, you're not in show business. you don't know what these people are like. jerry: i'm in show business. kramer: oh, come on! what am i gonna do? she's going to eat me alive. jerry: i've got a tape of 'fantastic voyage' if you think that would help. kramer: yayaya... elaine: jerry, that crazy straight-armed woman down at peterman's trashed my office. and then listen to this; this is message she left me. sam's voice: elaine...i am going to find you. if not in your office then in the xerox room or the little conference room near to the kitchen... elaine: she must've got a blueprint of the building or something. jerry: did you tell peterman about this? elaine: well, i tried, but he thought it was some sort of cat fight. kramer: cat fight? elaine: ok, why? why do guys do this? what is so appealing to men about a cat fight? kramer: yeye cat fight! jerry: because men think if women are grabbing and clawing at each other there's a chance they might somehow kiss. kramer: t-t-t-t... jerry: you got the tickets? george: yeah, two for the 715 of novaj pravas (?). what you're wearing the green sweater? jerry: i like it. george: she doesn't like. here is your blue one, it's her favorite. (takes sweater out of his bag.) jerry: what? george: just put it on! all right now, remember she had her nails done today so remark how you like the color. and if you need me you beep me, all right. here you go, hey, hey, hey, hey...(sprays binaca into jerry's mouth.) go get'em you're a tiger! jerry: hey george, one second, she's having a party friday night and she wants me to take care of the invitations. george: a little notice would've helped! how many people? jerry: 35, and george, on the invitations... george: i know, i know...don't skimp. go go go go... lanette: right on time, i like that. jerry: i like your nails, that is a great color. lanette: love the sweater. jerry: this old thing? george: hi, i need some party invitations. clerk: okay, have you been in here before? george: about a year ago. wedding invitations. clerk: right, how did that all work out? george: no complaints. clerk: well, they are arranged according the price. and as i recall...(she flips the sample book all the way to the end.) george: actually, (george flips the book back to the beginning) i'll take these nice glossy ones. raquel: "you are a fraud dr tarnover. you haven't even been to scarsdale." kramer: ms. welch. raquel: who are you? kramer: well, i'm cosmo kramer, i'm one of the producers. raquel: hello, sidney! no, no i told you i don't want to do that! if you bring it up again i will feed your genitals to a wolf! (hangs up) kids! you're still here. kramer: well, i- i ms. welch i do need to talk to you about a little problem regarding, eh, your performance. raquel: what kind of problem? kramer: well, it seems that due to the vagaries of the production parameters of this fragmenting of the audience to the cable television, carnivals, water parks... raquel: out with it! kramer: well, you're fired because you don't move your arms when you tap dance, you're like a gorilla out there i've gotta go... guy: little help? george: hey, frolf? guy: yeah, you know we need a fourth for the back nine. you want in? (george looks up and sees jerry on the other side and frisbee on the other. jerry says: "what's the deal with airplane peanuts?") george: yeah, sure. guy: ok, come on. jerry: ok, let's towel it up. lanette: jerry, where are those invitations you were supposed to get? if they don't go out today they're useless. jerry: but we're in towels. lanette: jerry. jerry: all right. one second. george: he frolfs, he scores...(he drops one invitation on the stairs.) george: hello. jerry: george, where are those invitations? you were supposed to leave them with her doorman! lanette: did you shave your chest hair? jerry: no. (lanette leaves.) did you at least pick them up? george: yeah, the super glossy. the best they had. jerry: ok, get them over here pronto. we're in towels here george. george: all right, all right, keep your towel on. jerry: ...what? george: it's a joke. jerry: all right, that's not bad. now get over here! sam's voice: (on the tape)...if not in your apartment then in the laundry room or the atm in the building across the street or the watch shop! elaine: can't you do anything about this? i mean this woman is a psycho! cop #1: 'reer.' elaine: look, just because i'm a woman... cop #2: 'mauau.' cop #1: 'meeow.' raquel: i don't move my arms when i dance. that's my signature! elaine: would you just keep an eye out for this woman. she's about ye high and eh, she doesn't swing her arms when she walks. cop #1: what do you mean? elaine: like this...(imitates the walk with her arms hanging.) raquel: what the hell is that? are you making fun of my dancing? elaine: aren't you raquel welch? raquel: you know who i am. now, what are you doing? elaine: nothing, i wasn't just moving my arms... raquel: that's it, you are going down. cop #1: ooh, cat fight. kramer: so how's george? jerry: i don't know. they don't tell me anything. what's that? (kramer holds a broken tony) kramer: tony. jerry: what happened to you? kramer: raquel welch! jerry: yikes. jerry: what happened to you? elaine: raquel welch! kramer: the woman is a menace. elaine: yeah, i bumped in to her on the street. it got pretty ugly. jerry: cat fight with raquel welch. kramer: yey eye ca-catfight. elaine: my god, george! george: i slipped on the invitations...how's the towels? jerry: back on the rack. george: with the two of us? jerry: i think we're still a man short. doctor: mr. costanza. ..your legs have sustained extensive trauma. apparently your body was in the state of advanced atrophy, due to a period of extreme inactivity. but with a lot of hard work and a little bit of luck, i think there's a good chance you may, one day, walk again. kramer: well, that's good news. elaine: wow, invitations again... kramer: yeah, that's weird. elaine: all right, well...you want to grab some coffee? jerry: yeah... kramer: i'd like to get some coffee. george: this was supposed to be 'the summer of george'! the summer of george. therapist: now, swing them...swing...swing them, just swing them. sam: i can't do it. it's hard! george: still a little summer left. george: what is holland? jerry: (also wearing a moustache) what do you mean, 'what is it?' it's a country right next to belgium. george: no, that's the netherlands. jerry: holland *is* the netherlands. george: then who are the dutch? jerry: (picking at his moustache) you know i cannot stand this thing anymore. george: i know, i hate it too. i feel like an out of work porn star. jerry: i told you, we should have taken some kind of vacation. george: well why didn't we? jerry: because you said this would be better. remember? a vacation from ourselves. that's what you said. george: what if we grew muttonchops? jerry: no. george: buzz cuts? parachute pants! jerry: stop it, george. stop it. i'm sorry, you've gotta get a job. george: (resigned) dammit. george: hey hey hey, check me out, huh? jerry: no more crutches, that must be a relief. george: yeah, with crutches everyone has questions. jerry: not with a cane? george: nah, with crutches it's a funny story, with a cane it's a sad story. you through with those? jerry: that is a sad story. hey, you should have been here tonight. some guy from nbc saw my set, he wants me to do a showcase. i might have another shot at a pilot. george: alright, we're back in! jerry: we? no. club announcer: (off camera) ladies and gentlemen, kenny bania. bania: thank you, thank you, (to jerry) hey, jerry, did ya see me up there? i was killing, jerry. killing. i killed. jerry: killed? bania: killed. (pause) i'm gonna go pick up some chicks. good-looking ones, too! (walking away) hey, what's your name? jerry: yeah, killed. because i killed first and warmed up the crowd. he's like that fish that attaches himself to the shark. george: and you're the shark? jerry: yeah, i'm the shark and he's the fish eating my laughs. george: i don't know how a fish could eat laughs. jerry: well, i'm glad i brought it up. kramer: you got any shredded coconut? jerry: (looking at kramer's moustache) uh, we're not doing that anymore. kramer: yeah, yeah, right. (walks out) george: (on the phone) oh my god. jerry: what? george: i got a job interview. they want to see me this afternoon. jerry: so what's this job? george: oh, it's beautiful. it's in sports. jerry: knicks? rangers? george: playground equipment. jerry: welcome back to the show. george: yeah haha. kramer: yeah, this is better. so, you got any shredded coconut? jerry: no. george: (holding his cane) i gotta hobble. (walks out) kramer: d-d-d-d. i gotta switch shaving creams. i'm getting no protection. jerry: what kind do you use? kramer: whatever you get. jerry: (nods) look, postcard from elaine from europe. kramer: don't tell me she's dragging another poor guy across europe. jerry: remember david puddy? kramer: oh, the face-painting auto mechanic. so she's dating him again, huh? jerry: well, i guess she's batted around and she's back at the top of the order. kramer: boy, a month in europe with elaine. (whistles) that guy's coming home in a body bag. puddy: well, let's see, i've got a ten kroner, a five kroner, a twenty kroner? no wait, that's another ten kroner. a fimty kroner? how much is that? elaine: we have to break up. puddy: what? elaine: i can't take this anymore! i don't want to hear how interesting the change with the hole in it is! and if you tell me what time it is in new york again, you are going home in a body bag! puddy: well what about you? what do you think the gap in rome has that's not in the gap on broadway? elaine: okay, alright listen. forget about the gap because we are through! puddy: fine! elaine: fine! cab driver: okay, terminal three. have a nice flight. captain: ladies and gentlemen, our flight time, with stopovers, will be approximately 22 hours. elaine: (to flight attendant) hey, you gonna bust out that drink cart or what? kramer: hey, what are you doing? jerry: oh, i'm taking this lace out. it came undone and touched the floor of a men's room. that's the end of that. kramer: did you see bania's set last night? 'cause i read on the internet he killed. jerry: he killed. he only does well when he has me for a lead-in. he's a time slot hit. kramer: jerry, you gotta give him some credit. (starts rubbing a stick of jerry's butter across his face) you're just being totally ridiculous. (keeps rubbing) i'll see you later buddy. jerry: wait, wait, wait, wait, wait a minute. kramer: what? jerry: do i have to ask? kramer: i ran out of butter so i had to borrow yours. anything else, mr. nosy? jerry: why are you buttering your face? kramer: i'm shaving with it. jerry: oh moses smell the roses. kramer: jerry, it's vastly superior to any commercial shaving cream. the shave is close and clean, and the natural emolients keep my skin silky-smooth. now feel my face. jerry: no. kramer: feel it. jerry: i don't want to. kramer: feel it. feel it. jerry: (places two slices of bread against kramer's face) that is close. george: i got the job? mr. thomassoulo: george, everybody here at play now is very impressed with you. i, i'm sure you heard that. george: well, no. mr.thomassoulo: now i don't want you to think that anyone's gonna treat you any differently just because of your, uh, (clears his throat) handicap. george: handicap? (gesturing to his cane) oh, i'm not handicapped. mr. thomassoulo: i'm sorry. differently, uh, advantaged. george: yeah, i didn't mean that. mr. thomassoulo: of course you will have your own private, fully equipped bathroom. george: (shocked) when do i start? mr. thomassoulo: whenever you feel that you're able. (rises to show george out) um, you need a hand here. george: (thomassoulo helps george get up) yeah, what the hell. jerry: you got the job? george: jerry, it's fantastic. i love the people over there. they- they treat me so great. you know they think i'm handicapped, they gave me this incredible office, a great view. jerry: hold on, they think you're handicapped? george: yeah, yeah, well, because of the cane. you should see the bathroom they gave me! jerry: how can you do this? george: jerry, let's face it, i've always been handicapped. i'm just now getting the recognition for it. name one thing i have that puts me in a position of advantage. huh? there was a guy that worked at the yankees-- no arms! he got more work done than i did, made more money, had a wife, a family, drove a better car than i did. jerry: he drove a car with no arms? george: all right, i made up the part about the car, but the rest is true. and he hated me anyway! jerry: do you know how hard it's getting just to tell people i know you? george: i love that bathroom. it's got that high, high toilet. i feel like a gargoyle perched on the ledge of a building. kramer: hey! they hooked me up. george: what's with all the butter? kramer: i'm shaving with it, and you know what i discovered? jerry: you can eat it? kramer: no, my face feels so good, i'm gonna use it all over my body. jerry: oh my god, it's bania and jenna. george: who? jerry: the tooth brush in the toilet bowl. bania: hey jerry, this is jenna. pretty good-lookin' huh? jenna: uh, jerry's the guy that i dated right before you. bania: oh. this is awkward. jenna: don't worry, kenny. after dating jerry, you're a pleasure. jerry: i don't believe this. george: you miss her, don't you? jerry: no! he's riding my coattails again. he's getting everything off me, first laughs now ladies. george: you miss her. puddy: (to flight attendant) you know i think ultimately, i'm upset with myself. i knew what i was getting into, she's a bitter, unstable person. i mean the sex was good. i'm sure it was fine for her. i need more. elaine: (to another passenger) huh. you believing this? passenger: excuse me, i...i was sleeping. elaine: you missed quite a performance. passenger: (disbelieving) that's my apple juice. jerry: someone's cooking. newman: hello, jerry. jerry: hello, newman. newman: you know, old friend, sometimes i ponder this silly gulf between us and i say, "why?" are we really so different. for what is-- jerry: (cutting in) i'm not the one doing the cooking, newman. newman: damn you seinfeld. you useless pustule. um, somebody's got something on the griddle. maybe it's kramer. jerry: no, he's up on the roof getting some sun with the butter (pauses) oh no! newman: butter? passenger: (explaining the coins to elaine) this is the fimty kroner. elaine: (to passenger) oh? you know my last boyfriend, he had a real kroner comprehension problem. know what i mean? a real cement head. woman: david, you are so funny. puddy: yeah, i know. elaine: (grabbing puddy) what are you doing? puddy: it's a long flight, elaine. i had to get on with my life. elaine: by making time with some floozy across the aisle? puddy: yeah, that's right. well, what's going on over there with you and, uh, vegetable lasagna? elaine: this guy? he's an idiot. he doesn't mean anything to me. passenger: (hereon known as vegetable lasagna) i can hear you. puddy: well, she doesn't mean anything to me either. if it were up to me, we'd still be together. elaine: well maybe i feel the same way. puddy: ok. elaine: ok, so now what? puddy: let's make out. jerry: kramer! kramer: oh, man. i think i cooked myself. jerry: look at your skin. kramer: stick a fork in me, jerry. i'm done. kramer: i'm fried. jerry: technically, you're sauted. so, what are you doing for that? kramer: well, i just gotta keep my skin moist so i don't dry out. jerry: is that what the doctor said? kramer: no, i read an article in bon appetit magazine. (grabs a baster) i'll see you later. jerry: yea. kramer: hey. george: hey. kramer: how you doing? (kramer leaves) george: (sniffing) hmm. game hen? jerry: kind of. nice limp, you're bringing your work home with you? george: no, i fake limp on my right. this is a real limp because i sprained my ankle. jerry: what happened? george: well, i was buttering myself up for a nice shave -- jerry: oh no, not you too? george: i must have dripped some on the floor and i slipped and... jerry: you know what's good for that? relish. jerry: hello? yeah, this is jerry seinfeld. what? no. no! no! no!! no!!! thank you. (hangs up.) i don't believe this. they've added bania to the network showcase and he's going on right after me. george: so what, he's got a couple of good jokes. jerry: oh, like what, ovaltine? why do dogs drink out of the toilet? shopping carts with one bad wheel? george: that's true, that always happens to me. jerry: you think that's funny? george: i don't know, i like stuff you don't have to think about too much. jerry: you like bania's act. you're a closet bania fan! george: maybe i am. jerry: oh, i'm gonna puke. george: puke! that's a funny word. puke. (laughing) puke! don't have to think about that. elaine: i can't believe we broke up like that. puddy: it was stupid. elaine: do you want something to read? puddy: no i'm good. elaine: well, are you going to take a nap or -- puddy: no. elaine: you're just going to sit there staring at the back of a seat? puddy: yeah. elaine: that's it! i cannot take this! i mean, look at this, nothing has changed. we've been back together two hours, we're having the same problems we had 12 hours ago. puddy: tell me about it, i don't know why i ever took you back. elaine: oh, please! i took you back. you know it, i know it, vegetable lasagna here knows it. vegetable lasagna: please, please, i don't want to get involved. elaine: ugh, i hope a giant mountain rises out of the ocean and we just ram right into it and end this whole thing! vegetable lasagna: oh god. passenger 2: ow! ow!! newman: how much longer you gonna be, i'm starving here. kramer: just a few more squirts. cause i gotta stay juicy. newman: that smell. it's still with you, huh? kramer: yeah, it's baked on in. hey, put another stick of butter in. newman: here. kramer: yeah, stir it up so it melts. kramer: oh yea that feels good. ahh, now i'm simmering. newman: i'll meet you at the coffee shop. mr. thomassoulo: good morning, george. george: good morning, sir. mr. thomassoulo: is there something wrong with your other leg? george: oh, no, that's just the old, uh, the old handicap acting up. mr. thomassoulo: but your cane's on the wrong side. george: oh well, that's, uh, thats just because we're, uh, standing on opposite sides. mr.thomassoulo: huh? george: yeah, see, uh, when we met, i was over there and, uh, you were over here, so the image, uh, the image was reversed, like, uh, like in the mirror. george: see? this looks right to you, doesn't it? mr. thomassoulo: uh, yeah, i guess. george: (passes cane from right to left and back a few times) but, see here. right. wrong. right. wrong. right. right. wrong-- mr. thomassoulo: will you stop it, george? just stop it! i think i can see what's going on here. george: well, you're not gonna believe what happened. jerry: you mugged stephen hawking? george: play now thinks i got problems in both legs. my own personal rascal, jerry. on the house. jerry: well it must be comforting to know you'll be going straight to hell at no more than three miles an hour. jerry: hello? elaine: jerry. jerry: hey, lainie, how's the trip going? elaine: awful. this trip was a *huge* mistake. huge! vegetable lasagna: please don't shout. i can't take it. jerry: who's that? elaine: it's vegetable lasagna. jerry: who? elaine: vegetable lasagna! vegetable lasagna: my name is magnus. elaine: shut up or i'll snap you in half and stuff you in the overhead! jerry: get me some duty free kahlua. george: how's the trip? jerry: sounded good. george: well. gotta motor. jerry: hey, if you got any juice left, you might wanna roll by the big showcase tonight. george: ah, you still going on in front of bania, eh? jerry: that's right, and i'll tell you what. i'm feeling a little off. george: what are you talking about? (jerry grins) you're not! jerry: that's right, i'm taking a dive. george: you're throwing the set? jerry: i'm laying down! then we'll see how he does up there, without all the assistance. george: listen jerry. with all due respect, bania's voice is the voice of a new generation. my generation. jerry: we're four months apart. george: nevertheless. his time has come. george: now if you will kindly help me unwedge my front wheel, i'll be on my way. newman: butter. kramer. butter. kramer. kramer/turkey: (waving wing) hey buddy. kramer: jerry, what are you doing? george tells me you're gonna throw your set? jerry: that's right, choochie. let's see how bania does without the cushy timeslot. club announcer: (oc) ladies and gentlemen, jerry seinfeld! jerry: if you'll excuse me. kramer: whoa, man! jerry: (oc) hey everybody! who's ready to laugh? jerry: what's the deal with lampshades? i mean if it's a lamp, why do you want shade? jerry: and what's with people getting sick? newman: hee hee! yeah yeah! jerry: i mean, what's the deal with cancer? man in audience: i have cancer! kramer: oh, tough crowd. man: hey, hey! you dented my ride. george: whatcha got there, the 4-volt? heh, i did you a favor. man: how about i do you a favor upside your head? george: oh yeah? man: oh yeah. man: hey! woman: get the bikes. bania: ouch. kramer: well, that wasn't so bad, huh? jerry: what are you talking about? i bombed! kramer: no, you had some good stuff. the cancer bit? i mean, it was edgy, it was not my sort of thing but some of those people out there, they really liked it. jerry: like who? kramer: well, that guy who yelled out. jerry: he *had* cancer! kramer: and laughter is the best medicine. jerry: hey, sorry kenny. guess you got your work cut out for you. club announcer: (oc) ladies and gentlemen, kenny bania! kramer: hey, jerry, he could have used your laugh. he was a big turkey out there. newman: (salivating) turkey? kramer: a big fat turkey. newman: i'm sorry i missed that. kramer: i tell ya, he worked so hard and then he just-- kramer: what is this, oregano? kramer: look at me! i'm all covered in oregano and parmesan, and it's sticking to me because of the butter! look at me! newman: here. hold this. kramer: what is this, parsley? jerry: ah, the sweet stench of failure. kramer: ah you bit me. get off of me, get off of me! man: now i got you! mr. thomassoulo: george? your legs! george: are you a religious man, sir? mr. thomassoulo: no. man: eat hickory!! bania: hey jerry, didja see it? jerry: ouch. stu: kenny! there you are. jay shermak and stu crespi from nbc. listen, kenny. really funny out there. jerry: what? jay: that thing you did having the two guys running through? i love stuff you don't have to think too much about. stu: give us a call. we want to be in the kenny bania business. jay: by the way, jerry? the suspenders? a little hacky. bania: how about that jerry? first you had a pilot on nbc and now i'll have one. looks like i'm following you again. jerry: oh, i'm gonna puke. bania: puke? that's a funny word. can i use that? elaine: david, this has been the worst month of my life and if i never see you again it'll be too soon. puddy: ditto. elaine: oh that's origi- puddy: go to hell. elaine: 86th and broadway please. cab driver: i'm sorry lady, there's a cab shortage. the transit police are making everybody share. elaine: oh no. vegetable lasagna: hello! (sees elaine) oh no. i'm sorry. elaine: noooooooooooo! [scene: in the play now office] thomassoulo: george, youre not really handicapped, are you? george: ive had my difficulties. thomassoulo: i saw you running down amsterdam avenue lifting that 200 pound motorized cart with one hand. george: mr. thomassoulo during times of great stress, people are capable of super human strength. have you ever seen the incredible hulk, sir? thomassoulo: no george: how about the old spider man live action show? thomassoulo: george, ive realized weve signed a one-year contract with you, but at this point i think its best that we both go our separate ways. george: i dont understand. thomassoulo: we dont like you. we want you to leave. george: clearer [scene: at monks caf] jerry: so youre staying at play now? george: why not? pay is good. i got dental, private access to one of the great handicapped toilets in the city. jerry: but they not you arent handicapped, arent you ashamed? george: theyre the ones who should be ashamed. they signed me to a one-year contract. as long as i show up for work every day, they have to pay me. elaine: hey jerry & george: (doing the voice) hello-o-o-o! george: hello-o-o-o elaine! elaine: whats that? jerry: oh, its just this stupid thing. elaine: well, im sure its stupid. its not about me, is it? jerry: (doing the voice) no-o-o-o. george: (doing the voice) not at all. elaine: tell me! jerry: all right. you know this girl clare i am seeing? elaine: yeah. jerry: well, he and i starting joking that when she falls asleep her stomach stays awake all night and talks to me. elaine: how is it talking? jerry: well, her belly button is like a mouth. (doing the voice) im bored. talk to me. elaine: oh i gotta start taking these "stupid" warnings more seriously. jerry: hey, look whose here - puddy. elaine: my puddy? but we broke up. jerry: and yet he continues to live. puddy: hey benes, how are you? elaine: im doing great. puddy: great. (pauses) see ya. jerry: well, thats it. you two are back together. elaine: what? jerry: the bump into. the bump into always leads to the backslide. elaine: david and i will not be getting back together. jerry: elaine, breaking up is like knocking over a coke machine. you cant do it in one push, you got to rock it back and forth a few times, and then it goes over. george: thats beautiful. elaine: what about you? you were even engaged, and you cut it off just like that. jerry: thats different. i didnt have feelings for those people. but you, youll backslide elaine: you want to bet? jerry: stakes? elaine: 50 jerry: dollars? elaine: all right. witness? (looks at george). george: witness. jerry: done. george: percentage? jerry & elaine: no. [scene: at jerrys apartment] clare: so ill call you tonight? jerry: yeah. clare: whats wrong with the belt? jerry: i went to the movies last night, i went to the bathroom and i unbuckled a little wobbly and the buckle kind of banged against the side of the urinal. so(throws away belt) thats it! clare: so, youre insane? jerry: oh yes, quite. kramer: hello! jerry: of course its a sliding scale. clare: catch you later. kramer & jerry: (doing the voice) hello-o-o-o! (haha) jerry: (doing the voice) la la la. kramer: (doing the voice) la la la. kramer: look at this, they are redoing the cloud club. jerry: oh, that restaurant on top of the chrysler building? yeah, thats a good idea. kramer: of course its a good idea, its my idea. i conceived this whole project two years ago. jerry: which part? the renovating the restaurant you dont own part or spending the two hundred million you dont have part? kramer: you see i come up with these things, i know theyre gold, but nothing happens. you know why? jerry: no resources, no skill, no talent, no ability, no brains. kramer: (interrupts) no, notime! its all this meaningless time. laundry, grocery, shopping, coming in here talking to you. do you have any idea how much time i waste in this apartment? jerry: i can ball park it. elaine: (doing the voice) hello-o-o-o! kramer: here we go; now she comes in. now my whole day is shot! jerry: hey, i called you last night, where were you? elaine: (looking very guilty) i went out with a (fake cough) a friend. jerry: george? elaine: (looking guiltier) no, nono. jerry: well, i was here, thats everyone (laughing). elaine: (laughing). jerry: are those the same shoes as yesterday? elaine: oh, you know i wear these shoes all the time. jerry: your hair, its somewhat de-poofed. elaine: its the new look. you know heroin cheek? jerry: wait a second, whats going on here? elaine: nothing, nothing. jerry: (screams). elaine: (screams). jerry: youre wearing the same clothes as yesterday!!! (pauses) you saw puddy! kramer: hoochie moochie. (haha) jerry: hand it over. pay up. elaine: no! its an isolated, sexual incident. we are not back together! jerry: then what do you call it? people dont just bump into each other and have sex. this isnt cinemax. elaine: it was no big deal ok? i mean we fooled around, then we went out and grabbed a little dinner. jerry: ah, dinner! thats it, youre all the way back! elaine: ugh! jerry: sex, thats meaningless, i can understand that, but dinner; thats heavy. thats like an hour. kramer: (still reading the paper) man, 2.9 percent financing on a toyota onedun (sp?). that was my idea too! [scene: at play now] george: good morning! co-worker: go to hell! george: hi allison, thats a nice dress. allison: dont even look at me. george: hey glenn! glenn: hey, go tell hell! george: heard that one already. [scene: at jerrys apartment] kramer: so thats the bedroom. heres the bathroom. if you need to, you can familiarize yourself with the kitchenyeah, go ahead and look through some of the drawers. jerry: and you are? darren: oh, hey, im darren. im new here. kramer: yeah, thats jerry, you dont have to worry about him. why dont you go across the hall and get started on that mail. darren: right! kramer: hes a go getter! jerry: whos he? kramer: my intern from nyu. well, you remember my corporation, kramerica industries. jerry: alright. kramer: well, apparently nyu is very enthusiastic about their students getting some real world corporate experience. jerry: but you only provide fantasy world corporate experience. kramer: well, this will really free up my time so i can focus on more important things, like my bladder system. jerry: alright, its time to go. kramer: jerry, its not for people, its for oil tankers. jerry: (sarcastically) i know! kramer: you see the idea is for a rubber ball inside the tanker so if it crashes, the oil wont spill out. jerry: actually, that is not a bad idea. kramer: (smiles) yeah. jerry: now, its time to go. jerry: hello george: (doing the voice) hello-o-o-o. (hes sitting on the floor in his play now office). jerry: (doing the voice) hello-o-o-o. (pauses) so, whats going on? george: siege mentality, jerry. they really want me out of here. theyve downgraded me to some sort of a bunker. im like hitlers last days here. jerry: so, are you going to leave? george: oh no! im vigilant. theyll never get me out. im like a weed, jerry. jerry: i thought youre like hitler in the bunker? george: im a weed in hitlers bunker. jerry: im getting a little uncomfortable with the hitler stuff. (his other line beeps) im getting another call, see ya(answers call) hello! darren: hi, this is darren from kramers office. mr. kramer would like to schedule a lunch with you at monks coffee shop. jerry: (looking shocked) really? when? darren: in 10 minutes. do you need directions? jerry: no, i dont. darren: well, ill call back in 5 minutes to confirm. kramer: yeah, 5. elaine: hey! jerry: hey! so, wheres my money? elaine: no money, i am puddy free. so, are we eating or what? jerry: oh yeah, hold on. jerry: hello darren, this is jerry from jerrys office. (elaine is looking confused). were going to be three for lunch. (elaine is still looking confused) what do you mean hes already left? jerry: hey, elaine is going to come with us, alright? kramer: what? when did this happen? jerry: well, just kramer: (yelling) darren! [scene: at elaines apartment] elaine: i am not calling puddy. what did i do with my gloves? oh, i bet i left them over at puddys. i should call him. i need those gloves. no, i better not. ill call. (looks at table) oh, look at that! there are the gloves. i was just about to call. there they are. thats funny. thats really funny. thats really really funny. you know who loves funny stories, david puddy. (picks up phone). [scene: at monks cafe] george: well, play now is through playing. they turned the heat way up in my office. they tried to sweat me out. jerry: do you have to write all this stuff down. darren: well, mr. kramer is in a meeting with mr. lohmase and he didnt want to miss anything. jerry: so, how hot did it get? george: i dont know, 120, 130then they sent some guys to sandblast for 6 hours. tomorrow they are putting in asbestos. jerry: i guess you can take anything, but actual work. george: bring it on! george: (doing the voice) hello-o-o-o kramer! jerry: (doing the voice) wel-l-l-c-o-m-e! george: (doing the voice) la la la. kramer: sorry i couldnt get out of there, what did i miss? (asking his "intern") darren: well, after ordering, mr. seinfeld and mr. costanza debated on whether or not iron man wore some sort under garment between his skin and his iron suit kramer: uh huh george: (interrupts) and i still say hes naked under there! jerry: oh that makes a lot of sense. george: oh, shut up! darren: then mr. seinfeld went to the restroom, at which point mr. costanza scooped ice out of mr. seinfelds drink with his bare hands using it to wash up (jerry is taking a sip of water and looking mad) then mr. costanza remarked to me, "this never happened." (jerry then spits out the water). [scene: at jerrys apartment in his bed] jerry: (giggling) clare: whats so funny? jerry: oh, nothing. (still giggling) clare: what are you laughing about? tell me. jerry: oh all right, this is really dumb, really stupid. weve been doing this silly, dumb voice. clare: so is it fun humiliating me? jerry: no, its not you. its your stomach, hes taking with this funny, booming, jovial voice. (doing the voice) hello-o-o-o. clare: so you think im fat? jerry: no its darren: mr. kramer says, "hey buddy!" jerry: hey, were kind of in the middle of something here. would you mind coming back later? darren: oh yeah sure, sure. should we set something up now? jerry: (screams) get out! clare: im leaving too. jerry: no body said youre fat. hes a loving character, like the kool-ade guy. clare: he is fat! jerry: no, hes just a little bloated. clare: good-bye! jerry: its mostly water weight. kramer: boysenberry, the kid is still learning. darren: mr. kramerdean, my internship is on line two, she wants to set up a meeting. kramer: yeah, well nothing before noon. jerry: line two? kramer: yeah, your phone is line one. jerry: oh [scene: at elaines apartment] puddy: so the gloves were right by the phone. that is pretty funny. elaine: see, this is what jerrys doesnt understand. we can see each other. we can see each other every day, but it doesnt mean we are back together. puddy: i mean i love just seeing you and having sex. elaine: yeah. puddy: not having to do all thatyou knowwork. elaine: well, either way puddy: all that calling you, and buying you stuff elaine: david puddy: caring about how everyone at work isnt as smart as you. its brutal. elaine: alright thats it! were back together! puddy: oh, no. elaine: oh, yeah. puddy: look elaine, be reasonable. elaine: get those clothes off. youre going to spend the night and were going to cuddle. puddy: what? elaine: you heard me. strip! [scene: at play now] george: (whistling).(laughing).alrightok. george: (on phone calling secretary) hello margery, george costanza. how are you sweet heart? listen, can you give mr. thomassoulo a message for me? yes. if he needs me, tell him (screams) im in my office! thanks. [scene: at nyu] kramer: dean jones, you wanting to talk to me? dean jones: ive been reviewing darrens internship journal. doing laundry kramer: yeah. dean jones: mending chicken wire, hi-tea with a mr. newman. kramer: i know it sounds pretty glamorous, but its business as usual at kramerica. dean jones: as far as i can tell your entire enterprise is more than a solitary man with a messy apartment which may or may not contain a chicken. kramer: and with darrens help, well get that chicken. dean jones: im sorry, but we cant allow darren to continue working with you. kramer: well, i have to say this seems capricious and arbitrary. dean jones: you fly is open. [scene: at jerrys apartment] jerry: so youre sure youre not still angry about last night? clare: no, im fine. just as long as you dont ever do that voice again. jerry: never? clare: never. jerry: what about if youre not around? clare: no! jerry: so i have to choose between seeing you and doing the voice? clare: thats right. jerry: i can do that. clare: so whats your decision? jerry: i dont know. clare: jerryhi. jerry: (doing the voice) hello-o-o-o. la-la-la. (haha) [scene: at jerrys apartment] george: you broke up with her? why? jerry: so we could do the voice. (doing the voice) la-la-la. whats the matter? george: i think im getting tired of it. i mean is that all it does? hello? la-la-la? jerry: no, it can do anything. it can be spanish. (doing the voice) hola. hello-o-o-o. george: i think i like the girl better than the voice. jerry: really? jerry: (doing the voice) hello-o-o-o. elaine: still? george: i told you. elaine: alright, here you go, choke on it (hands him money). jerry: see, never bet against the backslide. i knew you two would get back together. elaine: yeah, well not for long. im breaking up with him. jerry: no, i dont think so. ive seen you two together. you make each other miserable. its kismet. elaine: double or nothing. jerry: done. george: (talking from bathroom) witness? jerry: youre in there again. george: i think play now is putting something in my food. elaine: alright, im out of here. jerry: what is this? (kramer is wearing jeans that look like it doesnt fit him). kramer: i dont know. i found them in your closet. ever since darren left i havent been able to find anything. he took all my clothes to some cleaners. im clueless. (looks at clock) is that clock right? jerry: yeah. nine oclock. kramer: i was supposed to pick up newman at the zoo twelve hours ago. jerry: (doing the voice) good-bye kramer. kramer: jerry, buddy, i got to tell you something. that voice is played. jerry: really? kramer: so played. george: i told you. [scene: hallway, darren is knocking on kramers door] kramer: darren? what are you doing here? the college canceled the internship. darren: i dont care about the internship. i care about kramerica. kramer: kramerica is no more. darren: what about the oil tanker bladder system? we were going to put an end to maritime oil spills. kramer: probably. darren, you go home. forget about kramerica. kramer: well, youre still here? darren: i havent had time to leave. kramer: well, i havent changed my mind. kramer: well, you are a tenacious little monkey. alright, ill do it. kramerica industries lives! lets get back to work! kramer: lets see what jerry has to eat. [scene: at play now in the bosses office] thomassoulo: you win george. weve had it. if you leave right now, play now will give you six months pay. thats half of your entire contract. pleasejust go. george: you see if i stay the whole year, i get it all. thomassoulo: want to play hand ball huh? fine. (calls on intercom) attention play now employees, george costanzas handicapped bathroom is now open on the sixteenth floor to all employees and their families. george: well played. thomassoulo: ill see you in hell costanza. [scene: at jerrys apartment] jerry: (on the phone with clare) clare thanks for giving me a second chance. our relationship is certainly worth more than some silly, stupid voice. hold on one second. (george walks in jerry asks george) so we definitely dont want to do the voice anymore? (george shakes his head no) alright, were back together again, great. bye bye. [scene: hallway kramer & darren are pushing an oil tank] kramer: hey. jerry: trouble down at the plant? kramer: its a tank of oil. darren and i are finally going to test out my bladder system. george: you have to drink that whole thing? kramer: no. no. no. its for oil tankers. all i need to do is fill some sort of rubber container with oil and then drop it to see whether or not it can restrain the impact. jerry: i understand (not really understanding, lol). george: would a giant rubber ball work? kramer: conceivably. george: well, play now has all kinds of different rubber balls. why dont we test your bladder system at my office? jerry: youre not george: oh, yes i am. mr. thomassoulo likes to play dirty. well, theres nothing dirtier than a giant ball of oil. [scene: at monks cafe] puddy: hey, you want to split a root beer (i think thats what he says)? elaine: i dont think so david, were through. puddy: ohthats a nice sweater (elaine smiles). [scene: at elaines house the two are in bed] elaine: whew that was a dozy. [scene: at jerrys apartment] jerry: go again? elaine: book it. george: (again from bathroom) witness. [scene: at elaines apartment] elaine: david i know this hurts, but its the way it has to be (puddy is giving her a look like hes going to still get some). [scene: at jerrys apartment] jerry: ha ha ha. ha ha ha ha. [scene: jerry and elaine at the movies] elaine: im going to get some popcorn. scene: at jerrys apartment] elaine: so, how did it end? jerry: they got away. elaine: uh. [scene: at elaines apartment] elaine: listen david, ive got to run. can you lend me fifty bucks? [scene: at play now] jerry: hey. kramer: did you bring the video camera? jerry: yeah, i put a six hour tape in. that should cover the experiment, the arrest, and most of your trial. alright, ill see ya. george: oh, you might want to stick around jerry. mr. thomassoulo picked the wrong man to hire because he was fake handicapped. jerry: i cant. i got to meet clare. kramer: you gave up the voice? jerry: yeah, i thought it was stupid. unless you guys are liking it again. kramer & george: no. no jerry: darren? darren: sorry mr. seinfeld. jerry: uh, bathroom. george: hey, use mine. ill let you in. jerry: i thought it was open to the public. george: i uh, took care of that. jerry: wow! zanadu . no wonder youre putting in so many hours. (looks at urinal) may i? george: i insist. ill fix us a drink. (phone rings who would that be?) i got it. kramer: whew. you know darren, if you would have told me twenty-five years ago that some day id be standing here about to solve the worlds energy problems, i wouldve said youre crazy now lets push this giant ball of oil out the window. george: so, check out my view. jerry: wow! hey, theres clare. i better go down. george: hey, theres kramer & darren. jerry: theres the giant ball of oil. clares right underneath that thing. clare! hello-o-o-o! hello-o-o-o! hello-o-o-o! clare: i dont believe this. i am not looking up if youre going to do that voice. kramer: bombs away (uh oh). jerry: this is going to be a shame. george: hello. kramer: well, that didnt work. hey, how about thisketchup and mustard in the same bottle? darren: oh that sounds interesting sir. kramer: yeah. [scene: at monks caf] jerry: clare won her lawsuit against play now. gee, play now is filing for bankruptcy. i guess youre not going in anymore. george: yeah. jerry: so theyre not paying you your george: no. jerry: so youre pretty much george: yeah. jerry: what ever happened to darren? kramer: darren is going away for a long long time. jerry: so clare sure looked real funny covered in oil like that (doing the voice) hello-o-o-o i got beamed with a giant ball of oil george: (doing the voice) im slippery as an eel kramer: (doing the voice) la la la. jerry: im just so glad its back. (scene: at elaines apartment in bed with puddy again) elaine: see, this is good. this is the way it should be. you know why are we fooling ourselves. we belong together. puddy: elaine i want to break up. elaine: ah nuts! frank: i got no leg room back here. move your seat forward. estelle: that's as far as it goes. frank: there's a mechanism. you just pull it, and throw your body weight. estelle: i pulled it. it doesn't go. frank: if you want the leg room, say you want the leg room! don't blame the mechanism! george: all right, dad, we're five blocks from the house. sit sideways. frank: like an animal. because of her, i have to sit here like an animal! serenity now! serenity now! george: what is that? frank: doctor gave me a relaxation cassette. when my blood pressure gets too high, the man on the tape tells me to say, 'serenity now!' george: are you supposed to yell it? frank: the man on the tape wasn't specific. george: what happened to the screen door? it blew off again? estelle: i told you to fix that thing. frank: serenity nowww! patty: so i told bobby and lisa that we'd try the new chinese spanish jerry: oh, i thought we had tickets for the knicks home opener. patty: well i thought this would be more fun so i gave the tickets away. jerry: what? all right, fine. patty: are you mad at me? jerry: no, i love a good chinese spanish whatever it is. patty: you know... i've never seen you mad. jerry: i get peeved. patty: mad. jerry: miffed. patty: *mad*. jerry: irked? patty: i'd like to see you get *really* mad. george: why does she want you to be mad? jerry: she says i suppress my emotions. george: so what do you care what she thinks. jerry: good body. george: she probably gets that impression because you're cool. you're under control. like me. nothing wrong with that. jerry: but i get upset, i've yelled. you've heard me yell. george: not really. your voice kind of raises to this comedic pitch. (kramer enters) kramer: hey. jerry: kramer, i am so sick of you comin' in here and eatin' all my food. now shut that door and get the hell out of here! kramer: (laughing) what is that, a new bit? george: i told ya. hey, any of you guys want to come out and help me fix my father's screen door in queens? jerry: sorry, i'm fixing a screen door in the bronx. kramer: i'll do it. george: really? you wanna come? kramer: yeah, i love going to the country. elaine: where are they goin'? jerry: fix a screen door in queens. elaine: (laughing) that's funny. hey, listen, what are you doin' saturday night? jerry: not goin' to the knick game. elaine: i need someone to go with me to mr. lippman's son's bar mitzvah. jerry: you know, if you don't bring a guest they save a catering. you should be able to buy a cheaper gift. elaine: (taking out boggle) oh, i don't think that's possible. kramer: (holding camera) get in a little closer. i can't see the screen door. (takes picture) perfect. george: dad, the hinges are all rusted here. that's why the wind keeps blowing the door off. estelle: i hate that old door. throw it out! frank: serenity now! kramer: it might be time to just let her go, frank. she's worked hard for ya. frank: will you put her to rest for me? kramer: oh yeah, i'll take good care of her. (rips out the screen door) estelle: (from other room) get george to put those boxes in the garage. george: dad, what's all this? estelle: (from other room) it's junk. frank: my computers. i've been selling them for two months now. shut up! george: you're selling computers? frank: two months ago, i saw a provocative movie on cable tv. it was called the net, with that girl from the bus. i did a little reading, and i realize, it wasn't that farfetched. george: dad, you know what it takes to compete with microsoft and ibm? frank: yes, i do. that's why i got a secret weapon... my son. jerry: damn it, they gave me cream! i asked for nonfat milk! patty: i think they have 1% over there. jerry: 1%?! they can kiss 1% of my ass! patty: ok, jerry, enough. i'm not buying it. jerry: you're damn right you're not buying it! patty: you shouldn't have to try. it's just being open. jerry: i'm open. there's just nothing in there. patty: sarcastically) uh huh. jerry: oh, you think i'm lying about this? patty: i think you are. jerry: well, i'm not. patty: yes, you are, liar. jerry: oh, stop it. patty: ok, liar. jerry: that's enough! patty: ooh, that was good. jerry: really? it felt good. elaine: congratulations, mr. lippman. lippman: oh, elaine. my boy's a man today. can you believe it? he's a man. elaine: oh, congratulations, adam. (adam zealously french-kisses elaine) adam: i'm a man! jerry: tongue? elaine: yeah. george: wow! i didn't try that 'til i was 23. jerry: well this kid's not just a man. he's a man's man. elaine: and i think he's been telling his friends. i got invitations to six more bar mitzvahs. (phone rings) jerry: hello? yeah, this is jerry seinfeld. no, no, no, i do not want to stop over in cincinnati. well, then you upgrade me. that's right, you should thank me. goodbye. (hangs up) hey, i'm flyin' first class. elaine: where did that come from? jerry: patty showed me how to get mad. you gotta problem with that? elaine: no. jerry: good. george: all right, relax, tough guy. i got to go out to my father's garage, help him sell some computers. jerry: what? the two of you workin' in that garage is like a steel cage death match. george: kramer. kramer: yeah. george: what-what are you doing? kramer: oh, i'm putting up frank's screen door. this beauty's got a little life in her yet. jerry: what do you need it for? kramer: (closing door) the cool evening breezes of anytown, usa. let's see how this baby closes. oh yeah, yeah, yeah. george: morning, ma. estelle: (from another room ) you're late! george: morning, dad. frank: i'm not 'dad' in the workplace. my professional name is mr. costanza, and i will refer to you as 'costanza'. morning, braun. lloyd: (handing frank coffee) morning, george. two cream, no sugar. george: what is lloyd braun doing here? frank: your mother recommended him. george: yeah, of course she did. that's all i ever heard growing up is 'why can't you be more like lloyd braun?' did you know he was in a mental institution? frank: i didn't read his resume. lloyd: (ringing the sale bell) another sale, mr. costanza. chalk me up on the big board. george: (inquiring about the chalk board) what is this? frank: (drawing a zero under george's name) this is your lagging. good work, braun. estelle: (from another room) good for you, lloyd! elaine: so adam, i just talked to your father, and, apology accepted. adam: i'm not apologizing. it was great. i told everyone. elaine: yeah, i know. uh, by the way, could you do me a favor and tell mitchell tanenbaum that i will be unable to attend this saturday. adam: are you free friday night? elaine: i am, but that is not the point. you are thirteen, and i am in my early... 20s. adam: but i'm a man. the rabbi said so. elaine: no. you are not a man. it takes a *long* time to become a man. i mean, half my friends aren't even there yet. adam: well, if i'm not a man, then this whole thing was a sham! first, they said i was gonna get great gifts, and then, somebody gives me boggle. i renounce my religion! lippman: who wants cookies? adam: as of this moment, i am no longer jewish. i quit! lippman: what? elaine: (eating) walnuts, mmmmmm. frank: you're late again, costanza, so listen up. starting tonight, we're having a little sales contest. the loser gets fired, the winner gets a waterpik. estelle: (from another room) you're not giving away our waterpik! frank: serenity now! george: you know what? it doesn't matter, because i quit! frank: i guess your mother was right. you never could compete with lloyd braun! (lloyd rings his sale bell and smiles) george: you wanna sell computers? i will show *you* how to sell computers! hello, mr. farneman. you wanna buy a computer? no? why not? all right, i see! good answer! thank you! (lloyd rings his sale bell) serenity now! elaine: adam, you don't become a man overnight. look at your father. it takes time. patience, experience. uh, several careers of varying success. and these are things i look for in a man. adam: (storming out of the room) well, that does me a lot of good. 'early 20s'! elaine: well, i'm sorry, sir, i tried. lippman: so, that's the type of guy you're looking for? elaine: uhh. i guess so. why? (mr. lippman vigorously starts making out with her) patty: (surveying kramer's hall patio ) what is this? jerry: (knocking on kramer's door) anytown, u.s.a. hello? is kramer home? oh, hey. kramer: (spraying his flowers) hello, neighbor. jerry: boy, those azaleas are really coming in nicely. kramer: oh, you gotta mulch. you've got to. jerry: you barbecuing tonight? kramer: (ringing his wind chimes) right after the fireworks. jerry: so, where do you want to eat tonight? patty: how about la caridad again? jerry: again!? how much flan can a person eat!? patty: jerry, you've been yelling at me all afternoon. jerry: well, i don't think more flan is the answer! patty: maybe i should just leave. jerry: 'maybe'!? patty: good-bye! jerry: double good-bye! (as patty leaves, open door reveals kramer, sitting on his lawn chair with a sparkler) kramer: hey, buddy! elaine: (coming in jerry's apartment) hey. happy new year! kramer: (getting the door slammed on him) y'all come back reeeaall... elaine: did you and patty just break up? jerry: yeah! in fact, she broke up with me! and i don't want to talk about it! elaine: well, then you're free tonight. you know what, i heard about this great place called la caridad. jerry: that's the last thing she said to me. she wanted to go there also, but i wasn't in the mood. elaine: whoa. what is the matter? jerry: it's patty. elaine: jerry, you break up with a girl every week. jerry: (crying) what--what is this salty discharge? elaine: oh my god. you're crying. jerry: this is horrible! i care! jerry: patty won't call me back. i don't know if i can live without her. kramer: she's really gotten to you, hasn't she? jerry: i don't know what's happening to me. kramer: simple. you let out one emotion, all the rest will come with it. it's like endora's box. jerry: that was the mother on bewitched. you mean pandora. kramer: yeah, well, she... had one, too. (george enters) george: jerry, can i talk to you for a second? (they enter jerry's apartment) kramer: (baseball flies at kramer and hits him) that's it, that's it! i warned you kids. i told you not to play in front of my house. this time, i'm keepin' it. and you're not getting back your rock either! george: (hearing jerry broke up with patty) are you still down in the dumps? come on. it's just a chick. jerry: you ever heard of a little thing called feelings? george: well, i got just the thing to cheer you up. a computer! huh? we can check porn, and stock quotes. jerry: porn quotes... i'm so lucky to have a friend like you, george. ever tell you how much i love you? george: what? jerry: i love you, george. come here. george: i-i'm already here. i'm here. i'm here. uh, you know what? if you want a computer, call me. i-i gotta go. jerry: go wherever you want. i'm still gonna love you. kramer: look what they did. look what they did to my house! i turn my back for two seconds, and they put shaving cream all over my door. you, i see you! i'll teach these kids a lesson. where's that house i put under your sink? jerry: hose under my sink. i love *you*, kramer! kramer: i love you, too, buddy, and george-- george: i don't want to hear it, kramer! kramer: listen, when i give you the signal, i want you to turn this water on full blast. george: what signal? what-what signal? kramer: i'll yell, uh, 'hoochie mama!' george: if i do it, will you buy a computer? kramer: on the signal, george. on the signal. george: only if you buy. i gotta make a sale. jerry: i love you, costanza. george: will you shut up?! kramer: now! now, george! turn on the faucet! george, turn on the faucet! hoochie mama! hoochie mama! hoochie mamamaaaaa! elaine: so now the *other* lippman kissed me. george: well, sure. they're jewish, and you're a shiksa. elaine: what? george: it means a non-jewish woman. elaine: i know what it means, but what does being a shiksa have to do with it? george: you've got 'shiksappeal'. jewish men love the idea of meeting a woman that's not like their mother. elaine: oh, that's insane. george: i'll tell you what's insane the price that i could get you on a new desktop computer. elaine: i am not buying a computer from you. george: there's porn. elaine: (pausing) even so. george: damn it! elaine: don't get me wrong, mr. lippman. i-i'm very flattered that you found me attractive enough to... lunge at me. huh. but the only reason you like me is because i'm a shiksa. lippman: that's simply not true. elaine: if you weren't jewish, you wouldn't be interested in me. lippman: you are wrong. i'll prove it. elaine: oh, no. don't! lippman: i renounce judaism! elaine: oy vey! jerry: what happened to you, pal? kramer: joey zanfino and some of the neighborhood kids. they ambushed me with a box of 'grade a's. jerry: are you all right? kramer: oh, no. i'm fine. serenity now. serenity now. serenity now. jerry: so, you're using frank's relaxation method? kramer: (trying to open a back of chips) jerry, the anger, it just melts right off. serenity now. look at this. serenity now! elaine: (enters) hey, what happened to you? kramer: serenity! (he exits) elaine: well. you are not gonna believe this. now lippman is renounced. this shiksa thing is *totally* out of control. what is *with* you people? what are you looking at? jerry: sit down, elaine. elaine: oh, no. jerry, i can't take any more gentle sobbing. jerry: i've been thinking about what it means to be complete. elaine: do you have an apple or anything? jerry: look at us, hurtling through space on this big, blue marble. elaine: or a nectarine? i would absolutely love a nectarine. jerry: looking everywhere for some kind of meaning... elaine: why am i in such a fruit mood? ahh, banana! jerry: when all the while, the real secret to happiness has been right in front of us! elaine: what? jerry: elaine... george: (entering jerry's apartment with a cartload of computers) jerry, i've found a way to beat lloyd braun! i buy the computers myself, i store 'em in your apartment. then, after i win the contest, i bring 'em all back and get my money back. ha ha! it's brilliant. what? what's wrong with your leg? jerry: i'm asking elaine to marry me. george: (leaving) i'll store these over at kramer's apartment. jerry: elaine? elaine: uhh, jerry, i've got a lot goin' on with, uh, lippman right now. jerry: lippman? elaine: (trying to get her bag to leave) yeah, and him too. what?! oh, yeah! i think george is calling me, so i'm gonna go give him a hand. come on! come on! jerry: can i help you? elaine: no. stay! stay. stay. frank: hey, braun, costanza's kicking your butt! george: (using the phone) watch how it's done. oh, hello, mr. vandelay? would you like to buy a computer? oh, really? two dozen? frank: costanza, you're white hot! phone: if you'd like to make a call, please hang up and-- frank: hey, braun, i got good news and bad news. and they're both the same you're fired. costanza, you've won the water pik! estelle: you're not gonna give away that water pik! frank: you wanna bet? serenity now, serenity now! lloyd: you know, you should tell your dad that 'serenity now' thing doesn't work. it just bottles up the anger, and eventually, you blow. george: what do you know? you were in the nut house. lloyd: what do you think put me there? george: i heard they found a family in your freezer lloyd: serenity now. insanity later. jerry: what happened here, kramer? kramer: serenity now, serenity now... jerry: kramer! kramer: geez! jerry, i didn't here you come in. yeah, the children, they've done sum redecorating. serenity now, serenity now. jerry: you don't look well. kramer: well, that's odd, 'cause i feel perfectly at peace with the world- uh! eggs! you! serenity now, serenity now, serenity now. jerry: oh, i'm sorry. look at me, i stepped on your last rose. kramer: (going into his apartment) jerry, come on. don't get upset about it. there's always next spring. now will you excuse me for a moment. serenity nooooooooww! george: jerry! i did it! haha! i beat braun! kramer: (crashing and banging in his apartment) serenity now! george: come on, wanna give me a hand with the computers? kramer: (crashing and banging around) serenity nooooowwwww! george: why couldn't you squeeze one of those stupid rubber balls to get your stress out? why did you have to destroy *twenty-five* computers? kramer: (leaving) george, you listen to me. i owe ya one. jerry: he's incorrigible. you want to talk about it? george: oh, please don't tell me you love me again, jerry, i can't handle it. jerry: george, letting my emotions out was the best thing i've ever done. sure i'm not funny anymore, but there's more to life than making shallow, fairly-obvious observations. how about you? george: all right... here goes... elaine: rabbi, is there anything i can do to combat this shiks-appeal? rabbi: ha! elaine, shiks-appeal is a myth, like the yeti, or his north american cousin, the sasquatch. elaine: well, something's goin' on here, 'cause every able-bodied israelite in the county is driving pretty strong to the hoop. rabbi: elaine, there's much you don't understand about the jewish religion. for example, did you know that rabbis are allowed to date? elaine: (about to leave) well, what does that have to do...? rabbi: you know, a member of my congregation has a timeshare in myrtle beach. perhaps, if you're not too busy, we could wing on down after the high holidays? elaine? 'lainie? george: so, that's it. all of my darkest fears, and... everything i'm capable of. that's me. jerry: yikes. well, good look with all that. george: where you going? i-i thought i could count on you for a little compassion. jerry: i think you scared me straight. elaine: all right, jerome, i'm in. jerry: what? elaine: maybe we should get married. maybe everything we need is right here in front of us. jer... let's do it. jerry: i tell ya, i don't see it happening. elaine: what? what happened to the new jerry? jerry: he doesn't work here anymore. elaine: oh, well that's just *great!* george: i love you, jerry. jerry: (leaving) right back at ya, slick. george: you know, all these years, i've always wanted to see the two of you get back together. elaine: well, that's because you're an idiot. frank: you single-handedly brought costanza and son to the brink of bankruptcy. george: well what about all the lloyd braun sales? frank: he's crazy. his phone wasn't even hooked up. he just liked ringing that bell. estelle: i told you to clean out this garage. i have to put my car in! frank: this is a place of business. i told you never to come in here. serenity now! estelle: all right... george: dad, you really should lay off the 'serenity now' stuff. frank: so, what am i supposed to say? george: 'hoochie mama'? estelle: move your crap, i'm comin' in! frank: no you're not! hoochie mama! hoochie mama! jerry: are you sure you can't stay longer? morty: no, we just came for the funeral. ` helen: poor marvin kessler, he went too early. jerry: he was 96 years old. morty: that had nothing to do with it, the man was out of shape. helen: that's why we joined a program. we walk once around the block three times a week. morty: and every morning i eat a plum. jerry: well, what ever you do, you're wearing me out. helen: what about you? morty: yeah, looks like you're getting a little spare tire there, tiger. jerry: really? kramer: hey, seinfelds! morty: hey, mr. kramer! kramer: how long are you staying? helen: we just came down for a funeral. kramer: oh yeah, yeah i heard, marvin kessler. boy, that makes you think. if he could go... helen: see you downstairs with the car. jerry: are you sure you don't need a hand with that? morty: no no, the luggage is on the program. i got a brick in here. jerry: did you give blood? kramer: no, not giving. hoarding. i'm storing it in to a blood bank. just in case. jerry: in case of what? kramer: jerry, i know myself. if i'm out on the street and it's starts to go down, i don't back off until it's finished. jerry: are we finished? kramer: done. vivian: elaine, i'm so glad you came out. elaine: yeah... vivian: you haven't seen jimmy for years. elaine: i know, i'm glad i got to see him before he hit puberty and got, you know all lurchy and awkward. vivian: actually, i'm gonna need someone to look after him tomorrow evening. elaine: tomorrow evening, sure. vivian: do you know anyone responsible? elaine: do i know anyone?? vivian: well, if you think of anybody, give me a call. george: what are you doing? tara: incense, for the mood. george: oh yes, by no means, the mood. let me know if there's anything i can do to lend support to the mood. george: um, cream soda? tara: vanilla. elaine: can you believe that, vivian doesn't think i'm responsible? jerry: who wants to responsible? when ever anything goes wrong, the first thing they ask is who's responsible for this? elaine: i couldn't raise a kid? come on, i love bossing people around. jerry: what happened, i thought you were with tara tonight? george: i was, i had to leave. she lit some vanilla incenses. the smell drove me nuts, all i could think about was food, i had to get out of there. we need some pudding here! pudding! elaine: you just left? what did you tell her? george: i told i had a bus transfer that was only good just for another hour. jerry: what? george: i don't know, i was starving jerry! george: oh, pudding! you want some? jerry: hey, you guys think i'm getting a little...chunky? george: what are you kidding? we look great! you know what this pudding needs? the skin on the top, you know like your mother used to make it on the stove. jerry: elaine, what do you think? elaine: i think you're getting a little pudding under the skin yourself. kramer: my service rates went up? you banks are all the same with your hidden fees and your service charges. well, maybe i'll just take my blood elsewhere, yeah. bank employee: well, we can transfer to another bank for you. kramer: oh, no no no...no more banks. i'm keeping my blood in my freezer with...my money! george: so eh, what do you say? tara: i guess we could use some food in our lovemaking. george: ok, we got your...got your strawberries, your chocolate sauce, your pastrami on rye with mustard, your honey... tara: wait wait wait, pastrami on rye with mustard? george: oh yeah yeah, don't you know they used pastrami in that movie 9? weeks? remember the pastrami scene? tara: no. george: well, maybe it was ghostbusters? where ever it was, it worked! jerry: didn't go for it, huh? george: no. jerry: so, she didn't appreciate the erotic qualities of the salted cured meats? george: she tolerated the strawberries and the chocolate sauce, but eh, it's not a meal, you know? food and sex, those are my two passions. it's only natural to combine them. jerry: natural? sex is about love between a man and a woman, not a man and a sandwich. george: jerry, i'm not suggesting getting rid of the girl. she's integral. jerry: maybe instead of trying to satisfy two of your needs, how about satisfying one of somebody else's. george: hey, speaking of which, i found a great way to separate the skin from the top of the pudding without leaving any around the edges; exacto knife. jerry: i told you george, no more pudding. i'm starting a purification program. keep all that kind of food away from me. george: well, i guess these would be out of the question. (pulls out two pudding skins in plastic bags.) jerry: what the hell is that? george: pudding skin singles. kramer: hey buddy, i'm borrowing all your tupperware. jerry: oh, why? kramer: i closed down my account at the blood bank. jerry: what, it...it's here in the building? kramer: right across the hall. what, you wanna go see? jerry: no i don't! in fact, if even one corpuscles of that blood should find it's way across that hall i will freak out on you kramer! freak out. kramer: you know, for a fat guy you're not very jolly. elaine: hey, working out? jerry: you know it and i ditched all my junk food. kramer: what the heck is going on here? jerry: sorry buddy, clean house. it's all health food. kramer: well, i may have to take it, but i don't have to like it. elaine: vivian left me a message. i guess a certain someone changed her mind about whether someone was responsible enough to watch certain other someone. jerry: is this about me? elaine: no. jerry: oh, then i lost interest. elaine: vivian, hi it's elaine. yeah, i'm over at jerry's, i got your message...what? yeah, he's right here, hold on...(hands the phone to kramer.) kramer: for me? go...yeah, what tonight? yeah, i'll be there...yeah later. (puts the phone down) well, somebody's baby-sitting. elaine: you? i'm more responsible than you are! kramer: don't be ridiculous. now, if you'll excuse me, i have to go to fill my freezer with my own blood. george: oh, tara! kramer: hello, vivian! oh, this is a nice screen. elaine: kramer... kramer: don't take my money! elaine: it is me, you idiot. hi, all right you've got to get out of here, i'm gonna baby-sit the hell out of that kid. kramer: no, i'm the baby-sitter. elaine: no no no, you're out, i'm in. now, hit the road. vivian: elaine? what are you doing here? elaine: kramer is actually sleeping one off, so i thought that i'd help out...(kramer moans from the bushes) what's that, some raccoon or something...(hits kramer with a broom.) vivian: well, i guess this would be all right. jimmy, you remember elaine? she's gonna watch you tonight. elaine: hi jimmy. (jimmy kicks elaine to the shin.) ouch! (the screen door hits her in the head.) jerry: hey, what are you doing here? i thought you were baby-sitting at vivian's. kramer: there was an incident. jerry: oh no, where's the blood? (opens the fridge) it's in here isn't it? kramer: would you stop it. jerry: what is this? kramer: it's jell-o. jerry: what about this? this is blood isn't it?! kramer: this is tomato juice, look...(drinks from the bottle.) jerry: ooh, you're sick! you're sick!! kramer: will you calm down. i took all my blood down to newman's. he let me put it in his meat freezer. jerry: hey, what's going on? who made pudding? kramer: oh yeah yeah, george he came by and made more of those pudding skin singles. they're delicious. jerry: damn that george, i told him i don't want this stuff around here anymore... kramer: heads up! jerry: aaah... jimmy: you're dead, president lincoln! you're dead! elaine: i wish i was dead. jimmy: can i have your juice? elaine: as long as you don't put... elaine: thanks for the re-fill. vivian: hey, elaine! how did it go? elaine: oh, he's...he's a joy... vivian: really? some sitter have told me he's bit of a handful. elaine: oh, handful of sunshine. i wish i could do this every day. vivian: oh elaine, that's so good to hear. i've been having a few health problems lately. elaine: it's not serious, is it? vivian: well, it might be. just in case anything does happen, it's nice to know there's somebody like you around. elaine: oh yeah, that eh...that is nice to know. (pours the juice from the bag back to glass.) jerry: aah! kramer: it's ok, jerry. i'm right here. jerry: i can see that! what happened? kramer: that knife, it nicked your jugular. you know jerry, when somebody yells 'heads up', you're not supposed to actually look up. jerry: i'll remember that. kramer: anyway, you were lucky that i was there. you lost a lot of blood. jerry: what? kramer: oh yeah, you've got three pints of kramer in you, buddy. george: three pints of kramer's blood? jerry: i can feel his blood inside of me. borrowing things from my blood. george: well, so much for purification week. jerry: so, how's the fornicating gourmet? george: doing quite well, thank you. yesterday i had a soft boiled egg and a quickie. you know what? if i could add tv to the equation, that would really be the ultimate. jerry: george, we're trying to have a civilization here. elaine: hey. jerry: hey, how was baby-sitting? elaine: oh, just great. i found out that vivian has some kind of medical problem and if the worst happens she wants me to take care of jimmy. jerry: oh, i'm sure it won't be the worst. elaine: it doesn't matter. if anything happens to her, i'm on deck! scissors mishap, air show disaster, chinese organ thieves...it's a dangerous world. george: she's right, i heard kramer got mugged out on the suburbs on a baby-sitting gig. jerry: really? kramer: look at this, look at the hair on the back of my neck. it's all bramble, see it's like thicket back there. look, i need somebody to shave it for me, huh? jerry: i'm not touching that thing. kramer: well, i have to say i'm very surprised and disappointed - blood brother. jerry: oh, no... kramer: what? jerry, i gave you my blood. listen to your pulse, (takes jerry hand) hey buddy-hey buddy-hey buddy... jerry: kramer, i'm not shaving your neck. kramer: so, my blood is not enough. would you like a kidney too, because i'll give it to you? i'll rip it out right here and stack it on the table! jerry: all right, all right i'll do it, sit down. kramer: no no no, i don't have time right now. i'll catch you tonight, we'll do sort of an all over kind of thing, all right? jerry: hello? helen: kramer called, he told that you were in a hospital. jerry: kramer called you? helen: he calls every week. are you all right? jerry: yes, i'm fine. helen: he says he's fine. morty: tell him to eat a plum. helen: jerry, you really have to take better care of yourself. we bought you some session with a personal trainer. jerry: i don't need a personal trainer. (kramer comes in) all right i've got to go, we'll talk about this later. morty: plum...(jerry hangs up.) jerry: why are you calling my parents? kramer: well, maybe if you called more often, i wouldn't have to. listen, is it all right if i watch a tape in here? jerry: why here? kramer: well, i'm taping canadian parliament, you know on c-span. jerry: ok... kramer: is it all right if i watch it in your bedroom, cause your bed is really nice? jerry: fine... kramer: ok! jerry: no no no no no no no no no no! i do not want that in here! kramer: blood! jerry: all right. izzy: hello, dough boy. jerry: mr. mandelbaum? you're the personal trainer? izzy: i'm here to whip you in to shape, so grab your jocks - if you need one. it's go-time. vivian: elaine? elaine? elaine: oh, hi, oh god. i didn't here you come in. vivian: where's jimmy? elaine: i don't know, i don't know...we had hohos for dinner and then eh...and then he put this plastic bag over his head and started running around until he got tired and then he laid down somewhere i...i tell you i'm no good watching that kid. vivian: sleeping like an angel. elaine, you're the best. elaine: no! i'm a scatter brain. that's why i probably can't hold a job or keep a man! vivian: be quiet. so, will you watch jimmy tomorrow? elaine: all right, but i'm running out of purses here. (takes her purse from a punch ball.) jerry: ok mr. mandelbaum, what you want me to do? izzy: don't get puss honey, and pick up that medicine ball. jerry: is this a gym, or some kind of fitness museum? izzy: not funny, over your head with it. are you ready? jerry: for what? izzy: all aboard in the pain train! jerry: how many session did my parents paid for? izzy: not enough to make a man of you, daffodil. george: oohoho...spicy mustard...woohoho, you're hot tonight! tara: oh, george! george: and now for the trifecta. (picks up a hand held tv and gets back under the covers.) tara: george? george? what are you doing?! (pulls the covers off. george is eating a sandwich and watching tv.) george: pleasuring you? [5a. kramer and newman are making sausages. tape recorder plays jackie davis: manana. jerry comes in.] jerry: what is this? kramer: we're making sausages. jerry: i thought you were gonna watch a video. kramer: yeah, an instructional video about how to make your own sausages. jerry: kramer, i'm not in a mood for this. kramer: all right, all right. newman, let's go grab some mail sacks and haul these beauties out of here. jerry: blood over there, sausages over here. i'm living in a slaughter house. izzy: tonight i want you to sleep on this. toughens the vertebrae. (looks at the sausages) what in holy hell? sausages? is this your diet? jerry: no they're not mine mr. mandelbaum... izzy: don't lie to me, butter bean. we're taking it up a notch. jerry: so, the free love buffet is over? george: i got greedy. flew too close to the sun on wings of pastrami. jerry: yeah, that's what you did...i can't believe i got another session with izzy mandelbaum, he's probably makes me box a kangaroo. jerry: what's going on? george: i don't know. this sandwich is making me flush. jerry: oh no, i'll tell you what you did caligula; you combined food and sex in to one disgusting uncontrollable urge. george: i think you're right. you gonna eat that? jerry: no, but please tell me that's all you're gonna do with it. elaine: jerry, i tell you; if this woman dies, it is going to be a major inconvenience. george: these fries are really really good... jerry: all right, that's enough of that. (jerry takes the plates and hands them to a waitress.) elaine: i mean i can't shake this woman. you know, now i have to go to jimmy's birthday party. george: uuh, sleepy. elaine: no matter what i do, i cannot weasel out of raising this kid. jerry: well, sleepy here is quite a weasel, maybe he can bat for you. elaine: yeah, that's what i need; a pinch weasel. kramer: why did you get rid of that sausage? jerry: it wasn't me, it was mr. mandelbaum. kramer: yeah well, newman's not happy, he booted me out of his freezer. look, i've got to take my blood back to the bank, can i borrow your car? jerry: what's wrong with yours? kramer: i got no a/c and i gotta keep the blood cold or it'll go bad. jerry: all right, but this is it, this is the last favor, we're even! kramer: all right, even steven. oh, by the way, when you get back to your apartment try to keep it down because newman is taking a nap in your bed. kramer: oh, man...(looks to the glove compartment for a manual.) "if the engine begins to overheat, turn off air conditioner". never, i can't do that. kramer: oh, mama... kramer: shees, come on...(opens the radiator)..this thing is bone dry. (looks at the blood.) elaine: vivian... vivian: elaine! elaine: hi! this is my friend george. vivian: hi... elaine: i'm gonna go say hi to jimmy. vivian: ok. elaine: (whispering to george) you're up. vivian: oh, isn't elaine fantastic? george: yes she is. it's a pity we won't be seeing much more of her. vivian: really, why? george: oh, you haven't heard, she's going to live with her grandparents in redding pennsylvania. vivian: her grandparent passed away five years ago. george: yes they did. i was covering. elaine has been deported back to scotland. vivian: she's american citizen, i have seen her passport. george: all right, no more lies. elaine is been chosen to represent the upper west side in the next biosphere project. vivian: i haven't heard anything about another biosphere. george: that's because it's underwater. vivian: this is insane. george: is it? vivian: yes it it. george: well, it's all for charity, so what's the difference. vivian: you...very knowledgeable. george: well, i'm also an architect. is that pastrami? vivian: yes it is. i find the pastrami to be the most sensual of all the salted cured meats. hungry? george: very. vivian: oh, wait...(vivian turns the tv on.) oohh... george: vivian!! jerry: is this really necessary? izzy: if you wanna live in a butcher shop, i'm gonna treat you like a piece of meat. jerry: what if i can't keep up? izzy: you lie, you dry. fire it up, son. izzy jr.: right dad, mandelbaum, mandelbaum... izzy & izzy jr.: mandelbaum, mandelbaum...(izzy jr. drives ahead, but the car starts jerking) izzy: move it, move it! get those knees up! come on, kick it, kick it! jerry: what's going on? izzy jr.: there's something wrong with your car. it's dripping something on my feet. some kind of red liquid. jerry: oh my god, the blood! izzy jr.: blood!! izzy: get up boy, get up! we got a problem here! tough it up. this is for real, you've got to want it... elaine: so how long did they drag you? jerry: well, for the first quarter mile they thought that i was just doggin' it. elaine: hi george. hi jimmy. george: yeah, jimmy why don't you wait outside, you know, play with something. george: ouch! jerry: what's the kid doing here? george: i'm baby-sitting! vivian asked me to raise him if she doesn't make it. jerry: oh, that's a drag... kramer: that kid... jerry: you put blood in the car?! kramer: jerry, it was overheating. you should take better care of that thing. jerry: well, they told me that i got more blood, so i guess i owe you again. kramer: you didn't get the blood from me. jerry: then who? newman: hello jerry. jerry: aaaaahhh...!!! jerry & kramer: aaaahhh...!!! jerry, kramer & newman: aaaaahhh...!!! jerry: (on the phone) yeah. yeah. all right. uh-huh. george: (knocking on the counter and feigning a muffled, chinese voice) chinese food! jerry: (hanging up the phone) oh! there's my chinese food, i gotta run. all you. george: who was it? jerry: i did a show for a car dealership and they're getting me a new saab. george: what about your old car? they couldn't get kramer's blood out of it? jerry: no, the engine clotted. you know who set this whole thing up for me? frank merman. george: fragile frankie merman? i never liked that guy. jerry: why? he's harmless. george: every summer you guys went to camp together. i was jealous. felt like he was the summer me. jerry: he was not the summer you. besides, you had a summer me. whitey fisk, the guy who snuck you into last tango in paris. george: i made him up. jerry: so you never saw last tango in paris? george: no. jerry: too bad. it was erotic. kramer: (enters) well... i've had it with these jackbooted thugs! jerry: 'pottery barn'? kramer: i got three 'pottery barn' catalogs in one day. that makes eight this month. george: (holding a magazine cover) mira sorvino. think she'd go out with me? jerry: why don't you just throw 'em out? kramer: oh, no. i've been saving them up here in your apartment. and now, it's payback time. 'pottery barn' is in for a world of hurt. jerry: (taking a catalog) can i have one? i need one of those old-looking phones. so you wanna grab a bite? george: i can't. i gotta make the weekly call to the folks. jerry: so call now. george: i gotta prep. i need a couple of anecdotes, a few you-were-right-abouts. it's a whole procedure. wasn't fragile frankie the one that used to run into the woods every time he got upset? jerry: that's him. george: is he still nuts? jerry: what do you think? they gave me a new car for thirty minutes of 'so, who's from out of town?' puddy: (finishing eating) seriously, is this the best okra you've ever had, or what? elaine: mmm. de-lish. puddy: delish? elaine: delish. you know, short for delicious. puddy: oh, like scrump. elaine: yeah. puddy: (leaving) i'm gonna be late. see ya later. jack: excuse me, can i borrow your ketchup? elaine: (passing him the ketchup) oh, sure. jack: thank you. estelle: (answering the phone) hello? george: hey, it's georgie. estelle: let me put your father on the phone. george: ma! frank: who is this? george: dad, it's me. hey, listen, i was at fortunoff's the other day, and, you know what, you were right. estelle: (feigning a chinese, muffled voice) chinese food. frank: (hanging up) sorry, george, our chinese food just came. talk to you later. george: chinese food? kramer: (throwing his catalogs in the pottery barn store) hey, you like sending out catalogs!? how do you like gettin' 'em back!? jerry: so, maybe they had chinese food? george: after dark? please. at their age, that's like swallowing stun grenades. jerry: well, there's one way to check. where there's chinese food, there's leftovers. elaine: (enters) well, gentlemen. lainie is... in love. george: that's dynamite. yeah, i'll look for the chinese food leftovers. elaine: hey, hey, hey! i met this guy! and it was like this, totally unreal, fairy tale moment. jerry: it wasn't whitey fisk, was it? elaine: oh, george's friend. whatever happened to him? george: nothing. uh, i don't know. i gotta go. jerry: so, this is beautiful. you, and puddy, and this new guy, in a big pot of love stew. elaine: oh, yeah... puddy. well, i won't fire him until i see if this new guy can... handle the workload. kramer: (entering jerry's apartment) will you look at this? more catalogs! 'omaha steaks', 'mac warehouse', 'newsweek'?! i can't stop all these companies, so, i'm gonna attack this problem at the choke point. jerry: stop the mail? kramer: that's... even better! frankie: jerry! jerry: hey, frankie! so, where's the car? frankie: this is it. jerry: inside the van? frankie: it is the van! don't you remember, we always talked about how cool it would be to have a van and just drive? jerry: we were ten. frankie: come on. let's take it for a spin. jerry: i don't want a van. elaine: well, just tell him you want the saab. jerry: you don't understand. this is fragile frankie merman. when we were in camp, if you upset him, he'd run out to the woods, dig a hole, and sit in it. elaine: well, i have an idea. keep the van, and get a bumper sticker that says, 'if this vans a-rockin', don't come a-knockin'.' jerry: always helpful. estelle: oh, georgie, what are you doing here? george: just dropped in for a visit. you, uh, you never called me back. estelle: uh... the phone broke. frank: well, we got to get moving. george: what? where are you going? frank: we have a catered affair. george: you're going like that? frank: (leaving the kitchen) it's creative black tie. move, woman. george: (checking the fridge) no chinese leftovers. george is gettin' suspicious. jack: elaine, i'm sorry i'm late. jack: i'm gonna be in the can. elaine: okay, jack. (to the cashier) can i use your phone? cashier (ruthie cohen): sure. elaine: (over the phone) puddy? it's elaine. we're through. yeah, that's right. again. frankie: (in the van with jerry) nice captain's chairs, huh? jerry: aye, aye. frankie: oh, there's a spot. just back up. jerry: hold on. there must be a truck backing up. frankie: no, that's us. jerry: great. you know, frankie, i was wondering. what if i decided that it's silly to drive a van, because, you know, i live in new york city. is there maybe some way i could exchange it? frankie: you don't like the van? jerry: no, no, no. just hypothetically. frankie: i gotta go to the park. jerry: no! no, you don't! no woods. i love the van. i'm a van guy. kramer: (showing jerry his mailbox) check it out. rain and sleet may not stop them, but let's see them get by... these bricks. jerry: where'd you get the bricks? kramer: jerry, the whole building is brick. jerry: so you want to take a ride with me out to jersey? i'm gonna try to sell the van to a lot. kramer: a dealer? are you insane? no, take out an ad. sell it privately. jerry: i don't think i want to meet the people that are in the market for a used van. kramer: come on, jerry, just let me help you. jerry: ok. kramer: all right! ok! right, here we go. yeah. ok, so... 'for sale. a big, juicy van.' and, ooh, you gotta put down, 'interesting trades considered.' jerry: i don't want to trade. kramer: no, you don't have to. it's all about tickling their buying bone. jerry: hey, you know what? this is all your mail. they're puttin' it in my box now. kramer: oh, that's it. they have gone too far. they keep pushing me, and pushing me. now i got no choice but to go down there... and talk to them. elaine: hey, jerry. i'd like you to meet someone. this is jack. (heraldic harp sounds as jerry looks at jack's face) postal employee: may i help you? kramer: yeah, i'd like to cancel my mail. postal employee: certainly. how long would you like us to hold it? kramer: oh, no, no. i don't think you get me. i want out, permanently. newman: i'll handle this, violet. why don't you take your three hour break? oh, calm down, everyone. no one's cancelling any mail. kramer: oh, yes, i am. newman: what about your bills? kramer: the bank can pay 'em. newman: the bank. what about your cards and letters? kramer: e-mail, telephones, fax machines. fedex, telex, telegrams, holograms. newman: all right, it's true! of course nobody needs mail. what do you think, you're so clever for figuring that out? but you don't know the half of what goes on here. so just walk away, kramer. i beg of you. supervisor: is everything all right here, postal employee newman? newman: yes, sir, i believe everything is all squared away. isn't it, mr. kramer? kramer: oh, yeah. as long as i stop getting mail! george: (surprising his parents in the kitchen) welcome back. estelle: oh! george: quick for a... catered affair. frank: i don't know what you mean. george: you ditched me. that's twice. now i demand to know what's going on! frank: george, we've had it with you. understand? we love you like a son, but even parents have limits. estelle: the breakups, the firings. and every sunday with the calls. frank: what my wife is trying to say is that this is supposed to be our time. george: i'm not following. frank: we're cuttin' you lose. george: you're cuttin' me loose? frank: now, if you'll excuse me, i'm going to make love to your mother. george: they don't want to see me anymore! jerry: but this is what you've always wanted. george: it is. i'm just not ready yet. jerry: aw, that's kind of sweet. george: ah, shut up, jerry. my parents think they can ignore me. heh heh. well, they better think again. jerry: oh, no. george, please. what are you going to do? george: you remember my cousin rhisa? i'm gonna date her. jerry: mother of god. george: one little wink. she'll freak out, tell my parents. they'll be all over me. who is this guy? jerry: that guy elaine's dating seems really familiar to me. i think he may have been a comedian i worked with one time. wait a minute, what is this? jerry: that is the guy! george: elaine's in love with the wiz guy? jerry: no, she thinks she's in love with him. but she's just remembering this old commercial. george: that's pretty pathetic. jerry: i know. they're not even related. elaine: (enters) hey. george: uh... hey. i'm gonna get going. jerry: hey, have fun at the... family reunion. (george exits) so, what do you know about this jack fellow? elaine: isn't he the best? jerry: yeah, nobody beats him. what kind of work does he do? elaine: oh, right now he's a fact checker for new york magazine. it's not much, but it has a certain type of quiet dignity. jerry: (turning on the commercial) right, quiet dignity. as opposed to, say, this? elaine: oh, no. jerry: oh, yes. jerry: (answering the phone) hello? yeah, the van is still for sale. sure, come on buy. kramer: (rushing into jerry's apartment) yeah, i called about the van. george: (at dinner with his cousin) some more merlot? rhisa: yeah, thanks. george: sure. you know, rhisa. i've always found you... very attractive. rhisa: what? george: i know it may sound shocking. but, i just can't stop myself from... wanting you. rhisa: you want to borrow money, right? george: no, no. i-i just want us to be... together. rhisa: all right. george: all right? rhisa: let's go for it. george: well... we could dance around it a little first. rhisa: (playing footsie) nah. let's be bad, george. let's be really... bad. george: whoa! whoa! geez! kramer: (inspecting jerry's van) so, how come you're selling it? jerry: you know why i'm selling it. i hate it. kramer: how many miles? jerry: two. kramer: city or highway? jerry: look, do you really want to buy this thing, or what? kramer: (breaking the antenna) hey, hey. take it easy. i'm not gonna be pressured. i'll walk away right now. is this thing bent? i'm not paying for that. jerry: all right, just get out of here. kramer: all right, look. i'm going to be honest. i'm very interested in the van. jerry: ok, fine. 'what do i have to do to put you in this van today?' kramer: (pointing to the newspaper ad) well, i don't really have any money. but it says right here, 'interesting trades considered'. jerry: you put that in! kramer: (pulling out an undershirt) and i'm glad i did. here. jerry: you want to trade me an undershirt? kramer: no, i want to trade you screen legend anthony quinn's undershirt. he took this off to do sit-ups in the park and i nabbed it. jerry: that's disgusting. kramer: well, it's my final offer. puddy: you dumped me for some idiotic tv pitchman. elaine: look, i'm sorry, puddy. it-it was a mistake. so, let's just put it behind us, and we can continue like this never happened. puddy: gee, i don't know. what if we're out somewhere and you see the maytag repairman. elaine: you're not taking me back? puddy: (leaving) that's right. elaine: he's not idiotic. he's the wiz. and nobody beats him. nobody... kramer: (handing out anti-mail pamphlets) here you go. mail is evil. pass it on. hey, mail blows. fax it to a friend. woman: why does this dummy have a bucket on its head? kramer: because we're blind to their tyranny. woman: then shouldn't you be wearing the bucket? kramer: yeah. move along, betty. frankie: is this, uh, jerry seinfeld's van? kramer: well, not anymore. he traded it to me for some hollywood memorabilia. frankie: i'm, uh, i'm so stupid. kramer: what? frankie: (running away) i'm so stupid. uh, excuse me. i'm sorry. kramer: yeah, nice to meet you. jerry: she's into it? george: she's leaving me dirty messages on my answering machine. jerry: so have your parents found out about it? george: she wants to keep it quiet. she... thinks we have a real future together. jerry: brave new world, alright. kramer: (entering monk's) hey, you guys. jerry: hey, how's the anti-mail campaign going? kramer: oh, it's fantastic. we were out in front of the post office today, and not one person went in. jerry: it's sunday. george: why is the mailman wearing a bucket? kramer: huh? well, it symbolizes our persecution. george: then... shouldn't you be wearing the bucket. jerry: hey, i want my van keys back. kramer: oh, well. i, uh, thought we made a deal for quinn's t-shirt. jerry: are you insane? give 'em to me. kramer: no, i can't, i can't. see, i told frank he could borrow it. yeah, he wants to move some of george's stuff into storage. george: wait a minute? he's picking up the van tonight? this is perfect. i'll drive rhisa to someplace romantic. then when my father slides the door open, i'm in the van kissing his brother's daughter. kramer: oh, listen, jerry. one of your friends came by and he was very upset that i had your wheels. jerry: oh, no, not frankie. kramer: well, i didn't catch his name, but then he went running into the park. jerry: oh, no, the woods! the hole! kramer: (seeing newman pull up along side him in his truck) hey. newman: kramer, what the hell are you doing? kramer: i know, i'm gonna switch the bucket to something else. newman: not that! kramer: what? newman: you're in trouble, kramer. i shouldn't even be talking to you, but i'm telling you as a friend. here's how it's going to happen you may be walking. maybe on a crisp, autumn day just like today. when a mail truck will slow beside you, and a door will open, and a mailman you know, maybe even trust, will offer to give you a lift. kramer: are you through? newman: no! and no one will ever see you again! kramer: are you through? newman: yes. no, wait! ok, yes. newman: (seeing postal security officials walking towards kramer) quick! get in! kramer: oh, no, no, no. that's exactly how you said it was going down. newman: there's another way it can go down, and it's going down right now! kramer: no. you said a mailman i know, and you're a mailman i know! newman: i know you know, but you don't know what i know. kramer: (being grabbed by the security officials) hey! jerry: frankie! frankie! frankie! frankie, is that you? hole digger: my name is edgar. jerry: have a nice night. hole digger: thank you. frankie: (digging a hole, talking to himself, and seeing jerry's van pull up near him) stupid... so stupid! jerry? rhisa: all right, george. i'm ready. george: yeah, hold on. i'm, uh, i'm just trying to get a reading on my dashboard compass. where are my parents? rhisa: geor-gie... frankie: (running up to the van and yelling through the window) is this seinfeld's van? seinfeld's van? seinfeld's van?! rhisa: (hearing frankie as george runs to the back of the van) wait. what's he saying? george: i think he's saying 'son of sam'! oh, my god! rhisa: no, they caught him. george: (running out and away from the van) i knew it wasn't berkowitz! frankie: (seeing george running away) ohh... elaine: so i told him, 'hit the road. i'm going back with jack.' jack: elaine, that's the second piece of good news today. elaine: really, what was the first? jack: (pulling out his wiz hat) they're bringing me back. yeah. i'm the wiz again. elaine: what? jack: (dancing around) i'm the wiz! i'm the wiz! elaine: well what, what about your fact-checking job? jack: (dancing around) oh... here's a fact. uh, i'm... the wiz! i'm the wiz and noooobody beats me! jerry: (finding frankie, in his hole) frankie... come on out of there. frankie: you hate the van. jerry: but i'm keeping it. as much as i hate the idea of being a van guy, it's much better than hanging out here with the nocturnal dirt people. frankie: so, can we go for a ride? jerry: yeah, let's just get out of here. hole digger #2: (eyeing the empty hole, and getting into it) are you done with that? frank: (coming upon the van) good. he left the door unlocked. estelle: why did kramer have to park the van in the woods? frank: isn't it obvious? there are no parking meters out here. estelle: (looking inside of the van) wow! frank: (reclining the seats in the van to a bed) hey, look at this. hoochie mama! postmaster general: oh, my goodness. what have they done to you here? kramer: huh? who are you? postmaster general: well, you can just call me henry. kramer: henry atkins? the postmaster general? postmaster general: last time i checked. kramer: henry... can i get out of here now? postmaster general: oh, oh. sit a bit. sit a bit. i mean, after all, i drove all the way up here from d.c. just to talk to you. kramer: oh? postmaster general: i even had to cancel a round of golf with the secretary of state. do you like golf, mr. kramer? kramer: yeah. postmaster general: kramer, i've been, uh, reading some of your material here. i gotta be honest with you you make a pretty strong case. i mean, just imagine. an army of men in wool pants running through the neighborhood handing out pottery catalogs, door to door. kramer: yeah! ha ha. postmaster general: well, it's my job. and i'm pretty damn serious about it. in addition to being a postmaster, i'm a general. and we both know, it's the job of a general to, by god, get things done. so maybe you can understand why i get a little irritated when someone calls me away from my golf. kramer: i'm very, very sorry. postmaster general: sure, you're sorry. i think we got a stack of mail out at the desk that belongs to you. now, you want that mail, don't you mr. kramer? kramer: sure do! postmaster general: (receiving a salute from kramer) now, that's better. kramer: (seeing newman walk into the office with a bucket on his head, escorted by a security man) geez. newman? newman: (whimpering) tell the world my story. jerry: hey, george! george: jerry! hey, that's the guy! jerry: what? george costanza, frankie merman. george: oh. the summer me. frankie: the winter me. jerry: you must be george's cousin. rhisa: girlfriend. jerry: all right. george: (seeing jerry's van shaking) what is that? that van's a-rockin'. jerry: don't go a-knockin'. estelle: (after george opens the van door) oh, my god! george: (seeing his parents being intimate) oh, my god! frankie: now you gotta sell this van. jerry: oh, yeah. frank: what you saw in that van was a natural expression of a man's love for his lady. george: ohhhh... estelle: your father's right. it's beautiful. frank: and it was safe. george: oh, god... frank: now if you'll excuse me. once again, your mother and i... george: oh... make it stop. jerry: i just think if you borrow my blender you should return it. kramer: well whats the difference -- come on (pats him on the back) -- were like cain and able. jerry: yeah, ya know cain slew able. kramer: no he didnt. they were in business together it was dry wall, or somethin. jerry: oh, no. kramer: all right then, what was it? jerry: well i think able worked hard all summer harvesting his crops, while cain just played in the field. then when winter came, able had all the nuts; cain had no nuts, so he killed him. kramer: the way i remember it, cain, he was a successful doctor, but when he took this special formula, he became mr. able. jerry: ya broke my blender, didnt ya? kramer: yeah. well i was trying to make gravel and it just (moves hands around) just didnt work out. jerry: i knew it. jerry: why were you making gravel? kramer: well ... i like the sound it makes when you walk on it. kramer: aahh, this looks familiar jerry: of course. it's garbage. kramer: no, no, no, no. these brown things. the chairs. (hits his hand on the rim) jerry, this is the set from the old merv griffin show! (he climbs into the dumpster) they must be throwing it out. this stuff belongs in the smithsonian! jerry: yeah, at least in the dumpster behind the smithsonian. kramer: look at this. boy, one minute elliot gould is sitting on you and the next thing - you're yesterday's trash. jerry: come on, kramer, get out of there. kramer: no, no, no. you go on ahead. i'm not finished taking this in. oh, jerry look ... merv griffin's cigar. jerry: (moans) ohhh (walks away) george: you know i uh, spilled a yogurt smoothie in here two days ago. hm, can't smell anything, can ya? miranda: banana? george: right. miranda: george watch out for those pigeons. george: oh they'll get out of the way. you really smell banana? miranda: (gasp) oh my god. (trying to catch her breath, she puts her hand to her chest.) george: so uh where we eating? jerry: and it was his idea to put a sprig of parsley on the plate. celia: you're making this up. there was never a joseph garnish. jerry: wow! (jerry spots all the classic toys) celia: oh yeah the toys. jerry: where did you get all these? celia: my dad was a collector. i inherited them after he died from a long painful bout with jerry: super bowl! hey, an original g.i. joe. (picks up both items) with a full frogman suit. celia: jerry, what are you doing? jerry: i'm putting this on him and we're going to the sink. celia: ohhh jerry. (takes them from jerry and puts them back with the other toys) they're priceless. they've never been played with. jerry: i just want a, touch em a little. celia: i said no. now come here. lou: hi (startled, elaine spills her coffee on her sleeve) i'm lou filerman. i'm new here. elaine: hey walter, what is the deal with that guy? walter: uh-he's lou filerman. he's new here. elaine: (exhales) walter: hey your coffee stain looks like fidel castro. elaine: you've been an enormous help. jerry: you ran over some pigeons? how many? george: what ever they had. miranda thinks i'm a butcher but i-i-it's not my fault is it? don't we have a deal with the pigeons? jerry: course we have a deal. they get out of the way of our cars, we look the other way on the statue defecation. george: right! and these pigeons broke the deal. i will not accept the blame for this! jerry: so miranda's cooled on ya? george: i'm getting nothing. jerry: yeah, me neither. george: really? i thought you and celia were sleeping together? jerry: oh, the sex is wild but she's got this incredible toy collection and she won't let me near it! george: i don't understand women. jerry: here comes one. elaine: hey. what's going on? george: hey (sees the coffee stain) art garfunkel? elaine: no, castro. george: right. elaine: all because of this creepy new guy at work. he just - he just comes out of nowhere and he's right next to you! jerry: so he just sidles up? elaine: that's right! he's a real sidler. (points at jerry) jerry: maybe you just didn't see him. elaine: wha-you never see him. he sidled me again in my office. i was sitting there making cup-a-soup singing that song from "the lion king". jerry: hakuna matata? elaine: i thought i was alone. jerry: that doesn't make it right. jerry: see, to me, the hakuna matata is not nearly as embarrassing as the cup of soup... elaine: would you just, let it go? kramer: (from his apartment) hey, jerry! come here a sec! kramer: hey! (moving a chair onto the set) jerry: oh my god! kramer: (outstretched arms) it's the merv griffin set. (claps 7 times) jerry: how did you get this in here? kramer: oh, you just bring it in sideways and (pop) hook it. jerry: so where you gonna sleep? kramer: yeah ... backstage. elaine: ehnn! this chair smells like garbage. kramer: (putting on jacket) oh, well a lot of the stars from the 70's - they were not as hygienic as they appeared on tv. you take mannix for example. jerry: i'm gonna get that. (walks across the set towards the blue curtain) kramer: all right. well, jerry, we'd love to have you back anytime. (stretches his arm out, as if hes reaching out a good-bye) kramer: well, elaine benes! well, it's great to have you! (elaine sits down) boy, is it possible that youre even more beautiful than the last time i saw you? elaine: (giggles) george: ahh, ah-ahwe had a deal! elaine: mr. peterman, here are these pages that you wanted. peterman: one moment. i'm reading the most fascinating article on the most fascinating people of the year. annnnnd, done. oh, yes. i'm sorry i needed this so quickly (leafing through the pages). it must have been an awful lot of work. thank you very much, you two. elaine: what? (with arms crossed, she turns quickly and ) jerry: so three dates and she still won't let me play with her toys. kramer: hm, that's interesting. you know someone mentioned to me you were not very happy with your toys, growing up. jerry: yeah, that was me. kramer: oh, that's right, right, right. and uh you mentioned that uh, you didn't get a g.i. joe. you had an jerry: an army pete. kramer: right. jerry: he was made of wood and in the rain he would swell up and then split. kramer: and we all know how painful that can be. (as he says this, he turns and speaks directly into the non-existent television camera. jerry looks a bit confused.) elaine: jerry. oh there - - kramer: oh, elaine benes. well, this is quite a thrill, yes. come - - (motions for jerry to move down one seat as the new guest has arrived for her segment. kramer gives jerry a little push) come on sit down. yes. elaine: (clears throat) (to jerry) well, i'll tell ya, this sidler guy is really chapping my hide. kramer: ju - excuse me. yeah we're, talking this way. elaine: well, he's getting credit for work that i did! he's gonna sidle me right out of a job. kramer: ah, now, for those of us who don't know, uh, sidling is what? elaine: kramer, what is wrong with you? kramer: what do you mean? elaine: well, for starters, you're looking at note cards elaine: (to jerry) i'm gonna have to give that guy a taste of his own medicine, so, i am going to sidle, the sidler. jerry: you, sidle? y-you ... you stomp around like a clydesdale! elaine: not with these honeys. ... wrestling shoes! kramer: (to the imaginary tv camera) only in new york. ... ha ha george: jerry? kramer: oh! (turns on the merv griffin theme music) heeeyy! well, ladies and gentlemen! it's our good friend, george costanza! what a surprise! tape recorder: turn music off (kramer pushes the off button turning the music off) kramer: yeah, sit, sit, sit weeell! (laughing, clapping) george: well, it happened again. jerry: what happened? kramer: eyaaaya-ya-ya, i'll ask the questions. what happened? george: well i just stomped some pigeons in the park. they - they didn't move. kramer: all right, let's uh, change the subject, ah. (looking at the yellow note cards) now, uh you and uh, jerry dated for a while. tell us ah ... what was that like? kramer: that was the wrong card. george: i-i don't get these birds! they're breaking the deal. it-it's like the pigeons decided to ignore me! jerry: so they're like everyone else. kramer: (laughs too loudly) all right, let's take a short break. kramer: okay ah, (checks his watch) we're back! george: boy that-that bank clock is-is eight minutes off. miranda: then why don't you just run it over too? george: zing. miranda: george, what are you doing? george: did you see that? that-that pigeon didn't move! i had to swerve to get out of the way! i saved that pigeons life! miranda: what pigeon? you drove right into that squirrel. (leaves the car) george: squirrel? well, we have no deal with them! jerry: (sound of gunfire) pkew, pkew, pkew, pkew, pkeeew! celia: jerry! (she slides away from him) those hands! they never stop! jerry: i'm sorry. got any booze? what's say you and i get ripped! celia: no. thanks. i have a headache. can you just get me an aspirin? jerry: all right. jerry: ohh, will not cause drowsiness" lou: here's the new copy you wanted. peterman: ah, yes. well this certainly looks like a lot of words. in record time. i'm very impressed ... with both of you. elaine: (winks and clicks) thank you. ha ha ha ha. (sits down) peterman: unfortunately, i am also disgusted. this is incoherent drivel! this is a total redo. and i'm assuming i need it right away. elaine: well, i guess we'll just have - (lou has left) ohh, just gimme that. (takes the papers and walks away) jerry: uhn-uh-uhn - uhn-uh-uhn - - veeer, veeer, veeer, veeer, veeer, veeer, veeer, veeer a-ha ha! mission accomplished! back to base, joe. (singing) dee, de-de, de-de-de-de-de (makes g.i. joe swim off, legs kicking) miranda: doctor is the squirrel going to live? doctor: there's been massive trauma. we could of course try to save him but, it would be costly, difficult and we'd have to send away for some special really tiny instruments. george: well, uh, are there any other options? doctor: we, could put him to sleep. george: what might that cost? doctor: well it's by the pound. so ... about 80 cents. george: well? (miranda hits george) i was just - i'm curious, that's all. we, uh. we'd like you to, do everything possible. doctor: he, um. he's not going to be the same, you know? george: yeah. yeah. i-i know. george: so they're flying the tiny instruments in from el paso. kramer: el paso? i spent a month there one night. newman: (laughs - t-heheheheheheheh) el paso! jerry: what's he here for? newman: eue-aaa. kramer: ah to take some of the pressure off of me. so, jerry ah, what's going on with you? i understand there's a young lady in your life. mmm. jerry: well, actually, it's kind of a funny story because she has this amazing toy collection and last night i finally got to play with them. kramer: well. sounds like things are progressing. do i hear, wedding bells? newman: are you married right now? (points at jerry) kramer: newman. (kramer smacks newmans arm) jerry: actually she doesn't even know about the toys. i gave her the wrong kind of medicine and i, guess she passed out! kramer: what do you mean "wrong kind of medicine"? jerry: she's even got that old mattel football game that we love! george: oh, come on! you gotta get me over there! kramer: wait a minute, wait a minute! you mean to say that you drugged a woman so you could take advantage of her toys? let's pause a moment. (newman starts the taped music) jerry, now, what you do with your personal life is your business, but when you're on my set - you clean it up, mister! newman: i told you he was a risk. jerry: oh, like he's not just carrying you! and has been for years! newman: yeah? well, you bombed! that story stunk worse than these chairs! kramer: smile, everyone! we're back! lou: you wanted to see me, elaine? elaine: yes, lou. (exhales) you've got a lot going for you. you're um ... you're spontaneous. you're, symmetrical. you're, uh, ... (spins around as lou is behind her now) ehh - you're very quick, aren't ya. um, it's just that your... lou: my dead tooth? elaine: no. your. (breathes) lou: not my breath? elaine: uuhhh. lou: what can i do? elaine: well, you should never ever go anywhere, (shakes a box of tic tacs) without these. lou: thanks, elaine. you're such a super lady! (he opens the door and goes into the hall - now he clicks and clacks when he walks) george: more wine and turkey? (pours celia more wine) celia: hmm. (takes a sip) jerry: so when i saw george on the street with an 18 pound turkey and a giant box of wine, i thought ... what a coincidence. we're just about to eat. celia: what is that stuff in turkey that makes you sleepy? jerry and george: tryptophan.* (*footnote - see end of script) celia: ahh. jerry: ... i think. have some more wine. (jerry pours his whole glass of wine into her glass.) celia: what video did you get? george: oh. jerry: oh, george brought home movies of his boyhood trip to michigan. george: four hours. jerry: more heavy gravy? george: (playing with toys) ahhhh, yes! touch down! your turn, jerry. (hands jerry the mattel football. george starts playing with the etch-a-sketch.) newman: lately, though, i've been, uh, - i've been buying the generic brand of waxed beans. you know, i rip of the label i can hardly tell the difference. kramer: we've officially bottomed out, mm. who's our next guest? newman: we got no one! kramer: we need a new format. we should shut down and re-tool. newman: what about a guest-host? kramer: i'll pretend i didn't hear that. miranda: doctor, how's the squirrel? george: is he dead? doctor: no. fortunately, the special tiny instruments arrived just in time. would you like to visit him? miranda: yes he would. doctor: you uh, you have 30 minutes. (doctor exits. george turns and looks towards the doctor) george: so ... uh, squirrel. doctor: one more thing mister costanza, we just need to know what time you'll be picking him up tomorrow. george: what's that? doctor: oh, we're discharging the squirrel. we think he'll be better off at home. george: he has no home. he's a squirrel. doctor: hmm-hm. your home, mister costanza. just make sure he gets his medicine six times a day and keep his tail elevated. (exits) jerry: maybe it'll be fun having a pet. george: it's not a pet! it's a wild invalid! and it knows that i tried to kill it. as soon as it gets better, it's gonna gnaw my brain out in my sleep! kramer: jerry, (claps) aaya - what are you doin' tomorrow? i want you to come by the set. jerry: what about my "questionable material"? kramer: nope, we got a whole new format. edgy, youthful, plus ... we got jim fowler! jerry: jim fowler? the animal guy from "wild kingdom" is coming to your apartment? kramer: well, i practically raised his kids. george: that's perfect! he's a zoo guy! he take's care of animals. c-can i bring the squirrel by? kramer: what? two animal acts on the same show? (turns to jerry) what is this, amateur hour? look, george, i'm sorry, maybe another time, all right? (drums table and exits) george: i gotta get to fowler. i know that he would take this squirrel off my hands. it's practically bionic! elaine: hey! (startles jerry and george) ha ha ha ha. nice sidle, huh? speaking, of which i think ive got that problem, solved. jerry: tic-tacs work? elaine: he's a human maraca. george: boy, my knuckles are still cramped from that football game. elaine: you took him over to celia's? jerry: what? it's a victimless crime. elaine: what about the woman who's been drugged and taken advantage of? jerry: okay, one victim. elaine: i think it's unconscionable. george: hey, last night, i found a whole weeble village right behind the ez bake oven. elaine: ez bake oven? elaine: who wants cupcake? george: oh, me, me, me, me, me! jerry: you know, that batter is, like, 30 years old. frank: (on tv) you step on it and it flushes. elaine: why is your father giving a tour of a rest stop? estelle: (on tv) stop squirming. george: oh, don't look. t-this is the part where they change me. jerry: you're like eight years old. estelle: (on tv) georgie. george: i was seven and a half. peterman: that noise. that's the noise! elaine: what? peterman: that infernal rattling sound that has plagued me these past two days - and i could not find the source. in my office, in the hallway. even in the men's room! shame on you, elaine! elaine: no, no, mr. peterman that wasn't me! peterman: that reminds me of the hatian voodoo rattle torture! you haven't gone over to their side have you? elaine: no mister peterman. peterman: because, if i hear one more rattle - just one - your out on your can. and if you are undead - i'll find out about that too. (exits) elaine: (pushes lou into the room) lou! in here! (closes the door) we have to talk. lou: oh, right. elaine: (takes the tic tacs away from lou) ooh, stop it! bad voodoo. you gotta stop using these. lou: why? elaine: because they're turning your teeth green? lou: i only buy the white ones. elaine: o-kay ... well then your teeth are green for a different reason. you just gotta stop carrying these, okay? just ... just mouth wash. lou: i can't. it burns my cankers. elaine: binaca? lou: again. elaine: right, right, cankers. um, i got it! chew gum! lou: i hate gum. the only guy i ever liked came with the mickey mouse gumball machine. they stopped making that 20 years ago. elaine: well, stinky, this is your lucky day. kramer: okay. a little later, we're gonna be talking with animal expert, jim fowler. fowler: where are the cameras? (he has a live hawk perched on his arm) kramer: but first, we're talking with, jerry. (looks down to his yellow note cards) okay, jerry, uh, you uh, you drugged a woman in order to play with her toy, collection. how do you feel about that? jerry: it was great! i've done it a few more time since then. kramer: and she doesn't know anything, about this? jerry: no, not a thing. kramer: well, jerry, we have a little surprise for you! come on out, celia! celia: what kind of a sick twisted creep are you? newman & kramer: woah. jerry: what, what is this? what is she doing here? kramer: it's the new format. scandals and animals. git gt gt. celia: if you think you can drug me and play with my toys, you got another thing coming, buddy! newman: go girl! jerry: well, what kind of woman drinks an entire box of wine? newman and kramer: ohhh! george: mister fowler, i-i have a squirrel here that is a miracle of modern science! (laughs) kramer: george i told you we're booked! fowler: careful. hawks and squirrels don't get along together. kramer: ohhh. another interesting confrontation. this could be spicy. yeah, george bring him over. george: uh. fowler: no, you idiot! hawks eat squirrels! george: ahhhh, ahh, ah, ahhh, ahh, ah! kramer: (off camera) are we getting this? jerry: so the whole set was destroyed? kramer: well, the squirrel kept scurrying and the hawk kept clawing. george: well, at least we know the prosthetic squirrel hips work ... sorry bout the set. kramer: ill tell ya it was a grind having to fill 10 hours a day. i'm not sure i was ready to have my own talk show set. miranda: i got the nut bread, george. let's go. (exits) jerry: so the squirrel's gonna make it? george: yeah, he's in my bed. i'm sleeping on the couch. jerry: on the couch? so you're... george: still getting nothing! george: so go ahead pigeons. hu hu hu. laugh it up. i'm getting in my car now and the last i heard ... we have no deal! celia: i'm glad you called, elaine. i really needed to talk to someone. elaine: oh well, hey, i dated jerry too. i-i know what a monster he can be. more wine and turkey? celia: who's he? (lou) elaine: oh, he's nobody. hey, listen, ... let me top that off for ya. (pours her glass of wine into celias glass) elaine: hey. jerry: morning. elaine: look, this is crazy, i can't go on like this. jerry: but why? elaine: i need some space. george: does that mean i have to go too? jerry: you don't think she's just talking to me? george: hey, shut up. jerry: you shut up. elaine: i hate this. kramer: you'll get used to it. it's like a grubby scrub. elaine: no, i don't want this anymore. jerry: we'll come to work with you. george: and on your dates. jerry: and shopping. kramer: and to the bathroom. jerry, george & kramer: elaine, elaine, elaine, elaine...(distant alarm sound which is getting louder.) elaine: i can't breath...i'm sorry...(elaine wakes up) you're killing me! (elaine tries to push her alarm clock showing 3: 30. she realizes, that alarm comes from next door.) elaine: (banging the wall) turn your alarm off!! (screams) kruger: your background is impressive george, but how does it apply to what we do here, at kruger industrial smoothing? george: well, at the yankees it was all about smoothing things over, you know, chiseling away, grinding down. in fact we used to call it 'the grind'. kruger: it says here that you worked at play now for four days? george: that should be 14, let me just...(corrects it with a pen.) kruger: george, i have to honest; i could go either way with you...but what the hell, we need someone, huh. george: you won't regret this, sir. kruger: i don't care. let's find you an office. (kruger leaves and george notices a photograph on the table: kruger's family and george on the background.) george: ...and then when i saw the photo i remembered where i'd seen him; the boom box incident. jerry: the boom box incident? george: summer of '89 i'm at the beach. this family sits up next to me. i go in to the surfs and when i come from out, my clothes, my towel, my umbrella, they're all gone. i am furious, i start screaming to these kids demanding my stuff back and finally i lose it; i grab their boom box and i chuck it in to the ocean. jerry: seems reasonable. george: then i see my clothes floating out there. the tied took them out, not the kids. jerry: even more reasonable. george: so now, the father is screaming at me, he's demanding that i pay for the boom box. finally, i gave them a fake address and got the hell out of there. jerry: and that guy is your new boss? george: until that stupid photo jogs his memory. kramer: kruger? that's not kruger industrial smoothing, is it? george: yeah. kramer: grinders, sanders, wet stones. they are the ones who botched the statue of liberty job. jerry: right, they couldn't get the green stuff off. george: it is a horrible company. there's no management what so ever. i could go hog wild in there. kramer: you now what you do? you sneak that photo out of there for couple of days and get it air brushed. george: like retouched. kramer: you remember that photo of me and gerald ford and i took it in. got that ford right out of there. george: oh, this is good. this kruger guy is clueless. i can't wait to work for him. kramer: look at this. this sandwich is terrible. everywhere you go, they give you this misshaped shardy meat. look at this... kramer: i haven't had a decent sandwich in 13 years. jerry: neither have i. kramer: hey, our meat problems are solved. jerry: where did you get this thing? kramer: i traded it to my sausage press. look how thin that is, see that's all surface area. the taste has nowhere to hide. elaine: hey. kramer: hey, spice. (gives elaine a piece of meat.) welcome to flavor country. elaine: yeah, that's pretty good. jerry: hey, i got a date with that doctor you met. elaine: sara sitarides? jerry: mmhu. elaine: oh...(falls in to the sofa.) jerry: what's with you? elaine: you remember that next door neighbor of mine, the apartment that always smells like potatoes? jerry: your whole building smells like potatoes. elaine: this jackass goes to paris, leaves the alarm on. it's been beeping since 330 this morning. kramer: you know, that happened to lomez, so he blew his neighbor's circuit. elaine: how do you do that? kramer: yeah well, that's easy. just let me finish this mile high and i'll be right with you. oh, and jerry, we are gonna need a case of kaiser rolls. jerry: i think we might have one left in the stock room. kramer: this hallway smells like potatoes. elaine: i know, i know, this is it. (points to a door.) kramer: ok, oh, you see this socket it's probably connected to her apartment. so what we'll do, we'll take this paper clip and bend it so it'll short out the entire circuit. here you go... elaine: i think i'll let you do it. kramer: no no no. it's easy, you just...do it quickly. elaine: no, i really don't want to. kramer: well, i don't want to either. elaine: i thought you had done this before. kramer: it's just...it's no picnic. elaine: well, how are we gonna do it? kramer: alright, fine fine, i'll do it. kramer: oh mama. elaine: are you okay? kramer: i will lose that nail. sara: i enjoy the challenge of medicine. naturally you have no idea what it's like to have someone's life depending on you. jerry: well, i have this neighbor... sara: a joke. do you have any idea how it feels like to save someone's life? jerry: is it anything like hitting a home run in softball? sara: no. jerry: cause i hit a whopper last week! clerk: here you go, airbrushed in to sand and sky. george: what did you do here? you took out the wrong guy. clerk: i thought you said you wanted to be out? george: well, i'm still here. you took out the other guy! clerk: you've really lost a lot of hair. george: i am aware! elaine thinking: hmm, the world's best pizza cutter. 76 bucks, how often do i make...oh, i've gotta buy a book. elaine: the cat. jerry: he took out kruger? george: i just pray kruger doesn't realize that it's gone until this guy can fix it up. kramer: this slicer is indomitable. jerry: where did you get that butcher's coat? kramer: you buy enough meat, they'll give you anything. elaine: kramer, my neighbor has a cat. when you blew the power, we must've shut off the automatic feeder. kramer: see, that's the same thing that happened to lomez. elaine: what did he do about it? kramer: well, he moved to a hotel and the cat eventually died. elaine: well, this meowing is absolutely worst than the alarm. kramer: oh, that's a prickly one. elaine: yeah, how's the doctor date? jerry: eh, died on the table. just spent hour and a half making me feel, if i don't save lives, i'm worthless. elaine: well, she's very focused. dermatology is her life. jerry: dermatology? elaine: yes, she's a dermatologist. jerry: saving lives? the whole profession is; eh, just put some aloe on it. kramer: the slicer! elaine, let's go. elaine: where are we going? kramer: the cat. just grab that meat and let's ride. george: when are you going on your next date with her? jerry: oh, what's the point? george: what, you're gonna pass up a wonderful opportunity to put that aloe pusher in her place? jerry: revenge date? that sound like you more than me. george: this good be so sweet, jerry. saving lives? she's one step away working at the clinique counter! jerry: dermatologist? skin doesn't need a doctor! george: of course not! wash it, dry it, move on! jerry: you're right. i'm gonna call her right now and tell her off. george: no no no no no, this has to be carefully orchestrated. you go to a fancy dinner, flowers... jerry: flowers? george: yeah, you gotta do it classy (wipes his mouth to his sweater.) jerry: so, you've done this? george: almost. couldn't get the girl go out with me the second time. kramer: i think we are looking half a millimeter. elaine: can it cut that thin? kramer: oh, i've cut slices so thin, i couldn't even see them. elaine: how did you know you cut it? kramer: well, i guess i just assumed. elaine: hold on kitty, dinner's coming. kramer: yeah, that's a hall of famer. elaine: alright, let's do it. kramer: alright, here we go. yeah, watch that baby slide...(puts a slice of meat under the door.) elaine: come on, come on kitty...(slice disappears) ooh...how about that; it worked! wow, can i borrow that thing for a while? kramer: oh no, i don't think so. elaine: why not? kramer: well, you're not checked at on it. elaine: what do i have to know? kramer: well, where the meat goes? elaine: right there. kramer: where do you turn it on? elaine: right there. kramer: but where does the meat go? sara: restaurant, flowers...this is so nice. jerry: well, i'm a classy guy. how's the life saving business? sara: it's fine. jerry: it must take a really really big zit, to kill a man! sara: what is with you? jerry: you call yourself a lifesaver. i call you pimple popper md! parry: dr. sitarides? sara: mr. parry, how are you? parry: i just wanted to thank you again for saving my life. jerry: she saved your life? parry: i had skin cancer. jerry: skin cancer! damn. elaine: you were right kramer, this slicer is absolutely amazing...yeah, yeah...no no no i'll bring it by tonight...ok bye. elaine: these heals are so uneven. (watches the slicer.) clerk: here you mr. costanza. george: what is this? this is a drawing. clerk: looks real, doesn't it? george: this is a cartoon! clerk: hey, i had to draw that guy from memory. considering, i think that's damn good. george: but it's not a photograph, i need a photograph! clerk: then you better get a camera. jerry: he looks like a peanuts character. george: i know. the only way to fix it now, is to get a whole new photo of kruger. jerry: you can do that. george: without his shirt on. jerry: you can't do that. well, maybe kruger wasn't the place for you. george: it seemed so disorganized. jerry: i understand. george: what about the coast guard? seems like a lot of pride there, a lot of tradition. jerry: true. you mean, for you? george: i think. jerry: what about your sea sickness? george: maybe i could be a land guy. jerry: i don't know if they have land guys. george: someone's have to unhook the boat before it leaves...the place! elaine: pliers? jerry: drawer. elaine: got it. jerry: what are they for? elaine: i...eh...i got a piece a my heal stuck in a slicer. jerry: come again? elaine: okay, i got a little slicer happy, but listen; don't tell kramer, okay? he has very strong feelings for it. george: i forgot to ask you; how did the revenge date go? jerry: eh, it went okay. george: did you dressed nice, did you do it classy? jerry: yeah, i started out real classy... george: yeah you did, you classed it up! jerry: but then i found out about the skin cancer. george: oh, so it backfired? jerry: yeah. george: so, i guess i was lucky that i never tried that myself. elaine: of course she treats skin cancer. that's how i met her, she was doing a skin cancer screening at peterman. that's what dermatologists do. jerry: sadly, that knowledge could've help me. george: wait a minute, she did a skin cancer screening at peterman? elaine: aha. george: could she do that at kruger? elaine: i don't know, i guess. george: so i set up a screening, everyone takes their shirt off and click, i snap me a shot of a bear-chested kruger. elaine: you have a little thing for this fella'? george: jerry, you gotta talk to sitarides. jerry: yesterday you said i had to get my revenge on her! george: and that was wrong, jerry! you simple must to apologize.. jerry: must i? george: yes! because it is the mature, adult thing to do. jerry: how does that reflect me? kramer: elaine, alright where's the sp2000? cause i gotta slice. elaine: aah, i forgot it. i gotta get home. kramer: ok, i'll go with you. elaine: umm, i'm not actually going straight to home, i have to first stop at the eh...circus, you know with all the...clowns. kramer: oh, well you have fun...(elaine leaves) oh no clowns...hate clowns...the clowns. jerry: so again, i'm sorry. i had no right to yell at you, you're a life saving doctor and i'm just a comedian... sara: jerry, enough. i'll do your friend's cancer screening, because i believe in that, but as far as you and i are concerned; it's off. jerry: was it pimple popper md? sara: that's the one. (taps jerry on the cheek and leaves.) jerry: still got it. elaine: out, damn heal! kramer: elaine? elaine: kramer? kramer: yeah listen, i need my slicer back. elaine: just hold on! kramer: hey, what's going on? elaine: nothing...(heal comes loose and elaine opens the door.) here, ok i'm on the phone alright? i'm on the phone with someone... kramer: my blade is all dinged up. oh, come on! elaine! elaine: phone call! i'm in a big phone call! kramer: come on, this is important! (shakes the door handle and it comes loose. kramer falls backwards to the next door.) neighbor: hey, get the hell out of here! kramer: wow, that's a lot of potatoes. kramer: so, george took my slicer down to kruger and they're smoothing it out for me. jerry: what the hell is this? kramer: boy, that looks like an allergic reaction. have you been wearing a fake beard? jerry: no. kramer: well, what have you been doing? jerry: nothing, i got up, run some errands, i went down to sara's office and apologized... kramer: whoa whoa, backup, dr. sitarides, what happened there? jerry: well, i tried to apologise, it didn't go over that well... kramer: there, there's your hives. jerry: what, she gave me hives? kramer: jerry, as the bible says; thou who cureth, can maketh ill. jerry: she did kind of touch my face. kramer: now you listen to me, you've got to find this woman and tell her that you're not a test tube pin cushion. jerry: it does itch. maybe i will go down at kruger and talk to her. kramer: alright, great, because i got to get down there and pick up my blade. hey, and i couldn't find that stock room. elaine: oh, that's fantastic. george: i just talked to mr. kruger, he'll be down in a minute. he wanted me to take a photograph for the record. sara: what record? george: his personal file, i, i don't ask... sara: jerry? what brings you here? jerry: i don't know, this? (shows his neck to sara.) sara: looks like hives. jerry: where do you suppose that could've come from? george: jerry, what are you doing... kramer: he is just setting the record straight. jerry: come on sitarides, cop to it. what brand of perverted science do you practice? sara: are you suggesting i somehow i infected you on purpose? jerry: i want the antidote, pimple popper! sara: that's it, i'm out of here! you're insane. jerry: am i? you touched my face. i didn't imagine that! george: dr. sitarides don't go! oh, thanks jerry! kruger: hey george, hey doc. we doing the screening here? george: aah, yeah, yeah. won't you head on in, we'll be in in a second. be right with you. kramer: doc, huh? george: kramer, this is perfect. i need you to go in there, pretend you're a doctor and check this guy for moles. kramer: moles, yes. freckle's ugly cousin. george: and get a picture of him, with his shirt off. kramer: you really are cooking up a little scheme here, aren't you? george: alright, lets get in there. quick, quick, quick... elaine: this is it. i can take this anymore. (she turns the radio on loud (foghat: slow ride) and "dances" few little kicks.) kramer: male mammal. approximately 30 to 60 years of age. weight...uh indeterminate. ok, mr. kruger, we are gonna take a photo now for the records. so if you'll stand up please and give me a big smile, oh no no no, not that big. yeah, that's nice, yes okay. yes, let's have a looksee...ok, so eh, fiber from shirt on the left shoulder. i'm gonna have to keep my on that. kruger: how long have you been doing this dr. van nostrand? kramer: uuh, long long time. yes, i've seen moles so big they have their own moles. freckles that cover two men. kruger: so, how am i looking? kramer: oh, so far, so good...(looks at mr. kruger's shoulder) yeuye... george: kramer, i really owe you one. kramer: george, we got a problem. george: what? kramer: well, he's got a mole on his shoulder. very suspicious. george: so, tell him you're concerned about it and he should see someone else. kramer: george, why would i, a juilliard trained dermatologist, send him to another doctor? george: because, you're not a dermatologist. kramer: he thinks i am. i'm not gonna betray that trust. here's what i wanna do; i think i can get a section... george: whoa, whoa, a section?! kramer: yeah, if i could crab my slicer and he'd hold still... george: no, you're not taking a deli slicer to my boss... kramer: it'll be operative thing, he would barely feel it. george: no! absolutely not! kramer: well, it's my medical opinion, that you're making a big mistake. and it's going in my chart. [elaine is on the phone and the radio plays music very loud (iron butterfly: in-a-gadda-da-vida)] elaine: yeah, hello is this allied lock smith?! oh, finally, listen i need someone to come over here right away! neighbor: turn it off! turn it off! elaine: i am getting a lock smith, alright?! relax! neighbor: alright, that's it! elaine: yeah, the address is 78th west... neighbor: oh, oh mama... jerry: so, kramer pulled it off? george: yep, and the photo was all fixed and back on his desk, no thanks to you. jerry: well, that woman had it coming to her. look at my neck, it looks like i had a beard of bees! george: why don't you see someone about it? jerry: i've called everyone. you know how hard it is to get a dermatologist in this town? (kramer comes in) a real dermatologist. kramer: (points to a page on the book) squamous cell carcinoma. george: you're not a doctor. you shouldn't even have books like this. kramer: george, that's what he has and i have to give him a call. now we gotta came clean. george: you can't tell him the truth, you're gonna blow the whole thing. kramer: i don't want this on my conscience. george: i'll get him to see a real doctor. you just stay away from this. kramer: yeah, alright... jerry: hey, i wonder if they have a picture of my rash in here. kramer: they've got everything there, jerry. i underlined the best parts. jerry: hey, this looks like the thing i have. caused by exposure to benzene, a common ingredient in metal cleaners. kramer: well, that's weird. jerry: what are you doing? kramer: well, i'm cleaning my slicer. jerry: that's my hand towel! i use that on my face, hands and chest! that's where the hives are coming from! it's not from dr. sitarides, it's from dr. van nostrand! kramer: so, somehow the bronzo (?) is reacting to the poison she's giving you. jerry: alright, get out. and take your bronzo with you (throws the bottle to kramer.) kramer: ohh, that's toxic. (jerry throws the towel over kramer's head.) ououou.... kruger: george, come in. i'm just going over our annual report...boy did we take it on the chin last year. george: eh, listen mr. kruger, i got a message from dr. van nostrand and he says it might be wise to you to see another doctor about that mole. kruger: i'm not too worried about it. george: well, he said it could be cancer, maybe you should get it checked out. kruger: george, take a look at this photo. this is taken 10 years ago. that mole looks exactly as it does today. so, there's no cause for concern, eh? george: whatever. kruger: actually, funny thing about this photo. we were at the beach and there was this dumb looking guy near by. when he went in for a swim, my sons and i took all his stuff and threw it in the ocean! what a pear shaped loser. george: well, that pear shaped loser was me! and i was in that photo, until i broke in here, stole the photograph and airbrushed myself out of there! kruger: well, i'll be...you have lost a lot of hair. george: that's what they tell me! kramer: do you want more pastrami? elaine: um, what was that last thing you gave me? that was pretty good. kramer: yeah, it was olive loaf. you want that? jerry: i can't believe kruger didn't fire you after all you did. george: he said he didn't care. oh, god i love that place. hey, have you seen other dermatologist? jerry: yeah, i finally got to see dr. kazarian. he said it was really bad. george: what did he give you for it. jerry: aloe. so where's that lock smith? george: have to give him time on this hour. elaine: can i have a zip? (sticks a straw out from keyhole.) kramer: oh yeah, coming up... george: so, elaine, are you going to sleep with me or what?! elaine: (aggravated) george, i just got off a twenty-three hour plane ride. i'm too tired to even vomit at the thought. george: (angered) fine. i'll ask you again when you're rested. jerry: (sarcastic) oh, i'm sure she'll come around. george: yeah, i hope so. for your sake! jerry: (to george) i said i was sorry. george: you can stuff you sorries in a sack, mister! jerry: (nauseated at the saying) would you please stop saying that?! kramer: (confused) what is up with you two? george: i don't want to talk about it. kramer: (to jerry) so how was the big trip? jerry: i don't want to talk about it! kramer: (observing elaine's bandaged nose) well, what happened to your nose? elaine: i don't want to talk ab-ow!-t it! (she winces under the pain from her nose on the word 'about') kramer: well, you gotta give me something! come on, how was the wedding? was the bride radiant? elaine: she.. was. jerry: 'till she found out elaine slept with the groom. kramer: (interested) ooohh... that sounds juicy. listen, i gotta go to the bathroom, but i want to hear all about it. (gets up and heads for the bathroom) george: (while skimming a monk's menu) you know, i didn't go to the bathroom the entire time we were in india. jerry: i can't believe we went all the way to india for a wedding! [setting: india] notice: "india - one day earlier" sue ellen: that's it! the wedding's off. pinter: what? but, sue ellen- sue ellen: (cutting him off. to elaine) elaine, you were my maid of honor and you slept with my pinter?! elaine: no, no, no! it was years ago - before you met him. and, and i - i got to tell you.. it was very mechanical. sue ellen: i have never been so humiliated! elaine: (to jerry and george) idiots! this is all your fault! george: (while pointing at jerry) not me! him! his fault! he betrayed me! jerry: (pleading) george, i'm sorry. george: oh you can stuff your sorries in a sack, mister! jerry: (confused) i don't know what that means. george: (to his girlfriend) nina, you have to decide right now. jerry or me? nina: (casually) alright.. neither. george: what?! well, what are you doing here? nina: a free trip to india. and by the way, you can take off those boots. everyone knows you're five' six. george: five' eight! five' seven! elaine: (to sue ellen) see? see the way they are?! we're - we're still best friends, right? sue ellen: no. (grabbing at the stud in elaine's nose) and take that stupid thing out of your nose! jerry: that's got to hurt, i don't care where you're from! george: (whispering to jerry) what time is our flight back? i got to go to the bathroom. [setting: a building in india - the wedding ceremony is about to start] notice: "fifteen minutes earlier" elaine: (whispering to jerry) hey. jerry: hey. elaine: what happened last night? jerry: oh, you were pretty loaded. elaine: (gesturing to her nose stud) i know. i woke up with this. jerry: oh. hello, tetanus. nina: george, i've used the bathroom. it's fine. george: (struggling) no, no, no, no. i can walk it off. it's a hundred and twenty degrees in here.. i'll sweat it out. elaine: (seeing george, she walks over to greet him) hey. (looking at his shoes) are those timberlands ... painted black? george: (looking at her nose) is your nose pierced? elaine: (embarrassed) i should.. (walks toward the bride and groom) george: yeah. (points to two open seats in front of jerry's. to nina) sit down there. (sees jerry in the crowd) hello, jerry. (obviously angered at jerry) i believe you know nina. jerry: (as george sits down) george, we need to talk. george: (trying to keep his voice down) i think you've done a lot more than talk! you betrayed me! jerry: alright, i admit it. i slept with nina, but that's all. george: (outraged) "that's all"?! that's everything! i don't know what all the rest of it is for anyway! jerry: (pleading) i'm really sorry. george: you can stuff your sorries in a sack, mister! jerry: (confused) where'd you get that one? george: it's an expression. elaine: (from the front of the room, she can hear george and jerry's heated discussion) hey! shhhhh! (crosses herself, then shakes her head - apologizing) george: (trying to whisper to jerry) look, we are gonna settle this right now! i demand reparations! i should get to sleep with elaine. that's the only way to punish you! jerry: that doesn't punish me. it punishes elaine! and cruelly, i might add. george: (losing it) funny guy! elaine: hey! monkeys! knock it off. my best friend is trying to get married up here! george: elaine, you have to sleep with me. elaine: (definite) i'm not gonna sleep with you. george: reparations! elaine: would you grow up, george?! what is the difference? nina slept with him (points to jerry), he slept with me, i slept with pinter. nobody cares! it's all ancient history. george: (loud, so everyone at the wedding can hear) you slept with the groom?! [setting: new york street] notice: nan kramer: oh, thank you, fdr! all right, now were even. fdr: i-i-i stuck a rock in there too. fdr: all right. [setting: the coffee shop] notice: "one hour earlier" kramer: alright, fdr. this wish is for all the marbles. you win, you get your wish - i drop dead. i win, i don't drop dead, and i get one-hundred percent anti-drop-dead protection -- forever. fdr: alright. kramer: oh, man! all right, come on. there's got to be something that'll change your mind, fdr. something.." (fdr lifts up a cooler, and puts it on the table) what, you want my kidney? (fdr is smiling wickedly as he pulls a snowball out of the cooler) mama!.. [setting: jerry's room in india] notice: "the night before, back in india" elaine: george knows that you slept with nina. that's why he was acting so weird. jerry: how did he find out? elaine: he schnapped me. jerry: you know you're not supposed to drink while you're keeping a secret! (elaine laughs) is there anything else? elaine: i can't tell you. jerry: (handing her a small bottle) here, drink this. elaine: okay. (takes a drink and wave jerry to lean in) i slept with the groom. jerry: pinter? elaine: he used to be called peter. jerry: (making nothing of it) so? who cares about that? elaine: sue ellen! if she knew, she'd call off the whole wedding. jerry: oh, nobody's calling off any weddings. alright, it's time to go. come on.. up. elaine: do you know what 'jerry' is in indian? jerry: (carrying her out, piggy-back style) no, what? elaine: (between laughs) jugdish. jerry: yes, jugdish. elaine: hey, what if i got my, nose pierced? that would be pretty freaky.. oooohhhhaaa! (sliding off jerry onto the hallway floor) jerry: (trying to get rid of her) yes, i think it's a fine idea. well, good night. elaine: g'night, jugdish. (laughs) [setting: jerry's room, india] notice: "one hour earlier" jerry: bless you. elaine: thank you...aah, hm mm. [setting: jerry's room, india] notice: "three seconds earlier" [setting: new york park] notice: "two hours earlier, new york" kramer: ah, hello fdr. yeah, ill have a hot one, (pulls out some cash and slaps down a bill on the stand) everything on it. fdr: these thingsll kill ya... but so what...(squirts mustard on the hot dog)youre already gonna drop dead (grins) kramer: well, guess what, fdr? i made a wish on a shooting star last night, and i wished, against your wish. fdr: that's funny. as it happens, i saw the same shooting star and double-wished you, to drop dead. (clicks out some coins from his changer and hands them to kramer) here's your change. kramer: alright, i'm triple-wishing! yep! fdr: (throwing four coins into the fountain) then i'm quadruple-wishing! kramer: alright.. how do you like this? (pulls out one of his eyebrows) ya! fdr: i like it a lot. (pulls out one of his eyebrows) ow! (blows it away) kramer: (tears out another eyelash) ah! (blows it away) fdr: (doing the same) oh! (blows it away) [setting: indian airport] notice: "three hours earlier - india" elaine: oh, god, it's so hot! (sniffing) what is that smell? jerry: (joking around) i think it's the stench of death. nina: george, you've been wearing those boots since i met you. you're not gonna wear them to the wedding, are you? george: no (snorts - laughing nervously)... i'm gonna wear black shoes. elaine: (sees her enemy, sue ellen, at the airport) oh boy. there's sue ellen. she didn't want me at this wedding, but here i am with a bunch of my idiot friends! jerry: (giddy) this is gonna be great! sue ellen: (walking up to the group) elaine? oh! oh, i am so happy to see you! elaine: (confused by her reaction) you are? sue ellen: well, of course! no one else was even willing to come to india. i mean, not even pinter's parents - and they're indian. elaine: come on, sue ellen. you don't wear a bra, you're tall... we hate each other! sue ellen: elaine, i know. i know we've had our problems, but.. i want you to be my maid of honor - and my best friend. elaine: (toying with the idea) huh.. alright. i guess. sue ellen: uh, this is my fianc, pinter. (to pinter) say hello. pinter: (walking up to them) hello. elaine: (recognizing him) peter? sue ellen: uh, no. it's pinter. does anyone want to use the bathroom? george: (leading nina out the airport) oh, no. no. we're good. let's get goin'. alright. (almost bumps into jerry) watch it, funny man. (leaves) jerry: elaine, have you noticed george was acting strange the whole flight? elaine: (acting equally strange) no. what? like what? what? strange.. no. i.. jerry: (pulls a small bottle out of his pocket) uh-huh. hey, look what they had on the plane. schnapps. elaine: ooohh. [setting: jerry/kramer's apartment building] notice: "the night before, new york" kramer: come on.. come on. yes! (sees a falling star) there's one! (yelling out) i wish i don't drop dead!! man: (off-screen) hey, shut up up there! kramer: you shut up! man: aw, drop dead! [setting: airplane] notice: "five hours earlier - somewhere between new york & india" george: hello, friend. enjoying the flight? jerry: coach to india - the only way to go. george: (heavily sarcastic. he's angered at jerry) good one. very funny. you're very funny, jerry. that's what i always tell people. (yelling out) jerry seinfeld's a funny guy! jerry: you all right? george: of course i'm all right. i'm here with my girl, nina. and what better way to pass the time than gabbing with my best friend -- with whom there are no secrets. (flashes two intertwined fingers) like this. since the fourth grade. jerry: (joking around) hey, didn't i beat you up in the fourth grade? george: (yelling out to the whole coach) funny guy! (points to jerry) right here! nina: by the way, you never said anything to george about jerry and me, did ya? elaine: oh please.. it's in the vault. george: ho, ha, ho! jerry seinfeld's a funny guy! [setting: the airplane] notice: "one hour earlier" elaine: hey, what time is it? (she looks up and asks as jerry walks in the aisle) jerry: you just asked me two minutes ago. [setting: the airplane] notice: "two minutes ago" elaine: hey, what time is it? jerry: ah, im not wearing a watch. elaine: oh (quietly). is this tooth chipped? (pointing to a tooth) jerry: yeah. howd ya do that? elaine: i have no idea. [setting: the coffee shop] notice: "one day earlier" elaine: watch this. (puts the bottle of schnapps in her mouth, flips her head up, drinking it, then puts it back down with her teeth. she is effected by that last drink) oh.. god.. george: so, jerry and nina, huh? elaine: oh, mm mm.. (scoots up close to george) i'm not gonna tell you, any - more - things. (points at george) george: you already told me everything. elaine: okey-dokey. [setting: newman's apartment] notice: "thirty minutes earlier" kramer: i mean, we had a deal, newman. and you were supposed to give my your birthday wish. and now you've wasted it! newman: (with a gorgeous woman sitting on his lap) did i? woman: newman, i'm bored. newman: aww.. kramer: does your girlfriend have to be here? newman: (suggesting jerry) does yours? jerry: (giving newman a sour look) i'm just hanging out in this hell-hole because of george. kramer: alright, come on, newman. now you gotta help me! what am i gonna do about fdr? woman: why don't you just make another wish? kramer: and how am i gonna do that, toots? woman: what about a shooting star? kramer: (interested) that's perfect. newman: (kissing the woman) beauty .. and brains. (they nuzzle noses) jerry: (disgusted. to the woman) oh, come on. you know he's a postman, don't ya? [setting: jerry's apartment] notice: "fifteen minutes earlier" elaine: heres your plane ticket. jerry: what are you talking about. elaine: sue ellen sends me an invitation, one week before her wedding in india. tst, ill show her... jerry: by flying half way around the world? elaine: spite never sleeps (doing a little dance as she says it jerry: especially when you got a layover in sarajevo. (bosnia herzegovina) george: hey. elaine: (handing george a ticket) here. you're going to india with us tomorrow. george: for how long? elaine: three days. george: great. jerry, i gotta tell you, i had the best time with that nina last night. i - i think i'm in love with her already. you are a great friend. (hugs jerry) a great, great friend. jerry: (trying to change the subject away from nina) hey - hey kramer, what are you doing? you want to borrow something? you want to eat something? come on in! kramer: (shrugging jerry off) nah. elaine: you want to go to india? kramer: i can't. (complaining) i'm gonna drop dead. george: great! (snaps fingers and grabs the extra plane ticket) nina could go, huh? jerry, this is great. you and elaine. me and nina. jerry: h-hey, kramer, wait up. i'll go with you. kramer: i'm goin' to newman's! jerry: great, i love newman! (eagerly following kramer) george: (asking elaine) jerry seem a little weird when i mentioned nina? elaine: nina? nina? no. psshhh.. not weird. no. nina. george: why do you keep saying nina? elaine: i don't know. nina. nina! (feeling she's said to much, she goes to leave) i'm gonna go grab a bite. george: uhh.. i'll- i'll meet you down there. [setting: nyc street] notice: "thirty minutes earlier" kramer: (knocking on a port-a-potty door) come on, lomez! we're gonna be late for the movie. newman: (to his new girlfriend) you see, my dear, all certified mail is registered, but registered mail is not necessarily certified. woman: i could listen to you talk about mail all day. kramer: anything you wish. i'll tell you a little secret about zip codes they're meaningless! (laughs evilly, driving away) kramer: wish?! newman! kramer: lomez, im leavin [setting: newman's apartment] notice: "one day earlier" all: (singing to newman) ..and you smell like one, too. (laughing and clapping) postman: make a wish, newman! we've gotta get back to work in three hours! kramer: newman, wait! newman: (stands up and sputtering loudly) kramer! i'm with people. kramer: yeah, yeah. and thanks for inviting me! newman: i did invite you. your invitation must've gotten ... lost in the mail. kramer: well, newman, i need your wish to protect me from fdr. newman: can't do it. i'm on an unbelievable birthday-wish hot streak! my last five birthday wishes came true. kramer: come on! look, i'll give you my next birthday wish, huh? newman: (negotiating) your next, fifty wishes. kramer: forty-eight. newman: fourty-nine. kramer: done! newman and kramer: (together) sucker.. newman: alright, alright, back, savages. back! i haven't made my wish yet.. [setting: jerry's apartment] notice: "one day earlier" elaine: well, ahh, this mischke mish-mash is just gettin' worse. jerry: uh-huh. elaine: i talked with the groom's parents.. jerry: mm-hmm. mm-hmm.. elaine: ... and it's so obvious that they don't want.. jerry: uh-huh.. elaine: ... me to go. jerry: sure. elaine: so, the only reason ... jerry: uh-huh. elaine: ... she sent me an invitation was that so i'd send her a gift. jerry: uh-huh. nina: (from jerry's room) jerry? jerry: (to elaine) uh, well, you know, a coffee grinder is nice. or a coffee maker. everyone likes coffee. anything to do with coffee. maybe you should go get some coffee. nina: oh. hi. elaine: hi. nina: (getting ready to leave) oh, i should... um... jerry: sure. nina: yeah. elaine: bye-bye. nina: bye. (leaves) elaine: (gesturing back to the bedroom) who else ya got back there? jerry: look, there was an awkward moment in the conversation. it never happened before. elaine: you slept with nina? what are you gonna tell george? jerry: nothing. and neither will you. george can never know about this.. it'll crush him. elaine: uh. alright, alright. i'll put it in the vault. jerry: no good. too many people know the combination. elaine: (confused) what combination? elaine: don't be ridiculous. jerry: oh my god. this drawer is filled with fruit loops! elaine: so what? jerry: and milk. notice: "thirty minutes earlier" kramer: oh, geez.. jerry: (from outside the apartment) hello? [setting: pinter's parent's house - elaine visiting] notice: "one hour earlier" elaine: hi. mr. and mrs. ranawat? zubin: please, call us usha and zubin. elaine: oh. well, usha. zubin: i'm zubin. elaine: (shrugging it off) anyway, your son is marrying my friend, sue ellen mischke. usha: you're not going to the wedding, are you? elaine: well ... usha: don't go. india is a dreadful, dreadful place. zubin: you know, it's the only country that still has the plague? (laughing as he says the line) i mean, the plague! please! usha: here's the registry. send her a gift, and be glad you did not have to go. elaine: (soaking it in) right. don't go. send a gift. i think i understand. zubin: if i had to go to india, i wouldn't go to the bathroom the entire trip. elaine: (leaving) that's fantastic. zubin: and i'm not so crazy about manhattan, either. [setting: jerry's apartment] notice: "thirty minutes earlier" nina: oh, you were going to tell me all about george. jerry: ah, just remember when you see him tomorrow night to tell him that the waiter liked him. nina: really? jerry: believe me. you know, i forgot how much fun it is hanging out with you. nina: i know. you know, we never had a bad conversation. jerry: i know. no awkward pauses. probably the reason we never fooled around.. nina: heh.. yeah. jerry: probably the reason.. [setting: fdr's apartment building] notice: "one day earlier" fdr: are - are you dense? i said i wanted you to drop dead. now.. drop dead! (slams the door in kramer's face *note fdrs apt. #548*) kramer: (walking away) i knew it.. stupid jerry.. notice: "ten minutes earlier" jerry: kramer, i know what i'm talking about. there's no way fdr wants you to drop dead. kramer: but you haven't seen.. jerry: just go back and ask him again. (slams the door on kramer) kramer: yeah.. (heads for fdr's) notice: "ten minutes earlier" fdr: that's right. my birthday wish was that you drop dead. kramer: well, why? fdr: (sinister) i have my reasons. kramer: woah, wait, wait, wait. if you make a birthday wish out loud, it doesn't come true. fdr: that's just a silly superstition. (slams his door on kramer) notice: "ten minutes earlier" kramer: hey, fdr wants me to drop dead. george: fdr? kramer: (to george) yeah, franklin delano romanowski. (resumes telling the story) i go to his birthday part, and just before he blew out his candles, he gives me this look.. george: (guessing the look) stink eye? jerry: (also guessing) crook eye? kramer: evil, eye. jerry: well, everybody's a little cranky on their birthday. george: oh, it's a bad day. uh, you got everyone in your house, you're thinkin', "these are my friends?!" jerry: everyday is my birthday. (sarcastically joking off what george said) kramer: yeah, well, i can't have this hanging over my head. it's bad mojo. elaine: hi. elaine: you're not gonna believe what i got in the mail. invitation to sue ellen mischke's wedding. jerry: (joking about the bra-less wonder) well, at least the wedding gown will give her some support. elaine: not the point. the wedding is in one week. i got this (holds up invitation) today. jerry: so you think it's a non-vite? elaine: it's an un-vitation! (notices george is a few inches higher) hey, are you gettin' taller? george: timberlands. (showing elaine his boots) elaine: ah. (looking at the invitation) hey, look at this. 'pinter ranawat'.. i wonder if he's related to that guy i dated, peter ranawat.. jerry: ah, it's probably like smith over there. george: jerry, would you make the call already? elaine: what call? jerry: he wants me to set him up with this girl, nina stengal. elaine: (remembers jerry's talking about her) oh, the great conversation girl. (somewhat bitter toward jerry) the one you think can replace me? jerry: i was kidding when i said that! george: (to elaine) told me the same thing. jerry: (on the phone) nina, hi. it's jerry. george: you-you sure you never slept with her? (jerry shakes his head 'no') perfect. jerry: (to nina) hey, how 'bout my friend, george? quite a guy, huh? george: (rubbing his stomach) ooh.. something's not sitting right.. [setting: the coffee shop] notice: "one hour earlier" george: i'll have the clams casino. jerry: get outta here. george: (showing jerry the menu) "chef recommends" jerry: hmm.. george: (motioning toward waitress) i think she likes me. jerry: sure. george: so, how come nothing ever happened between you and nina? (getting paranoid) is there a problem with her? is she a man? jerry: are you? george: well, what's the reason? jerry: we were too compatible our conversations were so engrossing. george: how engrossing? jerry: if we ever had a problem with elaine, we could bring in nina and not lose a step. george: wow! heh. (half kidding) you don't, huh, have a replacement lined up for me, do ya? heh he he he he he... jerry: anyway, like i was saying, i couldn't make the transition from conversation to sex. there were no awkward pauses... i need an awkward pause. george: i'm all for awkward pauses. fix me up with her.. wait a minute, nina just saw me in my timberlands! now i have to wear them every time i see her. jerry: why? george: in any other shoe, i lose two inches. i - i can't have a drop down. we were eye to eye, i can't go eye to chin! jerry: so, you're gonna wear 'em no matter what the situation? george: in every situation. no matter how silly i look. (tastes his clams casino) hm.. tastes a little funky. jerry: oh, i'm sure it's fine. [setting: fdr's apartment] notice: "thirty minutes earlier" all: ..to you! man: come on, make a wish! make a wish! kramer: yeah! all: heyyy, yeahhhh (clapping). [setting: nyc street] notice: "ten minutes earlier" george: ah, this is the kind of day that almost makes you feel good to be alive. jerry: almost. (notices his shoes) hey, new timberlands? george: yeah, and a whole new me. i'm up two inches in these babies! jerry: really? george: five' eight. five' seven. nina: jerry? jerry: nina? nina: hi. jerry: it's been years! nina: yeah! jerry: (introducing the two) george, this is nina. george: nice to meet you. nina: nice to meet you, too. [setting: elaine's apartment building] notice: "three hours earlier" elaine: (reading an invitation) india? tst, yeah, right. (sarcastic) i'm goin' to india.. [setting: the coffee shop] notice: "two years earlier" nina: and they call it the world wide web. you can e-mail anyone! jerry: (mesmerized) what are you, a scientist?! nina: ah, i gotta go. (gets up to leave) jerry: ah. nina: it's great talkin' jerry: great talkin' to you. (nina leaves. to himself) what the hell is e-mail? george: how as the date? jerry: pretty good. i think she might be the one. susan: no. george: whooo.. (to a waitress taking orders) ooh.. french fries. susan: ah, george. george: (clearing his throat, he changes his order for susan) baked, uh, potato. susan: uh-huh. george: sorry. susan: yeah, you stuff your sorries in a sack, mister. kramer: hey, hey. yeah, check it out. it's packin' tight! (puts the snowball on the table, then drips water from jerry's cup onto it) jerry: what are you bringing snowballs in here for? kramer: oh, i need some water. ice it up nice and hard ... and when you throw it - pop! oh look, (fdr is at the cash register, pays and leaves monks) there's my friend, fdr. i'm gonna nail him in the back of the head. it's gonna be great! (rushes out of monks to peg his friend with the snowball) jerry: hi, elaine. george: hey! elaine: (turning around and leaving with pinter) hey, let's go someplace else, okay, peter? [setting: jerry's new apartment] notice: "eleven years earlier" kramer: oh, hey, how you doing? jerry: oh, hi. i-i'm jerry seinfeld. i'm movin' in. i saw your name on the buzzer - you must be kessler. kramer: uh, no. actually, it's kramer. jerry: oh. kramer: uh, you need any help, or..? jerry: no, thanks. but i ordered a pizza. you want some of it? kramer: ah, no, no, no. i-i couldn't impose. jerry: why not? we're neighbors. what's mine is yours. (and with that, jerry made the most fatal mistake of his life) kramer: (quietly) ohh (eyeing jerry's empty apartment) really? the definition of “sari” or “saree” is: nan sari / saree: a long piece of cotton or silk cloth, constituting the principal garment of hindu women, worn round the waist, one end falling to the feet, and the other crossed over the bosom and shoulder, and sometimes over the head. jerry: (tapping the spatula while waiting for waffles to be done) any second now. light is on! melissa, waffles are ready. melissa: (appearing in the kitchen stark naked) oh, fantastic! i'm starving. jerry: (looking at her) how about that. melissa: (eating the waffles) mmm-hmm. george: she ate breakfast naked? jerry: she didn't even want a napkin. george: i've had bedroom naked, i've had walk-to-the-bathroom naked... i have never had living-room naked. jerry: oh, it's a scene. george: it's like you're livin' in the playboy mansion! did she, uh, did she frolic? jerry: i don't really have enough room. george: (seeing elaine and puddy come into monk's) yeah. hey, lainie, puddy. elaine: hey! puddy: hi. jerry: hey. puddy: (heading towards the bathroom) i got to make a pit stop. elaine: (sitting down in the booth) 'kay. jerry: back together? elaine: his apartment was being fumigated, so we thought we'd give it another shot. jerry: ah... elaine: so guess who called me last night? jason hanke. george: 'stanky hanke'? what did he want? elaine: he called to apologize for standing me up five years ago. jerry: why now? elaine: a.a. it's one of the twelve steps. step number nine is you have to apologize to anyone you've ever wronged. george: ho ho ho ho! i can't wait for hanke to come crawling back to me. jerry: still with the neck hole? george: still upset. very upset. elaine: what neck hole? george: remember that new year's party he threw a few years ago? he had that very drafty apartment, you know, i think on ninth avenue. elaine, becoming board: faster. george: i asked if i could borrow a sweater. jerry: a cashmere sweater. george: i said preferably cashmere, for warmth. so in front of the whole party, he says, 'no. i don't want you stretching out the neck hole.' elaine: ha ha ha ha ha ha ha! george: oh, yeah, sure, laugh it up. everybody else did! elaine: well, it's funny. i mean, you have a big head. or is it 'cause of your neck? jerry: no, i think the head does most of the stretching. george: regardless. i had to walk around for the rest of the party in some cheap metlife windbreaker. now, it is payback time. elaine: i really think it's the size of your neck. george: it's my head! elaine: ha ha ha ha ha ha ha! elaine: hey. peggy: hey. elaine: isn't this great? with those nerds in accounting moved, you and i are the only ones who use this bathroom. peggy: (somewhat sarcastically) yeah. great. kramer: you went to the coffee shop without me? i told ya, i just wanted to hop in the shower. jerry: that was an hour ago. what were you doing in there? kramer: showering. how long does it take you? jerry: ten minutes. kramer: (seeing elaine come into jerry's apartment) ten minutes? that's kooky talk. hey elaine, how long do you spend in the shower? elaine: ten minutes. kramer: let me smell you. elaine: all right. whiff away. kramer: (after delicately sniffing elaine) uh... that's not bad at all. elaine: (holding kramer off from getting another whiff) hup! that's it. kramer: (backing off) ok. elaine: so get this. i'm in the bathroom at work today, and i see peggy using a seat protector. jerry: so? elaine: so... we're the only women on the floor. i mean, we're like roommates. would-would you use a seat protector if you had a roommate? jerry: (seeing kramer struggle to open a soda, spilling it all over) i think the damage is probably already done. (interrupting kramer's inadequate attempt to clean up the soda) all right! i'll get that. well, maybe she just practices good hygiene. elaine: (eyeing jerry meticulously cleaning up the soda) yeah, you're probably right. she's probably one of those neurotic clean freaks. jerry: mmm. kramer: well, here's my shower routine. maybe i can make some changes. get wash cloth mittens and maybe some liquid soap, and just... -pop- focus! jerry: (playing scrabble with his naked girlfriend) zephyr? that is not a word. melissa: do you challenge? jerry: no, i do not challenge. melissa: 66 points. ha ha. jerry: i'd accuse you of cheating, but i don't know where you'd hide the tiles. melissa: you want some more ice tea? jerry: sure. melissa: (coughing loudly, while jerry's expression turns to disgust) wrong pipe. george: so she coughed. jerry: coughing... naked... it's a turn-off, man. george: everything goes with naked. jerry: when you cough, there are thousands of unseen muscles that suddenly spring into action. it's like watching that fat guy catch a cannonball in his stomach in slow motion. george: oh, you spoiled, spoiled man. do you now how much mental energy i expend just trying to picture women naked? jerry: but the thing you don't realize is that there's good naked and bad naked. naked hair brushing, good; naked crouching, bad. hey, there's hanke. george: all right. it's grovel time. hanke: hey, george. jerry. listen, i just got sober, so i've been going through the twelve steps. george: what are you up to now, uh, step nine? hanke: yeah. making amends. george: important step. maybe the most important. hanke: anyway, uh, jerry, you know, this may sound dumb, but, you know, when we first met i thought your name was gary. and, i think i may even have called you gary a couple of times, and... i don't know if you noticed, but i always felt bad about it, so, i'm sorry. jerry: thank you. i did notice, and i appreciate you rectifying it. hanke: (eyeing george, who's looking expectedly up at him) great. great. well, i'll see you guys later. kramer: (enters) well, i just got out of a 27-minute shower. i made some good cuts, and i didn't lose anything i needed. yeah, i think what i kept is even stronger now. jerry: (pointing to kramer's hair) you got some suds over here. kramer: (noticing suds all over his clothes and body) wha...? oh, man! geez! look at that! i'm all lathery. jerry, you got to show me what i'm doing wrong. jerry: oh, come on! kramer: no, i mean it, man. i'm lost! jerry: you promise you'll never come in here again? kramer: (chuckling) oh, jerry, you know i can't do that. jerry: (standing in the bathtub) now my sense of it is that you're probably wasting time working piecemeal, first cleaning one area, then another. kramer: well, that's how cats do it. jerry: but, when you have a faucet instead of a tongue, you want to use gravity. kramer: ok. let's turn the water on now. jerry: no, i told you, it's just a dry run. george: (entering jerry's bathroom) well, hanke's moved on to step ten. he was spotted taking personal inventory. jerry: that's step ten? george: all he has to do now is count his blessings, say a prayer, and he's done. do you believe this? kramer: come on, jerry. how about a-a baggy swimsuit? jerry: you're not gettin' any skin, kramer. kramer: well, this has all been one big tease! elaine: (moving peggy's water to make room for paper on the desk) these proofs look pretty good. oh. can i move this? yup. i think this will work. peggy: (having seen elaine touch her nearly full water bottle) i'm... gonna get another bottle of water. walter: (taking a final swig from his own water bottle) here, take mine. there's a little left. peggy: (gulping down walter's water) oh, thanks, walter. ahh! hanke: (talking with two men in monk's) guys, there's no doubt that the pay is good. but i don't just know if i see myself working with ice cream. man #1: you get pretty buff forearms. hanke: i don't know if i'm into that. george: (entering monk's) oh, hello, hanke, others. hanke: george. george: you know, jason, i, uh, i couldn't help notice, i... i didn't get my apology. hanke: apology? for what? george: a drafty apartment? a... sweaterless friend? a ball-game giveaway metlife windbreaker? hanke: george, come on, not that neck hole thing. george: yeah, the neck hole thing, and i would appreciate it if you would say you're sorry. hanke: no way, you would've completely stretched it out. george: you're an alcoholic! you have to apologize. step nine! step nine. hanke: all right, george, all right. i'm sorry. i'm very, very sorry. i'm so sorry that i didn't want your rather bulbous head struggling to find its way through the normal-size neck hole of my finely knit sweater. kramer: (taking notes on showering men at the ymca) now see, that's smart. constant motion. wow. man in shower: (seeing kramer staring at the showering man) hey! kramer: oh, yeah, yeah, i-i'm watching you, too. but this guy's really showing me something! kramer: (walking into jerry's apartment with a fresh black eye) you got a steak? jerry: what happened to you? kramer: ah, people in this city are crazy. jerry: (giving him a steak from the fridge) here ya go. kramer: (applying the steak to his eye) thanks, buddy. oh... yes! hey, you got any a1, 'cause i'm cooking a steak. jerry: what? kramer: yeah, a different one. jerry: (closing the door on him) oh! kramer: jerry! melissa: (wheeling out jerry's bicycle) ok, jerry. i fixed that bike. jerry: oh. that wasn't really necessary. i don't ride it. it's just for show. melissa: (crouching down next to the bike) i should really clean those bearings. hold this. look at all that gunk. jerry: please don't crouch. melissa: ouch! caught my skin. jerry: oh, that's bad. especially that area. melissa: you got anything to snack on? jerry: uhh... melissa: (grabbing the pickle jar and straining to open it) oh, pickles! unnhhhh! it's a tough one. jerry: look, please stop! let me help you with that! melissa: (finally opening the jar) unnnnh! oooh. that's gonna leave a welt. look at that. jerry: (leaving the room) i can't. i can't look anymore. i-i-i've seen too much. elaine: peggy, we've got to talk. what is it about me that you find so offensive? peggy: you seem to be with a lot of men. elaine: what!? i happen to have a very steady boyfriend. you know, i mean, we broke up a few times and there has been an occasional guy here or... or there, but, wh-why is this your business? peggy: it's not. good day. elaine: (leaving the room after rubbing peggy's keyboard on her butt, sticking the stapler in her armpit, and coughing on her doorknob) oh. all right. you think i've got germs? i'll give you some germs. how about some for your keyboard, huh? huh? oooh, how about for your stapler. hmmm? that's good, isn't it? you have a happy and a healthy. jerry: well, technically he did apologize. george: jerry, i felt like a straight man in some horrible sketch. he was riffing! riffing! on my pain! jerry: so now you want an apology for the apology, plus the original apology? george: that's right. i'm two in the hole! jerry: well, i hit the wall yesterday with lady godiva. she did a full body flex on a pickle jar. george: did you explain to her about the good naked and the bad naked? jerry: where am i gonna get a fat guy and a cannonball? george: well... what if you showed up bad naked, huh? you still got that belt sander? jerry: yeah. george: (going into the bathroom) well, you on all fours, that thing vibratin', kickin' up sawdust, ho ho! she'll get the picture! jerry: (answering the ringing phone) hello? kramer: hey, jerry, guess where i'm calling from! jerry: world war i plane? kramer: no, i'm in my shower. well, you know, i'm trying to get out of the shower sooner, and then i ask myself, 'why?' i mean this is where i want to be. so i got a waterproof phone, i shaved, i brushed my teeth, and now i ordered a pair of chinos from j. crew. jerry: when are ya gettin' out? kramer: i'm not! i'll see ya later, buddy. peterman: bad news, people. peggy is home sick. elaine: oh, please. peterman: she's stuffed up, achy, and suffering from intense malaise. elaine: oh, come on, we all have intense malaise. right? peterman: i just spoke with her, elaine. she's in bed. elaine: yeah, let me tell you something this is all in her mind, ok? she is insane. she thinks i made her sick because i coughed on her doorknob, rubbed her stapler in my armpit, and put her keyboard on my butt. yeah, she's a wacko. george: so you're jason hanke's supervisor? sponsor: sponsor. george: whatever. listen, i'm very concerned about this guy. sponsor: he's doing very well. he's already on to step ten. george: yeah, well when you don't actually do the steps, you can go through them pretty quick. you can get through six a day. sponsor: is there some unresolved issue between you and jason? george: i don't know. a little thing called step nine? instead of an apology, he was beboppin' and scattin' all over me. sponsor: i'm not sure what you want me to do. george: well, aren't you the boss of him? you shouldn't let him move up! when i was in the cub scouts, i got stuck on weebolos for three years 'cause i kept losing the pinewood derby. sponsor: you're quite upset, george. george: well, i think you should drop him down to step two. sponsor: admit there's a higher power? george: yeah, let him chew on that for a while. sponer: you know george, i think i can help you. we're having a meeting tomorrow. why don't you just come by? george: all right. that's more like it. thank you very much. (giving the sponsor the 'be strong' hand clench) by the way, my uncle was an alcoholic, so... kramer: (on the phone in the shower) lomez, you're not listenin'. jerry likes the naked, just some of the things she does when she's naked. calm down, i'm on your side. geez. hey, hold on a second. i got a clog, i'll call ya back. melissa: (naked on the couch) what are you doing? jerry: (naked, carrying a belt sander) i found a rough spot on the kitchen floor, i thought i'd polish it up with this belt sander i have here. melissa: no, not that. why are you naked? jerry: i thought naked is good. melissa: (eyeing him) this isn't good naked. sponser: george, here, have a seat. george: (sitting down) where's hanke? sponser: (motioning to the leader) shhhhh. leader: ok, let's get started. welcome to rage-aholics anonymous. george: what? rate-aholics? sponser: george, this can help you. george: hey, i am not here for rage. i'm here for revenge. leader: excuse me. we have a 'no yelling' policy at these meetings. george: excuse me. am i talking to you, pinhead? am i?! leader: please don't call me 'pinhead'. george: i'm losin' it! jerry: he took you to rage-aholics? why? george: probably because this whole universe is against me! jerry: you've got a little rage. george: i know. and now they want me to bottle it up. it makes me so mad! jerry: by the way, my bad naked demo didn't quite work. george: this bread has nuts in it! jerry: (seeing elaine enter monk's) oh, great. elaine. what is wrong with my body? elaine: chicken wing shoulder blades. jerry: that's it? elaine: no, but that's one problem. why? jerry: well, i was walking around naked in front of melissa the other day-- elaine: whoa! walking around naked? ahh... that is not a good look for a man. george: why not? it's a good look for a woman. elaine: well, the female body is a... work of art. the male body is utilitarian, it's for gettin' around, like a jeep. jerry: so you don't think it's attractive? elaine: it's hideous. the hair, the... the lumpiness. it's simian. george: well, some women like it. elaine: hmm. sickies. kramer: (in the shower, reading an instruction manual) installing your clarkman garbage disposal. dismantle latch hasp beneath main drainage lot. oh, come on, clarkman. puddy: (staring into space, picks up the phone) puddy. kramer: is, uh, david puddy there? puddy: this is puddy. kramer: well, this is kramer. puddy: i know. kramer: um, listen, you're a mechanic. could you help me install a garbage disposal? puddy: well, it's a big job. you've got to dismantle the latch hasp from the auxiliary drainage line. kramer: no. it says 'main line'. puddy: it's a misprint. what do you got, a clarkman? kramer: yeah. puddy: (seeing elaine come in) hey, man, i'll call you back. i'll talk you through it. kramer: oh, ok. well, thanks, buddy. elaine: hey, puddy. puddy: hey, babe, your boss called. you owe five bucks for a balloon bouquet. yeah, he says you can just give it to him tomorrow when you see him. elaine: balloon bouquet? for who? puddy: peggy took a turn for the worst. elaine: peggy. oh, great. i suppose she's still blaming me? puddy: that's what he said. elaine: i don't believe this woman. puddy: talk to me, babe. elaine: she's this crazy woman who is convinced that my germs make her sick. puddy: oh, germ-o-phobe. i know what that's about. elaine: huh? puddy: (showing her his necklace) i'm a recovering germ-o-phobe. ten years. elaine: what is this symbol? puddy: it's a germ. peggy: elaine, it was very nice of you to bring the man you're currently sleeping with over to talk to me, but i assure you, i don't have any problem with germs. puddy: don't you? elaine. peggy: (flinching away) please! puddy: i know it looks bleak. i've been there. ten years ago waking up in bed next to a woman like this would've sent me running for the phisohex. peggy: really? puddy: i still have trouble looking at those disgusting old bedroom slippers she slogs around in. elaine: hey, i've had those since college. they're bunnies. puddy: they're bacteria traps. peggy: so you... just learned to live with it? puddy: for the most part. elaine: ok, we're broken up for the rest of the day. jerry: so i'm glad we had a talk and worked this out. don't you feel this is better? melissa: this is nice. jerry: yes, clothes. this is normal. melissa: hey, what are you doing tomorrow? i was thinking that we could go down... melissa: jerry? jerry, are you listening to me? jerry: oh... yeah. what? i'm sorry. melissa: i wanted to know what you're doing tomorrow. jerry: oh, maybe a haircut, and, i don't know, maybe a... kramer: (in the shower, on the phone with jerry) so you broke up? jerry: we couldn't carry on a conversation. i kept trying to picture her naked, she kept trying to not picture me naked. kramer: hang on. jerry: so what are you up to? kramer: oh, just cooking up a little thank you for puddy. hey, how do you make those radish roses? jerry: insert a knife into the center and twist. then, to make it bloom, soak it in water for thirty to forty minutes. kramer: no problem there. hanke: george. thanks for coming down to talk to me. i wanted to see you right away, but my hours here aren't very flexible. i just started yesterday. george: well, i'm here. what is it? hanke: well, i talked to my sponsor, and, uh, i've thought it over, and, you know, my apology at the coffee shop was sarcastic, and rude, and you deserve much better. george: (ready to leave) well, thank you. hanke: you're welcome. kid: (entering the store) can i get a triple minute man mint? hanke: waffle or sugar cone? george: uh, excuse me, uh, um, jason. i don't want to get into a big thing here, but... i'm not sure if, technically, what you just said was actually an apology. hanke: what? kid: can you get on that cone? hanke: would you hang on just a second, son? george, what are you talking about? george: well, it's just, all you said was 'your welcome', which is nice. it's very nice. but... i feel i gotta get the apology. kid: is there anybody else here but you? hanke: i'm alone, and it's my second day. you know, i don't even think we have that flavor so... george, really, enough, ok? you know, i-i admitted i was wrong, so what more do you want from me? george: i would like an apology. hanke: all right, look, you know-- kid #2: (entering the store) did you try it? kid: no, this guy doesn't know what he's doing. hanke: oh, yes i do. yes, i do. ok? i'm interacting with someone here, if you can understand that. now, i'm sorry. george: baah! there it is! you just said it! that's what i want! now say it again, and tell it to me. hanke: i'm not saying anything to you. i'm not sorry. i was never sorry. it was cashmere. i hate step nine! where's that rum raisin? where is it? can't find anything. i need a drink. ah, daquiri ice. here we go. what are you looking at? get out! come on, can't you see we're closed?! get out! elaine: (eating dinner with kramer, elaine, and puddy) mmm. this food is fantastic, peggy and what a pretty radish rose, huh? kramer: well, thank you. elaine: here's to peggy, on her first week of being germ-free, free. kramer: yeah. and here's to david puddy for helping me install a much needed and much appreciated garbage disposal in my bathtub. peggy: you have a garbage disposal in your bathtub? kramer: oh, yeah, and i use it all the time. yeah, i made this whole meal in there. elaine: this food was in the shower with you? kramer: mm-hmm. i prepared it as i bathed. puddy: oh, germs. germs. germs! george: excuse me. is this, uh, rage-aholics? puddy: (waiting with elaine and peggy) no, germ-o-phobes. george: thanks. what are you guys doin' here? elaine: kramer. george: right. hanke: (speaking in front of other rage-aholics) hi, i'm, uh, jason. i'm a rage-aholic. audience: hi, jason. hanke: uh, this is my first meeting. george: step-skipper. that man is a step-skipper! he skips step nine! hanke: please. step nine. george: that's right! he never apologized to me for saying that i would stretch out the neck hole of his sweater. george: it wasn't funny. hanke: it was a very nice sweater. take a look at his neck, not to mention the melon sitting on top of it. i don't know if i'd trust him with a v-neck. george: he's beboppin' and scattin', and i'm losin' it! [setting: tim whatley's apartment] elaine: so.. whatley's still jewish, huh? jerry: oh, sure. with out the parents, it's a breeze. tim: hey! happy chanukah! jerry: hey, tim. great party. tim: (suggesting a kiss to elaine) eh? elaine: (shrugging it off) eh. tim: (accepting) oh. (turns to george) hey, george, thanks again for getting me those yankee tickets. george: oh, yeah. still in good with the ground crew. (laghs) tim: (notices a woman walking by) oh, hey, listen, i'd better circulate.. (moving over to the woman) happy chanukah, tiffany! (they both move off camera) elaine: this place is like studio 54 with a menorah. george: i'm gonna get some more of these kosher cocktail franks.. (leaves) elaine: oh.. (sees a guy looking at her) i got denim vest checking me out. (laughs) fake phone number's coming out tonight. jerry: you have a standard fake? elaine: mm-hmm. jerry: (notices an attractive woman walking by, starts to follow her) that's neat. elaine: (holds onto jerry's arm) no, please! denim vest! he's smoothing it! jerry! god! (jerry excapes elaine's grasp, moves over to the woman. the man wearing a denim vest moves over to elaine.) denim vest: hi! jerry: hi, i'm jerry. woman: hi. jerry you might not know it to look at me, but i can run really, really fast. elaine: nice vest. i like the.. big metal buttons denim vest: they're snaps. listen, maybe we should, uh, go out some time? elaine: why don't i give you my phone number? [setting: coffee shop] george: hey. jerry: hey! how'd it go with the cocktail franks? george: great! i ate the entire platter! had to call in sick today. jerry: didn't you call in sick yesterday? george: hey, i work for kruger industrial smoothing "we don't care, and it shows." jerry: (notices george brought hhis mail) you're gonna open your mail here? george: hey, at least i'm bringing something to this. (starts flipping through envelopes, reads one ) "have you seen me?" (flicks it aside) nope. (looks at next envelope) woah, something from whatley. jerry: see? you give, and you get. george: (reading the card from whatley) "this holiday season a donation has been made in your name to the children's alliance."? jerry: oh, that's nice. george: i got him yankee's tickets! he got me a piece of paper saying "i've given your gift to someone else!" jerry: to a children's charity! george: don't you see how wrong that is?! where's your christmas spirit? and eye for an eye! elaine: hey! jerry: hey. elaine: (to waitress) oh, nothing for me. (waitress leaves) i'm going to "atomic sub" later. jerry: "atomic sub"? why are you eating there? elaine: i got a card, and they stamp it every time i buy a sub. 24 stamps, and i become a submarine (makes a gesture) captain. jerry: what does that mean? elaine: (embarrassed) free sub. elaine: what? george: nothing. it's a card from my dad. elaine: what is it? (grabs the card from george, he tries to stop her, but fails. she reads it out loud.) "dear son, happy festivus." what is festivus? george: it's nothing, stop it.. jerry: when george was growing up.. george: (interrupting) jerry, no! jerry: his father.. george: no! jerry: hated all the commercial and religious aspects of christmas, so he made up his own holiday. elaine: ohhhh.. and another piece of the puzzle falls into place. george: (pleading) alright.. jerry: and instead of a tree, didn't your father put up an aluminum pole? george: jerry! stop it! jerry: and weren't there a feats of strength that always ended up with you crying? george: i can't take it anymore! i'm going to work! are you happy now?! (gathers his things, and runs out of the coffee shop. elaine and jerry laugh hysterically) [setting: jerry's apartment] elaine: oh, i can't believe it! i've lost my "atomic sub" card!.. oh no! i bet i wrote that fake number on the back of it when i gave it to denim vest! jerry: so? elaine: i've eaten 23 bad subs, i just need 1 more! it's like a long, bad movie, but you want to see the end of it! jerry: no, you walk out. elaine: alright, then, it's like a boring book, but you gotta finish it. jerry: no, you wait for the movie! elaine: (irritated, and through clinched teeth) i want that free sub. jerry: you don't need the card. high-end hoagie outfit like that, it's all computerized! (snaps) they're cloning sheep now. kramer: (correcting) no, they're not cloning sheep. it's the same sheep! i saw harry blackstone do that trick with two goats and a handkerchief on the old dean martin show! jerry: so, why don't you just try your blow-off number and see if he's called it? elaine: that's a good idea. kramer: (answering phone) yeah, go! wha.. really? yeah, ok. yeah! bye. (hangs up) great news! yeah, the strike has been settled. i'm going back to work. jerry: what strike? kramer: yeah, h&h bagels. that's where i worked. jerry: you? elaine: worked? jerry: bagels? kramer: yeah. look, see. i still have my business card. (pulls it out, hands it to elaine) yeah, we've been on strike for 12 years. elaine: oh, i remember seeing those guys picketing out there, but i haven't seen them in a long time. kramer: yeah, well, h&h wouldn't let us use their bath room while we were picketing. it put a cramp on our solidarity. elaine: what were your.. demands? kramer: yeah, 5.35 an hour. and that's what they're paying now. elaine: i believe that's the new minimum wage. kramer: now you know who to thank for that!.. alright, i've got to go. (heads for the door) jerry: why didn't you ever mention this? kramer: jerry, i didn't want you to know i was out of work. it's embarrassing! (leaves) (scene ends) [setting: h&h bagel shop] kramer: all right, everybody! i'm back! manager: who are you? kramer: cosmo kramer.. strikes over. manager: oh yeah! kramer. kramer: huh.. wha- didn't any of the guys come back? manager: no, i"m sure they all got jobs.. like, ten years ago. kramer: oh, man. makes you wonder what it was all for.. manager: i could use someone for the holidays.. kramer: alright! toss me an apron, let's bagel! (takes off his coat, puts it in the display case, then turns to see a plate full of bagels.) what are those? manager: those are rasin bagels. kramer: (picks one up, he's mesmerized) i never thought i'd live to see that.. [setting: horse track betting] elaine: so, anyway, i've been giving out your number as my standard fake. bookie: so. you're elaine benes. we've been getting calls fro you for 5 years. elaine: so, listen, when this guy calls, if you could just give him my real number.. bookie: (interrupting) hey, charlie! guess who's here. elaine benes. charlie: elaine benes?! bookie: you make a lot of man friends. you know who's a man? charlie here, he's a man. you know who else? me. i'm a man. charlie: (faintly) i'm a man. elaine: ohh.. my.. bookie: i'll have this best guy call your real number. you just, uh, give it to me. and that way, i'll have it. (slides a pad over to elaine so she can write it down) elaine: my number? ohh.. (looks at kramer's business card) okay.. uh, well, there you go. (writes h&h's number down) and, uh, tell you what.. (looks at the board in the back) put a sawbuck on captain nemo in the third at belmont. [setting: classy restaurant] tim: hey, jerry. jerry: hey, tim. tim: what's up? jerry: actually, i'm having dinner with a girl i met at your party. tim: mazel tov. gwen: jerry.. hi. jerry: gwen? gwen: yeah. jerry: (not willing to believe how much uglier she is) really? gwen: yeah! come on, our table is ready. [setting: jerry's apartment] george: so, attractive one day - not attractive the next? jerry: have you come across this? george: yes, i am familiar with this syndrome -- she's a two-face. jerry: (relating) like the batman villain? george: (annoyed) if that helps you.. jerry: so, if i ask her out again - i don't know who's showing up the good, the bad, or the ugly. george: (identifying what jerry said) clint eastwood! jerry: yeah. george: hey, check this out. i gotta give out christmas presents to everyone down at kruger, so i'm pulling a whatley. (give a christmas card to jerry) jerry: (reading it) "a donation has been made in your name to the human fund." - what is that? george: (with pride) made it up. jerry: (continuing reading) "the human fund. money for people." george: what do you think? jerry: it has a certain understated stupidity. george: (once again, identifying) the outlaw of josey whales! jerry: ..yeah. kramer: ah, gentlemen.. bagels on the house! jerry: how was your first day? kramer: oh, fantastic! (jerry and george both pick out a bagel) it felt so good to get my hands back in taht dough. jerry: your hands were in the dough? kramer: no, i didn't make these bagels. (jerry and george both take a bite) yeah, they're day-olds. the homeless won't even touch them. (jerry and george stop eating) oh, we try to fool them by putting a few fresh ones on top, but they dig.. they, they test. george: alright. uh, well, i'm out of here. (gets up to leave) jerry: happy festivus! kramer: what's festivus? jerry: when george was growing up.. george: (interrupting) no! jerry: his father.. george: stop it! it's nothing. it's a stupid holiday my father invented. it doesn't exist! elaine: happy festivus, georgie. kramer: frank invented a holiday? he's so prolific! elaine: kramer, listen, i got a little phone relay going, so, if a guy calls h&h and he's looking for me, you take a message. jerry: you're still trying to gget that free sub? elaine: hey! i have spent a lot of time, and i have eaten a lot of crap to get to where i am today. and i am not throwing it all away now. jerry: is there a captain's hat involved in this? elaine: maybe. [setting: h&h bagel shop] frank: kramer, i got your message. i haven't celebrated festivus in years! what is your interest? kramer: well, just tell me everything, huh? frank: many christmases ago, i went to buy a doll for my son. i reach for the last one they had - but so did another man. as i rained blows opon him, i realized there had to be another way! kramer: what happened to the doll? frank: it was destroyed. but out of that, a new holiday was born. "a festivus for the rest of us!" kramer: that musta been some kind of doll. frank: she was. [setting: kruger office building] george: merry christmas, merry christmas! (co-worker gives a gift to george) oh, sandy! here is a little something for you.. (hands her a card) sandy: (after reading the cheap gift, she's suddenly unimpressed) ..oh.. thanks. (walks off) george: phil, i loved those cigars! incoming! (flicks his card tward phil) phil: ow! george: aw, mr. kruger, sir. merry christmas! (hands him a card) kruger: not if you could see our books.. what's this? george: the human fund. kruger: whatever. (walks off) george: exactly. (sees an off-camera co-worker) erica! [setting: h&h bagel shop] frank: and at the festivus dinner, you gather your family around, and you tell them all the ways they have disappointed you over the past year. kramer: is there a tree? frank: no. instead, there's a pole. it requires not decoration. i find tinsel distracting. kramer: frank, this new holiday of yours is scratching me right where i itch. frank: let's do it then! festivus is back! i'll get the pole out of the crawl space. (turns to leave, meets up with elaine) elaine: hello, frank. frank: hello, woman. (leaves) elaine: kramer! kramer.. any word from the vest? kramer: no. (to manager of h&h) ah, listen, harry, i need the 23rd off. manager: hey! i hired you to work during the holidays. this is the holidays. kramer: but it's festivus. manager: what? kramer: you know you're infringing on my right to celebrate new holidays.. manager: that's not a right. kramer: well, it's going to be! because i'm going back on strike. come on elaine. (takes of his apron, and goes for his coat) it's a walk out! elaine: no, i got to stay here and wait for the call. kramer: what? you're siding with management?! elaine: no, i just.. kramer: (interrupting) scab! scab! (pointing at elaine) scab! [setting: taxi cab] gwen: hey. jerry: boy, am i glad to see you. gwen: you were expecting someone else? jerry: you never know. gwen: (to driver) you know, you might want to take the tunnel. jerry: so, uh, what do you feel like eating? chinese or italian? gwen: i can go either way. jerry: (shocked) you're telling me. [setting: the coffee shop] george: so, she was switching? back and forth? jerry: actually, the only place she always looked good was in that back booth over there. george: so, just bring her here. this is all you really need. jerry: i can't just keep bringing her to the coffee shop. i mean, what if things, you know, progress? george: lights out. jerry: alright, i'll give it a shot! i do really like this coffee shop. nice cuff links, by the way. george: (pointing to them) office christmas gift. i tell you, this human fund is a gold mine! jerry: that's not a french cuff shirt, you know. george: i know. i cut the button off and poked a hole with a letter opener. jerry: oh, that's classy. kramer: well, happy festivus. george: what is that? is taht the pole?! frank: george, festivus is your heritage - it's part of who you are. george: (sulking) that's why i hate it. kramer: there's a big dinner tuesday night at frank's house - everyone's invited. frank: george, you're forgetting how much festivus has meant to us all. i brought one of the casette tapes. (franks pushes play, george as a child celebrating festivus is heard) frank: read that poem. george: (complaining) i can't read it. i need my glasses! frank: you don't need glasses, you're just weak! you're weak! estelle: leave him alone! frank: alright, george. it's time for the feats of strength. george: no! no! turn it off! no feats of strength! (gets up and starts running out of the coffee shop) i hate festivus! frank: we had some good times. gwen: hey. jerry: i there. this is kramer, and frank. gwen: hi. kramer: (shocked at her ugliness, he stammers) hello. gwen: so, you ready to go? jerry: uh, why don't we stay here? the back booth just opened up. (they both walk to the booth and sit down. suddenly, gwen is attractive) now this is a good looking booth. [setting: h&h bagel shop] kramer: protect festivus! hey, no bagels, no bagels, no bagels, (continues to chant) manager: (to a waiting elaine) lady, if you want a sandwich, i'll make you a sandwich. elaine: (whining) i want the one that i earned. (phone rings) i'll get it. i'll get it! (into phone) h&h, and elaine. kramer: (from a phone booth right outside the store) elaine, you should get out of there. i sabotaged the bagel machine last night. it's going down. elaine: what did you do? kramer: you've been warned. elaine: oh, hi! (waves at him) worker: hey, the steam valve's broke. manager: can we still make bagels? worker: sure. it's just a little steamy. kramer: hey! how do you like your bagels now?! [setting: kruger building] kruger: george, i got something for you. (pulls a check from his pocket) i'm suppose to find a charity and throw some of the company's money at it. they all seem the same to me, so, what's the difference? (hands the check to george) george: 20 thousand dollars? kruger: made out to the human fund. (tries to enter his office, but it's locked) oh, damn. i've locked myself out of my office again. oh well. i'm going home. [setting: coffee shop] gwen: jerry, how many times do we have to come to this.. place? jerry: why? it's our place. gwen: i just found a rubber band in my soup. jerry: oh.. i know who's cooking today! george: hey! surprise, surprise! jerry: hey, georgie! gwen: i think i'm just gonna go. jerry: i'll be here. george: (sees gwen's meal) hey, soup. jerry: she didn't touch it. george: ohh.. paco! (flicks rubber band tward the kitchen) hey, take a look at this. (hands jerry kruger's check) jerry: 20 thousand dollars from kruger? you're not keeping this. george: i don't know. jerry: excuse me? george: i've been doing a lot of thinking. this might be my chance to start giving something back. jerry: you want to give something back? start with the 20 thousand dollars. george: i'm serious. jerry: you're going to start your own charity? george: i think i could be a philanthropist. a kick ass philanthropist! i would have all this money, and people would love me. then they would come to me.. and beg! and if i felt like it, i would help them out. and then they would owe me big time! (thinking to himself) .. first thing i'm gonna need is a driver.. [setting: outside h&h bagels] elaine: kramer, the vest just called. kramer: (shocked by the way elaine looks) yama - hama! it's fright night! elaine: oh, yeah, i got a little steam bath. listen, in 10 minutes, i'm gonna have my hands on that "atomic sub" card. kramer: and? elaine: (embarrassed) free sub. (starts to leave) i'll see ya. kramer: yeah. gwen: kramer, hi! kramer: oh, hello. gwen: it's gwen.. we met .. at the coffee shop. kramer: ah-huh. gwen: i'm dating your friend, jerry.. kramer: ahh.. i don't know who you really are, but i've seen jerry's girlfriend, and she's not you. you're much better looking - and like, a foot taller. gwen: that's why we're always hiding in that coffee shop! he's afraid of getting caught. kramer: oh, he's a tomcat. elaine: steve. denim vest: hmm? elaine: it's elaine. denim vest: from tim whatley's party? elaine: yeah. denim vest: you look.. different. elaine: i see you're still sticking with the denim. (he's wearing a denim coat) do you have that card that i gave you? denim vest: well, i had it back at my place, but i can't go there now.. i'll give it to you later, or something. elaine: no, no, no. you give me your number. denim vest: okay. sure. (pulls out a pad, and starts writing a number down) do you have the mumps? elaine: no. denim vest: typhoid? elaine: no. denim vest: (hands her the paper, and runs off) yama - hama! elaine: a fake number! blimey! [setting: kruger's office] kruger: george, we have a problem. there's a memo, here, from accounting telling me there's no such thing as the human fund. george: well, there could be. kruger: but there isn't. george: well, i - i could, uh, i could give the money back. here. (holds it out) kruger: george, i don't get it. if there's no human fund, those donation cards were fake. you better have a damn good reason why you gave me a fake christmas gift. george: well, sir, i - i gave out the fake card, because, um, i don't really celebrate christmas. i, um, i celebrate festivus. kruger: vemonous? george: festivus, sir. and, uh, i was afraid that i would be persecuted for my beliefs. they drove my family out of bayside, sir! kruger: are you making all this up, too? george: oh, no, sir. festivus is all too real. and.. i could prove it - if i had to. kruger: yeah, you probably should. [setting: the costanza's house] george: happy festivus! frank: george? this is a surprise. (looking at kruger) who's the suit? george: yo, dad. this is my boss, mr. kruger. frank: have you seen the pole, kruger? george: dad, he doesn't need to see the pole. frank: he's gonna see it. george: happy festivus! (sees elaine) yama - hama! elaine: i didn't have time to go home. what are you doing here? george: embracing my roots. jerry: they nailed you on the 20 g's? george: busted cold. frank: it's made from aluminum. very high strength-to-weight ratio. kruger: i find your belief system fascinating. kramer: hey! happy festivus, everyone! (hugs george, and jumps up and down) hee, hee, hee! bookie: hello again, miss benes. elaine: what are you doing here? bookie: damnedest thing.. me and charlie were calling to ask you out, and, uh, we got this bagel place.. kramer: (finishing the story) i told them i was just about to see you.. it's a festivus miracle! estelle: dinner's ready! frank: let's begin. (everyone sits around the table. kruger recognized kramer from "the meat slicer" episode..) kruger: dr.. van nostrand? kramer: uh.. that's right. frank: welcome, new comers. the tradition of festivus begins with the airing of grievances. i got a lot of problems with you people! and now you're gonna hear about it! you, kruger. my son tells me your company stinks! george: oh, god. frank: (to george) quiet, you'll get yours in a minute. kruger, you couldn't smooth a silk sheet if you had a hot date with a babe.. i lost my train of thought. gwen: jerry! jerry: gwen! how'd you know i was here? gwen: kramer told me. kramer: another festivus miracle! gwen: i guess this is the ugly girl i've been hearing about. elaine: hey, i was in a shvitz for 6 hours. give me a break. jerry: gwen. gwen, wait! ah! (runs back to his seat) bad lighting on the porch. elaine: (to bookie) hey, how'd my horse do? bookie: he had to be shot. frank: and now as festivus rolls on, we come to the feats of strength. george: not the feats of strength.. frank: this year, the honor goes to mr. kramer. kramer: uh-oh. oh, gee, frank, i'm sorry. i gotta go. i have to work a double shift at h&h. jerry: i thought you were on strike? kramer: well, i caved. i mean, i really had to use their bathroom. frank, no offence, but this holiday is a little (makes a series of noises) out there. george: kramer! you can't go! who's gonna do the feats of strength? kruger: (sipping liquor from a flask) how about george? frank: good thinking, kruger. until you pin me, george, festivus is not over! george: oh, please, somebody, stop this! frank: (taking off his sweater) let's rumble! estelle: i think you can take him, georgie! george: oh, come on! be sensible. frank: stop crying, and fight your father! george: ow! .. ow! i give, i give! uncle! frank: this is the best festivus ever! [setting: h&h bagel shop] manager: alright. that's enough. you're fired. kramer: thank - you! (gets his coat, and leaves) [setting: a car dealership] george: when are they gonna have the flying cars, already? jerry: yeah, they have been promising that for a while.. george: years. when we were kids, they made it seem like it was right around the corner. jerry: i think ed begley jr. has one. george: no. that's just electric. jerry: what about harrison ford? he had one in, uh, blade runner. that was a cool one. george: (sarcastically) what's the competition, chitty chitty bang bang? jerry: well, what do you think the big holdup is? george: the government is very touchy about us being in the air. let us run around on the ground as much as we want. anything in the air is a big production. jerry: yeah, right. and what about the floating cities? george: and the underwater bubble cities? jerry: it's like we're living in the '50s here. kramer: it's good suspension! jerry: (to kramer) would you stop it? you'll have plenty of time to destroy it after i get it. hey, george, i'm buyin' this car. (gestures to a black saab) george: shhh what is wrong with you? you never tell 'em you like the car. (advising) you're not sure what you want. you don't even know why you're here. jerry: (gestures to his forehead) youre getting that vein again. george: i'm starving. we should have had lunch first.. jerry: (trying to quiet george down) it'll be twenty minutes. i told ya, puddy's getting me an insider deal. george: since when is elaine's boyfriend selling cars? i thought he was a mechanic. jerry: i guess he graduated. george: there's an easy move go from screwin' you behind your back to screwin' you right to your face. jerry: (to kramer) thank you. george: puddys just gonna give you the car, huh? (skeptically) youll see. first they stick you with the undercoating, rust-proofing, dealer prep. suddenly, youre on your back like a turtle. jerry: all right. calm down. george: my father had a car salesman buddy. he was gonna fix him up real nice. next thing i know, im gettin dropped of in a le car with a fabric sunroof. all the kids are shoutin at me, "hey, le george! bonjour, le george! lets stuff le george in le locker!" kramer: jerry, i dont think this thing is hooked up right. jerry: (to kramer) all right, were goin in. salesman: youve got a good eye, there. i see youve noticed the uni-body construction. im rick. are you looking to buy or to lease? kramer: uh, borrow. its for my friend. yeah, hell be buying.. rick: maybe i should talk to him. kramer: oh, i dont think so. no, hes an entertainer. you know, all over the place. thats where i come in. rick: i see. so, youre his manag- kramer: yeah, neighbor. thats right. yeah, why dont we take this boiler out for a shakedown huh? george: look at these salesmen. the only thing these guys fear is the walk-out. no matter what they say, you say, "ill walk out of here right now!" salesman: can i help you with something? george: (threatening) hold it! one more step and were walkin! jerry: (scolding) george. (to salesman) sorry, were just waiting for david puddy. george: (still with a tone) he is. you dont know what im doin here. elaine: hey. jerry: hey. puddy: sorry im late. elaine: (full of pride) my new salesman boyfriend took me out to celebrate his promotion. jerry: ah. whered you go? elaine: (obviously embarrassed) uh, to a restaurant. puddy: arbys. elaine: i had the roast beef jerry: so, puddy, i decided im gonna go with another 900 convertible. puddy: all right. classic. (holds his hand up) high-five. elaine: (interrupting) david, can you tell me where the xerox machine is? puddy: oh, sure, babe. salesman-only copy room (points) right there. elaine: oh. (leaves for the room) puddy: (to jerry and george) hey, come on, guys. ill show you the 900. george: (mocking, skeptic) yeah, you show us the 900. rick: and look at these features, mr. kramer anti-lock brakes, automatic climate control. uh, (points out the windshield) make a right at this corner, please. (goes back to the features) an adjustable steering wheel, and oh, mr. kramer, you missed the turn.. kramer: no, no, no, i didnt. rick: well, thats okay. (pointing) well make this next right, and swing around to get back to the dealership. kramer: (up to something) well, its a test drive, right? i never drive around here. if im gonna recommend this car, i need to see that itll handle my daily routine. rick: well where are we going? kramer: just a little place i like to call, "youll see". [setting: puddys office] george: im starving. you got any of those free donuts you use to soften people up? puddy: (pointing out his office door) by the service department. george: (getting up, he addresses jerry) all right, remember no rust-proofing. commit to nothing. if you have to speak - mumble. jerry: (as george is leaving for the donuts) au revoir, le george. george: dont think it cant happen! (leaves) jerry: so, puddy, this is a pretty good move for you, huh? no more "grease monkey". puddy: i dont care for that term. jerry: oh. sorry, i didnt know.. puddy: no, i dont know too many monkeys who could take apart a fuel injector. jerry: i saw one once that could do sign language. puddy: yeah, i saw that one. uh.. koko. jerry: yeah, koko. puddy: right, koko. that chimps all right. (holds up his hand) high-five. george: hey, hey, hey! whats goin on here? (to jerry) you didnt agree to anything, did ya? jerry: no. we both just saw the same monkey. george: (aggravated) well, i got screwed on the donuts. there were none left. heh! puddy: (standing up) well, theres a vending machine. i could show you where it is. (leaves, showing george the way) george: (to jerry) hey, gimme a dollar. jerry: (getting a dollar out) wheres your money? george: (talking it) im here helpin you. elaine: hey. wheres puddy? the copy machine is broken. george: (on his way out) heh, heh, heh. thats what they want you to think. jerry: hey, elaine, have you noticed your boyfriend has developed an annoying little habit? elaine: (squints, imitating puddy) the squinting? jerry: no. elaine: (stares ahead, again, imitating puddy) the staring? jerry: no. he keeps asking me to give him a high-five. elaine: (shrugging) i thought all guys do that. jerry: slapping hands is the lowest form of male primate ritual. in fact, even some of them have moved on - theyre doing sign language now. elaine: its that bad? jerry: what do you think the nazis were doin? (imitates the nazis salute) that was the heil-five. elaine: (pointing out) isnt that from your act, like, ten years ago? jerry: (slightly embarrassed) it was a good bit in the 80s, and its still relatable today. puddy: good news. we got a 900 in black. thats the hot color. (holds up his hand) high-five. elaine: um, david, you know what? can you come help me fix the copy machine? come. puddy: (pointing at jerry) you owe me five. [setting: dealership back room] george: twix.. (makes various noises) b-5. george: ah, come on! george: ah, excuse me. do you have, uh, change of a dollar? mechanic: (while retrieving his candy) no. george: could i, uh, could i trade you for another dollar? mechanic: (while walking away) dont have one. george: (stopping him) ah, excuse me. when your, uh, when your wallet was open, i - i glanced inside, and i couldnt help but notice that you have several crisp dollar bills. mechanic: (calm) youre incorrect. george: (persistent) perhaps you could look again, please? im very hungry. mechanic: (while taking his exit) we had donuts earlier. george: (losing it) i guess everyone here enjoys giving the old screwgie, huh?! youre all doin a hell of a job! (looks longingly at the twix in the machine) ho, ho. what i would do with you.. [setting: dealership car] rick: uh, mr. kramer, were really not allowed to use the cars to run errands. kramer: now look, rick. im very close to giving this car, that my celebrity friend is considering, my full endorsement. (looks out the window) oooh, lets see if i can get a smile from these femininas.. (yells out to them) hey, ladies! (points to the car) its the saab 900! what do you think? can i interest you in a little supplemental restraint?! (they obviously do something to offend him. kramer reacts with a face) geez [setting: dealership back room] jerry: (tapping the door you lift to retrieve your candy on the machine) i think the candy comes out over there. george: people can drop change down here, jerry. and theyre too lazy to pick it up. jerry: either that, or theyve got a weird little hang-up about lying face-down in filth. why dont you just go to the cashier? george: the cashier is at lunch - which is where id like to be. jerry: how much was under there? george: (looking at his finger) i think somethin bit me. i just need another nickel. jerry: (while fishing through his pocket for change) hey, puddy thinks i should go for the cd player. what do you think? (hands him a nickel) george: ho, ho, ho! hes got a live one. hes just reeling his big fish in! jerry: hey, can i have my dollar back? george: (stingy) its wrinkled. its worthless. george: (as the twix starts to move) ha, ha, ha, ha! (the twix gets stuck in the spindle right before falling. george begins to pound the machine) come on! jump! man: they just put out some more donuts. george: they did? man: (holding his up) last one. [setting: dealership car] kramer: well, just one more errand and we can head back. rick: actually, it looks like were gonna need some gas. kramer: oh? well, how much gas do you think is in there right now? rick: (looking) well, its on "e". kramer: you know, rick, oftentimes, jerry - he lends me his car and i find myself in a situation where the car is almost out of gas. but, for a variety of reasons, i dont want to be the one responsible for purchasing costly gasoline. rick: (pointing out) so, you want to know how far you can drive your friends car for free. kramer: (in the spotlight, his voice goes high) well, i make it up to him in other ways. [setting: dealership back room] george: as you will see, the candy bar is paid for, and yet, remains dangling in the machine. (notices that the twix slot is completely empty) hey, its gone. where is my twix? (quickly looks around. his sights fall on the window of a door labeled "employees only". the same mechanic from before is eating a candy bar) what?! that guys eatin it! salesman: well, how do you know that ones yours? george: uh, it was dangling! there were only two left in the machine! he mustve bought one, and gotten both. salesman: sir, are you gonna buy a car? george: no! (the salesman walks away. he addresses the mechanic through the doors window) hey! hey! i see you! that is my twix! (the mechanic eats the last of the twix, obviously to make george even more angered. it works) oh, ha, ha! ho, ho! puddy: paper jam.. got it! elaine: yay! puddy: (holds his hand up) high-five. (elaine reluctantly slaps it. he turns around, and puts his hand out behind his back) on the flip side. elaine: david, um, i.. puddy: (still holding out his hand) dont leave me hangin. elaine: youre a salesman now - and the high-five is its very grease monkey. puddy: what did i tell you about that? elaine: ah, i, im sorry, but the high-five is just so stupid. puddy: (somewhat hurt) oh yeah? ill tell you whats stupid. you. stupid. elaine: (sarcastically) oh, that is really mature. puddy: yeah? so are you. youre the grease monkey. elaine: (confused at davids attempts at a comeback) uh that doesnt make any sense. i am leaving. puddy: yeah, if you leave, were through. elaine: fine! were through! puddy: oh, so youre leaving? elaine: (while leaving) thats right. (mocking puddy, she puts her hand up) high-five! (turns around, putting her hand behind her back like he had done) on the flip side! (as elaine is leaving, she mutters to herself) takin me to arbys jerry: (sees elaine leaving) hey! wh-where are you? puddy: lets finish this up. jerry: did you two break up? puddy: (while punching up numbers on a calculator) that chicks whacked. were history. (back to the transaction) i just left out a couple of things uh, rust-proofing jerry: "rust-proofing"? puddy: (reading off what hes adding up on the calculator) transport charge, storage surcharge, additional overcharge, finders fee jerry: "finders fee"? it was on the lot! puddy: yeah, thats right. (continues reading off) uh, floor mats, keys jerry: keys?! puddy: how ya gonna start it? [setting: dealerships shop] george: excuse me. i believe you just ate my twix bar. it was dangling. and when you purchased your twix bar, you got a little freebie, and you never bothered to ask why, or seek out its rightful owner. mechanic: first of all, it wasnt a twix. it was a 5th avenue bar. george: huh. you must think im pretty stupid. (the mechanic shoots him a look as if he cleary does think hes stupid) that was no 5th avenue bar. i can see the crumb right there in the corner of your lip! now, that-that-that is a cookie - and we all know that twix is the only candy bar with the cookie crunch. mechanic: its uh, its just a little nougat. george: nougat? please. i think ive reached the point in my life where i can tell the difference between nougat and cookie. so lets not just say things that we both know are obvious fabrications. mechanic: (pointing to georges forehead) you know, youre gettin a little vein there.. george: (watching the mechanic leave) i know about the vein! i cant believe this guy.. jerry: hey, george! george: hey, starving! (grabs the box from jerry) jerry: no, last one. listen, you gotta help me out. elaine and puddy just broke up, hes treatin me just like a regular customer, now! george: i tried to tell you, but you wouldnt listen. no, ho, ho! you were gonna get a deal, huh? theres no laws in this place. anything goes! its thunderdome! saleswoman: is someone helping you? george: stay back! (runs out of the room, pushing jerry out ahead of him) [setting: dealership car] rick: (trying to look at the gas gauge) where is it now? kramer: theres still some overlap between the needle and the slash below the "e". rick: how low are you gonna go? kramer: oh, ive been in the slash many times. this is nothing. youll get used to it. just, (makes a popping sound) put it out of your mind. rick: have you ever been completely below the slash? kramer: well, i almost did once, and i blacked out. when i came to, the car was in a ditch, and the tank was full. i dont know who did it, and i never got to thank them.. rick: (as the car slowly drifts off the road) mr. kramer, the road! kramer: whoop! whoop! [setting: puddys office] jerry: (threatening tone) so, listen, puddy. when we first started this deal, i thought things were gonna be different. now, if you want to play hard ball, i got my friend, george, here, and he can play pretty hard ball. (leaving the negotiation to george) george, vein it up. george: all right, puddy, listen, and listen good i need to know the name of that mechanic that walks around here. big guy, a liar. short name. sam? moe? sol?! jerry: george! can we focus on the car, here? george: im starving! i can feel my stomach sucking up against my spine. puddy: (handing a sheet of paper to jerry) jerry, i just need your signature here, and well get you that yellow car ready to go. jerry: yellow? i wanted black. puddy: i cant give you black at that price. jerry: (pleading) george, would you help me, please? george: (standing up) yes. this is wrong! jerry: sing it, sister! george: just because a candy bar fails to fall from its perch jerry: (exasperated) oh, god george: (losing it) does not imply transfer of ownership. moe, sol, or lem is not gonna get away with this! jerry: (to puddy) ill be right back. puddy: okay. jerry: hey, george! [setting: dealership car] rick: is it just the angle im looking from? kramer: no, sir. we are down there. rick: oh, this is amazing! oh, ive never felt so alive! kramer: all right, im satisfied. we better get some gas. rick: what? well, we cant stop now. kramer: what do you mean? rick: we have to keep going - all the way back to the dealership. that was the plan. kramer: there was no plan. rick: well, lets make it the plan! lets just go for it! like thelma and louise. kramer: what, they drove to a dealership? rick: no, they drove off a cliff. kramer: you are one sick mama i like it. rick: mr. kramer, the road! kramer: yup! yup! [setting: elaines apartment] elaine: hello? jerry: (over the phone) elaine, youve got to get back down to the dealer. puddy is screwin me on this car, which is yellow now! elaine: (jokingly mimicking jerry) who is this? jerry: (banging the phone against the booth) elaine! elaine: what?! jerry: you gotta get back together with puddy so i can make this deal. elaine: (sarcastically) you know, just that you cared enough to call means so much, jerry. jerry: youre gonna get back together, anyway. its thousands of dollars! elaine: oh, i dont know.. jerry: come on. then you dont have to see him again til my 15,000-mile check. elaine: well, will you pay my cab fare out there? jerry: fine. elaine: and i didnt like that roast beef, so how bout some lunch? jerry: no. no lunch. elaine: ill hang this phone up right now! jerry: all right! lunch! elaine: ill see ya. (hanging up the phone) jerry: bye. (hangs up) jerry: (frustrated, he reacts) everybodys ripping me off! george: yes, id like to report a problem with one of your mechanics. willie: when did you bring the car in? george: (to the man behind him in line) yeah, right im gonna get my car repaired at a dealership. huh! why dont i just flush my money down the toilet? willie: sir, what, exactly, is the problem? george: one of your guys - kip, or ned, short name - stole my twix candy bar! willie: are you saying he grabbed your candy bar away from you? george: he might as well have! i caught him, and his face was covered in chocolate and cookie crumbs. willie: i thought you said it was a twix. george: oh, it was. but he claimed it was a 5th avenue bar. willie: maybe it was. george: oh, no, no. twix is the only candy with the cookie crunch. willie: what about the hundred-thousand-dollar bar? george: no. rice and caramel. willie: nougat? george: no. willie: positive? george: please. woman: you know they changed the name from hundred-thousand-dollar bar to hundred-grand? george: all i want is my seventy-five cents back, an apology, and for him to be fired! willie sr: i remember when you used to be able to get a hershey for a nickel. man: whats the one with the swirling chocolate in the commercial? george: they all have swirling chocolate in the commercial! willie sr: not skittles. willie: dad, i told you you could sit here only if you dont talk. woman: (sitting behind george) you make your father sit here all day? willie: he likes it! george: all right, do you mind? i have the window! (to willie) now, what are you gonna do about my twix? man: (in line behind george) twix has too much coconut. george: no! theres no coconut! woman: (behind service window) im allergic to coconut. willie: im not. willie sr: a nickel! [setting: dealership office showroom] elaine: cab receipt. hey, puddy. puddy: im with a customer. elaine: uh jerry: no, no. no, elaine, the car can wait. whats important is you two getting back together. eh, then well talk about the car. puddy: (like a kid) i dont want to get back with her. shes too bossy. elaine: (raising her finger at him, in an authoritative tone) david.. jerry: okay. now, i know this is an important decision. why dont we all just sit down and talk about it? come on, come on. (all three sit down) now, look, you both find each other attractive, right? elaine and puddy: right. jerry: clearly, no one else can stand to be with either one of you. elaine: i guess. puddy: good point. jerry: (smiling, like a salesman) all right. now, what do i have to do to put you two in a relationship today? [setting: gas station] kramer: cars can go on empty, but not us humans, huh, fella? ill get us a couple of twix bars. rick: no, no coconut for me. kramer: all right, ill get ya a mounds bar. keep the engine running. rick: ahh! kramer: no, man! not the gas! rick: but it needs it, kramer! it needs it bad! kramer: do you think that thisll make you happy? cause it wont! rick: (walking away) ah, you can just go on without me. kramer: listen to me. when that car rolls into that dealership, and that tank is bone dry, i want you to be there with me when everyone says, "kramer and that other guy, oh, they went further to the left of the slash than anyone ever dreamed!" rick: maybe we better get moving. kramer: its good to have you back, stan. rick: its rick, by the way. kramer: no time! [setting: dealerships customer service room] willie: mr. costanza, i really dont have time for this. george: now, if this mechanic guy, was, in fact, eating a 5th avenue bar, as he claims, wouldnt you agree he would have no problem picking one out from a candy line-up? willie: "candy line-up"? george: ive spent the last hour preparing ten candy bars with no wrappers or identification of any kind for him to select from. willie: it took you an hour? george: only i hold the answer key to their true candy identities. and so, without further ado, i give you the candy line-up. (opens a door to a back room. various dealership employees are munching on candy bars) saleswoman: hey, willie, check it out! free candy! george: thats my candy line-up! where are all my cards?! theyre - theyre all on the floor! george: and you! how many twix does that make for you, today?! like, 8 twix?! mechanic: no. man: hey, this clark bar is good. george: its a twix! theyre all twix! it was a setup! a setup, i tell ya! and youve robbed it! youve all screwed me again! now, gimme one! gimme a twix! mechanic: theyre all gone. george: (yelling out, frustrated. the camera spins from a top angle) twwwwiiiiiixxxxx! elaine: what was that? puddy: theres a mental hospital right near here. jerry: all right. elaine, david, i believe we have a deal here in principle arbys no more than once a month. and in exchange, elaine comes to your softball game, and doesnt read a book. elaine: (while looking over the contract jerry just drew up) yeah, well, thats not bad. puddy: i can live with that. jerry: so, youre back together? puddy: yeah. jerry: all right, all right. all right, thats enough! lets get back to my deal. that undercoating, thats a rip-off, isnt it, david? puddy: oh, we dont even know what it is. jerry: so, im gettin the insiders deal? puddy: insiders deal. (holds up his hand) high-five. [setting: dealership car] rick: (seeing the turn-off up ahead) theres the dealer! kramer: hey! rick: we did! we pulled it off! i cant believe it! wheres the needle? kramer: oh, it broke off, baby! woo, hoo, hoo! rick: oh, mr. kramer, i gotta thank you. i - i learned a lot. things are gonna be different for me now. kramer: well, thats a weird thing to say rick: i wonder how much longer we could have lasted. kramer: yeah, yeah. i wonder hmm. [setting: nyc cab] elaine: this is nice. what kind of car is this? cabbie: caprice classic. elaine: (to jerry) you couldnt just give him one high-five? jerry: and where does it end? then everyones doin it. its like the wave at ball games. air quotes. the phrase, "dont go there." - someones gotta take a stand! george: (munching on a hamburger) this arbys is good. elaine: so, george, i still dont understand - how was that a setup? jerry: and who were you tryin to set up, anyway? the mechanic or the manager? george: i dont know. all of em. theyre all crooks! besides, i couldnt get all different candy bars, anyway. george: what was that? jerry: i think theres a mental hospital near here. elaine: very near. kramer: ya-hoo! ya-hoo! (rick is silent) whew! well, i think we stopped. rick: you - you can probably let go of my hand now. kramer: yeah, yeah. (getting out of the car) well, ill think about it.. rick: do you have my card? waitress: careful, this plate is extremely hot. elaine: thank you. ow! waitress: i just told you it was hot. why'd you touch it? elaine: i just wanted to know what your idea of 'hot' is. puddy: hey, babe. you ready to hit the ice? elaine: i am ready to skate up a-- ha, ha, ha...why are you wearing that? puddy: it's my winter coat. elaine: a fur? puddy: is there a problem? elaine: a seemingly infinite supply. elaine: ow! careful, it's hot. puddy: ow! jerry: so, puddy wear's a man fur? elaine: he was struttin' around the coffee shop like stein erickson. jerry: and, of course, you find fur morally reprehensible. elaine: eh, anti-fur. i mean, who has the energy anymore? this is more about hanging off the arm of an idiot. george: and this is the first you're seeing of the coat? elaine: we never dated in winter. jerry: you might want to get a look at that bathing suit drawer. elaine: oh, i walked by bloomingdale's the other day, and i saw that massage chair we want to get joe mayo as an apartment gift. george: an apartment-warming gift? we got to give presents to people for moving? birthdays, christmas, it's enough gifts. i would like one month off. jerry: kramer said it's a perfect gift. that's what we're gettin' him. george: all right, but we're not buyin' it at bloomingdale's. i will buy it, you pay me back later. i'll sniff out a deal. i have a sixth sense. jerry: cheapness is not a sense. elaine: i can't stand joe mayo's parties. you know, the second you walk in, he's got you workin' for him. 'hey, can you do me a favor? can you keep an eye on the ice, make sure we have enough?' uh... jerry: i had a great time at the last one. i was in charge of the music. i turned that mother out. kramer: hey. jerry: hey. kramer: you got any pliers? jerry: what, has newman got another army man stuck in his ear? newman: hilarious. kramer: newman and i are reversing the peepholes on our door. so you can see in. elaine: why? newman: to prevent an ambush. kramer: yeah, so now i can peek to see if anyone is waiting to jack me with a sock full of pennies. jerry: but then anyone can just look in and see you. kramer: our policy is, we're comfortable with our bodies. you know, if someone wants to help themselves to an eyefull, well, we say, 'enjoy the show.' elaine: i'm sorry i can't stay for the... second act. jerry: hey, george. here's the model number on that chair, by the way. kramer: mmm... nice wallet. newman: wallet. jerry: what? kramer: nobody carries wallets anymore. i mean, they went out with powdered wigs. yeah, see here's what you need. just a couple of cards and your bankroll. see, keep the big bills on the outside. jerry: that's a five. kramer: i'm on the mexican, whoa ohh, radio... silvio: eh, what are you doing? kramer: hey, silvio. yeah, i'm reversing my peephole. silvio: hey, you know you gotta get permission from me. i'm the super. who said you could do that? kramer: well, who says i can do any of the things i do in my place? silvio: like what? kramer: well, i... uh, nothing. no, i'll, um, i'll switch it back. silvio: no, no, no, no. no, that's all right. kramer: well, that's good. because, uh, newman and i-- silvio: newman? he did this, too? kramer: well, yeah. silvio: i deal with him. george: hey, look at this. this is the same massage chair we're gettin' for joe mayo, $60 cheaper. jerry: except the store's in delaware. george: i'll have 'em overnight it. jerry: maybe cheapness is a sense. you know it is better without this big wallet. it's more comfortable. george: it doesn't matter if it's more comfortable. it's wrong. jerry: why? george: because important things go in a case. you got a skull for your brain, a plastic sleeve for your comb, and a wallet for your money. jerry: but look at this thing. it's-it's huge. you got more cow here than here. george: i need everything in there. jerry: irish money? george: i might go there. jerry: show this card at any participating orlando-area exxon station...to get your free 'save the tiger' poster. george: all right, just gimme that. and gimme some of those sweet & lows. kramer: who is it? newman: it's newman. kramer: what do you want? i'm in the middle of something. newman: i can't believe i'm being evicted. kramer: what? what are you talking about? newman: the reverse peepholes. silvio said i'm an agitator and i'm out of the building. kramer: no. no, he can't do that. newman: i'm homeless! i'm gonna be out on a street corner, dancing for nickels. i'll be with the hobos in the trainyard, eating out of a bucket. kramer: come on, we'll go and talk to him, and we'll straighten this thing out. newman: uh, you, uh, you better put something on. jerry: george, i am loving this no wallet thing. george: a man carries a wallet. jerry: you know, the very fact that you oppose this makes me think i'm onto something. joy mayo: hey, jerry. jerry: hey, joe mayo. nice place. joy mayo: thanks. george, can you do me a favor and stay by the phone in case anybody calls and needs directions? george: love to. joy mayo: thanks. jerry... jerry: music? joy mayo: actually, can you keep an eye on the aquarium and make sure nobody taps on the glass? jerry: but i could do that and the music. joy mayo: oh, no, don't worry about the music. just... have fun! jerry: i was ready to get jiggy with it. puddy: hey. jerry: hey, elaine. elaine: hey. i think you know dr... zaius. jerry: so, elaine, notice anything different about my... pants? elaine: so, george... did you get the chair? george: no, i don't have it yet. jerry: so, we're givin' him nothing? george: no, i brought a picture of the chair. jerry: did you at least get him a card? george: i thought we'd all sign the picture. joy mayo: elaine... elaine: hey, joe mayo. joy mayo: i need you to be in charge of coats. elaine: oh, fantastic. joy mayo: and puddy, can you make sure no one puts a drink on my...sound system? puddy: sure thing, joe mayo. jerry: hi, i'm jerry. how do you like my pants? keri: nice. jerry: (talking to george) it's working. (to the girl, who's tapping on the aquarium) don't tap on the glass. george: (answering the phone while walking away) joe mayo's apartment? puddy: (standing guard by the stereo as george walks by him) hey! cocktail off the speaker. elaine: goodbye, dr. zaius. silvio: why are we in jerry's apartment? kramer: well, i, uh, i like to think of this as my conference room. yeah, it has a more formal atmosphere, you know, with the shelves, and the furniture. silvio: make it quick kramer, my wife and i are about to go bowling. kramer: oh, well, um, newman thinks that you, uh, evicted him? silvio: i did. i don't like mr. newman. he is an agitator. kramer: look... i've known newman all my life, in the building, and you're all wrong about him. he's a model tenant. portly, yes, but smart as a whip. silvio: ok, on your word he can stay. kramer: all right. silvio: but... i'm gonna keep my eye on him. kramer: well, you won't regret it. silvio: what's wrong? joy mayo: elaine, thanks for coming. elaine: good working with you. puddy: all right, let's hit the bricks. elaine: what? joy mayo: hey, i got a coat just like this! elaine: oh. uhhh... elaine: so joe mayo had the same coat. george: and you threw it out the window? elaine: mm-hmm. george: god, you're like a rock star. elaine: so now joe mayo wants me to buy him a new coat. jerry: because you threw it out. elaine: no, because i was in charge of the coats. it's... insane. jerry: but you did actually throw his coat out the window. elaine: but he doesn't know that. as far as he knows, somebody stole it, and that's the person who should be responsible. jerry: but that's you. elaine: so i guess i'll have to buy him a new coat, even though i don't think i should be held responsible, which i am anyway. george: well, i'm satisfied. uh...my back is...killing me. jerry: of course. because of that wallet. you-you got a filing cabinet under half of your ass. george: this...is an organizer, a secretary, and a friend. elaine: look at you. you're on a slant. george: here, just give me a couple of napkins. george: there, there i'm fine. jerry: what was that? george: i think i had some hard candy in there. george: no, no, this is supposed to go to joe mayo's apartment. george: ahhh. how does this thing work? george: ahhhhh... delivery man: sir, do you want me to deliver this to your friend's place or not? george: ahhhhh... keri: ready to go? jerry: all set. i can't believe i'm going dancing. keri: you don't go that often? jerry: no, because it's so stupid. shall we? keri: do me a favor. can you hold this stuff for me? jerry: compact, lipstick, all this? keri: and can you help to carry my keys? jerry: what are you, a medieval dungeon master? keri: and a tin of altoids. jerry: ow! sharp key. kramer: so, you're sleeping with silvio's wife? newman: well, there's very little sleeping going on. kramer: well, why didn't you tell me about this? newman: quite frankly, i don't see how it's any of your business. kramer: well, it's my business now. look, i stuck up for you. man, if he catches you, we're both out. newman: hey, what is that up that tree? kramer: hoooh! man, that looks like a dead bear. newman: no, that's a fur coat! hey, uh, give me a boost. kramer: man, where did you learn to climb trees like that? newman: the pacific northwest. elaine: so, you had to carry some of keri's stuff. big deal. jerry: you don't understand. i went on a successful pocket diet, and i want to keep that weight off. elaine: you know what? we sell this thing at peterman that would be perfect for you. jerry: not more of that crap from the titanic? elaine: no. no. it's a small men's carryall. jerry: i'm not carrying a purse. elaine: it's not a purse. it's european. jerry: oh. elaine: hey, did george buy joe mayo that chair yet? jerry: i don't know. elaine: if i'm gettin' him a new fur, i'm not chippin' in on a gift, too. george: yeah? jerry: hey, george, did you get joe mayo that chair yet? george: not yet. oh! ho ho! god... jerry: what? george: it's in... transit. elaine: did he get it? jerry: no. elaine: mmm, good. tell him i'm out. george: (hearing elaine over the phone) what, she's out? jerry: well, so what? you're gettin' a deal, right? we'll split it three ways. george: allllll right! jerry: what is that noise? george: (hangs up the phone) that's my toaster. i got to go. ohhhhhhhhhhhhh! jerry: you know, sometimes i get the feeling george isn't being completely honest with me. kramer: hey. oh, uh, yeah. uh, here are your pliers back....weak hinge. elaine: well, i guess i better go and price fur coats. kramer: oh, go down to 88th street. they're free. elaine: what are you talking about? kramer: well, they're hanging from the trees. you know, newman found one there yesterday. man, that guy can climb like a ring-tailed lemur! elaine: 88th street? that's where joe mayo lives. that's the coat! jerry: what was that pop sound? kramer: well, i had some hard candy in there. newman: so, to what do i owe this unusual invitation? elaine: come in, come in. newman: ahh! this is very much as i imagined it to be. aside from this rattan piece, which seems oddly out of place. elaine: please, sit down. newman, um, i wanted to talk to you about something. newman: this isn't about my opening your mail? elaine: what? newman: because i don't, never have, anything i read was already open. elaine: uh, yeah, uh, no. newman, uh, i heard that you found a fur coat in a tree. and, i believe that it belongs to a friend of mine, and i'd like to give it back to him. newman: sorry. climbers, keepers. elaine: you know, newmie. um, i know how you feel about me, and i have to tell you, i'm quite flattered. newman: you are? elaine: oh, yeah. i mean, of all the men that i know, you're the only one who's held down a steady job for several years. newman: well, it's-it's interesting work, i don't mind it. elaine: ha ha ha ha. newman: don't you have a-a boyfriend? a, uh, burly, athletic type? elaine: uh, don't worry, he's cool. newman: cool? elaine: very cool. so, what do you say? can you do this one little favor, newmie? newman: oh, how i've waited for this moment. but alas, my heart belongs to another man's wife, and i have given the coat to her. elaine: all right, we're done here. newman: for i am in love with svetlana, and i don't care if the whole world knows, except for silvio, who would throw me out of the apartment, where i would be dancing on the sidewalk-- elaine: thank you, thank you, thank you very much. keri: nice carryall. jerry: it's european. keri: do you still have my lipstick? jerry: uh, yeah, i think i do. i can never find anything in here. ah, here it is. so, that joe mayo throws the worst parties, doesn't he? so what was your job? keri: my job was to keep you away from the music. jerry: what, he doesn't like my taste in music? keri: guess not. jerry: you should've been there last year. i got jiggy with it! silvio: kramer! it's silvio! open up, i need to talk to you! i can see you through the reverse peephole. kramer: hey, silvio! silvio: look at this. kramer: huh? silvio: svetlana says she find it in the laundry room, but i think it is a gift from that postman agitator. where is he? kramer: relax, silvio. silvio: no, that's it. you're both out of the building! kramer: oh, come on! hey, newman didn't even give her that! no, that's not even a woman's coat. it's a man's! silvio: a man's? kramer: yeah. silvio: what kind of a man would wear fur? kramer: oh, lots of 'em. silvio: would you? kramer: no. silvio: then who? kramer: what about jerry? silvio: jerry? kramer: yeah, sure, he's a celebrity. oh, yeah, they wear a lot of furs. they're desperate, insecure people. silvio: yes, you are right. it's all about, me, me, me. please, look at me! i am so pretty! love me! want me! kramer: yeah, something like that. jerry: i have to do what? kramer: all you have to do is wear the fur so silvio thinks it's yours. jerry: i'm not wearing the fur. kramer: well, then, newman and i, we get thrown out of the building. jerry: is that right? kramer: all right, why don't you just take a good, hard look at what your life will be like if i'm not around? jerry: newman, too? kramer: oh, come on, man! well, i'll tell you what, if you do this, i'll give you that walkman you're always asking about. jerry: that's my walkman! kramer: and you'll get it back. jerry: all right. kramer: all right. good, thanks, i owe you one. george: hey. kramer: oh, hey, and by the way, uh, that walkman was broke when you gave it to me. jerry: george, did you get that chair yet? george: it gets here when it gets here. would you stop ridin' me? jerry: you know what? just call up and cancel it. i'm out. george: excuse me? jerry: joe mayo doesn't like my taste in music. he's not gettin' a gift from me. george: oh, i can't believe you're dropping out, too. so now kramer and i have to pay for the entire gift? kramer: whoa, whoa. now, who's this joe mayo everyone's talking about? george: he's the guy we're the buying the chair for, remember? it was your suggestion. kramer: i think the chair is a fantastic gift idea. but i never heard of this joe mayo. and frankly, it sounds made up. george: oh, so now i have to buy this whole chair by myself? jerry: no, you don't have to buy anything. george: i already bought it! i've been lyin' to you for three days, and now you're all screwin' me! jerry: i don't understand. why didn't you tell us you had it? george: i needed it! my back is... a little tweaked. jerry: because of your giant wallet. just get rid of it! george: never! it is a part of me. i will just return the chair, and it will be easy, because the receipt is in my good friend. jerry: your good friend is morbidly obese. george: well, at least, i'm not carrying a purse. jerry: it's not a purse. it's european! kramer: all right, silvio's down there. he's shoveling the walk. now, all you gotta do is put this on, you go down to the corner, you pick up a paper, and you come right back. jerry: all right. kramer: there you go. jerry: how do i look? kramer: ahh.... george: learn guitar, first lesson free? huh. george: my receipts! the chair! my tiger poster! jerry: hey, silvio, just out for a little stroll in my favorite fur coat. silvio: that is your coat? jerry: it sure is. silvio: kramer says you need it because you're an entertainer and you're desperate for attention. jerry: that's true. kramer: jerry, you forgot your purse. jerry: oh, thanks. kramer: hey, silvio, look at jerry here, prancing around in his coat with his purse. yup, he's a dandy. he's a real fancy boy. jerry: maybe this isn't my coat. kramer: all right, you're not fancy! silvio: no, he's very fancy! want me, love me! shower me with kisses! elaine: jerry, where'd you get it? that's his coat. jerry: no, it's not. it's mine. i'm a fancy boy. elaine: no, that's not your coat. silvio: if that is not his coat, whose coat is it? elaine: it's joe mayo's coat. silvio: who's joe mayo? kramer: that must be the man that's sleeping with your wife. jerry: hey! officer! someone took my european carryall! cop: your what? jerry: the...black, leather...thing with a strap. cop: you mean a purse? jerry: yes, a purse. i carry a purse! jerry: so, silvio ambushed joe mayo? elaine: yeah, he was waitin' inside his apartment for him with a sock full of pennies. jerry: he should have had a reverse peephole. puddy: hey, babe. jerry: hello? hello? elaine: what is that? puddy: it's my new coat. elaine: you ditched the fur? puddy: yeah, i saw jerry wearing his. he looked like a bit of a dandy. check it out! 8-ball! you got a question, you ask the 8-ball. elaine: you're gonna wear this all the time? puddy: all signs point to 'yes!' jerry: so your saying unicef is a scam? kramer: it's the perfect cover for a money laundering operation . no one can keep track of all those kids with the little orange boxes of change. jerry: oh! no it's sally weaver. kramer: oh! yeah your old college roommate huh? jerry: no, it's susan ross's old college roommate; she moved to new york a few years ago . she's trying to become an actress. kramer: hmmm,, dramatica comedia heh! jerry: untalented, she's always inviting me to see her in some bad play in tiny room without ventilation. it's really depressing. kramer: euh.. we don't go to enough theater. jerry: she should just give up. jerry: heeyyy!... sally: hey there mr. too big to come to my shows. i just came back from (?) whoooooooo.....i'm on my way to an audition still waiting for that big break. kramer: why don't you just give up? jerry: kramer!!! kramer: at least that's what jerry says. now face it. if it hasn't happen it's not gonna happen. all right, we go grab some bouffe . join us? jerry: so......susan's dead..... kramer: i think she was happy someone finally said it. jerry: why'd you have to say anything to her? kramer: 'felt that the conversation was lagging. jerry: why can't you ever keep your big mouth shut? kramer: i come in here to get a pleasant meal and if we're not gonna have one i'll grab a bite to eat at your place. elaine: you know, maybe kramer is right, some people should just give up . i have. jerry: what did you wanna be? elaine: i don't remember, but it certainly wasn't this. look at this cartoon in the new yorker, i don't get this. jerry: i don't either. elaine: and you're on the fringe of the humor business. george: hey! elaine: hey! george look at this. george: that's cute. elaine: you got it? george: no, never mind. elaine: come on, we're two intelligent people here. we can figure this out. now we got a dog and a cat in an office. jerry: it looks like my accountant's office but there's no pets working there. elaine: the cat is saying " i've enjoyed reading your e-mail". george: maybe it's got something to do with that 42 in the corner . elaine: it's a page number. george: well, i can't crack this one. elaine: aahh! this has got to be a mistake. george: try shaking it...(long pause) well,janet should be here any minute. jerry: you've been hiding her from us. you must really like her? george: aah! the minute i saw this girl, we just clicked. she's got such a nice face. hummmm her eyes, her mouth, nose elaine: we know what a face consists of. janet: i'm sorry i'm late. george: jerry, elaine, i give you.. janet. janet: nice to meet you. elaine: hi! janet: do we still have time to make the movie? george: oh! euh.. yeah we just can't go to the supermarket to get some candy. elaine: jerry, she looks exactly like you. jerry: she does not. elaine: well maybe she doesn't, i don't care. jerry: hey! kramer. kramer: hey! you got some messages.. yeahumm.. .george, george, elaine, george again, elaine, newman; but that was a crank call. and some sally woman called said "thanks a lot, she's quitting the business, you ruined her life. jerry: what! you're the one who ruined her life. kramer: well that's not how she remembers it. jerry: well, i got to talk her out of this. kramer: i thought you said she stinks jerry: she does stink and she should quit. but i don't want it to be because of me. it should be the traditional route; years of rejections and failures till she's spit out the bottom of the porn industry. jerry: yeah... george: hey! george and janet. kramer: aahh...who's janet? jerry: george's girlfriend, elaine thinks she looks like me but i think it's as you would say,kookie talk. kramer: you know what woman i always thought you looked like; leena horne. all: hey, hey! kramer: and you must....look exactly like jerry. you don't see this; you're like twins .. wooooohhhhh!!! this is eerie. george: kramer, what are you talking about...janet doesn't look anything like jerry janet: well maybe we do look a little like each other. george: no..hummm, what do you know about what you look like. kramer: c'mon george relax . just because they look alike doesn't mean you're secretly in love with jerry. george: (nervous) all right now we're going bye bye. janet: we just got here george george: well,,, it's getting dark. kramer: yeah, she's a nice girl, kinda quiet though. jerry: what are you doing? don't tell a woman she looks like a man and george doesn't want to hear his girlfriend looks like me and frankly neither do i kramer: well how should i have "broached the subject" jerry: you don't broach, you keep your mouth shut. kramer: well sounds like someone's having a bad day. jerry: yeah! because of you. kramer: well, i think one of us should leave. jerry: sally, you can't quit the business. this is all because of me. sally: (nods) hehumm!! jerry: you can't give up. you don't think people tell me i stink? when i'm on stage that's all i hear; you stink, you suck. we like magic. sally: really? jerry: of course, i stink, you stink. it's show bizz. everybody stinks.. sally: yeah! you've been stinking since the eighties. jerry: all right, i think we've covered my act. now you get out there and stink it up with everybody else. sally: right!, yesss!! thank you i'm gonna do it. (starts to eat her food) jerry: now!!!!.... (she leaves in a hurry) elaine: well i've asked every one at work and nobody gets this cartoon. i mean i don't understand why no one can explain it, but i'm gonna get to the bottom of this. jerry: oh! i think we're at the bottom. elaine: (to george who just came in) hey! george, janet looks very nice and she's quite a handsome woman. george: what does that mean? jerry: yeah. what does that mean? george: (to jerry) what do you mean by that? elaine: enjoy. (she leaves) jerry: elaine huh?.. she's completely.. george: oh! i know....'cos you don't think janet?.. jerry: no.... george: why would i... jerry: it's ludicrous.. george: yes. jerry: for either one of us.. george: no... jerry: so... george: exactly. jerry: i'm not gay. george: ...neither am i. both: kramer, kramer, get in here. george: where's the crazy man, come on up. jerry: come on in here. george: haaaaaa!!! jerry: what's happening? what, you doing, come and talk to us. kramer: i've made an important life decision. jerry: lets talk about that. george: don't leave (george slams the door) kramer: aw right. i know i've been shooting off at the mouth lately; first with that girl whose life you destroyed and.. emm...about george dating a lady jerry george: what's the decision? kramer: i know you want me to keep my big mouth shut and that's exactly what i'm going to do. i'm never gonna talk again. jerry: yeah right. kramer: what do i need to talk for.. ha!, for to blab to the neighbors about george has a new fem-jerry friend or to tell everybody at the coffee shop ho george is all mixed up in a perverse sexual amalgam of some girl and his best friend. see now, i've done all that.....now it's time for silence. george: silence yes!! jerry: kramer you're never gonna be able to completely stop talking. kramer: jerry, ninety four percent of communications is non-verbal. here watch. jerry: well what does this mean? kramer: well it's frank and estelle's reaction of hearing george's man love towards she-jerry. george: (frantic by now) shut up,shut up, shut up,...(then leaves) kramer: that's the idea. jerry: kramer there's no way you stick to this. kramer: (makes a zipper gesture to his mouth) ..weeeeeepp!! jerry: oh! you just startin' now? kramer: that's right......aye oooh!! ...right now. kramer: ouch!!..........now!! mr. elinoff: so, j. peterman wants to hire some of our cartoonists to illustrate your catalog? elaine: well we're hoping that if perhaps that the catalog is a little funnier,people won't be so quick to return the clothes ha ha....for example.. i..i really do....well i love this one mr. elinoff: oh! yeah... that's a rather clever jab at inter office politics don't you think. elaine: ahan, ahan....yeah...euh but, why is it that the, that the animals enjoy reading the email? mr. elinoff: well miss benes . cartoons are like gossamer and one doesn't dissect gossamer. heh..hemm.. elaine: well you don't have to dissect if you can just tell me. why this is suppose to be funny? mr. elinoff: ha! it's merely a commentary on contemporary mores. (slides the magazine to her) elaine: but, what is the comment. (she slides the magazine back to him) mr. elinoff: it's a slice of life. elaine: no it isn't. mr. elinoff: pun? elaine: i don,t think so. mr. elinoff: vorshtein? elaine: that's not a word.....you have no idea what this means do you? mr. elinoff: no. elaine: then why did you print it. mr. elinoff: i liked the kitty. elaine: (gets up) you know what? you people should be ashamed of yourself, you know ya doodle a couple of bears at a cocktail party talking about the stock market. you think you're doing comedy. mr. elinoff: actually that's not bad.. elaine: oh! really (laughs) well you know..... i have others jerry: sally, i can't believe you're already doing a one-woman show? sally: no, no.. it's just a little performance piece i wrote... you know what? you really inspired me,okay, a tear. jerry: ah! there you are.(kramer motions silence) jerry: aw.. right, code of silence.. how's that going?....ha!!... sally: hi everybody think you're really going to like this 'cos it' about me...all right it's not just about me it's about me and this guy; jerry seinfeld. who i like to call; the devil...okay, okay so.. i run into this jerry on the street and he says to me " sally, you stink, you should give up acting." oh! i'm doing jerry now so you've got imagine i have ; horns, a tail and hooks instead of feet. (big laughs from the audience and kramer is cracking up) jerry: (to kramer) oh! shut up!!! elaine: she does a full hour about how you're the devil .i got to go see this thing. jerry: good luck, it's sold out for the next three weeks. elaine: well i bet i can get in once i mention i'm from ...the new yorker. jerry: the new yorker? elaine: yes, the new yorker, i've met with their cartoon editor and i got him to admit that that cartoon ...made no sense.... jerry: wow! good work, nancy drew elaine: then we ended up going out to lunch and he had some great gossip about james thurber. jerry: nodding off... elaine: ....and he said i could submit some of my own cartoons. jerry: wow! that's incredible......but you don't draw. elaine: i do to. jerry: what, your sad little horsies, the house with the little curl of smoke, the sunflower with the smiley face. the transparent cube... (as she leaves) elaine: it's better than your drawings of naked lois lane. jerry: where did you see that? those are private!!! sally: jerry, sorry i'm late. channel nine is doing a piece on my show. isn't that great? do you hate me? jerry: no,no i tought the show was terrific. i was just wondering if you have to keep saying jerry seinfeld is the devil. sally: well...that is the title. jerry: i know but i thought that maybe you could mention how i apologized then encouraged you to stick with it. sally: you know i workshopped that and.. snoozers!!! he he he....but i'll tell you what i'll think... it's all a journey. jerry: you got a little shmootz there (picks something on her sweater) newman: excuse me miss weaver, oh! my god it is you! i.. i've seen your show six times.. jerry: what a surprise. newman: aahh! you're great,it's great, it's so great to see a show that's (looks at jerry) about something. driver: where to? george: (we hear him think) my friends are idiots, she doesn't look like jerry. she doesn't look like anybody. and so what if does look like jerry,what does that mean?. that i could have everything i have with jerry but because it's a woman i could also have sex with her....and that somehow that would be exactly what i always wanted.....she doesn't even look like jerry.. sally: you know i really do look like your friend jerry. george: i know.... tv announcer: thanks for watching nine news. we leave you tonight with a scene from sally weavers one woman show. sally: ok so i go to meet jerry seinfeld at this horrible coffee shop right? and he's like "hey stop doing your show." and i'm like, hello! it's a free country. so then he goes." okay shmootsie" and he starts pulling at my sweater right?. he's getting, you know, hands across america. jerry: there really was shmootz on i didn't try to grab her sally: ...and this is what he looks like when he's eating... jerry: get out of my house!!. elaine: well boys, i did it. i had to stay up all night but i finally came up with a great new yorker cartoon. jerry: i'd stayed up all night i'd fixed myself up a little before i'd go out. elaine: that is not the point. jerry: some mouthwash, a hat, something. elaine: just read it! jerry: (glances at it) pretty good. elaine: pretty good? well uh! this is a gem . kramer look it....(kramer stays silent).....what? it's funny. jerry: it's a pig at a complain department. elaine: and he's saying " i wish i was taller" ha ha. see? that's his complaint. jerry: i get it. elaine: do you!!!.. because that's not a normal complaint. jerry: how 'bout if it was something like " i can't find my receipt my place's a stye. elaine: everything with you has to be so .. jokey. jerry: i'm a comedian. elaine: i wish i was taller, that's, that's, that's nice. that's real. jerry: well i got a complaint. this cartoon stinks. elaine: i'll tell you who doesn't think it stinks, the new yorker. that's right. they're publishing it in their next issue. oh! you know what i just ran into newman in the hall and he said you tried to grope sally weaver. jerry: oh! that's it i'm gonna put an end to this. elaine: the pig says "my wife is a slut." jerry: now that's a complaint. ...hello sally, yeah this is jerry,i just wanted to leave you a message that i caught your little piece on tv and.. jerry: ....i'm getting a little tired of hearing how horrible i am and would appreciate it if you would leave me out of your act all together. jerry: (from the back of the club, leaving) that's it i'm calling in the big guns. sally: to cease and desist on behalf of my client, jerry seinfeld. signed ; crybaby jerry seinfeld's lawyer. ok but i got two words for you jerry seinfeld...(censored beep)...you jerry: how could she say that on tv?.. and how did she get a cable special . i 've never gotten a cable special.....well that's it i'm not giving her any more material. we are incommunicado. (to the silent kramer on the couch beside him) ...exactly. elaine: check it out, from the new issue of the new yorker...huh!...funny isn't it? (dugan shrugs) look at it, the pig wants to be taller and what's this guy gonna say?.. he he...nothin'..he he. peterman: elaine, i'm afraid i have incurred yet another flat tire. elaine: can i fix that after lunch sir? peterman: oh! no right away, chop, chop........oh! a new cartoon....."i wish i was taller (hearty laugh) i'd like to see that complaint get rectified. (more laughs and he leaves) elaine: (to dugan ) you see? you see? smart people think this is funny and you want to know why? 'cause i wrote it. dugan: you shouldn't make fun of pigs. (he leaves) peterman: (returns) flash of lightning elaine i just realized why i like this cartoon so much. elaine: oh! do tell sir? peterman: it's a ziggy! elaine: a ziggy? peterman: that irreverence, that wit i'd recognize it anywhere. some charlatan has stolen a ziggy and passed it off as his own. i can prove it. quick elaine, to my archives. george: you know, you know what's great about our relationship?...it's not about looks. janet: it's not? george: no, can't be...for instance i remember when we first met, we had a great conversation. janet: i remember you said i was the prettiest girl at the party. george: ....but after that we really talked didn't we? janet: well,you told me how familiar i looked and that you must have seen me somewhere before. george: na....no ... this relationship he..he..has got to be about something and fast or i'm in very serious and weird trouble....hum what else happened? janet: you asked for a piece of gum because you thought your breath smelled like hummus. george: aw right yes! gum! good enough i'll take it. janet: i like gum. george: i do too. you see that's what we're about . you don't remind me of anyone and we love gum. janet: i have gum in my hair. george: i'm losin' it sally: (joining kramer) hey! your jerry's friend. you're goofy, mind if i sit. my show is going really well. have you seen it yet? you should. everybody else have and you know what? i got recognized the other day, how weird is that. i know . at first i liked the attention but it's like whoa!! take three steps back, get a life, okay. but then there wouldn't be a sally weaver without the fans, know what i mean. but who am i? anyway. i mean there's sally weaver the woman, sally weaver the artist, sally weaver the person... kramer: (loudly) now you gotta shut up!.....(sally is speechless)...i'm sorry, i..i haven't spoken in days. sally: well, lay it on me string bean. janet: let me get this gum out of my hair and then i'll be ready for bed. george: ok look, the gum isn't cutting it for me. we need to be about something else...anything..please. janet: george. george: your hair? janet: well i had to cut the gum out and i had a little trouble getting it even. so why don't you get undressed george. (george speeds out the door) george: george is in big trouble.... jerry: you ripped off a ziggy? elaine: it must've seeped up my subconscious, puddy has ziggy bed sheets....d'you read the comics today? jerry: i see that ziggy's back at the complaint department.. "the new yorker is stealing my ideas." ha ha ha see that's funny.....'cause it's real. elaine: hey look it ;sally's cable show's on (kramer turns around to leave) jerry: hey! kramer come on in. you've got to watch this, now she's got nothing. sally: (on tv) master of evil jerry seinfeld has broke off all contacts with me. jerry: that's right sister. why don't you just give up? elaine: why are you yelling at the tv? sally: ..ok get this; i heard he makes his best friend date women that look just like him.hello issues.. jerry: elaine, have you been talking to her? elaine: hey! i'm just a fan..ha ha... sally: oh and speaking of issues . guess who got a no-polish manicure and begged his neighbor not to tell anyone? jerry: (to kramer) i thought you stopped talking?? kramer: ...all right ..starting now...... jerry: you broke up with her just because she cut her hair! how short? george: like that (looking at jerry) jerry: you mean like.. (points to his hair) george: ..that. jerry: so she.. george: yes.. jerry: and you don't... george: nooo... jerry: so... george: exactly.. jerry: hmmmm... george: we...must never ever speak of this again.. jerry: no, no......(long pause . they stare at the walls) hey uh.. you want to see a movie? george: actually i think i'm gonna take a few days off (starts to leave) jerry: i think that's for the best. george: (clears throat) maura, i, uh- i want you to know... i-i've given this a lot of thought. i'm sorry, but... we, uh, we have to break up. maura: no. (sips her drink) george: (double takes) what's that? maura: we're not breaking up. (takes another sip) george: (puzzled) w-we're not? maura: no. (hands george his cup) george: all right (he smiles weakly at maura) jerry: she said no? george: she said no. jerry: what did you do? george: what could i do?! we fooled around and went to a movie! jerry: george, both parties don't have to consent to a break-up. it's not like you're launching missiles from a submarine and you both have to turn your keys. obviously, you didn't make a convincing case. let me hear your arguments. george: well, i don't really like her. jerry: that's good. george: i don't find her attractive. jerry: solid. george: i'd like to sleep with a lot of other women. jerry: always popular. george: sometimes at restaurants she talks to her food 'ooh, mr. mashed potatoes, you are sooo goood.' jerry: you have an airtight case! george: and in bed-- jerry: i'm afraid we're out of time. jerry: hey. george: what? jerry: check these out. these are jerry lewis' old cufflinks that he actually wore in the movie "cinderfella". i got 'em at an auction. george: i got some cufflinks i could've loaned you. jerry: no, jerry lewis is gonna be at this friar's club roast i'm goin' to next week. now i have an in to strike up a conversation with him. george: you already have an in. you have the same first name!... (no reaction) 'jerry'! jerry: oh, that'll intrigue him. george: well, it worked when i met george peppard last week. jerry: george peppard has been dead for years. george: well, whoever he was, he knew a lot about the a-team! glenn: so you would choose your last meal based on the method of execution? elaine: right, right. i mean, if i was getting the chair, i'd go for something... hot and spicy, you know... thai, maybe mexican. lethal injection, feels like pasta... you know, painless, don't want anything too heavy... glenn: so, um, why don't we get together some time? elaine: oh, sure! why don't you give me your number? glenn: i think it'd be better if i called you. elaine: oh. ok. maybe we could grab some lunch sometime. d-do you work around here or-? glenn: mm mm... no, not really. elaine: so, is there anything you can tell me about yourself? glenn: (seductive tone) i think you're very beautiful. elaine: (flattered) oh (laughs) that'll do! (laughs some more) jerry: what about puddy? elaine: i haven't talked to him in, like, three weeks... i think it might be over... jerry: (unimpressed) so, what's this guy about? elaine: i don't know. he wouldn't tell me his phone number, where he worked... i'll bet he's in a relationship. jerry: or he's a crime fighter safeguarding his secret identity! elaine, you could be dating the green lantern! elaine: which one is he? jerry: green suit, power ring. elaine: i don't care for jewellery on men (wags her finger disapprovingly) kramer: hey. it happened again. (puts box on counter) another robbery in the building. jerry: so you bought a cooler? kramer: no, it's a strongbox to protect my irreplaceables. elaine: and... what would those be? kramer: some taxidermy that's been in my family for generations, my tony, my... military discharge. jerry: (doubtful) you were in the army? kramer: y- b-briefly. now, i gotta find a good place to hide this key. because if somebody finds this, they hold the key to all my possessions. (makes a clicking sound) elaine: literally. kramer: (offended) 'literally'? what's that supposed to mean? (then to jerry, before elaine can answer) you mind if i hide this somewhere? jerry: no, go ahead. kramer: (stuttering gibberish, gestures that they should leave) a little... privacy, uh? jerry: oh, come on! elaine: oh! kramer: come on, jerry, this is a security issue! (elaine laughs) boy, you wouldn't last a day in the army. jerry: (walking towards door with elaine) how long did you last? (opens door) kramer: well, that's classified. elaine: hey, what if he's married? jerry: kramer?! elaine: no, the green lantern. kramer: (from inside) ok! jerry: so, you would date a married guy? that's so hacky. elaine: well, i don't know. i may never marry. it might be the closest i get. kramer: (bangs arm of couch in frustration) you peeked! jerry: this is your hiding place?! (elaine laughs) kramer: it was under a spoon! george: and so, for all these reasons, we are officially broken up. (shuts book and reaches for door) thank you, (opens door) and good night. maura: no, george, we're not. george: (gestures towards book) but i proved it! maura: i refuse to give up on this relationship. it's like... launching missiles from a submarine. both of us have to turn our keys. george: well, then, i am gonna have to ask you to turn your key. maura: (assertive) i'm sorry, george, i can't do that. george: (shouting) turn your key, maura. turn your key! elaine: so, how is a guy like you not involved? glenn: i might ask you the same thing. elaine: (in her mind) that's true, maybe he's not married. elaine: oh, that is so sweet. elaine: (in her mind, cynical) how long do i have to hold this? glenn: (seeing a woman on the street) oh, no. elaine: who is it? glenn: um, uh, no one, no one. (running with elaine into an alley) here, uh, let me show you a short cut. come on. come on. elaine: (in her mind) married. that's it, i'm chucking the flower. (she does) elaine: (shouting up) jerry! jerry! jerry: elaine, what are you doin' down there? elaine: you didn't hear me buzzing? jerry: oh, i guess it's broken! elaine: throw down your key. jerry: it's liable to bounce and go into a sewer. elaine: i'll catch it! jerry: you'll chicken out at the last second. elaine: ...yeah, you're right. well, will you at least keep me company until somebody comes out? jerry: (annoyed) all right. (after a pause) hey, you know what's weird? elaine: huh? jerry: i used to be able to have a huge meal and go right to sleep. but i can't anymore. elaine: nodding off!... well, i was right. he's an adulterer. and he's cheating on his wife with me! jerry: all right. jerry: here! i'm gonna try and fix the buzzer. elaine: (from the street) it went in the sewer! (jerry reacts) jerry: hey... kramer: (re buzzer box) what are you doin'? jerry: (waving the key) you jammed your key in here? you shorted out my intercom! kramer: (grabbing the key) you just had to go lookin' for it, didn't you? see, you hate it that i have a little secret. anything i do -- oooh, oooh! -- you gotta know all about it. you're so obsessed with me. jerry: i'm gonna go let elaine in. (kramer reaches out to stop him leaving) kramer: oo, y- what are you doing with her? (jerry ignores him and exits) jerry: (in the hallway, hearing the door lock behind him, turns back) kramer! kramer: (from inside) security issue! jerry: oh, hey. you got in. elaine: yeah, flirted with the menu guy. here. (hands him a large stack of papers) jerry: (taking the menus) oh, thanks. kramer: (clattering inside) that wasn't me! jerry: so, he's definitely married, huh? elaine: uh... jerry: boy, i would love to have been there when you told him off. jerry: oh, come on! elaine: well, he could be a superhero! you should've seen him run. kramer: (from inside jerry's apartment) ok! (door opens) kramer: all right, jerry. let's see if you can get it in your head that this is not an easter egg hunt for your childish amusement. (shuts door) george: (from the street below jerry's window) jerry! jerry: (out of window) george, the buzzer's broken! i'll come down! jerry: (putting on his coat to go downstairs, he finds the key in his coat pocket) i believe this belongs to you. kramer: heyyyy! (bangs the table in frustration and grabs the key) jerry: (opens the door for george) where did you get that? george: (puzzled) i bought it. (enters lobby) phil: (walking up to get inside after george) thanks. jerry: (barring the way) i'm sorry. i-i don't know you. phil: what? jerry: there's been some robberies in the building. i-i can't let you in. phil: but, i live here! i ran out to buy some birdseed, and-and i forgot my key. george: sounds like a scam. (takes a bite from the granola bar) jerry: (shakes his head) i'm very sorry. (closing the door on phil. jerry smiles and shrugs apologetically as phil stares at them through the glass) george: so, i broke up with maura. it's done. i'm out. jerry: great, you're lonely and miserable again. (presses button to call elevator) george: feels right. (cheerfully takes another bite) jerry: is that guy still there? (they are side-on to phil who is in the background, still pressed against the glass, aghast) george: (looking at the door) he's starin' at us. jerry: don't look at him. (phil starts to knock on the door) jerry: we don't hear that. (they enter the elevator) george: want a bite? jerry: nooo, i don't. (the elevator doors shut) george: (in his mind) i think that ginger ale at the coffee shop is just coke and sprite mixed together. how can i prove it? ah! can't, dammit. (knock at door. george goes to open it) maura: (cheerily) hey, honey. (she sweeps in, shuts the door behind her, and sits down) george: (still by the door) what? m-maura, what are you doin' here? i ended this relationship... twice! maura: george, you didn't mean that. that was just a fight. george: why does it always seem like i'm the only one working at this break-up? maura: george, i listened to your arguments, and they were rambling and flimsy. i'm not convinced. come on, get dressed and let's get some dinner. george: (pauses to consider this then gives in) all right. (starts heading towards bedroom) maura: (picking up the apple) eww, mr. apple. you have a brown spot. (george freezes, shakes his head, and continues walking) elaine: so, this is your little... love nest? (laughs) glenn: it's nothing special, just a little place i keep. elaine: oh. glenn: ah, should i light a fire? elaine: oh, that sounds... romantic. glenn: i'm having a little problem with the heat. um, i got some cardboard out here. (climbing through the window) elaine: (in her mind, anguished) this is wrong. i should go. (there's a knock at the door) glenn: (leaning in) can you get that, please? elaine: oh, sure. woman: where's glenn? elaine: (guiltily) ah... you're the woman from the street, and i am so sorry. you know, i'm not really a home-wrecker. i-i-i-i-i thought he was a superhero. i swear. woman: lady, i'm not his wife, i'm his welfare caseworker. is he home? elaine: this is his home? woman: yes. elaine: so, he's... woman: (nodding) poor. (elaine mouths 'oo') glenn: (coming back through the window carrying an old chair) i think this will burn! jerry: so you do live here. phil: (sulkily) yeah. (jerry has an anguished expression as the elevator doors shut) jerry: you live on this floor? phil: yeah. jerry: (arriving at apartment, sees phil start to open his apartment door, only one door down from kramer's) so you live right... there. phil: yeah. (enters his apartment) jerry: so i guess i'll s-- elaine: he wouldn't give me his number because he doesn't have a phone. (unwrapping a lollipop) he's not married. he's poor. (puts lollipop in her mouth) jerry: is he wretchedly poor? does he wear one of those barrels with the straps? elaine: he probably busted it up and burned it for heat. jerry: so, when are you giving boxcar willie his walking papers? elaine: how can i end it over money? i feel bad. jerry: well, let's think. have you ever dealt with the poor in any other situation? elaine: yes. there was this homeless guy who used to urinate on our garbage cans. jerry: good. how did you handle that? elaine: well, we gave him a few bucks, and... now he goes in the alley across the street. jerry: same situation. pay him off, and you're clean. elaine: well, i am not paying glenn off to get out of this relationship. wh-what am i supposed to do, just walk into his hovel, and hand him... well, how much do you think it would be? george: (entering monk's) hey. jerry: hey, where have you been? george: (sitting down next to jerry) seeing maura. apparently, i was unable to break up beyond a reasonable doubt. elaine: if only he could have been cheating on his wife, you know, things would have been so much simpler. george: who's this, blue arrow? elaine: green lantern. jerry: we found out his super power was lack of money. elaine: (not amused) all right. jerry: he's invulnerable to creditors. elaine: (annoyed) we get it. (george is laughing) jerry: he's the got-no-green lantern. elaine: thank you. (gets up from her seat) george: hey, elaine. maybe his girlfriend is lois loan. elaine: (leaning over to george) ooh, (fake laugh) well crafted. (exits) george: hey, maybe this cheating thing is what i could use to ditch maura. jerry: sure, just tell maura you're having an affair. george: she's like a district attorney. if it's not the truth, i'll break under the cross. i actually have to do it. jerry: (fidgets like he has no room with george next to him)... could you move over there?! george: hey, you know, there's this secretary at work that always had a crush on me. jerry: really? how come you never pursued her before? george: she's too tanned. it's the middle of the winter, she's like a carrot. elaine: (coming back into monk's) did i leave my glasses here? jerry: (to elaine, still joking) he can wipe out his checking account in a single bounce! elaine: (leaving again) keep 'em! (george and jerry savour the joke) kramer: heh. jerry: there's a giant parrot in the hallway. kramer: it's phil's. jerry: who? kramer: our neighbor that you... turned against. (jerry reacts) anyway, i told him it'd be fine with us if he wanted to let it stretch its wings out in the hallway. jerry: what'd ya tell him that for? kramer: because since you've been playing god with the front door, i've been tryin' to smooth things out, jerry. in fact, i was just hanging out at his place. jerry: really? what's it like? is it nicer than mine? where does he have the couch? kramer: well, i don't know, but the key problem is solved. i hid it at phil's... jerry: he let you? kramer: no, he doesn't know. see, i hid it without tellin' him. so, uh, (starts walking towards door) phil won't be compulsively looking for it like some people... you! (points at jerry) george: so, you... you say you've been in the city all winter? loretta: i was in maine for a couple days. (george looks puzzled at how she's so tanned) george: well... (shuts door) heeere we are (puts down his coat and chuckles) loretta: george, i've always fantasized about jumping into bed with you. george: (excited) ho ho! (gestures and steps towards bedroom but loretta walks the other way to the couch) loretta: but... i don't want to spoil things by sleeping with you too soon. george: (walking back) are you sure? 'cause it could really help me out of a jam. loretta: i want to build something with you, george. george: oh, not more building. loretta: (sighs) and i won't take no for an answer. (she sits down) george: no? loretta: no. george: (after hesitating, resignedly) all right. (he sits down and smiles unconvincingly at her) elaine: so, uh, what are we doing in this alley, anyway? glenn: it's a surprise. elaine: (giggling) oh. elaine: what are you doing? what is that? glenn: it's a bag of donuts. elaine: it's garbage. glenn: no, no, no, no. when they make the new ones, the old ones come out... right here. elaine: (has had enough) all right, that's it. (rummaging in purse, pulls out her chequebook) how do you spell your last name? glenn: (still looking through the garbage bag) it's a bear claw! you have no idea how rare this is. elaine: (writing out cheque) i'll make it out to cash. how 'bout two hundred bucks? two-fifty? glenn: (eating the bear claw) oooh! elaine: make it three hundred. glenn: (re the bear claw) you know, elaine, you're the bear claw in the garbage bag of my life. (breaks bear claw in half and offers her a piece) elaine: (touched, she takes it) aw, glenn. jerry: hi. is phil here? phil: (from inside the apartment) yeah, i'm here. (comes to the door. the caged parrot is visible in the background) jerry: phil... hi. i-i know we got off to kind of a bad start. but your bird, which is lovely... by the way, made a mess on my door. phil: and? jerry: i thought maybe you'd clean it up, or your maid, there. phil: that's my wife. jerry: (nodding awkwardly for a moment) all right, i think we're done here. (jerry leaves and phil shuts the door darkly) jerry: (in a tuxedo) so, you're in a relationship with a woman you don't like, and you're having an affair with a woman that won't have sex with you. george: this isn't going well. jerry: i cannot find my jerry lewis cufflinks. without 'em, i have no in! george: you don't need the cufflinks! you have the same name! (no reaction) 'jerry'! (heads for door, grabbing his coat) jerry: where are you goin'? help me look! george: (opening door) it's a big night. i'm, uh, ice skating with one, and going to a staged reading of "godspell" with the other. jerry: which is with who? george: (shaking his head, weary) it doesn't matter. (he leaves) kramer: (entering jerry's apartment, in his own tuxedo) whoo! boy. yeah, you clean up nice. jerry: i can't go until i find my cufflinks. kramer: yeah, see? i knew you would lose 'em. that's why i took 'em out of your dresser drawer and put 'em in my strongbox. jerry: you're a lifesaver. would you get them, please? kramer: yeah, we'll stop by phil's, we'll pick up the key, uh? kramer: hey, what's going on? phil: fredo is dead. (his wife sobs) jerry: that strange portuguese guy that lives next-door to the incinerator? phil: no! my bird. we just got back from the pet cemetery. (starts opening door) jerry: oh, phil... mrs. phil. i'm so sorry. phil: oh, i'll bet you are! they told us he was poisoned! something in his food. jerry: but i, i didn't, i-- jerry: kramer, they think i killed fredo! (kramer gestures sympathetically) and who buries a bird? kramer: yeah. just give it to the portuguese guy, and he... puts it in the incinerator. jerry: just get the key and let's get out of here. kramer: yeah, yeah. (goes to phil's door) you know, it's a... it's a funny thing about that bird dying. i hid the key in fredo's food dish. whoo! that's a weeeird coincidence. jerry: kramer!? (grabbing kramer's arm roughly, pulling him back as he's about to knock) kramer: what? jerry: you killed fredo! kramer: (high-pitched) well, fredo was weak and stupid! he shouldn't have eaten that key! jerry: kramer, i need those cufflinks, but now they're in the box, and the key is in the bird... what are we gonna do? kramer: you just answered your own question. jerry: (frowning in realization) oh, no! kramer: (nodding) i'll get the shovel. (walks towards his apartment, as jerry grimaces at the prospect) george: the, uh, actor that played jesus made some odd choices. loretta: (shaking head, confused) what? george: i mean, uh... i had fun ice skating. loretta: oh. (she smiles, reassured, and nods) maura: george? george: maura. (starts acting dramatically, looking from maura to loretta and back again) oh, my god! what are you doing here?! maura: you told me to meet you here for lunch. george: (standing up, still acting) uhh! i'm caught in my own web of lies! (holds his hands up in surrender) maura: (calmly ignoring george) i'm maura. (shaking loretta's hand and smiling) loretta: (to maura, also friendly) i'm loretta. you want to join us? (maura nods and sits down next to her) george: (laughs hysterically, gesticulating wildly) this is all blowing up in my face! my serious girlfriend, and my torrid love affair have accidentally crossed paths. i have ruined three lives... (grabbing coat) well, i understand if you never want to see me again, so... (points towards door) maura: george, what we have is too important. we can work through this. loretta: so can we. george: (astounded) what? so, this is still not over? maura: no. george: you? loretta: no. george: all right. (throws his coat back down on the seat and sits down opposite them) glenn: elaine, wow, a tv, a stereo? elaine: yeah, and i got you a cord of wood, so you won't have to burn 'em. glenn: oh, my god, alison. you're home early. elaine: who is this? alison: (arms crossed, angry) his wife. elaine: you're... poor and married? glenn: looks like it. alison: who the hell are you? elaine: i guess i'm... lois loan. jerry: kramer, i can't believe we're grave robbers. kramer: (reading a tombstone) 'man's best friend'. jerry, i want something like that on my tombstone. jerry: (seeing fredo's tombstone) oh, my god. here he is. i don't want to dig him up! (hands the shovel to kramer) kramer: (sighs) all right, then you're the one getting the key out of him. jerry: (grimaces and takes the shovel back) i'll dig. kramer: listen, i heard that lassie #3 is buried around here. i'm gonna go check it out. jerry: (hitting metal with the first strike of the shovel) well, that was easy. phil: all right, honey, one last look, then you have to let fredo rest in peace. jerry: (with a wild expression) hey, kramer! i dug fredo up, now let's cut him open! phil: (horrified) oh, my god! jerry: (after a very awkward pause, cheerily) hey, neighbor. george: all right. i'm gonna try givin' them fifty-five dollars each... (to elaine) what do you think? elaine: give me forty, you'll never see me again. elaine: (to jerry) so, what are you gonna do? are you gonna live here, or are you gonna move out, or what? jerry: (still in tuxedo, tie undone) ah, i'll just take the fire escape to get in and out of the building. george: so, what's in the cooler? (flips open the lid) kramer: oh. well, would you look at that. (puts a gun-shaped hand to his head and goes 'pop') i guess i forgot to lock it. jerry: you mean it was open? we desecrated a pet cemetery for nothing? kramer: well, this is one for the books, huh, jerry?... reeeally one for the books! george: when are they gonna learn that any news about china is an instant page-turner? (seeing jerry with a small black device) what's that? jerry: it's a wizard electronic organizer for my dad. i'm goin' to florida for his birthday. george: how much was it? jerry: two hundred. but i'll tell him it's fifty. he doesn't care about the gift. he gets excited about the deal. george: where are you gettin' a wizard for fifty dollars? jerry: ah, i'll tell him i got it on the street, and maybe it's hot. that's his favorite. george: i got a message from the rosses at work today. jerry: susan's parents? when's the last time you talked to them? george: at the funeral, give or take. you know, deep down, i always kinda felt that they blamed me for susan's death. jerry: why, because you picked out the poision envelopes? that's silly. elaine: (entering monk's with her boyfriend) oh, um... darryl. these are... people i know. jerry, george. darryl: nice meeting you. ah, i gotta run, elaine. i'll see you later. elaine: ok. jerry: still no puddy? elaine: uh, i think his answering machine's broken, so i just gave up. well, what do you think? jerry: what? about you datin' a black guy? what's the big deal? elaine: what black guy? jerry: darryl. he's black, isn't he? elaine: he is? george: no, he isn't. jerry: isn't he, elaine? elaine: you think? george: i thought he looked irish. jerry: what's his last name? elaine: nelson. george: that's not irish. jerry: i think he's black. george: should we be talkin' about this? elaine: i think it's ok. george: no, it isn't. jerry: why not? george: well, it would be ok if darryl was here. jerry: if he's black. elaine: is he black? jerry: does it matter? elaine: no, course not. i mean, i'd just like to know. jerry: oh, so you need to know? elaine: no, i don't need to know. i just think it would be nice if i knew. waitress: should i take that? jerry: (getting out his wallet) uh, one second. elaine: (looking in her purse) oh, here. george: (pulling out some money) uh, yeah. hang on. just... yeah. george: (on the phone) uh, mrs. ross? it's-it's george. mrs. ross: uh, who? george: george costanza. susan's, uh, friend? long time no speak. mr. ross: (walking by mrs. ross) we're all out of lime juice. i told that woman to buy more. mrs. ross: uh, george, the susan ross foundation is having an event this weekend. george: oh, i just, uh, leased a house out in the hamptons, and i have got to get out there this weekend and sign the papers. mr. ross: (again walking by) i'm goin' back to bed. mrs. ross: thank you for calling, george. george: oh, sure. i mean, after all, you were almost my, uh... ok, i gotta go. jerry: house in the hamptons? george: well, you know, i've been lyin' about my income for a few years. i figured i could afford a fake house in the hamptons. kramer: (enters) well. jerry: hey. kramer: well, grab a cigar, boys. yeah. it's time to celebrate. jerry: wow. what are we celebrating? kramer: uh, you remember my coffee table book? jerry: with the little legs? kramer: that's the one. a big hollywood so-and-so optioned it for a movie. george: how are they gonna make that book into a movie? kramer: you remember that photo book on toy ray guns? george: yeah? kramer: independence day? george: oh. jerry: how much are they payin' you? kramer: let's just say that i don't have to worry about working for a while. a long while. jerry: that's funny because i haven't seen you working for a while. a long while. kramer: yeah, and you're not going to, because i'm hanging it up. boys, i'm retiring. jerry: from what? kramer: from the grind. i mean, who needs it? i mean, i've accomplished everything i've set out to do. jerry: (seeing that kramer has a new watch) what's that? kramer: oh, i bought myself a little retirement gift. gold watch. jerry & george: ooh! kramer: well, it's not really gold. jerry & george: aww. elaine: (as darryl opens his door) hey. darryl: hey. elaine: great music. darryl: oh, it's my neighbor. they blast that stuff twenty four hours a day. i hate it. darryl: yo, you! turn it down! elaine: oh, wow, these are nice. do they have any cultural significance? darryl: they're... african. elaine: right. african. darryl: well, not africa, actually. south africa. elaine: south africa. darryl: my family used to live there, but, uh, we got out years ago, for obvious reasons. you know how it is. elaine: maybe. george: (to a street vender selling hot dogs) you must hate hot dogs, huh? or else, you, uh, you really like 'em and that's why you, you do this. george: i'll tell ya, if i had one of these things, i'd be eatin' hot dogs all the time. vender: are you gonna buy a hot dog or not? george: mmm... no. morty: (jerry comes out of his room, having just woken up) rise and shine, sleepy head! ha ha! jerry: it's 530 in the morning! helen: we let you sleep in. jerry: (handing his dad a gift) well, as long as i'm up. dad, i got you a birthday present. here. happy birthday. morty: aw, jerry. i should be buyin' you presents. jerry: what does that mean? helen: leave your father alone. it's his birthday. morty: oooh! heh heh! it's a radar detector. jerry: radar detector? i've never seen you go over twenty miles an hour. you're like the grand marshall of the rose bowl parade. it's a wizard organizer. morty: this looks like too much money. jerry: nah, i got it from a guy on the street. it was, like, fifty bucks. morty: you think it's hot? jerry: could be. morty: attaboy! helen, jerry got me a hot wizard computer! helen: i'm right here. jerry: and you can do everything with it. you can get e-mail, fax, there's a calculator. morty: so, i can use it in the restaurant to figure out the tip? jerry: yeah, i guess. but the really cool thing is the daily planner. morty: helen, we got into restaurants and figure out the tips. helen: jerry, you're getting your father too excited. kramer: (entering the condo, and going to the fridge as if he's a neighbor) hey, buddy. when'd you get here? jerry: kramer, what are you doing here? kramer: i told you i was retiring. i moved in next door. helen: mr. kornstein died, and it's a beautiful apartment. kramer: yeah, your, uh, folks said it was for rent, so i jumped on it. jerry: kramer, you can't live down here. this is where people come to die. jerry: (getting looks from his parents) not you. older people. helen: don't eat cookies for breakfast! i'll fix you something. how 'bout a feta cheese omelette? kramer: mmmm, that sounds great, mom. jerry: if you feed him, he'll never leave. helen: we don't have any feta. how about cottage cheese and egg beaters? kramer: (immaturely) i guess. jerry: i can't believe this. kramer: i know, i know. don't i look more relaxed? elaine: so, george, do you have any thoughts on this darryl situation? george: actually, i did have a thought. elaine: oh. george: why don't you just ask him? elaine: (rudely and giving him a 'duh' look) because, if i ask him, then it's like i really want to know. george: maybe he's, um... mixed. elaine: is that the right word? george: i really don't think we're supposed to be talkin' about this. elaine: yeah. george: (standing up) i'm just gonna go to the bathroom. elaine: (starting to leave) you know what, i'm leavin'. george: yeah. elaine: i'll just talk to jerry when he gets back. (seeing the rosses entering monk's) oh. mrs. ross, mr. ross. mrs. ross: oh, you're george's friend. mr. ross: we saw him in the city this weekend. uh, what happened to his place in the hamptons? elaine: (laughing uproariously) the hamptons? george costanza? i, uh... i don't think so. have a good one. george: rosses. mr. ross: george, we were just talking about you. george: well, sorry i missed that, uh, charity thing. but this was one of those truly glorious hampton weekends that you always hear about. mrs. ross: really? george: yeah, i may move out there. (getting 'yeah, right' glances from the rosses) i mean it, i'll do it! ok, i'll see ya later. keep it real! morty: (eating lunch with helen and jerry) another fine meal, and now for my wizard tip calculator. jerry: dad, it's got lots of other functions. morty: don't worry. i'll get to the other functions. (trying to open it) i can't get it open. helen: yay! jerry got it open. morty: the service was slow. and god forbid they should refill the water. how does 12.4% sound? jerry: (looking at the wizard) well, your tip is four dollars and thirty-six point six six six six cents. morty: we'll round down. helen: jerry, it was so nice of you to come down here on your father's birthday. you've helped take his mind off the condo elections. jerry: oh, right. you can't run for condo president because you were impeached at the other condo. morty: i was never impeached! i resigned! helen: even so, the press would bury him! jerry: what press? helen: the condo newsletter, the boca breeze. morty: pinko commie rag. old man: (coming up to the three seinfelds) hey, morty. your boy here, he just got a date with that young aquacise instructor. jerry: she's fifty. old man: you know what he's got? he's got charisma. that's my man. kramer: all right, i'll see you guys. old man: yeah. kramer: yeah. kramer: (taping morty's glasses) morty, what're you lookin' at? morty: i'll tell you what i'm looking at the next condo president of del boca vista, phase three. kramer: hmm. darryl: elaine, thank you for the wizard! darryl: wow, it's got so many functions. elaine: yeah, yeah. forget about all that. first thing is first. warranty information. name, we know that. uh, hobbies. skiing, racquetball... darryl: well, i don't do that stuff. elaine: it doesn't matter, it doesn't matter, it doesn't matter. um. oh, here's one race. darryl: isn't that optional? elaine: it certainly should be. it's nobody's damn business! but they really would like to know. darryl: all right, i'm... asian. elaine: what? darryl: just to mess with 'em. elaine: laughing awkwardly oh. right. good one. darryl: average income, uh... over a hundred thousand. elaine: really? darryl: does that matter? elaine: no, but... it is very nice to know. jerry: (in his parent's condo, on the phone with elaine) so did you figure out darryl's... you know. elaine: (in jerry's apartment) ah, i've given up. so, now we're going to a bunch of spanish restaurants. i figure that'll cover us either way. jerry: (as kramer walks by) you're a master of race relations. elaine: hey, so kramer's running for president of the condo? jerry: yeah, it's all my father's doing. jerry: he wants to install kramer in a puppet regime and then wield power from behind the scenes. preferably from the sauna in the clubhouse. elaine: oh, heh heh heh. who are they running against? jerry: common sense and a guy in a wheelchair. george: (entering jerry's apartment) jerry? elaine: (to george) he's still down with his folks. george: (to elaine) what are you doin' here? jerry: (overhearing the other two elaine, elaine-- elaine: (to george) i'm gettin' his mail. jerry: (overhearing the other two) oh, no. george: (to elaine) he asked you to get the mail? elaine: (to george) mm-hmm. george: (taking the phone from elaine) jerry, why is elaine getting your mail? jerry: george, listen to me. i have a very important job for you. i want you to come by twice a day and flush the toilet so the gaskets don't dry out and leak. elaine: (trying to understand what they're talking about) what? george: what about the mail? jerry: this is far more important. you must exercise the gaskets, george. george: (hanging up) all right, jerry. i'll do it. see ya. george: so, i ran into the rosses again. elaine: oh, right, at the coffee shop. where did they get the idea that you have a place in the hamptons? george: from me. elaine: what did you say? george: i told them i have a place in the hamptons. what did you say? elaine: i told them you didn't. and i laughed and i laughed. george: so, they knew? those liars! elaine: but you lied first. george: yeah, but they let me go on and on all about the hamptons, they never said a thing! you don't let somebody lie when they know you're lying. you call them a liar! elaine: like you're a liar! george: yes. thank you! is that so hard? elaine: so, this is over, not over? i'm bettin', not over. george: hmm-hmm, not by a long shot. i'm calling up the rosses and inviting them up to my non-existent place in the hamptons. then we'll see who blinks first. elaine: haven't you done enough to these people? george: this is not about them. now, if you'll excuse me, i have to exercise jerry's gaskets. kramer: (to a room) vote for kramer. (to a man walking by) cosmo kramer. i'm running for condo president. i'd like your vote. thanks. (to an old woman) remember, ma'am, a vote for me, is a vote for kramer. old woman: will you cut my meat? kramer: gladly. waitress: (to darryl) coffee? darryl: sure. waitress: (to darryl) are you black? or should i bring some cream. darryl: i'm black. (re-thinking) oh, you know what? bring a little cream. (seeing a couple gesturing towards him and elaine) did you hear that? elaine: what? darryl: god, there are still people who have trouble with an interracial couple. elaine: interracial? us? darryl: isn't that unbelievable!? elaine: yes, it's awful! they're upset because we're an interracial couple. that is racism! darryl: i don't feel like eating. elaine: me neither. well, maybe this turkey club. george: so... here i am. ready to take you to the hamptons. mrs. ross: sounds grand. george: do you have your bathing suits? mr. ross: it's march. george: speak now, or we are headed to the hamptons. it's a two-hour drive. once you get in that car, we are going all the way... to the hamptons. all right, you wanna get nuts? come on. let's get nuts! jerry: (in his parent's condo, to his father, who's in another room) hey, dad. you know you can program this thing to beep every time you need to take a vitamin. (as kramer comes walking out in a retirement-like athletic sweatsuit) dad, you look so different. kramer: oh, no. we're campaigning, jerry. to rule the people, one... must walk among them. morty: (coming into the hall) this is the home stretch. tomorrow's the election! kramer: right. yeah. the polls close after dinner, three o'clock. but then when we win, the celebration goes all night until the break of eight p.m. jerry: you know, you can put that whole schedule right in your daily planner. morty: daily what? helen: (coming into the condo) have you read today's boca breeze? kramer: (looking at the newsletter) hey, look at that. picture of me, huh? (reading out loud) candidate cosmo kramer caught barefoot in clubhouse. morty: barefoot in the clubhouse? don't you realize this is against the rules. kramer: well, i couldn't find my shoes. jerry: kramer, these people work and wait their whole lives to move down here, sit in the heat, pretend it's not hot, and enforce these rules. helen: who wants hot chocolate? kramer: oh, yeah! me. morty: this is a huge scandal! we need damage control. kramer: all right, look. people seem to like those tip calculators, huh? jerry: wizards! kramer: yeah, well, how 'bout if we give one out to every member on the condo board. jerry: kramer... morty: there are twenty people on the board. thank god you can get that deal. kramer: payoffs. now we're playin' politics. all right, what do we next, morty, huh? wiretaps, slush funds? morty: (rushing to his bedroom) first, i need a nap. helen: (running after him) oh, i'll get your electric blanket! jerry: kramer, i can't get that many wizards. kramer: well, what about your deal, huh? jerry: i didn't have a deal! they're two hundred dollars a pop. what do i do? kramer: well, don't worry about it. i know a guy. jerry: down here? kramer: yeah, bob saccamano's father. mrs. ross: tell us more. george: you want to hear more? the master bedroom opens into the solarium. mr. ross: another solarium? george: yes, two solariums. quite a find. and i have horses, too? mr. ross: what are their names? george: snoopy and prickly pete. should i keep driving? mrs. ross: oh, look, an antique stand. pull over. we'll buy you a housewarming gift. george: (chuckling to himself) housewarming gift. (swerving the car to go to the antique stand) all right, we're taking it up a notch! waitress: (handing elaine a menu) here you go. elaine: (to the black waitress) long day? waitress: yeah, i just worked a triple shift. elaine: i hear ya, sister. waitress: sister? elaine: (as darryl comes into monk's) yeah. it's ok. my boyfriend's black. here he is. see? darryl: hi, elaine. elaine: hey. waitress: he's black? elaine: yeah. darryl: i'm black? elaine: aren't you? waitress: (leaving) i'll give you a couple minutes to decide. darryl: what are you talking about? elaine: you're black. you said we were an interracial couple. darryl: we are. because you're hispanic. elaine: i am? darryl: aren't you? elaine: no. why would you think that? darryl: your name's benes, your hair, and you kept taking me to those spanish restaurants. elaine: that's because i thought you were black. darryl: why would you take me to a spanish restaurant because i'm black? elaine: i don't think we should be talking about this. darryl: so, what are you? elaine: i'm white. darryl: so, we're just a couple of white people? elaine: i guess. darryl: oh. elaine: yeah. so do you want to go to the gap? darryl: (leaving with elaine) sure. kramer: (having lunch with jerry and his parents) oh, well... i handed out all the wizards. polls close in one hour. whoo hoo hoo! i think we've got this baby all sewn up, huh? oh, uh, there was an extra one. norman burgerman, he won't be leavin' any tips where he is. jerry: aw. morty: congratulations, mr. president. kramer: congratulations, mr. puppet master. old man: hey, morty, what's wrong with these tip calculators? morty: what are you talking about? old man: it's overtipping. i just left five bucks for a blt. morty: this isn't a wizard, it's a willard. jerry: a willard? saccamano, sr. screwed me! old man #2: mine doesn't have a seven! old man #3: i'm ruined! morty: jerry, why didn't you get them wizards? jerry: because a real wizard's two hundred dollars. morty: you didn't have a deal? jerry: no deal. not hot. old man: morty, you, and kramer, you're finished. kramer: what? old man: everyone vote for the guy in the wheelchair. kramer: (getting up to leave) well, the people have spoken. well, that's it for me. i'm, i'm headin' back to new york. jerry: dad, i'm sorry. morty: you should be! how could you spend two hundred dollars on a tip calculator?! jerry: it does other things! mr. ross: where are we, george? george: almost there. mr. ross: well, this is the end of long island. where's your house? george: we, uh, we go on foot from here. mr. ross: all right. george: there's no house! it's a lie! there's no solarium. there's no prickly pete. there's no other solarium. mr. ross: we know. george: then, why? why did you make me drive all the way out here? why didn't you say something? why? why? why? mrs. ross: we don't like you, george. mr. ross: and we always blamed you for what happened to susan. george: oh. mr. ross: all right! let's head back. puddy: alright, be careful with the car, babe. elaine: yeah, yeah. puddy: and don't move the seat, i got it right where i like it. elaine: goodbye? puddy: two and ten, babe. elaine: okay. puddy: don't peel out. elaine: i won't. (elaine peels out and turns on the car stereo. she hears: "jesus is one, jesus is all, jesus picks me up when i fall..." elaine changes the stations but all of the presets are set to religious radio stations; "and he said unto abraham...", "amen! amen!", "so we pray...", "saved!", "jey-sus!" she turns off the radio.) elaine: jesus? kruger: according to our latest quarterly thing,kruger industrial smoothing is heading into the red. or the black, or whatever the bad one is. any thoughts? george: well, i know when i'm a little strapped, i sometimes drop off my rent check having forgotten to sign it. that could buy us some time. kruger: works for me. good thinking, george. co-worker #1: alright, george. co-worker #2: way to go man. george: or we don't even send the check and then when they call, we pretend we're the cleaning service. heh heh. "hello? i sorry, no here kruger." kruger: are you done? silly voices, c'mon people, let's get real. co-worker #1: good one. co-worker #2: that was bad. george: i had 'em, jerry. they loved me. jerry: and then? george: i lost them. i can usually come up with one good comment during a meeting but by the end it's buried under a pile of gaffs and bad puns. jerry: showmanship, george. when you hit that high note, you say goodnight and walk off. george: i can't just leave. jerry: that's the way they do it in vegas. george: you never played vegas. jerry: i hear things. elaine: here's one. i borrowed puddy's car and all the presets on his radio were christian rock stations. george: i like christian rock. it's very positive. it's not like those real musicians who think they're so cool and hip. elaine: so, you think that puddy actually believes in something? jerry: it's a used car, he probably never changed the presets. elaine: yes, he is lazy. jerry: plus he probably doesn't even know how to program the buttons. elaine: yes, he is dumb. jerry: so you prefer dumb and lazy to religious? elaine: dumb and lazy, i understand. george: tell you how you could check. elaine: how? george: reprogram all the buttons, see if he changes them back. you know? the old switcheroo. jerry: no, no, the old switcheroo is you poison your drink then you switch it with the other person's. george: no, it's doing the same thing to someone that they did to you. jerry: yeah, elaine's gonna do the same thing to puddy's radio that the radio did to her. george: well that's the gist of it! elaine: quiet! so where is this sophie? jerry: oh, she's picking me up in a few minutes. elaine: how long have you two been together? jerry: i dunno. since the last one. oh, here she is. you wanna meet her? elaine & george: nah. george: by the way, how did puddy get back in the picture? elaine: i needed to move a bureau. kramer: hey jerry, you got any pepper? mickey: hey jerry. jerry: hey mickey. check the pepper shaker. kramer: yeah. (inhales some pepper then sneezes violently) see? it should sound like that, something like that. mickey: aah-choo. kramer: a little wetter. see, i didn't believe it. jerry: what's with the fake sneezing? kramer: yeah, we're going down to mt. sinai hospital, see they hire actors to help the students practice diagnosing. mickey: they assign you a specific disease and you act out the symptoms. it's an easy gig. jerry: do medical schools actually do this? kramer: well the better ones. alright, let's practice retching. kramer & mickey: huaahhh!! jerry: i think the phone is ringing. kramer & mickey: huaahhh!! jerry: would you hold it a second?! thank you, will you get out of here with that stuff? kramer: mickey, dts. jerry: hello? sophie: hey. it's me. jerry: elaine? sophie: no, it's me. jerry: george?? sophie: jerry, it's sophie. i can't believe you don't recognize my voice. jerry: oh, i knew it was you, i was joking. i'm a comedian. kramer: you got any ipecac? jerry: ipecac? kramer, i really think you guys are going too far with this. kramer: no, mickey, he swallowed twelve aspirin. jerry: did he overdose? kramer: no, it's just too much. kruger: ...and it gets worse. the team working on the statue in lafayette square kind of over-smoothed it. they ground the head down to about the size of a softball, and that spells trouble. george: alright, well why don't we smooth the head down to nothing, stick a pumpkin under its arm and change the nameplate to ichabod crane? george: (getting up and leaving) alright! that's it for me. goodnight everybody. dr. wexler: in your packet you will find the disease you have been assigned and the symptoms you will need to exhibit. mickey: bacterial meningitis. jackpot! kramer: gonorrhea? you wanna trade? mickey: sorry buddy, this is the "hamlet" of diseases. severe pain, nausea, delusions, it's got everything. man: sure. kramer: okay, what do you got? man: the surgeon left a sponge inside me. kramer: good luck with that. george: i knew i had hit my high note so i thanked the crowd and i was gone. jerry: what did you do the rest of the day? george: i saw "titanic". so that old woman, she's just a liar, right? jerry: and a bit of a tramp if you ask me. elaine: hello boys. george: hey, so, did you give that radio the old switcheroo? elaine: i did. george: and the christian rock? elaine: ressurected! and look what i pried off of his bumper, a jesus fish! george: jerry, do you have any fishsticks? jerry: no. so you're disappointed he's a spiritual person? elaine: well yeah, i got him because he seemed so one-dimensional, i feel misled. george: i think it's neat. you don't hear that much about god anymore. jerry: i hear things. hey, so sophie gave me the "it's me" on the phone today. elaine: "it's me?" isn't it a little premature? jerry: i thought so. elaine: hah. she's not a "me". i'm a "me". george: i'm against all "it's me"s. so self-absorbed and egotistical, it's like those hip musicians with their complicated shoes! kramer: well, i got gonorrhea. elaine: that seems about right. kramer: that's what they gave me. george: they? the government? jerry: no, no. he's pretending he's got gonorrhea so med students can diagnose it. kramer: and it's a waste of my talent. it's just a little burning. mickey, he got bacterial meningitis. george: i guess there are no small diseases, only small actors. george: (leaving) alright that's it for me. good night everybody. elaine: what was that? jerry: showmanship, george is trying to get out on a high note. kramer: see, showmanship. maybe that's what my gonorrhea is missing. jerry: yes! step into that spotlight and belt that gonorrhea out to the back row. kramer: yes, yes i will! i'm gonna make people feel my gonorrhea, and feel the gonorrhea themselves. student #1: and are you experiencing any discomfort? kramer: just a little burning during urination. student #1: okay, any other pain? kramer: the haunting memories of lost love. may i? (signals to mickey) lights? (mickey turns down the lights and kramer lights a cigar) our eyes met across the crowded hat store. i, a customer, and she a coquettish haberdasher. oh, i pursued and she withdrew, then she pursued and i withdrew, and so we danced. i burned for her, much like the burning during urination that i would experience soon afterwards. student #1: gonorrhea?! kramer: gonorrhea! jerry: one message. hope it's not from you. answering machine: "hey jerry, it's me. call me back." jerry: sophie. george: she's still doing that? jerry: yep. george: alright, i'll tell you what you do. you call her back and give her the "it's me", heh? pull the old switcheroo. jerry: i think that's a "what's good for the goose is good for the gander". george: what the hell is a gander, anyway? jerry: (picking up the phone and dialing) it's a goose that's had the old switcheroo pulled on it. hi sophie, it's me. sophie: hey raef. jerry: (to george) she thinks it's someone named raef. george: good, let her think it. jerry: (into the phone, with a disguised voice) so, what's going on? sophie: not a lot. george: ask about you, ask about you. jerry: so, uh, how are things with jerry? sophie: oh, i really like him but, well, i still haven't told him the tractor story. jerry: right, right, the tractor story. sophie: are you sick, raef? you sound kinda funny. jerry: i sound funny? george: abort! abort! jerry: yeah i better get to a doctor, bye. (hangs up) that was close! what drives me to take chances like that? george: that was very real. jerry: she said there's some tractor story that she hasn't told me about. george: woah, back it up, back it up. beep, beep, beep. tractor story? jerry: beep, beep, beep? what are you doing? elaine: so where do you wanna eat? puddy: feels like an arby's night. elaine: arby's. beef and cheese and do you believe in god? puddy: yes. elaine: oh. so, you're pretty religious? puddy: that's right. elaine: so is it a problem that i'm not really religious? puddy: not for me. elaine: why not? puddy: i'm not the one going to hell. george: you know what i think? i bet she stole a tractor. jerry: no one's stealing a tractor, it's a five-mile-an-hour getaway. we're dancing around the obvious, it's gotta be disfigurement. george: does she walk around holding a pen she never seems to need? jerry: no, she looks completely normal. george: oh. okay, here it is, i got it. she lost her thumbs in a tractor accident and they grafted her big toes on. they do it every day. jerry: you think she's got toes for thumbs? george: how's her handshake? a little firm, isn't it? maybe a little too firm? jerry: i don't know. george: hands a little smelly? jerry: why do i seek your counsel? elaine: well i'm going to hell. jerry: that seems about right. elaine: according to puddy. jerry: hey, have you heard the one about the guy in hell with the coffee and the doughtnuts and-- elaine: i'm not in the mood. george: (to a passing waitress) i'll have some coffee and a doughnut. jerry: what do you care? you don't believe in hell. elaine: i know, but he does. jerry: so it's more of a relationship problem than the final destination of your soul. elaine: well, relationships are very important to me. jerry: maybe you can strike one up with the prince of darkness as you burn for all eternity. george: (to the waitress bringing his doughnut) and a slice of devil's food cake. george: hey. where is everyone? kruger: they're all off the project. they were boring. george, you are my main man. george: i am? kruger: i don't know what it is, i can't put my finger on it, but lately you have just seemed 'on'. and you always leave me wanting more. george: this is a huge project involving lots of numbers and papers and folders. kruger: ah, i'm not too worried about it. let's get started. george: okay. kruger: george? check it out. (he begins to spin around in his chair) three times around, no feet. george: and? kruger: all me. dr. wexler: alright, and here are you ailments for this week. by the way, mr. kramer, you were excellent. kramer: oh, thank you. mickey: cirrhosis of the liver with jaundice! alright i get to wear make-up! what did you get? kramer: gonorrhea? excuse me, i think there's been a mistake, see, i had gonorrhea last week. dr. wexler: oh, it's no mistake. we loved what you did with it. kramer: i don't believe this, i'm being typecast. sophie: i move my knight... here. check. jerry: they should update these pieces, nobody rides horses anymore. maybe they should change it to a tractor. sophie: jerry, are you embarrassed that you're losing? jerry: losing? you know, yesterday i lost control of my car, almost bought the farm. sophie: bought the farm? jerry: tractor! sophie: this is an odd side of you, jerry. i feel uncomfortable. jerry: wait, don't go. let's thumb wrestle. george: a scar? jerry: a big long scar where her leg would dangle when she's riding a...? george: a tractor. jerry: i'm sure she's a little self-conscious and doesn't like to talk about it. george: i don't see why's she more self-conscious about that than her toe thumbs. jerry: she doesn't have toe thumbs. george: well, if she keeps horsing around with that tractor-- jerry: alright. so how's the two-man operation at kruger? george: two-man? it's all me. kruger doesn't do anything; disappears for hours at a time, gives me fake excuses. this afternoon i found him with sleep creases on his face. the only reason i got out to get a bite today was that he finally promised to buckle down and do some actual work. (turning around, george sees mr. kruger at a booth eating a piece of cake) oh, i don't believe this. this is what i have to put up with, jerry. (he walks over) mr. kruger? who said he was going to do some actual work today? who? kruger: i'm not too worried about it. george: well i am. couldn't you try to go through some of that stuff i put in your shoebox? kruger: alright, alright i'm going. george: (to jerry) huh-ho! have you ever seen anything like this? jerry: never. puddy: elaine, they forgot to deliver your paper today. why don't you just grab that one. elaine: 'cause that belongs to mr. potato guy, that's his. puddy: c'mon, get it. elaine: well if you want it, you get it. puddy: sorry, thou shalt not steal. elaine: oh, but it's ok for me? puddy: what do you care, you know where you're going. elaine: alright, that is it! i can't live like this. puddy: nah. elaine: c'mon. puddy: alright, what did i do? elaine: david, i'm going to hell! the worst place in the world! with devils and those caves and the ragged clothing! and the heat! my god, the heat! i mean, what do you think about all that? puddy: gonna be rough. elaine: uh, you should be trying to save me! puddy: don't boss me! this is why you're going to hell. elaine: i am not going to hell and if you think i'm going to hell, you should care that i'm going to hell even though i am not. puddy: you stole my jesus fish, didn't you? elaine: yeah, that's right! mickey: oh, my liver! why did i drink all those years? why did i look for love in a bottle? dr. wexler: mr. kramer? you're up. mickey: wait a minute. you are doing gonorrhea, aren't you? kramer: well, we'll see. student #2: so, what seems to be bothering you today, mr. kramer? kramer: (pulling a liquor bottle from his jacket pocket) well, i guess it started about twenty years ago when i got back from viet nam, and this was the only friend i had left. mickey: hey! that's my cirrhosis! he's stealing my cirrhosis! (he jumps kramer) you wanna be sick? i'll make you sick. student #2: cirrhosis of the liver and pcp addiction? father curtis: let me see if i understand this. you're concerned that he isn't concerned that you're going to hell. and you feel that she's too bossy. elaine & puddy: yeah, that's right. father curtis: well, oftentimes in cases of inter-faith marriages, couples have difficulty-- father curtis: you aren't? puddy: no. elaine: we're just, you know, having a good time. father curtis: oh, well then it's simple. you're both going to hell. puddy: no way, this is bogus, man! elaine: well, thank you father. father curtis: oh, did you hear the one about the new guy in hell who's talkng to the devil by the coffee machine? puddy: i'm really not in the mood, i'm going to hell. elaine: oh, lighten up. it'll only feel like an eternity. sophie: you know, jerry, there's this thing that i haven't told you about. see, there was this tractor and, oh boy, this is really difficult. jerry: sophie, it's me. i know about the tractor story and i'm fine with it. sophie: how could you know? jerry: (putting his finger to sophie's lips, then to his own, then back to sopie's) shh. shh. shh. it's not important. what's important is i'm not gonna let a little thing like that ruin what could be a very long-term and meaningful relationship. kramer: ...i didn't say that, no. mickey: you gave me gonorrhea, you didn't even tell me! kramer: well, i'm sorry. i gave you gonorrhea because i thought you'd have fun with it. jerry: hey, hey! i'm with someone. kramer: oh. hello. sophie: no, i understand. this could be a tough thing to deal with. the important thing is that you have a partner who's supportive. kramer: (to mickey) you know? she's right. sophie: unfortunately, i didn't have a partner. i got gonorrhea from a tractor. jerry: you got gonorrhea from a tractor?? and you call *that* your tractor story?? kramer: you can't get it from that. sophie: but i did. my boyfriend said i got gonorrhea from riding the tractor in my bathing suit. jerry: (walking out) alright, that's it for me. you've been great. goodnight everybody. george: would you mind helping me out with some of this stuff?!? kruger: you seem like you've got a pretty good handle on it. george: no! i don't! don't you even care? this is your company! it's your name on the outside of the building! speaking of which, the 'r' fell off and all it says now is k-uger! kruger: k-uger, that sounds like one of those old-time car horns, huh? k-uger! k-uger! george: huh-ho! oh! you are too much, mr. kruger! too much! kruger: (getting up to leave) thank you george, you've been great. that's it for me. george: oh no, you're not going out on a high note with me mr. kruger! kruger: it's k-uger! george: no! no! kruger: goodnight everybody! dedication: in memory of our friend, lloyd bridges. [setting: bookstore] george: i read somewhere that this brentano's is the place to meet girls in new york. jerry: first it was the health club, then the supermarket, now the bookstore. they could put it anywhere they want, no one's meetin' anybody. kramer: jerry, look at all these pagodas, huh? i gotta get over to hong kong before it all goes back to china.. jerry: (sarcastic) you better hurry. george: i'm gonna hit the head. kramer: oh, boy, look at this. hong kong's outlawed the rickshaw. see, i always thought those would be perfect for new york. jerry: (sarcastic) yes. the city needs more slow-moving wicker vehicles. kramer: hmm, elaine's been to hong kong. i should give her a call. jerry: she's at that annual peterman party tonight. you know the one she danced at last year? kramer: (remembering) no, that wasn't dancing. jerry: (pointing) hey, there's leo. kramer: oh? who's leo? jerry: uncle leo. kramer: oh, yeah. right. uncle, leo. forgot his first name.. jerry: did i just see that?! kramer: (to jerry) well, that ougta keep you busy for a few days, huh? [setting: the annual peterman party] walter: (joking around with her) so, elaine.. are you going to dance this year? elaine: maybe.. all over your face! waiter: if you do dance, the cooks want to know - so they can be brought out of the kitchen. they missed it last year. peterman: my friends, a toast. as the wolly-haired melanasians of papua, new guinea once said, (makes a series of clicking and popping sounds. the music starts up) all right! who's dancing? (no one makes a gesture that they intend to dance) no one? alright, i'll just have to get things started. (grabs a female employee, and starts dancing with her. the crowd is impressed) zach: hi, i'm zach. elaine: hi, i'm miserable. (they both laugh) [setting: bookstore] manager: excuse me, sir. what are you doing? george: (acting innocent) i'm all set. manager: (pointing) did you take that book with you into the bathroom? george: (not sure what the answer should be) what do you want to hear? [setting: the coffee shop] george: they made me buy it.. a hundred bucks this thing cost me. (gesturing to the book) how dare they?! i got news for you, if it wasn't for the toilet, there would be no books. jerry: (sarcastic) yeah. i understand guttenberg used to spend a lot of time in there. george: they're selling coffee, bran muffins.. you're surrounded by reading material. it's entrapment! jerry: (reading the cover of the book george was forced to buy) 'french impressionist paintings'? george: i find the soothing pastorial images very conduc- jerry: (cutting him off) thank you very much. george: well, i'm gonna go back there later and return it when there's different people working.. you want to catch a movie? jerry: i can't. i'm meeting uncle leo. i saw him shoplifting at the bookstore. george: (praising leo's stealing) alright, leo! stickin' it to the man! jerry: sleeping in the caragain? elaine: cocktail flu. jerry: (remembering) oh, right. the big party.. george: you, uh, didn't dance again, did you? elaine: (angered) no, i found a better way to humiliate myself. there was this guy, and we had a few too many.. george: you went home with him? elaine: worse. we made out at the table like our plane was going down! jerry: (rubbing it in) ah, the drunken make-out. an office classic. did you end up xeroxing anything? elaine: (gives jerry a look) do you know how embarrassing this is to someone in my position? jerry: (confused) what's your position? elaine: i am an associate. george: hey, me too. waitress: yeah, me too. elaine: oh god. why did i do this? now i'm the office skank. george: well, unless you tell everybody you're dating. elaine: (liking the idea) ohh.. right. cause if we're dating, what everyone saw was just a beautiful moment between two lovers. jerry: (jokingly rubbing it in) as opposed to a spirited bout of skanko-roman wrestling. elaine: (sarcastic) oh, bravo. [setting: jerry's apartment] jerry: (sarcastic) oh, hey. can i fix you fellas some drinks and sandwiches? kramer: (taking his offer seriously) no, we've already eaten. newman: (gesturing to dishes and silverware on the table) but you can clear some of this stuff out of the way. kramer: jerry, check this out. (pointing at some papers on the table) remember my idea about rickshaws in new youk? well, we're gonna make it happen! jerry: (jokingly trying to be skeptical) no, you're not. kramer: newman, he knows a guy in the hong kong post office.. jerry: (still skeptical) no, he doesn't. newman: he's shipping us a rickshaw. it can't miss! jerry: yes, it can. kramer: we'll start out with one, and they when it catches on, we're gonna have a whole fleet! newman: it's the romance of the handsome cab without the guilt or dander of the equine. jerry: so, who's gonna pull this thing? kramer: (to newman) well, i just assumed you would. newman: yeah, but i though- kramer: (stopping his thought) da-da-da-da no. jerry: (extremely happy about kramer and newman's dilemma) my, isn't this an awkward moment? kramer: (brainstorming) what about the homeless? newman: can't we worry about them later? kramer: (explaining) to pull the rickshaw. newman: (pondering kramer's plan out loud) they do have an intimate knowledge of the street.. kramer: they're always walkin' around the city. why not just strap something to them?! jerry: (sarcastic) now, that's the first sensible idea i've heard all day. [setting: the coffee shop] leo: jerry, hello! (sits down) jerry: so, leo, how's everything? you doin' okay? leo: i still have the ringing in the ears. sounds like the phone. jerry: (shrugging his problems off) yeah, yeah. but what about money? are you strapped? do you need a little? leo: what, are you kidding? i should you loaning you money! (quickly amending what he just said) but i'm not. jerry: (being frank) leo, i saw you in brentano's yesterday. leo: why didn't ya say hello? jerry: because you were too busy stealing a book. leo: (giving a courtesy lesson) you still say hello. jerry: (showing that it's a problem) leo, i saw you steal. leo: oh, they don't care. we all do it. jerry: who, criminals? leo: senior citizens. no big deal. jerry: you could get arrested. leo: arrested? come on! (goes into a routine explaination for his stealing) i'm an old man. i'm confused! i thought i paid for it. what's my name? will you take me home? jerry: (pleading) leo.. leo: alright, alright. mr. goody two-shoes. you made your point. jerry: (thinking he's stopped leo's thefts) thank you. leo: (yelling out to every one in the coffee shop) will somebody answer that damn phone?! [setting: peterman office building hallway] elaine: (talking to a co-worker) of course zach and i have been dating. what'd you think, i was the office skank? walter: well.. elaine: "well"? we've been dating for three months. between you and me, and.. anyone else you want to tell. elaine: (exits, closing the door behind her) oh man. ugh.. walter: (pointing at the closed door) isn't that zach? elaine: yeah. walter: aren't you upset? elaine: (starts to fake cry) yes. oh, man! oh! [setting: nyc street] kramer: alright, listen up. now, you three have been hand-picked out of possibly dozens that applied. now, what we're looking for are motivated, hard-working, homeless gentlemen like yourselves to pull rickshaws. (one of the homeless men starts to wander off, walking away) now, i don't caer where you're from, or how you got here, or what happened to your homes. but you will have to be physically fit. homeless man: the government! kramer: (continuing as if nothing happened) because to pull rickshaws means more than just strong legs. you're also going to need a well-toned upper body. newman: alright, who's first? krmaer: hey. newman: name, please. homeless man: rusty. newman: (writing on a clipboard) rusty. kramer: (to rusty) you know, i once knew a horse named rusty. no offence. newman: (to rusty) alright, uh, take it down to the end of the block. make a controlled turn, and bring her back. let's see what you've got! ok? ready, and go! kramer: (watching rusty's pulling of the rickshaw) giddy up! good form. newman: (yelling out to rusty) alright, pace yourself, 'cause you're gonna have to do this all day for very little money. kramer: hey, what's he doin'? newman: i think he stealing our rickshaw! kramer: well, then, he's out! homeless man 2: (salutes kramer) i'll take the job. potato salad!" [setting: bookstore] george: yes, i, uh, i need to return this book. cashier: (puts the book's code into the computer) i'm sorry, we can't take this book back. george: why not? cashier: it's been flagged. george: (confused) flagged? cashier: it's been in the bathroom. george: it says that on the computer? cashier: please take it home. we don't want it near the other books. george: (outraged. leaving) well, you just lost a lot of business! because i love to read! jerry: (to himself) i don't believe this! (walks over to a security guard) excuse me, i wonder if you could do me a favor? my uncle's having a little problem with shoplifting.. guard: mm-hmm. where's your uncle? jerry: (pointing) he's over there in the overcoat. if you could just kind of put a scare into him.. you know, set him straight.. gaurd: (into his walkie-talkie) we have a 51-50 in paperbacks. all units respond. jerry: '51-50'? that - that's just a scare, right? guard: sir, i'm gonna have to ask you to stand out of the way and let us handle this. (the guard rushes tward uncle leo) swarm! swarm! leo: what?! i'm an old man! i'm confused! guard: you're under arrest. jerry: (to guard) i just wanted you to scare him. leo: jerry, you ratted me out?! jerry: (unsure of what to say - he remember's leo's courtesy tip) hello? leo: hello. [setting: jerry's apartment] jerry: mom, i didn't rat out uncle leo. i just wanted the guard to scare him straight. helen: jerry, he won't last a day in prison. jerry: (scoffing) prison. i'm sure it's just a fine. morty: she's got priors. jerry: (not believeing it) prior convictions? leo? helen: it was a crime of passion. leave it alone. morty: besides, it's not stealing if it's something you need. jerry: (confused) what does that mean? helen: nobody pays for everyting. jerry: (shocked at his parents) you're stealing too?! morty: nothing. batteries. (jerry scoffs) well, they wear out so quick. jerry: mom, you too? helen: sometimes your father forgets, so i have to steal them. jerry: alright, i'll talk to you later. kramer: (while washing his hands in jerry's kithen sink) well, the rickshaw's gone. we strapped it to a homeless guy and he (makes a noise), he bolted. jerry: (joking around) well, you know, eighty-five percent of all homeless rickshaw businesses fail within the first three months. kramer: (to newman) see, we should've gotten some collateral from him.. like his bag of cans, or.. his other bag of cans. newman: we gotta find that rickshaw. you check the sewers and dumpsters. i'll hit the soup kitchens, bakeries, and smorgasbords. jerry: to the idiotmobile! [setting: the coffee shop] jerry: so, even though you're not really going out with this guy, he's cheating on you? elaine: that is correct. but here's the beauty part - now i stand up for myself by telling everybody i'm dumping his sorry ass, and i'm the office- jerry: (butting in) tina turner? elaine: (accepting) alright. george: well, i've to every brentano's. this thing's flagged in every database in town! jerry: is it so horrible to have to keep a book? george: i don't understand what the big deal is. they let you try on pants. jerry: (stern on george) not underpants. elaine: hey, that's your uncle leo. jerry: (getting up) uncle leo. hello! leo: (bitter) jerry. jerry: (trying to explain) uncle leo, i'm sorry. i didn't know about your.. past. leo: (exiting) you mean my crime of passion? if anyone betrays me, i never forget! jerry: (following leo out the door) uncle leo, wait! hello?! elaine: french impressionism. oh, i love this. (looking up at george) now, what is the problem with this book? george: nothing. elaine: how much do you want for it? george: you know, i could let it go for.. say.. a hundred and twenty-five. jerry: leo's furious. (he stops in his tracks when he sees elaine looking at george's book) what is that doing on the table? george: (wanting elaine to take it off his hands, he tries to silence jerry) jerry, simmer down. jerry: (pointing) i'm not eating anything in the vicinity of that book. elaine: (confused) what is wrong with this book? george: simmer! jerry: that book has been on a wild ride. george took it into the bathroom with him and- elaine: (cutting jerry off, she stands up, trying to get away from the book. yelling out) alright! everyone clear! bio-hazard coming through! clear! clear!! (runs to the bathroom to wash her hands) george: (the damage has been done. he is slightly angered at jerry) may i ask, what do you read in the bathroom? jerry: i don't read in the bathroom. george: well, aren't you something? [setting: elaine's office] peterman: elaine, do you have a moment? it's about your lover. elaine: (faking a broken heart) oh yes. i know all about his little performance in the break room. peterman: elaine, who among us hasn't snuck into the break room to nibble on a love newton? elaine: (confused) love newton? peterman: i'm afraid the problem with zach is more serious. he's back on the horse, elaine. smack. white palace. the chinaman's nightcap. elaine: an addict? (sacrcastic) well, it just keeps getting better! peterman: and, in a tiny way, i almost feel responsible. i'm the one who sent him to thailand - in search of low-cost whistles. filled his head with pseudoerotic tales of my own opium excursions. plus, i have him some phone numbers of places he could score near the hotel. elaine: look, uh, mr. peterman, the fact is that i was planning on breaking up with zach anyway. he was cheating on me! peterman: damn it, elaine. that wasn't zach. that was the yam-yam. now, he is going cold turkey. (ordering) and you will be at his side. elaine: oh. well, you know, i had planned to uh- peterman: (cutting her off) no buts, elaine. or i will strip you of your 'associate' status. (goes to leave) uh, p.s., the first twenty-four hours are the worst. better bring a poncho. [setting: jerry's bedroom] helen: it was a crime of passion. leo: if anyone betrays me, i never forget. helen: he won't last a day in prison. leo: (leo has "jerry" written on the fingers his right hand, and "hello" written on his left. he's doing pull-ups) jerry. hello. jerry. hello. jerry. (turns to the right, yelling out) answer that damn phone! jerry: hello? elaine: hey, it's me. jerry: uncle leo? elaine: (sarcastic) oh, that's nice. what are you up to? jerry: nightmares. you? elaine: my fake boyfriend is going through real withdrawals. zach: (yelling out from off-camera) i'm burning up! elaine! elaine: eat your soup! jerry: you're not feeding him, are you? elaine: why? (zach vomits. elaine yells out to him) i told you, away from the curtains. away. (pointing) use your bucket. (he vomits again - this time into the bucket) there you go, that's it. (to jerry) you know what? i gotta go. kramer: hey, buddy. jerry: (scared) ah! kramer! kramer: i thought i heard you. jerry: get out of here! newman: (from outside the room) kramer? kramer? (enters jerry's bedroom) there you are. jerry: will everybody please leave?! newman: i just heard that a postman spotted a rickshaw down in battery park. kramer: our rickshaw? newman: it's entirely possible. jerry: i want everyone out! kramer: (exiting the bedroom with newman) let's talk in jerry's kitchen. i'll make some cocoa. newman: (to jerry) good night. jerry: (bitter) good night, newman. [setting: park] newman: there it is! kramer: rusty! rusty: oh, there you are. oh, do i get the job? kramer: (sarcastic) yeah, yeah. we'll get back to you. (pulling the rickshaw with newman) let's get this baby home. newman: uh.. kramer: what? newman: you know, when you think about it, it's kind of silly for us both to pull this thing all t he way back uptown. i mean, after all, it is a conveyance. kramer: yes, that's true. newman: so, which one of us is gonna pull? kramer: well, there's only one way to settle this. (starts pointing back and forth between newman and him with each word of the rhyme) one spot, two spot, zig, zag, tear, pop-die, pennygot, tennyum, tear, harum, scare 'em, rip 'em, tear 'em, tay, taw, toe.. newman: (realizing he won) yeah. kramer: best two out of three? (starts the pointing and the rhyme again) one spot, two spot.. nemwan: hey, boy. smooth it out up there. too much jostling! [setting: a homeless charity center] rebecca: (gesturing tward the book) so, you want to donate this to charity? george: well, i assume there's some sort of write-off. rebecca: what's the value of the book? george: uh, about two hundred dollars, miss demooney. rebecca: (correcting. stern) it's demornay. rebecca demornay. george: oh. rebecca: (opens the cover of the book) oh, wait a second. (certain) this book has been in the bathroom. george: (nervous) wh-what are you talking about? that - that's rediculous. rebecca: it's been flagged. i know. i used to work in a brentano's. mister, we're trying to help the homeless heare - it's bad enough that we have some nut out there trying to strap 'em to a rickshaw! george: (desperate to get rid of the book) alright, i, i'll just take fifty. do - do we have a deal? rebecca: yeah, and here it is you get your toilet book out of here, and i won't jump over this counter and punch you in the brain! george: i could take it in merchandise.. rebecca: (threatening to hit him) here i come.. [setting: bookstore] elaine: so, this book'll tell me how to get puke out of cashmere? cashier: yeah. elaine: great. jerry: (to elaine) so, the worst is over? elaine: yeah. now i can break up with him. he's clean, and i'm the office hero. jerry: seems like you're better at fake relationships than real ones. elaien: yeah, huh. i even got an idea out of it. the detox poncho. elaine: (leaving jerry) see ya. jerry: (to cashier) i'd like to speak with the manager, please. [setting: nyc street] newman: mind your pace, boy. chop, chop! kramer: (tired) oh, i can't go on. i gotta take a break. (sets the rickshaw down - taking a rest) newman: well, don't tarry. i'm behind schedule as it is. kramer: (stretching) oh.. newman: (scared) boy.. boy. kramer! kramer: woah! wait! newman: ahhh! yaaaahhh! zach: (optimistic) well, this is the first day of the rest of my life! newman: waaaaahhhh! [setting: bookstore] jerry: george? what are you doin' here? george: i can't sell the book. it's been marked. jerry: (sarcasticly joking) it certainly has. george: so, i'm gonna steal another one, and then return it. that way, everything is even. jerry: (trying to straighten things out) you defile one book, steal another, ask for your money back - and to you that's even? george: i'm goin' in! manager: did you want to speak with the manager? jerry: yes. my uncle leo was cought shoplifing here the other day.. manager: yes, uncle leo. i remember him. i'm sorry, our policy is we prosecute all shoplifters. jerry: (pleading) oh, come on. he's just a lonely old man. all old people steal. manager: that's right. that's why we stopped carrying batteries. look, i'll be honest with you, we've had a lot of trouble with theft lately - and my boss says i have to make an example to someone. jerry: so it could be anyone? manager: i.. guess. as long as we catch him in the act. jerry: that guy! (pointing at george) swarm! swarm! george: no! jerry! all (singing): happy birthday to you. walter: thanks. female worker: elaine, cake? elaine: uh, no, thanks. female worker: it's walter's special day. elaine: you know, there are 200 people who work in this office. every day is somebody's special day. male worker: elaine! where're you going? it's walter's last day. we have to celebrate. elaine: it's his birthday and it's his last day? male worker: this is other-walter, from returns. other-walter: hey, what's going on here? all: surprise! other-walter: oh guys. other-walter: elaine, it's my last day. have a piece. elaine: all right, pile it on. all (singing, competing): for he's a jolly good fellow...happy birthday to you...for he's a jolly good fellow...birthday to you...which nobody can deny... jerry: what is so bad about having a little piece of cake? elaine: it is the forced socializing. i mean, just because we work in the same office, why do we have to act like we're friends? jerry: why aren't you there now? elaine: i had to take a sick day. i'm so sick of these people. by the way, i talked to lisi, and tomorrow night's good for her. jerry: you know, i shouldn't go out with a friend of yours. i foresee messiness. elaine: yeah, you're better off sitting around here, reading comic books, and eating spaghetti at two in the morning.. jerry: hey, speaking of tomato sauce, you want to come with me and george to mario's pizza? elaine: your old high school hangout? why? jerry: they're closing. we're going for one last slice. kramer: hey. all right. hi. check it out, official police caution tape. look at that. kramer: uh-uh-uh. step back, son, there's nothing to see here. jerry: where did you get this? kramer: well, i got it from my cop buddy doug. jerry: you sure have a lot of friends. how come i never see any of these people? kramer: they want to know why they never see you. kramer: i'm gonna eat that later. jerry: so they just gave you this? kramer: oh no, no,. no. i had to fish around in the evidence room for it. you know, they're all preoccupied, trying to hunt down this new psycho-serial killer, the lopper. all right, i'll see ya. elaine: wait a minute, wait a minute. who is the lopper? kramer: oh, it's no big deal. it's just some guy who's been running around riverside park-pffff. you know, cutting people's heads off. jerry: how come i haven't read about this? kramer: well, you know, the police, they've been having some internal dissension about the name. elaine: really? what're the other titles? kramer: uh, headso...uh...the denogginizer...son of dad. jerry: son of dad? kramer: yeah. that was my suggestion. it's sort of a catchall. george: mario's pizza. george: just as she was. hey, mario! remember us? mario: no. jerry: we used to come in every day. mario: so where ya been? we're tanking here. george: we'll have 2 slices and 2 grape sodas. mario: oh, thanks. that'll save us. jerry: all right, make it the large sodas. george: hey, jerry, remember frogger? i used to be so into this game. gettin' that frog across the street was my entire life. jerry: yeah. and then you went on to...well, it's a good game. george: double jump! eat the fly! eat it! boy: thanks a lot. george: ah, beat it, punk. jerry: hey, look at the high score--"g.l.c." george louis costanza. that's not you, is it? george: yes! 860,000. i can't believe it's still standing. no one has beaten me in like 10 years. jerry: i remember that night. george: the perfect combination of mountain dew and mozzarella...just the right amount of grease on the joy stick... mario: here's your pizza pea brains. jerry: i think i remember why we stopped coming here. george: yeah. elaine (thinking): this pen smells really bad. so why do i keep smelling it? is it too late for me to go to law school? elaine: what is this? male worker: you were out sick yesterday, so we got you a get-well cake. female worker: it's carrot. it's good for you. workers (singing): get well get well soon, we wish you to get-- elaine: stop it! that's not even a song! i mean, now we're celebrating a sick day? male worker: i think it's nice. elaine: what? what is nice? trying to fill the void in your life with flour and sugar and egg and vanilla? i mean, we are all unhappy. do we have to be fat, too? not you becky, i know you have a slow metabolism. i don't want one more piece of cake in my office! worker (singing): get well, get well soon-- male worker: it's not happening. becky: can we still it eat? jerry: i'll tell you lisi, i never expected that movie to-- lisi: end under water? jerry: be that long. i mean, most action movies are-- lisi: so much more violent. jerry: not as long. lisi: well, i should probably-- jerry: get going. lisi: yeah. jerry: well, it was nice meeting you. i'm sure i'll see you-- lisi: eight tomorrow? jerry: actually, that's-- lisi: what you were thinking. jerry: right. george: oh! here you are. ha ha...you, uh, you want to-- jerry: sure. (points at booth) how about this one? george: well, i'm doing it, jerry. i'm buying the frogger machine. now the torch will burn forever. jerry: fabulous. see, now you're really do something. george: so, you want to come down to mario's pizza with me and help me pick up the frogger? jerry: hey, how you gonna keep the machine plugged in while you move it? george: what? jerry: once you unplug the machine, all the scores will be erased. george: you're right. why must there always be a problem? you'd think just once i could get a break. god knows i earned it with that score! kramer: well, more bad news jerry. kramer: you know the police, they found another victim of the lopper in riverside park. i saw the photo, and it looked a lot like you. jerry: oh, come on. there's a lot of people walking around the city that look like me. kramer: not as many as there used to be. george: no. i need a guy that can rig a frogger machine so that i can move it without losing power, 'cause i have the high score. h-hello? kramer: you know, george, you're not gonna find an electrician like that in the yellow pages. now, i know just the guy who can do this. jerry: another friend? kramer: oh, no, no, no. this guy is no friend. in fact, we don't even get along. george: well, is he good, kramer? kramer: oh, he's the best...and the worst. george: kramer, listen to me. i'm never gonna have a child. if i lose this frogger high score, that's it for me. kramer: believe me george, you can count on slippery pete. george: slippery pete? kramer: yeah, i don't care for the name, either. in fact, that's one of the things that we argue about. george: all right, i'm gonna find a guy with a truck. glc must live on! jerry: come on. kramer: dng-ga-gng-ga-wt. jerry: hello? elaine: so how's it going with my friend? jerry: she's a sentence finisher. it's like dating mad libs. jerry: what is that? elaine: oh, it's a cake party. it's the third one today. i didn't realize how hooked i got on that 400 sugar rush. jerry: so join in. elaine: i can't. i denounced them. maybe i'll go raid peterman's fridge. he's always got a truffle or something in there. jerry: all right. jerry: hey, wh-what-- kramer: yeah. i dropped an egg. be careful. elaine: anybody here? peterboy? elaine: ooh, it's a cake walk. peterman (singing): get well, get well soon we wish you to get well. peterman: ha ha ha ha...oh, what a stirring little anthem of wellness. elaine: mr. peterman, um-- peterman: we missed you at the get well party. poor old walt has a polyp in the duodenum. it's benign, but--ooh--still a bastard. oh, elaine, can you keep a secret? elaine: no, sir, i can't. peterman: inside that small college boy minifridge is my latest acquisition. a slice of cake from the wedding of king edward viii to wallis simpson, circa 1937, price--$29,000. jerry: well lisi, that was another- lisi: lovely evening. jerry: really bad meal. i was thinking maybe we should-- lisi: go for a hansom cab ride? jerry: call it a night. i'll walk you home. where do you live? lisi: 84th street, right off riverside park. jerry: riverside park. lisi: i thought we were going-- jerry: back to my place. that's right. george: so you slept with her? jerry: she lives right off riverside park. i was scared of the lopper, so i let her stay over. george: and you automatically sleep with her? jerry: well, i just wanted to make out a little, but she kind of-- george: finished your thought. elaine: guess what i ate. george: an ostrich burger. elaine: no. a $29,000 piece of cake. peterman got it at the duke of windsor auction. it was the most romantic thing i've ever eaten. jerry: how'd it taste? elaine: a little stale. jerry: yeah. george (nudges elaine with his elbow): so, uh are you sleeping with peterman? elaine (nudges george with her elbow): no. he doesn't know i ate it. in fact, he almost caught me. i have to sneak back in and even it out. george: you know, they say ostrich has less fat, but you eat more of it. elaine: hey, so i talked to lisi and she has got a big surprise for you. she's planning a weekend trip to pennsylvania dutch country. jerry: pennsylvania dutch country? oh, that's the serious relationship weekend place. elaine: what is going on with you two? jerry: well, i think by sleeping with her, i may have sent her the wrong message. george: what's that? elaine: 400 sugar fix. jerry: well, i'm calling this off right now. elaine: no, no. you are way past the phone call breakup stage. jerry: well, i'm not going over there. that's where the lopper is. elaine: oh...it's daylight. it won't take you that long. just make a clean break. elaine: just a little off the side... elaine: well, no point in wasting $1,200. elaine (thinking): oh, commander, isn't the wedding marvelous? more cake? oh, i shouldn't. i mustn't. ah, what the hell? george: now, each of you is here because you're the best at what you do. george: slippery pete, kramer tells me you are one hell of a rogue electrician. and shlomo, you're the best truck driver. shlomo: i don't know if i'm the best. george: oh...you're very good. shlomo: let's say "good." george: ok. good. and kramer, you're in charge of taping off the loading zone. kramer: lock and load. slippery pete: you think you can handle that, numb nuts? kramer: all right, all right, come on, now. slippery pete: that was my mail-order bride. kramer: hey, you weren't home, so i signed for her. slippery pete: it doesn't give you the right to make out with her. kramer: you weren't even married yet. george: all right, all right, calm down, calm down. whatever happened in the past is past. george: now, this is the basic layout for mario's pizza. shlomo: so what kind of jail time are we looking at if we're caught? george: what do you mean? slippery pete: we're stealing this thing, right? george: no. i--i paid for it. slippery pete: i thought we were stealing it. kramer: yeah. it feels like we're stealing it. george: we're not stealing it. shlomo: i definitely thought we're stealing it. george: all right, let's--let's focus. can we get back to the plan? slippery pete: well, i need a battery for this kind of a job. can i at least steal a battery? george: fine. steal the battery. now, all right, here is the frogger. this is the front door, and this is the outlet. slippery pete: what's that? george: the outlet? slippery pete: mm-hmm. george: that's where the electricity comes out. slippert pete: oh, you mean the holes. shlomo: which one's the bathroom? george: uh, here. shlomo: they put the frogger with the toilet? yecchh. george: the frogger is here. kramer: george, i thought that was the door. slippery pete: where are all the pizza ovens? shlomo: i thought the bathroom was here. george: all right. you understand now? it's not that complicated. elaine: i need to replace an antique piece of cake. elaine: do you have anything that's been...you know, laying around for a while? something prewar would be just great. kramer: oh, hey, elaine. what, you got the munchies? elaine: oh, kramer, i am in big. big, big trouble. i need a cake that looks like this. kramer: oh, yeah--sotheby's. yeah. they make good cake. elaine: do any of these look close? kramer: no, but i know i've seen cake just like that. oh--entenmann's. yeah. elaine: entenmann's? from the supermarket? kramer: well, no. they're not really in the supermarket. yeah, they got their own case at the end of the aisle. jerry: hi, lisi. lisi: hi, honey. is that a bat? jerry: uh, yeah. i found it on the street. it's gotta be worth something. lisi: so, what do you want to do, sweetheart? jerry: well, before we do anything...maybe we should talk. montage: nan jerry: then this pennsylvania dutch thing comes out of nowhere. i mean, how am i supposed to respond to that? lisi: then may i say something... without being interrupted? jerry: well i'm sorry if i ruined your life. that's exactly what i set out to do. lisi: uh-huh. uh-huh. mm-hmm. uh-huh... lisi: are you afraid to kiss me in public? jerry: have we even been in public? lisi: so now you're going to tell me what i'm thinking. well, go ahead, 'cause i'd really like to know. jerry: you are not dumb. don't say that.. jerry: these beans are pretty good. lisi: 20 minutes. jerry: well, i'm sorry i'm not brad. i'm me! jerry: nice to meet ya! lisi: boy, did your mother do a number on you. lisi: fine. so it's over. jerry: oh, thank god. why is it dark out? what time is it? lisi: 930. jerry: we've been breaking up for 10 hours? lisi: good-bye, jerry. jerry: lopper. you know, lisi, maybe we should give this a little more time. see how it looks in the light of day. lisi: out! jerry: lopper. jerry: lisi, lisi. let me in! we can work this out. i was wrong, you were right. i'll do anything! george: jerry, you came for the big moment. jerry: no. i'm waiting for... george: ha ha. everything's timed out to perfection, jerry. slippery pete's got the frogger running on battery power, the truck will be there any minute, and kramer's taped out the loading zone. jerry: oh. sounds great. george: yeah, yeah. you gotta come over tonight. we can play. jerry: oh, i can't. i'm busy. i'm going away on a long weekend. george: where? lisi: look what i found. i got one for you, too. jerry: great. uh, you know what? why don't you put it in the car so i don't toss it in that dumpster? lisi: ha ha. ok. i'll meet thee in front of your place, 15 minutes. jerry: a long, long weekend. george: i hear thee. peterman: elaine! excellent. i'd like you to meet a friend of mine, irwin lubeck. elaine: oh, hello. lubeck: charmed. peterman: all right, brace yourself, lubeck. you are about to be launched via pastry back to the wedding of one of the most dashing and romantic nazi sympathizers of the entire british royal family. elaine: i guess i'll just-- peterman: oh, no elaine, stay. lubeck here is the world's foremost appraiser of vintage pastry. peterman: all right, lubeck. how much is she worth? lubeck: i'd say about 219. peterman: ha ha ha ha ha!$219,000! lubeck, you glorious titwillow. you just made me a profit of $190,000. lubeck: no, $2.19. it's an entenmann's. peterman: do they have a castle at windsor? lubeck: no. they have a display case at the end of the aisle. peterman: oh, good lord. lubeck: you all right, peterman? you look ill. elaine (singing): get well, get well soon, we want you to get well. get well, get well soon we want you to get well. george: what are you guys doing? shlomo: eat the fly. eat the fly. got him! george: you idiots. you're gonna wear down the battery. slippery pete: the batteries are fine. we've got...oh, god. only 3 minutes left. george: quick. get this thing back in the pizzeria kramer: george, they closed up. george: i need an outlet! slippery pete: a what? george: holes! i need holes! kramer: the pharmacy's still open. george: all right. kramer, you block off traffic. you to go sweet-talk the pharmacist. slippery pete (to george): you owe me a quarter. george (to jerry): slippery pete. kramer, hurry up! kramer: ahh! i'm out! no tape left! jerry: well, come on george, i'll help you push it across. george: wait a minute. this looks familiar. this reminds me of something. i can do this. jerry: by yourself? george: jerry, i've been preparing for this moment my entire life. shlomo: he looks like a frog. slippery pete: so do you. jerry: game over. elaine: mr. peterman, you wanted to see me, sir? peterman: elaine, up until a moment ago, i was convinced that i was on the receiving end of one of the oldest baker's grift in the books--the entenmann's shim-sham. elaine: ohh... peterman: until i remembered the videotape surveillance system that i installed to catch other-walter using my latrine. but it also caught this. ealine: mr. peterman, i, uh... peterman: elaine, i have a question for you. is the item still...with you? elaine: um...as far as i know. peterman: do you know what happens to a butter-based frosting after six decades in a poorly ventilated english basement? elaine: uh, i guess i hadn't-- peterman: well, i have a feeling that what you are about to go through is punishment enough. dismissed. jerry (to waitress): cup of tea with lemon. george: what happened to your voice? jerry: i was screamin' at hecklers all night. the last time i open for a rodeo. george: well, jerry, i been thinkin'. i've gotten as far as i can go with george costanza. jerry: is this the suicide talk or the nickname talk? george: the nickname. george. what is that? it's nothing. it's got no snap, no zip. i need a nickname that makes people light up. jerry: you mean like...liza! george: but i was thinking...t-bone. jerry: but there's no "t" in your name. what about g-bone? george: there's no g-bone. jerry: there's a g-spot. george: that's a myth. jerry: t-bone, the ladies are gonna love ya. elaine: why did they hire you for a rodeo? jerry: they heard i opened for kenny rogers once. elaine: didn't he throw you off a bus in the middle of alabama or-- jerry: oh, i had that comin' to me. elaine: you know, kenny rogers has a- elaine (whispering): why did you get a maid? jerry: you don't have to whisper. she knows she's a maid. elaine: where did you get her? jerry: i hired her from a service! maid: all done. jerry: thank you. nice job. maid: is this mine? jerry: yeah. jerry: what? elaine: come on, jerry. you didn't notice? jerry: notice what? she's not really even a maid. elaine: oh. jerry: she wants to be an actress...or a, uh, model...or a dancer...or a...news woman. elaine: uh-huh. news woman. yeah. kramer: hey. well, bad news, boys. my life is over. my girlfriend's movin' away. jerry: you have a girlfriend? kramer: jerry, where have you been? jerry: at a rodeo. where's she moving? kramer: downtown. elaine: downtown new york? kramer: yeah. i don't know if i can handle one of these long-distance relationships. jerry: it's like 10 minutes by subway. kramer: i don't know. kramer: oh! jeez! well, you've got a maid. it's a whole different world downtown-- different gap, different tower records, and she's a 646. elaine: what? what is that? jerry: that's the new area code. they've run out of 242s, so all the new numbers are 646. elaine: i was a 718 when i first moved here. i cried every night. kramer: listen. heads up, elaine. i'm gonna have to stop by later and pick up a fax. elaine: at work? kramer: no. at your apartment. elaine: i don't have a fax machine. jerry: here we go. kramer: well, now what are we gonna do? (to jerry) see? this is why you should get a fax and a xerox. jerry: and a dead bolt. elaine: then maybe you have a fax machine. kramer: you just blew my mind. kruger: let's order lunch. kruger: mary, i will have a chef's salad. male worker: turkey sandwich. george: t-bone steak. kruger: for lunch? george: well, i am just a t-bone kinda guy. love that t-bone. in fact, you might as well call me-- watkins: that sounds good. i'll have one, too. kruger: watkins, you're havin' a t-bone? watkins: i love 'em. kruger: well, then we should call you t-bone. george: uh, no. no, we shouldn't. kruger: t-bone! all (chanting): t-bone! t-bone! t-bone! t-bone! t-bone! t-bone! t-bone! t-bone! elaine: hello? elaine: what? machine: you have 57 messages. message one... machine: message two... machine: message three... george: hey, it's george. listen, i- machine: message four... ealine: hello? elaine: aah! jerry: well cindy, the place looks great. cindy: thanks jerry, gotta run. jerry: ok, i'll see ya. cindy: hi, elaine. elaine: all right! you're foolin' around with your maid. that is a wise decision. jerry: elaine, do you think i would go willy-nilly into a situation so obviously fraught with potential complications? elaine: you are paying a woman to come to your house and sleep with you. jerry: no. i pay her to clean. the rest is-- elaine: what? a health plan? jerry: i was going to say, "being a good host." elaine: oh-ho-ho. oh. jerry: but the point is we have our personal relationship, and we have our work relationship. they're separate and, i think, some what sophisticated. elaine: so you consider this a relationship? jerry: yes, i do. elaine: oh. have you been out? jerry: yes, we have. elaine: where did you go? jerry: the store. elaine: mm! to get what? jerry: stuff. elaine: cleaning supplies? jerry: and gum. elaine: oh. well, there's nothin' more sophisticated than diddlin' the maid and then chewin' some gum. jerry: she's not a maid. she might be a news woman! kramer: hey. well, i just saw madeline off. yeah. she's in a cab and--nguh nguh nguh--on her way. i miss her already. elaine: hey, kramer, what was it you were having faxed to my house every 30 seconds? kramer: well, i signed up for a food delivery service, now we're cookin'. that's a play on words. you know, they're faxing me the menus from some restaurants. elaine: which ones? kramer: well, all of them. it's the deluxe package. elaine: so this is never gonna stop? kramer: well, it better not. paid for the whole year. so, should i pick those up later? elaine: you can pick 'em up right now. kramer: ah! elaine (thinking): i wonder if anyone knows he's here. if he just disappeared...would anybody notice? phone man: all right, miss benes, all finished. here's your new number. elaine: ahem. 646? what is this? phone man: that's your new area code. elaine: i thought 646 was just for new numbers. phone man: this is a new number. elaine: no, no, no, no. it's not a new number. it's--it's--it's just a changed number. see? it's not different. it's the same, just...changed. phone man: look, i work for the phone company. i've had a lot of experience with semantics, so don't try to lure me into some maze of circular logic. elaine: you know, i could've killed you, and no one would've known. phone man: i could've killed you, and no one would've known. jerry: kramer, you're still on the phone? kramer: madeline and i are watching quincy together. jerry, you know this comes on at the same time here as it does there? jerry: really? it's tuesday here. what day is it there? kramer (into phone): jerry's teasing. uh-oh! commercial. oh, you going to the bathroom? yeah. i'll go, too. jerry: madeline stays here. jerry: hey, t-bone! george: no. no t-bone. jerry: no t-bone? kramer (from bathroom): hey, is that t-bone?! jerry: no! there's no t-bone! kramer: well, why no t-bone?! jerry: why no t-bone? george: 'cause neil watkins from accounting is t-bone! kramer: oh, yeah i'm back. hey, you wanna play cards over the phone? kramer: oh, hey, uh, listen, jerry, uh, laundry's pilin' up there. you might want to tell your girlfriend. mmm. yeah. george: your girlfriend is doin' your laundry? kramer (from hallway): he's sleeping with his maid! george: you're sleepin' with the maid? jerry: yes. george: i've done that. did you ever eat an ostrich burger? jerry: no. man: you're probably one of those women who doesn't like to give out her number. elaine: no, i'm not. here you go. man: 646? elaine: it's a new area code. man: what area? new jersey? elaine: no, no. it's right here in the city. it's the same as 212. they just multiplied it by 3, and then they added one to the middle number. it's the same. man: do i have to dial a one first? man: i'm really kinda seein' somebody. elaine: yeah? well, so am i! george: excuse me. can i talk to you for a second there, watkins? watkins: it's t-bone. george: the thing is...i'm supposed to be t-bone. watkins: heh heh. you're not a t-bone. you're a perfect george. george: what? now, you listen to me! kruger: hey, look at george. he's givin' it to t-bone. he's jumpin' up and down like some kind of monkey. hey, what was the name of that monkey that could read sign language? watkins: all right, you can have t-bone. stop crying. george (sniffling): i'm not crying. and i shouldn't have said that about your wife. please accept my apologies. george: ok, everybody, uh...i have an announcement to make. from now on, i will be known as- kruger: koko the monkey. george: what? all (chanting): koko! koko! koko! koko! koko! koko! koko! koko! koko! koko! man: thank you both for being here. ealine: um, excuse me. i live in the building. did something happen to mrs. krantz? man: she passed. elaine: oh, i'm so sorry. man: thank you. elaine: a quick question-- did she by any chance have a 212 phone number? cindy: i can't find my earring. oh, here it is. kramer: hey, listen, can i borrow your suitcases? jerry: yeah. it's in your closet. kramer: no, no, no. i looked. jerry: they're behind my skis and my tennis racket. kramer: thanks, buddy. jerry: where you goin'? kramer: huh? well, i'm gettin' out of town. i'm gonna visit madeline for the weekend. you know, this place is lookin' kinda messy. what happened to cindy? jerry: well, she's here. she just didn't get around to it. kramer: oh. cindy: hi, kramer. cindy: thanks, jerry. bye. kramer: well, what's the matter? jerry: what did i just pay for? kramer: uh-oh. you're a john. jerry: koko? george: koko. jerry: well, it's probably the most intelligent ape there is. george: yeah. so, how's cindy the maid? jerry: well, everything's goin' great except, basically, i'm payin' for sex. george: tell me about it. i went out with this girl last week. first i had to pay for dinner, then-- jerry: no, george. she's coming over and not cleaning. it's like i'm seein' a prostitute. george: how much you pay this maid? jerry: 40. george: 40? i'm payin' 60 to my maid. she doesn't do laundry and i'm gettin' nothin'. all right. once she pinched my ass, but i don't know what that was. jerry: i don't know what this is. kramer: hey, hey, hey. look at that. jerry: ooh. kramer: jerry, you wouldn't believe what it's like down there. taxicab drivers are insane. you know, everybody is in a hurry. george: i can't eat with you leanin' over like this. just look straight forward. kramer: well, now i can't see jerry. jerry: i look about the same. george: what? jerry: i was talking to him. kramer: what? jerry: never mind. kramer: come on. what'd he say? george: never mind. kramer: jerry, come on. what'd you say? jerry: what? kramer: come on. where'd you go? jerry: go back. kramer: eh! come on. what did you say? jerry: i said, never mind. kramer: yeah. i know that. uh, uh. jerry: i hate the counter. elaine: hey. jerry: hey. elaine: i hate the counter. kramer: who's that? elaine (to jerry): well, i got a 212 number from this little old lady in my building-- mrs. krantz. jerry: oh, she didn't mind? elaine: no. she died. jerry: hey, that's great. george: what happened to mrs. krantz? jerry: elaine got a new number because she died. kramer: newman died? elaine: what did he say? jerry: some new kind of pie. george: i'll try a piece. kramer: all right, who's down there? jerry: hey, there's a booth. kramer: hey, elaine. elaine: oh, hi. kramer: did you hear about newman? elaine: what? george: hey. jerry: so how's it goin' at work? they get tired of it? george: oh, yeah. jerry: double zero? george: it's "ooh" as in "ooh ooh ah ah." cindy: your nickname's koko? one of the girls down at the maid service is named coco. george: really? coco? cindy: yeah. coco. that girl's all right. george: you know, if i could get this coco woman down to kruger, they wouldn't be able to call me koko anymore because kruger would never allow 2 kokos. jerry: sounds like he runs a real tight ship. george: say good-bye to koko. jerry: good-bye, koko. kramer: bye, koko. whew! jerry, this relationship is killing me. the distance, the longing, the distance, the-- you know, i didn't realize it, but i'm a needy person. jerry: kramer, maybe this relationship isn't for you. kramer: oh, yeah? so what am i supposed to do, be more like you? all sealed up in here, emotionally unavailable, paying scrubwomen for sexual favors! no! jerry, i won't be like you! never! i'll never be like you! cindy: what was that? jerry: i didn't hear anything. cindy: all right, i'm takin' off. aren't you forgetting something? jerry: oh, right! hey, it was great seeing you again. i love your outfit. cindy: no. my money. jerry: for what? cindy: for my maid services. you booked me for today. jerry: but you didn't really do any work. cindy: i made the bed. jerry: but you took a nap in it. cindy: so? jerry: i thought that was kind of girlfriend bed making. cindy: no. that was the maid. jerry: well, who took the nap? cindy: the girlfriend. jerry: $40 seems kind of steep for a nap. cindy: so, what are you saying? that i'm a bad maid or some kind of a prostitute? jerry: ho, ho...ho! hold on. let's keep this sophisticated. cindy: you know, i don't think i want to be your girlfriend or your maid. jerry: so is this a breakup/quitting? cindy: yeah. don't ever call me or hire me again. jerry: oh, yeah? well, then, we're through! and you're fired! phone man: sign here. elaine: yes! 212. elaine: hey, what happened to the guy i had last time? phone man: oh, you know, it's an odd thing. he went out on a job and never came back. nobody knows what happened. elaine: all right! i am back in the game. elaine: hello? boy: gammy! elaine: no. you got the wrong number, kid. boy: gammy krantz, it's your grandson bobby. why haven't you called? elaine: oh...nuts. boy: do you hate me 'cause of my lazy eye? elaine: no. it's just that i've been kind of buried over here. jerry: so the kid doesn't know his grandmother is dead? g-5? elaine: hit. no. i guess his parents didn't want to tell him. b-2? jerry: miss. elaine: he called 6 times yesterday. what a nightmare it must be to have a real family. jerry: i wouldn't worry about it. b-6? elaine: hit. uhh...you sank my submarine. jerry: elaine... jerry: hello? computer voice: you have a collect call from-- kramer: hey, buddy, don't say no! jerry: i accept. kramer: i went down to madeline's. i told her, "you gotta move, or it's over." jerry: well, what happened? kramer: i think it's over. we had a big fight, she threw me out, i started walkin', and now i'm lost downtown! i don't have any money. i don't recognize anybody. i miss home, and i don't even know how to get there. jerry: what's around you? kramer: i'm lookin' at ray's pizza. you know where that is? jerry: is it famous ray's? kramer: no. it's original ray's. jerry: famous original ray's? kramer: it's just original, jerry! jerry: well, what street are you on? kramer: hey, i'm on first and first. how can the same street intersect with itself? i must be at the nexus of the universe. jerry: just wait there. i'll pick you up, and, kramer, stay alive no matter what occurs, i will find you! kramer: aah! man: you steinfeld? jerry: yeah. man: my name is maxwell. i'm from maid to order. it's a pun. i sent one of my girls over to your place. jerry: cindy. man: she says she had a little problem with you. you didn't pay. jerry: you know, she didn't really do what she was supposed to do. man: oh, yeah? she told me what you like. you're a little sickie, aren't you? disinfectant on the blinds, vacuuming the counter-- jerry: hey, come on. come on. i gotta live around here. man: you know what i do to people who stiff me on a job? jerry: what? man: well, it kinda depends on the situation, but if i don't get my money from you, i'm gonna get it from her. jerry: i don't want to make trouble. you want the money? here. man: hey! wait, wait, wait! whoa! give it to the girl. i'm an independent contractor. tax purposes. elaine: bobby, you gotta stop calling your gammy. why? because sometimes you call very early in the morning when gammy has been out late the night before and sometimes when gammy's not alone. your parents still haven't said anything to you about your gammy? (sighs) all right, here we go. (coughing) gammy doesn't feel so good. i think gammy might be dying. yep. yep. ok. good-bye, bobby. don't call anymore. i'm dead now. gotta go. bobby: 9-1-1. jerry: nexus of the universe. hey, cindy. cindy. cindy: what do you want? jerry: here. i got your money. cindy: i don't want any money from you. jerry: come on. take it. it's money. let me give it to ya. police: looking for a good time, sir? you wanna step out of the car, sickie? jerry: well, this is all very sophisticated. fireman: all right, hang on, gammy! you're gonna make it! elaine: aah! maxwell: hey, you look a little lost. you from around here? kramer: uh, no. maxwell: you know where you're going? kramer: not really. my friend was supposed to pick me up, but i don't know where he is. maxwell: doesn't sound like much of a friend. you got any money? kramer: uh, no. maxwell: you wanna make some? kramer: ok. maxwell: do you know how to use a mop wringer? kramer: yeah, yeah. maxwell: why don't you get in the car? kramer: hi. ahh...these are soft seats. kruger: hey, koko, who's this? george: this is our new vice-president of acquisitions, sir. kruger: so you're just hiring new people now? that's your job, to hire people? george: yes? kruger: ok, good enough for me, koko. kruger: ahem. now, what's your name? coco: my name is coco. coco higgins. george: coco? kruger: we can't have 2 cocos. so i guess you're back to being george. george: well, it was a hell of a ride. kruger: all right, the grace building. there's a big stain on the front. how do we get it off? coco: when i was a little girl in jamaica, my gammy taught me to take a wet rag and in a circ-- george: ah, excuse me, vice-president coco, no one cares about your gammy. coco: what did you say about my gammy? george: forget gammy. kruger: who's gammy? george: there's no gammy. kruger: maybe there should be a gammy. george: oh, no. kruger: george. all (chanting): gammy! gammy! gammy! gammy! gammy! gammy! gammy! george: gammy's gettin' upset! george: man, i'm starving. elaine: how can you be hungry after what you ate at that mets game? george: because ballpark food doesn't count as real food. jerry: right. it's just an activity. it's like that paddle with the ball and the rubber band. kramer: you know, my friend bob saccamano made a fortune off of those. see he came up with the idea for the rubber band. before that, people would just hit the ball, and it would fly away. jerry: i can't believe you all made me leave before the end of the game. elaine: oh, come on, jerry. it was 9 to nothing. we were getting shellacked. george: those nachos are killing me. elaine: i thought you were hungry. george: it's complicated. kramer: come on, jerry, you're going to miss the exit. jerry: keep your shirt on. i got it. elaine: watch out for that maroon golf. kramer: oh, boy. jerry: look at this guy. he's trying to box me out. kramer: i'll tell you when you can go. wait, wait, wait, wait-- now, now, now. no, no, no. go, go! no, no. wait-- now, now! now! jerry! go--ahh... jerry: oh, calm down, maroon golf. he thinks i cut him off. he accelerated. kramer: you want me to moon him? ooh, let's moon him. roll up your window. let's do a pressed ham under glass. elaine: oh, no, i couldn't do that. kramer: look at this, look at this. he's giving us the finger. elaine: oh, all right. kramer: yeah. george: so i saw that new movie about the hindenburg. elaine: oh, yeah. what's that called? george: blimp the hindenburg story. jerry: how was it? george: i found it morose. why dwell on these negative themes? jerry: yeah. they should make a movie about all the hindenburg flights that made it. george: anyway, right in the middle, the ship blows up-- burning debris, bodies falling-- and then just as this eerie silence settles over the airfield, i yelled out, "that's gotta hurt!" jerry: heh. george: the place went nuts. jerry: imagine the laugh you could have gotten if you'd yelled that out at the actual disaster. george: yeah. kramer: why are we slowing down? jerry: what is that music? george: what's with all these flags? jerry: oh, no. elaine and jerry: it's the puerto rican day parade! elaine: ohh! oh, the city shuts down fifth avenue. they never let anyone through. we're never getting home. kramer: all right. i'm gonna check it out. aiee. mucho trafico. [stock footage: puerto rican day parade.] kramer: yeah...uhh...well, the streets are all blocked. i think every puerto rican in the world is out here. puerto rican man: well, it is our day. kramer: whoo. wrong car. sorry. radio: and the mets score two in the eighth inning. jerry: see? if we had stayed, we could have seen those runs. george: i could have had some ice cream. i think that might have calmed down the nachos. elaine: i'm going to miss 60 minutes. you know, i hate to miss 60 minutes. it's part of my sunday weekend wind-down. jerry: i don't know how you can unwind with that clock ticking. it makes me anxious. kramer: all right, gentlemen, i scouted it out. i think we can get out over there. jerry: but that's a one-way street coming this way. besides, how am i gonna get all the way over there? george: just inch over. you worm your way. elaine: just do it, jerry. uhh. this exhaust. i'm gonna throw up. kramer: you know, you should make yourself throw up. elaine: huh? kramer: you know you're going to. jerry: all right, i'm worming. kramer: hey, jerry. you know who the grand marshal is of this thing? none other than miss chita rivera. jerry: they're not letting me in. george: my hand is out. jerry: well, i think we're gonna need more than a hand. they have to see a human face. elaine: you sure you want his face? kramer: no, no, no. it was mara conchita alonso. george: this guy's giving me the stare-ahead. jerry: the stare-ahead. i hate that. i use it all the time. george: look at me! i am man! i am you! george: all right, he's letting you in. thank you! creep. kramer: oh! i know who it is. stacy keach. jerry: one more lane to go. george: all right! we're here! lamar: oh, look who's here. my old buddy, black saab. jerry: maroon golf. lamar: where you goin', black saab? you seem to be a tad askew. jerry: could you move your car back a little? lamar: oh. sorry. i seem to have cut you off. elaine: all right, i think i know where this is going, and i am going somewhere else. jerry: you can't do that. you can't just leave the group. elaine: i've been trying to leave this group for 10 years. vaya con dios. kramer: con dios? well, that's rude. jerry: can you believe her? george: yeah. i'll see you later. jerry: where are you going? george: the movies. blimp is playing right there. jerry: you're going to that again? why? just to do that stupid line? george: it's a performance, jerry. like what you do. jerry: that's not what i do. george: isn't it? jerry: maybe a little. ah, hell, i guess it is. kramer: you know, actually, jerry, you haven't worked a room that big in a while. [stock footage: taxis stuck in traffic]. elaine: look at that guy's dog. i hate it when their ears get flipped inside out like that. why doesn't he fix it? elaine (yelling): hey! fold your dog's ear back! elaine: ooh! this isn't moving! i could walk faster than this. cab driver: no, you can't. elaine: yes, i can. here. i'm outta here. elaine: oh, now it's moving. oh, yeah. i knew it. hey! hey! cab driver: where to? elaine: that's cute. that's really cute. oh! come on! all right. bye again. elaine: hey. taxi! taxi! george: ladies. i, uh, i haven't seen this before. lady 1: what is that dot? lady 2: oh, i think someone has one of those funny laser pointers. laser guy: gimme a box of those and one of those. george: excuse me, are you the guy with that funny laser? laser guy: the laser's not funny. i'm funny. george: yeah. the thing is, i, uh...i had this little zinger of my own i wanted to try. laser guy: uh-huh. george: it's right in the explosion scene. so if you could just...leave me a little window. you know, my, uh, my aunt had a thing removed with a laser. all right, i don't want to interrupt your meal, so... jerry: i've gotta see this game. if it wasn't for this guy, we could get out of here. lamar: this traffic's a killer, ain't it? kramer: you want to get outta here? here's what we do. we leave the car here, we take the plates off, we scratch the serial number off the engine block, and we walk away. jerry: walk away? kramer: you've got insurance. you tell them that the car was stolen, and then you get another one free. jerry: isn't there a deductible? kramer: all right, what is your deductible? jerry: i don't know. kramer: yes, because they've already deducted it. jerry: from what? kramer: the car, which we're leaving. so the net is zero. see you pocket the money, if there is any, and you get a new car. jerry: we're not leaving the car! kramer: all right. if you refuse to grow up and scam your insurance company, you'll have to work this out with maroon golf. jerry: absolutely not. he sped up. radio: swung on, line hard toward left center field. that's in the gap, that's a base hit. jerry: i'm ready to talk. lady 1: hey! there's that laser guy again. lady 2: he's funny. i never meet anyone funny. lady 1: i know. a sense of humor is so much more important to me than looks or hair. lady 2: mmm, yeah. george: that's gotta hurt! george: it's...gotta hurt! hurt! because...aaarrrrrgh! george: damn you, laser guy! you had to grab it all with your lowbrow laser shtick! you're just a prop comic! where's the craft?! lady 1: look! it's on the bald guy. lady 2: i am so glad we came to this showing. kramer: ok, here's the deal. he wants you to acknowledge that you cut him off with an "i am sorry" wave. jerry: what's that? kramer: you raise the hand, lower the head-- "i'm sorry, i'm sorry. the buttons are really big on the car. i don't understand it. i haven't read the manual. ooh!" you get my drift. jerry: ok! lamar: hallelujah. praise the lord. but i'll take it. kramer: yes! all right, lamar, back it up a little bit so we can get out now. george: all right. at last, we're finally gettin' out of here. jerry: what's that on your forehead? george: it's probably chocolate. jerry: hey, is that one of those laser pointers? kramer: hey, jerry, crank up the floyd. it's a george laserium! george: all right, stop it! stay away from my breasts! chest! jerry: see ya around maroon golf. and, by the way, that was an "i'm not sorry" wave. lamar: what was that? jerry: i'm glad i cut you off, because black saab rules! so long, jackass! jerry: elaine?! elaine: jerry?! lamar: jackass? so i'm a jackass now? jerry: so if everyone would just put their cars in reverse at the same time, we can do this. all right, on the count of three. can everyone hear me? hey, amigo, are you paying attention? puerto rican man: buenos dias, my friend. jerry: not you! the guy in the amigo. elaine: uh, well, uh, here--here is good. taxi driver: oh, yeah, sure, and now i'm gonna be stuck here. but you knew the way to go! you went to college! elaine: hey, i went to tufts! that was my safety school! so don't talk to me about hardship. elaine: boy, eh, can you believe this mess? jerry: elaine, why did you have the cab come down the street?! we were almost out! lamar: so that was your girlfriend that blocked you in. that's real good. elaine: i'm not his girlfriend. well, actually, we used to date, but not anymore. jerry: elaine, he doesn't need- lamar: used to date? so i guess you found out he's a jackass. jerry: 'cause that's what's gonna happen. kramer: wow. he's givin' you a mustache. where is this guy? george: don't look around. don't look around. that's what he wants. elaine: all right. well, i'll see ya. hey, george, i think there's a sniper lookin' to pop ya. george: this thing can't hurt me, can it? i mean, it is a laser. what if it hits my eye? jerry: i don't know. george: i can't be blind, jerry the blind are courageous. kramer: you'll be fine as long as it doesn't hit you right in the pupil, 'cause then the whole ball will go up like the death star. tchoo! i gotta go find a bathroom. jerry: hold it, george. don't move. it's right between your eyes. george: oh, my god. jerry: hey, there's the soda guy. lamar: hey, jackass! get me a diet dr. pepper! jerry (exasperated): all right! older man: hey, hey, hey! older woman: wha--ow! elaine: oh, this is nuts! i can't get across anywhere! older man: well, none of us can! we're trapped! older woman: ow! elaine: hey! hey, everyone. this way. i think we can get out through here. older man: oh, i don't know if that's such a good idea. elaine: look! no one knows how long this parade is gonna last! they are a very festive people. all i know is that it's sunday night, and i have got to unwind! now who's with me?! older woman: father? priest: none of us saw the nylon flap. that might mean something. pregnant woman: oh, all right, all right! elaine: all right! come on. come on. let's go. let's go. business man: but it's dark! elaine: get in there! kramer: yes, uh, i'm interested in the apartment. sales woman: yes! come in, come in. kramer: ok. sales woman: i'm christine nyhart. kramer: oh. delicious to meet you. sales woman: did the broker send you over? kramer: uh, yes, most likely, yes. i'm, uh, h.e. pennypacker. i'm a wealthy industrialist and philanthropist and, uh, a bicyclist. and, um, yes, i'm looking for a place where i can settle down with my, uh, peculiar habits, and, uh, the women that i frequent with. (sniffing wall) mmm. mombassa, hmm? sales woman: the asking price is $1.5 million. kramer: oh, i spend that much on after shave. yes, i buy and sell men like myself every day. now, i assume that there's a waterfall grotto? sales woman: no. kramer: how about a bathroom? sales woman: it has 4. kramer: yes, and where would the absolute nearest one be? sales woman: just down the hall. kramer: oh, thank you. elaine: oh, don't worry. we'll get you home to your husband real soon. pregnant woman: i'm not married. elaine: well, i, for one, really respect that. pregnant woman: oh, thank you. elaine (whispering): hey! guess who's not married. older man: is the boyfriend still in the picture? elaine: come on, father, you can make it. priest: no, i can't. i've got a bad hip. go on without me. elaine: no! i won't! priest: leave me! you must. elaine: all right. take it easy. elaine: all right, we can move faster without father o'gimpy. priest: i heard that! lamar: you know, i don't think i've ever seen a man driving a saab convertible. still haven't. jerry (sarcastically): ho ho! jerry: what seems to be the problem, officer? george: they're for protection, jerry. can you tell where i'm lookin'? jerry: at me? george: no. jerry: oh. it's back. george: bring it on, baby jerry: what if it gets in the side? george: the side? jerry: yeah. wouldn't it just bounce back and forth between your cornea and the mirror, faster and faster, getting more and more intense, until finally- george: all right! jerry: oh. it's in your eye now. kramer: hola, jerry! i'm into this puerto rican day! the sights! the sounds! the hot, spicy flavor of it all! it's caliente, jerry! jerry: kramer, the mets have got men on base! kramer: yeah, i know! i was watchin' the game. jerry: you were watchin'? where? jerry: oh, that was a strike! did you see that?! sales woman: would you like to see the rest of the apartment, mister, um-- jerry: eh...varnsen. kel varnsen. actually, this room intrigues me. why is it called the tv room? sales woman: well, it's-- jerry: balk?! how was that a balk?! you have any snacks? sales woman: mr. varnsen, if you like the apartment, i should tell you i've also had some interest from a wealthy industrialist. jerry: not pennypacker! sales woman: you know him? jerry: i wish i didn't. brace yourself, madam, for an all-out bidding war. but this time, advantage varnsen! george: wait a second. i think i see where that laser guy is. no! don't look! don't look. oh, yeah, that's him. ok. i'm gonna sneak up on him. now the hunted becomes the hunter. elaine: we should be able to get across right through here! older woman: it's a dead end! elaine: oh, no! i thought-- business man: you thought?! we're gonna die in the dark! i knew it! i knew it! we're gonna die! elaine: get a hold of yourself! pregnant woman: oh, come on! elaine: sorry. somebody...help us! man: !mira! !mira! stacy keach! elaine: we're down here! help! man: there's people down there! hold on! elaine: let us out. there's an unmarried pregnant woman down here. pregnant woman: don't judge me! elaine: help us up so we can cross the street? police officer: nah, nah, you can't cross here. there's a parade. elaine: but we've come so far. we just want to unwind. police officer: hey, what can i tell ya? business man: wanna make out some more? elaine: oh, god! let us out! george: that wasn't a laser pen. delivery man: no. it's just a pen. george: oh, that's funny delivery man: no. you have, like, a dot on your face. whoever's doing that is very clever. kramer: come on, man. you need to lighten up. you know, a feeling like this only happens once a year. kramer: yeah, it's like this every day in puerto rico. kramer: see, now you're getting the spirit of it, huh? kramer: ooh! !dios mio! man: hey! there's a guy burning the puerto rican flag! bob: who! who is burning the flag?! kramer: oh, no. bob: him?! cedric: that's not very nice. kramer: it was an accident. bob: do you know what day this is? because i know what day this is, they know what day this is, so i was wondering if you know what day this is! cedric: because it's puerto rican day. bob: maybe we should stomp you like you stomp the flag! what do you think of that? kramer: now look, i just have one thing to say to you boys. mama! sales woman: right this way, mr. vandelay. george: well, this is a lovely apartment. lovely! my kids are gonna go crazy. i, uh, i wonder if i could see the bathrooms. preferably one with some paint thinner and, uh, some rags? sales woman: it's down the hall. jerry: oh, hello... george: art. jerry: mr. vandelay, of course. sales woman: you two know each other? sales woman: mr. pennypacker! kramer: uh, yes, uh, i--i wanted to, uh, stop by and make sure that my shark tank fits-- uh, hello. sales woman: mr. pennypacker, this is mr. vandelay, and you know mr. varnsen kramer: uh, varnsen. jerry: pennypacker. kramer: vandelay. george: pennypacker. varnsen. jerry: vandelay. wait a second. mr. pennypacker, if you're here, and mr. vandelay is also here, then who's watching the factory? kramer: the factory? jerry: the saab factory? kramer: jerry, that's in sweden. jerry: my car! kramer: well, you know, it's like this every day in puerto rico. george: jerry, the mets lost. jerry: i love a parade! george: how do you suppose they did that? kramer: well...there's no logical explanation. all right. well, shall we go home? jerry: well, what about my car? kramer: well, jerry, you can't deduct it now. jerry: hey, there's elaine. elaine: hey. jerry: well, you look, uh...relaxed. elaine: well, it is sunday night, and you know how i like to unwind. lamar: hey, black saab. looks like that building cut you off! ha ha ha! see ya around! jerry: well, at least he didn't- lamar: jackass! jerry: somebody remember where we parked. kramer: this was a fun day. it's nice to get out. george: i can't eat this without catsup. would it kill her to check up on us? would that be a terrible thing? "how's everything? do you need anything? what can i do for you?" jerry: i know what you mean. george: do ya? jerry: it's like going out with someone and you never hear from them again. george: same thing! jerry: not really, but it's something. ask the people behind you. george: excuse me. are you using your catsup? woman: what do you think? you want to give him the catsup? man: it's up to you. woman: you know what? i don't think so. i'm going to need it from time to time. jerry: so what are you doing later? you want to go to the movies? george: nah - what for? jerry: to see a movie. george: i've been to the movies. jerry: not this movie. george: they're all the same. you go, you sit, you eat popcorn, you watch. i'm sick of it. jerry: did you shower today? george: yeah. jerry: that's usually the kind of mood i'm in when i haven't showered. george: when is it going to be my turn, jerry? when do i get my 15 minutes? i want my 15 minutes! jerry: oh, quit complaining. at least you have your health. george: ah! health's not good enough. i want more than health. health's not doing it for me anymore. i'm sick of health. woman: all right, we're done. you can have it now. george: oh, very gracious. man: nice day george: yeah. jerry: what is that? kramer: hey! jojo! jerry: ey, ey! elaine: all right, thanks for the ride, kramer. kramer: no, thank you. so what are you doing? jerry: nothing. kramer: come on, let's go to the beach. george: what are you crazy? kramer: what? it's a beautiful day. jerry: have a good time. kramer: yeah, there's something in the air today. you feel it? there's something in the air. jerry: you know you're turning into burt lancaster? kramer: yeah, there's something in the air. elaine: oh, i forgot to call jill. jill. hi, it's elaine. how is your father? is everything okay? what? i can't hear you so good. there's a lot of static. wha? i'm going to call you back. jerry: jill's father is in the hospital and you call to ask about him on a cell phone? elaine: what? no good? jerry: faux pas. elaine: faux pas? george: big hefty stinking faux pas. elaine: why? jerry: you can't make a health inquiry on a cell phone. it's like saying "i don't want to take up any of my important time in my home so i'll just get it out of the way on the street." george: on-the-street cell-phone call is the lowest phone call you can make. jerry: it's an act of total disregard. it's selfish. george: it's dismissive. jerry: it's pompous. george: why don't you think before you do something? elaine: here's a thought - bye bye. george: too much? george: boy - i'm really surprised at elaine - that whole phone business - she should know better than that. jerry: hey - hey - hey! george: what? jerry: where do you think this relationship is? if you are thinking of instituting an open-door urination policy, let me disabuse you of that notion right now, my friend. george: you're so uptight. jerry: uptight? let's all just have a big pee party. hey everybody, grab a bucket. we're going up to jerry's. it's a pee party. phone tape: jerry, this is elizabeth clark calling from james kimbrough's office at nbc. could you please give us a call?thanks. jerry: hello. yeah, hi, this is jerry seinfeld calling for james kimbrough. hello? hi? uh huh, really, uh, no problem, definitely, ok, buhbye. that was james kimbrough. george: who's he? jerry: he is the new president of nbc. he wants to sit down with us and talk about "jerry." george: our show, "jerry"? jerry: right. george: "jerry", oh my god. he wants to talk about "jerry"? jerry: yeah! george: when? jerry: today, like right now. george: right now? "jerry"? jerry: "jerry"! george: he wants to talk about "jerry"? jerry: he wants to talk about "jerry"! george: "jerry"! jerry: "jerry"! george: can i go like this? jerry: sure! george: no sports jacket? i don't need a sports jacket? writers wear sports jackets. jerry: forget the sports jacket. george: i won't feel like a writer. jerry: you're not a writer. george: right! george: water. need some water! water here! jerry: ok, now listen, i don't want any scenes in here like the last time. george: don't worry, don't worry, no scenes. jerry: don't blow this. george: i will not blow this. jerry: if he says he doesn't want it to be a show about nothing, don't go nuts. george: it's fine, it doesn't have to be about nothing. jerry: he might not want nothing. george: something, nothing, i could care less. jerry: he might want a show about anything and everything. george: anything, everything, something, nothing - who the hell cares? put me down. i'm down! jerry: all right. receptionist: mr. kimbrough is ready to see you george: magic time. jerry: what? george: nothing receptionist: mr. kimbrough. stu: hey, jerry, good to see you. george: hey, hey, hey! stu: how you been? jerry: good, good. you remember george. stu: george, good to see you. george: hello stu. stu: you remember jay crespi. george: jay crespi, how am i gonna forget jay crespi? stu: this is james kimbrough. kimbrough: nice to meet you, pleasure, thanks for coming in. george: kimbrough. jerry: don't spell. george: k-i-m-b-r-o-u-g-h kimbrough: that's right. george: it's a talent i have. kimbrough: why don't we sit down, glad you're here. george: woo! some day out there - you ever see weather like that? woo! it's crisp - it's crispy crisp. jerry: shut up, george. kimbrough: can i get you anything? george: what do we have in the fruit department? jerry: oy. stu: pineapple. george: oh, that's a dangerous fruit. it's like a weapon that thing, got spikes on the end. you can get killed from one of those things. kimbrough: anyway, let me tell you why i called. when i took over here last month, i reviewed what was in development,and it was pretty much same old, same old. george: been there, done that. kimbrough: right. i was looking for something different. something that would have people talking at the water coolers. george: water coolers? crespi: we call it a water-cooler show. jerry: because the next day in the offices, people gather around the water coolers to talk about it, right? george: see, i think people would talk about it at the coffee machines. jerry: well it's probably just easier to say "water cooler show" than "coffee machine show." george: it's really not accurate. nobody drinks from a water cooler any more - they use bottles. jerry: but i think mr. kimbrough makes a good point. kimbrough: anyway, stu here started telling me about a show, "jerry", that he developed five years ago. stu: i have always loved it. kimbrough: he said it was a show about nothing. so, i saw the pilot and i've got to tell you - i flipped out. crespi: he totally flipped out. kimbrough: what i want to do is put it on the air. 13-episode commitment. start it off on wednesday night, build up an audience. this show needs time to grow. i love that kramer guy. jerry: he's a little off the wall. crespi: oh yeah. stu: kramer. kimbrough: and elaine - i wouldn't mind seeing something happening between you two. jerry: definitely. george: i tell you, i really don't think so-called relationship humor is what this show is all about. kimbrough: or we could not do the show altogether, how about that? george: or we could get them together. woo! george: yeah! jerry: yeah! elaine: jill, hi, it's elaine. well, i'm calling from my home. indoors. well, i was just calling to see how your fa.. i'm sorry, i'm getting another call. hang on just a second. hello? jerry: hi. elaine, it's me. elaine: jerry, i'm on the other line. jerry: no no - this is an emergency - get off the phone. elaine: i'm sorry, jill. i'm going to have to take this call. jerry, what's the emergency? jerry: the "jerry"'s back on - the tv show! george and i are moving to california! elaine: that's the emergency? jerry: did you hear what i said? elaine: i was on the other line talking to jill. jerry: jill? well, why didn't you say so? elaine: you said it was an emergency. jerry: so now she's lost a phone face-off? that's even worse than your cell phone walk-and-talk. helen: congratulations, they're doing the show. morty: they should have put that show on 5 years ago. bunch of idiots at that network. can i tell you something, jerry? it's all crap on tv. the only thing i watch is xena the warrior princess. she must be about six-six. helen: she's not six-six. morty: jerry, you ever watch that? jerry: yeah, it's pretty good. estelle: they picked up the show? george: i'm moving to california. frank: oh baby-doll, this kid's going places, i told you. estelle: the nbc guy liked it? george: of course he liked it. estelle: he told you he liked it? george: he wouldn't put it on if he didn't like it. estelle: well, what are you doing? george: i'm writing. estelle: you know how to write? frank: without the writing, you have nothing. you're the ones that make them look good. estelle: since when do you know how to write? i never saw you write anything. george: ma?! estelle: i don't know how you're going to write all those shows. and where are you get all the ideas? frank: would you leave him alone? you'll shatter his confidence! george: i don't need any ideas. it's a show about nothing. estelle: nothing. please. i'll tell you the truth - the whole thing sounds pretty stupid to me. jerry: nbc is letting me use their private jet? and i can go anywhere i want? that's fantastic! thanks. great. okay, bye. kramer: oh hey! jerry: hey - how was the beach? kramer: oh, you missed it, buddy - lot of femininas - some major femininas jerry: i had a little meeting today at nbc. what are you doing? kramer: you know, i went swimming and i can't get this water out of my ear. jerry: so do you remember five years ago, we did that pilot, "jerry"? well, the new guy at nbc wants to do it. they're putting it on the air! they're giving us a 13-episode commitment. george and i are moving to california! kramer: you're moving to california? jerry: yeah, only for a while. kramer: yeah, but jerry, what happens if the show's a hit? you could be out there for years! you might never come back. jerry: no, i'll be back. kramer: jerry. it's l.a. nobody leaves. she's a seductress, she's a siren, she's a virgin, she's a whore. jerry: and my agent said as a bonus, i can use their private jet, so we'll all go somewhere - the four of us, one big fling before george and i go to california. kramer: fling! elaine: so we can go anywhere we want? jerry: anywhere. elaine: why are they doing this? jerry: i think they want to make it up to us cause they let this thing sit on their shelf for five years. elaine: this is all very exciting. george: so? where are we going? kramer: i say japan. elaine: why japan? kramer: oh - geishas - they cater to your every whim. they're shy at first, but they're quite skilled at conversation. they can discuss anything from world affairs to the fine art of fishing - or baking. elaine: oh - i got it - how about russia? jerry: russia, it's so bleak. elaine: it's not bleak - it's springtime. jerry: it's still bleak. elaine: you can't be bleak in spring. jerry: you can be bleak in spring. george: if you're bleak, you're bleak. elaine: what about switzerland? kramer: oh - switzerland - the von trapp family, huh? george: it's a bit hilly - no? elaine: you're not going to do any walking. george: what if i want to walk around a little? elaine: so then you'll walk down the hill and we'll pick you up. george: what if i'm at the bottom? elaine: all right! you know what, just forget it! jerry: alright - come on - come on now, people. let's face it, we're not all going to agree on anything. why don't we all just go to paris? elaine: i'll go to paris. george: me too. kramer: oh yeah - oui oui. jerry: so that's it - it's settled, we're going to paris. group: yeah! elaine: hey. nbc limo is downstairs - beep beep beep. {nbc tune} i'm just going to call jill one more time before we go. jerry: wait, you can't make a call like that on your way out. you can't rush that conversation. elaine: well, i can't call from the limo. can i call from the plane? jerry: first you make a cell-phone walk-and-talk, then she loses a call-waiting face-off, now you're talking about a plane call? elaine: all right, i'll just have to call her from paris. newman: hello, jerry. jerry: hello, newman. what gives? newman: i was speaking earlier with kramer and he mentioned something about a private jet to paris? jerry: yeah, that's right. newman: well, i hear it's quite beautiful there this time of year, and of course you know i'm one-quarter french. jerry: really. newman: oh yes, in fact i still have family there. this probably won't interest you, but i have a cousin there who's suffering very badly. she's lost all use of her muscles. she can only communicate by blinking. i would so love to see her - bring a ray of sunshine into her tragic life. but alas, i can't afford it, for i am, as you know, but a simple postal worker. jerry: that's a shame. newman: take me! take me! jerry: oh, forget it. pull yourself together. you're making me sick. be a man! newman: all right! but hear me and hear me well - the day will come. oh yes, mark my words, seinfeld - your day of reckoning is coming. when an evil wind will blow through your little playworld, and wipe that smug smile off your face. and i'll be there, in all my glory, watching - watching as it all comes crumbling down. captain: ah, jerry? jerry: yeah. captain: i'm captain maddox this is my co-pilot, kurt adams. ready to go to paris? jerry: all set. we'll just grab the bags. captain: don't worry about that. we'll take care of them for you. jerry: just keeps on getting better and better. jerry: not bad. elaine: wow! kramer: the only way to fly. george: this is it? george: i'm sorry - i have to say, i'm a little disappointed, i thought it would be a lot nicer. jerry: you're complaining about a private jet? george: you think this is the plane that ted danson gets? jerry: ted danson is not even on the network anymore. george: still, i bet when they gave him a plane, it was a lot nicer than this one. elaine: will you shut up? you are ruining the whole trip. george: this is a real piece of junk. i don't even feel safe on this thing. i have a good mind to write a letter tomr. kimbrough. jerry: you're not writing any letters! elaine: will you turn around? george: why? elaine: you are annoying me sitting like that. it's effeminate. george: it's effeminate to sit like this? elaine: yes, i think it's a little effeminate. george: how is this effeminate? elaine: i don't know - it just is. george: kramer, what are you doing? jerry: still got water in your ear? kramer: can't get rid of it. maybe it leaked inside my brain. george: would you stop that? it's not safe to be jumping up and down on a plane. kramer: i got to get it out, i can't take this anymore. george: kramer, don't be fooling around up here. george: kramer! captain: hey, get the hell out of here! elaine: what is that? george: oh my god! elaine: what is that noise? what is that noise? jerry: kramer, what the hell did you do? kramer: i lost my balance. elaine: oh my god! elaine: what's going on? jerry: kramer! kramer: it was an accident. george: i told you to stop with the hopping. elaine: oh my god, we're going down. we're going to die! george: just when i was doing great. i told you god wouldn't let me be successful. jerry: is this it? is this how it ends? it can't- it can't end like this. kramer: i'm ready! i'm ready! glory hallelujah! george: jerry? jerry can you hear me? jerry: yeah. george: there's something i have to tell you. jerry: what? what is it? george: i cheated in the contest. elaine: what? jerry: what? george: the contest - i cheated. jerry: why? george: because i'm a cheater! i had to tell you. jerry: great - i won. elaine: jerry, i gotta tell you something too. jerry: yeah, elaine i got something i want to say to you. elaine: no no - me first. jerry: alright. elaine: jerry, i've always loved ..u.. george: hey - what's going on? kramer: we're straightening out! elaine: we're straightening out? jerry: we're straightening out! george: we're straightening out! group: yeah! captain: well, again, sorry about that little mishap. but once you get everything checked out there shouldn't be anymore problems. jerry: where are we? captain: latham, massachusetts. why don't you take a cab into town, get yourself something to eat. i got your beeper number - i'll beep you as soon as we're ready. jerry: okay. elaine: okay. jerry: we'll see you later. elaine: well, what are we going to do about paris? i mean are we actually going to get back on this plane? jerry: i say we go back to new york, and take a regular flight. george: i'm not getting on a regular plane now - i'm all psyched up to go on a private jet. no way i'm getting on a regular plane. elaine: well, i'm sure that they would fly us first class. george: first class doesn't make it anymore. now you get on the phone with kimbrough, tell him what happened and tell him to get another plane down here, but this time, the good one - the ted danson plane. jerry: alright, i'll feel him out. george: yeah, just tell him to hurry it up. stranger: nice day. jerry: another one? robber: alright fatso, out of the car. kramer: i want to capture this. robber: come on! gimme your wallet. vogel: don't shoot. jerry: well, there goes the money for the lipo. elaine: see, the great thing about robbing a fat guy is it's an easy getaway. you know? they can't really chase ya! george: he's actually doing him a favor. it's less money for him to buy food. robber: i want your wallet. come on. come on, come on. jerry: that's a shame. alright, i'm gonna call nbc. vogel: officer, he's stealing my car! officer, i was carjacked. i was held up at gunpoint! he took my wallet, everything! jerry: okay, thanks anyway. they can't get another plane. kramer: all right, what's wrong with the plane we got? they're just checking it out. elaine: forget it. jerry: no, no, no. we're not getting on there. come on, let's go get something to eat in sticksville. officer: all right, hold it right there. kramer: what? officer: you're under arrest. jerry: under arrest? what for? officer: article 223-7 of the latham county penal code. elaine: what? no, no - we didn't do anything. officer: that's exactly right. the law requires you to help or assist anyone in danger as long as it's reasonable todo so. george: i never heard of that. officer: it's new. it's called the good samaritan law. let's go. elaine: the good samaritan law? are they crazy? george: why would we want to help somebody? elaine: i know. george: that's what nuns and red cross workers are for. kramer: the samaritans were an ancient tribe - very helpful to people. elaine: alright - um, excuse me, hi, could you tell me what kind of law this is. deputy: well, they just passed it last year. it's modeled after the french law. i heard about it after princess diana was killed and all those photographers were just standing around. jerry: oh, yeah. elaine: oh, yeah. deputy: you're the first ones to be arrested on it, probably in the whole country. george: all right, so what's the penalty here? let's just pay the fine or something and get the hell out of here. deputy: well, it's not that easy. now see, the law calls for a maximum fine of $85,000 and as much as five years in prison. elaine: what? george: oh no no no no - we have to be in california next week. we're starting a tv show. deputy: california? oh gosh, i don't think so. yeah, my guess is you're gonna be prosecuted. better get yourselves a good lawyer. chiles: who told you to put the cheese on? did i tell you to put the cheese on? i didn't tell you to put the cheese on. secretary: jerry seinfeld on the phone. chiles: you people with the cheese. it never ends. hello? uh huh. uh huh. uh huh. good samaritan law? i never heard of it. you don't have to help anybody. that's what this country's all about. that's deplorable, unfathomable, improbable. hold on. suzie, cancel my appointment with dr. bison. and pack a bag for me. i want to get to latham, massachusetts,right away. hoyt: so they got jackie chiles, huh? (sets down the newspaper) uh hmm. you know what that means. this whole place is going to be swarming with media by the time this thing is over. you're not going to be able to find a hotel room in this town. the whole country is going to be watching us. now we got to do whatever it takes to win it, no matter what the cost. the big issue in this trial is going to be character. i want you to find out everything you can about these people - and i mean everything. kramer: mmmm, this is pretty good chow, huh? george: would it kill him to check up on us? no - drops off the meals and that's it. i realize we're prisoners, but we're still entitled to catsup. elaine: i guess we could've called for help. jerry: but then we would have missed the whole thing. kramer: i still had it on video. we could have watched it later. george: yeah, he's right. jerry: i forgot about the video. elaine: sure - the video. elaine: what is that? jerry: plane's ready. rivera: hi everybody, i'm geraldo rivera. tonight we'll be talking about what most of you have probably been discussing in your homes, and around the water coolers in your offices. i am speaking of course of the controversial good samaritan trial that gets underway thursday in latham, massachusetts. now before we meet our distinguished panel, let's go to latham live, where jane wells is standing by. jane- wells: yes. good evening, geraldo. rivera: what's the mood? what's going on tonight? wells: well, latham is fairly quite tonight, considering the media circus that has descended upon this quaint little town. rivera: and what about the defendants - the so-called new york four. how are they holding up? wells: well, i did speak with one of the deputies who had some contact with them, and he told me quote "there's no love lost with that group." rivera: anything else, jane? wells: there also seems to be some friction between mr. seinfeld, and ms. benes. the rumor is that they once dated, and it's possible that ended badly. rivera: well, ladies and gentlemen, who know, maybe this trial will bring them closer together. maybe they'll even end up getting married. helen: i hope you packed enough - this trial could last for weeks. morty: what's all that? helen: cereal. morty: you're packing cereal? helen: i'm bringing it for jerry. morty: you got enough here for a life sentence. helen: he likes it. he says he misses that more that anything. morty: so bring a snack-pack. estelle: poor georgie, was it our fault this happened to him? did we do something wrong? maybe it was our fault. frank: maybe it was your fault. it wasn't my fault. i can tell you that. estelle: oh, so it was my fault, but not yours. frank: you were the one who smothered him. estelle: i did not smother him. frank: you smothered! he couldn't get any air! he couldn't breathe! he was suffocating! estelle: sure, and you were always in korea with your religious chachkis. frank: i had to make a living! kramer: this is excellent huh? don't worry i didn't use too much milk, cause i know we gotta make it last. jerry: you know i've had to reduce my milk level. my whole life i've always filled to at least three quarters - sometimes, to the top of the cereal. now, to conserve, i can't even see the milk anymore. it's a big adjustment. kramer: i bet. jerry: it's one of the hardest things i've ever had to do. chiles: good morning. elaine: good morning, jackie. jerry: good morning. chiles: is everybody ready? didn't i tell you i wanted you to wear the cardigan? george: it makes me look older. chiles: look older? do you think this is a game? is that what you think this is? i'm trying to give you amoral compass. you have no moral compass. you're going to walk into that courtroom, and the jury's going to see a mean, nasty, evil george costanza. i want them to see perry como. no one's going to convict perry como. perry como helps out a fat tub who's getting robbed. chiles: do you think it's funny? jerry: no. chiles: you damn right it isn't. you better not be carrying on laughing in that courtroom, funny man. cause if you start getting all smart-alecky, making wisecracks, acting a fool, you gonna find yourself in here for a long, long time. i don't like that tie. suzie, get one of my ties from my briefcase. elaine: how do i look, jackie? chiles: oh, you looking good. you look strong. you one fine-looking sexy lady. elaine: thank you, jackie. kramer: how bout me, jackie? chiles: kramer, you always look good. you got respect for yourself. you're genuine. jury's going to pick up on that. chiles: here. jerry: this one? chiles: that's right. jerry: do i have to? elaine: jackie says put it on, jerry. bailiff: all rise. fourth district county court, latham, massachusetts is now in session. the honorable judge arthur vandelay presiding. george: vandelay? the judge's name is vandelay? chiles: vanda who? george: jerry, did you hear that? jerry: yeah. george: i think that's a good sign. vandelay: is the district attorney ready to proceed? hoyt: we are, your honor. vandelay: mr. hoyt. hoyt: ladies and gentlemen, last year, our city council by a vote of twelve to two, passed a good samaritan law. now, essentially, we made it a crime to ignore a fellow human being in trouble. now this group from new york not only ignored, but, as we will prove, they actually mocked the victim as he was being robbed at gunpoint. i can guarantee you one other thing, ladies and gentlemen, this is not the first time they have behaved in this manner. on the contrary, they have quite a record of mocking and maligning. this is a history of selfishness, self-absorption, immaturity, and greed. and you will see how everyone who has come into contact with these four individuals has been abused, wronged, deceived and betrayed. this time, they have gone too far. this time they are going to be held accountable. this time, they are the ones who will pay. vandelay: mr. chiles. chiles: i am shocked and chagrined, mortified and stupefied. this trial is outrageous! it is a waste of the taxpayers' time and money. it is a travesty of justice that these four people have been incarcerated while the real perpetrator is walking around laughing - lying and laughing, laughing and lying. you know what these four people were? they were innocentbystanders. now, you just think about that term. innocent. bystanders. because that's exactly what they were. we know theywere bystanders, nobody's disputing that. so how can a bystander be guilty? no such thing. have you ever heard of a guilty bystander? no, because you cannot be a bystander and be guilty. bystanders are by definition, innocent. that is the nature of bystanding. but no, they want to change nature here. they want to create a whole new animal - the guilty bystander. don't you let them do it. only you can stop them. vandelay: is the prosecution ready to present its first witness? hoyt: we are, your honor. call officer matt vogel to the stand. bailiff: call matt vogel. hoyt: so they were just standing there? vogel: yes. hoyt: did one of them have a video camera? vogel: yes. hoyt: your honor, with the court's permission, we would like to play back that video and enter it into evidence as exhibit a. vandelay: proceed. vogel: don't shoot. jerry: well, there goes the money for the lipo. elaine: see, the great thing about robbing a fat guy is it's an easy getaway. they can't really chase ya! george: he's actually doing him a favor. it's less money for him to buy food. [new witness: the victim of the robbery] hoyt: so they just stood there and did nothing? vogel: yeah, nothing. nothing! hoyt: no further questions. george: hey! great plane! thanks a lot. piece of junk. you know you almost got us killed! hoyt: call mabel choate to the stand. bailiff: call mabel choate. chiles: your honor. i most strenuously and vigorously object to this witness. she was not present at the time of the incident. her testimony is irrelevant, irrational, and inconsequential. hoyt: your honor, the prosecution has gone to great lengths and considerable cost to find these character witnesses.it is imperative that we establish this is not merely an isolated incident. it's part of a pattern of anti-social behavior that's been going on for years. vandelay: objection overruled. i'll hear the witness. hoyt: now, mrs. choate, would you please tell the court what happen the evening of january 4th. choate: well, i was in snitzer's bakery when i got accosted by that man. hoyt: let the record show that she is pointing at mr. seinfeld. hoyt: what did he want? choate: my marble rye. hoyt: your marble rye? choate: i got the last one. he kept persisting, and i said no. hoyt: and then you left the bakery. choate: that's right. hoyt: but it didn't end there, did it, mrs. choate? choate: oh no. jerry: gimme that rye. choate: stop it. jerry: i want that rye lady. choate: help - someone help. jerry: shut up, you old bag! hoyt: no further questions. hoyt: i call marla penny to the stand. bailiff: call marla penny. jerry: the virgin! hoyt: and what was your connection to the defendants? penny: i dated mr. seinfeld for several weeks in the autumn of 1992. hoyt: then on the evening of october 28, there was an abrupt end to that relationship. tell us what happened. penny: it's rather difficult to talk about. hoyt: it's alright. take your time. penny: well, i became aware of a - hoyt: a what? penny: a, uh - hoyt: yes? penny: a contest. hoyt: contest? penny: yes. hoyt: what was the nature of the contest? penny: oh please, i can't. hoyt: it's okay. penny: the four of them made a wager to see if they could - hoyt: yes? penny: to see who could go the longest without gratifying themselves. peterman: for the love of god! penny: it was horrible, horrible! hoyt: call donald sanger to the stand. jerry: who the hell is that? mr. sanger: come on donald, you're doing fine. george: the bubble boy! chiles: bubble boy? jerry: that's right, the bubble boy. chiles: what's a bubble boy? jerry: he's a boy who lives in a bubble. bubble boy: what the hell are all you looking at? hoyt: so donald, would you please tell the court about the incident that occurred in your house, october 7th, 1992. bubble boy: well, jerry seinfeld was supposed to come to my house, but his friend costanza showed up instead, so i challenged him to a game of trivial pursuit. george: who invaded spain in the eighth century? bubble boy: that's a joke - the moors. george: oh no - i'm so sorry, it's the moops. the correct answer is the moops. bubble boy: moops? let me see that. that's not moops, you jerk. it's moors. it's a misprint. george: sorry, the card says moops. bubble boy: it doesn't matter. it's moors - there's no moops. george: it's moops. bubble boy: moors! george: moops! george: help! someone! bubble boy: there's no moops, you idiot. susan: stop it! let go of him! mrs. sanger: donald, stop it. no. donald, stop it. george: it was moops. bubble boy: moors. [new witness: the lady kramer gave a defective wheelchair to in "the handicapped spot"] hoyt: so mr. costanza parked in a handicapped spot, and as a result you got in an accident, and your wheelchair was destroyed? lady: that's right. hoyt: and then mr. kramer gave you a used wheelchair? lady: that's right. [new witness: dr. wilcox, the doctor on duty when susan died] hoyt: so you were the doctor on duty the night susan ross died? wilcox: yes, that's right. it was may 16, 1996. i'll never forget it. hoyt: so you broke the news to mr. costanza? could you tell the court, please, what his reaction was? wilcox: i would describe it as restrained jubilation. mr. ross: murderer! mrs. ross: he killed our daughter! he knew those envelopes were toxic! vandelay: order in this court! hoyt: call sidra holland to the stand. chiles: whew! look at this one, she fine. you dated her? hoyt: so you met jerry seinfeld in a health club sometime in 1993? sidra: yes. hoyt: and you also met miss benes in that same health club? sidra: yes, that's true. hoyt: would you describe the circumstances of that meeting. sidra: we were in the sauna, making chit-chat. sidra: you know, i've seen you around the club. my name's sidra. this is marcie. elaine: oh, hi, i'm elaine. hoyt: so, she pretended to trip, and she fell into your breasts? sidra: yes. hoyt: why would she do something like that? sidra: because he sent her in there to find out if they were real. [new witness: joe bookman, library cop] hoyt: state your name. bookman: bookman, joe bookman. hoyt: and what's your occupation? bookman: i'm a library cop. hoyt: what does a library cop do? bookman: we chase down library delinquents. hoyt: anyone in this room ever delinquent? bookman: yeah, he was. right over there - seinfeld. hoyt: how long was his book overdue? bookman: 25 years. we don't call them delinquent after that long. hoyt: what do you call them? bookman: criminals. [new witness: george's old girlfriend] hoyt: so you and mr. costanza were dating. woman: yes. hoyt: and then what happened? woman: well, i invited him to attend my son's birthday party and - george: fire! get out of the way! [new witness: parking lot security guard] guard: at the time, i was employed as a security guard in the parking lot at the garden valley shopping mall. jerry: why would i do it unless i was in mortal danger? i know it's against the law. guard: i don't know. jerry: because i could get uromycitisis poisoning and die - that's why. hoyt: uromycitisis! i wonder if they're having any trouble controlling themselves during this trial? perhaps these two hooligans would like to have a pee party right here in the courtroom! chiles: objection, your honor! this is completely inappropriate! my clients' medical condition is not on trial here! i refer you to the disability act of 1990. vandelay: sit down, mr. chiles. [new witness: police detective] hoyt: alright, detective, then what happened? detective: we got a tip that a lot of prostitutes had been turning tricks in the parking lot. prostitute: you just cost me some money. kramer: cool it, lady. cool it. cool it, lady. cool it. police: police officers - freeze right there! hoyt: so cosmo kramer was, in fact, a pimp. [witness: the low-talker from "the puffy shirt"] hoyt: so you asked mr. seinfeld if he would wear your puffy shirt on the today show? low-talker: (mumbles) hoyt: excuse me? chiles: uh, excuse me, your honor, but what is the point of this testimony? this woman's a low-talker. i can't hear a word she's saying. so either get some other kind of microphone up there, or let's move on. [new witness: george steinbrenner] hoyt: call george steinbrenner to the stand. bailiff: call george steinbrenner. hoyt: so george costanza came to work for you in may of 1994? steinbrenner: yes, that's right, he was good kid - a lovely boy. shared his calzone with me - that was a heck of a sandwich, wasn't it, georgie? george: yes, sir, that was a good sandwich, sir. steinbrenner: he had one little problem though. hoyt: what was that? steinbrenner: he was a communist. thick as they come. like a big juicy steak. frank: how could you give twelve million dollars to hideki irabu?! vandelay: order! [new witness: marcellino from "the little jerry"] hoyt: cock fighting? marcellino: cock fighting. [new witness: pharmacist from "the sponge"] pharmacist: sponges. i don't mean the kind you clean your tub with. they're for sex. said she needed a whole case of them. [new witness: elaine's old boyfriend from work] man: she exposed her nipple. [new witness: mr. pitt] hoyt: how did she try to kill you? pitt: she tried to smother me with a pillow. hoyt: call yev kassem to the stand. bailiff: call yev kassem. jerry: who? elaine: the soup nazi! chiles: soup nazi? you people have a little pet name for everybody. hoyt: state your name. soup nazi: yev kassem. hoyt: could you spell that? soup nazi: no! next question. hoyt: how do you know the defendants? soup nazi: they used to come to my restaurant. george: medium turkey chili. jerry: medium crab bisque. george: i didn't get any bread. jerry: just forget it. let it go. george: um, excuse me, i think you forgot my bread. soup nazi: you want bread? george: yes, please. soup nazi: three dollars! george: what? soup nazi: no soup for you! soup nazi: but the idiot clowns did not know how to order. i banned that one - the woman - for a year. then one day, she came back. elaine: five cups chopped porcini mushrooms. half a cup of olive oil. three pounds celery. soup nazi: that's my recipe for wild mushroom. elaine: you're through, soup nazi. pack it up. no more soup for you. next! soup nazi: she published my recipes. i had to close the store, move to argentina. she ruined my business! elaine: soup's not all that good anyway. soup nazi: what did you say?! hoyt: the state calls mr. babu bhatt to the stand. jerry: how did they find babu? elaine: i thought he was deported. hoyt: you came a long way to be here today, haven't you? hoyt: and what's your connection to the defendant? hoyt: and then what happened? rivera: hi everybody, i'm geraldo rivera and welcome to this special edition of rivera live. well, arguments in the good samaritan trial ended today. the jury has been in deliberation for four and a half hours now. let's go live to jane wells who is in latham, massachusetts, covering this trial for us. jane - wells: geraldo, just a few minutes ago, the jury asked to see the video tape. rivera: that's the one where they are overheard making sarcastic remarks during the robbery. wells: yes, it's a very incriminating piece of evidence. but i must tell you, geraldo, this courtroom and everyone who has attended this trial is still reeling from the endless parade of witness who have come forth so enthusiastically to testify against these four seemingly ordinary people. one even had the feeling that if judge vandelay didn't finally put a stop to it, it could've gone on for months. rivera: jane, whose testimony do you think resonated most strongly with this jury? wells: that is so hard to say. certainly there's the doctor with the poison invitations. the bubble boy was an extremely sympathetic and tragic figure. and that bizarre contest certainly didn't sit well with this small town jury.there's the woman they sold the defective wheelchair to, the deported pakistani restaurateur. geraldo, it just went on, and on, and on, into the night. rivera: and so we wait. jerry: do they make you wear uniforms in prison? elaine: i think so. jerry: it's not that bright orange one is it? elaine: i hope it's not that one, because i cannot wear orange. kramer: will you stop worrying? jackie's going to get us off. he never loses. how about when he asked that cop if a black man had ever been to his house. did you see the look on his face? estelle: sorry to bother you, judge. vandelay: how did you get in here? estelle: please, if he's found guilty, please be kind to him. he's a good boy. vandelay: this is highly irregular. estelle: well, maybe there's something i can do for you. vandelay: what do you mean? estelle: you know sidra: oh, jackie, you're so articulate. chiles: we have plenty of time, too. this jury could be out for days. chiles: hello? damn. they're ready. jerry: hey elaine, what was it you were about to say to me on the plane when it was going down? elaine: i've always loved ... united airlines. kramer: i think it's going to be okay - that girl just smiled at me. jerry: maybe because she knows you're going to jail. bailiff: all rise. vandelay: ladies and gentlemen of the jury, have you reached a verdict? foreman: we have, your honor. vandelay: will the defendants please rise. and how do you find, with respect to the charge of criminal indifference? foreman: we find the defendants - guilty. vandelay: order! order in this court, i will clear this room! i do not know how, or under what circumstances the four of you found each other, but your callous indifference and utter disregard for everything that is good and decent has rocked the very foundation upon which our society is built. i can think of nothing more fitting than for the four of youto spend a year removed from society so that you can contemplate the manner in which you have conducted yourselves. i know i will. this court is adjourned. george: you had to hop! you had to hop on the plane. elaine: puddy, don't wait for me. puddy: alright. frank: we gotta get out of here. we want to beat the traffic. sidra: come on, jackie. let's go. jerry: what? chiles: oh, and by the way, they're real, and they're spectacular. jerry: well, it's only a year. that's not so bad. we'll be out in a year, and then we'll be back kramer: could be fun. don't have to worry about your meals, or what you're going to do saturday night. and they do shows. yeah, we could put on a show - maybe "bye bye birdie" or "my fair lady". elaine, you could be liza doolittle. elaine: why don't you just blow it out your a... elaine: if i call jill from prison, do you think that would make up for the other ones? jerry: sure. elaine: cause you only get one call. the prison call is like the king of calls. jerry: i think that would be a very nice gesture. kramer: i got it - it's out! how about that, huh? oh, boy, what a relief. jerry: see now, to me, that button is in the worst possible spot. george: really? jerry: oh yeah. the second button is the key button. it literally makes or breaks the shirt. look at it, it's too high, it's in no-man's land. george: haven't we had this conversation before? jerry: you think? george: i think we have. jerry: yeah, maybe we have. jerry: so what is the deal with the yard? i mean when i was a kid my mother wanted me to play in the yard. but of course she didn't have to worry about my next door neighbor tommy sticking a shiv in my thigh. and what's with the lockdown? why do we have to be locked in our cells? are we that bad that we have to be sent to prison, in prison? you would think the weightlifting and the sodomy is enough. so, anyone from cellblock d? prisoner 1: i am. jerry: i'll talk slower. i'm kidding - i love cellblock d. my friend george is in cellblock d. what are you in for,sir? prisoner 2: murder one. jerry: murder one? oooooo, watch out everybody. better be nice to you. i'm only kidding sir - lighten up. how about you, what are you in for? prisoner 3: grand theft auto. jerry: grand theft auto - don't steal any of my jokes. prisoner 3: you suck - i'm gonna cut you. jerry: hey, i don't come down to where you work, and knock the license plate out of your hand. guard: alright, seinfeld, that's it. let's go. come on. jerry: alright, hey, you've been great! see you in the cafeteria. ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Next Chars pytorch/project-tv-script-generation/helper.py ================================================ import os import pickle import torch SPECIAL_WORDS = {"PADDING": ""} def load_data(path): """ Load Dataset from File """ input_file = os.path.join(path) with open(input_file, "r") as f: data = f.read() return data def preprocess_and_save_data(dataset_path, token_lookup, create_lookup_tables): """ Preprocess Text Data """ text = load_data(dataset_path) # Ignore notice, since we don't use it for analysing the data text = text[81:] token_dict = token_lookup() for key, token in token_dict.items(): text = text.replace(key, " {} ".format(token)) text = text.lower() text = text.split() vocab_to_int, int_to_vocab = create_lookup_tables( text + list(SPECIAL_WORDS.values()) ) int_text = [vocab_to_int[word] for word in text] pickle.dump( (int_text, vocab_to_int, int_to_vocab, token_dict), open("preprocess.p", "wb") ) def load_preprocess(): """ Load the Preprocessed Training data and return them in batches of or less """ return pickle.load(open("preprocess.p", mode="rb")) def save_model(filename, decoder): save_filename = os.path.splitext(os.path.basename(filename))[0] + ".pt" torch.save(decoder, save_filename) def load_model(filename): save_filename = os.path.splitext(os.path.basename(filename))[0] + ".pt" return torch.load(save_filename) ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Next Chars pytorch/project-tv-script-generation/problem_unittests.py ================================================ from unittest.mock import MagicMock, patch import numpy as np import torch class _TestNN(torch.nn.Module): def __init__(self, input_size, output_size): super(_TestNN, self).__init__() self.decoder = torch.nn.Linear(input_size, output_size) self.forward_called = False def forward(self, nn_input, hidden): self.forward_called = True output = self.decoder(nn_input) return output, hidden def _print_success_message(): print("Tests Passed") class AssertTest(object): def __init__(self, params): self.assert_param_message = "\n".join( [str(k) + ": " + str(v) + "" for k, v in params.items()] ) def test(self, assert_condition, assert_message): assert assert_condition, ( assert_message + "\n\nUnit Test Function Parameters\n" + self.assert_param_message ) def test_create_lookup_tables(create_lookup_tables): test_text = """ Moe_Szyslak Moe's Tavern Where the elite meet to drink Bart_Simpson Eh yeah hello is Mike there Last name Rotch Moe_Szyslak Hold on I'll check Mike Rotch Mike Rotch Hey has anybody seen Mike Rotch lately Moe_Szyslak Listen you little puke One of these days I'm gonna catch you and I'm gonna carve my name on your back with an ice pick Moe_Szyslak Whats the matter Homer You're not your normal effervescent self Homer_Simpson I got my problems Moe Give me another one Moe_Szyslak Homer hey you should not drink to forget your problems Barney_Gumble Yeah you should only drink to enhance your social skills""" test_text = test_text.lower() test_text = test_text.split() vocab_to_int, int_to_vocab = create_lookup_tables(test_text) # Check types assert isinstance(vocab_to_int, dict), "vocab_to_int is not a dictionary." assert isinstance(int_to_vocab, dict), "int_to_vocab is not a dictionary." # Compare lengths of dicts assert len(vocab_to_int) == len(int_to_vocab), ( "Length of vocab_to_int and int_to_vocab don't match. " "vocab_to_int is length {}. int_to_vocab is length {}".format( len(vocab_to_int), len(int_to_vocab) ) ) # Make sure the dicts have the same words vocab_to_int_word_set = set(vocab_to_int.keys()) int_to_vocab_word_set = set(int_to_vocab.values()) assert not (vocab_to_int_word_set - int_to_vocab_word_set), ( "vocab_to_int and int_to_vocab don't have the same words." "{} found in vocab_to_int, but not in int_to_vocab".format( vocab_to_int_word_set - int_to_vocab_word_set ) ) assert not (int_to_vocab_word_set - vocab_to_int_word_set), ( "vocab_to_int and int_to_vocab don't have the same words." "{} found in int_to_vocab, but not in vocab_to_int".format( int_to_vocab_word_set - vocab_to_int_word_set ) ) # Make sure the dicts have the same word ids vocab_to_int_word_id_set = set(vocab_to_int.values()) int_to_vocab_word_id_set = set(int_to_vocab.keys()) assert not (vocab_to_int_word_id_set - int_to_vocab_word_id_set), ( "vocab_to_int and int_to_vocab don't contain the same word ids." "{} found in vocab_to_int, but not in int_to_vocab".format( vocab_to_int_word_id_set - int_to_vocab_word_id_set ) ) assert not (int_to_vocab_word_id_set - vocab_to_int_word_id_set), ( "vocab_to_int and int_to_vocab don't contain the same word ids." "{} found in int_to_vocab, but not in vocab_to_int".format( int_to_vocab_word_id_set - vocab_to_int_word_id_set ) ) # Make sure the dicts make the same lookup missmatches = [ (word, id, id, int_to_vocab[id]) for word, id in vocab_to_int.items() if int_to_vocab[id] != word ] assert ( not missmatches ), "Found {} missmatche(s). First missmatch: vocab_to_int[{}] = {} and int_to_vocab[{}] = {}".format( len(missmatches), *missmatches[0] ) assert ( len(vocab_to_int) > len(set(test_text)) / 2 ), "The length of vocab seems too small. Found a length of {}".format( len(vocab_to_int) ) _print_success_message() def test_tokenize(token_lookup): symbols = set([".", ",", '"', ";", "!", "?", "(", ")", "-", "\n"]) token_dict = token_lookup() # Check type assert isinstance(token_dict, dict), "Returned type is {}.".format(type(token_dict)) # Check symbols missing_symbols = symbols - set(token_dict.keys()) unknown_symbols = set(token_dict.keys()) - symbols assert not missing_symbols, "Missing symbols: {}".format(missing_symbols) assert not unknown_symbols, "Unknown symbols: {}".format(unknown_symbols) # Check values type bad_value_type = [ type(val) for val in token_dict.values() if not isinstance(val, str) ] assert not bad_value_type, "Found token as {} type.".format(bad_value_type[0]) # Check for spaces key_has_spaces = [k for k in token_dict.keys() if " " in k] val_has_spaces = [val for val in token_dict.values() if " " in val] assert ( not key_has_spaces ), 'The key "{}" includes spaces. Remove spaces from keys and values'.format( key_has_spaces[0] ) assert ( not val_has_spaces ), 'The value "{}" includes spaces. Remove spaces from keys and values'.format( val_has_spaces[0] ) # Check for symbols in values symbol_val = () for symbol in symbols: for val in token_dict.values(): if symbol in val: symbol_val = (symbol, val) assert ( not symbol_val ), "Don't use a symbol that will be replaced in your tokens. Found the symbol {} in value {}".format( *symbol_val ) _print_success_message() def test_rnn(RNN, train_on_gpu): batch_size = 50 sequence_length = 3 vocab_size = 20 output_size = 20 embedding_dim = 15 hidden_dim = 10 n_layers = 2 # create test RNN # params: (vocab_size, output_size, embedding_dim, hidden_dim, n_layers) rnn = RNN(vocab_size, output_size, embedding_dim, hidden_dim, n_layers) # create test input a = np.random.randint(vocab_size, size=(batch_size, sequence_length)) # b = torch.LongTensor(a) b = torch.from_numpy(a) hidden = rnn.init_hidden(batch_size) if train_on_gpu: rnn.cuda() b = b.cuda() output, hidden_out = rnn(b, hidden) assert_test = AssertTest( { "Input Size": vocab_size, "Output Size": output_size, "Hidden Dim": hidden_dim, "N Layers": n_layers, "Batch Size": batch_size, "Sequence Length": sequence_length, "Input": b, } ) # initialization correct_hidden_size = (n_layers, batch_size, hidden_dim) assert_condition = hidden[0].size() == correct_hidden_size assert_message = "Wrong hidden state size. Expected type {}. Got type {}".format( correct_hidden_size, hidden[0].size() ) assert_test.test(assert_condition, assert_message) # output of rnn correct_hidden_size = (n_layers, batch_size, hidden_dim) assert_condition = hidden_out[0].size() == correct_hidden_size assert_message = "Wrong hidden state size. Expected type {}. Got type {}".format( correct_hidden_size, hidden_out[0].size() ) assert_test.test(assert_condition, assert_message) correct_output_size = (batch_size, output_size) assert_condition = output.size() == correct_output_size assert_message = "Wrong output size. Expected type {}. Got type {}".format( correct_output_size, output.size() ) assert_test.test(assert_condition, assert_message) _print_success_message() def test_forward_back_prop(RNN, forward_back_prop, train_on_gpu): batch_size = 200 input_size = 20 output_size = 10 sequence_length = 3 embedding_dim = 15 hidden_dim = 10 n_layers = 2 learning_rate = 0.01 # create test RNN rnn = RNN(input_size, output_size, embedding_dim, hidden_dim, n_layers) mock_decoder = MagicMock(wraps=_TestNN(input_size, output_size)) if train_on_gpu: mock_decoder.cuda() mock_decoder_optimizer = MagicMock( wraps=torch.optim.Adam(mock_decoder.parameters(), lr=learning_rate) ) mock_criterion = MagicMock(wraps=torch.nn.CrossEntropyLoss()) with patch.object( torch.autograd, "backward", wraps=torch.autograd.backward ) as mock_autograd_backward: inp = torch.FloatTensor(np.random.rand(batch_size, input_size)) target = torch.LongTensor(np.random.randint(output_size, size=batch_size)) hidden = rnn.init_hidden(batch_size) loss, hidden_out = forward_back_prop( mock_decoder, mock_decoder_optimizer, mock_criterion, inp, target, hidden ) assert ( hidden_out[0][0] == hidden[0][0] ).sum() == batch_size * hidden_dim, "Returned hidden state is the incorrect size." assert ( mock_decoder.zero_grad.called or mock_decoder_optimizer.zero_grad.called ), "Didn't set the gradients to 0." assert mock_decoder.forward_called, "Forward propagation not called." assert mock_autograd_backward.called, "Backward propagation not called" assert mock_decoder_optimizer.step.called, "Optimization step not performed" assert type(loss) == float, "Wrong return type. Expected {}, got {}".format( float, type(loss) ) _print_success_message() ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Sentiment pytorch/labels.txt ================================================ positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative positive negative ================================================ FILE: DEEP LEARNING/NLP/LSTM RNN/Sentiment pytorch/reviews.txt ================================================ [File too large to display: 32.1 MB] ================================================ FILE: DEEP LEARNING/NLP/WSDM - Fake News Classification/Berd generate embeddings/0_bert_encode_en_train.py ================================================ # Please run bert-serving-start before running this notebook # Setup: https://github.com/hanxiao/bert-as-service # Examples (change folders to your locals) # english cased: bert-serving-start -model_dir /bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=4 # multi cased: bert-serving-start -model_dir /bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=4 # chinese: bert-serving-start -model_dir /bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=4 # launch bert (valilenk): # english cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=2 # multi cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=2 # chinese: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=2 import pandas as pd import torch import os from time import time from tqdm import tqdm from bert_serving.client import BertClient data_folder = os.path.dirname(os.getcwd()) + "/data" train = pd.read_csv(data_folder + "/raw/train.csv") bc = BertClient() def gen_encodings(df, column): t0 = time() _list = list(df.loc[:, column]) for i, text in enumerate(_list): if not isinstance(_list[i], str): _list[i] = str(text) if not _list[i].strip(): _list[i] = _list[i].strip() if len(_list[i]) == 0: _list[i] = "temp" arr = bc.encode(_list) temp = pd.DataFrame(arr) temp.columns = [f"{column}_{c}" for c in range(len(arr[0]))] temp = temp.join(df.id) print(f"time: {time() - t0}") return temp encoded_train = gen_encodings(train, "title1_en") encoded_train.to_csv("encoded_train1.csv") encoded_train = gen_encodings(train, "title2_en") encoded_train.to_csv("encoded_train2.csv") ================================================ FILE: DEEP LEARNING/NLP/WSDM - Fake News Classification/Berd generate embeddings/1_bert_encode_en_test.py ================================================ # Please run bert-serving-start before running this notebook # Setup: https://github.com/hanxiao/bert-as-service # Examples (change folders to your locals) # english cased: bert-serving-start -model_dir /bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=4 # multi cased: bert-serving-start -model_dir /bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=4 # chinese: bert-serving-start -model_dir /bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=4 # launch bert (valilenk): # english cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=2 # multi cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=2 # chinese: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=2 import pandas as pd import torch import os from time import time from tqdm import tqdm from bert_serving.client import BertClient data_folder = os.path.dirname(os.getcwd()) + "/data" test = pd.read_csv(data_folder + "/raw/test.csv") bc = BertClient() def gen_encodings(df, column): t0 = time() _list = list(df.loc[:, column]) for i, text in enumerate(_list): if not isinstance(_list[i], str): _list[i] = str(text) if not _list[i].strip(): _list[i] = _list[i].strip() if len(_list[i]) == 0: _list[i] = "temp" arr = bc.encode(_list) temp = pd.DataFrame(arr) temp.columns = [f"{column}_{c}" for c in range(len(arr[0]))] temp = temp.join(df.id) print(f"time: {time() - t0}") return temp encoded_test = gen_encodings(test, "title1_en") encoded_test.to_csv("encoded_test1.csv") encoded_test = gen_encodings(test, "title2_en") encoded_test.to_csv("encoded_test2.csv") ================================================ FILE: DEEP LEARNING/NLP/WSDM - Fake News Classification/Berd generate embeddings/2_bert_encode_ch_train.py ================================================ # Please run bert-serving-start before running this notebook # Setup: https://github.com/hanxiao/bert-as-service # Examples (change folders to your locals) # english cased: bert-serving-start -model_dir /bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=4 # multi cased: bert-serving-start -model_dir /bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=4 # chinese: bert-serving-start -model_dir /bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=4 # launch bert (valilenk): # english cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=2 # multi cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=2 # chinese: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=2 import pandas as pd import torch import os from time import time from tqdm import tqdm from bert_serving.client import BertClient data_folder = os.path.dirname(os.getcwd()) + "/data" train = pd.read_csv(data_folder + "/raw/train.csv") bc = BertClient() def gen_encodings(df, column): t0 = time() _list = list(df.loc[:, column]) for i, text in enumerate(_list): if not isinstance(_list[i], str): _list[i] = str(text) if not _list[i].strip(): _list[i] = _list[i].strip() if len(_list[i]) == 0: _list[i] = "temp" arr = bc.encode(_list) temp = pd.DataFrame(arr) temp.columns = [f"{column}_{c}" for c in range(len(arr[0]))] temp = temp.join(df.id) print(f"time: {time() - t0}") return temp encoded_train = gen_encodings(train, "title1_zh") encoded_train.to_csv("encoded_ch_train1.csv") encoded_train = gen_encodings(train, "title2_zh") encoded_train.to_csv("encoded_ch_train2.csv") ================================================ FILE: DEEP LEARNING/NLP/WSDM - Fake News Classification/Berd generate embeddings/3_bert_encode_ch_test.py ================================================ # Please run bert-serving-start before running this notebook # Setup: https://github.com/hanxiao/bert-as-service # Examples (change folders to your locals) # english cased: bert-serving-start -model_dir /bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=4 # multi cased: bert-serving-start -model_dir /bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=4 # chinese: bert-serving-start -model_dir /bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=4 # launch bert (valilenk): # english cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/cased_L-24_H-1024_A-16/ -num_worker=2 # multi cased: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/multi_cased_L-12_H-768_A-12/ -num_worker=2 # chinese: bert-serving-start -model_dir /media/airvetra/1tb/valilenk/nlp/bert-as-service/chinese_L-12_H-768_A-12/ -num_worker=2 import pandas as pd import torch import os from time import time from tqdm import tqdm from bert_serving.client import BertClient data_folder = os.path.dirname(os.getcwd()) + "/data" test = pd.read_csv(data_folder + "/raw/test.csv") bc = BertClient() def gen_encodings(df, column): t0 = time() _list = list(df.loc[:, column]) for i, text in enumerate(_list): if not isinstance(_list[i], str): _list[i] = str(text) if not _list[i].strip(): _list[i] = _list[i].strip() if len(_list[i]) == 0: _list[i] = "temp" arr = bc.encode(_list) temp = pd.DataFrame(arr) temp.columns = [f"{column}_{c}" for c in range(len(arr[0]))] temp = temp.join(df.id) print(f"time: {time() - t0}") return temp encoded_test = gen_encodings(test, "title1_zh") encoded_test.to_csv("encoded_ch_test1.csv") encoded_test = gen_encodings(test, "title2_zh") encoded_test.to_csv("encoded_ch_test2.csv") ================================================ FILE: DEEP LEARNING/NLP/WSDM - Fake News Classification/Berd generate embeddings/4_gen_encoded_dfs.py ================================================ # Please run 0-1-2-3 files before running this one + put raw data to ../data/raw import numpy as np import pandas as pd import os from tqdm import tqdm def label_encode_target(df, _inplace=True): df.replace("unrelated", 0, inplace=_inplace) df.replace("agreed", 1, inplace=_inplace) df.replace("disagreed", 2, inplace=_inplace) data_folder = os.path.dirname(os.getcwd()) + "/data" processed_folder = f"{data_folder}/processed" if not os.path.exists(data_folder): os.makedirs(data_folder) if not os.path.exists(processed_folder): os.makedirs(processed_folder) train = pd.read_csv(data_folder + "/raw/train.csv") test = pd.read_csv(data_folder + "/raw/test.csv") label_encode_target(train) # Process train embeddings enc_train1 = pd.read_csv("encoded_train1.csv", index_col=0) enc_train2 = pd.read_csv("encoded_train2.csv", index_col=0) enc_train3 = pd.read_csv("encoded_ch_train1.csv", index_col=0) enc_train4 = pd.read_csv("encoded_ch_train2.csv", index_col=0) X_train = enc_train1.merge(enc_train2, how="left", on="id") X_train = X_train.merge(enc_train3, how="left", on="id") X_train = X_train.merge(enc_train4, how="left", on="id") X_train = X_train.merge(train[["id", "label"]], how="left", on="id") float_cols = [c for c in X_train.columns if X_train.loc[:, c].dtype == "float64"] for col in tqdm(float_cols): X_train.loc[:, col] = X_train.loc[:, col].astype(np.float32) int_cols = [c for c in X_train.columns if X_train.loc[:, c].dtype == "int64"] for col in int_cols: X_train.loc[:, col] = X_train.loc[:, col].astype(np.int32) X_train.to_pickle(processed_folder + "/train") X_train.to_csv(processed_folder + "/train.csv") # Process test embeddings enc_test1 = pd.read_csv("encoded_test1.csv", index_col=0) enc_test2 = pd.read_csv("encoded_test2.csv", index_col=0) enc_test3 = pd.read_csv("encoded_ch_test1.csv", index_col=0) enc_test4 = pd.read_csv("encoded_ch_test2.csv", index_col=0) X_test = enc_test1.merge(enc_test2, how="left", on="id") X_test = X_test.merge(enc_test3, how="left", on="id") X_test = X_test.merge(enc_test4, how="left", on="id") float_cols = [c for c in X_test.columns if X_test.loc[:, c].dtype == "float64"] for col in tqdm(float_cols): X_test.loc[:, col] = X_test.loc[:, col].astype(np.float32) X_test.to_pickle(processed_folder + "/test") X_test.to_csv(processed_folder + "/test.csv") ================================================ FILE: DEEP LEARNING/NLP/elmo EMBEDDINGS/Sentence encode.html ================================================
================================================ FILE: DEEP LEARNING/NLP/text analyses/Logistic regression with words and char n-grams.py ================================================ import numpy as np import pandas as pd from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.linear_model import LogisticRegression from sklearn.model_selection import cross_val_score from scipy.sparse import hstack class_names = ["toxic", "severe_toxic", "obscene", "threat", "insult", "identity_hate"] train = pd.read_csv("../input/train.csv").fillna(" ") test = pd.read_csv("../input/test.csv").fillna(" ") train_text = train["comment_text"] test_text = test["comment_text"] all_text = pd.concat([train_text, test_text]) word_vectorizer = TfidfVectorizer( sublinear_tf=True, strip_accents="unicode", analyzer="word", token_pattern=r"\w{1,}", stop_words="english", ngram_range=(1, 1), max_features=10000, ) word_vectorizer.fit(all_text) train_word_features = word_vectorizer.transform(train_text) test_word_features = word_vectorizer.transform(test_text) char_vectorizer = TfidfVectorizer( sublinear_tf=True, strip_accents="unicode", analyzer="char", stop_words="english", ngram_range=(2, 6), max_features=50000, ) char_vectorizer.fit(all_text) train_char_features = char_vectorizer.transform(train_text) test_char_features = char_vectorizer.transform(test_text) train_features = hstack([train_char_features, train_word_features]) test_features = hstack([test_char_features, test_word_features]) scores = [] submission = pd.DataFrame.from_dict({"id": test["id"]}) for class_name in class_names: train_target = train[class_name] classifier = LogisticRegression(C=0.1, solver="sag") cv_score = np.mean( cross_val_score( classifier, train_features, train_target, cv=3, scoring="roc_auc" ) ) scores.append(cv_score) print("CV score for class {} is {}".format(class_name, cv_score)) classifier.fit(train_features, train_target) submission[class_name] = classifier.predict_proba(test_features)[:, 1] print("Total CV score is {}".format(np.mean(scores))) submission.to_csv("submission.csv", index=False) ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/.gitignore ================================================ *.hdf5 *.h5 *.ipynb_checkpoints *.HDF5 __pycache__ ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/README.md ================================================ # [Gentle guide on how YOLO Object Localization works with Keras](https://heartbeat.fritz.ai/gentle-guide-on-how-yolo-object-localization-works-with-keras-part-2-65fe59ac12d) Complementary source code for the post. Keras+TensorFlow YOLO object Localization implementation guided walk through. ## How to Run Require [Python 3.5+](https://www.python.org/ftp/python/3.6.4/python-3.6.4.exe) and [Jupyter notebook](https://jupyter.readthedocs.io/en/latest/install.html) installed ### Clone or download this repo ``` git clone https://github.com/Tony607/YOLO_Object_Localization ``` ### Install required libraries `pip3 install -r requirements.txt` ### Download the Pre-trained YOLO model Download the trained model weight from the releases, [yolo.h5](https://github.com/Tony607/YOLO_Object_Localization/releases/download/V0.1/yolo.h5). Put it to `model_data` folder in the project directory. ### Start the notebook In the project directory start a command line, then run ``` jupyter notebook ``` In the opened browser window open ``` Gentle guide on how YOLO Object Localization works with Keras.ipynb ``` Side note, if the model doesn't load correctly try to follow the instruction on YAD2K * Clone/Download [YAD2K](https://github.com/allanzelener/YAD2K). * Download Darknet model cfg and weights from the [official YOLO website](http://pjreddie.com/darknet/yolo/). * Convert the Darknet YOLO_v2 model to a Keras model. * Test the converted model on the small test set in `images/`. ```source-shell git clone https://github.com/allanzelener/YAD2K wget http://pjreddie.com/media/files/yolo.weights wget https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolo.cfg ./yad2k.py yolo.cfg yolo.weights model_data/yolo.h5 ./test_yolo.py model_data/yolo.h5 # output in images/out/ ``` See `./yad2k.py --help` and `./test_yolo.py --help` for more options. Happy coding! Leave a comment if you have any question. ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/font/SIL Open Font License.txt ================================================ Copyright (c) 2014, Mozilla Foundation https://mozilla.org/ with Reserved Font Name Fira Mono. Copyright (c) 2014, Telefonica S.A. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/model_data/coco_classes.txt ================================================ person bicycle car motorbike aeroplane bus train truck boat traffic light fire hydrant stop sign parking meter bench bird cat dog horse sheep cow elephant bear zebra giraffe backpack umbrella handbag tie suitcase frisbee skis snowboard sports ball kite baseball bat baseball glove skateboard surfboard tennis racket bottle wine glass cup fork knife spoon bowl banana apple sandwich orange broccoli carrot hot dog pizza donut cake chair sofa pottedplant bed diningtable toilet tvmonitor laptop mouse remote keyboard cell phone microwave oven toaster sink refrigerator book clock vase scissors teddy bear hair drier toothbrush ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/model_data/object_classes.txt ================================================ car ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/model_data/yolo_anchors.txt ================================================ 0.57273, 0.677385, 1.87446, 2.06253, 3.33843, 5.47434, 7.88282, 3.52778, 9.77052, 9.16828 ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/requirements.txt ================================================ scipy numpy keras pandas h5py matplotlib pillow ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/yad2k/utils/__init__.py ================================================ from .utils import * ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/yad2k/utils/utils.py ================================================ """Miscellaneous utility functions.""" from functools import reduce def compose(*funcs): """Compose arbitrarily many functions, evaluated left to right. Reference: https://mathieularose.com/function-composition-in-python/ """ # return lambda x: reduce(lambda v, f: f(v), funcs, x) if funcs: return reduce(lambda f, g: lambda *a, **kw: g(f(*a, **kw)), funcs) else: raise ValueError("Composition of empty sequence not supported.") ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/yolo_run.py ================================================ import argparse import os import matplotlib.pyplot as plt from matplotlib.pyplot import imshow import scipy.io import scipy.misc import numpy as np import pandas as pd import PIL import tensorflow as tf from keras import backend as K from keras.layers import Input, Lambda, Conv2D from keras.models import load_model, Model from yolo_utils import ( read_classes, read_anchors, generate_colors, preprocess_image, draw_boxes, scale_boxes, ) from yad2k.models.keras_yolo import ( yolo_head, yolo_boxes_to_corners, preprocess_true_boxes, yolo_loss, yolo_body, ) sess = K.get_session() class_names = read_classes("model_data/coco_classes.txt") anchors = read_anchors("model_data/yolo_anchors.txt") image_shape = (720.0, 1280.0) yolo_model = load_model("model_data/yolo.h5") ================================================ FILE: DEEP LEARNING/Object detection/YOLO Object Localization Keras/yolo_utils.py ================================================ import colorsys import imghdr import os import random from keras import backend as K import numpy as np from PIL import Image, ImageDraw, ImageFont def read_classes(classes_path): with open(classes_path) as f: class_names = f.readlines() class_names = [c.strip() for c in class_names] return class_names def read_anchors(anchors_path): with open(anchors_path) as f: anchors = f.readline() anchors = [float(x) for x in anchors.split(",")] anchors = np.array(anchors).reshape(-1, 2) return anchors def generate_colors(class_names): hsv_tuples = [(x / len(class_names), 1.0, 1.0) for x in range(len(class_names))] colors = list(map(lambda x: colorsys.hsv_to_rgb(*x), hsv_tuples)) colors = list( map(lambda x: (int(x[0] * 255), int(x[1] * 255), int(x[2] * 255)), colors) ) random.seed(10101) # Fixed seed for consistent colors across runs. random.shuffle(colors) # Shuffle colors to decorrelate adjacent classes. random.seed(None) # Reset seed to default. return colors def scale_boxes(boxes, image_shape): """ Scales the predicted boxes in order to be drawable on the image""" height = image_shape[0] width = image_shape[1] image_dims = K.stack([height, width, height, width]) image_dims = K.reshape(image_dims, [1, 4]) boxes = boxes * image_dims return boxes def preprocess_image(img_path, model_image_size): image_type = imghdr.what(img_path) image = Image.open(img_path) resized_image = image.resize(tuple(reversed(model_image_size)), Image.BICUBIC) image_data = np.array(resized_image, dtype="float32") image_data /= 255.0 image_data = np.expand_dims(image_data, 0) # Add batch dimension. return image, image_data def draw_boxes(image, out_scores, out_boxes, out_classes, class_names, colors): font = ImageFont.truetype( font="font/FiraMono-Medium.otf", size=np.floor(3e-2 * image.size[1] + 0.5).astype("int32"), ) thickness = (image.size[0] + image.size[1]) // 300 for i, c in reversed(list(enumerate(out_classes))): predicted_class = class_names[c] box = out_boxes[i] score = out_scores[i] label = "{} {:.2f}".format(predicted_class, score) draw = ImageDraw.Draw(image) label_size = draw.textsize(label, font) top, left, bottom, right = box top = max(0, np.floor(top + 0.5).astype("int32")) left = max(0, np.floor(left + 0.5).astype("int32")) bottom = min(image.size[1], np.floor(bottom + 0.5).astype("int32")) right = min(image.size[0], np.floor(right + 0.5).astype("int32")) print(label, (left, top), (right, bottom)) if top - label_size[1] >= 0: text_origin = np.array([left, top - label_size[1]]) else: text_origin = np.array([left, top + 1]) for i in range(thickness): draw.rectangle( [left + i, top + i, right - i, bottom - i], outline=colors[c] ) draw.rectangle( [tuple(text_origin), tuple(text_origin + label_size)], fill=colors[c] ) draw.text(text_origin, label, fill=(0, 0, 0), font=font) del draw ================================================ FILE: DEEP LEARNING/Object detection/keras retinanet/train.py ================================================ #!/usr/bin/env python """ Copyright 2017-2018 Fizyr (https://fizyr.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ import argparse import os import sys import warnings import keras import keras.preprocessing.image import tensorflow as tf # Allow relative imports when being executed as script. if __name__ == "__main__" and __package__ is None: sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..")) import keras_retinanet.bin # noqa: F401 __package__ = "keras_retinanet.bin" # Change these to absolute imports if you copy this script outside the keras_retinanet package. from keras_retinanet import layers # noqa: F401 from keras_retinanet import losses from keras_retinanet import models from keras_retinanet.callbacks import RedirectModel from keras_retinanet.callbacks.eval import Evaluate from keras_retinanet.models.retinanet import retinanet_bbox from keras_retinanet.preprocessing.csv_generator import CSVGenerator from keras_retinanet.preprocessing.kitti import KittiGenerator from keras_retinanet.preprocessing.open_images import OpenImagesGenerator from keras_retinanet.preprocessing.pascal_voc import PascalVocGenerator from keras_retinanet.utils.anchors import make_shapes_callback from keras_retinanet.utils.config import read_config_file, parse_anchor_parameters from keras_retinanet.utils.keras_version import check_keras_version from keras_retinanet.utils.model import freeze as freeze_model from keras_retinanet.utils.transform import random_transform_generator def makedirs(path): # Intended behavior: try to create the directory, # pass if the directory exists already, fails otherwise. # Meant for Python 2.7/3.n compatibility. try: os.makedirs(path) except OSError: if not os.path.isdir(path): raise def get_session(): """ Construct a modified tf session. """ config = tf.ConfigProto() config.gpu_options.allow_growth = True return tf.Session(config=config) def model_with_weights(model, weights, skip_mismatch): """ Load weights for model. Args model : The model to load weights for. weights : The weights to load. skip_mismatch : If True, skips layers whose shape of weights doesn't match with the model. """ if weights is not None: model.load_weights(weights, by_name=True, skip_mismatch=skip_mismatch) return model def create_models( backbone_retinanet, num_classes, weights, multi_gpu=0, freeze_backbone=False, lr=1e-5, config=None, ): """ Creates three models (model, training_model, prediction_model). Args backbone_retinanet : A function to call to create a retinanet model with a given backbone. num_classes : The number of classes to train. weights : The weights to load into the model. multi_gpu : The number of GPUs to use for training. freeze_backbone : If True, disables learning for the backbone. config : Config parameters, None indicates the default configuration. Returns model : The base model. This is also the model that is saved in snapshots. training_model : The training model. If multi_gpu=0, this is identical to model. prediction_model : The model wrapped with utility functions to perform object detection (applies regression values and performs NMS). """ modifier = freeze_model if freeze_backbone else None # load anchor parameters, or pass None (so that defaults will be used) anchor_params = None num_anchors = None if config and "anchor_parameters" in config: anchor_params = parse_anchor_parameters(config) num_anchors = anchor_params.num_anchors() # Keras recommends initialising a multi-gpu model on the CPU to ease weight sharing, and to prevent OOM errors. # optionally wrap in a parallel model if multi_gpu > 1: from keras.utils import multi_gpu_model with tf.device("/cpu:0"): model = model_with_weights( backbone_retinanet( num_classes, num_anchors=num_anchors, modifier=modifier ), weights=weights, skip_mismatch=True, ) training_model = multi_gpu_model(model, gpus=multi_gpu) else: model = model_with_weights( backbone_retinanet(num_classes, num_anchors=num_anchors, modifier=modifier), weights=weights, skip_mismatch=True, ) training_model = model # make prediction model prediction_model = retinanet_bbox(model=model, anchor_params=anchor_params) # compile model training_model.compile( loss={"regression": losses.smooth_l1(), "classification": losses.focal()}, optimizer=keras.optimizers.adam(lr=lr, clipnorm=0.001), ) return model, training_model, prediction_model def create_callbacks( model, training_model, prediction_model, validation_generator, args ): """ Creates the callbacks to use during training. Args model: The base model. training_model: The model that is used for training. prediction_model: The model that should be used for validation. validation_generator: The generator for creating validation data. args: parseargs args object. Returns: A list of callbacks used for training. """ callbacks = [] tensorboard_callback = None if args.tensorboard_dir: tensorboard_callback = keras.callbacks.TensorBoard( log_dir=args.tensorboard_dir, histogram_freq=0, batch_size=args.batch_size, write_graph=True, write_grads=False, write_images=False, embeddings_freq=0, embeddings_layer_names=None, embeddings_metadata=None, ) callbacks.append(tensorboard_callback) if args.evaluation and validation_generator: if args.dataset_type == "coco": from keras_retinanet.callbacks.coco import CocoEval # use prediction model for evaluation evaluation = CocoEval( validation_generator, tensorboard=tensorboard_callback ) else: evaluation = Evaluate( validation_generator, tensorboard=tensorboard_callback, weighted_average=args.weighted_average, ) evaluation = RedirectModel(evaluation, prediction_model) callbacks.append(evaluation) # save the model if args.snapshots: # ensure directory created first; otherwise h5py will error after epoch. makedirs(args.snapshot_path) checkpoint = keras.callbacks.ModelCheckpoint( os.path.join( args.snapshot_path, "{backbone}_{dataset_type}_{{epoch:02d}}.h5".format( backbone=args.backbone, dataset_type=args.dataset_type ), ), verbose=1, # save_best_only=True, # monitor="mAP", # mode='max' ) checkpoint = RedirectModel(checkpoint, model) callbacks.append(checkpoint) callbacks.append( keras.callbacks.ReduceLROnPlateau( monitor="loss", factor=0.1, patience=2, verbose=1, mode="auto", min_delta=0.0001, cooldown=0, min_lr=0, ) ) return callbacks def create_generators(args, preprocess_image): """ Create generators for training and validation. Args args : parseargs object containing configuration for generators. preprocess_image : Function that preprocesses an image for the network. """ common_args = { "batch_size": args.batch_size, "config": args.config, "image_min_side": args.image_min_side, "image_max_side": args.image_max_side, "preprocess_image": preprocess_image, } # create random transform generator for augmenting training data if args.random_transform: transform_generator = random_transform_generator( min_rotation=-0.1, max_rotation=0.1, min_translation=(-0.1, -0.1), max_translation=(0.1, 0.1), min_shear=-0.1, max_shear=0.1, min_scaling=(0.9, 0.9), max_scaling=(1.1, 1.1), flip_x_chance=0.5, flip_y_chance=0.5, ) else: transform_generator = random_transform_generator(flip_x_chance=0.5) if args.dataset_type == "coco": # import here to prevent unnecessary dependency on cocoapi from keras_retinanet.preprocessing.coco import CocoGenerator train_generator = CocoGenerator( args.coco_path, "train2017", transform_generator=transform_generator, **common_args ) validation_generator = CocoGenerator( args.coco_path, "val2017", shuffle_groups=False, **common_args ) elif args.dataset_type == "pascal": train_generator = PascalVocGenerator( args.pascal_path, "trainval", transform_generator=transform_generator, **common_args ) validation_generator = PascalVocGenerator( args.pascal_path, "test", shuffle_groups=False, **common_args ) elif args.dataset_type == "csv": train_generator = CSVGenerator( args.annotations, args.classes, transform_generator=transform_generator, **common_args ) if args.val_annotations: validation_generator = CSVGenerator( args.val_annotations, args.classes, shuffle_groups=False, **common_args ) else: validation_generator = None elif args.dataset_type == "oid": train_generator = OpenImagesGenerator( args.main_dir, subset="train", version=args.version, labels_filter=args.labels_filter, annotation_cache_dir=args.annotation_cache_dir, parent_label=args.parent_label, transform_generator=transform_generator, **common_args ) validation_generator = OpenImagesGenerator( args.main_dir, subset="validation", version=args.version, labels_filter=args.labels_filter, annotation_cache_dir=args.annotation_cache_dir, parent_label=args.parent_label, shuffle_groups=False, **common_args ) elif args.dataset_type == "kitti": train_generator = KittiGenerator( args.kitti_path, subset="train", transform_generator=transform_generator, **common_args ) validation_generator = KittiGenerator( args.kitti_path, subset="val", shuffle_groups=False, **common_args ) else: raise ValueError("Invalid data type received: {}".format(args.dataset_type)) return train_generator, validation_generator def check_args(parsed_args): """ Function to check for inherent contradictions within parsed arguments. For example, batch_size < num_gpus Intended to raise errors prior to backend initialisation. Args parsed_args: parser.parse_args() Returns parsed_args """ if parsed_args.multi_gpu > 1 and parsed_args.batch_size < parsed_args.multi_gpu: raise ValueError( "Batch size ({}) must be equal to or higher than the number of GPUs ({})".format( parsed_args.batch_size, parsed_args.multi_gpu ) ) if parsed_args.multi_gpu > 1 and parsed_args.snapshot: raise ValueError( "Multi GPU training ({}) and resuming from snapshots ({}) is not supported.".format( parsed_args.multi_gpu, parsed_args.snapshot ) ) if parsed_args.multi_gpu > 1 and not parsed_args.multi_gpu_force: raise ValueError( "Multi-GPU support is experimental, use at own risk! Run with --multi-gpu-force if you wish to continue." ) if "resnet" not in parsed_args.backbone: warnings.warn( "Using experimental backbone {}. Only resnet50 has been properly tested.".format( parsed_args.backbone ) ) return parsed_args def parse_args(args): """ Parse the arguments. """ parser = argparse.ArgumentParser( description="Simple training script for training a RetinaNet network." ) subparsers = parser.add_subparsers( help="Arguments for specific dataset types.", dest="dataset_type" ) subparsers.required = True coco_parser = subparsers.add_parser("coco") coco_parser.add_argument( "coco_path", help="Path to dataset directory (ie. /tmp/COCO)." ) pascal_parser = subparsers.add_parser("pascal") pascal_parser.add_argument( "pascal_path", help="Path to dataset directory (ie. /tmp/VOCdevkit)." ) kitti_parser = subparsers.add_parser("kitti") kitti_parser.add_argument( "kitti_path", help="Path to dataset directory (ie. /tmp/kitti)." ) def csv_list(string): return string.split(",") oid_parser = subparsers.add_parser("oid") oid_parser.add_argument("main_dir", help="Path to dataset directory.") oid_parser.add_argument( "--version", help="The current dataset version is v4.", default="v4" ) oid_parser.add_argument( "--labels-filter", help="A list of labels to filter.", type=csv_list, default=None, ) oid_parser.add_argument( "--annotation-cache-dir", help="Path to store annotation cache.", default="." ) oid_parser.add_argument( "--parent-label", help="Use the hierarchy children of this label.", default=None ) csv_parser = subparsers.add_parser("csv") csv_parser.add_argument( "annotations", help="Path to CSV file containing annotations for training." ) csv_parser.add_argument( "classes", help="Path to a CSV file containing class label mapping." ) csv_parser.add_argument( "--val-annotations", help="Path to CSV file containing annotations for validation (optional).", ) group = parser.add_mutually_exclusive_group() group.add_argument("--snapshot", help="Resume training from a snapshot.") group.add_argument( "--imagenet-weights", help="Initialize the model with pretrained imagenet weights. This is the default behaviour.", action="store_const", const=True, default=True, ) group.add_argument( "--weights", help="Initialize the model with weights from a file." ) group.add_argument( "--no-weights", help="Don't initialize the model with any weights.", dest="imagenet_weights", action="store_const", const=False, ) parser.add_argument( "--backbone", help="Backbone model used by retinanet.", default="resnet152", type=str, ) parser.add_argument( "--batch-size", help="Size of the batches.", default=1, type=int ) parser.add_argument( "--gpu", help="Id of the GPU to use (as reported by nvidia-smi)." ) parser.add_argument( "--multi-gpu", help="Number of GPUs to use for parallel processing.", type=int, default=0, ) parser.add_argument( "--multi-gpu-force", help="Extra flag needed to enable (experimental) multi-gpu support.", action="store_true", ) parser.add_argument( "--epochs", help="Number of epochs to train.", type=int, default=50 ) parser.add_argument( "--steps", help="Number of steps per epoch.", type=int, default=10000 ) parser.add_argument("--lr", help="Learning rate.", type=float, default=1e-5) parser.add_argument( "--snapshot-path", help="Path to store snapshots of models during training (defaults to './snapshots')", default="./snapshots", ) parser.add_argument( "--tensorboard-dir", help="Log directory for Tensorboard output", default="./logs", ) parser.add_argument( "--no-snapshots", help="Disable saving snapshots.", dest="snapshots", action="store_false", ) parser.add_argument( "--no-evaluation", help="Disable per epoch evaluation.", dest="evaluation", action="store_false", ) parser.add_argument( "--freeze-backbone", help="Freeze training of backbone layers.", action="store_true", ) parser.add_argument( "--random-transform", help="Randomly transform image and annotations.", action="store_true", ) parser.add_argument( "--image-min-side", help="Rescale the image so the smallest side is min_side.", type=int, default=800, ) parser.add_argument( "--image-max-side", help="Rescale the image if the largest side is larger than max_side.", type=int, default=1333, ) parser.add_argument( "--config", help="Path to a configuration parameters .ini file." ) parser.add_argument( "--weighted-average", help="Compute the mAP using the weighted average of precisions among classes.", action="store_true", ) parser.add_argument( "--compute-val-loss", help="Compute validation loss during training", dest="compute_val_loss", action="store_true", ) # Fit generator arguments parser.add_argument( "--multiprocessing", help="Use multiprocessing in fit_generator.", action="store_true", ) parser.add_argument( "--workers", help="Number of generator workers.", type=int, default=1 ) parser.add_argument( "--max-queue-size", help="Queue length for multiprocessing workers in fit_generator.", type=int, default=10, ) return check_args(parser.parse_args(args)) def main(args=None): # parse arguments if args is None: args = sys.argv[1:] args = parse_args(args) # create object that stores backbone information backbone = models.backbone(args.backbone) # make sure keras is the minimum required version check_keras_version() # optionally choose specific GPU if args.gpu: os.environ["CUDA_VISIBLE_DEVICES"] = args.gpu keras.backend.tensorflow_backend.set_session(get_session()) # optionally load config parameters if args.config: args.config = read_config_file(args.config) # create the generators train_generator, validation_generator = create_generators( args, backbone.preprocess_image ) # create the model if args.snapshot is not None: print("Loading model, this may take a second...") model = models.load_model(args.snapshot, backbone_name=args.backbone) training_model = model anchor_params = None if args.config and "anchor_parameters" in args.config: anchor_params = parse_anchor_parameters(args.config) prediction_model = retinanet_bbox(model=model, anchor_params=anchor_params) else: weights = args.weights # default to imagenet if nothing else is specified if weights is None and args.imagenet_weights: weights = backbone.download_imagenet() print("Creating model, this may take a second...") model, training_model, prediction_model = create_models( backbone_retinanet=backbone.retinanet, num_classes=train_generator.num_classes(), weights=weights, multi_gpu=args.multi_gpu, freeze_backbone=args.freeze_backbone, lr=args.lr, config=args.config, ) # this lets the generator compute backbone layer shapes using the actual backbone model if "vgg" in args.backbone or "densenet" in args.backbone: train_generator.compute_shapes = make_shapes_callback(model) if validation_generator: validation_generator.compute_shapes = train_generator.compute_shapes # create the callbacks callbacks = create_callbacks( model, training_model, prediction_model, validation_generator, args ) if not args.compute_val_loss: validation_generator = None # start training return training_model.fit_generator( generator=train_generator, steps_per_epoch=args.steps, epochs=args.epochs, verbose=1, callbacks=callbacks, workers=args.workers, use_multiprocessing=args.multiprocessing, max_queue_size=args.max_queue_size, validation_data=validation_generator, ) if __name__ == "__main__": main() ================================================ FILE: DEEP LEARNING/Pytorch from scratch/CNN/project-dog-classification/README.md ================================================ [//]: # (Image References) [image1]: ./images/sample_dog_output.png "Sample Output" [image2]: ./images/vgg16_model.png "VGG-16 Model Layers" [image3]: ./images/vgg16_model_draw.png "VGG16 Model Figure" ## Project Overview Welcome to the Convolutional Neural Networks (CNN) project in the AI Nanodegree! In this project, you will learn how to build a pipeline that can be used within a web or mobile app to process real-world, user-supplied images. Given an image of a dog, your algorithm will identify an estimate of the canine’s breed. If supplied an image of a human, the code will identify the resembling dog breed. ![Sample Output][image1] Along with exploring state-of-the-art CNN models for classification and localization, you will make important design decisions about the user experience for your app. Our goal is that by completing this lab, you understand the challenges involved in piecing together a series of models designed to perform various tasks in a data processing pipeline. Each model has its strengths and weaknesses, and engineering a real-world application often involves solving many problems without a perfect answer. Your imperfect solution will nonetheless create a fun user experience! ## Project Instructions ### Instructions 1. Clone the repository and navigate to the downloaded folder. ``` git clone https://github.com/udacity/deep-learning-v2-pytorch.git cd deep-learning-v2-pytorch/project-dog-classification ``` 3. Download the [dog dataset](https://s3-us-west-1.amazonaws.com/udacity-aind/dog-project/dogImages.zip). Unzip the folder and place it in the repo, at location `path/to/dog-project/dogImages`. The `dogImages/` folder should contain 133 folders, each corresponding to a different dog breed. 4. Download the [human dataset](http://vis-www.cs.umass.edu/lfw/lfw.tgz). Unzip the folder and place it in the repo, at location `path/to/dog-project/lfw`. If you are using a Windows machine, you are encouraged to use [7zip](http://www.7-zip.org/) to extract the folder. 5. Make sure you have already installed the necessary Python packages according to the README in the program repository. 6. Open a terminal window and navigate to the project folder. Open the notebook and follow the instructions. ``` jupyter notebook dog_app.ipynb ``` __NOTE:__ While some code has already been implemented to get you started, you will need to implement additional functionality to successfully answer all of the questions included in the notebook. __Unless requested, do not modify code that has already been included.__ __NOTE:__ In the notebook, you will need to train CNNs in PyTorch. If your CNN is taking too long to train, feel free to pursue one of the options under the section __Accelerating the Training Process__ below. ## (Optionally) Accelerating the Training Process If your code is taking too long to run, you will need to either reduce the complexity of your chosen CNN architecture or switch to running your code on a GPU. If you'd like to use a GPU, you can spin up an instance of your own: #### Amazon Web Services You can use Amazon Web Services to launch an EC2 GPU instance. (This costs money, but enrolled students should see a coupon code in their student `resources`.) ## Evaluation Your project will be reviewed by a Udacity reviewer against the CNN project rubric. Review this rubric thoroughly and self-evaluate your project before submission. All criteria found in the rubric must meet specifications for you to pass. ## Project Submission Your submission should consist of the github link to your repository. Your repository should contain: - The `dog_app.ipynb` file with fully functional code, all code cells executed and displaying output, and all questions answered. - An HTML or PDF export of the project notebook with the name `report.html` or `report.pdf`. Please do __NOT__ include any of the project data sets provided in the `dogImages/` or `lfw/` folders. ### Ready to submit your project? Click on the "Submit Project" button in the classroom and follow the instructions to submit! ================================================ FILE: DEEP LEARNING/Pytorch from scratch/CNN/project-dog-classification/haarcascades/haarcascade_frontalface_alt.xml ================================================ BOOST HAAR 20 20 213 0 22 <_> 3 8.2268941402435303e-01 <_> 0 -1 0 4.0141958743333817e-03 3.3794190734624863e-02 8.3781069517135620e-01 <_> 0 -1 1 1.5151339583098888e-02 1.5141320228576660e-01 7.4888122081756592e-01 <_> 0 -1 2 4.2109931819140911e-03 9.0049281716346741e-02 6.3748198747634888e-01 <_> 16 6.9566087722778320e+00 <_> 0 -1 3 1.6227109590545297e-03 6.9308586418628693e-02 7.1109461784362793e-01 <_> 0 -1 4 2.2906649392098188e-03 1.7958030104637146e-01 6.6686922311782837e-01 <_> 0 -1 5 5.0025708042085171e-03 1.6936729848384857e-01 6.5540069341659546e-01 <_> 0 -1 6 7.9659894108772278e-03 5.8663320541381836e-01 9.1414518654346466e-02 <_> 0 -1 7 -3.5227010957896709e-03 1.4131669700145721e-01 6.0318958759307861e-01 <_> 0 -1 8 3.6667689681053162e-02 3.6756721138954163e-01 7.9203182458877563e-01 <_> 0 -1 9 9.3361474573612213e-03 6.1613857746124268e-01 2.0885099470615387e-01 <_> 0 -1 10 8.6961314082145691e-03 2.8362309932708740e-01 6.3602739572525024e-01 <_> 0 -1 11 1.1488880263641477e-03 2.2235809266567230e-01 5.8007007837295532e-01 <_> 0 -1 12 -2.1484689787030220e-03 2.4064640700817108e-01 5.7870548963546753e-01 <_> 0 -1 13 2.1219060290604830e-03 5.5596548318862915e-01 1.3622370362281799e-01 <_> 0 -1 14 -9.3949146568775177e-02 8.5027372837066650e-01 4.7177401185035706e-01 <_> 0 -1 15 1.3777789426967502e-03 5.9936738014221191e-01 2.8345298767089844e-01 <_> 0 -1 16 7.3063157498836517e-02 4.3418860435485840e-01 7.0600342750549316e-01 <_> 0 -1 17 3.6767389974556863e-04 3.0278879404067993e-01 6.0515749454498291e-01 <_> 0 -1 18 -6.0479710809886456e-03 1.7984339594841003e-01 5.6752568483352661e-01 <_> 21 9.4985427856445312e+00 <_> 0 -1 19 -1.6510689631104469e-02 6.6442251205444336e-01 1.4248579740524292e-01 <_> 0 -1 20 2.7052499353885651e-03 6.3253521919250488e-01 1.2884770333766937e-01 <_> 0 -1 21 2.8069869149476290e-03 1.2402880191802979e-01 6.1931931972503662e-01 <_> 0 -1 22 -1.5402400167658925e-03 1.4321430027484894e-01 5.6700158119201660e-01 <_> 0 -1 23 -5.6386279175058007e-04 1.6574330627918243e-01 5.9052079916000366e-01 <_> 0 -1 24 1.9253729842603207e-03 2.6955071091651917e-01 5.7388240098953247e-01 <_> 0 -1 25 -5.0214841030538082e-03 1.8935389816761017e-01 5.7827740907669067e-01 <_> 0 -1 26 2.6365420781075954e-03 2.3093290627002716e-01 5.6954258680343628e-01 <_> 0 -1 27 -1.5127769438549876e-03 2.7596020698547363e-01 5.9566420316696167e-01 <_> 0 -1 28 -1.0157439857721329e-02 1.7325380444526672e-01 5.5220472812652588e-01 <_> 0 -1 29 -1.1953660286962986e-02 1.3394099473953247e-01 5.5590140819549561e-01 <_> 0 -1 30 4.8859491944313049e-03 3.6287039518356323e-01 6.1888492107391357e-01 <_> 0 -1 31 -8.0132916569709778e-02 9.1211050748825073e-02 5.4759448766708374e-01 <_> 0 -1 32 1.0643280111253262e-03 3.7151429057121277e-01 5.7113999128341675e-01 <_> 0 -1 33 -1.3419450260698795e-03 5.9533137083053589e-01 3.3180978894233704e-01 <_> 0 -1 34 -5.4601140320301056e-02 1.8440659344196320e-01 5.6028461456298828e-01 <_> 0 -1 35 2.9071690514683723e-03 3.5942441225051880e-01 6.1317151784896851e-01 <_> 0 -1 36 7.4718717951327562e-04 5.9943532943725586e-01 3.4595629572868347e-01 <_> 0 -1 37 4.3013808317482471e-03 4.1726520657539368e-01 6.9908452033996582e-01 <_> 0 -1 38 4.5017572119832039e-03 4.5097151398658752e-01 7.8014570474624634e-01 <_> 0 -1 39 2.4138500913977623e-02 5.4382127523422241e-01 1.3198269903659821e-01 <_> 39 1.8412969589233398e+01 <_> 0 -1 40 1.9212230108678341e-03 1.4152669906616211e-01 6.1998707056045532e-01 <_> 0 -1 41 -1.2748669541906565e-04 6.1910742521286011e-01 1.8849289417266846e-01 <_> 0 -1 42 5.1409931620582938e-04 1.4873969554901123e-01 5.8579277992248535e-01 <_> 0 -1 43 4.1878609918057919e-03 2.7469098567962646e-01 6.3592398166656494e-01 <_> 0 -1 44 5.1015717908740044e-03 5.8708512783050537e-01 2.1756289899349213e-01 <_> 0 -1 45 -2.1448440384119749e-03 5.8809447288513184e-01 2.9795908927917480e-01 <_> 0 -1 46 -2.8977119363844395e-03 2.3733270168304443e-01 5.8766472339630127e-01 <_> 0 -1 47 -2.1610679104924202e-02 1.2206549942493439e-01 5.1942020654678345e-01 <_> 0 -1 48 -4.6299318782985210e-03 2.6312309503555298e-01 5.8174091577529907e-01 <_> 0 -1 49 5.9393711853772402e-04 3.6386200785636902e-01 5.6985449790954590e-01 <_> 0 -1 50 5.3878661245107651e-02 4.3035310506820679e-01 7.5593662261962891e-01 <_> 0 -1 51 1.8887349870055914e-03 2.1226030588150024e-01 5.6134271621704102e-01 <_> 0 -1 52 -2.3635339457541704e-03 5.6318491697311401e-01 2.6427671313285828e-01 <_> 0 -1 53 2.4017799645662308e-02 5.7971078157424927e-01 2.7517059445381165e-01 <_> 0 -1 54 2.0543030404951423e-04 2.7052420377731323e-01 5.7525688409805298e-01 <_> 0 -1 55 8.4790197433903813e-04 5.4356247186660767e-01 2.3348769545555115e-01 <_> 0 -1 56 1.4091329649090767e-03 5.3194248676300049e-01 2.0631550252437592e-01 <_> 0 -1 57 1.4642629539594054e-03 5.4189807176589966e-01 3.0688610672950745e-01 <_> 0 -1 58 1.6352549428120255e-03 3.6953729391098022e-01 6.1128681898117065e-01 <_> 0 -1 59 8.3172752056270838e-04 3.5650369524955750e-01 6.0252362489700317e-01 <_> 0 -1 60 -2.0998890977352858e-03 1.9139820337295532e-01 5.3628271818161011e-01 <_> 0 -1 61 -7.4213981861248612e-04 3.8355550169944763e-01 5.5293101072311401e-01 <_> 0 -1 62 3.2655049581080675e-03 4.3128961324691772e-01 7.1018958091735840e-01 <_> 0 -1 63 8.9134991867467761e-04 3.9848309755325317e-01 6.3919639587402344e-01 <_> 0 -1 64 -1.5284179709851742e-02 2.3667329549789429e-01 5.4337137937545776e-01 <_> 0 -1 65 4.8381411470472813e-03 5.8175009489059448e-01 3.2391890883445740e-01 <_> 0 -1 66 -9.1093179071322083e-04 5.5405938625335693e-01 2.9118689894676208e-01 <_> 0 -1 67 -6.1275060288608074e-03 1.7752550542354584e-01 5.1966291666030884e-01 <_> 0 -1 68 -4.4576259097084403e-04 3.0241701006889343e-01 5.5335938930511475e-01 <_> 0 -1 69 2.2646540775895119e-02 4.4149309396743774e-01 6.9753772020339966e-01 <_> 0 -1 70 -1.8804960418492556e-03 2.7913948893547058e-01 5.4979521036148071e-01 <_> 0 -1 71 7.0889107882976532e-03 5.2631992101669312e-01 2.3855470120906830e-01 <_> 0 -1 72 1.7318050377070904e-03 4.3193790316581726e-01 6.9836008548736572e-01 <_> 0 -1 73 -6.8482700735330582e-03 3.0820429325103760e-01 5.3909200429916382e-01 <_> 0 -1 74 -1.5062530110299122e-05 5.5219221115112305e-01 3.1203660368919373e-01 <_> 0 -1 75 2.9475569725036621e-02 5.4013228416442871e-01 1.7706030607223511e-01 <_> 0 -1 76 8.1387329846620560e-03 5.1786178350448608e-01 1.2110190093517303e-01 <_> 0 -1 77 2.0942950621247292e-02 5.2902942895889282e-01 3.3112218976020813e-01 <_> 0 -1 78 -9.5665529370307922e-03 7.4719941616058350e-01 4.4519689679145813e-01 <_> 33 1.5324139595031738e+01 <_> 0 -1 79 -2.8206960996612906e-04 2.0640860497951508e-01 6.0767322778701782e-01 <_> 0 -1 80 1.6790600493550301e-03 5.8519971370697021e-01 1.2553839385509491e-01 <_> 0 -1 81 6.9827912375330925e-04 9.4018429517745972e-02 5.7289612293243408e-01 <_> 0 -1 82 7.8959012171253562e-04 1.7819879949092865e-01 5.6943088769912720e-01 <_> 0 -1 83 -2.8560499195009470e-03 1.6383990645408630e-01 5.7886648178100586e-01 <_> 0 -1 84 -3.8122469559311867e-03 2.0854400098323822e-01 5.5085647106170654e-01 <_> 0 -1 85 1.5896620461717248e-03 5.7027608156204224e-01 1.8572150170803070e-01 <_> 0 -1 86 1.0078339837491512e-02 5.1169431209564209e-01 2.1897700428962708e-01 <_> 0 -1 87 -6.3526302576065063e-02 7.1313798427581787e-01 4.0438130497932434e-01 <_> 0 -1 88 -9.1031491756439209e-03 2.5671818852424622e-01 5.4639732837677002e-01 <_> 0 -1 89 -2.4035000242292881e-03 1.7006659507751465e-01 5.5909740924835205e-01 <_> 0 -1 90 1.5226360410451889e-03 5.4105567932128906e-01 2.6190540194511414e-01 <_> 0 -1 91 1.7997439950704575e-02 3.7324368953704834e-01 6.5352207422256470e-01 <_> 0 -1 92 -6.4538191072642803e-03 2.6264819502830505e-01 5.5374461412429810e-01 <_> 0 -1 93 -1.1880760081112385e-02 2.0037539303302765e-01 5.5447459220886230e-01 <_> 0 -1 94 1.2713660253211856e-03 5.5919027328491211e-01 3.0319759249687195e-01 <_> 0 -1 95 1.1376109905540943e-03 2.7304071187973022e-01 5.6465089321136475e-01 <_> 0 -1 96 -4.2651998810470104e-03 1.4059090614318848e-01 5.4618209600448608e-01 <_> 0 -1 97 -2.9602861031889915e-03 1.7950350046157837e-01 5.4592901468276978e-01 <_> 0 -1 98 -8.8448226451873779e-03 5.7367831468582153e-01 2.8092199563980103e-01 <_> 0 -1 99 -6.6430689767003059e-03 2.3706759512424469e-01 5.5038261413574219e-01 <_> 0 -1 100 3.9997808635234833e-03 5.6081998348236084e-01 3.3042821288108826e-01 <_> 0 -1 101 -4.1221720166504383e-03 1.6401059925556183e-01 5.3789931535720825e-01 <_> 0 -1 102 1.5624909661710262e-02 5.2276492118835449e-01 2.2886039316654205e-01 <_> 0 -1 103 -1.0356419719755650e-02 7.0161938667297363e-01 4.2529278993606567e-01 <_> 0 -1 104 -8.7960809469223022e-03 2.7673470973968506e-01 5.3558301925659180e-01 <_> 0 -1 105 1.6226939857006073e-01 4.3422400951385498e-01 7.4425792694091797e-01 <_> 0 -1 106 4.5542530715465546e-03 5.7264858484268188e-01 2.5821250677108765e-01 <_> 0 -1 107 -2.1309209987521172e-03 2.1068480610847473e-01 5.3610187768936157e-01 <_> 0 -1 108 -1.3208420015871525e-02 7.5937908887863159e-01 4.5524680614471436e-01 <_> 0 -1 109 -6.5996676683425903e-02 1.2524759769439697e-01 5.3440397977828979e-01 <_> 0 -1 110 7.9142656177282333e-03 3.3153840899467468e-01 5.6010431051254272e-01 <_> 0 -1 111 2.0894279703497887e-02 5.5060499906539917e-01 2.7688381075859070e-01 <_> 44 2.1010639190673828e+01 <_> 0 -1 112 1.1961159761995077e-03 1.7626909911632538e-01 6.1562412977218628e-01 <_> 0 -1 113 -1.8679830245673656e-03 6.1181068420410156e-01 1.8323999643325806e-01 <_> 0 -1 114 -1.9579799845814705e-04 9.9044263362884521e-02 5.7238161563873291e-01 <_> 0 -1 115 -8.0255657667294145e-04 5.5798798799514771e-01 2.3772829771041870e-01 <_> 0 -1 116 -2.4510810617357492e-03 2.2314579784870148e-01 5.8589351177215576e-01 <_> 0 -1 117 5.0361850298941135e-04 2.6539939641952515e-01 5.7941037416458130e-01 <_> 0 -1 118 4.0293349884450436e-03 5.8038270473480225e-01 2.4848650395870209e-01 <_> 0 -1 119 -1.4451709575951099e-02 1.8303519487380981e-01 5.4842048883438110e-01 <_> 0 -1 120 2.0380979403853416e-03 3.3635589480400085e-01 6.0510927438735962e-01 <_> 0 -1 121 -1.6155190533027053e-03 2.2866420447826385e-01 5.4412460327148438e-01 <_> 0 -1 122 3.3458340913057327e-03 5.6259131431579590e-01 2.3923380672931671e-01 <_> 0 -1 123 1.6379579901695251e-03 3.9069938659667969e-01 5.9646219015121460e-01 <_> 0 -1 124 3.0251210555434227e-02 5.2484822273254395e-01 1.5757469832897186e-01 <_> 0 -1 125 3.7251990288496017e-02 4.1943109035491943e-01 6.7484188079833984e-01 <_> 0 -1 126 -2.5109790265560150e-02 1.8825499713420868e-01 5.4734510183334351e-01 <_> 0 -1 127 -5.3099058568477631e-03 1.3399730622768402e-01 5.2271109819412231e-01 <_> 0 -1 128 1.2086479691788554e-03 3.7620881199836731e-01 6.1096358299255371e-01 <_> 0 -1 129 -2.1907679736614227e-02 2.6631429791450500e-01 5.4040068387985229e-01 <_> 0 -1 130 5.4116579703986645e-03 5.3635787963867188e-01 2.2322730720043182e-01 <_> 0 -1 131 6.9946326315402985e-02 5.3582328557968140e-01 2.4536980688571930e-01 <_> 0 -1 132 3.4520021290518343e-04 2.4096719920635223e-01 5.3769302368164062e-01 <_> 0 -1 133 1.2627709656953812e-03 5.4258567094802856e-01 3.1556931138038635e-01 <_> 0 -1 134 2.2719509899616241e-02 4.1584059596061707e-01 6.5978652238845825e-01 <_> 0 -1 135 -1.8111000536009669e-03 2.8112530708312988e-01 5.5052447319030762e-01 <_> 0 -1 136 3.3469670452177525e-03 5.2600282430648804e-01 1.8914650380611420e-01 <_> 0 -1 137 4.0791751234792173e-04 5.6735092401504517e-01 3.3442100882530212e-01 <_> 0 -1 138 1.2734799645841122e-02 5.3435921669006348e-01 2.3956120014190674e-01 <_> 0 -1 139 -7.3119727894663811e-03 6.0108900070190430e-01 4.0222078561782837e-01 <_> 0 -1 140 -5.6948751211166382e-02 8.1991511583328247e-01 4.5431908965110779e-01 <_> 0 -1 141 -5.0116591155529022e-03 2.2002810239791870e-01 5.3577107191085815e-01 <_> 0 -1 142 6.0334368608891964e-03 4.4130811095237732e-01 7.1817511320114136e-01 <_> 0 -1 143 3.9437441155314445e-03 5.4788607358932495e-01 2.7917331457138062e-01 <_> 0 -1 144 -3.6591119132936001e-03 6.3578677177429199e-01 3.9897239208221436e-01 <_> 0 -1 145 -3.8456181064248085e-03 3.4936860203742981e-01 5.3006649017333984e-01 <_> 0 -1 146 -7.1926261298358440e-03 1.1196149885654449e-01 5.2296727895736694e-01 <_> 0 -1 147 -5.2798941731452942e-02 2.3871029913425446e-01 5.4534512758255005e-01 <_> 0 -1 148 -7.9537667334079742e-03 7.5869178771972656e-01 4.4393768906593323e-01 <_> 0 -1 149 -2.7344180271029472e-03 2.5654768943786621e-01 5.4893219470977783e-01 <_> 0 -1 150 -1.8507939530536532e-03 6.7343479394912720e-01 4.2524749040603638e-01 <_> 0 -1 151 1.5918919816613197e-02 5.4883527755737305e-01 2.2926619648933411e-01 <_> 0 -1 152 -1.2687679845839739e-03 6.1043310165405273e-01 4.0223899483680725e-01 <_> 0 -1 153 6.2883910723030567e-03 5.3108531236648560e-01 1.5361930429935455e-01 <_> 0 -1 154 -6.2259892001748085e-03 1.7291119694709778e-01 5.2416062355041504e-01 <_> 0 -1 155 -1.2132599949836731e-02 6.5977597236633301e-01 4.3251821398735046e-01 <_> 50 2.3918790817260742e+01 <_> 0 -1 156 -3.9184908382594585e-03 6.1034351587295532e-01 1.4693309366703033e-01 <_> 0 -1 157 1.5971299726516008e-03 2.6323631405830383e-01 5.8964669704437256e-01 <_> 0 -1 158 1.7780110239982605e-02 5.8728742599487305e-01 1.7603619396686554e-01 <_> 0 -1 159 6.5334769897162914e-04 1.5678019821643829e-01 5.5960661172866821e-01 <_> 0 -1 160 -2.8353091329336166e-04 1.9131539762020111e-01 5.7320362329483032e-01 <_> 0 -1 161 1.6104689566418529e-03 2.9149138927459717e-01 5.6230807304382324e-01 <_> 0 -1 162 -9.7750619053840637e-02 1.9434769451618195e-01 5.6482332944869995e-01 <_> 0 -1 163 5.5182358482852578e-04 3.1346169114112854e-01 5.5046397447586060e-01 <_> 0 -1 164 -1.2858220376074314e-02 2.5364819169044495e-01 5.7601428031921387e-01 <_> 0 -1 165 4.1530239395797253e-03 5.7677221298217773e-01 3.6597740650177002e-01 <_> 0 -1 166 1.7092459602281451e-03 2.8431910276412964e-01 5.9189391136169434e-01 <_> 0 -1 167 7.5217359699308872e-03 4.0524271130561829e-01 6.1831092834472656e-01 <_> 0 -1 168 2.2479810286313295e-03 5.7837551832199097e-01 3.1354010105133057e-01 <_> 0 -1 169 5.2006211131811142e-02 5.5413120985031128e-01 1.9166369736194611e-01 <_> 0 -1 170 1.2085529975593090e-02 4.0326559543609619e-01 6.6445910930633545e-01 <_> 0 -1 171 1.4687820112158079e-05 3.5359779000282288e-01 5.7093828916549683e-01 <_> 0 -1 172 7.1395188570022583e-06 3.0374449491500854e-01 5.6102699041366577e-01 <_> 0 -1 173 -4.6001640148460865e-03 7.1810871362686157e-01 4.5803260803222656e-01 <_> 0 -1 174 2.0058949012309313e-03 5.6219518184661865e-01 2.9536840319633484e-01 <_> 0 -1 175 4.5050270855426788e-03 4.6153879165649414e-01 7.6190179586410522e-01 <_> 0 -1 176 1.1746830306947231e-02 5.3438371419906616e-01 1.7725290358066559e-01 <_> 0 -1 177 -5.8316338807344437e-02 1.6862459480762482e-01 5.3407722711563110e-01 <_> 0 -1 178 2.3629379575140774e-04 3.7920561432838440e-01 6.0268038511276245e-01 <_> 0 -1 179 -7.8156180679798126e-03 1.5128670632839203e-01 5.3243237733840942e-01 <_> 0 -1 180 -1.0876160115003586e-02 2.0818220078945160e-01 5.3199452161788940e-01 <_> 0 -1 181 -2.7745519764721394e-03 4.0982469916343689e-01 5.2103281021118164e-01 <_> 0 -1 182 -7.8276381827890873e-04 5.6932741403579712e-01 3.4788420796394348e-01 <_> 0 -1 183 1.3870409689843655e-02 5.3267508745193481e-01 2.2576980292797089e-01 <_> 0 -1 184 -2.3674910888075829e-02 1.5513050556182861e-01 5.2007079124450684e-01 <_> 0 -1 185 -1.4879409718560055e-05 5.5005669593811035e-01 3.8201761245727539e-01 <_> 0 -1 186 3.6190641112625599e-03 4.2386838793754578e-01 6.6397482156753540e-01 <_> 0 -1 187 -1.9817110151052475e-02 2.1500380337238312e-01 5.3823578357696533e-01 <_> 0 -1 188 -3.8154039066284895e-03 6.6757112741470337e-01 4.2152971029281616e-01 <_> 0 -1 189 -4.9775829538702965e-03 2.2672890126705170e-01 5.3863281011581421e-01 <_> 0 -1 190 2.2441020701080561e-03 4.3086910247802734e-01 6.8557357788085938e-01 <_> 0 -1 191 1.2282459996640682e-02 5.8366149663925171e-01 3.4674790501594543e-01 <_> 0 -1 192 -2.8548699337989092e-03 7.0169448852539062e-01 4.3114539980888367e-01 <_> 0 -1 193 -3.7875669077038765e-03 2.8953450918197632e-01 5.2249461412429810e-01 <_> 0 -1 194 -1.2201230274513364e-03 2.9755708575248718e-01 5.4816448688507080e-01 <_> 0 -1 195 1.0160599835216999e-02 4.8888179659843445e-01 8.1826978921890259e-01 <_> 0 -1 196 -1.6174569725990295e-02 1.4814929664134979e-01 5.2399927377700806e-01 <_> 0 -1 197 1.9292460754513741e-02 4.7863098978996277e-01 7.3781907558441162e-01 <_> 0 -1 198 -3.2479539513587952e-03 7.3742228746414185e-01 4.4706439971923828e-01 <_> 0 -1 199 -9.3803480267524719e-03 3.4891548752784729e-01 5.5379962921142578e-01 <_> 0 -1 200 -1.2606129981577396e-02 2.3796869814395905e-01 5.3154432773590088e-01 <_> 0 -1 201 -2.5621930137276649e-02 1.9646880030632019e-01 5.1387697458267212e-01 <_> 0 -1 202 -7.5741496402770281e-05 5.5905228853225708e-01 3.3658531308174133e-01 <_> 0 -1 203 -8.9210882782936096e-02 6.3404656946659088e-02 5.1626348495483398e-01 <_> 0 -1 204 -2.7670480776578188e-03 7.3234677314758301e-01 4.4907060265541077e-01 <_> 0 -1 205 2.7152578695677221e-04 4.1148349642753601e-01 5.9855180978775024e-01 <_> 51 2.4527879714965820e+01 <_> 0 -1 206 1.4786219689995050e-03 2.6635450124740601e-01 6.6433167457580566e-01 <_> 0 -1 207 -1.8741659587249160e-03 6.1438488960266113e-01 2.5185129046440125e-01 <_> 0 -1 208 -1.7151009524241090e-03 5.7663410902023315e-01 2.3974630236625671e-01 <_> 0 -1 209 -1.8939269939437509e-03 5.6820458173751831e-01 2.5291448831558228e-01 <_> 0 -1 210 -5.3006052039563656e-03 1.6406759619712830e-01 5.5560797452926636e-01 <_> 0 -1 211 -4.6662531793117523e-02 6.1231541633605957e-01 4.7628301382064819e-01 <_> 0 -1 212 -7.9431332414969802e-04 5.7078588008880615e-01 2.8394040465354919e-01 <_> 0 -1 213 1.4891670085489750e-02 4.0896728634834290e-01 6.0063672065734863e-01 <_> 0 -1 214 -1.2046529445797205e-03 5.7124507427215576e-01 2.7052891254425049e-01 <_> 0 -1 215 6.0619381256401539e-03 5.2625042200088501e-01 3.2622259855270386e-01 <_> 0 -1 216 -2.5286648888140917e-03 6.8538308143615723e-01 4.1992568969726562e-01 <_> 0 -1 217 -5.9010218828916550e-03 3.2662820816040039e-01 5.4348129034042358e-01 <_> 0 -1 218 5.6702760048210621e-03 5.4684108495712280e-01 2.3190039396286011e-01 <_> 0 -1 219 -3.0304100364446640e-03 5.5706679821014404e-01 2.7082380652427673e-01 <_> 0 -1 220 2.9803649522364140e-03 3.7005689740180969e-01 5.8906257152557373e-01 <_> 0 -1 221 -7.5840510427951813e-02 2.1400700509548187e-01 5.4199481010437012e-01 <_> 0 -1 222 1.9262539222836494e-02 5.5267721414566040e-01 2.7265900373458862e-01 <_> 0 -1 223 1.8888259364757687e-04 3.9580118656158447e-01 6.0172098875045776e-01 <_> 0 -1 224 2.9369549825787544e-02 5.2413737773895264e-01 1.4357580244541168e-01 <_> 0 -1 225 1.0417619487270713e-03 3.3854091167449951e-01 5.9299832582473755e-01 <_> 0 -1 226 2.6125640142709017e-03 5.4853779077529907e-01 3.0215978622436523e-01 <_> 0 -1 227 9.6977467183023691e-04 3.3752760291099548e-01 5.5320328474044800e-01 <_> 0 -1 228 5.9512659208849072e-04 5.6317430734634399e-01 3.3593991398811340e-01 <_> 0 -1 229 -1.0156559944152832e-01 6.3735038042068481e-02 5.2304250001907349e-01 <_> 0 -1 230 3.6156699061393738e-02 5.1369631290435791e-01 1.0295289754867554e-01 <_> 0 -1 231 3.4624140243977308e-03 3.8793200254440308e-01 5.5582892894744873e-01 <_> 0 -1 232 1.9554980099201202e-02 5.2500867843627930e-01 1.8758599460124969e-01 <_> 0 -1 233 -2.3121440317481756e-03 6.6720288991928101e-01 4.6796411275863647e-01 <_> 0 -1 234 -1.8605289515107870e-03 7.1633791923522949e-01 4.3346709012985229e-01 <_> 0 -1 235 -9.4026362057775259e-04 3.0213609337806702e-01 5.6502032279968262e-01 <_> 0 -1 236 -5.2418331615626812e-03 1.8200090527534485e-01 5.2502560615539551e-01 <_> 0 -1 237 1.1729019752237946e-04 3.3891880512237549e-01 5.4459732770919800e-01 <_> 0 -1 238 1.1878840159624815e-03 4.0853491425514221e-01 6.2535631656646729e-01 <_> 0 -1 239 -1.0881359688937664e-02 3.3783990144729614e-01 5.7000827789306641e-01 <_> 0 -1 240 1.7354859737679362e-03 4.2046359181404114e-01 6.5230387449264526e-01 <_> 0 -1 241 -6.5119052305817604e-03 2.5952160358428955e-01 5.4281437397003174e-01 <_> 0 -1 242 -1.2136430013924837e-03 6.1651438474655151e-01 3.9778938889503479e-01 <_> 0 -1 243 -1.0354240424931049e-02 1.6280280053615570e-01 5.2195048332214355e-01 <_> 0 -1 244 5.5858830455690622e-04 3.1996509432792664e-01 5.5035740137100220e-01 <_> 0 -1 245 1.5299649909138680e-02 4.1039940714836121e-01 6.1223882436752319e-01 <_> 0 -1 246 -2.1588210016489029e-02 1.0349129885435104e-01 5.1973849534988403e-01 <_> 0 -1 247 -1.2834629416465759e-01 8.4938651323318481e-01 4.8931029438972473e-01 <_> 0 -1 248 -2.2927189711481333e-03 3.1301578879356384e-01 5.4715752601623535e-01 <_> 0 -1 249 7.9915106296539307e-02 4.8563209176063538e-01 6.0739892721176147e-01 <_> 0 -1 250 -7.9441092908382416e-02 8.3946740627288818e-01 4.6245330572128296e-01 <_> 0 -1 251 -5.2800010889768600e-03 1.8816959857940674e-01 5.3066980838775635e-01 <_> 0 -1 252 1.0463109938427806e-03 5.2712291479110718e-01 2.5830659270286560e-01 <_> 0 -1 253 2.6317298761568964e-04 4.2353048920631409e-01 5.7354408502578735e-01 <_> 0 -1 254 -3.6173160187900066e-03 6.9343960285186768e-01 4.4954448938369751e-01 <_> 0 -1 255 1.1421879753470421e-02 5.9009212255477905e-01 4.1381931304931641e-01 <_> 0 -1 256 -1.9963278900831938e-03 6.4663827419281006e-01 4.3272399902343750e-01 <_> 56 2.7153350830078125e+01 <_> 0 -1 257 -9.9691245704889297e-03 6.1423242092132568e-01 2.4822120368480682e-01 <_> 0 -1 258 7.3073059320449829e-04 5.7049518823623657e-01 2.3219659924507141e-01 <_> 0 -1 259 6.4045301405712962e-04 2.1122519671916962e-01 5.8149331808090210e-01 <_> 0 -1 260 4.5424019917845726e-03 2.9504820704460144e-01 5.8663117885589600e-01 <_> 0 -1 261 9.2477443104144186e-05 2.9909908771514893e-01 5.7913267612457275e-01 <_> 0 -1 262 -8.6603146046400070e-03 2.8130298852920532e-01 5.6355422735214233e-01 <_> 0 -1 263 8.0515816807746887e-03 3.5353690385818481e-01 6.0547572374343872e-01 <_> 0 -1 264 4.3835240649059415e-04 5.5965322256088257e-01 2.7315109968185425e-01 <_> 0 -1 265 -9.8168973636347800e-05 5.9780317544937134e-01 3.6385610699653625e-01 <_> 0 -1 266 -1.1298790341243148e-03 2.7552521228790283e-01 5.4327291250228882e-01 <_> 0 -1 267 6.4356150105595589e-03 4.3056419491767883e-01 7.0698332786560059e-01 <_> 0 -1 268 -5.6829329580068588e-02 2.4952429533004761e-01 5.2949970960617065e-01 <_> 0 -1 269 4.0668169967830181e-03 5.4785531759262085e-01 2.4977239966392517e-01 <_> 0 -1 270 4.8164798499783501e-05 3.9386010169982910e-01 5.7063561677932739e-01 <_> 0 -1 271 6.1795017682015896e-03 4.4076061248779297e-01 7.3947668075561523e-01 <_> 0 -1 272 6.4985752105712891e-03 5.4452431201934814e-01 2.4791529774665833e-01 <_> 0 -1 273 -1.0211090557277203e-03 2.5447669625282288e-01 5.3389710187911987e-01 <_> 0 -1 274 -5.4247528314590454e-03 2.7188581228256226e-01 5.3240692615509033e-01 <_> 0 -1 275 -1.0559899965301156e-03 3.1782880425453186e-01 5.5345088243484497e-01 <_> 0 -1 276 6.6465808777138591e-04 4.2842191457748413e-01 6.5581941604614258e-01 <_> 0 -1 277 -2.7524109464138746e-04 5.9028607606887817e-01 3.8102629780769348e-01 <_> 0 -1 278 4.2293202131986618e-03 3.8164898753166199e-01 5.7093858718872070e-01 <_> 0 -1 279 -3.2868210691958666e-03 1.7477439343929291e-01 5.2595442533493042e-01 <_> 0 -1 280 1.5611879643984139e-04 3.6017221212387085e-01 5.7256120443344116e-01 <_> 0 -1 281 -7.3621381488919724e-06 5.4018580913543701e-01 3.0444970726966858e-01 <_> 0 -1 282 -1.4767250046133995e-02 3.2207700610160828e-01 5.5734348297119141e-01 <_> 0 -1 283 2.4489590898156166e-02 4.3015280365943909e-01 6.5188127756118774e-01 <_> 0 -1 284 -3.7652091123163700e-04 3.5645830631256104e-01 5.5982369184494019e-01 <_> 0 -1 285 7.3657688517414499e-06 3.4907829761505127e-01 5.5618977546691895e-01 <_> 0 -1 286 -1.5099939890205860e-02 1.7762720584869385e-01 5.3352999687194824e-01 <_> 0 -1 287 -3.8316650316119194e-03 6.1496877670288086e-01 4.2213940620422363e-01 <_> 0 -1 288 1.6925400123000145e-02 5.4130148887634277e-01 2.1665850281715393e-01 <_> 0 -1 289 -3.0477850232273340e-03 6.4494907855987549e-01 4.3546178936958313e-01 <_> 0 -1 290 3.2140589319169521e-03 5.4001551866531372e-01 3.5232171416282654e-01 <_> 0 -1 291 -4.0023201145231724e-03 2.7745240926742554e-01 5.3384172916412354e-01 <_> 0 -1 292 7.4182129465043545e-03 5.6767392158508301e-01 3.7028178572654724e-01 <_> 0 -1 293 -8.8764587417244911e-03 7.7492219209671021e-01 4.5836889743804932e-01 <_> 0 -1 294 2.7311739977449179e-03 5.3387218713760376e-01 3.9966610074043274e-01 <_> 0 -1 295 -2.5082379579544067e-03 5.6119632720947266e-01 3.7774989008903503e-01 <_> 0 -1 296 -8.0541074275970459e-03 2.9152289032936096e-01 5.1791828870773315e-01 <_> 0 -1 297 -9.7938813269138336e-04 5.5364328622817993e-01 3.7001928687095642e-01 <_> 0 -1 298 -5.8745909482240677e-03 3.7543910741806030e-01 5.6793761253356934e-01 <_> 0 -1 299 -4.4936719350516796e-03 7.0196992158889771e-01 4.4809499382972717e-01 <_> 0 -1 300 -5.4389229044318199e-03 2.3103649914264679e-01 5.3133869171142578e-01 <_> 0 -1 301 -7.5094640487805009e-04 5.8648687601089478e-01 4.1293430328369141e-01 <_> 0 -1 302 1.4528800420521293e-05 3.7324070930480957e-01 5.6196212768554688e-01 <_> 0 -1 303 4.0758069604635239e-02 5.3120911121368408e-01 2.7205219864845276e-01 <_> 0 -1 304 6.6505931317806244e-03 4.7100159525871277e-01 6.6934937238693237e-01 <_> 0 -1 305 4.5759351924061775e-03 5.1678192615509033e-01 1.6372759640216827e-01 <_> 0 -1 306 6.5269311890006065e-03 5.3976088762283325e-01 2.9385319352149963e-01 <_> 0 -1 307 -1.3660379685461521e-02 7.0864880084991455e-01 4.5322000980377197e-01 <_> 0 -1 308 2.7358869090676308e-02 5.2064812183380127e-01 3.5892319679260254e-01 <_> 0 -1 309 6.2197551596909761e-04 3.5070759057998657e-01 5.4411232471466064e-01 <_> 0 -1 310 -3.3077080734074116e-03 5.8595228195190430e-01 4.0248918533325195e-01 <_> 0 -1 311 -1.0631109587848186e-02 6.7432671785354614e-01 4.4226029515266418e-01 <_> 0 -1 312 1.9441649317741394e-02 5.2827161550521851e-01 1.7979049682617188e-01 <_> 71 3.4554111480712891e+01 <_> 0 -1 313 -5.5052167735993862e-03 5.9147310256958008e-01 2.6265591382980347e-01 <_> 0 -1 314 1.9562279339879751e-03 2.3125819861888885e-01 5.7416272163391113e-01 <_> 0 -1 315 -8.8924784213304520e-03 1.6565300524234772e-01 5.6266540288925171e-01 <_> 0 -1 316 8.3638377487659454e-02 5.4234498739242554e-01 1.9572949409484863e-01 <_> 0 -1 317 1.2282270472496748e-03 3.4179040789604187e-01 5.9925037622451782e-01 <_> 0 -1 318 5.7629169896245003e-03 3.7195819616317749e-01 6.0799038410186768e-01 <_> 0 -1 319 -1.6417410224676132e-03 2.5774860382080078e-01 5.5769157409667969e-01 <_> 0 -1 320 3.4113149158656597e-03 2.9507490992546082e-01 5.5141717195510864e-01 <_> 0 -1 321 -1.1069320142269135e-02 7.5693589448928833e-01 4.4770789146423340e-01 <_> 0 -1 322 3.4865971654653549e-02 5.5837088823318481e-01 2.6696211099624634e-01 <_> 0 -1 323 6.5701099811121821e-04 5.6273132562637329e-01 2.9888901114463806e-01 <_> 0 -1 324 -2.4339130148291588e-02 2.7711850404739380e-01 5.1088631153106689e-01 <_> 0 -1 325 5.9435202274471521e-04 5.5806517601013184e-01 3.1203418970108032e-01 <_> 0 -1 326 2.2971509024500847e-03 3.3302500844001770e-01 5.6790757179260254e-01 <_> 0 -1 327 -3.7801829166710377e-03 2.9905349016189575e-01 5.3448081016540527e-01 <_> 0 -1 328 -1.3420669734477997e-01 1.4638589322566986e-01 5.3925681114196777e-01 <_> 0 -1 329 7.5224548345431685e-04 3.7469539046287537e-01 5.6927347183227539e-01 <_> 0 -1 330 -4.0545541793107986e-02 2.7547478675842285e-01 5.4842978715896606e-01 <_> 0 -1 331 1.2572970008477569e-03 3.7445840239524841e-01 5.7560759782791138e-01 <_> 0 -1 332 -7.4249948374927044e-03 7.5138592720031738e-01 4.7282311320304871e-01 <_> 0 -1 333 5.0908129196614027e-04 5.4048967361450195e-01 2.9323211312294006e-01 <_> 0 -1 334 -1.2808450264856219e-03 6.1697798967361450e-01 4.2733490467071533e-01 <_> 0 -1 335 -1.8348860321566463e-03 2.0484960079193115e-01 5.2064722776412964e-01 <_> 0 -1 336 2.7484869584441185e-02 5.2529847621917725e-01 1.6755220293998718e-01 <_> 0 -1 337 2.2372419480234385e-03 5.2677828073501587e-01 2.7776581048965454e-01 <_> 0 -1 338 -8.8635291904211044e-03 6.9545578956604004e-01 4.8120489716529846e-01 <_> 0 -1 339 4.1753971017897129e-03 4.2918878793716431e-01 6.3491958379745483e-01 <_> 0 -1 340 -1.7098189564421773e-03 2.9305368661880493e-01 5.3612488508224487e-01 <_> 0 -1 341 6.5328548662364483e-03 4.4953250885009766e-01 7.4096941947937012e-01 <_> 0 -1 342 -9.5372907817363739e-03 3.1491199135780334e-01 5.4165017604827881e-01 <_> 0 -1 343 2.5310989469289780e-02 5.1218920946121216e-01 1.3117079436779022e-01 <_> 0 -1 344 3.6460969597101212e-02 5.1759117841720581e-01 2.5913399457931519e-01 <_> 0 -1 345 2.0854329690337181e-02 5.1371401548385620e-01 1.5823160111904144e-01 <_> 0 -1 346 -8.7207747856155038e-04 5.5743098258972168e-01 4.3989789485931396e-01 <_> 0 -1 347 -1.5227000403683633e-05 5.5489408969879150e-01 3.7080699205398560e-01 <_> 0 -1 348 -8.4316509310156107e-04 3.3874198794364929e-01 5.5542111396789551e-01 <_> 0 -1 349 3.6037859972566366e-03 5.3580617904663086e-01 3.4111711382865906e-01 <_> 0 -1 350 -6.8057891912758350e-03 6.1252027750015259e-01 4.3458628654479980e-01 <_> 0 -1 351 -4.7021660953760147e-02 2.3581659793853760e-01 5.1937389373779297e-01 <_> 0 -1 352 -3.6954108625650406e-02 7.3231112957000732e-01 4.7609439492225647e-01 <_> 0 -1 353 1.0439479956403375e-03 5.4194551706314087e-01 3.4113308787345886e-01 <_> 0 -1 354 -2.1050689974799752e-04 2.8216940164566040e-01 5.5549472570419312e-01 <_> 0 -1 355 -8.0831587314605713e-02 9.1299301385879517e-01 4.6974349021911621e-01 <_> 0 -1 356 -3.6579059087671340e-04 6.0226702690124512e-01 3.9782929420471191e-01 <_> 0 -1 357 -1.2545920617412776e-04 5.6132131814956665e-01 3.8455399870872498e-01 <_> 0 -1 358 -6.8786486983299255e-02 2.2616119682788849e-01 5.3004968166351318e-01 <_> 0 -1 359 1.2415789999067783e-02 4.0756919980049133e-01 5.8288121223449707e-01 <_> 0 -1 360 -4.7174817882478237e-03 2.8272539377212524e-01 5.2677577733993530e-01 <_> 0 -1 361 3.8136858493089676e-02 5.0747412443161011e-01 1.0236159712076187e-01 <_> 0 -1 362 -2.8168049175292253e-03 6.1690068244934082e-01 4.3596929311752319e-01 <_> 0 -1 363 8.1303603947162628e-03 4.5244330167770386e-01 7.6060950756072998e-01 <_> 0 -1 364 6.0056019574403763e-03 5.2404087781906128e-01 1.8597120046615601e-01 <_> 0 -1 365 1.9139319658279419e-02 5.2093791961669922e-01 2.3320719599723816e-01 <_> 0 -1 366 1.6445759683847427e-02 5.4507029056549072e-01 3.2642349600791931e-01 <_> 0 -1 367 -3.7356890738010406e-02 6.9990468025207520e-01 4.5332419872283936e-01 <_> 0 -1 368 -1.9727900624275208e-02 2.6536649465560913e-01 5.4128098487854004e-01 <_> 0 -1 369 6.6972579807043076e-03 4.4805660843849182e-01 7.1386522054672241e-01 <_> 0 -1 370 7.4457528535276651e-04 4.2313501238822937e-01 5.4713201522827148e-01 <_> 0 -1 371 1.1790640419349074e-03 5.3417021036148071e-01 3.1304550170898438e-01 <_> 0 -1 372 3.4980610013008118e-02 5.1186597347259521e-01 3.4305301308631897e-01 <_> 0 -1 373 5.6859792675822973e-04 3.5321870446205139e-01 5.4686397314071655e-01 <_> 0 -1 374 -1.1340649798512459e-02 2.8423538804054260e-01 5.3487008810043335e-01 <_> 0 -1 375 -6.6228108480572701e-03 6.8836402893066406e-01 4.4926649332046509e-01 <_> 0 -1 376 -8.0160330981016159e-03 1.7098939418792725e-01 5.2243089675903320e-01 <_> 0 -1 377 1.4206819469109178e-03 5.2908462285995483e-01 2.9933831095695496e-01 <_> 0 -1 378 -2.7801711112260818e-03 6.4988541603088379e-01 4.4604998826980591e-01 <_> 0 -1 379 -1.4747589593753219e-03 3.2604381442070007e-01 5.3881132602691650e-01 <_> 0 -1 380 -2.3830339312553406e-02 7.5289410352706909e-01 4.8012199997901917e-01 <_> 0 -1 381 6.9369790144264698e-03 5.3351658582687378e-01 3.2614278793334961e-01 <_> 0 -1 382 8.2806255668401718e-03 4.5803940296173096e-01 5.7378298044204712e-01 <_> 0 -1 383 -1.0439500212669373e-02 2.5923201441764832e-01 5.2338278293609619e-01 <_> 80 3.9107288360595703e+01 <_> 0 -1 384 7.2006587870419025e-03 3.2588860392570496e-01 6.8498080968856812e-01 <_> 0 -1 385 -2.8593589086085558e-03 5.8388811349868774e-01 2.5378298759460449e-01 <_> 0 -1 386 6.8580528022721410e-04 5.7080817222595215e-01 2.8124240040779114e-01 <_> 0 -1 387 7.9580191522836685e-03 2.5010511279106140e-01 5.5442607402801514e-01 <_> 0 -1 388 -1.2124150525778532e-03 2.3853680491447449e-01 5.4333502054214478e-01 <_> 0 -1 389 7.9426132142543793e-03 3.9550709724426270e-01 6.2207579612731934e-01 <_> 0 -1 390 2.4630590341985226e-03 5.6397080421447754e-01 2.9923579096794128e-01 <_> 0 -1 391 -6.0396599583327770e-03 2.1865129470825195e-01 5.4116767644882202e-01 <_> 0 -1 392 -1.2988339876756072e-03 2.3507060110569000e-01 5.3645849227905273e-01 <_> 0 -1 393 2.2299369447864592e-04 3.8041129708290100e-01 5.7296061515808105e-01 <_> 0 -1 394 1.4654280385002494e-03 2.5101679563522339e-01 5.2582687139511108e-01 <_> 0 -1 395 -8.1210042117163539e-04 5.9928238391876221e-01 3.8511589169502258e-01 <_> 0 -1 396 -1.3836020370945334e-03 5.6813961267471313e-01 3.6365869641304016e-01 <_> 0 -1 397 -2.7936449274420738e-02 1.4913170039653778e-01 5.3775602579116821e-01 <_> 0 -1 398 -4.6919551095925272e-04 3.6924299597740173e-01 5.5724847316741943e-01 <_> 0 -1 399 -4.9829659983515739e-03 6.7585092782974243e-01 4.5325040817260742e-01 <_> 0 -1 400 1.8815309740602970e-03 5.3680229187011719e-01 2.9325398802757263e-01 <_> 0 -1 401 -1.9067550078034401e-02 1.6493770480155945e-01 5.3300672769546509e-01 <_> 0 -1 402 -4.6906559728085995e-03 1.9639259576797485e-01 5.1193618774414062e-01 <_> 0 -1 403 5.9777139686048031e-03 4.6711719036102295e-01 7.0083981752395630e-01 <_> 0 -1 404 -3.3303130418062210e-02 1.1554169654846191e-01 5.1041620969772339e-01 <_> 0 -1 405 9.0744107961654663e-02 5.1496601104736328e-01 1.3061730563640594e-01 <_> 0 -1 406 9.3555898638442159e-04 3.6054810881614685e-01 5.4398590326309204e-01 <_> 0 -1 407 1.4901650138199329e-02 4.8862120509147644e-01 7.6875698566436768e-01 <_> 0 -1 408 6.1594118596985936e-04 5.3568130731582642e-01 3.2409390807151794e-01 <_> 0 -1 409 -5.0670988857746124e-02 1.8486219644546509e-01 5.2304041385650635e-01 <_> 0 -1 410 6.8665749859064817e-04 3.8405799865722656e-01 5.5179458856582642e-01 <_> 0 -1 411 8.3712432533502579e-03 4.2885640263557434e-01 6.1317539215087891e-01 <_> 0 -1 412 -1.2953069526702166e-03 2.9136741161346436e-01 5.2807378768920898e-01 <_> 0 -1 413 -4.1941680014133453e-02 7.5547999143600464e-01 4.8560309410095215e-01 <_> 0 -1 414 -2.3529380559921265e-02 2.8382799029350281e-01 5.2560812234878540e-01 <_> 0 -1 415 4.0857449173927307e-02 4.8709350824356079e-01 6.2772971391677856e-01 <_> 0 -1 416 -2.5406869128346443e-02 7.0997077226638794e-01 4.5750290155410767e-01 <_> 0 -1 417 -4.1415440500713885e-04 4.0308868885040283e-01 5.4694122076034546e-01 <_> 0 -1 418 2.1824119612574577e-02 4.5020240545272827e-01 6.7687010765075684e-01 <_> 0 -1 419 1.4114039950072765e-02 5.4428607225418091e-01 3.7917000055313110e-01 <_> 0 -1 420 6.7214590671937913e-05 4.2004638910293579e-01 5.8734762668609619e-01 <_> 0 -1 421 -7.9417638480663300e-03 3.7925618886947632e-01 5.5852657556533813e-01 <_> 0 -1 422 -7.2144409641623497e-03 7.2531038522720337e-01 4.6035489439964294e-01 <_> 0 -1 423 2.5817339774221182e-03 4.6933019161224365e-01 5.9002387523651123e-01 <_> 0 -1 424 1.3409319519996643e-01 5.1492130756378174e-01 1.8088449537754059e-01 <_> 0 -1 425 2.2962710354477167e-03 5.3997439146041870e-01 3.7178671360015869e-01 <_> 0 -1 426 -2.1575849968940020e-03 2.4084959924221039e-01 5.1488637924194336e-01 <_> 0 -1 427 -4.9196188338100910e-03 6.5735882520675659e-01 4.7387400269508362e-01 <_> 0 -1 428 1.6267469618469477e-03 4.1928219795227051e-01 6.3031142950057983e-01 <_> 0 -1 429 3.3413388882763684e-04 5.5402982234954834e-01 3.7021011114120483e-01 <_> 0 -1 430 -2.6698080822825432e-02 1.7109179496765137e-01 5.1014107465744019e-01 <_> 0 -1 431 -3.0561879277229309e-02 1.9042180478572845e-01 5.1687937974929810e-01 <_> 0 -1 432 2.8511548880487680e-03 4.4475069642066956e-01 6.3138538599014282e-01 <_> 0 -1 433 -3.6211479455232620e-02 2.4907270073890686e-01 5.3773492574691772e-01 <_> 0 -1 434 -2.4115189444273710e-03 5.3812432289123535e-01 3.6642369627952576e-01 <_> 0 -1 435 -7.7253201743587852e-04 5.5302321910858154e-01 3.5415500402450562e-01 <_> 0 -1 436 2.9481729143299162e-04 4.1326990723609924e-01 5.6672430038452148e-01 <_> 0 -1 437 -6.2334560789167881e-03 9.8787233233451843e-02 5.1986688375473022e-01 <_> 0 -1 438 -2.6274729520082474e-02 9.1127492487430573e-02 5.0281071662902832e-01 <_> 0 -1 439 5.3212260827422142e-03 4.7266489267349243e-01 6.2227207422256470e-01 <_> 0 -1 440 -4.1129058226943016e-03 2.1574570238590240e-01 5.1378047466278076e-01 <_> 0 -1 441 3.2457809429615736e-03 5.4107707738876343e-01 3.7217769026756287e-01 <_> 0 -1 442 -1.6359709203243256e-02 7.7878749370574951e-01 4.6852919459342957e-01 <_> 0 -1 443 3.2166109303943813e-04 5.4789870977401733e-01 4.2403739690780640e-01 <_> 0 -1 444 6.4452440710738301e-04 5.3305608034133911e-01 3.5013249516487122e-01 <_> 0 -1 445 -7.8909732401371002e-03 6.9235211610794067e-01 4.7265690565109253e-01 <_> 0 -1 446 4.8336211591959000e-02 5.0559002161026001e-01 7.5749203562736511e-02 <_> 0 -1 447 -7.5178127735853195e-04 3.7837418913841248e-01 5.5385738611221313e-01 <_> 0 -1 448 -2.4953910615295172e-03 3.0816510319709778e-01 5.3596121072769165e-01 <_> 0 -1 449 -2.2385010961443186e-03 6.6339588165283203e-01 4.6493428945541382e-01 <_> 0 -1 450 -1.7988430336117744e-03 6.5968447923660278e-01 4.3471878767013550e-01 <_> 0 -1 451 8.7860915809869766e-03 5.2318328619003296e-01 2.3155799508094788e-01 <_> 0 -1 452 3.6715380847454071e-03 5.2042502164840698e-01 2.9773768782615662e-01 <_> 0 -1 453 -3.5336449742317200e-02 7.2388780117034912e-01 4.8615050315856934e-01 <_> 0 -1 454 -6.9189240457490087e-04 3.1050220131874084e-01 5.2298247814178467e-01 <_> 0 -1 455 -3.3946109469980001e-03 3.1389680504798889e-01 5.2101737260818481e-01 <_> 0 -1 456 9.8569283727556467e-04 4.5365801453590393e-01 6.5850979089736938e-01 <_> 0 -1 457 -5.0163101404905319e-02 1.8044540286064148e-01 5.1989167928695679e-01 <_> 0 -1 458 -2.2367259953171015e-03 7.2557020187377930e-01 4.6513590216636658e-01 <_> 0 -1 459 7.4326287722215056e-04 4.4129210710525513e-01 5.8985459804534912e-01 <_> 0 -1 460 -9.3485182151198387e-04 3.5000529885292053e-01 5.3660178184509277e-01 <_> 0 -1 461 1.7497939988970757e-02 4.9121949076652527e-01 8.3152848482131958e-01 <_> 0 -1 462 -1.5200000489130616e-03 3.5702759027481079e-01 5.3705602884292603e-01 <_> 0 -1 463 7.8003940870985389e-04 4.3537721037864685e-01 5.9673351049423218e-01 <_> 103 5.0610481262207031e+01 <_> 0 -1 464 -9.9945552647113800e-03 6.1625832319259644e-01 3.0545330047607422e-01 <_> 0 -1 465 -1.1085229925811291e-03 5.8182948827743530e-01 3.1555780768394470e-01 <_> 0 -1 466 1.0364380432292819e-03 2.5520521402359009e-01 5.6929117441177368e-01 <_> 0 -1 467 6.8211311008781195e-04 3.6850899457931519e-01 5.9349310398101807e-01 <_> 0 -1 468 -6.8057340104132891e-04 2.3323920369148254e-01 5.4747921228408813e-01 <_> 0 -1 469 2.6068789884448051e-04 3.2574570178985596e-01 5.6675457954406738e-01 <_> 0 -1 470 5.1607372006401420e-04 3.7447169423103333e-01 5.8454728126525879e-01 <_> 0 -1 471 8.5007521556690335e-04 3.4203711152076721e-01 5.5228072404861450e-01 <_> 0 -1 472 -1.8607829697430134e-03 2.8044199943542480e-01 5.3754240274429321e-01 <_> 0 -1 473 -1.5033970121294260e-03 2.5790509581565857e-01 5.4989522695541382e-01 <_> 0 -1 474 2.3478909861296415e-03 4.1751560568809509e-01 6.3137108087539673e-01 <_> 0 -1 475 -2.8880240279249847e-04 5.8651697635650635e-01 4.0526661276817322e-01 <_> 0 -1 476 8.9405477046966553e-03 5.2111411094665527e-01 2.3186540603637695e-01 <_> 0 -1 477 -1.9327739253640175e-02 2.7534329891204834e-01 5.2415257692337036e-01 <_> 0 -1 478 -2.0202060113660991e-04 5.7229787111282349e-01 3.6771959066390991e-01 <_> 0 -1 479 2.1179069299250841e-03 4.4661080837249756e-01 5.5424308776855469e-01 <_> 0 -1 480 -1.7743760254234076e-03 2.8132531046867371e-01 5.3009599447250366e-01 <_> 0 -1 481 4.2234458960592747e-03 4.3997099995613098e-01 5.7954281568527222e-01 <_> 0 -1 482 -1.4375220052897930e-02 2.9811179637908936e-01 5.2920591831207275e-01 <_> 0 -1 483 -1.5349180437624454e-02 7.7052152156829834e-01 4.7481718659400940e-01 <_> 0 -1 484 1.5152279956964776e-05 3.7188440561294556e-01 5.5768972635269165e-01 <_> 0 -1 485 -9.1293919831514359e-03 3.6151960492134094e-01 5.2867668867111206e-01 <_> 0 -1 486 2.2512159775942564e-03 5.3647047281265259e-01 3.4862980246543884e-01 <_> 0 -1 487 -4.9696918576955795e-03 6.9276517629623413e-01 4.6768361330032349e-01 <_> 0 -1 488 -1.2829010374844074e-02 7.7121537923812866e-01 4.6607351303100586e-01 <_> 0 -1 489 -9.3660065904259682e-03 3.3749839663505554e-01 5.3512877225875854e-01 <_> 0 -1 490 3.2452319283038378e-03 5.3251898288726807e-01 3.2896101474761963e-01 <_> 0 -1 491 -1.1723560281097889e-02 6.8376529216766357e-01 4.7543001174926758e-01 <_> 0 -1 492 2.9257940695970319e-05 3.5720878839492798e-01 5.3605020046234131e-01 <_> 0 -1 493 -2.2244219508138485e-05 5.5414271354675293e-01 3.5520640015602112e-01 <_> 0 -1 494 5.0881509669125080e-03 5.0708442926406860e-01 1.2564620375633240e-01 <_> 0 -1 495 2.7429679408669472e-02 5.2695602178573608e-01 1.6258180141448975e-01 <_> 0 -1 496 -6.4142867922782898e-03 7.1455889940261841e-01 4.5841971039772034e-01 <_> 0 -1 497 3.3479959238320589e-03 5.3986120223999023e-01 3.4946969151496887e-01 <_> 0 -1 498 -8.2635492086410522e-02 2.4391929805278778e-01 5.1602262258529663e-01 <_> 0 -1 499 1.0261740535497665e-03 3.8868919014930725e-01 5.7679080963134766e-01 <_> 0 -1 500 -1.6307090409100056e-03 3.3894580602645874e-01 5.3477007150650024e-01 <_> 0 -1 501 2.4546680506318808e-03 4.6014139056205750e-01 6.3872468471527100e-01 <_> 0 -1 502 -9.9476519972085953e-04 5.7698792219161987e-01 4.1203960776329041e-01 <_> 0 -1 503 1.5409190207719803e-02 4.8787090182304382e-01 7.0898222923278809e-01 <_> 0 -1 504 1.1784400558099151e-03 5.2635532617568970e-01 2.8952449560165405e-01 <_> 0 -1 505 -2.7701919898390770e-02 1.4988289773464203e-01 5.2196067571640015e-01 <_> 0 -1 506 -2.9505399987101555e-02 2.4893319234251976e-02 4.9998161196708679e-01 <_> 0 -1 507 4.5159430010244250e-04 5.4646229743957520e-01 4.0296629071235657e-01 <_> 0 -1 508 7.1772639639675617e-03 4.2710569500923157e-01 5.8662968873977661e-01 <_> 0 -1 509 -7.4182048439979553e-02 6.8741792440414429e-01 4.9190279841423035e-01 <_> 0 -1 510 -1.7254160717129707e-02 3.3706760406494141e-01 5.3487390279769897e-01 <_> 0 -1 511 1.4851559884846210e-02 4.6267929673194885e-01 6.1299049854278564e-01 <_> 0 -1 512 1.0002000257372856e-02 5.3461229801177979e-01 3.4234538674354553e-01 <_> 0 -1 513 2.0138120744377375e-03 4.6438300609588623e-01 5.8243042230606079e-01 <_> 0 -1 514 1.5135470312088728e-03 5.1963961124420166e-01 2.8561499714851379e-01 <_> 0 -1 515 3.1381431035697460e-03 4.8381629586219788e-01 5.9585297107696533e-01 <_> 0 -1 516 -5.1450440660119057e-03 8.9203029870986938e-01 4.7414121031761169e-01 <_> 0 -1 517 -4.4736708514392376e-03 2.0339429378509521e-01 5.3372788429260254e-01 <_> 0 -1 518 1.9628470763564110e-03 4.5716339349746704e-01 6.7258632183074951e-01 <_> 0 -1 519 5.4260450415313244e-03 5.2711081504821777e-01 2.8456708788871765e-01 <_> 0 -1 520 4.9611460417509079e-04 4.1383129358291626e-01 5.7185977697372437e-01 <_> 0 -1 521 9.3728788197040558e-03 5.2251511812210083e-01 2.8048470616340637e-01 <_> 0 -1 522 6.0500897234305739e-04 5.2367687225341797e-01 3.3145239949226379e-01 <_> 0 -1 523 5.6792551185935736e-04 4.5310598611831665e-01 6.2769711017608643e-01 <_> 0 -1 524 2.4644339457154274e-02 5.1308518648147583e-01 2.0171439647674561e-01 <_> 0 -1 525 -1.0290450416505337e-02 7.7865952253341675e-01 4.8766410350799561e-01 <_> 0 -1 526 2.0629419013857841e-03 4.2885988950729370e-01 5.8812642097473145e-01 <_> 0 -1 527 -5.0519481301307678e-03 3.5239779949188232e-01 5.2860087156295776e-01 <_> 0 -1 528 -5.7692620903253555e-03 6.8410861492156982e-01 4.5880940556526184e-01 <_> 0 -1 529 -4.5789941214025021e-04 3.5655200481414795e-01 5.4859781265258789e-01 <_> 0 -1 530 -7.5918837683275342e-04 3.3687931299209595e-01 5.2541971206665039e-01 <_> 0 -1 531 -1.7737259622663260e-03 3.4221610426902771e-01 5.4540151357650757e-01 <_> 0 -1 532 -8.5610467940568924e-03 6.5336120128631592e-01 4.4858568906784058e-01 <_> 0 -1 533 1.7277270089834929e-03 5.3075802326202393e-01 3.9253529906272888e-01 <_> 0 -1 534 -2.8199609369039536e-02 6.8574589490890503e-01 4.5885840058326721e-01 <_> 0 -1 535 -1.7781109781935811e-03 4.0378510951995850e-01 5.3698569536209106e-01 <_> 0 -1 536 3.3177141449414194e-04 5.3997987508773804e-01 3.7057501077651978e-01 <_> 0 -1 537 2.6385399978607893e-03 4.6654370427131653e-01 6.4527308940887451e-01 <_> 0 -1 538 -2.1183069329708815e-03 5.9147810935974121e-01 4.0646770596504211e-01 <_> 0 -1 539 -1.4773289673030376e-02 3.6420381069183350e-01 5.2947628498077393e-01 <_> 0 -1 540 -1.6815440729260445e-02 2.6642319560050964e-01 5.1449728012084961e-01 <_> 0 -1 541 -6.3370140269398689e-03 6.7795312404632568e-01 4.8520979285240173e-01 <_> 0 -1 542 -4.4560048991115764e-05 5.6139647960662842e-01 4.1530540585517883e-01 <_> 0 -1 543 -1.0240620467811823e-03 5.9644782543182373e-01 4.5663040876388550e-01 <_> 0 -1 544 -2.3161689750850201e-03 2.9761150479316711e-01 5.1881599426269531e-01 <_> 0 -1 545 5.3217571973800659e-01 5.1878392696380615e-01 2.2026319801807404e-01 <_> 0 -1 546 -1.6643050312995911e-01 1.8660229444503784e-01 5.0603431463241577e-01 <_> 0 -1 547 1.1253529787063599e-01 5.2121251821517944e-01 1.1850229650735855e-01 <_> 0 -1 548 9.3046864494681358e-03 4.5899370312690735e-01 6.8261492252349854e-01 <_> 0 -1 549 -4.6255099587142467e-03 3.0799409747123718e-01 5.2250087261199951e-01 <_> 0 -1 550 -1.1116469651460648e-01 2.1010440587997437e-01 5.0808018445968628e-01 <_> 0 -1 551 -1.0888439603149891e-02 5.7653552293777466e-01 4.7904640436172485e-01 <_> 0 -1 552 5.8564301580190659e-03 5.0651001930236816e-01 1.5635989606380463e-01 <_> 0 -1 553 5.4854389280080795e-02 4.9669149518013000e-01 7.2305107116699219e-01 <_> 0 -1 554 -1.1197339743375778e-02 2.1949790418148041e-01 5.0987982749938965e-01 <_> 0 -1 555 4.4069071300327778e-03 4.7784018516540527e-01 6.7709028720855713e-01 <_> 0 -1 556 -6.3665293157100677e-02 1.9363629817962646e-01 5.0810241699218750e-01 <_> 0 -1 557 -9.8081491887569427e-03 5.9990632534027100e-01 4.8103410005569458e-01 <_> 0 -1 558 -2.1717099007219076e-03 3.3383339643478394e-01 5.2354729175567627e-01 <_> 0 -1 559 -1.3315520249307156e-02 6.6170698404312134e-01 4.9192130565643311e-01 <_> 0 -1 560 2.5442079640924931e-03 4.4887441396713257e-01 6.0821849107742310e-01 <_> 0 -1 561 1.2037839740514755e-02 5.4093921184539795e-01 3.2924321293830872e-01 <_> 0 -1 562 -2.0701050758361816e-02 6.8191200494766235e-01 4.5949959754943848e-01 <_> 0 -1 563 2.7608279138803482e-02 4.6307921409606934e-01 5.7672828435897827e-01 <_> 0 -1 564 1.2370620388537645e-03 5.1653790473937988e-01 2.6350161433219910e-01 <_> 0 -1 565 -3.7669338285923004e-02 2.5363931059837341e-01 5.2789801359176636e-01 <_> 0 -1 566 -1.8057259730994701e-03 3.9851561188697815e-01 5.5175000429153442e-01 <_> 111 5.4620071411132812e+01 <_> 0 -1 567 4.4299028813838959e-03 2.8910180926322937e-01 6.3352262973785400e-01 <_> 0 -1 568 -2.3813319858163595e-03 6.2117892503738403e-01 3.4774878621101379e-01 <_> 0 -1 569 2.2915711160749197e-03 2.2544120252132416e-01 5.5821180343627930e-01 <_> 0 -1 570 9.9457940086722374e-04 3.7117108702659607e-01 5.9300708770751953e-01 <_> 0 -1 571 7.7164667891338468e-04 5.6517201662063599e-01 3.3479958772659302e-01 <_> 0 -1 572 -1.1386410333216190e-03 3.0691260099411011e-01 5.5086308717727661e-01 <_> 0 -1 573 -1.6403039626311511e-04 5.7628279924392700e-01 3.6990478634834290e-01 <_> 0 -1 574 2.9793529392918572e-05 2.6442441344261169e-01 5.4379111528396606e-01 <_> 0 -1 575 8.5774902254343033e-03 5.0511389970779419e-01 1.7957249283790588e-01 <_> 0 -1 576 -2.6032689493149519e-04 5.8269691467285156e-01 4.4468268752098083e-01 <_> 0 -1 577 -6.1404630541801453e-03 3.1138521432876587e-01 5.3469717502593994e-01 <_> 0 -1 578 -2.3086950182914734e-02 3.2779461145401001e-01 5.3311979770660400e-01 <_> 0 -1 579 -1.4243650250136852e-02 7.3817098140716553e-01 4.5880630612373352e-01 <_> 0 -1 580 1.9487129524350166e-02 5.2566307783126831e-01 2.2744719684123993e-01 <_> 0 -1 581 -9.6681108698248863e-04 5.5112308263778687e-01 3.8150069117546082e-01 <_> 0 -1 582 3.1474709976464510e-03 5.4256367683410645e-01 2.5437268614768982e-01 <_> 0 -1 583 -1.8026070029009134e-04 5.3801918029785156e-01 3.4063041210174561e-01 <_> 0 -1 584 -6.0266260989010334e-03 3.0358019471168518e-01 5.4205721616744995e-01 <_> 0 -1 585 4.4462960795499384e-04 3.9909970760345459e-01 5.6601101160049438e-01 <_> 0 -1 586 2.2609760053455830e-03 5.5628067255020142e-01 3.9406880736351013e-01 <_> 0 -1 587 5.1133058965206146e-02 4.6096539497375488e-01 7.1185618638992310e-01 <_> 0 -1 588 -1.7786309123039246e-02 2.3161660134792328e-01 5.3221440315246582e-01 <_> 0 -1 589 -4.9679628573358059e-03 2.3307719826698303e-01 5.1220291852951050e-01 <_> 0 -1 590 2.0667689386755228e-03 4.6574440598487854e-01 6.4554882049560547e-01 <_> 0 -1 591 7.4413768015801907e-03 5.1543921232223511e-01 2.3616339266300201e-01 <_> 0 -1 592 -3.6277279723435640e-03 6.2197732925415039e-01 4.4766610860824585e-01 <_> 0 -1 593 -5.3530759178102016e-03 1.8373550474643707e-01 5.1022082567214966e-01 <_> 0 -1 594 1.4530919492244720e-01 5.1459872722625732e-01 1.5359309315681458e-01 <_> 0 -1 595 2.4394490756094456e-03 5.3436601161956787e-01 3.6246618628501892e-01 <_> 0 -1 596 -3.1283390708267689e-03 6.2150079011917114e-01 4.8455920815467834e-01 <_> 0 -1 597 1.7940260004252195e-03 4.2992618680000305e-01 5.8241981267929077e-01 <_> 0 -1 598 3.6253821104764938e-02 5.2603340148925781e-01 1.4394679665565491e-01 <_> 0 -1 599 -5.1746722310781479e-03 3.5065388679504395e-01 5.2870452404022217e-01 <_> 0 -1 600 6.5383297624066472e-04 4.8096409440040588e-01 6.1220401525497437e-01 <_> 0 -1 601 -2.6480229571461678e-02 1.1393620073795319e-01 5.0455862283706665e-01 <_> 0 -1 602 -3.0440660193562508e-03 6.3520950078964233e-01 4.7947341203689575e-01 <_> 0 -1 603 3.6993520334362984e-03 5.1311182975769043e-01 2.4985109269618988e-01 <_> 0 -1 604 -3.6762931267730892e-04 5.4213947057723999e-01 3.7095320224761963e-01 <_> 0 -1 605 -4.1382260620594025e-02 1.8949599564075470e-01 5.0816917419433594e-01 <_> 0 -1 606 -1.0532729793339968e-03 6.4543670415878296e-01 4.7836089134216309e-01 <_> 0 -1 607 -2.1648600231856108e-03 6.2150311470031738e-01 4.4998261332511902e-01 <_> 0 -1 608 -5.6747748749330640e-04 3.7126109004020691e-01 5.4193347692489624e-01 <_> 0 -1 609 1.7375840246677399e-01 5.0236439704895020e-01 1.2157420068979263e-01 <_> 0 -1 610 -2.9049699660390615e-03 3.2402679324150085e-01 5.3818839788436890e-01 <_> 0 -1 611 1.2299539521336555e-03 4.1655078530311584e-01 5.7034862041473389e-01 <_> 0 -1 612 -5.4329237900674343e-04 3.8540428876876831e-01 5.5475491285324097e-01 <_> 0 -1 613 -8.3297258242964745e-03 2.2044940292835236e-01 5.0970828533172607e-01 <_> 0 -1 614 -1.0417630255687982e-04 5.6070661544799805e-01 4.3030360341072083e-01 <_> 0 -1 615 3.1204700469970703e-02 4.6216571331024170e-01 6.9820040464401245e-01 <_> 0 -1 616 7.8943502157926559e-03 5.2695941925048828e-01 2.2690680623054504e-01 <_> 0 -1 617 -4.3645310215651989e-03 6.3592231273651123e-01 4.5379561185836792e-01 <_> 0 -1 618 7.6793059706687927e-03 5.2747678756713867e-01 2.7404838800430298e-01 <_> 0 -1 619 -2.5431139394640923e-02 2.0385199785232544e-01 5.0717329978942871e-01 <_> 0 -1 620 8.2000601105391979e-04 4.5874550938606262e-01 6.1198681592941284e-01 <_> 0 -1 621 2.9284600168466568e-03 5.0712740421295166e-01 2.0282049477100372e-01 <_> 0 -1 622 4.5256470912136137e-05 4.8121041059494019e-01 5.4308217763900757e-01 <_> 0 -1 623 1.3158309739083052e-03 4.6258139610290527e-01 6.7793232202529907e-01 <_> 0 -1 624 1.5870389761403203e-03 5.3862917423248291e-01 3.4314650297164917e-01 <_> 0 -1 625 -2.1539660170674324e-02 2.5942500680685043e-02 5.0032228231430054e-01 <_> 0 -1 626 1.4334480278193951e-02 5.2028447389602661e-01 1.5906329452991486e-01 <_> 0 -1 627 -8.3881383761763573e-03 7.2824811935424805e-01 4.6480441093444824e-01 <_> 0 -1 628 9.1906841844320297e-03 5.5623567104339600e-01 3.9231911301612854e-01 <_> 0 -1 629 -5.8453059755265713e-03 6.8033927679061890e-01 4.6291279792785645e-01 <_> 0 -1 630 -5.4707799106836319e-02 2.5616711378097534e-01 5.2061259746551514e-01 <_> 0 -1 631 9.1142775490880013e-03 5.1896202564239502e-01 3.0538770556449890e-01 <_> 0 -1 632 -1.5575000084936619e-02 1.2950749695301056e-01 5.1690948009490967e-01 <_> 0 -1 633 -1.2050600344082341e-04 5.7350981235504150e-01 4.2308250069618225e-01 <_> 0 -1 634 1.2273970060050488e-03 5.2898782491683960e-01 4.0797919034957886e-01 <_> 0 -1 635 -1.2186600361019373e-03 6.5756398439407349e-01 4.5744091272354126e-01 <_> 0 -1 636 -3.3256649039685726e-03 3.6280471086502075e-01 5.1950198411941528e-01 <_> 0 -1 637 -1.3288309797644615e-02 1.2842659652233124e-01 5.0434887409210205e-01 <_> 0 -1 638 -3.3839771058410406e-03 6.2922400236129761e-01 4.7575059533119202e-01 <_> 0 -1 639 -2.1954220533370972e-01 1.4877319335937500e-01 5.0650137662887573e-01 <_> 0 -1 640 4.9111708067357540e-03 4.2561021447181702e-01 5.6658387184143066e-01 <_> 0 -1 641 -1.8744950648397207e-04 4.0041440725326538e-01 5.5868571996688843e-01 <_> 0 -1 642 -5.2178641781210899e-03 6.0091161727905273e-01 4.8127061128616333e-01 <_> 0 -1 643 -1.1111519997939467e-03 3.5149338841438293e-01 5.2870899438858032e-01 <_> 0 -1 644 4.4036400504410267e-03 4.6422758698463440e-01 5.9240859746932983e-01 <_> 0 -1 645 1.2299499660730362e-01 5.0255292654037476e-01 6.9152481853961945e-02 <_> 0 -1 646 -1.2313510291278362e-02 5.8845919370651245e-01 4.9340128898620605e-01 <_> 0 -1 647 4.1471039876341820e-03 4.3722391128540039e-01 5.8934777975082397e-01 <_> 0 -1 648 -3.5502649843692780e-03 4.3275511264801025e-01 5.3962701559066772e-01 <_> 0 -1 649 -1.9224269315600395e-02 1.9131340086460114e-01 5.0683307647705078e-01 <_> 0 -1 650 1.4395059552043676e-03 5.3081780672073364e-01 4.2435330152511597e-01 <_> 0 -1 651 -6.7751999013125896e-03 6.3653957843780518e-01 4.5400860905647278e-01 <_> 0 -1 652 7.0119630545377731e-03 5.1898342370986938e-01 3.0261999368667603e-01 <_> 0 -1 653 5.4014651104807854e-03 5.1050621271133423e-01 2.5576829910278320e-01 <_> 0 -1 654 9.0274988906458020e-04 4.6969148516654968e-01 5.8618277311325073e-01 <_> 0 -1 655 1.1474450118839741e-02 5.0536459684371948e-01 1.5271779894828796e-01 <_> 0 -1 656 -6.7023430019617081e-03 6.5089809894561768e-01 4.8906040191650391e-01 <_> 0 -1 657 -2.0462959073483944e-03 6.2418168783187866e-01 4.5146000385284424e-01 <_> 0 -1 658 -9.9951568990945816e-03 3.4327811002731323e-01 5.4009538888931274e-01 <_> 0 -1 659 -3.5700708627700806e-02 1.8780590593814850e-01 5.0740778446197510e-01 <_> 0 -1 660 4.5584561303257942e-04 3.8052770495414734e-01 5.4025697708129883e-01 <_> 0 -1 661 -5.4260600358247757e-02 6.8437147140502930e-01 4.5950970053672791e-01 <_> 0 -1 662 6.0600461438298225e-03 5.5029052495956421e-01 4.5005279779434204e-01 <_> 0 -1 663 -6.4791832119226456e-03 3.3688580989837646e-01 5.3107571601867676e-01 <_> 0 -1 664 -1.4939469983801246e-03 6.4876401424407959e-01 4.7561758756637573e-01 <_> 0 -1 665 1.4610530342906713e-05 4.0345790982246399e-01 5.4510641098022461e-01 <_> 0 -1 666 -7.2321938350796700e-03 6.3868737220764160e-01 4.8247399926185608e-01 <_> 0 -1 667 -4.0645818226039410e-03 2.9864218831062317e-01 5.1573359966278076e-01 <_> 0 -1 668 3.0463080853223801e-02 5.0221997499465942e-01 7.1599560976028442e-01 <_> 0 -1 669 -8.0544911324977875e-03 6.4924520254135132e-01 4.6192750334739685e-01 <_> 0 -1 670 3.9505138993263245e-02 5.1505708694458008e-01 2.4506139755249023e-01 <_> 0 -1 671 8.4530208259820938e-03 4.5736691355705261e-01 6.3940370082855225e-01 <_> 0 -1 672 -1.1688120430335402e-03 3.8655120134353638e-01 5.4836612939834595e-01 <_> 0 -1 673 2.8070670086890459e-03 5.1285791397094727e-01 2.7014800906181335e-01 <_> 0 -1 674 4.7365209320560098e-04 4.0515819191932678e-01 5.3874611854553223e-01 <_> 0 -1 675 1.1741080321371555e-02 5.2959501743316650e-01 3.7194138765335083e-01 <_> 0 -1 676 3.1833238899707794e-03 4.7894069552421570e-01 6.8951261043548584e-01 <_> 0 -1 677 7.0241501089185476e-04 5.3844892978668213e-01 3.9180809259414673e-01 <_> 102 5.0169731140136719e+01 <_> 0 -1 678 1.7059929668903351e-02 3.9485278725624084e-01 7.1425348520278931e-01 <_> 0 -1 679 2.1840840578079224e-02 3.3703160285949707e-01 6.0900169610977173e-01 <_> 0 -1 680 2.4520049919374287e-04 3.5005760192871094e-01 5.9879022836685181e-01 <_> 0 -1 681 8.3272606134414673e-03 3.2675281167030334e-01 5.6972408294677734e-01 <_> 0 -1 682 5.7148298947140574e-04 3.0445998907089233e-01 5.5316567420959473e-01 <_> 0 -1 683 6.7373987985774875e-04 3.6500120162963867e-01 5.6726312637329102e-01 <_> 0 -1 684 3.4681590477703139e-05 3.3135411143302917e-01 5.3887271881103516e-01 <_> 0 -1 685 -5.8563398197293282e-03 2.6979428529739380e-01 5.4987788200378418e-01 <_> 0 -1 686 8.5102273151278496e-03 5.2693581581115723e-01 2.7628791332244873e-01 <_> 0 -1 687 -6.9817207753658295e-02 2.9096031188964844e-01 5.2592468261718750e-01 <_> 0 -1 688 -8.6113670840859413e-04 5.8925771713256836e-01 4.0736979246139526e-01 <_> 0 -1 689 9.7149249631911516e-04 3.5235640406608582e-01 5.4158622026443481e-01 <_> 0 -1 690 -1.4727490452060010e-05 5.4230177402496338e-01 3.5031560063362122e-01 <_> 0 -1 691 4.8420291393995285e-02 5.1939457654953003e-01 3.4111958742141724e-01 <_> 0 -1 692 1.3257140526548028e-03 3.1577691435813904e-01 5.3353762626647949e-01 <_> 0 -1 693 1.4922149603080470e-05 4.4512999057769775e-01 5.5365538597106934e-01 <_> 0 -1 694 -2.7173398993909359e-03 3.0317419767379761e-01 5.2480888366699219e-01 <_> 0 -1 695 2.9219500720500946e-03 4.7814530134201050e-01 6.6060417890548706e-01 <_> 0 -1 696 -1.9804988987743855e-03 3.1863081455230713e-01 5.2876251935958862e-01 <_> 0 -1 697 -4.0012109093368053e-03 6.4135968685150146e-01 4.7499281167984009e-01 <_> 0 -1 698 -4.3491991236805916e-03 1.5074980258941650e-01 5.0989967584609985e-01 <_> 0 -1 699 1.3490889687091112e-03 4.3161588907241821e-01 5.8811670541763306e-01 <_> 0 -1 700 1.8597070127725601e-02 4.7355538606643677e-01 9.0897941589355469e-01 <_> 0 -1 701 -1.8562379991635680e-03 3.5531890392303467e-01 5.5778372287750244e-01 <_> 0 -1 702 2.2940430790185928e-03 4.5000949501991272e-01 6.5808779001235962e-01 <_> 0 -1 703 2.9982850537635386e-04 5.6292420625686646e-01 3.9758789539337158e-01 <_> 0 -1 704 3.5455459728837013e-03 5.3815472126007080e-01 3.6054858565330505e-01 <_> 0 -1 705 9.6104722470045090e-03 5.2559971809387207e-01 1.7967459559440613e-01 <_> 0 -1 706 -6.2783220782876015e-03 2.2728569805622101e-01 5.1140302419662476e-01 <_> 0 -1 707 3.4598479978740215e-03 4.6263080835342407e-01 6.6082191467285156e-01 <_> 0 -1 708 -1.3112019514665008e-03 6.3175398111343384e-01 4.4368579983711243e-01 <_> 0 -1 709 2.6876179035753012e-03 5.4211097955703735e-01 4.0540221333503723e-01 <_> 0 -1 710 3.9118169806897640e-03 5.3584778308868408e-01 3.2734549045562744e-01 <_> 0 -1 711 -1.4206450432538986e-02 7.7935767173767090e-01 4.9757811427116394e-01 <_> 0 -1 712 7.1705528534948826e-04 5.2973198890686035e-01 3.5609039664268494e-01 <_> 0 -1 713 1.6635019565001130e-03 4.6780940890312195e-01 5.8164817094802856e-01 <_> 0 -1 714 3.3686188980937004e-03 5.2767342329025269e-01 3.4464201331138611e-01 <_> 0 -1 715 1.2799530290067196e-02 4.8346799612045288e-01 7.4721592664718628e-01 <_> 0 -1 716 3.3901201095432043e-03 4.5118591189384460e-01 6.4017212390899658e-01 <_> 0 -1 717 4.7070779837667942e-03 5.3356587886810303e-01 3.5552209615707397e-01 <_> 0 -1 718 1.4819339849054813e-03 4.2507070302963257e-01 5.7727241516113281e-01 <_> 0 -1 719 -6.9995759986341000e-03 3.0033200979232788e-01 5.2929002046585083e-01 <_> 0 -1 720 1.5939010307192802e-02 5.0673192739486694e-01 1.6755819320678711e-01 <_> 0 -1 721 7.6377349905669689e-03 4.7950699925422668e-01 7.0856010913848877e-01 <_> 0 -1 722 6.7334040068089962e-03 5.1331132650375366e-01 2.1624700725078583e-01 <_> 0 -1 723 -1.2858809903264046e-02 1.9388419389724731e-01 5.2513718605041504e-01 <_> 0 -1 724 -6.2270800117403269e-04 5.6865382194519043e-01 4.1978681087493896e-01 <_> 0 -1 725 -5.2651681471616030e-04 4.2241689562797546e-01 5.4296958446502686e-01 <_> 0 -1 726 1.1075099930167198e-02 5.1137751340866089e-01 2.5145179033279419e-01 <_> 0 -1 727 -3.6728251725435257e-02 7.1946620941162109e-01 4.8496189713478088e-01 <_> 0 -1 728 -2.8207109426148236e-04 3.8402619957923889e-01 5.3944462537765503e-01 <_> 0 -1 729 -2.7489690110087395e-03 5.9370887279510498e-01 4.5691820979118347e-01 <_> 0 -1 730 1.0047519579529762e-02 5.1385760307312012e-01 2.8022980690002441e-01 <_> 0 -1 731 -8.1497840583324432e-03 6.0900372266769409e-01 4.6361210942268372e-01 <_> 0 -1 732 -6.8833888508379459e-03 3.4586110711097717e-01 5.2546602487564087e-01 <_> 0 -1 733 -1.4039360394235700e-05 5.6931042671203613e-01 4.0820831060409546e-01 <_> 0 -1 734 1.5498419525101781e-03 4.3505370616912842e-01 5.8065170049667358e-01 <_> 0 -1 735 -6.7841499112546444e-03 1.4688730239868164e-01 5.1827752590179443e-01 <_> 0 -1 736 2.1705629478674382e-04 5.2935242652893066e-01 3.4561741352081299e-01 <_> 0 -1 737 3.1198898795992136e-04 4.6524509787559509e-01 5.9424138069152832e-01 <_> 0 -1 738 5.4507530294358730e-03 4.6535089612007141e-01 7.0248460769653320e-01 <_> 0 -1 739 -2.5818689027801156e-04 5.4972952604293823e-01 3.7689670920372009e-01 <_> 0 -1 740 -1.7442539334297180e-02 3.9190879464149475e-01 5.4574978351593018e-01 <_> 0 -1 741 -4.5343529433012009e-02 1.6313570737838745e-01 5.1549088954925537e-01 <_> 0 -1 742 1.9190689781680703e-03 5.1458978652954102e-01 2.7918958663940430e-01 <_> 0 -1 743 -6.0177869163453579e-03 6.5176361799240112e-01 4.7563329339027405e-01 <_> 0 -1 744 -4.0720738470554352e-03 5.5146527290344238e-01 4.0926858782768250e-01 <_> 0 -1 745 3.9855059003457427e-04 3.1652408838272095e-01 5.2855509519577026e-01 <_> 0 -1 746 -6.5418570302426815e-03 6.8533778190612793e-01 4.6528089046478271e-01 <_> 0 -1 747 3.4845089539885521e-03 5.4845881462097168e-01 4.5027598738670349e-01 <_> 0 -1 748 -1.3696780428290367e-02 6.3957798480987549e-01 4.5725551247596741e-01 <_> 0 -1 749 -1.7347140237689018e-02 2.7510729432106018e-01 5.1816147565841675e-01 <_> 0 -1 750 -4.0885428898036480e-03 3.3256360888481140e-01 5.1949840784072876e-01 <_> 0 -1 751 -9.4687901437282562e-03 5.9422808885574341e-01 4.8518198728561401e-01 <_> 0 -1 752 1.7084840219467878e-03 4.1671109199523926e-01 5.5198061466217041e-01 <_> 0 -1 753 9.4809094443917274e-03 5.4338949918746948e-01 4.2085149884223938e-01 <_> 0 -1 754 -4.7389650717377663e-03 6.4071899652481079e-01 4.5606550574302673e-01 <_> 0 -1 755 6.5761050209403038e-03 5.2145552635192871e-01 2.2582270205020905e-01 <_> 0 -1 756 -2.1690549328923225e-03 3.1515279412269592e-01 5.1567047834396362e-01 <_> 0 -1 757 1.4660170301795006e-02 4.8708370327949524e-01 6.6899412870407104e-01 <_> 0 -1 758 1.7231999663636088e-04 3.5697489976882935e-01 5.2510780096054077e-01 <_> 0 -1 759 -2.1803760901093483e-02 8.8259208202362061e-01 4.9663299322128296e-01 <_> 0 -1 760 -9.4736106693744659e-02 1.4461620151996613e-01 5.0611138343811035e-01 <_> 0 -1 761 5.5825551971793175e-03 5.3964787721633911e-01 4.2380660772323608e-01 <_> 0 -1 762 1.9517090404406190e-03 4.1704109311103821e-01 5.4977869987487793e-01 <_> 0 -1 763 1.2149900197982788e-02 4.6983671188354492e-01 5.6642740964889526e-01 <_> 0 -1 764 -7.5169620104134083e-03 6.2677729129791260e-01 4.4631358981132507e-01 <_> 0 -1 765 -7.1667909622192383e-02 3.0970111489295959e-01 5.2210032939910889e-01 <_> 0 -1 766 -8.8292419910430908e-02 8.1123888492584229e-02 5.0063651800155640e-01 <_> 0 -1 767 3.1063079833984375e-02 5.1555037498474121e-01 1.2822559475898743e-01 <_> 0 -1 768 4.6621840447187424e-02 4.6997779607772827e-01 7.3639607429504395e-01 <_> 0 -1 769 -1.2189489789307117e-02 3.9205300807952881e-01 5.5189967155456543e-01 <_> 0 -1 770 1.3016110286116600e-02 5.2606582641601562e-01 3.6851361393928528e-01 <_> 0 -1 771 -3.4952899441123009e-03 6.3392949104309082e-01 4.7162809967994690e-01 <_> 0 -1 772 -4.4015039748046547e-05 5.3330272436141968e-01 3.7761849164962769e-01 <_> 0 -1 773 -1.0966490209102631e-01 1.7653420567512512e-01 5.1983469724655151e-01 <_> 0 -1 774 -9.0279558207839727e-04 5.3241598606109619e-01 3.8389080762863159e-01 <_> 0 -1 775 7.1126641705632210e-04 4.6479299664497375e-01 5.7552242279052734e-01 <_> 0 -1 776 -3.1250279862433672e-03 3.2367089390754700e-01 5.1667708158493042e-01 <_> 0 -1 777 2.4144679773598909e-03 4.7874391078948975e-01 6.4597177505493164e-01 <_> 0 -1 778 4.4391240226104856e-04 4.4093081355094910e-01 6.0102558135986328e-01 <_> 0 -1 779 -2.2611189342569560e-04 4.0381139516830444e-01 5.4932558536529541e-01 <_> 135 6.6669120788574219e+01 <_> 0 -1 780 -4.6901289373636246e-02 6.6001719236373901e-01 3.7438011169433594e-01 <_> 0 -1 781 -1.4568349579349160e-03 5.7839912176132202e-01 3.4377971291542053e-01 <_> 0 -1 782 5.5598369799554348e-03 3.6222669482231140e-01 5.9082162380218506e-01 <_> 0 -1 783 7.3170487303286791e-04 5.5004191398620605e-01 2.8735581040382385e-01 <_> 0 -1 784 1.3318009441718459e-03 2.6731699705123901e-01 5.4310190677642822e-01 <_> 0 -1 785 2.4347059661522508e-04 3.8550278544425964e-01 5.7413887977600098e-01 <_> 0 -1 786 -3.0512469820678234e-03 5.5032098293304443e-01 3.4628450870513916e-01 <_> 0 -1 787 -6.8657199153676629e-04 3.2912218570709229e-01 5.4295092821121216e-01 <_> 0 -1 788 1.4668200165033340e-03 3.5883820056915283e-01 5.3518110513687134e-01 <_> 0 -1 789 3.2021870720200241e-04 4.2968419194221497e-01 5.7002341747283936e-01 <_> 0 -1 790 7.4122188379988074e-04 5.2821648120880127e-01 3.3668708801269531e-01 <_> 0 -1 791 3.8330298848450184e-03 4.5595678687095642e-01 6.2573361396789551e-01 <_> 0 -1 792 -1.5456439927220345e-02 2.3501169681549072e-01 5.1294529438018799e-01 <_> 0 -1 793 2.6796779129654169e-03 5.3294152021408081e-01 4.1550621390342712e-01 <_> 0 -1 794 2.8296569362282753e-03 4.2730879783630371e-01 5.8045381307601929e-01 <_> 0 -1 795 -3.9444249123334885e-03 2.9126119613647461e-01 5.2026861906051636e-01 <_> 0 -1 796 2.7179559692740440e-03 5.3076881170272827e-01 3.5856771469116211e-01 <_> 0 -1 797 5.9077627956867218e-03 4.7037750482559204e-01 5.9415858983993530e-01 <_> 0 -1 798 -4.2240349575877190e-03 2.1415670216083527e-01 5.0887960195541382e-01 <_> 0 -1 799 4.0725888684391975e-03 4.7664138674736023e-01 6.8410611152648926e-01 <_> 0 -1 800 1.0149530135095119e-02 5.3607988357543945e-01 3.7484970688819885e-01 <_> 0 -1 801 -1.8864999583456665e-04 5.7201302051544189e-01 3.8538050651550293e-01 <_> 0 -1 802 -4.8864358104765415e-03 3.6931228637695312e-01 5.3409588336944580e-01 <_> 0 -1 803 2.6158479973673820e-02 4.9623748660087585e-01 6.0599899291992188e-01 <_> 0 -1 804 4.8560759751126170e-04 4.4389459490776062e-01 6.0124689340591431e-01 <_> 0 -1 805 1.1268709786236286e-02 5.2442502975463867e-01 1.8403880298137665e-01 <_> 0 -1 806 -2.8114619199186563e-03 6.0602837800979614e-01 4.4098970293998718e-01 <_> 0 -1 807 -5.6112729944288731e-03 3.8911709189414978e-01 5.5892372131347656e-01 <_> 0 -1 808 8.5680093616247177e-03 5.0693458318710327e-01 2.0626190304756165e-01 <_> 0 -1 809 -3.8172779022715986e-04 5.8822017908096313e-01 4.1926109790802002e-01 <_> 0 -1 810 -1.7680290329735726e-04 5.5336058139801025e-01 4.0033689141273499e-01 <_> 0 -1 811 6.5112537704408169e-03 3.3101469278335571e-01 5.4441910982131958e-01 <_> 0 -1 812 -6.5948683186434209e-05 5.4338318109512329e-01 3.9449059963226318e-01 <_> 0 -1 813 6.9939051754772663e-03 5.6003582477569580e-01 4.1927140951156616e-01 <_> 0 -1 814 -4.6744439750909805e-03 6.6854667663574219e-01 4.6049609780311584e-01 <_> 0 -1 815 1.1589850299060345e-02 5.3571212291717529e-01 2.9268300533294678e-01 <_> 0 -1 816 1.3007840141654015e-02 4.6798178553581238e-01 7.3074632883071899e-01 <_> 0 -1 817 -1.1008579749614000e-03 3.9375010132789612e-01 5.4150652885437012e-01 <_> 0 -1 818 6.0472649056464434e-04 4.2423760890960693e-01 5.6040412187576294e-01 <_> 0 -1 819 -1.4494840055704117e-02 3.6312100291252136e-01 5.2931827306747437e-01 <_> 0 -1 820 -5.3056948818266392e-03 6.8604522943496704e-01 4.6218210458755493e-01 <_> 0 -1 821 -8.1829127157106996e-04 3.9440968632698059e-01 5.4204392433166504e-01 <_> 0 -1 822 -1.9077520817518234e-02 1.9626219570636749e-01 5.0378918647766113e-01 <_> 0 -1 823 3.5549470339901745e-04 4.0862590074539185e-01 5.6139731407165527e-01 <_> 0 -1 824 1.9679730758070946e-03 4.4891211390495300e-01 5.9261232614517212e-01 <_> 0 -1 825 6.9189141504466534e-03 5.3359258174896240e-01 3.7283858656883240e-01 <_> 0 -1 826 2.9872779268771410e-03 5.1113212108612061e-01 2.9756438732147217e-01 <_> 0 -1 827 -6.2264618463814259e-03 5.5414897203445435e-01 4.8245379328727722e-01 <_> 0 -1 828 1.3353300280869007e-02 4.5864239335060120e-01 6.4147979021072388e-01 <_> 0 -1 829 3.3505238592624664e-02 5.3924250602722168e-01 3.4299948811531067e-01 <_> 0 -1 830 -2.5294460356235504e-03 1.7037139832973480e-01 5.0133150815963745e-01 <_> 0 -1 831 -1.2801629491150379e-03 5.3054618835449219e-01 4.6974050998687744e-01 <_> 0 -1 832 7.0687388069927692e-03 4.6155458688735962e-01 6.4365047216415405e-01 <_> 0 -1 833 9.6880499040707946e-04 4.8335990309715271e-01 6.0438942909240723e-01 <_> 0 -1 834 3.9647659286856651e-03 5.1876372098922729e-01 3.2318168878555298e-01 <_> 0 -1 835 -2.2057730704545975e-02 4.0792569518089294e-01 5.2009809017181396e-01 <_> 0 -1 836 -6.6906312713399529e-04 5.3316092491149902e-01 3.8156008720397949e-01 <_> 0 -1 837 -6.7009328631684184e-04 5.6554222106933594e-01 4.6889019012451172e-01 <_> 0 -1 838 7.4284552829340100e-04 4.5343810319900513e-01 6.2874001264572144e-01 <_> 0 -1 839 2.2227810695767403e-03 5.3506332635879517e-01 3.3036559820175171e-01 <_> 0 -1 840 -5.4130521602928638e-03 1.1136870086193085e-01 5.0054347515106201e-01 <_> 0 -1 841 -1.4520040167553816e-05 5.6287378072738647e-01 4.3251338601112366e-01 <_> 0 -1 842 2.3369169502984732e-04 4.1658350825309753e-01 5.4477912187576294e-01 <_> 0 -1 843 4.2894547805190086e-03 4.8603910207748413e-01 6.7786490917205811e-01 <_> 0 -1 844 5.9103150852024555e-03 5.2623051404953003e-01 3.6121138930320740e-01 <_> 0 -1 845 1.2900539673864841e-02 5.3193771839141846e-01 3.2502880692481995e-01 <_> 0 -1 846 4.6982979401946068e-03 4.6182450652122498e-01 6.6659259796142578e-01 <_> 0 -1 847 1.0439859703183174e-02 5.5056709051132202e-01 3.8836041092872620e-01 <_> 0 -1 848 3.0443191062659025e-03 4.6978530287742615e-01 7.3018449544906616e-01 <_> 0 -1 849 -6.1593751888722181e-04 3.8308390974998474e-01 5.4649841785430908e-01 <_> 0 -1 850 -3.4247159492224455e-03 2.5663000345230103e-01 5.0895309448242188e-01 <_> 0 -1 851 -9.3538565561175346e-03 6.4699661731719971e-01 4.9407958984375000e-01 <_> 0 -1 852 5.2338998764753342e-02 4.7459828853607178e-01 7.8787708282470703e-01 <_> 0 -1 853 3.5765620414167643e-03 5.3066647052764893e-01 2.7484980225563049e-01 <_> 0 -1 854 7.1555317845195532e-04 5.4131257534027100e-01 4.0419089794158936e-01 <_> 0 -1 855 -1.0516679845750332e-02 6.1585122346878052e-01 4.8152831196784973e-01 <_> 0 -1 856 7.7347927726805210e-03 4.6958059072494507e-01 7.0289808511734009e-01 <_> 0 -1 857 -4.3226778507232666e-03 2.8495660424232483e-01 5.3046840429306030e-01 <_> 0 -1 858 -2.5534399319440126e-03 7.0569849014282227e-01 4.6888920664787292e-01 <_> 0 -1 859 1.0268510231981054e-04 3.9029321074485779e-01 5.5734640359878540e-01 <_> 0 -1 860 7.1395188570022583e-06 3.6842319369316101e-01 5.2639877796173096e-01 <_> 0 -1 861 -1.6711989883333445e-03 3.8491758704185486e-01 5.3872710466384888e-01 <_> 0 -1 862 4.9260449595749378e-03 4.7297719120979309e-01 7.4472510814666748e-01 <_> 0 -1 863 4.3908702209591866e-03 4.8091810941696167e-01 5.5919218063354492e-01 <_> 0 -1 864 -1.7793629318475723e-02 6.9036781787872314e-01 4.6769270300865173e-01 <_> 0 -1 865 2.0469669252634048e-03 5.3706902265548706e-01 3.3081620931625366e-01 <_> 0 -1 866 2.9891489073634148e-02 5.1398652791976929e-01 3.3090591430664062e-01 <_> 0 -1 867 1.5494900289922953e-03 4.6602371335029602e-01 6.0783427953720093e-01 <_> 0 -1 868 1.4956969534978271e-03 4.4048359990119934e-01 5.8639198541641235e-01 <_> 0 -1 869 9.5885928021743894e-04 5.4359710216522217e-01 4.2085230350494385e-01 <_> 0 -1 870 4.9643701640889049e-04 5.3705781698226929e-01 4.0006220340728760e-01 <_> 0 -1 871 -2.7280810754746199e-03 5.6594127416610718e-01 4.2596429586410522e-01 <_> 0 -1 872 2.3026480339467525e-03 5.1616579294204712e-01 3.3508691191673279e-01 <_> 0 -1 873 2.5151631236076355e-01 4.8696619272232056e-01 7.1473097801208496e-01 <_> 0 -1 874 -4.6328022144734859e-03 2.7274489402770996e-01 5.0837898254394531e-01 <_> 0 -1 875 -4.0434490889310837e-02 6.8514388799667358e-01 5.0217670202255249e-01 <_> 0 -1 876 1.4972220014897175e-05 4.2844650149345398e-01 5.5225551128387451e-01 <_> 0 -1 877 -2.4050309730228037e-04 4.2261189222335815e-01 5.3900748491287231e-01 <_> 0 -1 878 2.3657839745283127e-02 4.7446319460868835e-01 7.5043660402297974e-01 <_> 0 -1 879 -8.1449104472994804e-03 4.2450588941574097e-01 5.5383628606796265e-01 <_> 0 -1 880 -3.6992130335420370e-03 5.9523570537567139e-01 4.5297130942344666e-01 <_> 0 -1 881 -6.7718601785600185e-03 4.1377940773963928e-01 5.4733997583389282e-01 <_> 0 -1 882 4.2669530957937241e-03 4.4841149449348450e-01 5.7979941368103027e-01 <_> 0 -1 883 1.7791989957913756e-03 5.6248587369918823e-01 4.4324448704719543e-01 <_> 0 -1 884 1.6774770338088274e-03 4.6377518773078918e-01 6.3642418384552002e-01 <_> 0 -1 885 1.1732629500329494e-03 4.5445030927658081e-01 5.9144157171249390e-01 <_> 0 -1 886 8.6998171173036098e-04 5.3347527980804443e-01 3.8859179615974426e-01 <_> 0 -1 887 7.6378340600058436e-04 5.3985852003097534e-01 3.7449419498443604e-01 <_> 0 -1 888 1.5684569370932877e-04 4.3178731203079224e-01 5.6146162748336792e-01 <_> 0 -1 889 -2.1511370316147804e-02 1.7859250307083130e-01 5.1855427026748657e-01 <_> 0 -1 890 1.3081369979772717e-04 4.3424990773200989e-01 5.6828498840332031e-01 <_> 0 -1 891 2.1992040798068047e-02 5.1617169380187988e-01 2.3793940246105194e-01 <_> 0 -1 892 -8.0136500764638186e-04 5.9867632389068604e-01 4.4664269685745239e-01 <_> 0 -1 893 -8.2736099138855934e-03 4.1082179546356201e-01 5.2510571479797363e-01 <_> 0 -1 894 3.6831789184361696e-03 5.1738142967224121e-01 3.3975180983543396e-01 <_> 0 -1 895 -7.9525681212544441e-03 6.8889832496643066e-01 4.8459240794181824e-01 <_> 0 -1 896 1.5382299898192286e-03 5.1785671710968018e-01 3.4541139006614685e-01 <_> 0 -1 897 -1.4043530449271202e-02 1.6784210503101349e-01 5.1886677742004395e-01 <_> 0 -1 898 1.4315890148282051e-03 4.3682569265365601e-01 5.6557738780975342e-01 <_> 0 -1 899 -3.4014228731393814e-02 7.8022962808609009e-01 4.9592170119285583e-01 <_> 0 -1 900 -1.2027299962937832e-02 1.5851010382175446e-01 5.0322318077087402e-01 <_> 0 -1 901 1.3316619396209717e-01 5.1633048057556152e-01 2.7551281452178955e-01 <_> 0 -1 902 -1.5221949433907866e-03 3.7283179163932800e-01 5.2145522832870483e-01 <_> 0 -1 903 -9.3929271679371595e-04 5.8383792638778687e-01 4.5111650228500366e-01 <_> 0 -1 904 2.7719739824533463e-02 4.7282868623733521e-01 7.3315447568893433e-01 <_> 0 -1 905 3.1030150130391121e-03 5.3022021055221558e-01 4.1015630960464478e-01 <_> 0 -1 906 7.7861219644546509e-02 4.9983340501785278e-01 1.2729619443416595e-01 <_> 0 -1 907 -1.5854939818382263e-02 5.0833359360694885e-02 5.1656562089920044e-01 <_> 0 -1 908 -4.9725300632417202e-03 6.7981338500976562e-01 4.6842318773269653e-01 <_> 0 -1 909 -9.7676506265997887e-04 6.0107719898223877e-01 4.7889319062232971e-01 <_> 0 -1 910 -2.4647710379213095e-03 3.3933979272842407e-01 5.2205038070678711e-01 <_> 0 -1 911 -6.7937700077891350e-03 4.3651369214057922e-01 5.2396631240844727e-01 <_> 0 -1 912 3.2608021050691605e-02 5.0527238845825195e-01 2.4252149462699890e-01 <_> 0 -1 913 -5.8514421107247472e-04 5.7339739799499512e-01 4.7585740685462952e-01 <_> 0 -1 914 -2.9632600024342537e-02 3.8922891020774841e-01 5.2635979652404785e-01 <_> 137 6.7698921203613281e+01 <_> 0 -1 915 4.6550851315259933e-02 3.2769501209259033e-01 6.2405228614807129e-01 <_> 0 -1 916 7.9537127166986465e-03 4.2564851045608521e-01 6.9429391622543335e-01 <_> 0 -1 917 6.8221561377868056e-04 3.7114870548248291e-01 5.9007328748703003e-01 <_> 0 -1 918 -1.9348249770700932e-04 2.0411339402198792e-01 5.3005450963973999e-01 <_> 0 -1 919 -2.6710508973337710e-04 5.4161262512207031e-01 3.1031790375709534e-01 <_> 0 -1 920 2.7818060480058193e-03 5.2778327465057373e-01 3.4670698642730713e-01 <_> 0 -1 921 -4.6779078547842801e-04 5.3082311153411865e-01 3.2944920659065247e-01 <_> 0 -1 922 -3.0335160772665404e-05 5.7738727331161499e-01 3.8520970940589905e-01 <_> 0 -1 923 7.8038009814918041e-04 4.3174389004707336e-01 6.1500579118728638e-01 <_> 0 -1 924 -4.2553851380944252e-03 2.9339039325714111e-01 5.3242927789688110e-01 <_> 0 -1 925 -2.4735610350035131e-04 5.4688447713851929e-01 3.8430300354957581e-01 <_> 0 -1 926 -1.4724259381182492e-04 4.2815428972244263e-01 5.7555872201919556e-01 <_> 0 -1 927 1.1864770203828812e-03 3.7473011016845703e-01 5.4714661836624146e-01 <_> 0 -1 928 2.3936580400913954e-03 4.5377838611602783e-01 6.1115288734436035e-01 <_> 0 -1 929 -1.5390539774671197e-03 2.9713419079780579e-01 5.1895380020141602e-01 <_> 0 -1 930 -7.1968790143728256e-03 6.6990667581558228e-01 4.7264769673347473e-01 <_> 0 -1 931 -4.1499789222143590e-04 3.3849540352821350e-01 5.2603179216384888e-01 <_> 0 -1 932 4.4359830208122730e-03 5.3991222381591797e-01 3.9201408624649048e-01 <_> 0 -1 933 2.6606200262904167e-03 4.4825780391693115e-01 6.1196178197860718e-01 <_> 0 -1 934 -1.5287200221791863e-03 3.7112379074096680e-01 5.3402662277221680e-01 <_> 0 -1 935 -4.7397250309586525e-03 6.0310882329940796e-01 4.4551450014114380e-01 <_> 0 -1 936 -1.4829129911959171e-02 2.8387540578842163e-01 5.3418618440628052e-01 <_> 0 -1 937 9.2275557108223438e-04 5.2095472812652588e-01 3.3616539835929871e-01 <_> 0 -1 938 8.3529807627201080e-02 5.1199698448181152e-01 8.1164449453353882e-02 <_> 0 -1 939 -7.5633148662745953e-04 3.3171200752258301e-01 5.1898312568664551e-01 <_> 0 -1 940 9.8403859883546829e-03 5.2475982904434204e-01 2.3349590599536896e-01 <_> 0 -1 941 -1.5953830443322659e-03 5.7500940561294556e-01 4.2956221103668213e-01 <_> 0 -1 942 3.4766020689858124e-05 4.3424451351165771e-01 5.5640292167663574e-01 <_> 0 -1 943 2.9862910509109497e-02 4.5791471004486084e-01 6.5791881084442139e-01 <_> 0 -1 944 1.1325590312480927e-02 5.2743119001388550e-01 3.6738881468772888e-01 <_> 0 -1 945 -8.7828645482659340e-03 7.1003687381744385e-01 4.6421670913696289e-01 <_> 0 -1 946 4.3639959767460823e-03 5.2792161703109741e-01 2.7058771252632141e-01 <_> 0 -1 947 4.1804728098213673e-03 5.0725251436233521e-01 2.4490830302238464e-01 <_> 0 -1 948 -4.5668511302210391e-04 4.2831051349639893e-01 5.5486911535263062e-01 <_> 0 -1 949 -3.7140368949621916e-03 5.5193877220153809e-01 4.1036531329154968e-01 <_> 0 -1 950 -2.5304289534687996e-02 6.8670022487640381e-01 4.8698890209197998e-01 <_> 0 -1 951 -3.4454080741852522e-04 3.7288740277290344e-01 5.2876931428909302e-01 <_> 0 -1 952 -8.3935231668874621e-04 6.0601520538330078e-01 4.6160620450973511e-01 <_> 0 -1 953 1.7280049622058868e-02 5.0496357679367065e-01 1.8198239803314209e-01 <_> 0 -1 954 -6.3595077954232693e-03 1.6312399506568909e-01 5.2327787876129150e-01 <_> 0 -1 955 1.0298109846189618e-03 4.4632780551910400e-01 6.1765491962432861e-01 <_> 0 -1 956 1.0117109632119536e-03 5.4733848571777344e-01 4.3006989359855652e-01 <_> 0 -1 957 -1.0308800265192986e-02 1.1669850349426270e-01 5.0008672475814819e-01 <_> 0 -1 958 5.4682018235325813e-03 4.7692871093750000e-01 6.7192137241363525e-01 <_> 0 -1 959 -9.1696460731327534e-04 3.4710898995399475e-01 5.1781648397445679e-01 <_> 0 -1 960 2.3922820109874010e-03 4.7852361202239990e-01 6.2163108587265015e-01 <_> 0 -1 961 -7.5573818758130074e-03 5.8147960901260376e-01 4.4100850820541382e-01 <_> 0 -1 962 -7.7024032361805439e-04 3.8780000805854797e-01 5.4657220840454102e-01 <_> 0 -1 963 -8.7125990539789200e-03 1.6600510478019714e-01 4.9958360195159912e-01 <_> 0 -1 964 -1.0306320153176785e-02 4.0933910012245178e-01 5.2742338180541992e-01 <_> 0 -1 965 -2.0940979011356831e-03 6.2061947584152222e-01 4.5722800493240356e-01 <_> 0 -1 966 6.8099051713943481e-03 5.5677592754364014e-01 4.1556000709533691e-01 <_> 0 -1 967 -1.0746059706434608e-03 5.6389278173446655e-01 4.3530249595642090e-01 <_> 0 -1 968 2.1550289820879698e-03 4.8262658715248108e-01 6.7497581243515015e-01 <_> 0 -1 969 3.1742319464683533e-02 5.0483798980712891e-01 1.8832489848136902e-01 <_> 0 -1 970 -7.8382723033428192e-02 2.3695489764213562e-01 5.2601581811904907e-01 <_> 0 -1 971 5.7415119372308254e-03 5.0488287210464478e-01 2.7764698863029480e-01 <_> 0 -1 972 -2.9014600440859795e-03 6.2386047840118408e-01 4.6933171153068542e-01 <_> 0 -1 973 -2.6427931152284145e-03 3.3141419291496277e-01 5.1697772741317749e-01 <_> 0 -1 974 -1.0949660092592239e-01 2.3800450563430786e-01 5.1834410429000854e-01 <_> 0 -1 975 7.4075913289561868e-05 4.0696358680725098e-01 5.3621500730514526e-01 <_> 0 -1 976 -5.0593802006915212e-04 5.5067062377929688e-01 4.3745940923690796e-01 <_> 0 -1 977 -8.2131777890026569e-04 5.5257099866867065e-01 4.2093759775161743e-01 <_> 0 -1 978 -6.0276539443293586e-05 5.4554748535156250e-01 4.7482660412788391e-01 <_> 0 -1 979 6.8065142259001732e-03 5.1579958200454712e-01 3.4245771169662476e-01 <_> 0 -1 980 1.7202789895236492e-03 5.0132077932357788e-01 6.3312637805938721e-01 <_> 0 -1 981 -1.3016929733566940e-04 5.5397182703018188e-01 4.2268699407577515e-01 <_> 0 -1 982 -4.8016388900578022e-03 4.4250950217247009e-01 5.4307800531387329e-01 <_> 0 -1 983 -2.5399310979992151e-03 7.1457821130752563e-01 4.6976050734519958e-01 <_> 0 -1 984 -1.4278929447755218e-03 4.0704450011253357e-01 5.3996050357818604e-01 <_> 0 -1 985 -2.5142550468444824e-02 7.8846907615661621e-01 4.7473520040512085e-01 <_> 0 -1 986 -3.8899609353393316e-03 4.2961919307708740e-01 5.5771100521087646e-01 <_> 0 -1 987 4.3947459198534489e-03 4.6931621432304382e-01 7.0239442586898804e-01 <_> 0 -1 988 2.4678420275449753e-02 5.2423220872879028e-01 3.8125100731849670e-01 <_> 0 -1 989 3.8047678768634796e-02 5.0117397308349609e-01 1.6878280043601990e-01 <_> 0 -1 990 7.9424865543842316e-03 4.8285821080207825e-01 6.3695681095123291e-01 <_> 0 -1 991 -1.5110049862414598e-03 5.9064859151840210e-01 4.4876679778099060e-01 <_> 0 -1 992 6.4201741479337215e-03 5.2410978078842163e-01 2.9905700683593750e-01 <_> 0 -1 993 -2.9802159406244755e-03 3.0414658784866333e-01 5.0784897804260254e-01 <_> 0 -1 994 -7.4580078944563866e-04 4.1281390190124512e-01 5.2568262815475464e-01 <_> 0 -1 995 -1.0470950044691563e-02 5.8083951473236084e-01 4.4942960143089294e-01 <_> 0 -1 996 9.3369204550981522e-03 5.2465528249740601e-01 2.6589488983154297e-01 <_> 0 -1 997 2.7936900034546852e-02 4.6749550104141235e-01 7.0872569084167480e-01 <_> 0 -1 998 7.4277678504586220e-03 5.4094868898391724e-01 3.7585180997848511e-01 <_> 0 -1 999 -2.3584509268403053e-02 3.7586399912834167e-01 5.2385509014129639e-01 <_> 0 -1 1000 1.1452640173956752e-03 4.3295788764953613e-01 5.8042472600936890e-01 <_> 0 -1 1001 -4.3468660442158580e-04 5.2806180715560913e-01 3.8730698823928833e-01 <_> 0 -1 1002 1.0648540221154690e-02 4.9021130800247192e-01 5.6812518835067749e-01 <_> 0 -1 1003 -3.9418050437234342e-04 5.5708801746368408e-01 4.3182510137557983e-01 <_> 0 -1 1004 -1.3270479394122958e-04 5.6584399938583374e-01 4.3435549736022949e-01 <_> 0 -1 1005 -2.0125510636717081e-03 6.0567390918731689e-01 4.5375239849090576e-01 <_> 0 -1 1006 2.4854319635778666e-03 5.3904771804809570e-01 4.1380101442337036e-01 <_> 0 -1 1007 1.8237880431115627e-03 4.3548288941383362e-01 5.7171887159347534e-01 <_> 0 -1 1008 -1.6656659543514252e-02 3.0109131336212158e-01 5.2161228656768799e-01 <_> 0 -1 1009 8.0349558265879750e-04 5.3001511096954346e-01 3.8183969259262085e-01 <_> 0 -1 1010 3.4170378930866718e-03 5.3280287981033325e-01 4.2414000630378723e-01 <_> 0 -1 1011 -3.6222729249857366e-04 5.4917281866073608e-01 4.1869771480560303e-01 <_> 0 -1 1012 -1.1630020290613174e-01 1.4407220482826233e-01 5.2264511585235596e-01 <_> 0 -1 1013 -1.4695010147988796e-02 7.7477252483367920e-01 4.7157171368598938e-01 <_> 0 -1 1014 2.1972130052745342e-03 5.3554338216781616e-01 3.3156448602676392e-01 <_> 0 -1 1015 -4.6965209185145795e-04 5.7672351598739624e-01 4.4581368565559387e-01 <_> 0 -1 1016 6.5144998952746391e-03 5.2156740427017212e-01 3.6478888988494873e-01 <_> 0 -1 1017 2.1300060674548149e-02 4.9942049384117126e-01 1.5679509937763214e-01 <_> 0 -1 1018 3.1881409231573343e-03 4.7422000765800476e-01 6.2872701883316040e-01 <_> 0 -1 1019 9.0019777417182922e-04 5.3479540348052979e-01 3.9437520503997803e-01 <_> 0 -1 1020 -5.1772277802228928e-03 6.7271918058395386e-01 5.0131380558013916e-01 <_> 0 -1 1021 -4.3764649890363216e-03 3.1066751480102539e-01 5.1287931203842163e-01 <_> 0 -1 1022 2.6299960445612669e-03 4.8863101005554199e-01 5.7552158832550049e-01 <_> 0 -1 1023 -2.0458688959479332e-03 6.0257941484451294e-01 4.5580768585205078e-01 <_> 0 -1 1024 6.9482706487178802e-02 5.2407479286193848e-01 2.1852590143680573e-01 <_> 0 -1 1025 2.4048939347267151e-02 5.0118672847747803e-01 2.0906220376491547e-01 <_> 0 -1 1026 3.1095340382307768e-03 4.8667120933532715e-01 7.1085482835769653e-01 <_> 0 -1 1027 -1.2503260513767600e-03 3.4078910946846008e-01 5.1561951637268066e-01 <_> 0 -1 1028 -1.0281190043315291e-03 5.5755722522735596e-01 4.4394320249557495e-01 <_> 0 -1 1029 -8.8893622159957886e-03 6.4020007848739624e-01 4.6204420924186707e-01 <_> 0 -1 1030 -6.1094801640138030e-04 3.7664419412612915e-01 5.4488998651504517e-01 <_> 0 -1 1031 -5.7686357758939266e-03 3.3186489343643188e-01 5.1336771249771118e-01 <_> 0 -1 1032 1.8506490159779787e-03 4.9035701155662537e-01 6.4069348573684692e-01 <_> 0 -1 1033 -9.9799469113349915e-02 1.5360510349273682e-01 5.0155621767044067e-01 <_> 0 -1 1034 -3.5128349065780640e-01 5.8823131024837494e-02 5.1743787527084351e-01 <_> 0 -1 1035 -4.5244570821523666e-02 6.9614887237548828e-01 4.6778729557991028e-01 <_> 0 -1 1036 7.1481578052043915e-02 5.1679861545562744e-01 1.0380929708480835e-01 <_> 0 -1 1037 2.1895780228078365e-03 4.2730781435966492e-01 5.5320608615875244e-01 <_> 0 -1 1038 -5.9242651332169771e-04 4.6389439702033997e-01 5.2763891220092773e-01 <_> 0 -1 1039 1.6788389766588807e-03 5.3016489744186401e-01 3.9320349693298340e-01 <_> 0 -1 1040 -2.2163488902151585e-03 5.6306940317153931e-01 4.7570338845252991e-01 <_> 0 -1 1041 1.1568699846975505e-04 4.3075358867645264e-01 5.5357027053833008e-01 <_> 0 -1 1042 -7.2017288766801357e-03 1.4448820054531097e-01 5.1930642127990723e-01 <_> 0 -1 1043 8.9081272017210722e-04 4.3844321370124817e-01 5.5936211347579956e-01 <_> 0 -1 1044 1.9605009583756328e-04 5.3404158353805542e-01 4.7059568762779236e-01 <_> 0 -1 1045 5.2022142335772514e-04 5.2138561010360718e-01 3.8100790977478027e-01 <_> 0 -1 1046 9.4588572392240167e-04 4.7694149613380432e-01 6.1307388544082642e-01 <_> 0 -1 1047 9.1698471806012094e-05 4.2450091242790222e-01 5.4293632507324219e-01 <_> 0 -1 1048 2.1833200007677078e-03 5.4577308893203735e-01 4.1910758614540100e-01 <_> 0 -1 1049 -8.6039671441540122e-04 5.7645887136459351e-01 4.4716599583625793e-01 <_> 0 -1 1050 -1.3236239552497864e-02 6.3728231191635132e-01 4.6950098872184753e-01 <_> 0 -1 1051 4.3376701069064438e-04 5.3178739547729492e-01 3.9458298683166504e-01 <_> 140 6.9229873657226562e+01 <_> 0 -1 1052 -2.4847149848937988e-02 6.5555167198181152e-01 3.8733118772506714e-01 <_> 0 -1 1053 6.1348611488938332e-03 3.7480720877647400e-01 5.9739977121353149e-01 <_> 0 -1 1054 6.4498498104512691e-03 5.4254919290542603e-01 2.5488111376762390e-01 <_> 0 -1 1055 6.3491211039945483e-04 2.4624420702457428e-01 5.3872537612915039e-01 <_> 0 -1 1056 1.4023890253156424e-03 5.5943220853805542e-01 3.5286578536033630e-01 <_> 0 -1 1057 3.0044000595808029e-04 3.9585039019584656e-01 5.7659381628036499e-01 <_> 0 -1 1058 1.0042409849120304e-04 3.6989969015121460e-01 5.5349981784820557e-01 <_> 0 -1 1059 -5.0841490738093853e-03 3.7110909819602966e-01 5.5478000640869141e-01 <_> 0 -1 1060 -1.9537260755896568e-02 7.4927550554275513e-01 4.5792970061302185e-01 <_> 0 -1 1061 -7.4532740654831287e-06 5.6497871875762939e-01 3.9040699601173401e-01 <_> 0 -1 1062 -3.6079459823668003e-03 3.3810880780220032e-01 5.2678012847900391e-01 <_> 0 -1 1063 2.0697501022368670e-03 5.5192911624908447e-01 3.7143889069557190e-01 <_> 0 -1 1064 -4.6463840408250690e-04 5.6082147359848022e-01 4.1135668754577637e-01 <_> 0 -1 1065 7.5490452582016587e-04 3.5592061281204224e-01 5.3293561935424805e-01 <_> 0 -1 1066 -9.8322238773107529e-04 5.4147958755493164e-01 3.7632051110267639e-01 <_> 0 -1 1067 -1.9940640777349472e-02 6.3479030132293701e-01 4.7052991390228271e-01 <_> 0 -1 1068 3.7680300883948803e-03 3.9134898781776428e-01 5.5637162923812866e-01 <_> 0 -1 1069 -9.4528505578637123e-03 2.5548928976058960e-01 5.2151167392730713e-01 <_> 0 -1 1070 2.9560849070549011e-03 5.1746791601181030e-01 3.0639201402664185e-01 <_> 0 -1 1071 9.1078737750649452e-03 5.3884482383728027e-01 2.8859630227088928e-01 <_> 0 -1 1072 1.8219229532405734e-03 4.3360430002212524e-01 5.8521968126296997e-01 <_> 0 -1 1073 1.4688739553093910e-02 5.2873617410659790e-01 2.8700059652328491e-01 <_> 0 -1 1074 -1.4387990348041058e-02 7.0194488763809204e-01 4.6473708748817444e-01 <_> 0 -1 1075 -1.8986649811267853e-02 2.9865521192550659e-01 5.2470117807388306e-01 <_> 0 -1 1076 1.1527639580890536e-03 4.3234738707542419e-01 5.9316617250442505e-01 <_> 0 -1 1077 1.0933670215308666e-02 5.2868640422821045e-01 3.1303191184997559e-01 <_> 0 -1 1078 -1.4932730235159397e-02 2.6584190130233765e-01 5.0840771198272705e-01 <_> 0 -1 1079 -2.9970539617352188e-04 5.4635268449783325e-01 3.7407240271568298e-01 <_> 0 -1 1080 4.1677621193230152e-03 4.7034969925880432e-01 7.4357217550277710e-01 <_> 0 -1 1081 -6.3905320130288601e-03 2.0692589879035950e-01 5.2805382013320923e-01 <_> 0 -1 1082 4.5029609464108944e-03 5.1826488971710205e-01 3.4835430979728699e-01 <_> 0 -1 1083 -9.2040365561842918e-03 6.8037772178649902e-01 4.9323600530624390e-01 <_> 0 -1 1084 8.1327259540557861e-02 5.0583988428115845e-01 2.2530519962310791e-01 <_> 0 -1 1085 -1.5079280734062195e-01 2.9634249210357666e-01 5.2646797895431519e-01 <_> 0 -1 1086 3.3179009333252907e-03 4.6554958820343018e-01 7.0729321241378784e-01 <_> 0 -1 1087 7.7402801252901554e-04 4.7803479433059692e-01 5.6682378053665161e-01 <_> 0 -1 1088 6.8199541419744492e-04 4.2869961261749268e-01 5.7221567630767822e-01 <_> 0 -1 1089 5.3671570494771004e-03 5.2993071079254150e-01 3.1146219372749329e-01 <_> 0 -1 1090 9.7018666565418243e-05 3.6746388673782349e-01 5.2694618701934814e-01 <_> 0 -1 1091 -1.2534089386463165e-01 2.3514920473098755e-01 5.2457910776138306e-01 <_> 0 -1 1092 -5.2516269497573376e-03 7.1159368753433228e-01 4.6937671303749084e-01 <_> 0 -1 1093 -7.8342109918594360e-03 4.4626510143280029e-01 5.4090857505798340e-01 <_> 0 -1 1094 -1.1310069821774960e-03 5.9456187486648560e-01 4.4176620244979858e-01 <_> 0 -1 1095 1.7601120052859187e-03 5.3532499074935913e-01 3.9734530448913574e-01 <_> 0 -1 1096 -8.1581249833106995e-04 3.7602680921554565e-01 5.2647268772125244e-01 <_> 0 -1 1097 -3.8687589112669230e-03 6.3099128007888794e-01 4.7498199343681335e-01 <_> 0 -1 1098 1.5207129763439298e-03 5.2301818132400513e-01 3.3612239360809326e-01 <_> 0 -1 1099 5.4586738348007202e-01 5.1671397686004639e-01 1.1726350337266922e-01 <_> 0 -1 1100 1.5650190412998199e-02 4.9794390797615051e-01 1.3932949304580688e-01 <_> 0 -1 1101 -1.1731860227882862e-02 7.1296507120132446e-01 4.9211961030960083e-01 <_> 0 -1 1102 -6.1765122227370739e-03 2.2881029546260834e-01 5.0497019290924072e-01 <_> 0 -1 1103 2.2457661107182503e-03 4.6324339509010315e-01 6.0487258434295654e-01 <_> 0 -1 1104 -5.1915869116783142e-03 6.4674210548400879e-01 4.6021929383277893e-01 <_> 0 -1 1105 -2.3827880620956421e-02 1.4820009469985962e-01 5.2260792255401611e-01 <_> 0 -1 1106 1.0284580057486892e-03 5.1354891061782837e-01 3.3759570121765137e-01 <_> 0 -1 1107 -1.0078850202262402e-02 2.7405610680580139e-01 5.3035670518875122e-01 <_> 0 -1 1108 2.6168930344283581e-03 5.3326708078384399e-01 3.9724540710449219e-01 <_> 0 -1 1109 5.4385367548093200e-04 5.3656041622161865e-01 4.0634119510650635e-01 <_> 0 -1 1110 5.3510512225329876e-03 4.6537590026855469e-01 6.8890458345413208e-01 <_> 0 -1 1111 -1.5274790348485112e-03 5.4495012760162354e-01 3.6247238516807556e-01 <_> 0 -1 1112 -8.0624416470527649e-02 1.6560870409011841e-01 5.0002872943878174e-01 <_> 0 -1 1113 2.2192029282450676e-02 5.1327311992645264e-01 2.0028080046176910e-01 <_> 0 -1 1114 7.3100631125271320e-03 4.6179479360580444e-01 6.3665360212326050e-01 <_> 0 -1 1115 -6.4063072204589844e-03 5.9162509441375732e-01 4.8678609728813171e-01 <_> 0 -1 1116 -7.6415040530264378e-04 3.8884091377258301e-01 5.3157979249954224e-01 <_> 0 -1 1117 7.6734489994123578e-04 4.1590648889541626e-01 5.6052798032760620e-01 <_> 0 -1 1118 6.1474501853808761e-04 3.0890220403671265e-01 5.1201480627059937e-01 <_> 0 -1 1119 -5.0105270929634571e-03 3.9721998572349548e-01 5.2073061466217041e-01 <_> 0 -1 1120 -8.6909132078289986e-03 6.2574082612991333e-01 4.6085759997367859e-01 <_> 0 -1 1121 -1.6391459852457047e-02 2.0852099359035492e-01 5.2422660589218140e-01 <_> 0 -1 1122 4.0973909199237823e-04 5.2224272489547729e-01 3.7803208827972412e-01 <_> 0 -1 1123 -2.5242289993911982e-03 5.8039271831512451e-01 4.6118900179862976e-01 <_> 0 -1 1124 5.0945312250405550e-04 4.4012719392776489e-01 5.8460158109664917e-01 <_> 0 -1 1125 1.9656419754028320e-03 5.3223252296447754e-01 4.1845908761024475e-01 <_> 0 -1 1126 5.6298897834494710e-04 3.7418448925018311e-01 5.2345657348632812e-01 <_> 0 -1 1127 -6.7946797935292125e-04 4.6310418844223022e-01 5.3564780950546265e-01 <_> 0 -1 1128 7.2856349870562553e-03 5.0446701049804688e-01 2.3775640130043030e-01 <_> 0 -1 1129 -1.7459489405155182e-02 7.2891211509704590e-01 5.0504350662231445e-01 <_> 0 -1 1130 -2.5421749800443649e-02 6.6671347618103027e-01 4.6781000494956970e-01 <_> 0 -1 1131 -1.5647639520466328e-03 4.3917590379714966e-01 5.3236269950866699e-01 <_> 0 -1 1132 1.1444360017776489e-02 4.3464401364326477e-01 5.6800121068954468e-01 <_> 0 -1 1133 -6.7352550104260445e-04 4.4771409034729004e-01 5.2968120574951172e-01 <_> 0 -1 1134 9.3194209039211273e-03 4.7402000427246094e-01 7.4626070261001587e-01 <_> 0 -1 1135 1.3328490604180843e-04 5.3650617599487305e-01 4.7521349787712097e-01 <_> 0 -1 1136 -7.8815799206495285e-03 1.7522190511226654e-01 5.0152552127838135e-01 <_> 0 -1 1137 -5.7985680177807808e-03 7.2712367773056030e-01 4.8962008953094482e-01 <_> 0 -1 1138 -3.8922499516047537e-04 4.0039089322090149e-01 5.3449410200119019e-01 <_> 0 -1 1139 -1.9288610201328993e-03 5.6056129932403564e-01 4.8039558529853821e-01 <_> 0 -1 1140 8.4214154630899429e-03 4.7532469034194946e-01 7.6236087083816528e-01 <_> 0 -1 1141 8.1655876711010933e-03 5.3932619094848633e-01 4.1916438937187195e-01 <_> 0 -1 1142 4.8280550981871784e-04 4.2408001422882080e-01 5.3998219966888428e-01 <_> 0 -1 1143 -2.7186630759388208e-03 4.2445999383926392e-01 5.4249238967895508e-01 <_> 0 -1 1144 -1.2507230043411255e-02 5.8958417177200317e-01 4.5504111051559448e-01 <_> 0 -1 1145 -2.4286519736051559e-02 2.6471349596977234e-01 5.1891797780990601e-01 <_> 0 -1 1146 -2.9676330741494894e-03 7.3476827144622803e-01 4.7497498989105225e-01 <_> 0 -1 1147 -1.2528999708592892e-02 2.7560499310493469e-01 5.1775997877120972e-01 <_> 0 -1 1148 -1.0104000102728605e-03 3.5105609893798828e-01 5.1447242498397827e-01 <_> 0 -1 1149 -2.1348530426621437e-03 5.6379258632659912e-01 4.6673199534416199e-01 <_> 0 -1 1150 1.9564259797334671e-02 4.6145731210708618e-01 6.1376398801803589e-01 <_> 0 -1 1151 -9.7146347165107727e-02 2.9983788728713989e-01 5.1935559511184692e-01 <_> 0 -1 1152 4.5014568604528904e-03 5.0778847932815552e-01 3.0457559227943420e-01 <_> 0 -1 1153 6.3706971704959869e-03 4.8610189557075500e-01 6.8875008821487427e-01 <_> 0 -1 1154 -9.0721528977155685e-03 1.6733959317207336e-01 5.0175631046295166e-01 <_> 0 -1 1155 -5.3537208586931229e-03 2.6927569508552551e-01 5.2426332235336304e-01 <_> 0 -1 1156 -1.0932840406894684e-02 7.1838641166687012e-01 4.7360289096832275e-01 <_> 0 -1 1157 8.2356072962284088e-03 5.2239668369293213e-01 2.3898629844188690e-01 <_> 0 -1 1158 -1.0038160253316164e-03 5.7193559408187866e-01 4.4339430332183838e-01 <_> 0 -1 1159 4.0859128348529339e-03 5.4728418588638306e-01 4.1488361358642578e-01 <_> 0 -1 1160 1.5485419332981110e-01 4.9738121032714844e-01 6.1061598360538483e-02 <_> 0 -1 1161 2.0897459762636572e-04 4.7091740369796753e-01 5.4238891601562500e-01 <_> 0 -1 1162 3.3316991175524890e-04 4.0896269679069519e-01 5.3009921312332153e-01 <_> 0 -1 1163 -1.0813400149345398e-02 6.1043697595596313e-01 4.9573341012001038e-01 <_> 0 -1 1164 4.5656010508537292e-02 5.0696891546249390e-01 2.8666600584983826e-01 <_> 0 -1 1165 1.2569549726322293e-03 4.8469170928001404e-01 6.3181710243225098e-01 <_> 0 -1 1166 -1.2015070021152496e-01 6.0526140034198761e-02 4.9809598922729492e-01 <_> 0 -1 1167 -1.0533799650147557e-04 5.3631097078323364e-01 4.7080421447753906e-01 <_> 0 -1 1168 -2.0703190565109253e-01 5.9660330414772034e-02 4.9790981411933899e-01 <_> 0 -1 1169 1.2909180077258497e-04 4.7129771113395691e-01 5.3779977560043335e-01 <_> 0 -1 1170 3.8818528992123902e-04 4.3635380268096924e-01 5.5341911315917969e-01 <_> 0 -1 1171 -2.9243610333651304e-03 5.8111858367919922e-01 4.8252159357070923e-01 <_> 0 -1 1172 8.3882332546636462e-04 5.3117001056671143e-01 4.0381389856338501e-01 <_> 0 -1 1173 -1.9061550265178084e-03 3.7707018852233887e-01 5.2600151300430298e-01 <_> 0 -1 1174 8.9514348655939102e-03 4.7661679983139038e-01 7.6821839809417725e-01 <_> 0 -1 1175 1.3083459809422493e-02 5.2644628286361694e-01 3.0622220039367676e-01 <_> 0 -1 1176 -2.1159330010414124e-01 6.7371982336044312e-01 4.6958100795745850e-01 <_> 0 -1 1177 3.1493250280618668e-03 5.6448352336883545e-01 4.3869531154632568e-01 <_> 0 -1 1178 3.9754100725986063e-04 4.5260611176490784e-01 5.8956301212310791e-01 <_> 0 -1 1179 -1.3814480043947697e-03 6.0705822706222534e-01 4.9424138665199280e-01 <_> 0 -1 1180 -5.8122188784182072e-04 5.9982132911682129e-01 4.5082521438598633e-01 <_> 0 -1 1181 -2.3905329871922731e-03 4.2055889964103699e-01 5.2238482236862183e-01 <_> 0 -1 1182 2.7268929407000542e-02 5.2064472436904907e-01 3.5633018612861633e-01 <_> 0 -1 1183 -3.7658358924090862e-03 3.1447041034698486e-01 5.2188140153884888e-01 <_> 0 -1 1184 -1.4903489500284195e-03 3.3801960945129395e-01 5.1244372129440308e-01 <_> 0 -1 1185 -1.7428230494260788e-02 5.8299607038497925e-01 4.9197259545326233e-01 <_> 0 -1 1186 -1.5278030186891556e-02 6.1631447076797485e-01 4.6178871393203735e-01 <_> 0 -1 1187 3.1995609402656555e-02 5.1663571596145630e-01 1.7127640545368195e-01 <_> 0 -1 1188 -3.8256710395216942e-03 3.4080120921134949e-01 5.1313877105712891e-01 <_> 0 -1 1189 -8.5186436772346497e-03 6.1055189371109009e-01 4.9979418516159058e-01 <_> 0 -1 1190 9.0641621500253677e-04 4.3272709846496582e-01 5.5823111534118652e-01 <_> 0 -1 1191 1.0344849899411201e-02 4.8556530475616455e-01 5.4524201154708862e-01 <_> 160 7.9249076843261719e+01 <_> 0 -1 1192 7.8981826081871986e-03 3.3325248956680298e-01 5.9464621543884277e-01 <_> 0 -1 1193 1.6170160379260778e-03 3.4906411170959473e-01 5.5778688192367554e-01 <_> 0 -1 1194 -5.5449741194024682e-04 5.5425661802291870e-01 3.2915300130844116e-01 <_> 0 -1 1195 1.5428980113938451e-03 3.6125791072845459e-01 5.5459791421890259e-01 <_> 0 -1 1196 -1.0329450014978647e-03 3.5301390290260315e-01 5.5761402845382690e-01 <_> 0 -1 1197 7.7698158565908670e-04 3.9167788624763489e-01 5.6453210115432739e-01 <_> 0 -1 1198 1.4320300519466400e-01 4.6674820780754089e-01 7.0236331224441528e-01 <_> 0 -1 1199 -7.3866490274667740e-03 3.0736848711967468e-01 5.2892577648162842e-01 <_> 0 -1 1200 -6.2936742324382067e-04 5.6221181154251099e-01 4.0370491147041321e-01 <_> 0 -1 1201 7.8893528552725911e-04 5.2676612138748169e-01 3.5578748583793640e-01 <_> 0 -1 1202 -1.2228050269186497e-02 6.6683208942413330e-01 4.6255499124526978e-01 <_> 0 -1 1203 3.5420239437371492e-03 5.5214381217956543e-01 3.8696730136871338e-01 <_> 0 -1 1204 -1.0585320414975286e-03 3.6286780238151550e-01 5.3209269046783447e-01 <_> 0 -1 1205 1.4935660146875307e-05 4.6324449777603149e-01 5.3633230924606323e-01 <_> 0 -1 1206 5.2537708543241024e-03 5.1322317123413086e-01 3.2657089829444885e-01 <_> 0 -1 1207 -8.2338023930788040e-03 6.6936898231506348e-01 4.7741401195526123e-01 <_> 0 -1 1208 2.1866810129722580e-05 4.0538620948791504e-01 5.4579311609268188e-01 <_> 0 -1 1209 -3.8150229956954718e-03 6.4549958705902100e-01 4.7931781411170959e-01 <_> 0 -1 1210 1.1105879675596952e-03 5.2704071998596191e-01 3.5296788811683655e-01 <_> 0 -1 1211 -5.7707689702510834e-03 3.8035470247268677e-01 5.3529578447341919e-01 <_> 0 -1 1212 -3.0158339068293571e-03 5.3394031524658203e-01 3.8871330022811890e-01 <_> 0 -1 1213 -8.5453689098358154e-04 3.5646161437034607e-01 5.2736037969589233e-01 <_> 0 -1 1214 1.1050510220229626e-02 4.6719071269035339e-01 6.8497377634048462e-01 <_> 0 -1 1215 4.2605839669704437e-02 5.1514732837677002e-01 7.0220090448856354e-02 <_> 0 -1 1216 -3.0781750101596117e-03 3.0416610836982727e-01 5.1526021957397461e-01 <_> 0 -1 1217 -5.4815728217363358e-03 6.4302957057952881e-01 4.8972299695014954e-01 <_> 0 -1 1218 3.1881860923022032e-03 5.3074932098388672e-01 3.8262099027633667e-01 <_> 0 -1 1219 3.5947180003859103e-04 4.6500471234321594e-01 5.4219049215316772e-01 <_> 0 -1 1220 -4.0705031715333462e-03 2.8496798872947693e-01 5.0791162252426147e-01 <_> 0 -1 1221 -1.4594170264899731e-02 2.9716458916664124e-01 5.1284617185592651e-01 <_> 0 -1 1222 -1.1947689927183092e-04 5.6310981512069702e-01 4.3430820107460022e-01 <_> 0 -1 1223 -6.9344649091362953e-04 4.4035780429840088e-01 5.3599590063095093e-01 <_> 0 -1 1224 1.4834799912932795e-05 3.4210088849067688e-01 5.1646977663040161e-01 <_> 0 -1 1225 9.0296985581517220e-03 4.6393430233001709e-01 6.1140751838684082e-01 <_> 0 -1 1226 -8.0640818923711777e-03 2.8201588988304138e-01 5.0754940509796143e-01 <_> 0 -1 1227 2.6062119752168655e-02 5.2089059352874756e-01 2.6887780427932739e-01 <_> 0 -1 1228 1.7314659431576729e-02 4.6637138724327087e-01 6.7385399341583252e-01 <_> 0 -1 1229 2.2666640579700470e-02 5.2093499898910522e-01 2.2127239406108856e-01 <_> 0 -1 1230 -2.1965929772704840e-03 6.0631012916564941e-01 4.5381900668144226e-01 <_> 0 -1 1231 -9.5282476395368576e-03 4.6352049708366394e-01 5.2474308013916016e-01 <_> 0 -1 1232 8.0943619832396507e-03 5.2894401550292969e-01 3.9138820767402649e-01 <_> 0 -1 1233 -7.2877332568168640e-02 7.7520018815994263e-01 4.9902349710464478e-01 <_> 0 -1 1234 -6.9009521976113319e-03 2.4280390143394470e-01 5.0480902194976807e-01 <_> 0 -1 1235 -1.1308239772915840e-02 5.7343649864196777e-01 4.8423761129379272e-01 <_> 0 -1 1236 5.9613201767206192e-02 5.0298362970352173e-01 2.5249770283699036e-01 <_> 0 -1 1237 -2.8624620754271746e-03 6.0730451345443726e-01 4.8984599113464355e-01 <_> 0 -1 1238 4.4781449250876904e-03 5.0152891874313354e-01 2.2203169763088226e-01 <_> 0 -1 1239 -1.7513240454718471e-03 6.6144287586212158e-01 4.9338689446449280e-01 <_> 0 -1 1240 4.0163420140743256e-02 5.1808780431747437e-01 3.7410449981689453e-01 <_> 0 -1 1241 3.4768949262797832e-04 4.7204169631004333e-01 5.8180320262908936e-01 <_> 0 -1 1242 2.6551650371402502e-03 3.8050109148025513e-01 5.2213358879089355e-01 <_> 0 -1 1243 -8.7706279009580612e-03 2.9441660642623901e-01 5.2312952280044556e-01 <_> 0 -1 1244 -5.5122091434895992e-03 7.3461771011352539e-01 4.7228169441223145e-01 <_> 0 -1 1245 6.8672042107209563e-04 5.4528760910034180e-01 4.2424130439758301e-01 <_> 0 -1 1246 5.6019669864326715e-04 4.3988621234893799e-01 5.6012850999832153e-01 <_> 0 -1 1247 2.4143769405782223e-03 4.7416868805885315e-01 6.1366218328475952e-01 <_> 0 -1 1248 -1.5680900542065501e-03 6.0445529222488403e-01 4.5164099335670471e-01 <_> 0 -1 1249 -3.6827491130679846e-03 2.4524590373039246e-01 5.2949821949005127e-01 <_> 0 -1 1250 -2.9409190756268799e-04 3.7328380346298218e-01 5.2514511346817017e-01 <_> 0 -1 1251 4.2847759323194623e-04 5.4988098144531250e-01 4.0655350685119629e-01 <_> 0 -1 1252 -4.8817070201039314e-03 2.1399089694023132e-01 4.9999570846557617e-01 <_> 0 -1 1253 2.7272020815871656e-04 4.6502870321273804e-01 5.8134287595748901e-01 <_> 0 -1 1254 2.0947199664078653e-04 4.3874868750572205e-01 5.5727928876876831e-01 <_> 0 -1 1255 4.8501189798116684e-02 5.2449727058410645e-01 3.2128891348838806e-01 <_> 0 -1 1256 -4.5166411437094212e-03 6.0568130016326904e-01 4.5458820462226868e-01 <_> 0 -1 1257 -1.2291680090129375e-02 2.0409290492534637e-01 5.1522141695022583e-01 <_> 0 -1 1258 4.8549679922871292e-04 5.2376049757003784e-01 3.7395030260086060e-01 <_> 0 -1 1259 3.0556049197912216e-02 4.9605339765548706e-01 5.9382462501525879e-01 <_> 0 -1 1260 -1.5105320198927075e-04 5.3513038158416748e-01 4.1452041268348694e-01 <_> 0 -1 1261 2.4937440175563097e-03 4.6933668851852417e-01 5.5149412155151367e-01 <_> 0 -1 1262 -1.2382130138576031e-02 6.7913967370986938e-01 4.6816679835319519e-01 <_> 0 -1 1263 -5.1333461888134480e-03 3.6087390780448914e-01 5.2291601896286011e-01 <_> 0 -1 1264 5.1919277757406235e-04 5.3000730276107788e-01 3.6336138844490051e-01 <_> 0 -1 1265 1.5060420334339142e-01 5.1573169231414795e-01 2.2117820382118225e-01 <_> 0 -1 1266 7.7144149690866470e-03 4.4104969501495361e-01 5.7766091823577881e-01 <_> 0 -1 1267 9.4443522393703461e-03 5.4018551111221313e-01 3.7566500902175903e-01 <_> 0 -1 1268 2.5006249779835343e-04 4.3682709336280823e-01 5.6073749065399170e-01 <_> 0 -1 1269 -3.3077150583267212e-03 4.2447990179061890e-01 5.5182307958602905e-01 <_> 0 -1 1270 7.4048910755664110e-04 4.4969621300697327e-01 5.9005767107009888e-01 <_> 0 -1 1271 4.4092051684856415e-02 5.2934932708740234e-01 3.1563550233840942e-01 <_> 0 -1 1272 3.3639909233897924e-03 4.4832968711853027e-01 5.8486622571945190e-01 <_> 0 -1 1273 -3.9760079234838486e-03 4.5595070719718933e-01 5.4836392402648926e-01 <_> 0 -1 1274 2.7716930489987135e-03 5.3417861461639404e-01 3.7924841046333313e-01 <_> 0 -1 1275 -2.4123019829858094e-04 5.6671887636184692e-01 4.5769730210304260e-01 <_> 0 -1 1276 4.9425667384639382e-04 4.4212448596954346e-01 5.6287872791290283e-01 <_> 0 -1 1277 -3.8876468897797167e-04 4.2883709073066711e-01 5.3910630941390991e-01 <_> 0 -1 1278 -5.0048898905515671e-02 6.8995130062103271e-01 4.7037428617477417e-01 <_> 0 -1 1279 -3.6635480821132660e-02 2.2177790105342865e-01 5.1918262243270874e-01 <_> 0 -1 1280 2.4273579474538565e-03 5.1362240314483643e-01 3.4973978996276855e-01 <_> 0 -1 1281 1.9558030180633068e-03 4.8261928558349609e-01 6.4083808660507202e-01 <_> 0 -1 1282 -1.7494610510766506e-03 3.9228358864784241e-01 5.2726852893829346e-01 <_> 0 -1 1283 1.3955079950392246e-02 5.0782018899917603e-01 8.4165048599243164e-01 <_> 0 -1 1284 -2.1896739781368524e-04 5.5204898118972778e-01 4.3142348527908325e-01 <_> 0 -1 1285 -1.5131309628486633e-03 3.9346051216125488e-01 5.3825712203979492e-01 <_> 0 -1 1286 -4.3622800149023533e-03 7.3706287145614624e-01 4.7364759445190430e-01 <_> 0 -1 1287 6.5160587430000305e-02 5.1592797040939331e-01 3.2815951108932495e-01 <_> 0 -1 1288 -2.3567399475723505e-03 3.6728268861770630e-01 5.1728862524032593e-01 <_> 0 -1 1289 1.5146659687161446e-02 5.0314939022064209e-01 6.6876041889190674e-01 <_> 0 -1 1290 -2.2850960493087769e-02 6.7675197124481201e-01 4.7095969319343567e-01 <_> 0 -1 1291 4.8867650330066681e-03 5.2579981088638306e-01 4.0598788857460022e-01 <_> 0 -1 1292 1.7619599821045995e-03 4.6962729096412659e-01 6.6882789134979248e-01 <_> 0 -1 1293 -1.2942519970238209e-03 4.3207129836082458e-01 5.3442817926406860e-01 <_> 0 -1 1294 1.0929949581623077e-02 4.9977061152458191e-01 1.6374860703945160e-01 <_> 0 -1 1295 2.9958489903947338e-05 4.2824178934097290e-01 5.6332242488861084e-01 <_> 0 -1 1296 -6.5884361974895000e-03 6.7721211910247803e-01 4.7005268931388855e-01 <_> 0 -1 1297 3.2527779694646597e-03 5.3133970499038696e-01 4.5361489057540894e-01 <_> 0 -1 1298 -4.0435739792883396e-03 5.6600618362426758e-01 4.4133889675140381e-01 <_> 0 -1 1299 -1.2523540062829852e-03 3.7319138646125793e-01 5.3564518690109253e-01 <_> 0 -1 1300 1.9246719602961093e-04 5.1899862289428711e-01 3.7388110160827637e-01 <_> 0 -1 1301 -3.8589671254158020e-02 2.9563739895820618e-01 5.1888108253479004e-01 <_> 0 -1 1302 1.5489870565943420e-04 4.3471351265907288e-01 5.5095332860946655e-01 <_> 0 -1 1303 -3.3763848245143890e-02 3.2303300499916077e-01 5.1954758167266846e-01 <_> 0 -1 1304 -8.2657067105174065e-03 5.9754890203475952e-01 4.5521140098571777e-01 <_> 0 -1 1305 1.4481440302915871e-05 4.7456780076026917e-01 5.4974269866943359e-01 <_> 0 -1 1306 1.4951299817766994e-05 4.3244731426239014e-01 5.4806441068649292e-01 <_> 0 -1 1307 -1.8741799518465996e-02 1.5800529718399048e-01 5.1785331964492798e-01 <_> 0 -1 1308 1.7572239739820361e-03 4.5176368951797485e-01 5.7737642526626587e-01 <_> 0 -1 1309 -3.1391119118779898e-03 4.1496479511260986e-01 5.4608422517776489e-01 <_> 0 -1 1310 6.6656779381446540e-05 4.0390908718109131e-01 5.2930849790573120e-01 <_> 0 -1 1311 6.7743421532213688e-03 4.7676518559455872e-01 6.1219561100006104e-01 <_> 0 -1 1312 -7.3868161998689175e-03 3.5862588882446289e-01 5.1872807741165161e-01 <_> 0 -1 1313 1.4040930196642876e-02 4.7121399641036987e-01 5.5761557817459106e-01 <_> 0 -1 1314 -5.5258329957723618e-03 2.6610270142555237e-01 5.0392812490463257e-01 <_> 0 -1 1315 3.8684239983558655e-01 5.1443397998809814e-01 2.5258991122245789e-01 <_> 0 -1 1316 1.1459240340627730e-04 4.2849949002265930e-01 5.4233711957931519e-01 <_> 0 -1 1317 -1.8467569723725319e-02 3.8858351111412048e-01 5.2130621671676636e-01 <_> 0 -1 1318 -4.5907011372037232e-04 5.4125630855560303e-01 4.2359098792076111e-01 <_> 0 -1 1319 1.2527540093287826e-03 4.8993051052093506e-01 6.6240912675857544e-01 <_> 0 -1 1320 1.4910609461367130e-03 5.2867782115936279e-01 4.0400519967079163e-01 <_> 0 -1 1321 -7.5435562757775187e-04 6.0329902172088623e-01 4.7951200604438782e-01 <_> 0 -1 1322 -6.9478838704526424e-03 4.0844011306762695e-01 5.3735041618347168e-01 <_> 0 -1 1323 2.8092920547351241e-04 4.8460629582405090e-01 5.7593822479248047e-01 <_> 0 -1 1324 9.6073717577382922e-04 5.1647412776947021e-01 3.5549798607826233e-01 <_> 0 -1 1325 -2.6883929967880249e-04 5.6775820255279541e-01 4.7317659854888916e-01 <_> 0 -1 1326 2.1599370520561934e-03 4.7314870357513428e-01 7.0705670118331909e-01 <_> 0 -1 1327 5.6235301308333874e-03 5.2402430772781372e-01 2.7817919850349426e-01 <_> 0 -1 1328 -5.0243991427123547e-03 2.8370139002799988e-01 5.0623041391372681e-01 <_> 0 -1 1329 -9.7611639648675919e-03 7.4007177352905273e-01 4.9345690011978149e-01 <_> 0 -1 1330 4.1515100747346878e-03 5.1191312074661255e-01 3.4070080518722534e-01 <_> 0 -1 1331 6.2465080991387367e-03 4.9237880110740662e-01 6.5790587663650513e-01 <_> 0 -1 1332 -7.0597478188574314e-03 2.4347110092639923e-01 5.0328421592712402e-01 <_> 0 -1 1333 -2.0587709732353687e-03 5.9003108739852905e-01 4.6950870752334595e-01 <_> 0 -1 1334 -2.4146060459315777e-03 3.6473178863525391e-01 5.1892018318176270e-01 <_> 0 -1 1335 -1.4817609917372465e-03 6.0349482297897339e-01 4.9401280283927917e-01 <_> 0 -1 1336 -6.3016400672495365e-03 5.8189898729324341e-01 4.5604279637336731e-01 <_> 0 -1 1337 3.4763428848236799e-03 5.2174758911132812e-01 3.4839931130409241e-01 <_> 0 -1 1338 -2.2250870242714882e-02 2.3607000708580017e-01 5.0320827960968018e-01 <_> 0 -1 1339 -3.0612550675868988e-02 6.4991867542266846e-01 4.9149191379547119e-01 <_> 0 -1 1340 1.3057479634881020e-02 4.4133231043815613e-01 5.6837642192840576e-01 <_> 0 -1 1341 -6.0095742810517550e-04 4.3597310781478882e-01 5.3334832191467285e-01 <_> 0 -1 1342 -4.1514250915497541e-04 5.5040627717971802e-01 4.3260601162910461e-01 <_> 0 -1 1343 -1.3776290230453014e-02 4.0641129016876221e-01 5.2015489339828491e-01 <_> 0 -1 1344 -3.2296508550643921e-02 4.7351971268653870e-02 4.9771949648857117e-01 <_> 0 -1 1345 5.3556978702545166e-02 4.8817330598831177e-01 6.6669392585754395e-01 <_> 0 -1 1346 8.1889545544981956e-03 5.4000371694564819e-01 4.2408201098442078e-01 <_> 0 -1 1347 2.1055320394225419e-04 4.8020479083061218e-01 5.5638527870178223e-01 <_> 0 -1 1348 -2.4382730480283499e-03 7.3877930641174316e-01 4.7736850380897522e-01 <_> 0 -1 1349 3.2835570164024830e-03 5.2885460853576660e-01 3.1712919473648071e-01 <_> 0 -1 1350 2.3729570675641298e-03 4.7508129477500916e-01 7.0601707696914673e-01 <_> 0 -1 1351 -1.4541699783876538e-03 3.8117301464080811e-01 5.3307390213012695e-01 <_> 177 8.7696029663085938e+01 <_> 0 -1 1352 5.5755238980054855e-02 4.0191569924354553e-01 6.8060368299484253e-01 <_> 0 -1 1353 2.4730248842388391e-03 3.3511489629745483e-01 5.9657198190689087e-01 <_> 0 -1 1354 -3.5031698644161224e-04 5.5577081441879272e-01 3.4822869300842285e-01 <_> 0 -1 1355 5.4167630150914192e-04 4.2608588933944702e-01 5.6933808326721191e-01 <_> 0 -1 1356 7.7193678589537740e-04 3.4942400455474854e-01 5.4336887598037720e-01 <_> 0 -1 1357 -1.5999219613149762e-03 4.0284991264343262e-01 5.4843592643737793e-01 <_> 0 -1 1358 -1.1832080053864047e-04 3.8069018721580505e-01 5.4254651069641113e-01 <_> 0 -1 1359 3.2909031142480671e-04 2.6201000809669495e-01 5.4295217990875244e-01 <_> 0 -1 1360 2.9518108931370080e-04 3.7997689843177795e-01 5.3992640972137451e-01 <_> 0 -1 1361 9.0466710389591753e-05 4.4336450099945068e-01 5.4402261972427368e-01 <_> 0 -1 1362 1.5007190086180344e-05 3.7196549773216248e-01 5.4091197252273560e-01 <_> 0 -1 1363 1.3935610651969910e-01 5.5253958702087402e-01 4.4790428876876831e-01 <_> 0 -1 1364 1.6461990308016539e-03 4.2645010352134705e-01 5.7721698284149170e-01 <_> 0 -1 1365 4.9984431825578213e-04 4.3595260381698608e-01 5.6858712434768677e-01 <_> 0 -1 1366 -1.0971280280500650e-03 3.3901369571685791e-01 5.2054089307785034e-01 <_> 0 -1 1367 6.6919892560690641e-04 4.5574560761451721e-01 5.9806597232818604e-01 <_> 0 -1 1368 8.6471042595803738e-04 5.1348412036895752e-01 2.9440331459045410e-01 <_> 0 -1 1369 -2.7182599296793342e-04 3.9065781235694885e-01 5.3771811723709106e-01 <_> 0 -1 1370 3.0249499104684219e-05 3.6796098947525024e-01 5.2256888151168823e-01 <_> 0 -1 1371 -8.5225896909832954e-03 7.2931021451950073e-01 4.8923650383949280e-01 <_> 0 -1 1372 1.6705560265108943e-03 4.3453249335289001e-01 5.6961381435394287e-01 <_> 0 -1 1373 -7.1433838456869125e-03 2.5912800431251526e-01 5.2256238460540771e-01 <_> 0 -1 1374 -1.6319369897246361e-02 6.9222790002822876e-01 4.6515759825706482e-01 <_> 0 -1 1375 4.8034260980784893e-03 5.3522628545761108e-01 3.2863029837608337e-01 <_> 0 -1 1376 -7.5421929359436035e-03 2.0405440032482147e-01 5.0345462560653687e-01 <_> 0 -1 1377 -1.4363110065460205e-02 6.8048888444900513e-01 4.8890590667724609e-01 <_> 0 -1 1378 8.9063588529825211e-04 5.3106957674026489e-01 3.8954809308052063e-01 <_> 0 -1 1379 -4.4060191139578819e-03 5.7415628433227539e-01 4.3724268674850464e-01 <_> 0 -1 1380 -1.8862540309783071e-04 2.8317859768867493e-01 5.0982052087783813e-01 <_> 0 -1 1381 -3.7979281041771173e-03 3.3725079894065857e-01 5.2465802431106567e-01 <_> 0 -1 1382 1.4627049677073956e-04 5.3066742420196533e-01 3.9117100834846497e-01 <_> 0 -1 1383 -4.9164638767251745e-05 5.4624962806701660e-01 3.9427208900451660e-01 <_> 0 -1 1384 -3.3582501113414764e-02 2.1578240394592285e-01 5.0482118129730225e-01 <_> 0 -1 1385 -3.5339309833943844e-03 6.4653122425079346e-01 4.8726969957351685e-01 <_> 0 -1 1386 5.0144111737608910e-03 4.6176680922508240e-01 6.2480747699737549e-01 <_> 0 -1 1387 1.8817370757460594e-02 5.2206891775131226e-01 2.0000520348548889e-01 <_> 0 -1 1388 -1.3434339780360460e-03 4.0145379304885864e-01 5.3016197681427002e-01 <_> 0 -1 1389 1.7557960236445069e-03 4.7940391302108765e-01 5.6531697511672974e-01 <_> 0 -1 1390 -9.5637463033199310e-02 2.0341950654983521e-01 5.0067067146301270e-01 <_> 0 -1 1391 -2.2241229191422462e-02 7.6724731922149658e-01 5.0463402271270752e-01 <_> 0 -1 1392 -1.5575819648802280e-02 7.4903422594070435e-01 4.7558510303497314e-01 <_> 0 -1 1393 5.3599118255078793e-03 5.3653037548065186e-01 4.0046709775924683e-01 <_> 0 -1 1394 -2.1763499826192856e-02 7.4015498161315918e-02 4.9641749262809753e-01 <_> 0 -1 1395 -1.6561590135097504e-01 2.8591030836105347e-01 5.2180862426757812e-01 <_> 0 -1 1396 1.6461320046801120e-04 4.1916158795356750e-01 5.3807932138442993e-01 <_> 0 -1 1397 -8.9077502489089966e-03 6.2731927633285522e-01 4.8774048686027527e-01 <_> 0 -1 1398 8.6346449097618461e-04 5.1599407196044922e-01 3.6710259318351746e-01 <_> 0 -1 1399 -1.3751760125160217e-03 5.8843767642974854e-01 4.5790839195251465e-01 <_> 0 -1 1400 -1.4081239933148026e-03 3.5605099797248840e-01 5.1399451494216919e-01 <_> 0 -1 1401 -3.9342888630926609e-03 5.9942889213562012e-01 4.6642720699310303e-01 <_> 0 -1 1402 -3.1966928392648697e-02 3.3454620838165283e-01 5.1441830396652222e-01 <_> 0 -1 1403 -1.5089280168467667e-05 5.5826562643051147e-01 4.4140571355819702e-01 <_> 0 -1 1404 5.1994470413774252e-04 4.6236801147460938e-01 6.1689937114715576e-01 <_> 0 -1 1405 -3.4220460802316666e-03 6.5570747852325439e-01 4.9748051166534424e-01 <_> 0 -1 1406 1.7723299970384687e-04 5.2695018053054810e-01 3.9019080996513367e-01 <_> 0 -1 1407 1.5716759953647852e-03 4.6333730220794678e-01 5.7904577255249023e-01 <_> 0 -1 1408 -8.9041329920291901e-03 2.6896080374717712e-01 5.0535911321640015e-01 <_> 0 -1 1409 4.0677518700249493e-04 5.4566031694412231e-01 4.3298989534378052e-01 <_> 0 -1 1410 6.7604780197143555e-03 4.6489939093589783e-01 6.6897618770599365e-01 <_> 0 -1 1411 2.9100088868290186e-03 5.3097039461135864e-01 3.3778399229049683e-01 <_> 0 -1 1412 1.3885459629818797e-03 4.0747389197349548e-01 5.3491330146789551e-01 <_> 0 -1 1413 -7.6764263212680817e-02 1.9921760261058807e-01 5.2282422780990601e-01 <_> 0 -1 1414 -2.2688310127705336e-04 5.4385018348693848e-01 4.2530721426010132e-01 <_> 0 -1 1415 -6.3094152137637138e-03 4.2591789364814758e-01 5.3789097070693970e-01 <_> 0 -1 1416 -1.1007279902696609e-01 6.9041568040847778e-01 4.7217491269111633e-01 <_> 0 -1 1417 2.8619659133255482e-04 4.5249149203300476e-01 5.5483061075210571e-01 <_> 0 -1 1418 2.9425329557852820e-05 5.3703737258911133e-01 4.2364639043807983e-01 <_> 0 -1 1419 -2.4886570870876312e-02 6.4235579967498779e-01 4.9693039059638977e-01 <_> 0 -1 1420 3.3148851245641708e-02 4.9884751439094543e-01 1.6138119995594025e-01 <_> 0 -1 1421 7.8491691965609789e-04 5.4160261154174805e-01 4.2230090498924255e-01 <_> 0 -1 1422 4.7087189741432667e-03 4.5763289928436279e-01 6.0275578498840332e-01 <_> 0 -1 1423 2.4144479539245367e-03 5.3089731931686401e-01 4.4224989414215088e-01 <_> 0 -1 1424 1.9523180089890957e-03 4.7056341171264648e-01 6.6633248329162598e-01 <_> 0 -1 1425 1.3031980488449335e-03 4.4061261415481567e-01 5.5269622802734375e-01 <_> 0 -1 1426 4.4735497795045376e-03 5.1290237903594971e-01 3.3014988899230957e-01 <_> 0 -1 1427 -2.6652868837118149e-03 3.1354710459709167e-01 5.1750361919403076e-01 <_> 0 -1 1428 1.3666770246345550e-04 4.1193708777427673e-01 5.3068768978118896e-01 <_> 0 -1 1429 -1.7126450315117836e-02 6.1778062582015991e-01 4.8365789651870728e-01 <_> 0 -1 1430 -2.6601430727168918e-04 3.6543309688568115e-01 5.1697367429733276e-01 <_> 0 -1 1431 -2.2932380437850952e-02 3.4909150004386902e-01 5.1639920473098755e-01 <_> 0 -1 1432 2.3316550068557262e-03 5.1662999391555786e-01 3.7093898653984070e-01 <_> 0 -1 1433 1.6925660893321037e-02 5.0147360563278198e-01 8.0539882183074951e-01 <_> 0 -1 1434 -8.9858826249837875e-03 6.4707887172698975e-01 4.6570208668708801e-01 <_> 0 -1 1435 -1.1874699965119362e-02 3.2463788986206055e-01 5.2587550878524780e-01 <_> 0 -1 1436 1.9350569345988333e-04 5.1919418573379517e-01 3.8396438956260681e-01 <_> 0 -1 1437 5.8713490143418312e-03 4.9181339144706726e-01 6.1870431900024414e-01 <_> 0 -1 1438 -2.4838790297508240e-01 1.8368029594421387e-01 4.9881500005722046e-01 <_> 0 -1 1439 1.2256000190973282e-02 5.2270537614822388e-01 3.6320298910140991e-01 <_> 0 -1 1440 8.3990179700776935e-04 4.4902500510215759e-01 5.7741481065750122e-01 <_> 0 -1 1441 2.5407369248569012e-03 4.8047870397567749e-01 5.8582991361618042e-01 <_> 0 -1 1442 -1.4822429977357388e-02 2.5210499763488770e-01 5.0235372781753540e-01 <_> 0 -1 1443 -5.7973959483206272e-03 5.9966957569122314e-01 4.8537150025367737e-01 <_> 0 -1 1444 7.2662148158997297e-04 5.1537168025970459e-01 3.6717799305915833e-01 <_> 0 -1 1445 -1.7232580110430717e-02 6.6217190027236938e-01 4.9946561455726624e-01 <_> 0 -1 1446 7.8624086454510689e-03 4.6333950757980347e-01 6.2561017274856567e-01 <_> 0 -1 1447 -4.7343620099127293e-03 3.6155730485916138e-01 5.2818852663040161e-01 <_> 0 -1 1448 8.3048478700220585e-04 4.4428890943527222e-01 5.5509579181671143e-01 <_> 0 -1 1449 7.6602199114859104e-03 5.1629352569580078e-01 2.6133549213409424e-01 <_> 0 -1 1450 -4.1048377752304077e-03 2.7896320819854736e-01 5.0190317630767822e-01 <_> 0 -1 1451 4.8512578941881657e-03 4.9689841270446777e-01 5.6616681814193726e-01 <_> 0 -1 1452 9.9896453320980072e-04 4.4456079602241516e-01 5.5518132448196411e-01 <_> 0 -1 1453 -2.7023631334304810e-01 2.9388209804892540e-02 5.1513141393661499e-01 <_> 0 -1 1454 -1.3090680353343487e-02 5.6993997097015381e-01 4.4474598765373230e-01 <_> 0 -1 1455 -9.4342790544033051e-03 4.3054661154747009e-01 5.4878950119018555e-01 <_> 0 -1 1456 -1.5482039889320731e-03 3.6803171038627625e-01 5.1280808448791504e-01 <_> 0 -1 1457 5.3746132180094719e-03 4.8389169573783875e-01 6.1015558242797852e-01 <_> 0 -1 1458 1.5786769799888134e-03 5.3252232074737549e-01 4.1185480356216431e-01 <_> 0 -1 1459 3.6856050137430429e-03 4.8109480738639832e-01 6.2523031234741211e-01 <_> 0 -1 1460 9.3887019902467728e-03 5.2002298831939697e-01 3.6294108629226685e-01 <_> 0 -1 1461 1.2792630121111870e-02 4.9617099761962891e-01 6.7380160093307495e-01 <_> 0 -1 1462 -3.3661040943115950e-03 4.0602791309356689e-01 5.2835988998413086e-01 <_> 0 -1 1463 3.9771420415490866e-04 4.6741139888763428e-01 5.9007751941680908e-01 <_> 0 -1 1464 1.4868030557408929e-03 4.5191168785095215e-01 6.0820537805557251e-01 <_> 0 -1 1465 -8.8686749339103699e-02 2.8078991174697876e-01 5.1809918880462646e-01 <_> 0 -1 1466 -7.4296112870797515e-05 5.2955842018127441e-01 4.0876251459121704e-01 <_> 0 -1 1467 -1.4932939848222304e-05 5.4614001512527466e-01 4.5385429263114929e-01 <_> 0 -1 1468 5.9162238612771034e-03 5.3291612863540649e-01 4.1921341419219971e-01 <_> 0 -1 1469 1.1141640134155750e-03 4.5120179653167725e-01 5.7062172889709473e-01 <_> 0 -1 1470 8.9249362645205110e-05 4.5778059959411621e-01 5.8976382017135620e-01 <_> 0 -1 1471 2.5319510605186224e-03 5.2996039390563965e-01 3.3576390147209167e-01 <_> 0 -1 1472 1.2426200322806835e-02 4.9590590596199036e-01 1.3466019928455353e-01 <_> 0 -1 1473 2.8335750102996826e-02 5.1170790195465088e-01 6.1043637106195092e-04 <_> 0 -1 1474 6.6165882162749767e-03 4.7363498806953430e-01 7.0116281509399414e-01 <_> 0 -1 1475 8.0468766391277313e-03 5.2164179086685181e-01 3.2828199863433838e-01 <_> 0 -1 1476 -1.1193980462849140e-03 5.8098608255386353e-01 4.5637390017509460e-01 <_> 0 -1 1477 1.3277590274810791e-02 5.3983622789382935e-01 4.1039010882377625e-01 <_> 0 -1 1478 4.8794739996083081e-04 4.2492860555648804e-01 5.4105907678604126e-01 <_> 0 -1 1479 1.1243170127272606e-02 5.2699637413024902e-01 3.4382158517837524e-01 <_> 0 -1 1480 -8.9896668214350939e-04 5.6330758333206177e-01 4.4566130638122559e-01 <_> 0 -1 1481 6.6677159629762173e-03 5.3128892183303833e-01 4.3626791238784790e-01 <_> 0 -1 1482 2.8947299346327782e-02 4.7017949819564819e-01 6.5757977962493896e-01 <_> 0 -1 1483 -2.3400049656629562e-02 0. 5.1373988389968872e-01 <_> 0 -1 1484 -8.9117050170898438e-02 2.3745279759168625e-02 4.9424308538436890e-01 <_> 0 -1 1485 -1.4054600149393082e-02 3.1273230910301208e-01 5.1175111532211304e-01 <_> 0 -1 1486 8.1239398568868637e-03 5.0090491771697998e-01 2.5200259685516357e-01 <_> 0 -1 1487 -4.9964650534093380e-03 6.3871437311172485e-01 4.9278119206428528e-01 <_> 0 -1 1488 3.1253970228135586e-03 5.1368498802185059e-01 3.6804521083831787e-01 <_> 0 -1 1489 6.7669642157852650e-03 5.5098438262939453e-01 4.3636319041252136e-01 <_> 0 -1 1490 -2.3711440153419971e-03 6.1623352766036987e-01 4.5869469642639160e-01 <_> 0 -1 1491 -5.3522791713476181e-03 6.1854577064514160e-01 4.9204909801483154e-01 <_> 0 -1 1492 -1.5968859195709229e-02 1.3826179504394531e-01 4.9832528829574585e-01 <_> 0 -1 1493 4.7676060348749161e-03 4.6880578994750977e-01 5.4900461435317993e-01 <_> 0 -1 1494 -2.4714691098779440e-03 2.3685149848461151e-01 5.0039529800415039e-01 <_> 0 -1 1495 -7.1033788844943047e-04 5.8563941717147827e-01 4.7215330600738525e-01 <_> 0 -1 1496 -1.4117559790611267e-01 8.6900062859058380e-02 4.9615910649299622e-01 <_> 0 -1 1497 1.0651809722185135e-01 5.1388370990753174e-01 1.7410050332546234e-01 <_> 0 -1 1498 -5.2744749933481216e-02 7.3536360263824463e-01 4.7728818655014038e-01 <_> 0 -1 1499 -4.7431760467588902e-03 3.8844060897827148e-01 5.2927017211914062e-01 <_> 0 -1 1500 9.9676765967160463e-04 5.2234929800033569e-01 4.0034240484237671e-01 <_> 0 -1 1501 8.0284131690859795e-03 4.9591061472892761e-01 7.2129642963409424e-01 <_> 0 -1 1502 8.6025858763605356e-04 4.4448840618133545e-01 5.5384761095046997e-01 <_> 0 -1 1503 9.3191501218825579e-04 5.3983712196350098e-01 4.1632440686225891e-01 <_> 0 -1 1504 -2.5082060601562262e-03 5.8542650938034058e-01 4.5625001192092896e-01 <_> 0 -1 1505 -2.1378761157393456e-03 4.6080690622329712e-01 5.2802592515945435e-01 <_> 0 -1 1506 -2.1546049974858761e-03 3.7911269068717957e-01 5.2559971809387207e-01 <_> 0 -1 1507 -7.6214009895920753e-03 5.9986090660095215e-01 4.9520739912986755e-01 <_> 0 -1 1508 2.2055360022932291e-03 4.4842061400413513e-01 5.5885308980941772e-01 <_> 0 -1 1509 1.2586950324475765e-03 5.4507470130920410e-01 4.4238409399986267e-01 <_> 0 -1 1510 -5.0926720723509789e-03 4.1182750463485718e-01 5.2630358934402466e-01 <_> 0 -1 1511 -2.5095739401876926e-03 5.7879078388214111e-01 4.9984949827194214e-01 <_> 0 -1 1512 -7.7327556908130646e-02 8.3978658914566040e-01 4.8111200332641602e-01 <_> 0 -1 1513 -4.1485819965600967e-02 2.4086110293865204e-01 5.1769930124282837e-01 <_> 0 -1 1514 1.0355669655837119e-04 4.3553608655929565e-01 5.4170542955398560e-01 <_> 0 -1 1515 1.3255809899419546e-03 5.4539710283279419e-01 4.8940950632095337e-01 <_> 0 -1 1516 -8.0598732456564903e-03 5.7710242271423340e-01 4.5779189467430115e-01 <_> 0 -1 1517 1.9058620557188988e-02 5.1698678731918335e-01 3.4004750847816467e-01 <_> 0 -1 1518 -3.5057891160249710e-02 2.2032439708709717e-01 5.0005030632019043e-01 <_> 0 -1 1519 5.7296059094369411e-03 5.0434082746505737e-01 6.5975707769393921e-01 <_> 0 -1 1520 -1.1648329906165600e-02 2.1862849593162537e-01 4.9966529011726379e-01 <_> 0 -1 1521 1.4544479781761765e-03 5.0076818466186523e-01 5.5037277936935425e-01 <_> 0 -1 1522 -2.5030909455381334e-04 4.1298410296440125e-01 5.2416700124740601e-01 <_> 0 -1 1523 -8.2907272735610604e-04 5.4128682613372803e-01 4.9744960665702820e-01 <_> 0 -1 1524 1.0862209601327777e-03 4.6055299043655396e-01 5.8792287111282349e-01 <_> 0 -1 1525 2.0000500080641359e-04 5.2788549661636353e-01 4.7052091360092163e-01 <_> 0 -1 1526 2.9212920926511288e-03 5.1296097040176392e-01 3.7555369734764099e-01 <_> 0 -1 1527 2.5387400761246681e-02 4.8226919770240784e-01 5.7907682657241821e-01 <_> 0 -1 1528 -3.1968469265848398e-03 5.2483952045440674e-01 3.9628401398658752e-01 <_> 182 9.0253349304199219e+01 <_> 0 -1 1529 5.8031738735735416e-03 3.4989839792251587e-01 5.9619832038879395e-01 <_> 0 -1 1530 -9.0003069490194321e-03 6.8166369199752808e-01 4.4785520434379578e-01 <_> 0 -1 1531 -1.1549659539014101e-03 5.5857062339782715e-01 3.5782510042190552e-01 <_> 0 -1 1532 -1.1069850297644734e-03 5.3650361299514771e-01 3.0504280328750610e-01 <_> 0 -1 1533 1.0308309720130637e-04 3.6390951275825500e-01 5.3446358442306519e-01 <_> 0 -1 1534 -5.0984839908778667e-03 2.8591570258140564e-01 5.5042648315429688e-01 <_> 0 -1 1535 8.2572200335562229e-04 5.2365237474441528e-01 3.4760418534278870e-01 <_> 0 -1 1536 9.9783325567841530e-03 4.7503221035003662e-01 6.2196469306945801e-01 <_> 0 -1 1537 -3.7402529269456863e-02 3.3433759212493896e-01 5.2780628204345703e-01 <_> 0 -1 1538 4.8548257909715176e-03 5.1921808719635010e-01 3.7004441022872925e-01 <_> 0 -1 1539 -1.8664470408111811e-03 2.9298439621925354e-01 5.0919449329376221e-01 <_> 0 -1 1540 1.6888890415430069e-02 3.6868458986282349e-01 5.4312258958816528e-01 <_> 0 -1 1541 -5.8372621424496174e-03 3.6321839690208435e-01 5.2213358879089355e-01 <_> 0 -1 1542 -1.4713739510625601e-03 5.8706837892532349e-01 4.7006508708000183e-01 <_> 0 -1 1543 -1.1522950371727347e-03 3.1958949565887451e-01 5.1409542560577393e-01 <_> 0 -1 1544 -4.2560300789773464e-03 6.3018590211868286e-01 4.8149210214614868e-01 <_> 0 -1 1545 -6.7378291860222816e-03 1.9770480692386627e-01 5.0258082151412964e-01 <_> 0 -1 1546 1.1382670141756535e-02 4.9541321396827698e-01 6.8670457601547241e-01 <_> 0 -1 1547 5.1794708706438541e-03 5.1644277572631836e-01 3.3506479859352112e-01 <_> 0 -1 1548 -1.1743789911270142e-01 2.3152460157871246e-01 5.2344137430191040e-01 <_> 0 -1 1549 2.8703449293971062e-02 4.6642971038818359e-01 6.7225211858749390e-01 <_> 0 -1 1550 4.8231030814349651e-03 5.2208751440048218e-01 2.7235329151153564e-01 <_> 0 -1 1551 2.6798530016094446e-03 5.0792771577835083e-01 2.9069489240646362e-01 <_> 0 -1 1552 8.0504082143306732e-03 4.8859509825706482e-01 6.3950210809707642e-01 <_> 0 -1 1553 4.8054959625005722e-03 5.1972568035125732e-01 3.6566638946533203e-01 <_> 0 -1 1554 -2.2420159075409174e-03 6.1534678936004639e-01 4.7637018561363220e-01 <_> 0 -1 1555 -1.3757710345089436e-02 2.6373448967933655e-01 5.0309032201766968e-01 <_> 0 -1 1556 -1.0338299721479416e-01 2.2875219583511353e-01 5.1824611425399780e-01 <_> 0 -1 1557 -9.4432085752487183e-03 6.9533038139343262e-01 4.6949490904808044e-01 <_> 0 -1 1558 8.0271181650459766e-04 5.4506552219390869e-01 4.2687839269638062e-01 <_> 0 -1 1559 -4.1945669800043106e-03 6.0913878679275513e-01 4.5716428756713867e-01 <_> 0 -1 1560 1.0942210443317890e-02 5.2410632371902466e-01 3.2845470309257507e-01 <_> 0 -1 1561 -5.7841069065034389e-04 5.3879290819168091e-01 4.1793689131736755e-01 <_> 0 -1 1562 -2.0888620056211948e-03 4.2926910519599915e-01 5.3017157316207886e-01 <_> 0 -1 1563 3.2383969519287348e-03 3.7923479080200195e-01 5.2207440137863159e-01 <_> 0 -1 1564 4.9075027927756310e-03 5.2372831106185913e-01 4.1267579793930054e-01 <_> 0 -1 1565 -3.2277941703796387e-02 1.9476559758186340e-01 4.9945020675659180e-01 <_> 0 -1 1566 -8.9711230248212814e-03 6.0112851858139038e-01 4.9290320277214050e-01 <_> 0 -1 1567 1.5321089886128902e-02 5.0097537040710449e-01 2.0398220419883728e-01 <_> 0 -1 1568 2.0855569746345282e-03 4.8621898889541626e-01 5.7216948270797729e-01 <_> 0 -1 1569 5.0615021027624607e-03 5.0002187490463257e-01 1.8018059432506561e-01 <_> 0 -1 1570 -3.7174751050770283e-03 5.5301171541213989e-01 4.8975929617881775e-01 <_> 0 -1 1571 -1.2170500122010708e-02 4.1786059737205505e-01 5.3837239742279053e-01 <_> 0 -1 1572 4.6248398721218109e-03 4.9971699714660645e-01 5.7613271474838257e-01 <_> 0 -1 1573 -2.1040429419372231e-04 5.3318071365356445e-01 4.0976810455322266e-01 <_> 0 -1 1574 -1.4641780406236649e-02 5.7559251785278320e-01 5.0517761707305908e-01 <_> 0 -1 1575 3.3199489116668701e-03 4.5769768953323364e-01 6.0318058729171753e-01 <_> 0 -1 1576 3.7236879579722881e-03 4.3803969025611877e-01 5.4158830642700195e-01 <_> 0 -1 1577 8.2951161311939359e-04 5.1630318164825439e-01 3.7022191286087036e-01 <_> 0 -1 1578 -1.1408490128815174e-02 6.0729467868804932e-01 4.8625651001930237e-01 <_> 0 -1 1579 -4.5320121571421623e-03 3.2924759387969971e-01 5.0889629125595093e-01 <_> 0 -1 1580 5.1276017911732197e-03 4.8297679424285889e-01 6.1227089166641235e-01 <_> 0 -1 1581 9.8583158105611801e-03 4.6606799960136414e-01 6.5561771392822266e-01 <_> 0 -1 1582 3.6985918879508972e-02 5.2048492431640625e-01 1.6904720664024353e-01 <_> 0 -1 1583 4.6491161920130253e-03 5.1673221588134766e-01 3.7252250313758850e-01 <_> 0 -1 1584 -4.2664702050387859e-03 6.4064931869506836e-01 4.9873429536819458e-01 <_> 0 -1 1585 -4.7956590424291790e-04 5.8972930908203125e-01 4.4648739695549011e-01 <_> 0 -1 1586 3.6827160511165857e-03 5.4415607452392578e-01 3.4726628661155701e-01 <_> 0 -1 1587 -1.0059880092740059e-02 2.1431629359722137e-01 5.0048297643661499e-01 <_> 0 -1 1588 -3.0361840617842972e-04 5.3864240646362305e-01 4.5903238654136658e-01 <_> 0 -1 1589 -1.4545479789376259e-03 5.7511842250823975e-01 4.4970950484275818e-01 <_> 0 -1 1590 1.6515209572389722e-03 5.4219377040863037e-01 4.2385208606719971e-01 <_> 0 -1 1591 -7.8468639403581619e-03 4.0779209136962891e-01 5.2581572532653809e-01 <_> 0 -1 1592 -5.1259850151836872e-03 4.2292758822441101e-01 5.4794532060623169e-01 <_> 0 -1 1593 -3.6890961229801178e-02 6.5963757038116455e-01 4.6746781468391418e-01 <_> 0 -1 1594 2.4035639944486320e-04 4.2511358857154846e-01 5.5732029676437378e-01 <_> 0 -1 1595 -1.5150169929256663e-05 5.2592468261718750e-01 4.0741148591041565e-01 <_> 0 -1 1596 2.2108471021056175e-03 4.6717229485511780e-01 5.8863520622253418e-01 <_> 0 -1 1597 -1.1568620102480054e-03 5.7110661268234253e-01 4.4871619343757629e-01 <_> 0 -1 1598 4.9996292218565941e-03 5.2641981840133667e-01 2.8983271121978760e-01 <_> 0 -1 1599 -1.4656189596280456e-03 3.8917380571365356e-01 5.1978719234466553e-01 <_> 0 -1 1600 -1.1975039960816503e-03 5.7958728075027466e-01 4.9279558658599854e-01 <_> 0 -1 1601 -4.4954330660402775e-03 2.3776030540466309e-01 5.0125551223754883e-01 <_> 0 -1 1602 1.4997160178609192e-04 4.8766261339187622e-01 5.6176078319549561e-01 <_> 0 -1 1603 2.6391509454697371e-03 5.1680880784988403e-01 3.7655091285705566e-01 <_> 0 -1 1604 -2.9368131072260439e-04 5.4466491937637329e-01 4.8746308684349060e-01 <_> 0 -1 1605 1.4211760135367513e-03 4.6878978610038757e-01 6.6913318634033203e-01 <_> 0 -1 1606 7.9427637159824371e-02 5.1934438943862915e-01 2.7329459786415100e-01 <_> 0 -1 1607 7.9937502741813660e-02 4.9717310070991516e-01 1.7820839583873749e-01 <_> 0 -1 1608 1.1089259758591652e-02 5.1659947633743286e-01 3.2094758749008179e-01 <_> 0 -1 1609 1.6560709627810866e-04 4.0584719181060791e-01 5.3072762489318848e-01 <_> 0 -1 1610 -5.3354292176663876e-03 3.4450569748878479e-01 5.1581299304962158e-01 <_> 0 -1 1611 1.1287260567769408e-03 4.5948630571365356e-01 6.0755330324172974e-01 <_> 0 -1 1612 -2.1969219669699669e-02 1.6804009675979614e-01 5.2285957336425781e-01 <_> 0 -1 1613 -2.1775320055894554e-04 3.8615968823432922e-01 5.2156728506088257e-01 <_> 0 -1 1614 2.0200149447191507e-04 5.5179792642593384e-01 4.3630391359329224e-01 <_> 0 -1 1615 -2.1733149886131287e-02 7.9994601011276245e-01 4.7898510098457336e-01 <_> 0 -1 1616 -8.4399932529777288e-04 4.0859758853912354e-01 5.3747731447219849e-01 <_> 0 -1 1617 -4.3895249837078154e-04 5.4704052209854126e-01 4.3661430478096008e-01 <_> 0 -1 1618 1.5092400135472417e-03 4.9889969825744629e-01 5.8421492576599121e-01 <_> 0 -1 1619 -3.5547839943319559e-03 6.7536902427673340e-01 4.7210058569908142e-01 <_> 0 -1 1620 4.8191400128416717e-04 5.4158538579940796e-01 4.3571090698242188e-01 <_> 0 -1 1621 -6.0264398343861103e-03 2.2585099935531616e-01 4.9918809533119202e-01 <_> 0 -1 1622 -1.1668140068650246e-02 6.2565547227859497e-01 4.9274989962577820e-01 <_> 0 -1 1623 -2.8718370012938976e-03 3.9477849006652832e-01 5.2458018064498901e-01 <_> 0 -1 1624 1.7051169648766518e-02 4.7525110840797424e-01 5.7942241430282593e-01 <_> 0 -1 1625 -1.3352080248296261e-02 6.0411047935485840e-01 4.5445358753204346e-01 <_> 0 -1 1626 -3.9301801007241011e-04 4.2582759261131287e-01 5.5449050664901733e-01 <_> 0 -1 1627 3.0483349692076445e-03 5.2334201335906982e-01 3.7802729010581970e-01 <_> 0 -1 1628 -4.3579288758337498e-03 6.3718891143798828e-01 4.8386740684509277e-01 <_> 0 -1 1629 5.6661018170416355e-03 5.3747057914733887e-01 4.1636660695075989e-01 <_> 0 -1 1630 6.0677339206449687e-05 4.6387958526611328e-01 5.3116250038146973e-01 <_> 0 -1 1631 3.6738160997629166e-02 4.6886560320854187e-01 6.4665240049362183e-01 <_> 0 -1 1632 8.6528137326240540e-03 5.2043187618255615e-01 2.1886579692363739e-01 <_> 0 -1 1633 -1.5371359884738922e-01 1.6303719580173492e-01 4.9588400125503540e-01 <_> 0 -1 1634 -4.1560421232134104e-04 5.7744592428207397e-01 4.6964588761329651e-01 <_> 0 -1 1635 -1.2640169588848948e-03 3.9771759510040283e-01 5.2171981334686279e-01 <_> 0 -1 1636 -3.5473341122269630e-03 6.0465282201766968e-01 4.8083150386810303e-01 <_> 0 -1 1637 3.0019069527043030e-05 3.9967238903045654e-01 5.2282011508941650e-01 <_> 0 -1 1638 1.3113019522279501e-03 4.7121581435203552e-01 5.7659977674484253e-01 <_> 0 -1 1639 -1.3374709524214268e-03 4.1095849871635437e-01 5.2531701326370239e-01 <_> 0 -1 1640 2.0876709371805191e-02 5.2029937505722046e-01 1.7579819262027740e-01 <_> 0 -1 1641 -7.5497948564589024e-03 6.5666097402572632e-01 4.6949750185012817e-01 <_> 0 -1 1642 2.4188550189137459e-02 5.1286739110946655e-01 3.3702209591865540e-01 <_> 0 -1 1643 -2.9358828905969858e-03 6.5807867050170898e-01 4.6945410966873169e-01 <_> 0 -1 1644 5.7557929307222366e-02 5.1464450359344482e-01 2.7752599120140076e-01 <_> 0 -1 1645 -1.1343370424583554e-03 3.8366019725799561e-01 5.1926672458648682e-01 <_> 0 -1 1646 1.6816999763250351e-02 5.0855928659439087e-01 6.1772608757019043e-01 <_> 0 -1 1647 5.0535178743302822e-03 5.1387631893157959e-01 3.6847919225692749e-01 <_> 0 -1 1648 -4.5874710194766521e-03 5.9896552562713623e-01 4.8352020978927612e-01 <_> 0 -1 1649 1.6882460331544280e-03 4.5094868540763855e-01 5.7230567932128906e-01 <_> 0 -1 1650 -1.6554000321775675e-03 3.4967708587646484e-01 5.2433192729949951e-01 <_> 0 -1 1651 -1.9373800605535507e-02 1.1205369979143143e-01 4.9687129259109497e-01 <_> 0 -1 1652 1.0374450124800205e-02 5.1481968164443970e-01 4.3952131271362305e-01 <_> 0 -1 1653 1.4973050565458834e-04 4.0849998593330383e-01 5.2698868513107300e-01 <_> 0 -1 1654 -4.2981930077075958e-02 6.3941049575805664e-01 5.0185042619705200e-01 <_> 0 -1 1655 8.3065936341881752e-03 4.7075539827346802e-01 6.6983532905578613e-01 <_> 0 -1 1656 -4.1285790503025055e-03 4.5413690805435181e-01 5.3236472606658936e-01 <_> 0 -1 1657 1.7399420030415058e-03 4.3339619040489197e-01 5.4398661851882935e-01 <_> 0 -1 1658 1.1739750334527344e-04 4.5796871185302734e-01 5.5434262752532959e-01 <_> 0 -1 1659 1.8585780344437808e-04 4.3246439099311829e-01 5.4267549514770508e-01 <_> 0 -1 1660 5.5587692186236382e-03 5.2572208642959595e-01 3.5506111383438110e-01 <_> 0 -1 1661 -7.9851560294628143e-03 6.0430181026458740e-01 4.6306359767913818e-01 <_> 0 -1 1662 6.0594122624024749e-04 4.5982548594474792e-01 5.5331951379776001e-01 <_> 0 -1 1663 -2.2983040253166109e-04 4.1307520866394043e-01 5.3224611282348633e-01 <_> 0 -1 1664 4.3740210821852088e-04 4.0430399775505066e-01 5.4092890024185181e-01 <_> 0 -1 1665 2.9482020181603730e-04 4.4949638843536377e-01 5.6288522481918335e-01 <_> 0 -1 1666 1.0312659665942192e-02 5.1775109767913818e-01 2.7043169736862183e-01 <_> 0 -1 1667 -7.7241109684109688e-03 1.9880190491676331e-01 4.9805539846420288e-01 <_> 0 -1 1668 -4.6797208487987518e-03 6.6447502374649048e-01 5.0182962417602539e-01 <_> 0 -1 1669 -5.0755459815263748e-03 3.8983049988746643e-01 5.1852691173553467e-01 <_> 0 -1 1670 2.2479740437120199e-03 4.8018088936805725e-01 5.6603360176086426e-01 <_> 0 -1 1671 8.3327008178457618e-04 5.2109199762344360e-01 3.9571881294250488e-01 <_> 0 -1 1672 -4.1279330849647522e-02 6.1545419692993164e-01 5.0070542097091675e-01 <_> 0 -1 1673 -5.0930189900100231e-04 3.9759421348571777e-01 5.2284038066864014e-01 <_> 0 -1 1674 1.2568780221045017e-03 4.9791380763053894e-01 5.9391832351684570e-01 <_> 0 -1 1675 8.0048497766256332e-03 4.9844971299171448e-01 1.6333660483360291e-01 <_> 0 -1 1676 -1.1879300000146031e-03 5.9049648046493530e-01 4.9426248669624329e-01 <_> 0 -1 1677 6.1948952497914433e-04 4.1995579004287720e-01 5.3287261724472046e-01 <_> 0 -1 1678 6.6829859279096127e-03 5.4186028242111206e-01 4.9058890342712402e-01 <_> 0 -1 1679 -3.7062340416014194e-03 3.7259390950202942e-01 5.1380002498626709e-01 <_> 0 -1 1680 -3.9739411324262619e-02 6.4789611101150513e-01 5.0503468513488770e-01 <_> 0 -1 1681 1.4085009461268783e-03 4.6823391318321228e-01 6.3778841495513916e-01 <_> 0 -1 1682 3.9322688826359808e-04 5.4585301876068115e-01 4.1504821181297302e-01 <_> 0 -1 1683 -1.8979819724336267e-03 3.6901599168777466e-01 5.1497042179107666e-01 <_> 0 -1 1684 -1.3970440253615379e-02 6.0505628585815430e-01 4.8113578557968140e-01 <_> 0 -1 1685 -1.0100819915533066e-01 2.0170800387859344e-01 4.9923619627952576e-01 <_> 0 -1 1686 -1.7346920445561409e-02 5.7131487131118774e-01 4.8994860053062439e-01 <_> 0 -1 1687 1.5619759506080300e-04 4.2153888940811157e-01 5.3926420211791992e-01 <_> 0 -1 1688 1.3438929617404938e-01 5.1361519098281860e-01 3.7676128745079041e-01 <_> 0 -1 1689 -2.4582240730524063e-02 7.0273578166961670e-01 4.7479069232940674e-01 <_> 0 -1 1690 -3.8553720805794001e-03 4.3174090981483459e-01 5.4277169704437256e-01 <_> 0 -1 1691 -2.3165249731391668e-03 5.9426987171173096e-01 4.6186479926109314e-01 <_> 0 -1 1692 -4.8518120311200619e-03 6.1915689706802368e-01 4.8848950862884521e-01 <_> 0 -1 1693 2.4699938949197531e-03 5.2566647529602051e-01 4.0171998739242554e-01 <_> 0 -1 1694 4.5496959239244461e-02 5.2378678321838379e-01 2.6857739686965942e-01 <_> 0 -1 1695 -2.0319599658250809e-02 2.1304459869861603e-01 4.9797388911247253e-01 <_> 0 -1 1696 2.6994998916052282e-04 4.8140418529510498e-01 5.5431222915649414e-01 <_> 0 -1 1697 -1.8232699949294329e-03 6.4825797080993652e-01 4.7099891304969788e-01 <_> 0 -1 1698 -6.3015790656208992e-03 4.5819279551506042e-01 5.3062361478805542e-01 <_> 0 -1 1699 -2.4139499873854220e-04 5.2320867776870728e-01 4.0517631173133850e-01 <_> 0 -1 1700 -1.0330369696021080e-03 5.5562019348144531e-01 4.7891938686370850e-01 <_> 0 -1 1701 1.8041160365100950e-04 5.2294427156448364e-01 4.0118101239204407e-01 <_> 0 -1 1702 -6.1407860368490219e-02 6.2986820936203003e-01 5.0107032060623169e-01 <_> 0 -1 1703 -6.9543913006782532e-02 7.2282809019088745e-01 4.7731840610504150e-01 <_> 0 -1 1704 -7.0542663335800171e-02 2.2695130109786987e-01 5.1825290918350220e-01 <_> 0 -1 1705 2.4423799477517605e-03 5.2370971441268921e-01 4.0981510281562805e-01 <_> 0 -1 1706 1.5494349645450711e-03 4.7737509012222290e-01 5.4680430889129639e-01 <_> 0 -1 1707 -2.3914219811558723e-02 7.1469759941101074e-01 4.7838249802589417e-01 <_> 0 -1 1708 -1.2453690171241760e-02 2.6352968811988831e-01 5.2411228418350220e-01 <_> 0 -1 1709 -2.0760179904755205e-04 3.6237570643424988e-01 5.1136088371276855e-01 <_> 0 -1 1710 2.9781080229440704e-05 4.7059321403503418e-01 5.4328018426895142e-01 <_> 211 1.0474919891357422e+02 <_> 0 -1 1711 1.1772749945521355e-02 3.8605189323425293e-01 6.4211672544479370e-01 <_> 0 -1 1712 2.7037570253014565e-02 4.3856549263000488e-01 6.7540389299392700e-01 <_> 0 -1 1713 -3.6419500247575343e-05 5.4871010780334473e-01 3.4233158826828003e-01 <_> 0 -1 1714 1.9995409529656172e-03 3.2305321097373962e-01 5.4003179073333740e-01 <_> 0 -1 1715 4.5278300531208515e-03 5.0916397571563721e-01 2.9350438714027405e-01 <_> 0 -1 1716 4.7890920541249216e-04 4.1781538724899292e-01 5.3440642356872559e-01 <_> 0 -1 1717 1.1720920447260141e-03 2.8991821408271790e-01 5.1320707798004150e-01 <_> 0 -1 1718 9.5305702416226268e-04 4.2801249027252197e-01 5.5608451366424561e-01 <_> 0 -1 1719 1.5099150004971307e-05 4.0448719263076782e-01 5.4047602415084839e-01 <_> 0 -1 1720 -6.0817901976406574e-04 4.2717689275741577e-01 5.5034661293029785e-01 <_> 0 -1 1721 3.3224520739167929e-03 3.9627239108085632e-01 5.3697347640991211e-01 <_> 0 -1 1722 -1.1037490330636501e-03 4.7271779179573059e-01 5.2377498149871826e-01 <_> 0 -1 1723 -1.4350269921123981e-03 5.6030082702636719e-01 4.2235091328620911e-01 <_> 0 -1 1724 2.0767399109899998e-03 5.2259171009063721e-01 4.7327259182929993e-01 <_> 0 -1 1725 -1.6412809782195836e-04 3.9990758895874023e-01 5.4327398538589478e-01 <_> 0 -1 1726 8.8302437216043472e-03 4.6783858537673950e-01 6.0273271799087524e-01 <_> 0 -1 1727 -1.0552070103585720e-02 3.4939670562744141e-01 5.2139747142791748e-01 <_> 0 -1 1728 -2.2731600329279900e-03 6.1858189105987549e-01 4.7490629553794861e-01 <_> 0 -1 1729 -8.4786332445219159e-04 5.2853411436080933e-01 3.8434821367263794e-01 <_> 0 -1 1730 1.2081359745934606e-03 5.3606408834457397e-01 3.4473359584808350e-01 <_> 0 -1 1731 2.6512730401009321e-03 4.5582920312881470e-01 6.1939620971679688e-01 <_> 0 -1 1732 -1.1012479662895203e-03 3.6802300810813904e-01 5.3276282548904419e-01 <_> 0 -1 1733 4.9561518244445324e-04 3.9605951309204102e-01 5.2749407291412354e-01 <_> 0 -1 1734 -4.3901771306991577e-02 7.0204448699951172e-01 4.9928390979766846e-01 <_> 0 -1 1735 3.4690350294113159e-02 5.0491642951965332e-01 2.7666029334068298e-01 <_> 0 -1 1736 -2.7442190330475569e-03 2.6726329326629639e-01 5.2749711275100708e-01 <_> 0 -1 1737 3.3316588960587978e-03 4.5794829726219177e-01 6.0011017322540283e-01 <_> 0 -1 1738 -2.0044570788741112e-02 3.1715941429138184e-01 5.2357178926467896e-01 <_> 0 -1 1739 1.3492030557245016e-03 5.2653628587722778e-01 4.0343248844146729e-01 <_> 0 -1 1740 2.9702018946409225e-03 5.3324568271636963e-01 4.5719841122627258e-01 <_> 0 -1 1741 6.3039981760084629e-03 4.5933109521865845e-01 6.0346359014511108e-01 <_> 0 -1 1742 -1.2936590239405632e-02 4.4379639625549316e-01 5.3729712963104248e-01 <_> 0 -1 1743 4.0148729458451271e-03 4.6803238987922668e-01 6.4378339052200317e-01 <_> 0 -1 1744 -2.6401679497212172e-03 3.7096318602561951e-01 5.3143328428268433e-01 <_> 0 -1 1745 1.3918439857661724e-02 4.7235551476478577e-01 7.1308088302612305e-01 <_> 0 -1 1746 -4.5087869511917233e-04 4.4923940300941467e-01 5.3704041242599487e-01 <_> 0 -1 1747 2.5384349282830954e-04 4.4068640470504761e-01 5.5144029855728149e-01 <_> 0 -1 1748 2.2710000630468130e-03 4.6824169158935547e-01 5.9679841995239258e-01 <_> 0 -1 1749 2.4120779708027840e-03 5.0793921947479248e-01 3.0185988545417786e-01 <_> 0 -1 1750 -3.6025670851813629e-05 5.6010371446609497e-01 4.4710969924926758e-01 <_> 0 -1 1751 -7.4905529618263245e-03 2.2075350582599640e-01 4.9899441003799438e-01 <_> 0 -1 1752 -1.7513120546936989e-02 6.5312159061431885e-01 5.0176489353179932e-01 <_> 0 -1 1753 1.4281630516052246e-01 4.9679630994796753e-01 1.4820620417594910e-01 <_> 0 -1 1754 5.5345268920063972e-03 4.8989468812942505e-01 5.9542238712310791e-01 <_> 0 -1 1755 -9.6323591424152255e-04 3.9271169900894165e-01 5.1960742473602295e-01 <_> 0 -1 1756 -2.0370010752230883e-03 5.6133252382278442e-01 4.8848581314086914e-01 <_> 0 -1 1757 1.6614829655736685e-03 4.4728800654411316e-01 5.5788809061050415e-01 <_> 0 -1 1758 -3.1188090797513723e-03 3.8405328989028931e-01 5.3974777460098267e-01 <_> 0 -1 1759 -6.4000617712736130e-03 5.8439838886260986e-01 4.5332181453704834e-01 <_> 0 -1 1760 3.1319601112045348e-04 5.4392218589782715e-01 4.2347279191017151e-01 <_> 0 -1 1761 -1.8222099170088768e-02 1.2884649634361267e-01 4.9584048986434937e-01 <_> 0 -1 1762 8.7969247251749039e-03 4.9512979388237000e-01 7.1534800529479980e-01 <_> 0 -1 1763 -4.2395070195198059e-03 3.9465999603271484e-01 5.1949369907379150e-01 <_> 0 -1 1764 9.7086271271109581e-03 4.8975038528442383e-01 6.0649001598358154e-01 <_> 0 -1 1765 -3.9934171363711357e-03 3.2454401254653931e-01 5.0608289241790771e-01 <_> 0 -1 1766 -1.6785059124231339e-02 1.5819530189037323e-01 5.2037787437438965e-01 <_> 0 -1 1767 1.8272090703248978e-02 4.6809351444244385e-01 6.6269791126251221e-01 <_> 0 -1 1768 5.6872838176786900e-03 5.2116978168487549e-01 3.5121849179267883e-01 <_> 0 -1 1769 -1.0739039862528443e-03 5.7683861255645752e-01 4.5298451185226440e-01 <_> 0 -1 1770 -3.7093870341777802e-03 4.5077630877494812e-01 5.3135812282562256e-01 <_> 0 -1 1771 -2.1110709349159151e-04 5.4608201980590820e-01 4.3333768844604492e-01 <_> 0 -1 1772 1.0670139454305172e-03 5.3718560934066772e-01 4.0783908963203430e-01 <_> 0 -1 1773 3.5943021066486835e-03 4.4712871313095093e-01 5.6438362598419189e-01 <_> 0 -1 1774 -5.1776031032204628e-03 4.4993931055068970e-01 5.2803301811218262e-01 <_> 0 -1 1775 -2.5414369883947074e-04 5.5161732435226440e-01 4.4077080488204956e-01 <_> 0 -1 1776 6.3522560521960258e-03 5.1941901445388794e-01 2.4652279913425446e-01 <_> 0 -1 1777 -4.4205080484971404e-04 3.8307058811187744e-01 5.1396822929382324e-01 <_> 0 -1 1778 7.4488727841526270e-04 4.8910909891128540e-01 5.9747868776321411e-01 <_> 0 -1 1779 -3.5116379149258137e-03 7.4136817455291748e-01 4.7687649726867676e-01 <_> 0 -1 1780 -1.2540910392999649e-02 3.6488190293312073e-01 5.2528268098831177e-01 <_> 0 -1 1781 9.4931852072477341e-03 5.1004928350448608e-01 3.6295869946479797e-01 <_> 0 -1 1782 1.2961150147020817e-02 5.2324420213699341e-01 4.3335610628128052e-01 <_> 0 -1 1783 4.7209449112415314e-03 4.6481490135192871e-01 6.3310527801513672e-01 <_> 0 -1 1784 -2.3119079414755106e-03 5.9303098917007446e-01 4.5310580730438232e-01 <_> 0 -1 1785 -2.8262299019843340e-03 3.8704779744148254e-01 5.2571010589599609e-01 <_> 0 -1 1786 -1.4311339473351836e-03 5.5225032567977905e-01 4.5618548989295959e-01 <_> 0 -1 1787 1.9378310535103083e-03 4.5462208986282349e-01 5.7369667291641235e-01 <_> 0 -1 1788 2.6343559147790074e-04 5.3457391262054443e-01 4.5718750357627869e-01 <_> 0 -1 1789 7.8257522545754910e-04 3.9678159356117249e-01 5.2201879024505615e-01 <_> 0 -1 1790 -1.9550440832972527e-02 2.8296428918838501e-01 5.2435082197189331e-01 <_> 0 -1 1791 4.3914958951063454e-04 4.5900669693946838e-01 5.8990901708602905e-01 <_> 0 -1 1792 2.1452000364661217e-02 5.2314108610153198e-01 2.8553789854049683e-01 <_> 0 -1 1793 5.8973580598831177e-04 4.3972569704055786e-01 5.5064219236373901e-01 <_> 0 -1 1794 -2.6157610118389130e-02 3.1350791454315186e-01 5.1891750097274780e-01 <_> 0 -1 1795 -1.3959860429167747e-02 3.2132729887962341e-01 5.0407177209854126e-01 <_> 0 -1 1796 -6.3699018210172653e-03 6.3875448703765869e-01 4.8495069146156311e-01 <_> 0 -1 1797 -8.5613820701837540e-03 2.7591320872306824e-01 5.0320190191268921e-01 <_> 0 -1 1798 9.6622901037335396e-04 4.6856409311294556e-01 5.8348792791366577e-01 <_> 0 -1 1799 7.6550268568098545e-04 5.1752072572708130e-01 3.8964220881462097e-01 <_> 0 -1 1800 -8.1833340227603912e-03 2.0691369473934174e-01 5.2081221342086792e-01 <_> 0 -1 1801 -9.3976939097046852e-03 6.1340910196304321e-01 4.6412229537963867e-01 <_> 0 -1 1802 4.8028980381786823e-03 5.4541081190109253e-01 4.3952199816703796e-01 <_> 0 -1 1803 -3.5680569708347321e-03 6.3444852828979492e-01 4.6810939908027649e-01 <_> 0 -1 1804 4.0733120404183865e-03 5.2926832437515259e-01 4.0156200528144836e-01 <_> 0 -1 1805 1.2568129459396005e-03 4.3929880857467651e-01 5.4528248310089111e-01 <_> 0 -1 1806 -2.9065010603517294e-03 5.8988320827484131e-01 4.8633798956871033e-01 <_> 0 -1 1807 -2.4409340694546700e-03 4.0693649649620056e-01 5.2474218606948853e-01 <_> 0 -1 1808 2.4830700829625130e-02 5.1827257871627808e-01 3.6825248599052429e-01 <_> 0 -1 1809 -4.8854008316993713e-02 1.3075779378414154e-01 4.9612811207771301e-01 <_> 0 -1 1810 -1.6110379947349429e-03 6.4210057258605957e-01 4.8726621270179749e-01 <_> 0 -1 1811 -9.7009479999542236e-02 4.7769349068403244e-02 4.9509888887405396e-01 <_> 0 -1 1812 1.1209240183234215e-03 4.6162670850753784e-01 5.3547459840774536e-01 <_> 0 -1 1813 -1.3064090162515640e-03 6.2618541717529297e-01 4.6388059854507446e-01 <_> 0 -1 1814 4.5771620352752507e-04 5.3844177722930908e-01 4.6466401219367981e-01 <_> 0 -1 1815 -6.3149951165542006e-04 3.8040471076965332e-01 5.1302570104598999e-01 <_> 0 -1 1816 1.4505970466416329e-04 4.5543101429939270e-01 5.6644618511199951e-01 <_> 0 -1 1817 -1.6474550589919090e-02 6.5969580411911011e-01 4.7158598899841309e-01 <_> 0 -1 1818 1.3369579799473286e-02 5.1954662799835205e-01 3.0359649658203125e-01 <_> 0 -1 1819 1.0271780047332868e-04 5.2291762828826904e-01 4.1070660948753357e-01 <_> 0 -1 1820 -5.5311559699475765e-03 6.3528877496719360e-01 4.9609071016311646e-01 <_> 0 -1 1821 -2.6187049224972725e-03 3.8245460391044617e-01 5.1409840583801270e-01 <_> 0 -1 1822 5.0834268331527710e-03 4.9504399299621582e-01 6.2208187580108643e-01 <_> 0 -1 1823 7.9818159341812134e-02 4.9523359537124634e-01 1.3224759697914124e-01 <_> 0 -1 1824 -9.9226586520671844e-02 7.5427287817001343e-01 5.0084167718887329e-01 <_> 0 -1 1825 -6.5174017800018191e-04 3.6993029713630676e-01 5.1301211118698120e-01 <_> 0 -1 1826 -1.8996849656105042e-02 6.6891789436340332e-01 4.9212029576301575e-01 <_> 0 -1 1827 1.7346899956464767e-02 4.9833008646965027e-01 1.8591980636119843e-01 <_> 0 -1 1828 5.5082101607695222e-04 4.5744240283966064e-01 5.5221217870712280e-01 <_> 0 -1 1829 2.0056050270795822e-03 5.1317447423934937e-01 3.8564699888229370e-01 <_> 0 -1 1830 -7.7688191086053848e-03 4.3617001175880432e-01 5.4343092441558838e-01 <_> 0 -1 1831 5.0878278911113739e-02 4.6827208995819092e-01 6.8406397104263306e-01 <_> 0 -1 1832 -2.2901780903339386e-03 4.3292450904846191e-01 5.3060990571975708e-01 <_> 0 -1 1833 -1.5715380141045898e-04 5.3700572252273560e-01 4.3781641125679016e-01 <_> 0 -1 1834 1.0519240051507950e-01 5.1372742652893066e-01 6.7361466586589813e-02 <_> 0 -1 1835 2.7198919560760260e-03 4.1120609641075134e-01 5.2556651830673218e-01 <_> 0 -1 1836 4.8337779939174652e-02 5.4046237468719482e-01 4.4389671087265015e-01 <_> 0 -1 1837 9.5703761326149106e-04 4.3559691309928894e-01 5.3995108604431152e-01 <_> 0 -1 1838 -2.5371259078383446e-02 5.9951752424240112e-01 5.0310248136520386e-01 <_> 0 -1 1839 5.2457951009273529e-02 4.9502879381179810e-01 1.3983510434627533e-01 <_> 0 -1 1840 -1.2365629896521568e-02 6.3972991704940796e-01 4.9641060829162598e-01 <_> 0 -1 1841 -1.4589719474315643e-01 1.0016699880361557e-01 4.9463221430778503e-01 <_> 0 -1 1842 -1.5908600762486458e-02 3.3123299479484558e-01 5.2083408832550049e-01 <_> 0 -1 1843 3.9486068999394774e-04 4.4063639640808105e-01 5.4261028766632080e-01 <_> 0 -1 1844 -5.2454001270234585e-03 2.7995899319648743e-01 5.1899671554565430e-01 <_> 0 -1 1845 -5.0421799533069134e-03 6.9875800609588623e-01 4.7521421313285828e-01 <_> 0 -1 1846 2.9812189750373363e-03 4.9832889437675476e-01 6.3074797391891479e-01 <_> 0 -1 1847 -7.2884308174252510e-03 2.9823330044746399e-01 5.0268697738647461e-01 <_> 0 -1 1848 1.5094350092113018e-03 5.3084421157836914e-01 3.8329708576202393e-01 <_> 0 -1 1849 -9.3340799212455750e-03 2.0379640161991119e-01 4.9698171019554138e-01 <_> 0 -1 1850 2.8667140752077103e-02 5.0256967544555664e-01 6.9280272722244263e-01 <_> 0 -1 1851 1.7019680142402649e-01 4.9600529670715332e-01 1.4764429628849030e-01 <_> 0 -1 1852 -3.2614478841423988e-03 5.6030637025833130e-01 4.8260560631752014e-01 <_> 0 -1 1853 5.5769277969375253e-04 5.2055621147155762e-01 4.1296330094337463e-01 <_> 0 -1 1854 3.6258339881896973e-01 5.2216529846191406e-01 3.7686121463775635e-01 <_> 0 -1 1855 -1.1615130119025707e-02 6.0226827859878540e-01 4.6374899148941040e-01 <_> 0 -1 1856 -4.0795197710394859e-03 4.0704470872879028e-01 5.3374791145324707e-01 <_> 0 -1 1857 5.7204300537705421e-04 4.6018350124359131e-01 5.9003931283950806e-01 <_> 0 -1 1858 6.7543348995968699e-04 5.3982520103454590e-01 4.3454289436340332e-01 <_> 0 -1 1859 6.3295697327703238e-04 5.2015632390975952e-01 4.0513589978218079e-01 <_> 0 -1 1860 1.2435320531949401e-03 4.6423879265785217e-01 5.5474412441253662e-01 <_> 0 -1 1861 -4.7363857738673687e-03 6.1985671520233154e-01 4.6725520491600037e-01 <_> 0 -1 1862 -6.4658462069928646e-03 6.8373328447341919e-01 5.0190007686614990e-01 <_> 0 -1 1863 3.5017321351915598e-04 4.3448030948638916e-01 5.3636229038238525e-01 <_> 0 -1 1864 1.5754920605104417e-04 4.7600790858268738e-01 5.7320207357406616e-01 <_> 0 -1 1865 9.9774366244673729e-03 5.0909858942031860e-01 3.6350399255752563e-01 <_> 0 -1 1866 -4.1464529931545258e-04 5.5700647830963135e-01 4.5938020944595337e-01 <_> 0 -1 1867 -3.5888899583369493e-04 5.3568458557128906e-01 4.3391349911689758e-01 <_> 0 -1 1868 4.0463250479660928e-04 4.4398030638694763e-01 5.4367768764495850e-01 <_> 0 -1 1869 -8.2184787606820464e-04 4.0422949194908142e-01 5.1762992143630981e-01 <_> 0 -1 1870 5.9467419050633907e-03 4.9276518821716309e-01 5.6337797641754150e-01 <_> 0 -1 1871 -2.1753389388322830e-02 8.0062937736511230e-01 4.8008409142494202e-01 <_> 0 -1 1872 -1.4540379866957664e-02 3.9460548758506775e-01 5.1822227239608765e-01 <_> 0 -1 1873 -4.0510769933462143e-02 2.1324990317225456e-02 4.9357929825782776e-01 <_> 0 -1 1874 -5.8458268176764250e-04 4.0127959847450256e-01 5.3140252828598022e-01 <_> 0 -1 1875 5.5151800625026226e-03 4.6424189209938049e-01 5.8962607383728027e-01 <_> 0 -1 1876 -6.0626221820712090e-03 6.5021592378616333e-01 5.0164777040481567e-01 <_> 0 -1 1877 9.4535842537879944e-02 5.2647089958190918e-01 4.1268271207809448e-01 <_> 0 -1 1878 4.7315051779150963e-03 4.8791998624801636e-01 5.8924478292465210e-01 <_> 0 -1 1879 -5.2571471314877272e-04 3.9172801375389099e-01 5.1894128322601318e-01 <_> 0 -1 1880 -2.5464049540460110e-03 5.8375990390777588e-01 4.9857059121131897e-01 <_> 0 -1 1881 -2.6075689122080803e-02 1.2619839608669281e-01 4.9558219313621521e-01 <_> 0 -1 1882 -5.4779709316790104e-03 5.7225137948989868e-01 5.0102657079696655e-01 <_> 0 -1 1883 5.1337741315364838e-03 5.2732622623443604e-01 4.2263761162757874e-01 <_> 0 -1 1884 4.7944980906322598e-04 4.4500669836997986e-01 5.8195871114730835e-01 <_> 0 -1 1885 -2.1114079281687737e-03 5.7576531171798706e-01 4.5117148756980896e-01 <_> 0 -1 1886 -1.3179990462958813e-02 1.8843810260295868e-01 5.1607340574264526e-01 <_> 0 -1 1887 -4.7968099825084209e-03 6.5897899866104126e-01 4.7361189126968384e-01 <_> 0 -1 1888 6.7483168095350266e-03 5.2594298124313354e-01 3.3563950657844543e-01 <_> 0 -1 1889 1.4623369788751006e-03 5.3552711009979248e-01 4.2640921473503113e-01 <_> 0 -1 1890 4.7645159065723419e-03 5.0344067811965942e-01 5.7868278026580811e-01 <_> 0 -1 1891 6.8066660314798355e-03 4.7566050291061401e-01 6.6778290271759033e-01 <_> 0 -1 1892 3.6608621012419462e-03 5.3696119785308838e-01 4.3115469813346863e-01 <_> 0 -1 1893 2.1449640393257141e-02 4.9686419963836670e-01 1.8888160586357117e-01 <_> 0 -1 1894 4.1678901761770248e-03 4.9307331442832947e-01 5.8153688907623291e-01 <_> 0 -1 1895 8.6467564105987549e-03 5.2052050828933716e-01 4.1325950622558594e-01 <_> 0 -1 1896 -3.6114078829996288e-04 5.4835551977157593e-01 4.8009279370307922e-01 <_> 0 -1 1897 1.0808729566633701e-03 4.6899020671844482e-01 6.0414212942123413e-01 <_> 0 -1 1898 5.7719959877431393e-03 5.1711422204971313e-01 3.0532771348953247e-01 <_> 0 -1 1899 1.5720770461484790e-03 5.2199780941009521e-01 4.1788038611412048e-01 <_> 0 -1 1900 -1.9307859474793077e-03 5.8603698015213013e-01 4.8129200935363770e-01 <_> 0 -1 1901 -7.8926272690296173e-03 1.7492769658565521e-01 4.9717339873313904e-01 <_> 0 -1 1902 -2.2224679123610258e-03 4.3425890803337097e-01 5.2128481864929199e-01 <_> 0 -1 1903 1.9011989934369922e-03 4.7651869058609009e-01 6.8920552730560303e-01 <_> 0 -1 1904 2.7576119173318148e-03 5.2621912956237793e-01 4.3374860286712646e-01 <_> 0 -1 1905 5.1787449046969414e-03 4.8040691018104553e-01 7.8437292575836182e-01 <_> 0 -1 1906 -9.0273341629654169e-04 4.1208469867706299e-01 5.3534239530563354e-01 <_> 0 -1 1907 5.1797959022223949e-03 4.7403728961944580e-01 6.4259600639343262e-01 <_> 0 -1 1908 -1.0114000178873539e-02 2.4687920510768890e-01 5.1750177145004272e-01 <_> 0 -1 1909 -1.8617060035467148e-02 5.7562941312789917e-01 4.6289789676666260e-01 <_> 0 -1 1910 5.9225959703326225e-03 5.1696258783340454e-01 3.2142710685729980e-01 <_> 0 -1 1911 -6.2945079989731312e-03 3.8720148801803589e-01 5.1416367292404175e-01 <_> 0 -1 1912 6.5353019163012505e-03 4.8530489206314087e-01 6.3104897737503052e-01 <_> 0 -1 1913 1.0878399480134249e-03 5.1173150539398193e-01 3.7232589721679688e-01 <_> 0 -1 1914 -2.2542240098118782e-02 5.6927400827407837e-01 4.8871129751205444e-01 <_> 0 -1 1915 -3.0065660830587149e-03 2.5560128688812256e-01 5.0039929151535034e-01 <_> 0 -1 1916 7.4741272255778313e-03 4.8108729720115662e-01 5.6759268045425415e-01 <_> 0 -1 1917 2.6162320747971535e-02 4.9711948633193970e-01 1.7772370576858521e-01 <_> 0 -1 1918 9.4352738233283162e-04 4.9400109052658081e-01 5.4912507534027100e-01 <_> 0 -1 1919 3.3363241702318192e-02 5.0076121091842651e-01 2.7907240390777588e-01 <_> 0 -1 1920 -1.5118650160729885e-02 7.0595788955688477e-01 4.9730318784713745e-01 <_> 0 -1 1921 9.8648946732282639e-04 5.1286202669143677e-01 3.7767618894577026e-01 <_> 213 1.0576110076904297e+02 <_> 0 -1 1922 -9.5150798559188843e-02 6.4707571268081665e-01 4.0172868967056274e-01 <_> 0 -1 1923 6.2702340073883533e-03 3.9998221397399902e-01 5.7464492321014404e-01 <_> 0 -1 1924 3.0018089455552399e-04 3.5587701201438904e-01 5.5388098955154419e-01 <_> 0 -1 1925 1.1757409665733576e-03 4.2565348744392395e-01 5.3826177120208740e-01 <_> 0 -1 1926 4.4235268433112651e-05 3.6829081177711487e-01 5.5899268388748169e-01 <_> 0 -1 1927 -2.9936920327600092e-05 5.4524701833724976e-01 4.0203678607940674e-01 <_> 0 -1 1928 3.0073199886828661e-03 5.2390581369400024e-01 3.3178439736366272e-01 <_> 0 -1 1929 -1.0513889603316784e-02 4.3206891417503357e-01 5.3079837560653687e-01 <_> 0 -1 1930 8.3476826548576355e-03 4.5046371221542358e-01 6.4532989263534546e-01 <_> 0 -1 1931 -3.1492270063608885e-03 4.3134251236915588e-01 5.3705251216888428e-01 <_> 0 -1 1932 -1.4435649973165710e-05 5.3266030550003052e-01 3.8179719448089600e-01 <_> 0 -1 1933 -4.2855090578086674e-04 4.3051639199256897e-01 5.3820097446441650e-01 <_> 0 -1 1934 1.5062429883982986e-04 4.2359709739685059e-01 5.5449652671813965e-01 <_> 0 -1 1935 7.1559831500053406e-02 5.3030598163604736e-01 2.6788029074668884e-01 <_> 0 -1 1936 8.4095180500298738e-04 3.5571089386940002e-01 5.2054339647293091e-01 <_> 0 -1 1937 6.2986500561237335e-02 5.2253627777099609e-01 2.8613761067390442e-01 <_> 0 -1 1938 -3.3798629883676767e-03 3.6241859197616577e-01 5.2016979455947876e-01 <_> 0 -1 1939 -1.1810739670181647e-04 5.4744768142700195e-01 3.9598938822746277e-01 <_> 0 -1 1940 -5.4505601292476058e-04 3.7404221296310425e-01 5.2157157659530640e-01 <_> 0 -1 1941 -1.8454910023137927e-03 5.8930522203445435e-01 4.5844489336013794e-01 <_> 0 -1 1942 -4.3832371011376381e-04 4.0845820307731628e-01 5.3853511810302734e-01 <_> 0 -1 1943 -2.4000830017030239e-03 3.7774550914764404e-01 5.2935802936553955e-01 <_> 0 -1 1944 -9.8795741796493530e-02 2.9636120796203613e-01 5.0700891017913818e-01 <_> 0 -1 1945 3.1798239797353745e-03 4.8776328563690186e-01 6.7264437675476074e-01 <_> 0 -1 1946 3.2406419632025063e-04 4.3669110536575317e-01 5.5611097812652588e-01 <_> 0 -1 1947 -3.2547250390052795e-02 3.1281578540802002e-01 5.3086161613464355e-01 <_> 0 -1 1948 -7.7561130747199059e-03 6.5602248907089233e-01 4.6398720145225525e-01 <_> 0 -1 1949 1.6027249395847321e-02 5.1726800203323364e-01 3.1418979167938232e-01 <_> 0 -1 1950 7.1002350523485802e-06 4.0844461321830750e-01 5.3362947702407837e-01 <_> 0 -1 1951 7.3422808200120926e-03 4.9669221043586731e-01 6.6034650802612305e-01 <_> 0 -1 1952 -1.6970280557870865e-03 5.9082370996475220e-01 4.5001828670501709e-01 <_> 0 -1 1953 2.4118260480463505e-03 5.3151607513427734e-01 3.5997208952903748e-01 <_> 0 -1 1954 -5.5300937965512276e-03 2.3340409994125366e-01 4.9968141317367554e-01 <_> 0 -1 1955 -2.6478730142116547e-03 5.8809357881546021e-01 4.6847340464591980e-01 <_> 0 -1 1956 1.1295629665255547e-02 4.9837771058082581e-01 1.8845909833908081e-01 <_> 0 -1 1957 -6.6952878842130303e-04 5.8721381425857544e-01 4.7990199923515320e-01 <_> 0 -1 1958 1.4410680159926414e-03 5.1311892271041870e-01 3.5010111331939697e-01 <_> 0 -1 1959 2.4637870956212282e-03 5.3393721580505371e-01 4.1176390647888184e-01 <_> 0 -1 1960 3.3114518737420440e-04 4.3133831024169922e-01 5.3982460498809814e-01 <_> 0 -1 1961 -3.3557269722223282e-02 2.6753368973731995e-01 5.1791548728942871e-01 <_> 0 -1 1962 1.8539419397711754e-02 4.9738699197769165e-01 2.3171770572662354e-01 <_> 0 -1 1963 -2.9698139405809343e-04 5.5297082662582397e-01 4.6436640620231628e-01 <_> 0 -1 1964 -4.5577259152196348e-04 5.6295841932296753e-01 4.4691911339759827e-01 <_> 0 -1 1965 -1.0158980265259743e-02 6.7062127590179443e-01 4.9259188771247864e-01 <_> 0 -1 1966 -2.2413829356082715e-05 5.2394217252731323e-01 3.9129018783569336e-01 <_> 0 -1 1967 7.2034963523037732e-05 4.7994381189346313e-01 5.5017888545989990e-01 <_> 0 -1 1968 -6.9267209619283676e-03 6.9300097227096558e-01 4.6980848908424377e-01 <_> 0 -1 1969 -7.6997838914394379e-03 4.0996238589286804e-01 5.4808831214904785e-01 <_> 0 -1 1970 -7.3130549862980843e-03 3.2834759354591370e-01 5.0578862428665161e-01 <_> 0 -1 1971 1.9650589674711227e-03 4.9780470132827759e-01 6.3982498645782471e-01 <_> 0 -1 1972 7.1647600270807743e-03 4.6611601114273071e-01 6.2221372127532959e-01 <_> 0 -1 1973 -2.4078639224171638e-02 2.3346449434757233e-01 5.2221620082855225e-01 <_> 0 -1 1974 -2.1027969196438789e-02 1.1836539953947067e-01 4.9382260441780090e-01 <_> 0 -1 1975 3.6017020465806127e-04 5.3250199556350708e-01 4.1167110204696655e-01 <_> 0 -1 1976 -1.7219729721546173e-02 6.2787622213363647e-01 4.6642690896987915e-01 <_> 0 -1 1977 -7.8672142699360847e-03 3.4034150838851929e-01 5.2497369050979614e-01 <_> 0 -1 1978 -4.4777389848604798e-04 3.6104118824005127e-01 5.0862592458724976e-01 <_> 0 -1 1979 5.5486010387539864e-03 4.8842659592628479e-01 6.2034982442855835e-01 <_> 0 -1 1980 -6.9461148232221603e-03 2.6259300112724304e-01 5.0110971927642822e-01 <_> 0 -1 1981 1.3569870498031378e-04 4.3407949805259705e-01 5.6283122301101685e-01 <_> 0 -1 1982 -4.5880250632762909e-02 6.5079987049102783e-01 4.6962749958038330e-01 <_> 0 -1 1983 -2.1582560613751411e-02 3.8265028595924377e-01 5.2876168489456177e-01 <_> 0 -1 1984 -2.0209539681673050e-02 3.2333680987358093e-01 5.0744771957397461e-01 <_> 0 -1 1985 5.8496710844337940e-03 5.1776039600372314e-01 4.4896709918975830e-01 <_> 0 -1 1986 -5.7476379879517481e-05 4.0208509564399719e-01 5.2463638782501221e-01 <_> 0 -1 1987 -1.1513100471347570e-03 6.3150721788406372e-01 4.9051541090011597e-01 <_> 0 -1 1988 1.9862831104546785e-03 4.7024598717689514e-01 6.4971512556076050e-01 <_> 0 -1 1989 -5.2719512023031712e-03 3.6503839492797852e-01 5.2276527881622314e-01 <_> 0 -1 1990 1.2662699446082115e-03 5.1661008596420288e-01 3.8776180148124695e-01 <_> 0 -1 1991 -6.2919440679252148e-03 7.3758941888809204e-01 5.0238478183746338e-01 <_> 0 -1 1992 6.7360111279413104e-04 4.4232261180877686e-01 5.4955857992172241e-01 <_> 0 -1 1993 -1.0523450328037143e-03 5.9763962030410767e-01 4.8595830798149109e-01 <_> 0 -1 1994 -4.4216238893568516e-04 5.9559392929077148e-01 4.3989309668540955e-01 <_> 0 -1 1995 1.1747940443456173e-03 5.3498882055282593e-01 4.6050581336021423e-01 <_> 0 -1 1996 5.2457437850534916e-03 5.0491911172866821e-01 2.9415771365165710e-01 <_> 0 -1 1997 -2.4539720267057419e-02 2.5501778721809387e-01 5.2185869216918945e-01 <_> 0 -1 1998 7.3793041519820690e-04 4.4248610734939575e-01 5.4908162355422974e-01 <_> 0 -1 1999 1.4233799884095788e-03 5.3195142745971680e-01 4.0813559293746948e-01 <_> 0 -1 2000 -2.4149110540747643e-03 4.0876591205596924e-01 5.2389502525329590e-01 <_> 0 -1 2001 -1.2165299849584699e-03 5.6745791435241699e-01 4.9080529808998108e-01 <_> 0 -1 2002 -1.2438809499144554e-03 4.1294258832931519e-01 5.2561181783676147e-01 <_> 0 -1 2003 6.1942739412188530e-03 5.0601941347122192e-01 7.3136532306671143e-01 <_> 0 -1 2004 -1.6607169527560472e-03 5.9796321392059326e-01 4.5963698625564575e-01 <_> 0 -1 2005 -2.7316259220242500e-02 4.1743651032447815e-01 5.3088420629501343e-01 <_> 0 -1 2006 -1.5845570014789701e-03 5.6158047914505005e-01 4.5194861292839050e-01 <_> 0 -1 2007 -1.5514739789068699e-03 4.0761870145797729e-01 5.3607851266860962e-01 <_> 0 -1 2008 3.8446558755822480e-04 4.3472939729690552e-01 5.4304420948028564e-01 <_> 0 -1 2009 -1.4672259800136089e-02 1.6593049466609955e-01 5.1460939645767212e-01 <_> 0 -1 2010 8.1608882173895836e-03 4.9618190526962280e-01 1.8847459554672241e-01 <_> 0 -1 2011 1.1121659772470593e-03 4.8682639002799988e-01 6.0938161611557007e-01 <_> 0 -1 2012 -7.2603770531713963e-03 6.2843251228332520e-01 4.6903759241104126e-01 <_> 0 -1 2013 -2.4046430189628154e-04 5.5750000476837158e-01 4.0460440516471863e-01 <_> 0 -1 2014 -2.3348190006799996e-04 4.1157621145248413e-01 5.2528482675552368e-01 <_> 0 -1 2015 5.5736480280756950e-03 4.7300729155540466e-01 5.6901007890701294e-01 <_> 0 -1 2016 3.0623769387602806e-02 4.9718868732452393e-01 1.7400950193405151e-01 <_> 0 -1 2017 9.2074798885732889e-04 5.3721177577972412e-01 4.3548721075057983e-01 <_> 0 -1 2018 -4.3550739064812660e-05 5.3668838739395142e-01 4.3473169207572937e-01 <_> 0 -1 2019 -6.6452710889279842e-03 3.4355181455612183e-01 5.1605331897735596e-01 <_> 0 -1 2020 4.3221998959779739e-02 4.7667920589447021e-01 7.2936528921127319e-01 <_> 0 -1 2021 2.2331769578158855e-03 5.0293159484863281e-01 5.6331712007522583e-01 <_> 0 -1 2022 3.1829739455133677e-03 4.0160921216011047e-01 5.1921367645263672e-01 <_> 0 -1 2023 -1.8027749320026487e-04 4.0883159637451172e-01 5.4179197549819946e-01 <_> 0 -1 2024 -5.2934689447283745e-03 4.0756770968437195e-01 5.2435618638992310e-01 <_> 0 -1 2025 1.2750959722325206e-03 4.9132829904556274e-01 6.3870108127593994e-01 <_> 0 -1 2026 4.3385322205722332e-03 5.0316721200942993e-01 2.9473468661308289e-01 <_> 0 -1 2027 8.5250744596123695e-03 4.9497890472412109e-01 6.3088691234588623e-01 <_> 0 -1 2028 -9.4266352243721485e-04 5.3283667564392090e-01 4.2856499552726746e-01 <_> 0 -1 2029 1.3609660090878606e-03 4.9915251135826111e-01 5.9415012598037720e-01 <_> 0 -1 2030 4.4782509212382138e-04 4.5735040307044983e-01 5.8544808626174927e-01 <_> 0 -1 2031 1.3360050506889820e-03 4.6043589711189270e-01 5.8490520715713501e-01 <_> 0 -1 2032 -6.0967548051849008e-04 3.9693889021873474e-01 5.2294230461120605e-01 <_> 0 -1 2033 -2.3656780831515789e-03 5.8083200454711914e-01 4.8983570933341980e-01 <_> 0 -1 2034 1.0734340175986290e-03 4.3512108922004700e-01 5.4700392484664917e-01 <_> 0 -1 2035 2.1923359017819166e-03 5.3550601005554199e-01 3.8429039716720581e-01 <_> 0 -1 2036 5.4968618787825108e-03 5.0181388854980469e-01 2.8271919488906860e-01 <_> 0 -1 2037 -7.5368821620941162e-02 1.2250760197639465e-01 5.1488268375396729e-01 <_> 0 -1 2038 2.5134470313787460e-02 4.7317668795585632e-01 7.0254462957382202e-01 <_> 0 -1 2039 -2.9358599931583740e-05 5.4305320978164673e-01 4.6560868620872498e-01 <_> 0 -1 2040 -5.8355910005047917e-04 4.0310400724411011e-01 5.1901197433471680e-01 <_> 0 -1 2041 -2.6639450807124376e-03 4.3081268668174744e-01 5.1617711782455444e-01 <_> 0 -1 2042 -1.3804089976474643e-03 6.2198299169540405e-01 4.6955159306526184e-01 <_> 0 -1 2043 1.2313219485804439e-03 5.3793638944625854e-01 4.4258311390876770e-01 <_> 0 -1 2044 -1.4644179827882908e-05 5.2816402912139893e-01 4.2225030064582825e-01 <_> 0 -1 2045 -1.2818809598684311e-02 2.5820928812026978e-01 5.1799327135086060e-01 <_> 0 -1 2046 2.2852189838886261e-02 4.7786930203437805e-01 7.6092642545700073e-01 <_> 0 -1 2047 8.2305970136076212e-04 5.3409922122955322e-01 4.6717241406440735e-01 <_> 0 -1 2048 1.2770120054483414e-02 4.9657610058784485e-01 1.4723660051822662e-01 <_> 0 -1 2049 -5.0051510334014893e-02 6.4149940013885498e-01 5.0165921449661255e-01 <_> 0 -1 2050 1.5775270760059357e-02 4.5223200321197510e-01 5.6853622198104858e-01 <_> 0 -1 2051 -1.8501620739698410e-02 2.7647489309310913e-01 5.1379591226577759e-01 <_> 0 -1 2052 2.4626250378787518e-03 5.1419419050216675e-01 3.7954080104827881e-01 <_> 0 -1 2053 6.2916167080402374e-02 5.0606489181518555e-01 6.5804338455200195e-01 <_> 0 -1 2054 -2.1648500478477217e-05 5.1953881978988647e-01 4.0198868513107300e-01 <_> 0 -1 2055 2.1180990152060986e-03 4.9623650312423706e-01 5.9544587135314941e-01 <_> 0 -1 2056 -1.6634890809655190e-02 3.7579330801963806e-01 5.1754468679428101e-01 <_> 0 -1 2057 -2.8899470344185829e-03 6.6240137815475464e-01 5.0571787357330322e-01 <_> 0 -1 2058 7.6783262193202972e-02 4.7957968711853027e-01 8.0477148294448853e-01 <_> 0 -1 2059 3.9170677773654461e-03 4.9378821253776550e-01 5.7199418544769287e-01 <_> 0 -1 2060 -7.2670601308345795e-02 5.3894560784101486e-02 4.9439039826393127e-01 <_> 0 -1 2061 5.4039502143859863e-01 5.1297742128372192e-01 1.1433389782905579e-01 <_> 0 -1 2062 2.9510019812732935e-03 4.5283439755439758e-01 5.6985741853713989e-01 <_> 0 -1 2063 3.4508369863033295e-03 5.3577268123626709e-01 4.2187309265136719e-01 <_> 0 -1 2064 -4.2077939724549651e-04 5.9161728620529175e-01 4.6379259228706360e-01 <_> 0 -1 2065 3.3051050268113613e-03 5.2733850479125977e-01 4.3820428848266602e-01 <_> 0 -1 2066 4.7735060798004270e-04 4.0465280413627625e-01 5.1818847656250000e-01 <_> 0 -1 2067 -2.5928510352969170e-02 7.4522358179092407e-01 5.0893861055374146e-01 <_> 0 -1 2068 -2.9729790985584259e-03 3.2954359054565430e-01 5.0587952136993408e-01 <_> 0 -1 2069 5.8508329093456268e-03 4.8571440577507019e-01 5.7930248975753784e-01 <_> 0 -1 2070 -4.5967519283294678e-02 4.3127310276031494e-01 5.3806531429290771e-01 <_> 0 -1 2071 1.5585960447788239e-01 5.1961702108383179e-01 1.6847139596939087e-01 <_> 0 -1 2072 1.5164829790592194e-02 4.7357571125030518e-01 6.7350268363952637e-01 <_> 0 -1 2073 -1.0604249546304345e-03 5.8229267597198486e-01 4.7757029533386230e-01 <_> 0 -1 2074 6.6476291976869106e-03 4.9991989135742188e-01 2.3195350170135498e-01 <_> 0 -1 2075 -1.2231130152940750e-02 4.7508931159973145e-01 5.2629822492599487e-01 <_> 0 -1 2076 5.6528882123529911e-03 5.0697678327560425e-01 3.5618188977241516e-01 <_> 0 -1 2077 1.2977829901501536e-03 4.8756939172744751e-01 5.6190627813339233e-01 <_> 0 -1 2078 1.0781589895486832e-02 4.7507700324058533e-01 6.7823082208633423e-01 <_> 0 -1 2079 2.8654779307544231e-03 5.3054618835449219e-01 4.2907360196113586e-01 <_> 0 -1 2080 2.8663428965955973e-03 4.5184791088104248e-01 5.5393511056900024e-01 <_> 0 -1 2081 -5.1983320154249668e-03 4.1491198539733887e-01 5.4341888427734375e-01 <_> 0 -1 2082 5.3739990107715130e-03 4.7178968787193298e-01 6.5076571702957153e-01 <_> 0 -1 2083 -1.4641529880464077e-02 2.1721640229225159e-01 5.1617771387100220e-01 <_> 0 -1 2084 -1.5042580344015732e-05 5.3373837471008301e-01 4.2988368868827820e-01 <_> 0 -1 2085 -1.1875660129589960e-04 4.6045941114425659e-01 5.5824470520019531e-01 <_> 0 -1 2086 1.6995530575513840e-02 4.9458950757980347e-01 7.3880076408386230e-02 <_> 0 -1 2087 -3.5095941275358200e-02 7.0055091381072998e-01 4.9775910377502441e-01 <_> 0 -1 2088 2.4217350874096155e-03 4.4662651419639587e-01 5.4776942729949951e-01 <_> 0 -1 2089 -9.6340337768197060e-04 4.7140988707542419e-01 5.3133380413055420e-01 <_> 0 -1 2090 1.6391130338888615e-04 4.3315461277961731e-01 5.3422421216964722e-01 <_> 0 -1 2091 -2.1141460165381432e-02 2.6447001099586487e-01 5.2044987678527832e-01 <_> 0 -1 2092 8.7775202700868249e-04 5.2083498239517212e-01 4.1527429223060608e-01 <_> 0 -1 2093 -2.7943920344114304e-02 6.3441252708435059e-01 5.0188118219375610e-01 <_> 0 -1 2094 6.7297378554940224e-03 5.0504380464553833e-01 3.5008639097213745e-01 <_> 0 -1 2095 2.3281039670109749e-02 4.9663180112838745e-01 6.9686770439147949e-01 <_> 0 -1 2096 -1.1644979938864708e-02 3.3002600073814392e-01 5.0496298074722290e-01 <_> 0 -1 2097 1.5764309093356133e-02 4.9915981292724609e-01 7.3211538791656494e-01 <_> 0 -1 2098 -1.3611479662358761e-03 3.9117351174354553e-01 5.1606708765029907e-01 <_> 0 -1 2099 -8.1522337859496474e-04 5.6289112567901611e-01 4.9497190117835999e-01 <_> 0 -1 2100 -6.0066272271797061e-04 5.8535951375961304e-01 4.5505958795547485e-01 <_> 0 -1 2101 4.9715518252924085e-04 4.2714700102806091e-01 5.4435992240905762e-01 <_> 0 -1 2102 2.3475370835512877e-03 5.1431107521057129e-01 3.8876569271087646e-01 <_> 0 -1 2103 -8.9261569082736969e-03 6.0445022583007812e-01 4.9717208743095398e-01 <_> 0 -1 2104 -1.3919910416007042e-02 2.5831609964370728e-01 5.0003677606582642e-01 <_> 0 -1 2105 1.0209949687123299e-03 4.8573741316795349e-01 5.5603581666946411e-01 <_> 0 -1 2106 -2.7441629208624363e-03 5.9368848800659180e-01 4.6457770466804504e-01 <_> 0 -1 2107 -1.6200130805373192e-02 3.1630149483680725e-01 5.1934951543807983e-01 <_> 0 -1 2108 4.3331980705261230e-03 5.0612241029739380e-01 3.4588789939880371e-01 <_> 0 -1 2109 5.8497930876910686e-04 4.7790178656578064e-01 5.8701777458190918e-01 <_> 0 -1 2110 -2.2466450463980436e-03 4.2978510260581970e-01 5.3747731447219849e-01 <_> 0 -1 2111 2.3146099410951138e-03 5.4386717081069946e-01 4.6409699320793152e-01 <_> 0 -1 2112 8.7679121643304825e-03 4.7268930077552795e-01 6.7717897891998291e-01 <_> 0 -1 2113 -2.2448020172305405e-04 4.2291730642318726e-01 5.4280489683151245e-01 <_> 0 -1 2114 -7.4336021207273006e-03 6.0988807678222656e-01 4.6836739778518677e-01 <_> 0 -1 2115 -2.3189240600913763e-03 5.6894367933273315e-01 4.4242420792579651e-01 <_> 0 -1 2116 -2.1042178850620985e-03 3.7622210383415222e-01 5.1870870590209961e-01 <_> 0 -1 2117 4.6034841216169298e-04 4.6994051337242126e-01 5.7712072134017944e-01 <_> 0 -1 2118 1.0547629790380597e-03 4.4652169942855835e-01 5.6017017364501953e-01 <_> 0 -1 2119 8.7148818420246243e-04 5.4498052597045898e-01 3.9147090911865234e-01 <_> 0 -1 2120 3.3364820410497487e-04 4.5640090107917786e-01 5.6457388401031494e-01 <_> 0 -1 2121 -1.4853250468149781e-03 5.7473778724670410e-01 4.6927788853645325e-01 <_> 0 -1 2122 3.0251620337367058e-03 5.1661968231201172e-01 3.7628141045570374e-01 <_> 0 -1 2123 5.0280741415917873e-03 5.0021117925643921e-01 6.1515271663665771e-01 <_> 0 -1 2124 -5.8164511574432254e-04 5.3945982456207275e-01 4.3907511234283447e-01 <_> 0 -1 2125 4.5141529291868210e-02 5.1883268356323242e-01 2.0630359649658203e-01 <_> 0 -1 2126 -1.0795620037242770e-03 3.9046850800514221e-01 5.1379072666168213e-01 <_> 0 -1 2127 1.5995999274309725e-04 4.8953229188919067e-01 5.4275041818618774e-01 <_> 0 -1 2128 -1.9359270110726357e-02 6.9752287864685059e-01 4.7735071182250977e-01 <_> 0 -1 2129 2.0725509524345398e-01 5.2336359024047852e-01 3.0349919199943542e-01 <_> 0 -1 2130 -4.1953290929086506e-04 5.4193967580795288e-01 4.4601860642433167e-01 <_> 0 -1 2131 2.2582069505006075e-03 4.8157641291618347e-01 6.0274088382720947e-01 <_> 0 -1 2132 -6.7811207845807076e-03 3.9802789688110352e-01 5.1833057403564453e-01 <_> 0 -1 2133 1.1154309846460819e-02 5.4312318563461304e-01 4.1887599229812622e-01 <_> 0 -1 2134 4.3162431567907333e-02 4.7382280230522156e-01 6.5229612588882446e-01 <_> <_> 3 7 14 4 -1. <_> 3 9 14 2 2. <_> <_> 1 2 18 4 -1. <_> 7 2 6 4 3. <_> <_> 1 7 15 9 -1. <_> 1 10 15 3 3. <_> <_> 5 6 2 6 -1. <_> 5 9 2 3 2. <_> <_> 7 5 6 3 -1. <_> 9 5 2 3 3. <_> <_> 4 0 12 9 -1. <_> 4 3 12 3 3. <_> <_> 6 9 10 8 -1. <_> 6 13 10 4 2. <_> <_> 3 6 14 8 -1. <_> 3 10 14 4 2. <_> <_> 14 1 6 10 -1. <_> 14 1 3 10 2. <_> <_> 7 8 5 12 -1. <_> 7 12 5 4 3. <_> <_> 1 1 18 3 -1. <_> 7 1 6 3 3. <_> <_> 1 8 17 2 -1. <_> 1 9 17 1 2. <_> <_> 16 6 4 2 -1. <_> 16 7 4 1 2. <_> <_> 5 17 2 2 -1. <_> 5 18 2 1 2. <_> <_> 14 2 6 12 -1. <_> 14 2 3 12 2. <_> <_> 4 0 4 12 -1. <_> 4 0 2 6 2. <_> 6 6 2 6 2. <_> <_> 2 11 18 8 -1. <_> 8 11 6 8 3. <_> <_> 5 7 10 2 -1. <_> 5 8 10 1 2. <_> <_> 15 11 5 3 -1. <_> 15 12 5 1 3. <_> <_> 5 3 10 9 -1. <_> 5 6 10 3 3. <_> <_> 9 4 2 14 -1. <_> 9 11 2 7 2. <_> <_> 3 5 4 12 -1. <_> 3 9 4 4 3. <_> <_> 4 5 12 5 -1. <_> 8 5 4 5 3. <_> <_> 5 6 10 8 -1. <_> 5 10 10 4 2. <_> <_> 8 0 6 9 -1. <_> 8 3 6 3 3. <_> <_> 9 12 1 8 -1. <_> 9 16 1 4 2. <_> <_> 0 7 20 6 -1. <_> 0 9 20 2 3. <_> <_> 7 0 6 17 -1. <_> 9 0 2 17 3. <_> <_> 9 0 6 4 -1. <_> 11 0 2 4 3. <_> <_> 5 1 6 4 -1. <_> 7 1 2 4 3. <_> <_> 12 1 6 16 -1. <_> 14 1 2 16 3. <_> <_> 0 5 18 8 -1. <_> 0 5 9 4 2. <_> 9 9 9 4 2. <_> <_> 8 15 10 4 -1. <_> 13 15 5 2 2. <_> 8 17 5 2 2. <_> <_> 3 1 4 8 -1. <_> 3 1 2 4 2. <_> 5 5 2 4 2. <_> <_> 3 6 14 10 -1. <_> 10 6 7 5 2. <_> 3 11 7 5 2. <_> <_> 2 1 6 16 -1. <_> 4 1 2 16 3. <_> <_> 0 18 20 2 -1. <_> 0 19 20 1 2. <_> <_> 8 13 4 3 -1. <_> 8 14 4 1 3. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 0 12 9 6 -1. <_> 0 14 9 2 3. <_> <_> 5 7 3 4 -1. <_> 5 9 3 2 2. <_> <_> 9 3 2 16 -1. <_> 9 11 2 8 2. <_> <_> 3 6 13 8 -1. <_> 3 10 13 4 2. <_> <_> 12 3 8 2 -1. <_> 12 3 4 2 2. <_> <_> 8 8 4 12 -1. <_> 8 12 4 4 3. <_> <_> 11 3 8 6 -1. <_> 15 3 4 3 2. <_> 11 6 4 3 2. <_> <_> 7 1 6 19 -1. <_> 9 1 2 19 3. <_> <_> 9 0 6 4 -1. <_> 11 0 2 4 3. <_> <_> 3 1 9 3 -1. <_> 6 1 3 3 3. <_> <_> 8 15 10 4 -1. <_> 13 15 5 2 2. <_> 8 17 5 2 2. <_> <_> 0 3 6 10 -1. <_> 3 3 3 10 2. <_> <_> 3 4 15 15 -1. <_> 3 9 15 5 3. <_> <_> 6 5 8 6 -1. <_> 6 7 8 2 3. <_> <_> 4 4 12 10 -1. <_> 10 4 6 5 2. <_> 4 9 6 5 2. <_> <_> 6 4 4 4 -1. <_> 8 4 2 4 2. <_> <_> 15 11 1 2 -1. <_> 15 12 1 1 2. <_> <_> 3 11 2 2 -1. <_> 3 12 2 1 2. <_> <_> 16 11 1 3 -1. <_> 16 12 1 1 3. <_> <_> 3 15 6 4 -1. <_> 3 15 3 2 2. <_> 6 17 3 2 2. <_> <_> 6 7 8 2 -1. <_> 6 8 8 1 2. <_> <_> 3 11 1 3 -1. <_> 3 12 1 1 3. <_> <_> 6 0 12 2 -1. <_> 6 1 12 1 2. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 7 15 6 2 -1. <_> 7 16 6 1 2. <_> <_> 0 5 4 6 -1. <_> 0 7 4 2 3. <_> <_> 4 12 12 2 -1. <_> 8 12 4 2 3. <_> <_> 6 3 1 9 -1. <_> 6 6 1 3 3. <_> <_> 10 17 3 2 -1. <_> 11 17 1 2 3. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 7 6 6 4 -1. <_> 9 6 2 4 3. <_> <_> 7 17 3 2 -1. <_> 8 17 1 2 3. <_> <_> 10 17 3 3 -1. <_> 11 17 1 3 3. <_> <_> 8 12 3 2 -1. <_> 8 13 3 1 2. <_> <_> 9 3 6 2 -1. <_> 11 3 2 2 3. <_> <_> 3 11 14 4 -1. <_> 3 13 14 2 2. <_> <_> 1 10 18 4 -1. <_> 10 10 9 2 2. <_> 1 12 9 2 2. <_> <_> 0 10 3 3 -1. <_> 0 11 3 1 3. <_> <_> 9 1 6 6 -1. <_> 11 1 2 6 3. <_> <_> 8 7 3 6 -1. <_> 9 7 1 6 3. <_> <_> 1 0 18 9 -1. <_> 1 3 18 3 3. <_> <_> 12 10 2 6 -1. <_> 12 13 2 3 2. <_> <_> 0 5 19 8 -1. <_> 0 9 19 4 2. <_> <_> 7 0 6 9 -1. <_> 9 0 2 9 3. <_> <_> 5 3 6 1 -1. <_> 7 3 2 1 3. <_> <_> 11 3 6 1 -1. <_> 13 3 2 1 3. <_> <_> 5 10 4 6 -1. <_> 5 13 4 3 2. <_> <_> 11 3 6 1 -1. <_> 13 3 2 1 3. <_> <_> 4 4 12 6 -1. <_> 4 6 12 2 3. <_> <_> 15 12 2 6 -1. <_> 15 14 2 2 3. <_> <_> 9 3 2 2 -1. <_> 10 3 1 2 2. <_> <_> 9 3 3 1 -1. <_> 10 3 1 1 3. <_> <_> 1 1 4 14 -1. <_> 3 1 2 14 2. <_> <_> 9 0 4 4 -1. <_> 11 0 2 2 2. <_> 9 2 2 2 2. <_> <_> 7 5 1 14 -1. <_> 7 12 1 7 2. <_> <_> 19 0 1 4 -1. <_> 19 2 1 2 2. <_> <_> 5 5 6 4 -1. <_> 8 5 3 4 2. <_> <_> 9 18 3 2 -1. <_> 10 18 1 2 3. <_> <_> 8 18 3 2 -1. <_> 9 18 1 2 3. <_> <_> 4 5 12 6 -1. <_> 4 7 12 2 3. <_> <_> 3 12 2 6 -1. <_> 3 14 2 2 3. <_> <_> 10 8 2 12 -1. <_> 10 12 2 4 3. <_> <_> 7 18 3 2 -1. <_> 8 18 1 2 3. <_> <_> 9 0 6 2 -1. <_> 11 0 2 2 3. <_> <_> 5 11 9 3 -1. <_> 5 12 9 1 3. <_> <_> 9 0 6 2 -1. <_> 11 0 2 2 3. <_> <_> 1 1 18 5 -1. <_> 7 1 6 5 3. <_> <_> 8 0 4 4 -1. <_> 10 0 2 2 2. <_> 8 2 2 2 2. <_> <_> 3 12 1 3 -1. <_> 3 13 1 1 3. <_> <_> 8 14 5 3 -1. <_> 8 15 5 1 3. <_> <_> 5 4 10 12 -1. <_> 5 4 5 6 2. <_> 10 10 5 6 2. <_> <_> 9 6 9 12 -1. <_> 9 10 9 4 3. <_> <_> 2 2 12 14 -1. <_> 2 2 6 7 2. <_> 8 9 6 7 2. <_> <_> 4 7 12 2 -1. <_> 8 7 4 2 3. <_> <_> 7 4 6 4 -1. <_> 7 6 6 2 2. <_> <_> 4 5 11 8 -1. <_> 4 9 11 4 2. <_> <_> 3 10 16 4 -1. <_> 3 12 16 2 2. <_> <_> 0 0 16 2 -1. <_> 0 1 16 1 2. <_> <_> 7 5 6 2 -1. <_> 9 5 2 2 3. <_> <_> 3 2 6 10 -1. <_> 3 2 3 5 2. <_> 6 7 3 5 2. <_> <_> 10 5 8 15 -1. <_> 10 10 8 5 3. <_> <_> 3 14 8 6 -1. <_> 3 14 4 3 2. <_> 7 17 4 3 2. <_> <_> 14 2 2 2 -1. <_> 14 3 2 1 2. <_> <_> 1 10 7 6 -1. <_> 1 13 7 3 2. <_> <_> 15 4 4 3 -1. <_> 15 4 2 3 2. <_> <_> 2 9 14 6 -1. <_> 2 9 7 3 2. <_> 9 12 7 3 2. <_> <_> 5 7 10 4 -1. <_> 5 9 10 2 2. <_> <_> 6 9 8 8 -1. <_> 6 9 4 4 2. <_> 10 13 4 4 2. <_> <_> 14 1 3 2 -1. <_> 14 2 3 1 2. <_> <_> 1 4 4 2 -1. <_> 3 4 2 2 2. <_> <_> 11 10 2 8 -1. <_> 11 14 2 4 2. <_> <_> 0 0 5 3 -1. <_> 0 1 5 1 3. <_> <_> 2 5 18 8 -1. <_> 11 5 9 4 2. <_> 2 9 9 4 2. <_> <_> 6 6 1 6 -1. <_> 6 9 1 3 2. <_> <_> 19 1 1 3 -1. <_> 19 2 1 1 3. <_> <_> 7 6 6 6 -1. <_> 9 6 2 6 3. <_> <_> 19 1 1 3 -1. <_> 19 2 1 1 3. <_> <_> 3 13 2 3 -1. <_> 3 14 2 1 3. <_> <_> 8 4 8 12 -1. <_> 12 4 4 6 2. <_> 8 10 4 6 2. <_> <_> 5 2 6 3 -1. <_> 7 2 2 3 3. <_> <_> 6 1 9 10 -1. <_> 6 6 9 5 2. <_> <_> 0 4 6 12 -1. <_> 2 4 2 12 3. <_> <_> 15 13 2 3 -1. <_> 15 14 2 1 3. <_> <_> 7 14 5 3 -1. <_> 7 15 5 1 3. <_> <_> 15 13 3 3 -1. <_> 15 14 3 1 3. <_> <_> 6 14 8 3 -1. <_> 6 15 8 1 3. <_> <_> 15 13 3 3 -1. <_> 15 14 3 1 3. <_> <_> 2 13 3 3 -1. <_> 2 14 3 1 3. <_> <_> 4 7 12 12 -1. <_> 10 7 6 6 2. <_> 4 13 6 6 2. <_> <_> 9 7 2 6 -1. <_> 10 7 1 6 2. <_> <_> 8 9 5 2 -1. <_> 8 10 5 1 2. <_> <_> 8 6 3 4 -1. <_> 9 6 1 4 3. <_> <_> 9 6 2 8 -1. <_> 9 10 2 4 2. <_> <_> 7 7 3 6 -1. <_> 8 7 1 6 3. <_> <_> 11 3 3 3 -1. <_> 12 3 1 3 3. <_> <_> 5 4 6 1 -1. <_> 7 4 2 1 3. <_> <_> 5 6 10 3 -1. <_> 5 7 10 1 3. <_> <_> 7 3 6 9 -1. <_> 7 6 6 3 3. <_> <_> 6 7 9 1 -1. <_> 9 7 3 1 3. <_> <_> 2 8 16 8 -1. <_> 2 12 16 4 2. <_> <_> 14 6 2 6 -1. <_> 14 9 2 3 2. <_> <_> 1 5 6 15 -1. <_> 1 10 6 5 3. <_> <_> 10 0 6 9 -1. <_> 10 3 6 3 3. <_> <_> 6 6 7 14 -1. <_> 6 13 7 7 2. <_> <_> 13 7 3 6 -1. <_> 13 9 3 2 3. <_> <_> 1 8 15 4 -1. <_> 6 8 5 4 3. <_> <_> 11 2 3 10 -1. <_> 11 7 3 5 2. <_> <_> 3 7 4 6 -1. <_> 3 9 4 2 3. <_> <_> 13 3 6 10 -1. <_> 15 3 2 10 3. <_> <_> 5 7 8 10 -1. <_> 5 7 4 5 2. <_> 9 12 4 5 2. <_> <_> 4 4 12 12 -1. <_> 10 4 6 6 2. <_> 4 10 6 6 2. <_> <_> 1 4 6 9 -1. <_> 3 4 2 9 3. <_> <_> 11 3 2 5 -1. <_> 11 3 1 5 2. <_> <_> 7 3 2 5 -1. <_> 8 3 1 5 2. <_> <_> 10 14 2 3 -1. <_> 10 15 2 1 3. <_> <_> 5 12 6 2 -1. <_> 8 12 3 2 2. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 4 11 12 6 -1. <_> 4 14 12 3 2. <_> <_> 11 11 5 9 -1. <_> 11 14 5 3 3. <_> <_> 6 15 3 2 -1. <_> 6 16 3 1 2. <_> <_> 11 0 3 5 -1. <_> 12 0 1 5 3. <_> <_> 5 5 6 7 -1. <_> 8 5 3 7 2. <_> <_> 13 0 1 9 -1. <_> 13 3 1 3 3. <_> <_> 3 2 4 8 -1. <_> 3 2 2 4 2. <_> 5 6 2 4 2. <_> <_> 13 12 4 6 -1. <_> 13 14 4 2 3. <_> <_> 3 12 4 6 -1. <_> 3 14 4 2 3. <_> <_> 13 11 3 4 -1. <_> 13 13 3 2 2. <_> <_> 4 4 4 3 -1. <_> 4 5 4 1 3. <_> <_> 7 5 11 8 -1. <_> 7 9 11 4 2. <_> <_> 7 8 3 4 -1. <_> 8 8 1 4 3. <_> <_> 9 1 6 1 -1. <_> 11 1 2 1 3. <_> <_> 5 5 3 3 -1. <_> 5 6 3 1 3. <_> <_> 0 9 20 6 -1. <_> 10 9 10 3 2. <_> 0 12 10 3 2. <_> <_> 8 6 3 5 -1. <_> 9 6 1 5 3. <_> <_> 11 0 1 3 -1. <_> 11 1 1 1 3. <_> <_> 4 2 4 2 -1. <_> 4 3 4 1 2. <_> <_> 12 6 4 3 -1. <_> 12 7 4 1 3. <_> <_> 5 0 6 4 -1. <_> 7 0 2 4 3. <_> <_> 9 7 3 8 -1. <_> 10 7 1 8 3. <_> <_> 9 7 2 2 -1. <_> 10 7 1 2 2. <_> <_> 6 7 14 4 -1. <_> 13 7 7 2 2. <_> 6 9 7 2 2. <_> <_> 0 5 3 6 -1. <_> 0 7 3 2 3. <_> <_> 13 11 3 4 -1. <_> 13 13 3 2 2. <_> <_> 4 11 3 4 -1. <_> 4 13 3 2 2. <_> <_> 5 9 12 8 -1. <_> 11 9 6 4 2. <_> 5 13 6 4 2. <_> <_> 9 12 1 3 -1. <_> 9 13 1 1 3. <_> <_> 10 15 2 4 -1. <_> 10 17 2 2 2. <_> <_> 7 7 6 1 -1. <_> 9 7 2 1 3. <_> <_> 12 3 6 6 -1. <_> 15 3 3 3 2. <_> 12 6 3 3 2. <_> <_> 0 4 10 6 -1. <_> 0 6 10 2 3. <_> <_> 8 3 8 14 -1. <_> 12 3 4 7 2. <_> 8 10 4 7 2. <_> <_> 4 4 7 15 -1. <_> 4 9 7 5 3. <_> <_> 12 2 6 8 -1. <_> 15 2 3 4 2. <_> 12 6 3 4 2. <_> <_> 2 2 6 8 -1. <_> 2 2 3 4 2. <_> 5 6 3 4 2. <_> <_> 2 13 18 7 -1. <_> 8 13 6 7 3. <_> <_> 4 3 8 14 -1. <_> 4 3 4 7 2. <_> 8 10 4 7 2. <_> <_> 18 1 2 6 -1. <_> 18 3 2 2 3. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 18 1 2 6 -1. <_> 18 3 2 2 3. <_> <_> 0 1 2 6 -1. <_> 0 3 2 2 3. <_> <_> 1 5 18 6 -1. <_> 1 7 18 2 3. <_> <_> 0 2 6 7 -1. <_> 3 2 3 7 2. <_> <_> 7 3 6 14 -1. <_> 7 10 6 7 2. <_> <_> 3 7 13 10 -1. <_> 3 12 13 5 2. <_> <_> 11 15 2 2 -1. <_> 11 16 2 1 2. <_> <_> 2 11 16 4 -1. <_> 2 11 8 2 2. <_> 10 13 8 2 2. <_> <_> 13 7 6 4 -1. <_> 16 7 3 2 2. <_> 13 9 3 2 2. <_> <_> 6 10 3 9 -1. <_> 6 13 3 3 3. <_> <_> 14 6 1 6 -1. <_> 14 9 1 3 2. <_> <_> 5 10 4 1 -1. <_> 7 10 2 1 2. <_> <_> 3 8 15 5 -1. <_> 8 8 5 5 3. <_> <_> 1 6 5 4 -1. <_> 1 8 5 2 2. <_> <_> 3 1 17 6 -1. <_> 3 3 17 2 3. <_> <_> 6 7 8 2 -1. <_> 10 7 4 2 2. <_> <_> 9 7 3 2 -1. <_> 10 7 1 2 3. <_> <_> 8 7 3 2 -1. <_> 9 7 1 2 3. <_> <_> 8 9 4 2 -1. <_> 8 10 4 1 2. <_> <_> 8 8 4 3 -1. <_> 8 9 4 1 3. <_> <_> 9 5 6 4 -1. <_> 9 5 3 4 2. <_> <_> 8 13 4 3 -1. <_> 8 14 4 1 3. <_> <_> 4 7 12 6 -1. <_> 10 7 6 3 2. <_> 4 10 6 3 2. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 9 7 3 3 -1. <_> 9 8 3 1 3. <_> <_> 7 4 3 8 -1. <_> 8 4 1 8 3. <_> <_> 10 0 3 6 -1. <_> 11 0 1 6 3. <_> <_> 6 3 4 8 -1. <_> 8 3 2 8 2. <_> <_> 14 3 6 13 -1. <_> 14 3 3 13 2. <_> <_> 8 13 3 6 -1. <_> 8 16 3 3 2. <_> <_> 14 3 6 13 -1. <_> 14 3 3 13 2. <_> <_> 0 7 10 4 -1. <_> 0 7 5 2 2. <_> 5 9 5 2 2. <_> <_> 14 3 6 13 -1. <_> 14 3 3 13 2. <_> <_> 0 3 6 13 -1. <_> 3 3 3 13 2. <_> <_> 9 1 4 1 -1. <_> 9 1 2 1 2. <_> <_> 8 0 2 1 -1. <_> 9 0 1 1 2. <_> <_> 10 16 4 4 -1. <_> 12 16 2 2 2. <_> 10 18 2 2 2. <_> <_> 9 6 2 3 -1. <_> 10 6 1 3 2. <_> <_> 4 5 12 2 -1. <_> 8 5 4 2 3. <_> <_> 8 7 3 5 -1. <_> 9 7 1 5 3. <_> <_> 6 4 8 6 -1. <_> 6 6 8 2 3. <_> <_> 9 5 2 12 -1. <_> 9 11 2 6 2. <_> <_> 4 6 6 8 -1. <_> 4 10 6 4 2. <_> <_> 12 2 8 5 -1. <_> 12 2 4 5 2. <_> <_> 0 8 18 3 -1. <_> 0 9 18 1 3. <_> <_> 8 12 4 8 -1. <_> 8 16 4 4 2. <_> <_> 0 2 8 5 -1. <_> 4 2 4 5 2. <_> <_> 13 11 3 4 -1. <_> 13 13 3 2 2. <_> <_> 5 11 6 1 -1. <_> 7 11 2 1 3. <_> <_> 11 3 3 1 -1. <_> 12 3 1 1 3. <_> <_> 7 13 5 3 -1. <_> 7 14 5 1 3. <_> <_> 11 11 7 6 -1. <_> 11 14 7 3 2. <_> <_> 2 11 7 6 -1. <_> 2 14 7 3 2. <_> <_> 12 14 2 6 -1. <_> 12 16 2 2 3. <_> <_> 8 14 3 3 -1. <_> 8 15 3 1 3. <_> <_> 11 0 3 5 -1. <_> 12 0 1 5 3. <_> <_> 6 1 4 9 -1. <_> 8 1 2 9 2. <_> <_> 10 3 6 1 -1. <_> 12 3 2 1 3. <_> <_> 8 8 3 4 -1. <_> 8 10 3 2 2. <_> <_> 8 12 4 2 -1. <_> 8 13 4 1 2. <_> <_> 5 18 4 2 -1. <_> 5 19 4 1 2. <_> <_> 2 1 18 6 -1. <_> 2 3 18 2 3. <_> <_> 6 0 3 2 -1. <_> 7 0 1 2 3. <_> <_> 13 8 6 2 -1. <_> 16 8 3 1 2. <_> 13 9 3 1 2. <_> <_> 6 10 3 6 -1. <_> 6 13 3 3 2. <_> <_> 0 13 20 4 -1. <_> 10 13 10 2 2. <_> 0 15 10 2 2. <_> <_> 7 7 6 5 -1. <_> 9 7 2 5 3. <_> <_> 11 0 2 2 -1. <_> 11 1 2 1 2. <_> <_> 1 8 6 2 -1. <_> 1 8 3 1 2. <_> 4 9 3 1 2. <_> <_> 0 2 20 2 -1. <_> 10 2 10 1 2. <_> 0 3 10 1 2. <_> <_> 7 14 5 3 -1. <_> 7 15 5 1 3. <_> <_> 7 13 6 6 -1. <_> 10 13 3 3 2. <_> 7 16 3 3 2. <_> <_> 9 12 2 3 -1. <_> 9 13 2 1 3. <_> <_> 16 11 1 6 -1. <_> 16 13 1 2 3. <_> <_> 3 11 1 6 -1. <_> 3 13 1 2 3. <_> <_> 4 4 14 12 -1. <_> 11 4 7 6 2. <_> 4 10 7 6 2. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 12 3 3 3 -1. <_> 13 3 1 3 3. <_> <_> 6 6 8 3 -1. <_> 6 7 8 1 3. <_> <_> 12 3 3 3 -1. <_> 13 3 1 3 3. <_> <_> 3 1 4 10 -1. <_> 3 1 2 5 2. <_> 5 6 2 5 2. <_> <_> 5 7 10 2 -1. <_> 5 7 5 2 2. <_> <_> 8 7 3 3 -1. <_> 9 7 1 3 3. <_> <_> 15 12 2 3 -1. <_> 15 13 2 1 3. <_> <_> 7 8 3 4 -1. <_> 8 8 1 4 3. <_> <_> 13 4 1 12 -1. <_> 13 10 1 6 2. <_> <_> 4 5 12 12 -1. <_> 4 5 6 6 2. <_> 10 11 6 6 2. <_> <_> 7 14 7 3 -1. <_> 7 15 7 1 3. <_> <_> 3 12 2 3 -1. <_> 3 13 2 1 3. <_> <_> 3 2 14 2 -1. <_> 10 2 7 1 2. <_> 3 3 7 1 2. <_> <_> 0 1 3 10 -1. <_> 1 1 1 10 3. <_> <_> 9 0 6 5 -1. <_> 11 0 2 5 3. <_> <_> 5 7 6 2 -1. <_> 8 7 3 2 2. <_> <_> 7 1 6 10 -1. <_> 7 6 6 5 2. <_> <_> 1 1 18 3 -1. <_> 7 1 6 3 3. <_> <_> 16 3 3 6 -1. <_> 16 5 3 2 3. <_> <_> 6 3 7 6 -1. <_> 6 6 7 3 2. <_> <_> 4 7 12 2 -1. <_> 8 7 4 2 3. <_> <_> 0 4 17 10 -1. <_> 0 9 17 5 2. <_> <_> 3 4 15 16 -1. <_> 3 12 15 8 2. <_> <_> 7 15 6 4 -1. <_> 7 17 6 2 2. <_> <_> 15 2 4 9 -1. <_> 15 2 2 9 2. <_> <_> 2 3 3 2 -1. <_> 2 4 3 1 2. <_> <_> 13 6 7 9 -1. <_> 13 9 7 3 3. <_> <_> 8 11 4 3 -1. <_> 8 12 4 1 3. <_> <_> 0 2 20 6 -1. <_> 10 2 10 3 2. <_> 0 5 10 3 2. <_> <_> 3 2 6 10 -1. <_> 3 2 3 5 2. <_> 6 7 3 5 2. <_> <_> 13 10 3 4 -1. <_> 13 12 3 2 2. <_> <_> 4 10 3 4 -1. <_> 4 12 3 2 2. <_> <_> 7 5 6 3 -1. <_> 9 5 2 3 3. <_> <_> 7 6 6 8 -1. <_> 7 10 6 4 2. <_> <_> 0 11 20 6 -1. <_> 0 14 20 3 2. <_> <_> 4 13 4 6 -1. <_> 4 13 2 3 2. <_> 6 16 2 3 2. <_> <_> 6 0 8 12 -1. <_> 10 0 4 6 2. <_> 6 6 4 6 2. <_> <_> 2 0 15 2 -1. <_> 2 1 15 1 2. <_> <_> 9 12 2 3 -1. <_> 9 13 2 1 3. <_> <_> 3 12 1 2 -1. <_> 3 13 1 1 2. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 7 3 3 1 -1. <_> 8 3 1 1 3. <_> <_> 17 7 3 6 -1. <_> 17 9 3 2 3. <_> <_> 7 2 3 2 -1. <_> 8 2 1 2 3. <_> <_> 11 4 5 3 -1. <_> 11 5 5 1 3. <_> <_> 4 4 5 3 -1. <_> 4 5 5 1 3. <_> <_> 19 3 1 2 -1. <_> 19 4 1 1 2. <_> <_> 5 5 4 3 -1. <_> 5 6 4 1 3. <_> <_> 17 7 3 6 -1. <_> 17 9 3 2 3. <_> <_> 0 7 3 6 -1. <_> 0 9 3 2 3. <_> <_> 14 2 6 9 -1. <_> 14 5 6 3 3. <_> <_> 0 4 5 6 -1. <_> 0 6 5 2 3. <_> <_> 10 5 6 2 -1. <_> 12 5 2 2 3. <_> <_> 4 5 6 2 -1. <_> 6 5 2 2 3. <_> <_> 8 1 4 6 -1. <_> 8 3 4 2 3. <_> <_> 0 2 3 6 -1. <_> 0 4 3 2 3. <_> <_> 6 6 8 3 -1. <_> 6 7 8 1 3. <_> <_> 0 1 5 9 -1. <_> 0 4 5 3 3. <_> <_> 16 0 4 15 -1. <_> 16 0 2 15 2. <_> <_> 1 10 3 2 -1. <_> 1 11 3 1 2. <_> <_> 14 4 1 10 -1. <_> 14 9 1 5 2. <_> <_> 0 1 4 12 -1. <_> 2 1 2 12 2. <_> <_> 11 11 4 2 -1. <_> 11 11 2 2 2. <_> <_> 5 11 4 2 -1. <_> 7 11 2 2 2. <_> <_> 3 8 15 5 -1. <_> 8 8 5 5 3. <_> <_> 0 0 6 10 -1. <_> 3 0 3 10 2. <_> <_> 11 4 3 2 -1. <_> 12 4 1 2 3. <_> <_> 8 12 3 8 -1. <_> 8 16 3 4 2. <_> <_> 8 14 5 3 -1. <_> 8 15 5 1 3. <_> <_> 7 14 4 3 -1. <_> 7 15 4 1 3. <_> <_> 11 4 3 2 -1. <_> 12 4 1 2 3. <_> <_> 3 15 14 4 -1. <_> 3 15 7 2 2. <_> 10 17 7 2 2. <_> <_> 2 2 16 4 -1. <_> 10 2 8 2 2. <_> 2 4 8 2 2. <_> <_> 0 8 6 12 -1. <_> 3 8 3 12 2. <_> <_> 5 7 10 2 -1. <_> 5 7 5 2 2. <_> <_> 9 7 2 5 -1. <_> 10 7 1 5 2. <_> <_> 13 7 6 4 -1. <_> 16 7 3 2 2. <_> 13 9 3 2 2. <_> <_> 0 13 8 2 -1. <_> 0 14 8 1 2. <_> <_> 13 7 6 4 -1. <_> 16 7 3 2 2. <_> 13 9 3 2 2. <_> <_> 1 7 6 4 -1. <_> 1 7 3 2 2. <_> 4 9 3 2 2. <_> <_> 12 6 1 12 -1. <_> 12 12 1 6 2. <_> <_> 9 5 2 6 -1. <_> 10 5 1 6 2. <_> <_> 14 12 2 3 -1. <_> 14 13 2 1 3. <_> <_> 4 12 2 3 -1. <_> 4 13 2 1 3. <_> <_> 8 12 4 3 -1. <_> 8 13 4 1 3. <_> <_> 5 2 2 4 -1. <_> 5 2 1 2 2. <_> 6 4 1 2 2. <_> <_> 5 5 11 3 -1. <_> 5 6 11 1 3. <_> <_> 7 6 4 12 -1. <_> 7 12 4 6 2. <_> <_> 12 13 8 5 -1. <_> 12 13 4 5 2. <_> <_> 7 6 1 12 -1. <_> 7 12 1 6 2. <_> <_> 1 2 6 3 -1. <_> 4 2 3 3 2. <_> <_> 9 5 6 10 -1. <_> 12 5 3 5 2. <_> 9 10 3 5 2. <_> <_> 5 5 8 12 -1. <_> 5 5 4 6 2. <_> 9 11 4 6 2. <_> <_> 0 7 20 6 -1. <_> 0 9 20 2 3. <_> <_> 4 2 2 2 -1. <_> 4 3 2 1 2. <_> <_> 4 18 12 2 -1. <_> 8 18 4 2 3. <_> <_> 7 4 4 16 -1. <_> 7 12 4 8 2. <_> <_> 7 6 7 8 -1. <_> 7 10 7 4 2. <_> <_> 6 3 3 1 -1. <_> 7 3 1 1 3. <_> <_> 11 15 2 4 -1. <_> 11 17 2 2 2. <_> <_> 3 5 4 8 -1. <_> 3 9 4 4 2. <_> <_> 7 1 6 12 -1. <_> 7 7 6 6 2. <_> <_> 4 6 6 2 -1. <_> 6 6 2 2 3. <_> <_> 16 4 4 6 -1. <_> 16 6 4 2 3. <_> <_> 3 3 5 2 -1. <_> 3 4 5 1 2. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 2 16 4 2 -1. <_> 2 17 4 1 2. <_> <_> 7 13 6 6 -1. <_> 10 13 3 3 2. <_> 7 16 3 3 2. <_> <_> 7 0 3 4 -1. <_> 8 0 1 4 3. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 0 4 4 6 -1. <_> 0 6 4 2 3. <_> <_> 5 6 12 3 -1. <_> 9 6 4 3 3. <_> <_> 7 6 6 14 -1. <_> 9 6 2 14 3. <_> <_> 9 7 3 3 -1. <_> 10 7 1 3 3. <_> <_> 6 12 2 4 -1. <_> 6 14 2 2 2. <_> <_> 10 12 7 6 -1. <_> 10 14 7 2 3. <_> <_> 1 0 15 2 -1. <_> 1 1 15 1 2. <_> <_> 14 0 6 6 -1. <_> 14 0 3 6 2. <_> <_> 5 3 3 1 -1. <_> 6 3 1 1 3. <_> <_> 14 0 6 6 -1. <_> 14 0 3 6 2. <_> <_> 0 3 20 10 -1. <_> 0 8 20 5 2. <_> <_> 14 0 6 6 -1. <_> 14 0 3 6 2. <_> <_> 0 0 6 6 -1. <_> 3 0 3 6 2. <_> <_> 19 15 1 2 -1. <_> 19 16 1 1 2. <_> <_> 0 2 4 8 -1. <_> 2 2 2 8 2. <_> <_> 2 1 18 4 -1. <_> 11 1 9 2 2. <_> 2 3 9 2 2. <_> <_> 8 12 1 2 -1. <_> 8 13 1 1 2. <_> <_> 5 2 10 6 -1. <_> 10 2 5 3 2. <_> 5 5 5 3 2. <_> <_> 9 7 2 4 -1. <_> 10 7 1 4 2. <_> <_> 9 7 3 3 -1. <_> 10 7 1 3 3. <_> <_> 4 5 12 8 -1. <_> 8 5 4 8 3. <_> <_> 15 15 4 3 -1. <_> 15 16 4 1 3. <_> <_> 8 18 3 1 -1. <_> 9 18 1 1 3. <_> <_> 9 13 4 3 -1. <_> 9 14 4 1 3. <_> <_> 7 13 4 3 -1. <_> 7 14 4 1 3. <_> <_> 19 15 1 2 -1. <_> 19 16 1 1 2. <_> <_> 0 15 8 4 -1. <_> 0 17 8 2 2. <_> <_> 9 3 6 4 -1. <_> 11 3 2 4 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 3 14 14 6 -1. <_> 3 16 14 2 3. <_> <_> 6 3 6 6 -1. <_> 6 6 6 3 2. <_> <_> 5 11 10 6 -1. <_> 5 14 10 3 2. <_> <_> 3 10 3 4 -1. <_> 4 10 1 4 3. <_> <_> 13 9 2 2 -1. <_> 13 9 1 2 2. <_> <_> 5 3 6 4 -1. <_> 7 3 2 4 3. <_> <_> 9 7 3 3 -1. <_> 10 7 1 3 3. <_> <_> 2 12 2 3 -1. <_> 2 13 2 1 3. <_> <_> 9 8 3 12 -1. <_> 9 12 3 4 3. <_> <_> 3 14 4 6 -1. <_> 3 14 2 3 2. <_> 5 17 2 3 2. <_> <_> 16 15 2 2 -1. <_> 16 16 2 1 2. <_> <_> 2 15 2 2 -1. <_> 2 16 2 1 2. <_> <_> 8 12 4 3 -1. <_> 8 13 4 1 3. <_> <_> 0 7 20 1 -1. <_> 10 7 10 1 2. <_> <_> 7 6 8 3 -1. <_> 7 6 4 3 2. <_> <_> 5 7 8 2 -1. <_> 9 7 4 2 2. <_> <_> 9 7 3 5 -1. <_> 10 7 1 5 3. <_> <_> 8 7 3 5 -1. <_> 9 7 1 5 3. <_> <_> 11 1 3 5 -1. <_> 12 1 1 5 3. <_> <_> 6 2 3 6 -1. <_> 7 2 1 6 3. <_> <_> 14 14 6 5 -1. <_> 14 14 3 5 2. <_> <_> 9 8 2 2 -1. <_> 9 9 2 1 2. <_> <_> 10 7 1 3 -1. <_> 10 8 1 1 3. <_> <_> 6 6 2 2 -1. <_> 6 6 1 1 2. <_> 7 7 1 1 2. <_> <_> 2 11 18 4 -1. <_> 11 11 9 2 2. <_> 2 13 9 2 2. <_> <_> 6 6 2 2 -1. <_> 6 6 1 1 2. <_> 7 7 1 1 2. <_> <_> 0 15 20 2 -1. <_> 0 16 20 1 2. <_> <_> 4 14 2 3 -1. <_> 4 15 2 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 8 7 2 3 -1. <_> 8 8 2 1 3. <_> <_> 9 10 2 3 -1. <_> 9 11 2 1 3. <_> <_> 5 4 10 4 -1. <_> 5 6 10 2 2. <_> <_> 9 7 6 4 -1. <_> 12 7 3 2 2. <_> 9 9 3 2 2. <_> <_> 4 7 3 6 -1. <_> 4 9 3 2 3. <_> <_> 11 15 4 4 -1. <_> 13 15 2 2 2. <_> 11 17 2 2 2. <_> <_> 7 8 4 2 -1. <_> 7 9 4 1 2. <_> <_> 13 1 4 3 -1. <_> 13 1 2 3 2. <_> <_> 5 15 4 4 -1. <_> 5 15 2 2 2. <_> 7 17 2 2 2. <_> <_> 9 5 4 7 -1. <_> 9 5 2 7 2. <_> <_> 5 6 8 3 -1. <_> 9 6 4 3 2. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 7 15 5 3 -1. <_> 7 16 5 1 3. <_> <_> 11 10 4 3 -1. <_> 11 10 2 3 2. <_> <_> 6 9 8 10 -1. <_> 6 14 8 5 2. <_> <_> 10 11 6 2 -1. <_> 10 11 3 2 2. <_> <_> 4 11 6 2 -1. <_> 7 11 3 2 2. <_> <_> 11 3 8 1 -1. <_> 11 3 4 1 2. <_> <_> 6 3 3 2 -1. <_> 7 3 1 2 3. <_> <_> 14 5 6 5 -1. <_> 14 5 3 5 2. <_> <_> 7 5 2 12 -1. <_> 7 11 2 6 2. <_> <_> 8 11 4 3 -1. <_> 8 12 4 1 3. <_> <_> 4 1 2 3 -1. <_> 5 1 1 3 2. <_> <_> 18 3 2 6 -1. <_> 18 5 2 2 3. <_> <_> 0 3 2 6 -1. <_> 0 5 2 2 3. <_> <_> 9 12 2 3 -1. <_> 9 13 2 1 3. <_> <_> 7 13 4 3 -1. <_> 7 14 4 1 3. <_> <_> 18 0 2 6 -1. <_> 18 2 2 2 3. <_> <_> 0 0 2 6 -1. <_> 0 2 2 2 3. <_> <_> 8 14 6 3 -1. <_> 8 15 6 1 3. <_> <_> 7 4 2 4 -1. <_> 8 4 1 4 2. <_> <_> 8 5 4 6 -1. <_> 8 7 4 2 3. <_> <_> 6 4 2 2 -1. <_> 7 4 1 2 2. <_> <_> 3 14 14 4 -1. <_> 10 14 7 2 2. <_> 3 16 7 2 2. <_> <_> 6 15 6 2 -1. <_> 6 15 3 1 2. <_> 9 16 3 1 2. <_> <_> 14 15 6 2 -1. <_> 14 16 6 1 2. <_> <_> 2 12 12 8 -1. <_> 2 16 12 4 2. <_> <_> 7 7 7 2 -1. <_> 7 8 7 1 2. <_> <_> 0 2 18 2 -1. <_> 0 3 18 1 2. <_> <_> 9 6 2 5 -1. <_> 9 6 1 5 2. <_> <_> 7 5 3 8 -1. <_> 8 5 1 8 3. <_> <_> 9 6 3 4 -1. <_> 10 6 1 4 3. <_> <_> 4 13 3 2 -1. <_> 4 14 3 1 2. <_> <_> 9 4 6 3 -1. <_> 11 4 2 3 3. <_> <_> 5 4 6 3 -1. <_> 7 4 2 3 3. <_> <_> 14 11 5 2 -1. <_> 14 12 5 1 2. <_> <_> 1 2 6 9 -1. <_> 3 2 2 9 3. <_> <_> 14 6 6 13 -1. <_> 14 6 3 13 2. <_> <_> 3 6 14 8 -1. <_> 3 6 7 4 2. <_> 10 10 7 4 2. <_> <_> 16 0 4 11 -1. <_> 16 0 2 11 2. <_> <_> 3 4 12 12 -1. <_> 3 4 6 6 2. <_> 9 10 6 6 2. <_> <_> 11 4 5 3 -1. <_> 11 5 5 1 3. <_> <_> 4 11 4 2 -1. <_> 4 12 4 1 2. <_> <_> 10 7 2 2 -1. <_> 10 7 1 2 2. <_> <_> 8 7 2 2 -1. <_> 9 7 1 2 2. <_> <_> 9 17 3 2 -1. <_> 10 17 1 2 3. <_> <_> 5 6 3 3 -1. <_> 5 7 3 1 3. <_> <_> 10 0 3 3 -1. <_> 11 0 1 3 3. <_> <_> 5 6 6 2 -1. <_> 5 6 3 1 2. <_> 8 7 3 1 2. <_> <_> 12 16 4 3 -1. <_> 12 17 4 1 3. <_> <_> 3 12 3 2 -1. <_> 3 13 3 1 2. <_> <_> 9 12 3 2 -1. <_> 9 13 3 1 2. <_> <_> 1 11 16 4 -1. <_> 1 11 8 2 2. <_> 9 13 8 2 2. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 4 4 5 3 -1. <_> 4 5 5 1 3. <_> <_> 12 16 4 3 -1. <_> 12 17 4 1 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 9 0 2 2 -1. <_> 9 1 2 1 2. <_> <_> 8 9 4 2 -1. <_> 8 10 4 1 2. <_> <_> 8 8 4 3 -1. <_> 8 9 4 1 3. <_> <_> 0 13 6 3 -1. <_> 2 13 2 3 3. <_> <_> 16 14 3 2 -1. <_> 16 15 3 1 2. <_> <_> 1 18 18 2 -1. <_> 7 18 6 2 3. <_> <_> 16 14 3 2 -1. <_> 16 15 3 1 2. <_> <_> 1 14 3 2 -1. <_> 1 15 3 1 2. <_> <_> 7 14 6 3 -1. <_> 7 15 6 1 3. <_> <_> 5 14 8 3 -1. <_> 5 15 8 1 3. <_> <_> 10 6 4 14 -1. <_> 10 6 2 14 2. <_> <_> 6 6 4 14 -1. <_> 8 6 2 14 2. <_> <_> 13 5 2 3 -1. <_> 13 6 2 1 3. <_> <_> 7 16 6 1 -1. <_> 9 16 2 1 3. <_> <_> 9 12 3 3 -1. <_> 9 13 3 1 3. <_> <_> 7 0 3 3 -1. <_> 8 0 1 3 3. <_> <_> 4 0 16 18 -1. <_> 4 9 16 9 2. <_> <_> 1 1 16 14 -1. <_> 1 8 16 7 2. <_> <_> 3 9 15 4 -1. <_> 8 9 5 4 3. <_> <_> 6 12 7 3 -1. <_> 6 13 7 1 3. <_> <_> 14 15 2 3 -1. <_> 14 16 2 1 3. <_> <_> 2 3 16 14 -1. <_> 2 3 8 7 2. <_> 10 10 8 7 2. <_> <_> 16 2 4 18 -1. <_> 18 2 2 9 2. <_> 16 11 2 9 2. <_> <_> 4 15 2 3 -1. <_> 4 16 2 1 3. <_> <_> 16 2 4 18 -1. <_> 18 2 2 9 2. <_> 16 11 2 9 2. <_> <_> 1 1 8 3 -1. <_> 1 2 8 1 3. <_> <_> 8 11 4 3 -1. <_> 8 12 4 1 3. <_> <_> 5 11 5 9 -1. <_> 5 14 5 3 3. <_> <_> 16 0 4 11 -1. <_> 16 0 2 11 2. <_> <_> 7 0 6 1 -1. <_> 9 0 2 1 3. <_> <_> 16 3 3 7 -1. <_> 17 3 1 7 3. <_> <_> 1 3 3 7 -1. <_> 2 3 1 7 3. <_> <_> 7 8 6 12 -1. <_> 7 12 6 4 3. <_> <_> 0 0 4 11 -1. <_> 2 0 2 11 2. <_> <_> 14 0 6 20 -1. <_> 14 0 3 20 2. <_> <_> 0 3 1 2 -1. <_> 0 4 1 1 2. <_> <_> 5 5 10 8 -1. <_> 10 5 5 4 2. <_> 5 9 5 4 2. <_> <_> 4 7 12 4 -1. <_> 4 7 6 2 2. <_> 10 9 6 2 2. <_> <_> 2 1 6 4 -1. <_> 5 1 3 4 2. <_> <_> 9 7 6 4 -1. <_> 12 7 3 2 2. <_> 9 9 3 2 2. <_> <_> 5 6 2 6 -1. <_> 5 9 2 3 2. <_> <_> 9 16 6 4 -1. <_> 12 16 3 2 2. <_> 9 18 3 2 2. <_> <_> 9 4 2 12 -1. <_> 9 10 2 6 2. <_> <_> 7 1 6 18 -1. <_> 9 1 2 18 3. <_> <_> 4 12 12 2 -1. <_> 8 12 4 2 3. <_> <_> 8 8 6 2 -1. <_> 8 9 6 1 2. <_> <_> 8 0 3 6 -1. <_> 9 0 1 6 3. <_> <_> 11 18 3 2 -1. <_> 11 19 3 1 2. <_> <_> 1 1 17 4 -1. <_> 1 3 17 2 2. <_> <_> 11 8 4 12 -1. <_> 11 8 2 12 2. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 12 3 2 17 -1. <_> 12 3 1 17 2. <_> <_> 4 7 6 1 -1. <_> 6 7 2 1 3. <_> <_> 18 3 2 3 -1. <_> 18 4 2 1 3. <_> <_> 8 4 3 4 -1. <_> 8 6 3 2 2. <_> <_> 4 5 12 10 -1. <_> 4 10 12 5 2. <_> <_> 5 18 4 2 -1. <_> 7 18 2 2 2. <_> <_> 17 2 3 6 -1. <_> 17 4 3 2 3. <_> <_> 7 7 6 6 -1. <_> 9 7 2 6 3. <_> <_> 17 2 3 6 -1. <_> 17 4 3 2 3. <_> <_> 8 0 3 4 -1. <_> 9 0 1 4 3. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 0 12 6 3 -1. <_> 0 13 6 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 3 12 2 3 -1. <_> 3 13 2 1 3. <_> <_> 5 6 12 7 -1. <_> 9 6 4 7 3. <_> <_> 0 2 3 6 -1. <_> 0 4 3 2 3. <_> <_> 14 6 1 3 -1. <_> 14 7 1 1 3. <_> <_> 2 0 3 14 -1. <_> 3 0 1 14 3. <_> <_> 12 14 5 6 -1. <_> 12 16 5 2 3. <_> <_> 4 14 5 6 -1. <_> 4 16 5 2 3. <_> <_> 11 10 2 2 -1. <_> 12 10 1 1 2. <_> 11 11 1 1 2. <_> <_> 5 0 3 14 -1. <_> 6 0 1 14 3. <_> <_> 10 15 2 3 -1. <_> 10 16 2 1 3. <_> <_> 0 2 2 3 -1. <_> 0 3 2 1 3. <_> <_> 5 11 12 6 -1. <_> 5 14 12 3 2. <_> <_> 6 11 3 9 -1. <_> 6 14 3 3 3. <_> <_> 11 10 2 2 -1. <_> 12 10 1 1 2. <_> 11 11 1 1 2. <_> <_> 5 6 1 3 -1. <_> 5 7 1 1 3. <_> <_> 4 9 13 3 -1. <_> 4 10 13 1 3. <_> <_> 1 7 15 6 -1. <_> 6 7 5 6 3. <_> <_> 4 5 12 6 -1. <_> 8 5 4 6 3. <_> <_> 8 10 4 3 -1. <_> 8 11 4 1 3. <_> <_> 15 14 1 3 -1. <_> 15 15 1 1 3. <_> <_> 1 11 5 3 -1. <_> 1 12 5 1 3. <_> <_> 7 1 7 12 -1. <_> 7 7 7 6 2. <_> <_> 0 1 6 10 -1. <_> 0 1 3 5 2. <_> 3 6 3 5 2. <_> <_> 16 1 4 3 -1. <_> 16 2 4 1 3. <_> <_> 5 5 2 3 -1. <_> 5 6 2 1 3. <_> <_> 12 2 3 5 -1. <_> 13 2 1 5 3. <_> <_> 0 3 4 6 -1. <_> 0 5 4 2 3. <_> <_> 8 12 4 2 -1. <_> 8 13 4 1 2. <_> <_> 8 18 3 1 -1. <_> 9 18 1 1 3. <_> <_> 11 10 2 2 -1. <_> 12 10 1 1 2. <_> 11 11 1 1 2. <_> <_> 7 10 2 2 -1. <_> 7 10 1 1 2. <_> 8 11 1 1 2. <_> <_> 11 11 4 4 -1. <_> 11 13 4 2 2. <_> <_> 8 12 3 8 -1. <_> 9 12 1 8 3. <_> <_> 13 0 6 3 -1. <_> 13 1 6 1 3. <_> <_> 8 8 3 4 -1. <_> 9 8 1 4 3. <_> <_> 5 7 10 10 -1. <_> 10 7 5 5 2. <_> 5 12 5 5 2. <_> <_> 3 18 8 2 -1. <_> 3 18 4 1 2. <_> 7 19 4 1 2. <_> <_> 10 2 6 8 -1. <_> 12 2 2 8 3. <_> <_> 4 2 6 8 -1. <_> 6 2 2 8 3. <_> <_> 11 0 3 7 -1. <_> 12 0 1 7 3. <_> <_> 7 11 2 1 -1. <_> 8 11 1 1 2. <_> <_> 15 14 1 3 -1. <_> 15 15 1 1 3. <_> <_> 7 15 2 2 -1. <_> 7 15 1 1 2. <_> 8 16 1 1 2. <_> <_> 15 14 1 3 -1. <_> 15 15 1 1 3. <_> <_> 6 0 3 7 -1. <_> 7 0 1 7 3. <_> <_> 18 1 2 7 -1. <_> 18 1 1 7 2. <_> <_> 2 0 8 20 -1. <_> 2 10 8 10 2. <_> <_> 3 0 15 6 -1. <_> 3 2 15 2 3. <_> <_> 4 3 12 2 -1. <_> 4 4 12 1 2. <_> <_> 16 0 4 5 -1. <_> 16 0 2 5 2. <_> <_> 7 0 3 4 -1. <_> 8 0 1 4 3. <_> <_> 16 0 4 5 -1. <_> 16 0 2 5 2. <_> <_> 1 7 6 13 -1. <_> 3 7 2 13 3. <_> <_> 16 0 4 5 -1. <_> 16 0 2 5 2. <_> <_> 0 0 4 5 -1. <_> 2 0 2 5 2. <_> <_> 14 12 3 6 -1. <_> 14 14 3 2 3. <_> <_> 3 12 3 6 -1. <_> 3 14 3 2 3. <_> <_> 16 1 4 3 -1. <_> 16 2 4 1 3. <_> <_> 8 7 2 10 -1. <_> 8 7 1 5 2. <_> 9 12 1 5 2. <_> <_> 11 11 4 4 -1. <_> 11 13 4 2 2. <_> <_> 0 1 4 3 -1. <_> 0 2 4 1 3. <_> <_> 13 4 1 3 -1. <_> 13 5 1 1 3. <_> <_> 7 15 3 5 -1. <_> 8 15 1 5 3. <_> <_> 9 7 3 5 -1. <_> 10 7 1 5 3. <_> <_> 8 7 3 5 -1. <_> 9 7 1 5 3. <_> <_> 10 6 4 14 -1. <_> 10 6 2 14 2. <_> <_> 0 5 5 6 -1. <_> 0 7 5 2 3. <_> <_> 9 5 6 4 -1. <_> 9 5 3 4 2. <_> <_> 0 0 18 10 -1. <_> 6 0 6 10 3. <_> <_> 10 6 4 14 -1. <_> 10 6 2 14 2. <_> <_> 6 6 4 14 -1. <_> 8 6 2 14 2. <_> <_> 13 4 1 3 -1. <_> 13 5 1 1 3. <_> <_> 5 1 2 3 -1. <_> 6 1 1 3 2. <_> <_> 18 1 2 18 -1. <_> 19 1 1 9 2. <_> 18 10 1 9 2. <_> <_> 2 1 4 3 -1. <_> 2 2 4 1 3. <_> <_> 18 1 2 18 -1. <_> 19 1 1 9 2. <_> 18 10 1 9 2. <_> <_> 1 14 4 6 -1. <_> 1 14 2 3 2. <_> 3 17 2 3 2. <_> <_> 10 11 7 6 -1. <_> 10 13 7 2 3. <_> <_> 0 10 6 10 -1. <_> 0 10 3 5 2. <_> 3 15 3 5 2. <_> <_> 11 0 3 4 -1. <_> 12 0 1 4 3. <_> <_> 5 10 5 6 -1. <_> 5 13 5 3 2. <_> <_> 14 6 1 8 -1. <_> 14 10 1 4 2. <_> <_> 1 7 18 6 -1. <_> 1 7 9 3 2. <_> 10 10 9 3 2. <_> <_> 9 7 2 2 -1. <_> 9 7 1 2 2. <_> <_> 5 9 4 5 -1. <_> 7 9 2 5 2. <_> <_> 7 6 6 3 -1. <_> 9 6 2 3 3. <_> <_> 1 0 18 4 -1. <_> 7 0 6 4 3. <_> <_> 7 15 2 4 -1. <_> 7 17 2 2 2. <_> <_> 1 0 19 9 -1. <_> 1 3 19 3 3. <_> <_> 3 7 3 6 -1. <_> 3 9 3 2 3. <_> <_> 13 7 4 4 -1. <_> 15 7 2 2 2. <_> 13 9 2 2 2. <_> <_> 3 7 4 4 -1. <_> 3 7 2 2 2. <_> 5 9 2 2 2. <_> <_> 9 6 10 8 -1. <_> 9 10 10 4 2. <_> <_> 3 8 14 12 -1. <_> 3 14 14 6 2. <_> <_> 6 5 10 12 -1. <_> 11 5 5 6 2. <_> 6 11 5 6 2. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 9 5 6 5 -1. <_> 9 5 3 5 2. <_> <_> 9 4 2 4 -1. <_> 9 6 2 2 2. <_> <_> 9 5 6 5 -1. <_> 9 5 3 5 2. <_> <_> 5 5 6 5 -1. <_> 8 5 3 5 2. <_> <_> 11 2 6 1 -1. <_> 13 2 2 1 3. <_> <_> 3 2 6 1 -1. <_> 5 2 2 1 3. <_> <_> 13 5 2 3 -1. <_> 13 6 2 1 3. <_> <_> 0 10 1 4 -1. <_> 0 12 1 2 2. <_> <_> 13 5 2 3 -1. <_> 13 6 2 1 3. <_> <_> 8 18 3 2 -1. <_> 9 18 1 2 3. <_> <_> 6 15 9 2 -1. <_> 6 16 9 1 2. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 18 4 2 4 -1. <_> 18 6 2 2 2. <_> <_> 5 5 2 3 -1. <_> 5 6 2 1 3. <_> <_> 15 16 3 2 -1. <_> 15 17 3 1 2. <_> <_> 0 0 3 9 -1. <_> 0 3 3 3 3. <_> <_> 9 7 3 3 -1. <_> 9 8 3 1 3. <_> <_> 8 7 3 3 -1. <_> 8 8 3 1 3. <_> <_> 9 5 2 6 -1. <_> 9 5 1 6 2. <_> <_> 8 6 3 4 -1. <_> 9 6 1 4 3. <_> <_> 7 6 8 12 -1. <_> 11 6 4 6 2. <_> 7 12 4 6 2. <_> <_> 5 6 8 12 -1. <_> 5 6 4 6 2. <_> 9 12 4 6 2. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 2 16 3 2 -1. <_> 2 17 3 1 2. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 2 12 6 6 -1. <_> 2 14 6 2 3. <_> <_> 7 13 6 3 -1. <_> 7 14 6 1 3. <_> <_> 6 14 6 3 -1. <_> 6 15 6 1 3. <_> <_> 14 15 5 3 -1. <_> 14 16 5 1 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 14 15 5 3 -1. <_> 14 16 5 1 3. <_> <_> 5 3 6 2 -1. <_> 7 3 2 2 3. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 1 15 5 3 -1. <_> 1 16 5 1 3. <_> <_> 8 13 4 6 -1. <_> 10 13 2 3 2. <_> 8 16 2 3 2. <_> <_> 7 8 3 3 -1. <_> 8 8 1 3 3. <_> <_> 12 0 5 4 -1. <_> 12 2 5 2 2. <_> <_> 0 2 20 2 -1. <_> 0 2 10 1 2. <_> 10 3 10 1 2. <_> <_> 1 0 18 4 -1. <_> 7 0 6 4 3. <_> <_> 4 3 6 1 -1. <_> 6 3 2 1 3. <_> <_> 4 18 13 2 -1. <_> 4 19 13 1 2. <_> <_> 2 10 3 6 -1. <_> 2 12 3 2 3. <_> <_> 14 12 6 8 -1. <_> 17 12 3 4 2. <_> 14 16 3 4 2. <_> <_> 4 13 10 6 -1. <_> 4 13 5 3 2. <_> 9 16 5 3 2. <_> <_> 14 12 1 2 -1. <_> 14 13 1 1 2. <_> <_> 8 13 4 3 -1. <_> 8 14 4 1 3. <_> <_> 14 12 2 2 -1. <_> 14 13 2 1 2. <_> <_> 4 12 2 2 -1. <_> 4 13 2 1 2. <_> <_> 8 12 9 2 -1. <_> 8 13 9 1 2. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 11 10 3 6 -1. <_> 11 13 3 3 2. <_> <_> 5 6 9 12 -1. <_> 5 12 9 6 2. <_> <_> 11 10 3 6 -1. <_> 11 13 3 3 2. <_> <_> 6 10 3 6 -1. <_> 6 13 3 3 2. <_> <_> 5 4 11 3 -1. <_> 5 5 11 1 3. <_> <_> 7 1 5 10 -1. <_> 7 6 5 5 2. <_> <_> 2 8 18 2 -1. <_> 2 9 18 1 2. <_> <_> 7 17 5 3 -1. <_> 7 18 5 1 3. <_> <_> 5 9 12 1 -1. <_> 9 9 4 1 3. <_> <_> 0 14 6 6 -1. <_> 0 14 3 3 2. <_> 3 17 3 3 2. <_> <_> 5 9 12 1 -1. <_> 9 9 4 1 3. <_> <_> 3 9 12 1 -1. <_> 7 9 4 1 3. <_> <_> 14 10 6 7 -1. <_> 14 10 3 7 2. <_> <_> 1 0 16 2 -1. <_> 1 1 16 1 2. <_> <_> 10 9 10 9 -1. <_> 10 12 10 3 3. <_> <_> 0 1 10 2 -1. <_> 5 1 5 2 2. <_> <_> 17 3 2 3 -1. <_> 17 4 2 1 3. <_> <_> 1 3 2 3 -1. <_> 1 4 2 1 3. <_> <_> 9 7 3 6 -1. <_> 10 7 1 6 3. <_> <_> 6 5 4 3 -1. <_> 8 5 2 3 2. <_> <_> 7 5 6 6 -1. <_> 9 5 2 6 3. <_> <_> 3 4 12 12 -1. <_> 3 4 6 6 2. <_> 9 10 6 6 2. <_> <_> 9 2 6 15 -1. <_> 11 2 2 15 3. <_> <_> 2 2 6 17 -1. <_> 4 2 2 17 3. <_> <_> 14 10 6 7 -1. <_> 14 10 3 7 2. <_> <_> 0 10 6 7 -1. <_> 3 10 3 7 2. <_> <_> 9 2 6 15 -1. <_> 11 2 2 15 3. <_> <_> 5 2 6 15 -1. <_> 7 2 2 15 3. <_> <_> 17 9 3 6 -1. <_> 17 11 3 2 3. <_> <_> 6 7 6 6 -1. <_> 8 7 2 6 3. <_> <_> 1 10 18 6 -1. <_> 10 10 9 3 2. <_> 1 13 9 3 2. <_> <_> 0 9 10 9 -1. <_> 0 12 10 3 3. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 5 12 3 4 -1. <_> 5 14 3 2 2. <_> <_> 3 3 16 12 -1. <_> 3 9 16 6 2. <_> <_> 1 1 12 12 -1. <_> 1 1 6 6 2. <_> 7 7 6 6 2. <_> <_> 10 4 2 4 -1. <_> 11 4 1 2 2. <_> 10 6 1 2 2. <_> <_> 0 9 10 2 -1. <_> 0 9 5 1 2. <_> 5 10 5 1 2. <_> <_> 9 11 3 3 -1. <_> 9 12 3 1 3. <_> <_> 3 12 9 2 -1. <_> 3 13 9 1 2. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 3 4 13 6 -1. <_> 3 6 13 2 3. <_> <_> 9 7 6 4 -1. <_> 12 7 3 2 2. <_> 9 9 3 2 2. <_> <_> 1 0 6 8 -1. <_> 4 0 3 8 2. <_> <_> 9 5 2 12 -1. <_> 9 11 2 6 2. <_> <_> 4 4 3 10 -1. <_> 4 9 3 5 2. <_> <_> 6 17 8 3 -1. <_> 6 18 8 1 3. <_> <_> 0 5 10 6 -1. <_> 0 7 10 2 3. <_> <_> 13 2 3 2 -1. <_> 13 3 3 1 2. <_> <_> 7 5 4 5 -1. <_> 9 5 2 5 2. <_> <_> 12 14 3 6 -1. <_> 12 16 3 2 3. <_> <_> 1 11 8 2 -1. <_> 1 12 8 1 2. <_> <_> 7 13 6 3 -1. <_> 7 14 6 1 3. <_> <_> 0 5 3 6 -1. <_> 0 7 3 2 3. <_> <_> 13 2 3 2 -1. <_> 13 3 3 1 2. <_> <_> 4 14 4 6 -1. <_> 4 14 2 3 2. <_> 6 17 2 3 2. <_> <_> 13 2 3 2 -1. <_> 13 3 3 1 2. <_> <_> 8 2 4 12 -1. <_> 8 6 4 4 3. <_> <_> 14 0 6 8 -1. <_> 17 0 3 4 2. <_> 14 4 3 4 2. <_> <_> 7 17 3 2 -1. <_> 8 17 1 2 3. <_> <_> 8 12 4 2 -1. <_> 8 13 4 1 2. <_> <_> 6 0 8 12 -1. <_> 6 0 4 6 2. <_> 10 6 4 6 2. <_> <_> 14 0 2 10 -1. <_> 15 0 1 5 2. <_> 14 5 1 5 2. <_> <_> 5 3 8 6 -1. <_> 5 3 4 3 2. <_> 9 6 4 3 2. <_> <_> 14 0 6 10 -1. <_> 17 0 3 5 2. <_> 14 5 3 5 2. <_> <_> 9 14 1 2 -1. <_> 9 15 1 1 2. <_> <_> 15 10 4 3 -1. <_> 15 11 4 1 3. <_> <_> 8 14 2 3 -1. <_> 8 15 2 1 3. <_> <_> 3 13 14 4 -1. <_> 10 13 7 2 2. <_> 3 15 7 2 2. <_> <_> 1 10 4 3 -1. <_> 1 11 4 1 3. <_> <_> 9 11 6 1 -1. <_> 11 11 2 1 3. <_> <_> 5 11 6 1 -1. <_> 7 11 2 1 3. <_> <_> 3 5 16 15 -1. <_> 3 10 16 5 3. <_> <_> 6 12 4 2 -1. <_> 8 12 2 2 2. <_> <_> 4 4 12 10 -1. <_> 10 4 6 5 2. <_> 4 9 6 5 2. <_> <_> 8 6 3 4 -1. <_> 9 6 1 4 3. <_> <_> 8 12 4 8 -1. <_> 10 12 2 4 2. <_> 8 16 2 4 2. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 12 2 3 2 -1. <_> 13 2 1 2 3. <_> <_> 8 15 3 2 -1. <_> 8 16 3 1 2. <_> <_> 6 0 9 14 -1. <_> 9 0 3 14 3. <_> <_> 9 6 2 3 -1. <_> 10 6 1 3 2. <_> <_> 10 8 2 3 -1. <_> 10 9 2 1 3. <_> <_> 0 9 4 6 -1. <_> 0 11 4 2 3. <_> <_> 6 0 8 2 -1. <_> 6 1 8 1 2. <_> <_> 6 14 7 3 -1. <_> 6 15 7 1 3. <_> <_> 8 10 8 9 -1. <_> 8 13 8 3 3. <_> <_> 5 2 3 2 -1. <_> 6 2 1 2 3. <_> <_> 14 1 6 8 -1. <_> 17 1 3 4 2. <_> 14 5 3 4 2. <_> <_> 0 1 6 8 -1. <_> 0 1 3 4 2. <_> 3 5 3 4 2. <_> <_> 1 2 18 6 -1. <_> 10 2 9 3 2. <_> 1 5 9 3 2. <_> <_> 9 3 2 1 -1. <_> 10 3 1 1 2. <_> <_> 13 2 4 6 -1. <_> 15 2 2 3 2. <_> 13 5 2 3 2. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 13 5 1 3 -1. <_> 13 6 1 1 3. <_> <_> 2 16 5 3 -1. <_> 2 17 5 1 3. <_> <_> 13 2 4 6 -1. <_> 15 2 2 3 2. <_> 13 5 2 3 2. <_> <_> 3 2 4 6 -1. <_> 3 2 2 3 2. <_> 5 5 2 3 2. <_> <_> 13 5 1 2 -1. <_> 13 6 1 1 2. <_> <_> 5 5 2 2 -1. <_> 5 6 2 1 2. <_> <_> 13 9 2 2 -1. <_> 13 9 1 2 2. <_> <_> 5 9 2 2 -1. <_> 6 9 1 2 2. <_> <_> 13 17 3 2 -1. <_> 13 18 3 1 2. <_> <_> 6 16 4 4 -1. <_> 6 16 2 2 2. <_> 8 18 2 2 2. <_> <_> 9 16 2 3 -1. <_> 9 17 2 1 3. <_> <_> 0 13 9 6 -1. <_> 0 15 9 2 3. <_> <_> 9 14 2 6 -1. <_> 9 17 2 3 2. <_> <_> 9 15 2 3 -1. <_> 9 16 2 1 3. <_> <_> 1 10 18 6 -1. <_> 1 12 18 2 3. <_> <_> 8 11 4 2 -1. <_> 8 12 4 1 2. <_> <_> 7 9 6 2 -1. <_> 7 10 6 1 2. <_> <_> 8 8 2 3 -1. <_> 8 9 2 1 3. <_> <_> 17 5 3 4 -1. <_> 18 5 1 4 3. <_> <_> 1 19 18 1 -1. <_> 7 19 6 1 3. <_> <_> 9 0 3 2 -1. <_> 10 0 1 2 3. <_> <_> 1 8 1 6 -1. <_> 1 10 1 2 3. <_> <_> 12 17 8 3 -1. <_> 12 17 4 3 2. <_> <_> 0 5 3 4 -1. <_> 1 5 1 4 3. <_> <_> 9 7 2 3 -1. <_> 9 8 2 1 3. <_> <_> 7 11 2 2 -1. <_> 7 11 1 1 2. <_> 8 12 1 1 2. <_> <_> 11 3 2 5 -1. <_> 11 3 1 5 2. <_> <_> 7 3 2 5 -1. <_> 8 3 1 5 2. <_> <_> 15 13 2 3 -1. <_> 15 14 2 1 3. <_> <_> 5 6 2 3 -1. <_> 5 7 2 1 3. <_> <_> 4 19 15 1 -1. <_> 9 19 5 1 3. <_> <_> 1 19 15 1 -1. <_> 6 19 5 1 3. <_> <_> 15 13 2 3 -1. <_> 15 14 2 1 3. <_> <_> 5 0 4 15 -1. <_> 7 0 2 15 2. <_> <_> 9 6 2 5 -1. <_> 9 6 1 5 2. <_> <_> 9 5 2 7 -1. <_> 10 5 1 7 2. <_> <_> 16 11 3 3 -1. <_> 16 12 3 1 3. <_> <_> 1 11 3 3 -1. <_> 1 12 3 1 3. <_> <_> 6 6 8 3 -1. <_> 6 7 8 1 3. <_> <_> 0 15 6 2 -1. <_> 0 16 6 1 2. <_> <_> 1 0 18 6 -1. <_> 7 0 6 6 3. <_> <_> 6 0 3 4 -1. <_> 7 0 1 4 3. <_> <_> 14 10 4 10 -1. <_> 16 10 2 5 2. <_> 14 15 2 5 2. <_> <_> 3 2 3 2 -1. <_> 4 2 1 2 3. <_> <_> 11 2 2 2 -1. <_> 11 3 2 1 2. <_> <_> 2 10 4 10 -1. <_> 2 10 2 5 2. <_> 4 15 2 5 2. <_> <_> 0 13 20 6 -1. <_> 10 13 10 3 2. <_> 0 16 10 3 2. <_> <_> 0 5 2 15 -1. <_> 1 5 1 15 2. <_> <_> 1 7 18 4 -1. <_> 10 7 9 2 2. <_> 1 9 9 2 2. <_> <_> 0 0 2 17 -1. <_> 1 0 1 17 2. <_> <_> 2 6 16 6 -1. <_> 10 6 8 3 2. <_> 2 9 8 3 2. <_> <_> 8 14 1 3 -1. <_> 8 15 1 1 3. <_> <_> 8 15 4 2 -1. <_> 8 16 4 1 2. <_> <_> 5 2 8 2 -1. <_> 5 2 4 1 2. <_> 9 3 4 1 2. <_> <_> 6 11 8 6 -1. <_> 6 14 8 3 2. <_> <_> 9 13 2 2 -1. <_> 9 14 2 1 2. <_> <_> 18 4 2 6 -1. <_> 18 6 2 2 3. <_> <_> 9 12 2 2 -1. <_> 9 13 2 1 2. <_> <_> 18 4 2 6 -1. <_> 18 6 2 2 3. <_> <_> 9 13 1 3 -1. <_> 9 14 1 1 3. <_> <_> 18 4 2 6 -1. <_> 18 6 2 2 3. <_> <_> 0 4 2 6 -1. <_> 0 6 2 2 3. <_> <_> 9 12 3 3 -1. <_> 9 13 3 1 3. <_> <_> 3 13 2 3 -1. <_> 3 14 2 1 3. <_> <_> 13 13 4 3 -1. <_> 13 14 4 1 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 5 2 10 6 -1. <_> 5 4 10 2 3. <_> <_> 3 13 4 3 -1. <_> 3 14 4 1 3. <_> <_> 3 7 15 5 -1. <_> 8 7 5 5 3. <_> <_> 3 7 12 2 -1. <_> 7 7 4 2 3. <_> <_> 10 3 3 9 -1. <_> 11 3 1 9 3. <_> <_> 8 6 4 6 -1. <_> 10 6 2 6 2. <_> <_> 9 7 4 3 -1. <_> 9 8 4 1 3. <_> <_> 0 9 4 9 -1. <_> 2 9 2 9 2. <_> <_> 9 13 3 5 -1. <_> 10 13 1 5 3. <_> <_> 7 7 6 3 -1. <_> 9 7 2 3 3. <_> <_> 9 7 3 5 -1. <_> 10 7 1 5 3. <_> <_> 5 7 8 2 -1. <_> 9 7 4 2 2. <_> <_> 5 9 12 2 -1. <_> 9 9 4 2 3. <_> <_> 5 6 10 3 -1. <_> 10 6 5 3 2. <_> <_> 10 12 3 1 -1. <_> 11 12 1 1 3. <_> <_> 0 1 11 15 -1. <_> 0 6 11 5 3. <_> <_> 1 0 18 6 -1. <_> 7 0 6 6 3. <_> <_> 7 7 6 1 -1. <_> 9 7 2 1 3. <_> <_> 5 16 6 4 -1. <_> 5 16 3 2 2. <_> 8 18 3 2 2. <_> <_> 6 5 9 8 -1. <_> 6 9 9 4 2. <_> <_> 5 10 2 6 -1. <_> 5 13 2 3 2. <_> <_> 7 6 8 10 -1. <_> 11 6 4 5 2. <_> 7 11 4 5 2. <_> <_> 5 6 8 10 -1. <_> 5 6 4 5 2. <_> 9 11 4 5 2. <_> <_> 9 5 2 2 -1. <_> 9 6 2 1 2. <_> <_> 5 12 8 2 -1. <_> 5 13 8 1 2. <_> <_> 10 2 8 2 -1. <_> 10 3 8 1 2. <_> <_> 4 0 2 10 -1. <_> 4 0 1 5 2. <_> 5 5 1 5 2. <_> <_> 9 10 2 2 -1. <_> 9 11 2 1 2. <_> <_> 2 8 15 3 -1. <_> 2 9 15 1 3. <_> <_> 8 13 4 3 -1. <_> 8 14 4 1 3. <_> <_> 7 2 3 2 -1. <_> 8 2 1 2 3. <_> <_> 7 13 6 3 -1. <_> 7 14 6 1 3. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 17 2 3 6 -1. <_> 17 4 3 2 3. <_> <_> 1 5 3 4 -1. <_> 2 5 1 4 3. <_> <_> 14 8 4 6 -1. <_> 14 10 4 2 3. <_> <_> 1 4 3 8 -1. <_> 2 4 1 8 3. <_> <_> 8 13 4 6 -1. <_> 8 16 4 3 2. <_> <_> 3 14 2 2 -1. <_> 3 15 2 1 2. <_> <_> 14 8 4 6 -1. <_> 14 10 4 2 3. <_> <_> 2 8 4 6 -1. <_> 2 10 4 2 3. <_> <_> 10 14 1 6 -1. <_> 10 17 1 3 2. <_> <_> 7 5 3 6 -1. <_> 8 5 1 6 3. <_> <_> 11 2 2 6 -1. <_> 12 2 1 3 2. <_> 11 5 1 3 2. <_> <_> 6 6 6 5 -1. <_> 8 6 2 5 3. <_> <_> 17 1 3 6 -1. <_> 17 3 3 2 3. <_> <_> 8 7 3 5 -1. <_> 9 7 1 5 3. <_> <_> 9 18 3 2 -1. <_> 10 18 1 2 3. <_> <_> 8 18 3 2 -1. <_> 9 18 1 2 3. <_> <_> 12 3 5 2 -1. <_> 12 4 5 1 2. <_> <_> 7 1 5 12 -1. <_> 7 7 5 6 2. <_> <_> 1 0 18 4 -1. <_> 7 0 6 4 3. <_> <_> 4 2 2 2 -1. <_> 4 3 2 1 2. <_> <_> 11 14 4 2 -1. <_> 13 14 2 1 2. <_> 11 15 2 1 2. <_> <_> 0 2 3 6 -1. <_> 0 4 3 2 3. <_> <_> 9 7 2 3 -1. <_> 9 8 2 1 3. <_> <_> 5 5 1 3 -1. <_> 5 6 1 1 3. <_> <_> 10 10 6 1 -1. <_> 10 10 3 1 2. <_> <_> 4 10 6 1 -1. <_> 7 10 3 1 2. <_> <_> 9 17 3 3 -1. <_> 9 18 3 1 3. <_> <_> 4 14 1 3 -1. <_> 4 15 1 1 3. <_> <_> 12 5 3 3 -1. <_> 12 6 3 1 3. <_> <_> 4 5 12 3 -1. <_> 4 6 12 1 3. <_> <_> 9 8 2 3 -1. <_> 9 9 2 1 3. <_> <_> 4 9 3 3 -1. <_> 5 9 1 3 3. <_> <_> 6 0 9 17 -1. <_> 9 0 3 17 3. <_> <_> 9 12 1 3 -1. <_> 9 13 1 1 3. <_> <_> 9 5 2 15 -1. <_> 9 10 2 5 3. <_> <_> 8 14 2 3 -1. <_> 8 15 2 1 3. <_> <_> 10 14 1 3 -1. <_> 10 15 1 1 3. <_> <_> 7 1 6 5 -1. <_> 9 1 2 5 3. <_> <_> 0 0 20 2 -1. <_> 0 0 10 2 2. <_> <_> 2 13 5 3 -1. <_> 2 14 5 1 3. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 2 5 9 15 -1. <_> 2 10 9 5 3. <_> <_> 5 0 12 10 -1. <_> 11 0 6 5 2. <_> 5 5 6 5 2. <_> <_> 5 1 2 3 -1. <_> 6 1 1 3 2. <_> <_> 10 7 6 1 -1. <_> 12 7 2 1 3. <_> <_> 3 1 2 10 -1. <_> 3 1 1 5 2. <_> 4 6 1 5 2. <_> <_> 13 7 2 1 -1. <_> 13 7 1 1 2. <_> <_> 4 13 4 6 -1. <_> 4 15 4 2 3. <_> <_> 13 7 2 1 -1. <_> 13 7 1 1 2. <_> <_> 5 7 2 1 -1. <_> 6 7 1 1 2. <_> <_> 2 12 18 4 -1. <_> 11 12 9 2 2. <_> 2 14 9 2 2. <_> <_> 5 7 2 2 -1. <_> 5 7 1 1 2. <_> 6 8 1 1 2. <_> <_> 16 3 4 2 -1. <_> 16 4 4 1 2. <_> <_> 0 2 2 18 -1. <_> 0 2 1 9 2. <_> 1 11 1 9 2. <_> <_> 1 2 18 4 -1. <_> 10 2 9 2 2. <_> 1 4 9 2 2. <_> <_> 9 14 1 3 -1. <_> 9 15 1 1 3. <_> <_> 2 12 18 4 -1. <_> 11 12 9 2 2. <_> 2 14 9 2 2. <_> <_> 0 12 18 4 -1. <_> 0 12 9 2 2. <_> 9 14 9 2 2. <_> <_> 11 4 5 3 -1. <_> 11 5 5 1 3. <_> <_> 6 4 7 3 -1. <_> 6 5 7 1 3. <_> <_> 13 17 3 3 -1. <_> 13 18 3 1 3. <_> <_> 8 1 3 4 -1. <_> 9 1 1 4 3. <_> <_> 11 4 2 4 -1. <_> 11 4 1 4 2. <_> <_> 0 17 9 3 -1. <_> 3 17 3 3 3. <_> <_> 11 0 2 8 -1. <_> 12 0 1 4 2. <_> 11 4 1 4 2. <_> <_> 0 8 6 12 -1. <_> 0 8 3 6 2. <_> 3 14 3 6 2. <_> <_> 10 7 4 12 -1. <_> 10 13 4 6 2. <_> <_> 5 3 8 14 -1. <_> 5 10 8 7 2. <_> <_> 14 10 6 1 -1. <_> 14 10 3 1 2. <_> <_> 0 4 10 4 -1. <_> 0 6 10 2 2. <_> <_> 10 0 5 8 -1. <_> 10 4 5 4 2. <_> <_> 8 1 4 8 -1. <_> 8 1 2 4 2. <_> 10 5 2 4 2. <_> <_> 9 11 6 1 -1. <_> 11 11 2 1 3. <_> <_> 8 9 3 4 -1. <_> 9 9 1 4 3. <_> <_> 18 4 2 6 -1. <_> 18 6 2 2 3. <_> <_> 8 8 3 4 -1. <_> 9 8 1 4 3. <_> <_> 7 1 13 3 -1. <_> 7 2 13 1 3. <_> <_> 7 13 6 1 -1. <_> 9 13 2 1 3. <_> <_> 12 11 3 6 -1. <_> 12 13 3 2 3. <_> <_> 5 11 6 1 -1. <_> 7 11 2 1 3. <_> <_> 1 4 18 10 -1. <_> 10 4 9 5 2. <_> 1 9 9 5 2. <_> <_> 8 6 4 9 -1. <_> 8 9 4 3 3. <_> <_> 8 6 4 3 -1. <_> 8 7 4 1 3. <_> <_> 8 7 3 3 -1. <_> 9 7 1 3 3. <_> <_> 14 15 4 3 -1. <_> 14 16 4 1 3. <_> <_> 5 10 3 10 -1. <_> 6 10 1 10 3. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 0 8 1 6 -1. <_> 0 10 1 2 3. <_> <_> 10 15 1 3 -1. <_> 10 16 1 1 3. <_> <_> 2 15 4 3 -1. <_> 2 16 4 1 3. <_> <_> 18 3 2 8 -1. <_> 19 3 1 4 2. <_> 18 7 1 4 2. <_> <_> 0 3 2 8 -1. <_> 0 3 1 4 2. <_> 1 7 1 4 2. <_> <_> 3 7 14 10 -1. <_> 10 7 7 5 2. <_> 3 12 7 5 2. <_> <_> 0 7 19 3 -1. <_> 0 8 19 1 3. <_> <_> 12 6 3 3 -1. <_> 12 7 3 1 3. <_> <_> 0 6 1 3 -1. <_> 0 7 1 1 3. <_> <_> 12 6 3 3 -1. <_> 12 7 3 1 3. <_> <_> 5 6 3 3 -1. <_> 5 7 3 1 3. <_> <_> 8 2 4 2 -1. <_> 8 3 4 1 2. <_> <_> 6 3 4 12 -1. <_> 8 3 2 12 2. <_> <_> 13 6 2 3 -1. <_> 13 7 2 1 3. <_> <_> 0 10 20 4 -1. <_> 0 12 20 2 2. <_> <_> 2 0 17 14 -1. <_> 2 7 17 7 2. <_> <_> 0 0 6 10 -1. <_> 0 0 3 5 2. <_> 3 5 3 5 2. <_> <_> 14 6 6 4 -1. <_> 14 6 3 4 2. <_> <_> 0 6 6 4 -1. <_> 3 6 3 4 2. <_> <_> 13 2 7 2 -1. <_> 13 3 7 1 2. <_> <_> 0 2 7 2 -1. <_> 0 3 7 1 2. <_> <_> 6 11 14 2 -1. <_> 13 11 7 1 2. <_> 6 12 7 1 2. <_> <_> 8 5 2 2 -1. <_> 8 5 1 1 2. <_> 9 6 1 1 2. <_> <_> 13 9 2 3 -1. <_> 13 9 1 3 2. <_> <_> 1 1 3 12 -1. <_> 2 1 1 12 3. <_> <_> 17 4 1 3 -1. <_> 17 5 1 1 3. <_> <_> 2 4 1 3 -1. <_> 2 5 1 1 3. <_> <_> 14 5 1 3 -1. <_> 14 6 1 1 3. <_> <_> 7 16 2 3 -1. <_> 7 17 2 1 3. <_> <_> 8 13 4 6 -1. <_> 10 13 2 3 2. <_> 8 16 2 3 2. <_> <_> 5 5 1 3 -1. <_> 5 6 1 1 3. <_> <_> 16 0 4 20 -1. <_> 16 0 2 20 2. <_> <_> 5 1 2 6 -1. <_> 5 1 1 3 2. <_> 6 4 1 3 2. <_> <_> 5 4 10 4 -1. <_> 5 6 10 2 2. <_> <_> 15 2 4 12 -1. <_> 15 2 2 12 2. <_> <_> 7 6 4 12 -1. <_> 7 12 4 6 2. <_> <_> 14 5 1 8 -1. <_> 14 9 1 4 2. <_> <_> 1 4 14 10 -1. <_> 1 4 7 5 2. <_> 8 9 7 5 2. <_> <_> 11 6 6 14 -1. <_> 14 6 3 7 2. <_> 11 13 3 7 2. <_> <_> 3 6 6 14 -1. <_> 3 6 3 7 2. <_> 6 13 3 7 2. <_> <_> 4 9 15 2 -1. <_> 9 9 5 2 3. <_> <_> 7 14 6 3 -1. <_> 7 15 6 1 3. <_> <_> 6 3 14 4 -1. <_> 13 3 7 2 2. <_> 6 5 7 2 2. <_> <_> 1 9 15 2 -1. <_> 6 9 5 2 3. <_> <_> 6 11 8 9 -1. <_> 6 14 8 3 3. <_> <_> 7 4 3 8 -1. <_> 8 4 1 8 3. <_> <_> 14 6 2 6 -1. <_> 14 9 2 3 2. <_> <_> 5 7 6 4 -1. <_> 5 7 3 2 2. <_> 8 9 3 2 2. <_> <_> 1 1 18 19 -1. <_> 7 1 6 19 3. <_> <_> 1 2 6 5 -1. <_> 4 2 3 5 2. <_> <_> 12 17 6 2 -1. <_> 12 18 6 1 2. <_> <_> 2 17 6 2 -1. <_> 2 18 6 1 2. <_> <_> 17 3 3 6 -1. <_> 17 5 3 2 3. <_> <_> 8 17 3 3 -1. <_> 8 18 3 1 3. <_> <_> 10 13 2 6 -1. <_> 10 16 2 3 2. <_> <_> 7 13 6 3 -1. <_> 7 14 6 1 3. <_> <_> 17 3 3 6 -1. <_> 17 5 3 2 3. <_> <_> 8 13 2 3 -1. <_> 8 14 2 1 3. <_> <_> 9 3 6 2 -1. <_> 11 3 2 2 3. <_> <_> 0 3 3 6 -1. <_> 0 5 3 2 3. <_> <_> 8 5 4 6 -1. <_> 8 7 4 2 3. <_> <_> 5 5 3 2 -1. <_> 5 6 3 1 2. <_> <_> 10 1 3 4 -1. <_> 11 1 1 4 3. <_> <_> 1 2 5 9 -1. <_> 1 5 5 3 3. <_> <_> 13 6 2 3 -1. <_> 13 7 2 1 3. <_> <_> 0 6 14 3 -1. <_> 7 6 7 3 2. <_> <_> 2 11 18 8 -1. <_> 2 15 18 4 2. <_> <_> 5 6 2 3 -1. <_> 5 7 2 1 3. <_> <_> 10 6 4 2 -1. <_> 12 6 2 1 2. <_> 10 7 2 1 2. <_> <_> 6 6 4 2 -1. <_> 6 6 2 1 2. <_> 8 7 2 1 2. <_> <_> 10 1 3 4 -1. <_> 11 1 1 4 3. <_> <_> 7 1 2 7 -1. <_> 8 1 1 7 2. <_> <_> 4 2 15 14 -1. <_> 4 9 15 7 2. <_> <_> 8 7 3 2 -1. <_> 9 7 1 2 3. <_> <_> 2 3 18 4 -1. <_> 11 3 9 2 2. <_> 2 5 9 2 2. <_> <_> 9 7 2 2 -1. <_> 10 7 1 2 2. <_> <_> 13 9 2 3 -1. <_> 13 9 1 3 2. <_> <_> 5 2 6 2 -1. <_> 7 2 2 2 3. <_> <_> 9 5 2 7 -1. <_> 9 5 1 7 2. <_> <_> 5 9 2 3 -1. <_> 6 9 1 3 2. <_> <_> 6 0 14 18 -1. <_> 6 9 14 9 2. <_> <_> 2 16 6 3 -1. <_> 2 17 6 1 3. <_> <_> 9 7 3 6 -1. <_> 10 7 1 6 3. <_> <_> 7 8 4 3 -1. <_> 7 9 4 1 3. <_> <_> 7 12 6 3 -1. <_> 7 13 6 1 3. <_> <_> 9 12 2 3 -1. <_> 9 13 2 1 3. <_> <_> 7 12 6 2 -1. <_> 9 12 2 2 3. <_> <_> 5 11 4 6 -1. <_> 5 14 4 3 2. <_> <_> 11 12 7 2 -1. <_> 11 13 7 1 2. <_> <_> 6 10 8 6 -1. <_> 6 10 4 3 2. <_> 10 13 4 3 2. <_> <_> 11 10 3 4 -1. <_> 11 12 3 2 2. <_> <_> 9 16 2 3 -1. <_> 9 17 2 1 3. <_> <_> 13 3 1 9 -1. <_> 13 6 1 3 3. <_> <_> 1 13 14 6 -1. <_> 1 15 14 2 3. <_> <_> 13 6 1 6 -1. <_> 13 9 1 3 2. <_> <_> 0 4 3 8 -1. <_> 1 4 1 8 3. <_> <_> 18 0 2 18 -1. <_> 18 0 1 18 2. <_> <_> 2 3 6 2 -1. <_> 2 4 6 1 2. <_> <_> 9 0 8 6 -1. <_> 9 2 8 2 3. <_> <_> 6 6 1 6 -1. <_> 6 9 1 3 2. <_> <_> 14 8 6 3 -1. <_> 14 9 6 1 3. <_> <_> 0 0 2 18 -1. <_> 1 0 1 18 2. <_> <_> 1 18 18 2 -1. <_> 10 18 9 1 2. <_> 1 19 9 1 2. <_> <_> 3 15 2 2 -1. <_> 3 16 2 1 2. <_> <_> 8 14 5 3 -1. <_> 8 15 5 1 3. <_> <_> 8 14 2 3 -1. <_> 8 15 2 1 3. <_> <_> 12 3 3 3 -1. <_> 13 3 1 3 3. <_> <_> 7 5 6 2 -1. <_> 9 5 2 2 3. <_> <_> 15 5 5 2 -1. <_> 15 6 5 1 2. <_> <_> 0 5 5 2 -1. <_> 0 6 5 1 2. <_> <_> 17 14 1 6 -1. <_> 17 17 1 3 2. <_> <_> 2 9 9 3 -1. <_> 5 9 3 3 3. <_> <_> 12 3 3 3 -1. <_> 13 3 1 3 3. <_> <_> 0 0 4 18 -1. <_> 2 0 2 18 2. <_> <_> 17 6 1 3 -1. <_> 17 7 1 1 3. <_> <_> 2 14 1 6 -1. <_> 2 17 1 3 2. <_> <_> 19 8 1 2 -1. <_> 19 9 1 1 2. <_> <_> 5 3 3 3 -1. <_> 6 3 1 3 3. <_> <_> 9 16 2 3 -1. <_> 9 17 2 1 3. <_> <_> 2 6 1 3 -1. <_> 2 7 1 1 3. <_> <_> 12 4 8 2 -1. <_> 16 4 4 1 2. <_> 12 5 4 1 2. <_> <_> 0 4 8 2 -1. <_> 0 4 4 1 2. <_> 4 5 4 1 2. <_> <_> 2 16 18 4 -1. <_> 2 18 18 2 2. <_> <_> 7 15 2 4 -1. <_> 7 17 2 2 2. <_> <_> 4 0 14 3 -1. <_> 4 1 14 1 3. <_> <_> 0 0 4 20 -1. <_> 2 0 2 20 2. <_> <_> 12 4 4 8 -1. <_> 14 4 2 4 2. <_> 12 8 2 4 2. <_> <_> 6 7 2 2 -1. <_> 6 7 1 1 2. <_> 7 8 1 1 2. <_> <_> 10 6 2 3 -1. <_> 10 7 2 1 3. <_> <_> 8 7 3 2 -1. <_> 8 8 3 1 2. <_> <_> 8 2 6 12 -1. <_> 8 8 6 6 2. <_> <_> 4 0 11 12 -1. <_> 4 4 11 4 3. <_> <_> 14 9 6 11 -1. <_> 16 9 2 11 3. <_> <_> 0 14 4 3 -1. <_> 0 15 4 1 3. <_> <_> 9 10 2 3 -1. <_> 9 11 2 1 3. <_> <_> 5 11 3 2 -1. <_> 5 12 3 1 2. <_> <_> 9 15 3 3 -1. <_> 10 15 1 3 3. <_> <_> 8 8 3 4 -1. <_> 9 8 1 4 3. <_> <_> 9 15 3 3 -1. <_> 10 15 1 3 3. <_> <_> 7 7 3 2 -1. <_> 8 7 1 2 3. <_> <_> 2 10 16 4 -1. <_> 10 10 8 2 2. <_> 2 12 8 2 2. <_> <_> 2 3 4 17 -1. <_> 4 3 2 17 2. <_> <_> 15 13 2 7 -1. <_> 15 13 1 7 2. <_> <_> 2 2 6 1 -1. <_> 5 2 3 1 2. <_> <_> 5 2 12 4 -1. <_> 9 2 4 4 3. <_> <_> 6 0 8 12 -1. <_> 6 0 4 6 2. <_> 10 6 4 6 2. <_> <_> 13 7 2 2 -1. <_> 14 7 1 1 2. <_> 13 8 1 1 2. <_> <_> 0 12 20 6 -1. <_> 0 14 20 2 3. <_> <_> 14 7 2 3 -1. <_> 14 7 1 3 2. <_> <_> 0 8 9 12 -1. <_> 3 8 3 12 3. <_> <_> 3 0 16 2 -1. <_> 3 0 8 2 2. <_> <_> 6 15 3 3 -1. <_> 6 16 3 1 3. <_> <_> 8 15 6 3 -1. <_> 8 16 6 1 3. <_> <_> 0 10 1 6 -1. <_> 0 12 1 2 3. <_> <_> 10 9 4 3 -1. <_> 10 10 4 1 3. <_> <_> 9 15 2 3 -1. <_> 9 16 2 1 3. <_> <_> 5 7 10 1 -1. <_> 5 7 5 1 2. <_> <_> 4 0 12 19 -1. <_> 10 0 6 19 2. <_> <_> 0 6 20 6 -1. <_> 10 6 10 3 2. <_> 0 9 10 3 2. <_> <_> 3 6 2 2 -1. <_> 3 6 1 1 2. <_> 4 7 1 1 2. <_> <_> 15 6 2 2 -1. <_> 16 6 1 1 2. <_> 15 7 1 1 2. <_> <_> 3 6 2 2 -1. <_> 3 6 1 1 2. <_> 4 7 1 1 2. <_> <_> 14 4 1 12 -1. <_> 14 10 1 6 2. <_> <_> 2 5 16 10 -1. <_> 2 5 8 5 2. <_> 10 10 8 5 2. <_> <_> 9 17 3 2 -1. <_> 10 17 1 2 3. <_> <_> 1 4 2 2 -1. <_> 1 5 2 1 2. <_> <_> 5 0 15 5 -1. <_> 10 0 5 5 3. <_> <_> 0 0 15 5 -1. <_> 5 0 5 5 3. <_> <_> 11 2 2 17 -1. <_> 11 2 1 17 2. <_> <_> 7 2 2 17 -1. <_> 8 2 1 17 2. <_> <_> 15 11 2 9 -1. <_> 15 11 1 9 2. <_> <_> 3 11 2 9 -1. <_> 4 11 1 9 2. <_> <_> 5 16 14 4 -1. <_> 5 16 7 4 2. <_> <_> 1 4 18 1 -1. <_> 7 4 6 1 3. <_> <_> 13 7 6 4 -1. <_> 16 7 3 2 2. <_> 13 9 3 2 2. <_> <_> 9 8 2 12 -1. <_> 9 12 2 4 3. <_> <_> 12 1 6 6 -1. <_> 12 3 6 2 3. <_> <_> 5 2 6 6 -1. <_> 5 2 3 3 2. <_> 8 5 3 3 2. <_> <_> 9 16 6 4 -1. <_> 12 16 3 2 2. <_> 9 18 3 2 2. <_> <_> 1 2 18 3 -1. <_> 7 2 6 3 3. <_> <_> 7 4 9 10 -1. <_> 7 9 9 5 2. <_> <_> 5 9 4 4 -1. <_> 7 9 2 4 2. <_> <_> 11 10 3 6 -1. <_> 11 13 3 3 2. <_> <_> 7 11 5 3 -1. <_> 7 12 5 1 3. <_> <_> 7 11 6 6 -1. <_> 10 11 3 3 2. <_> 7 14 3 3 2. <_> <_> 0 0 10 9 -1. <_> 0 3 10 3 3. <_> <_> 13 14 1 6 -1. <_> 13 16 1 2 3. <_> <_> 0 2 3 6 -1. <_> 0 4 3 2 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 6 14 1 6 -1. <_> 6 16 1 2 3. <_> <_> 9 15 2 3 -1. <_> 9 16 2 1 3. <_> <_> 6 4 3 3 -1. <_> 7 4 1 3 3. <_> <_> 9 0 11 3 -1. <_> 9 1 11 1 3. <_> <_> 0 6 20 3 -1. <_> 0 7 20 1 3. <_> <_> 10 1 1 2 -1. <_> 10 2 1 1 2. <_> <_> 9 6 2 6 -1. <_> 10 6 1 6 2. <_> <_> 5 8 12 1 -1. <_> 9 8 4 1 3. <_> <_> 3 8 12 1 -1. <_> 7 8 4 1 3. <_> <_> 9 7 3 5 -1. <_> 10 7 1 5 3. <_> <_> 3 9 6 2 -1. <_> 6 9 3 2 2. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 7 0 6 1 -1. <_> 9 0 2 1 3. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 7 10 2 1 -1. <_> 8 10 1 1 2. <_> <_> 6 4 9 13 -1. <_> 9 4 3 13 3. <_> <_> 6 8 4 2 -1. <_> 6 9 4 1 2. <_> <_> 16 2 4 6 -1. <_> 16 2 2 6 2. <_> <_> 0 17 6 3 -1. <_> 0 18 6 1 3. <_> <_> 10 10 3 10 -1. <_> 10 15 3 5 2. <_> <_> 8 7 3 5 -1. <_> 9 7 1 5 3. <_> <_> 10 4 4 3 -1. <_> 10 4 2 3 2. <_> <_> 8 4 3 8 -1. <_> 9 4 1 8 3. <_> <_> 6 6 9 13 -1. <_> 9 6 3 13 3. <_> <_> 6 0 8 12 -1. <_> 6 0 4 6 2. <_> 10 6 4 6 2. <_> <_> 14 2 6 8 -1. <_> 16 2 2 8 3. <_> <_> 6 0 3 6 -1. <_> 7 0 1 6 3. <_> <_> 14 2 6 8 -1. <_> 16 2 2 8 3. <_> <_> 0 5 6 6 -1. <_> 0 8 6 3 2. <_> <_> 9 12 6 2 -1. <_> 12 12 3 1 2. <_> 9 13 3 1 2. <_> <_> 8 17 3 2 -1. <_> 9 17 1 2 3. <_> <_> 11 6 2 2 -1. <_> 12 6 1 1 2. <_> 11 7 1 1 2. <_> <_> 1 9 18 2 -1. <_> 7 9 6 2 3. <_> <_> 11 6 2 2 -1. <_> 12 6 1 1 2. <_> 11 7 1 1 2. <_> <_> 3 4 12 8 -1. <_> 7 4 4 8 3. <_> <_> 13 11 5 3 -1. <_> 13 12 5 1 3. <_> <_> 9 10 2 3 -1. <_> 9 11 2 1 3. <_> <_> 14 7 2 3 -1. <_> 14 7 1 3 2. <_> <_> 5 4 1 3 -1. <_> 5 5 1 1 3. <_> <_> 13 4 2 3 -1. <_> 13 5 2 1 3. <_> <_> 5 4 2 3 -1. <_> 5 5 2 1 3. <_> <_> 9 8 2 3 -1. <_> 9 9 2 1 3. <_> <_> 8 9 2 2 -1. <_> 8 10 2 1 2. <_> <_> 15 14 1 4 -1. <_> 15 16 1 2 2. <_> <_> 3 12 2 2 -1. <_> 3 13 2 1 2. <_> <_> 12 15 2 2 -1. <_> 13 15 1 1 2. <_> 12 16 1 1 2. <_> <_> 9 13 2 2 -1. <_> 9 14 2 1 2. <_> <_> 4 11 14 9 -1. <_> 4 14 14 3 3. <_> <_> 7 13 4 3 -1. <_> 7 14 4 1 3. <_> <_> 15 14 1 4 -1. <_> 15 16 1 2 2. <_> <_> 4 14 1 4 -1. <_> 4 16 1 2 2. <_> <_> 14 0 6 13 -1. <_> 16 0 2 13 3. <_> <_> 4 1 2 12 -1. <_> 4 1 1 6 2. <_> 5 7 1 6 2. <_> <_> 11 14 6 6 -1. <_> 14 14 3 3 2. <_> 11 17 3 3 2. <_> <_> 3 14 6 6 -1. <_> 3 14 3 3 2. <_> 6 17 3 3 2. <_> <_> 14 17 3 2 -1. <_> 14 18 3 1 2. <_> <_> 3 17 3 2 -1. <_> 3 18 3 1 2. <_> <_> 14 0 6 13 -1. <_> 16 0 2 13 3. <_> <_> 0 0 6 13 -1. <_> 2 0 2 13 3. <_> <_> 10 10 7 6 -1. <_> 10 12 7 2 3. <_> <_> 6 15 2 2 -1. <_> 6 15 1 1 2. <_> 7 16 1 1 2. <_> <_> 6 11 8 6 -1. <_> 10 11 4 3 2. <_> 6 14 4 3 2. <_> <_> 7 6 2 2 -1. <_> 7 6 1 1 2. <_> 8 7 1 1 2. <_> <_> 2 2 16 6 -1. <_> 10 2 8 3 2. <_> 2 5 8 3 2. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 11 7 3 10 -1. <_> 11 12 3 5 2. <_> <_> 6 7 3 10 -1. <_> 6 12 3 5 2. <_> <_> 10 7 3 2 -1. <_> 11 7 1 2 3. <_> <_> 8 12 4 2 -1. <_> 8 13 4 1 2. <_> <_> 10 1 1 3 -1. <_> 10 2 1 1 3. <_> <_> 1 2 4 18 -1. <_> 1 2 2 9 2. <_> 3 11 2 9 2. <_> <_> 12 4 4 12 -1. <_> 12 10 4 6 2. <_> <_> 0 0 1 6 -1. <_> 0 2 1 2 3. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 8 7 4 3 -1. <_> 8 8 4 1 3. <_> <_> 10 7 3 2 -1. <_> 11 7 1 2 3. <_> <_> 7 7 3 2 -1. <_> 8 7 1 2 3. <_> <_> 9 4 6 1 -1. <_> 11 4 2 1 3. <_> <_> 8 7 2 3 -1. <_> 9 7 1 3 2. <_> <_> 12 7 8 6 -1. <_> 16 7 4 3 2. <_> 12 10 4 3 2. <_> <_> 0 7 8 6 -1. <_> 0 7 4 3 2. <_> 4 10 4 3 2. <_> <_> 18 2 2 10 -1. <_> 19 2 1 5 2. <_> 18 7 1 5 2. <_> <_> 0 2 6 4 -1. <_> 3 2 3 4 2. <_> <_> 9 4 6 1 -1. <_> 11 4 2 1 3. <_> <_> 7 15 2 2 -1. <_> 7 15 1 1 2. <_> 8 16 1 1 2. <_> <_> 11 13 1 6 -1. <_> 11 16 1 3 2. <_> <_> 8 13 1 6 -1. <_> 8 16 1 3 2. <_> <_> 14 3 2 1 -1. <_> 14 3 1 1 2. <_> <_> 8 15 2 3 -1. <_> 8 16 2 1 3. <_> <_> 12 15 7 4 -1. <_> 12 17 7 2 2. <_> <_> 4 14 12 3 -1. <_> 4 15 12 1 3. <_> <_> 10 3 3 2 -1. <_> 11 3 1 2 3. <_> <_> 4 12 2 2 -1. <_> 4 13 2 1 2. <_> <_> 10 11 4 6 -1. <_> 10 14 4 3 2. <_> <_> 7 13 2 2 -1. <_> 7 13 1 1 2. <_> 8 14 1 1 2. <_> <_> 4 11 14 4 -1. <_> 11 11 7 2 2. <_> 4 13 7 2 2. <_> <_> 1 18 18 2 -1. <_> 7 18 6 2 3. <_> <_> 11 18 2 2 -1. <_> 12 18 1 1 2. <_> 11 19 1 1 2. <_> <_> 7 18 2 2 -1. <_> 7 18 1 1 2. <_> 8 19 1 1 2. <_> <_> 12 18 8 2 -1. <_> 12 19 8 1 2. <_> <_> 7 14 6 2 -1. <_> 7 15 6 1 2. <_> <_> 8 12 4 8 -1. <_> 10 12 2 4 2. <_> 8 16 2 4 2. <_> <_> 4 9 3 3 -1. <_> 4 10 3 1 3. <_> <_> 7 10 6 2 -1. <_> 9 10 2 2 3. <_> <_> 5 0 4 15 -1. <_> 7 0 2 15 2. <_> <_> 8 6 12 14 -1. <_> 12 6 4 14 3. <_> <_> 5 16 3 3 -1. <_> 5 17 3 1 3. <_> <_> 8 1 12 19 -1. <_> 12 1 4 19 3. <_> <_> 3 0 3 2 -1. <_> 3 1 3 1 2. <_> <_> 10 12 4 5 -1. <_> 10 12 2 5 2. <_> <_> 6 12 4 5 -1. <_> 8 12 2 5 2. <_> <_> 11 11 2 2 -1. <_> 12 11 1 1 2. <_> 11 12 1 1 2. <_> <_> 0 2 3 6 -1. <_> 0 4 3 2 3. <_> <_> 11 11 2 2 -1. <_> 12 11 1 1 2. <_> 11 12 1 1 2. <_> <_> 7 6 4 10 -1. <_> 7 11 4 5 2. <_> <_> 11 11 2 2 -1. <_> 12 11 1 1 2. <_> 11 12 1 1 2. <_> <_> 2 13 5 2 -1. <_> 2 14 5 1 2. <_> <_> 11 11 2 2 -1. <_> 12 11 1 1 2. <_> 11 12 1 1 2. <_> <_> 7 11 2 2 -1. <_> 7 11 1 1 2. <_> 8 12 1 1 2. <_> <_> 14 13 3 3 -1. <_> 14 14 3 1 3. <_> <_> 3 13 3 3 -1. <_> 3 14 3 1 3. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 8 7 3 3 -1. <_> 8 8 3 1 3. <_> <_> 13 5 3 3 -1. <_> 13 6 3 1 3. <_> <_> 0 9 5 3 -1. <_> 0 10 5 1 3. <_> <_> 13 5 3 3 -1. <_> 13 6 3 1 3. <_> <_> 9 12 2 8 -1. <_> 9 12 1 4 2. <_> 10 16 1 4 2. <_> <_> 11 7 2 2 -1. <_> 12 7 1 1 2. <_> 11 8 1 1 2. <_> <_> 0 16 6 4 -1. <_> 3 16 3 4 2. <_> <_> 10 6 2 3 -1. <_> 10 7 2 1 3. <_> <_> 9 5 2 6 -1. <_> 9 7 2 2 3. <_> <_> 12 15 8 4 -1. <_> 12 15 4 4 2. <_> <_> 0 14 8 6 -1. <_> 4 14 4 6 2. <_> <_> 9 0 3 2 -1. <_> 10 0 1 2 3. <_> <_> 4 15 4 2 -1. <_> 6 15 2 2 2. <_> <_> 12 7 3 13 -1. <_> 13 7 1 13 3. <_> <_> 5 7 3 13 -1. <_> 6 7 1 13 3. <_> <_> 9 6 3 9 -1. <_> 9 9 3 3 3. <_> <_> 4 4 7 12 -1. <_> 4 10 7 6 2. <_> <_> 12 12 2 2 -1. <_> 13 12 1 1 2. <_> 12 13 1 1 2. <_> <_> 6 12 2 2 -1. <_> 6 12 1 1 2. <_> 7 13 1 1 2. <_> <_> 8 9 4 2 -1. <_> 10 9 2 1 2. <_> 8 10 2 1 2. <_> <_> 3 6 2 2 -1. <_> 3 6 1 1 2. <_> 4 7 1 1 2. <_> <_> 16 6 3 2 -1. <_> 16 7 3 1 2. <_> <_> 0 7 19 4 -1. <_> 0 9 19 2 2. <_> <_> 10 2 10 1 -1. <_> 10 2 5 1 2. <_> <_> 9 4 2 12 -1. <_> 9 10 2 6 2. <_> <_> 12 18 4 1 -1. <_> 12 18 2 1 2. <_> <_> 1 7 6 4 -1. <_> 1 7 3 2 2. <_> 4 9 3 2 2. <_> <_> 12 0 6 13 -1. <_> 14 0 2 13 3. <_> <_> 2 0 6 13 -1. <_> 4 0 2 13 3. <_> <_> 10 5 8 8 -1. <_> 10 9 8 4 2. <_> <_> 8 3 2 5 -1. <_> 9 3 1 5 2. <_> <_> 8 4 9 1 -1. <_> 11 4 3 1 3. <_> <_> 3 4 9 1 -1. <_> 6 4 3 1 3. <_> <_> 1 0 18 10 -1. <_> 7 0 6 10 3. <_> <_> 7 17 5 3 -1. <_> 7 18 5 1 3. <_> <_> 7 11 6 1 -1. <_> 9 11 2 1 3. <_> <_> 2 2 3 2 -1. <_> 2 3 3 1 2. <_> <_> 8 12 4 2 -1. <_> 8 13 4 1 2. <_> <_> 6 10 3 6 -1. <_> 6 13 3 3 2. <_> <_> 11 4 2 4 -1. <_> 11 4 1 4 2. <_> <_> 7 4 2 4 -1. <_> 8 4 1 4 2. <_> <_> 9 6 2 4 -1. <_> 9 6 1 4 2. <_> <_> 6 13 8 3 -1. <_> 6 14 8 1 3. <_> <_> 9 15 3 4 -1. <_> 10 15 1 4 3. <_> <_> 9 2 2 17 -1. <_> 10 2 1 17 2. <_> <_> 7 0 6 1 -1. <_> 9 0 2 1 3. <_> <_> 8 15 3 4 -1. <_> 9 15 1 4 3. <_> <_> 7 13 7 3 -1. <_> 7 14 7 1 3. <_> <_> 8 16 3 3 -1. <_> 9 16 1 3 3. <_> <_> 6 2 8 10 -1. <_> 6 7 8 5 2. <_> <_> 2 5 8 8 -1. <_> 2 9 8 4 2. <_> <_> 14 16 2 2 -1. <_> 14 17 2 1 2. <_> <_> 4 16 2 2 -1. <_> 4 17 2 1 2. <_> <_> 10 11 4 6 -1. <_> 10 14 4 3 2. <_> <_> 6 11 4 6 -1. <_> 6 14 4 3 2. <_> <_> 10 14 1 3 -1. <_> 10 15 1 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 10 0 4 6 -1. <_> 12 0 2 3 2. <_> 10 3 2 3 2. <_> <_> 0 3 20 2 -1. <_> 0 4 20 1 2. <_> <_> 12 0 8 2 -1. <_> 16 0 4 1 2. <_> 12 1 4 1 2. <_> <_> 2 12 10 8 -1. <_> 2 16 10 4 2. <_> <_> 17 7 2 10 -1. <_> 18 7 1 5 2. <_> 17 12 1 5 2. <_> <_> 1 7 2 10 -1. <_> 1 7 1 5 2. <_> 2 12 1 5 2. <_> <_> 15 10 3 6 -1. <_> 15 12 3 2 3. <_> <_> 4 4 6 2 -1. <_> 6 4 2 2 3. <_> <_> 0 5 20 6 -1. <_> 0 7 20 2 3. <_> <_> 0 0 8 2 -1. <_> 0 0 4 1 2. <_> 4 1 4 1 2. <_> <_> 1 0 18 4 -1. <_> 7 0 6 4 3. <_> <_> 1 13 6 2 -1. <_> 1 14 6 1 2. <_> <_> 10 8 3 4 -1. <_> 11 8 1 4 3. <_> <_> 6 1 6 1 -1. <_> 8 1 2 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 1 6 18 2 -1. <_> 10 6 9 2 2. <_> <_> 15 11 1 2 -1. <_> 15 12 1 1 2. <_> <_> 6 5 1 2 -1. <_> 6 6 1 1 2. <_> <_> 13 4 1 3 -1. <_> 13 5 1 1 3. <_> <_> 2 15 1 2 -1. <_> 2 16 1 1 2. <_> <_> 12 4 4 3 -1. <_> 12 5 4 1 3. <_> <_> 0 0 7 3 -1. <_> 0 1 7 1 3. <_> <_> 9 12 6 2 -1. <_> 9 12 3 2 2. <_> <_> 5 4 2 3 -1. <_> 5 5 2 1 3. <_> <_> 18 4 2 3 -1. <_> 18 5 2 1 3. <_> <_> 3 0 8 6 -1. <_> 3 2 8 2 3. <_> <_> 0 2 20 6 -1. <_> 10 2 10 3 2. <_> 0 5 10 3 2. <_> <_> 4 7 2 4 -1. <_> 5 7 1 4 2. <_> <_> 3 10 15 2 -1. <_> 8 10 5 2 3. <_> <_> 3 0 12 11 -1. <_> 9 0 6 11 2. <_> <_> 13 0 2 6 -1. <_> 13 0 1 6 2. <_> <_> 0 19 2 1 -1. <_> 1 19 1 1 2. <_> <_> 16 10 4 10 -1. <_> 18 10 2 5 2. <_> 16 15 2 5 2. <_> <_> 4 8 10 3 -1. <_> 4 9 10 1 3. <_> <_> 14 12 3 3 -1. <_> 14 13 3 1 3. <_> <_> 0 10 4 10 -1. <_> 0 10 2 5 2. <_> 2 15 2 5 2. <_> <_> 18 3 2 6 -1. <_> 18 5 2 2 3. <_> <_> 6 6 1 3 -1. <_> 6 7 1 1 3. <_> <_> 7 7 7 2 -1. <_> 7 8 7 1 2. <_> <_> 0 3 2 6 -1. <_> 0 5 2 2 3. <_> <_> 11 1 3 1 -1. <_> 12 1 1 1 3. <_> <_> 5 0 2 6 -1. <_> 6 0 1 6 2. <_> <_> 1 1 18 14 -1. <_> 7 1 6 14 3. <_> <_> 4 6 8 3 -1. <_> 8 6 4 3 2. <_> <_> 9 12 6 2 -1. <_> 9 12 3 2 2. <_> <_> 5 12 6 2 -1. <_> 8 12 3 2 2. <_> <_> 10 7 3 5 -1. <_> 11 7 1 5 3. <_> <_> 7 7 3 5 -1. <_> 8 7 1 5 3. <_> <_> 13 0 3 10 -1. <_> 14 0 1 10 3. <_> <_> 4 11 3 2 -1. <_> 4 12 3 1 2. <_> <_> 17 3 3 6 -1. <_> 18 3 1 6 3. <_> <_> 1 8 18 10 -1. <_> 1 13 18 5 2. <_> <_> 13 0 3 10 -1. <_> 14 0 1 10 3. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 16 3 3 7 -1. <_> 17 3 1 7 3. <_> <_> 4 0 3 10 -1. <_> 5 0 1 10 3. <_> <_> 16 3 3 7 -1. <_> 17 3 1 7 3. <_> <_> 0 9 1 2 -1. <_> 0 10 1 1 2. <_> <_> 18 1 2 10 -1. <_> 18 1 1 10 2. <_> <_> 0 1 2 10 -1. <_> 1 1 1 10 2. <_> <_> 10 16 3 4 -1. <_> 11 16 1 4 3. <_> <_> 2 8 3 3 -1. <_> 3 8 1 3 3. <_> <_> 11 0 2 6 -1. <_> 12 0 1 3 2. <_> 11 3 1 3 2. <_> <_> 7 0 2 6 -1. <_> 7 0 1 3 2. <_> 8 3 1 3 2. <_> <_> 16 3 3 7 -1. <_> 17 3 1 7 3. <_> <_> 1 3 3 7 -1. <_> 2 3 1 7 3. <_> <_> 14 1 6 16 -1. <_> 16 1 2 16 3. <_> <_> 0 1 6 16 -1. <_> 2 1 2 16 3. <_> <_> 2 0 16 8 -1. <_> 10 0 8 4 2. <_> 2 4 8 4 2. <_> <_> 6 8 5 3 -1. <_> 6 9 5 1 3. <_> <_> 9 7 3 3 -1. <_> 10 7 1 3 3. <_> <_> 8 8 4 3 -1. <_> 8 9 4 1 3. <_> <_> 9 6 2 4 -1. <_> 9 6 1 4 2. <_> <_> 0 7 15 1 -1. <_> 5 7 5 1 3. <_> <_> 8 2 7 9 -1. <_> 8 5 7 3 3. <_> <_> 1 7 16 4 -1. <_> 1 7 8 2 2. <_> 9 9 8 2 2. <_> <_> 6 12 8 2 -1. <_> 6 13 8 1 2. <_> <_> 8 11 3 3 -1. <_> 8 12 3 1 3. <_> <_> 4 5 14 10 -1. <_> 11 5 7 5 2. <_> 4 10 7 5 2. <_> <_> 4 12 3 2 -1. <_> 4 13 3 1 2. <_> <_> 9 11 6 1 -1. <_> 11 11 2 1 3. <_> <_> 4 9 7 6 -1. <_> 4 11 7 2 3. <_> <_> 7 10 6 3 -1. <_> 7 11 6 1 3. <_> <_> 9 11 2 2 -1. <_> 9 12 2 1 2. <_> <_> 0 5 20 6 -1. <_> 0 7 20 2 3. <_> <_> 6 4 6 1 -1. <_> 8 4 2 1 3. <_> <_> 9 11 6 1 -1. <_> 11 11 2 1 3. <_> <_> 5 11 6 1 -1. <_> 7 11 2 1 3. <_> <_> 10 16 3 4 -1. <_> 11 16 1 4 3. <_> <_> 8 7 3 3 -1. <_> 9 7 1 3 3. <_> <_> 2 12 16 8 -1. <_> 2 16 16 4 2. <_> <_> 0 15 15 2 -1. <_> 0 16 15 1 2. <_> <_> 15 4 5 6 -1. <_> 15 6 5 2 3. <_> <_> 9 5 2 4 -1. <_> 10 5 1 4 2. <_> <_> 8 10 9 6 -1. <_> 8 12 9 2 3. <_> <_> 2 19 15 1 -1. <_> 7 19 5 1 3. <_> <_> 10 16 3 4 -1. <_> 11 16 1 4 3. <_> <_> 0 15 20 4 -1. <_> 0 17 20 2 2. <_> <_> 10 16 3 4 -1. <_> 11 16 1 4 3. <_> <_> 7 16 3 4 -1. <_> 8 16 1 4 3. <_> <_> 9 16 3 3 -1. <_> 9 17 3 1 3. <_> <_> 8 11 4 6 -1. <_> 8 14 4 3 2. <_> <_> 9 6 2 12 -1. <_> 9 10 2 4 3. <_> <_> 8 17 4 3 -1. <_> 8 18 4 1 3. <_> <_> 9 18 8 2 -1. <_> 13 18 4 1 2. <_> 9 19 4 1 2. <_> <_> 1 18 8 2 -1. <_> 1 19 8 1 2. <_> <_> 13 5 6 15 -1. <_> 15 5 2 15 3. <_> <_> 9 8 2 2 -1. <_> 9 9 2 1 2. <_> <_> 9 5 2 3 -1. <_> 9 5 1 3 2. <_> <_> 1 5 6 15 -1. <_> 3 5 2 15 3. <_> <_> 4 1 14 8 -1. <_> 11 1 7 4 2. <_> 4 5 7 4 2. <_> <_> 2 4 4 16 -1. <_> 2 4 2 8 2. <_> 4 12 2 8 2. <_> <_> 12 4 3 12 -1. <_> 12 10 3 6 2. <_> <_> 4 5 10 12 -1. <_> 4 5 5 6 2. <_> 9 11 5 6 2. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 5 4 2 3 -1. <_> 5 5 2 1 3. <_> <_> 12 2 4 10 -1. <_> 14 2 2 5 2. <_> 12 7 2 5 2. <_> <_> 6 4 7 3 -1. <_> 6 5 7 1 3. <_> <_> 2 0 18 2 -1. <_> 11 0 9 1 2. <_> 2 1 9 1 2. <_> <_> 0 0 18 2 -1. <_> 0 0 9 1 2. <_> 9 1 9 1 2. <_> <_> 13 13 4 6 -1. <_> 15 13 2 3 2. <_> 13 16 2 3 2. <_> <_> 3 13 4 6 -1. <_> 3 13 2 3 2. <_> 5 16 2 3 2. <_> <_> 10 12 2 6 -1. <_> 10 15 2 3 2. <_> <_> 5 9 10 10 -1. <_> 5 9 5 5 2. <_> 10 14 5 5 2. <_> <_> 11 4 4 2 -1. <_> 13 4 2 1 2. <_> 11 5 2 1 2. <_> <_> 7 12 6 8 -1. <_> 10 12 3 8 2. <_> <_> 12 2 4 10 -1. <_> 14 2 2 5 2. <_> 12 7 2 5 2. <_> <_> 8 11 2 1 -1. <_> 9 11 1 1 2. <_> <_> 10 5 1 12 -1. <_> 10 9 1 4 3. <_> <_> 0 11 6 9 -1. <_> 3 11 3 9 2. <_> <_> 12 2 4 10 -1. <_> 14 2 2 5 2. <_> 12 7 2 5 2. <_> <_> 4 2 4 10 -1. <_> 4 2 2 5 2. <_> 6 7 2 5 2. <_> <_> 11 4 4 2 -1. <_> 13 4 2 1 2. <_> 11 5 2 1 2. <_> <_> 0 14 6 3 -1. <_> 0 15 6 1 3. <_> <_> 11 4 4 2 -1. <_> 13 4 2 1 2. <_> 11 5 2 1 2. <_> <_> 6 1 3 2 -1. <_> 7 1 1 2 3. <_> <_> 11 4 4 2 -1. <_> 13 4 2 1 2. <_> 11 5 2 1 2. <_> <_> 5 4 4 2 -1. <_> 5 4 2 1 2. <_> 7 5 2 1 2. <_> <_> 13 0 2 12 -1. <_> 14 0 1 6 2. <_> 13 6 1 6 2. <_> <_> 6 0 3 10 -1. <_> 7 0 1 10 3. <_> <_> 3 0 17 8 -1. <_> 3 4 17 4 2. <_> <_> 0 4 20 4 -1. <_> 0 6 20 2 2. <_> <_> 0 3 8 2 -1. <_> 4 3 4 2 2. <_> <_> 8 11 4 3 -1. <_> 8 12 4 1 3. <_> <_> 5 7 6 4 -1. <_> 5 7 3 2 2. <_> 8 9 3 2 2. <_> <_> 8 3 4 9 -1. <_> 8 6 4 3 3. <_> <_> 8 15 1 4 -1. <_> 8 17 1 2 2. <_> <_> 4 5 12 7 -1. <_> 8 5 4 7 3. <_> <_> 4 2 4 10 -1. <_> 4 2 2 5 2. <_> 6 7 2 5 2. <_> <_> 3 0 17 2 -1. <_> 3 1 17 1 2. <_> <_> 2 2 16 15 -1. <_> 2 7 16 5 3. <_> <_> 15 2 5 2 -1. <_> 15 3 5 1 2. <_> <_> 9 3 2 2 -1. <_> 10 3 1 2 2. <_> <_> 4 5 16 15 -1. <_> 4 10 16 5 3. <_> <_> 7 13 5 6 -1. <_> 7 16 5 3 2. <_> <_> 10 7 3 2 -1. <_> 11 7 1 2 3. <_> <_> 8 3 3 1 -1. <_> 9 3 1 1 3. <_> <_> 9 16 3 3 -1. <_> 9 17 3 1 3. <_> <_> 0 2 5 2 -1. <_> 0 3 5 1 2. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 1 7 12 1 -1. <_> 5 7 4 1 3. <_> <_> 7 5 6 14 -1. <_> 7 12 6 7 2. <_> <_> 0 0 8 10 -1. <_> 0 0 4 5 2. <_> 4 5 4 5 2. <_> <_> 9 1 3 2 -1. <_> 10 1 1 2 3. <_> <_> 8 1 3 2 -1. <_> 9 1 1 2 3. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 7 4 6 16 -1. <_> 7 12 6 8 2. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 2 3 2 6 -1. <_> 2 5 2 2 3. <_> <_> 14 2 6 9 -1. <_> 14 5 6 3 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 9 17 3 2 -1. <_> 10 17 1 2 3. <_> <_> 5 5 2 3 -1. <_> 5 6 2 1 3. <_> <_> 13 11 3 6 -1. <_> 13 13 3 2 3. <_> <_> 3 14 2 6 -1. <_> 3 17 2 3 2. <_> <_> 14 3 6 2 -1. <_> 14 4 6 1 2. <_> <_> 0 8 16 2 -1. <_> 0 9 16 1 2. <_> <_> 14 3 6 2 -1. <_> 14 4 6 1 2. <_> <_> 0 0 5 6 -1. <_> 0 2 5 2 3. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 4 11 3 6 -1. <_> 4 13 3 2 3. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 9 5 1 3 -1. <_> 9 6 1 1 3. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 6 6 8 12 -1. <_> 6 12 8 6 2. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 5 12 9 2 -1. <_> 8 12 3 2 3. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 4 5 4 3 -1. <_> 4 6 4 1 3. <_> <_> 6 6 9 2 -1. <_> 9 6 3 2 3. <_> <_> 4 11 1 3 -1. <_> 4 12 1 1 3. <_> <_> 14 12 6 6 -1. <_> 14 12 3 6 2. <_> <_> 7 0 3 7 -1. <_> 8 0 1 7 3. <_> <_> 9 8 3 3 -1. <_> 10 8 1 3 3. <_> <_> 8 8 3 3 -1. <_> 9 8 1 3 3. <_> <_> 5 10 11 3 -1. <_> 5 11 11 1 3. <_> <_> 5 7 10 1 -1. <_> 10 7 5 1 2. <_> <_> 9 7 3 2 -1. <_> 10 7 1 2 3. <_> <_> 8 7 3 2 -1. <_> 9 7 1 2 3. <_> <_> 11 9 4 2 -1. <_> 11 9 2 2 2. <_> <_> 5 9 4 2 -1. <_> 7 9 2 2 2. <_> <_> 14 10 2 4 -1. <_> 14 12 2 2 2. <_> <_> 7 7 3 2 -1. <_> 8 7 1 2 3. <_> <_> 14 17 6 3 -1. <_> 14 18 6 1 3. <_> <_> 4 5 12 12 -1. <_> 4 5 6 6 2. <_> 10 11 6 6 2. <_> <_> 6 9 8 8 -1. <_> 10 9 4 4 2. <_> 6 13 4 4 2. <_> <_> 0 4 15 4 -1. <_> 5 4 5 4 3. <_> <_> 13 2 4 1 -1. <_> 13 2 2 1 2. <_> <_> 4 12 2 2 -1. <_> 4 13 2 1 2. <_> <_> 8 13 4 3 -1. <_> 8 14 4 1 3. <_> <_> 9 13 2 3 -1. <_> 9 14 2 1 3. <_> <_> 13 11 2 3 -1. <_> 13 12 2 1 3. <_> <_> 7 12 4 4 -1. <_> 7 12 2 2 2. <_> 9 14 2 2 2. <_> <_> 10 11 2 2 -1. <_> 11 11 1 1 2. <_> 10 12 1 1 2. <_> <_> 8 17 3 2 -1. <_> 9 17 1 2 3. <_> <_> 10 11 2 2 -1. <_> 11 11 1 1 2. <_> 10 12 1 1 2. <_> <_> 0 17 6 3 -1. <_> 0 18 6 1 3. <_> <_> 10 11 2 2 -1. <_> 11 11 1 1 2. <_> 10 12 1 1 2. <_> <_> 8 11 2 2 -1. <_> 8 11 1 1 2. <_> 9 12 1 1 2. <_> <_> 12 5 8 4 -1. <_> 12 5 4 4 2. <_> <_> 0 5 8 4 -1. <_> 4 5 4 4 2. <_> <_> 13 2 4 1 -1. <_> 13 2 2 1 2. <_> <_> 3 2 4 1 -1. <_> 5 2 2 1 2. <_> <_> 10 0 4 2 -1. <_> 12 0 2 1 2. <_> 10 1 2 1 2. <_> <_> 7 12 3 1 -1. <_> 8 12 1 1 3. <_> <_> 8 11 4 8 -1. <_> 10 11 2 4 2. <_> 8 15 2 4 2. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 3 18 15 2 -1. <_> 3 19 15 1 2. <_> <_> 2 6 2 12 -1. <_> 2 6 1 6 2. <_> 3 12 1 6 2. <_> <_> 9 8 2 3 -1. <_> 9 9 2 1 3. <_> <_> 7 10 3 2 -1. <_> 8 10 1 2 3. <_> <_> 11 11 3 1 -1. <_> 12 11 1 1 3. <_> <_> 6 11 3 1 -1. <_> 7 11 1 1 3. <_> <_> 9 2 4 2 -1. <_> 11 2 2 1 2. <_> 9 3 2 1 2. <_> <_> 4 12 2 3 -1. <_> 4 13 2 1 3. <_> <_> 2 1 18 3 -1. <_> 8 1 6 3 3. <_> <_> 5 1 4 14 -1. <_> 7 1 2 14 2. <_> <_> 8 16 12 3 -1. <_> 8 16 6 3 2. <_> <_> 1 17 18 3 -1. <_> 7 17 6 3 3. <_> <_> 9 14 2 6 -1. <_> 9 17 2 3 2. <_> <_> 9 12 1 8 -1. <_> 9 16 1 4 2. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 9 6 2 12 -1. <_> 9 10 2 4 3. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 0 1 4 8 -1. <_> 2 1 2 8 2. <_> <_> 9 1 6 2 -1. <_> 12 1 3 1 2. <_> 9 2 3 1 2. <_> <_> 1 3 12 14 -1. <_> 1 10 12 7 2. <_> <_> 8 12 4 2 -1. <_> 10 12 2 1 2. <_> 8 13 2 1 2. <_> <_> 1 9 10 2 -1. <_> 1 9 5 1 2. <_> 6 10 5 1 2. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 6 8 8 3 -1. <_> 6 9 8 1 3. <_> <_> 9 15 5 3 -1. <_> 9 16 5 1 3. <_> <_> 8 7 4 3 -1. <_> 8 8 4 1 3. <_> <_> 7 7 6 2 -1. <_> 7 8 6 1 2. <_> <_> 5 7 8 2 -1. <_> 5 7 4 1 2. <_> 9 8 4 1 2. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 4 7 4 2 -1. <_> 4 8 4 1 2. <_> <_> 14 2 6 9 -1. <_> 14 5 6 3 3. <_> <_> 4 9 3 3 -1. <_> 5 9 1 3 3. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 0 2 6 9 -1. <_> 0 5 6 3 3. <_> <_> 17 3 3 6 -1. <_> 18 3 1 6 3. <_> <_> 0 3 3 6 -1. <_> 1 3 1 6 3. <_> <_> 17 14 1 2 -1. <_> 17 15 1 1 2. <_> <_> 4 9 4 3 -1. <_> 6 9 2 3 2. <_> <_> 12 9 3 3 -1. <_> 12 10 3 1 3. <_> <_> 5 9 3 3 -1. <_> 5 10 3 1 3. <_> <_> 9 5 6 8 -1. <_> 12 5 3 4 2. <_> 9 9 3 4 2. <_> <_> 5 5 6 8 -1. <_> 5 5 3 4 2. <_> 8 9 3 4 2. <_> <_> 16 1 4 6 -1. <_> 16 4 4 3 2. <_> <_> 1 0 6 20 -1. <_> 3 0 2 20 3. <_> <_> 12 11 3 2 -1. <_> 13 11 1 2 3. <_> <_> 5 11 3 2 -1. <_> 6 11 1 2 3. <_> <_> 9 4 6 1 -1. <_> 11 4 2 1 3. <_> <_> 0 0 8 3 -1. <_> 4 0 4 3 2. <_> <_> 15 0 2 5 -1. <_> 15 0 1 5 2. <_> <_> 4 1 3 2 -1. <_> 5 1 1 2 3. <_> <_> 7 0 6 15 -1. <_> 9 0 2 15 3. <_> <_> 6 11 3 1 -1. <_> 7 11 1 1 3. <_> <_> 12 0 3 4 -1. <_> 13 0 1 4 3. <_> <_> 5 4 6 1 -1. <_> 7 4 2 1 3. <_> <_> 12 7 3 2 -1. <_> 12 8 3 1 2. <_> <_> 0 1 4 6 -1. <_> 0 4 4 3 2. <_> <_> 12 7 3 2 -1. <_> 12 8 3 1 2. <_> <_> 2 16 3 3 -1. <_> 2 17 3 1 3. <_> <_> 13 8 6 10 -1. <_> 16 8 3 5 2. <_> 13 13 3 5 2. <_> <_> 0 9 5 2 -1. <_> 0 10 5 1 2. <_> <_> 12 11 2 2 -1. <_> 13 11 1 1 2. <_> 12 12 1 1 2. <_> <_> 3 15 3 3 -1. <_> 3 16 3 1 3. <_> <_> 12 7 3 2 -1. <_> 12 8 3 1 2. <_> <_> 5 7 3 2 -1. <_> 5 8 3 1 2. <_> <_> 9 5 9 9 -1. <_> 9 8 9 3 3. <_> <_> 5 0 3 7 -1. <_> 6 0 1 7 3. <_> <_> 5 2 12 5 -1. <_> 9 2 4 5 3. <_> <_> 6 11 2 2 -1. <_> 6 11 1 1 2. <_> 7 12 1 1 2. <_> <_> 15 15 3 2 -1. <_> 15 16 3 1 2. <_> <_> 2 15 3 2 -1. <_> 2 16 3 1 2. <_> <_> 14 12 6 8 -1. <_> 17 12 3 4 2. <_> 14 16 3 4 2. <_> <_> 2 8 15 6 -1. <_> 7 8 5 6 3. <_> <_> 2 2 18 17 -1. <_> 8 2 6 17 3. <_> <_> 5 1 4 1 -1. <_> 7 1 2 1 2. <_> <_> 5 2 12 5 -1. <_> 9 2 4 5 3. <_> <_> 3 2 12 5 -1. <_> 7 2 4 5 3. <_> <_> 4 9 12 4 -1. <_> 10 9 6 2 2. <_> 4 11 6 2 2. <_> <_> 5 15 6 2 -1. <_> 5 15 3 1 2. <_> 8 16 3 1 2. <_> <_> 10 14 2 3 -1. <_> 10 15 2 1 3. <_> <_> 0 13 20 2 -1. <_> 0 13 10 1 2. <_> 10 14 10 1 2. <_> <_> 4 9 12 8 -1. <_> 10 9 6 4 2. <_> 4 13 6 4 2. <_> <_> 8 13 3 6 -1. <_> 8 16 3 3 2. <_> <_> 10 12 2 2 -1. <_> 10 13 2 1 2. <_> <_> 9 12 2 2 -1. <_> 9 12 1 1 2. <_> 10 13 1 1 2. <_> <_> 4 11 14 4 -1. <_> 11 11 7 2 2. <_> 4 13 7 2 2. <_> <_> 8 5 4 2 -1. <_> 8 6 4 1 2. <_> <_> 10 10 6 3 -1. <_> 12 10 2 3 3. <_> <_> 2 14 1 2 -1. <_> 2 15 1 1 2. <_> <_> 13 8 6 12 -1. <_> 16 8 3 6 2. <_> 13 14 3 6 2. <_> <_> 1 8 6 12 -1. <_> 1 8 3 6 2. <_> 4 14 3 6 2. <_> <_> 10 0 6 10 -1. <_> 12 0 2 10 3. <_> <_> 5 11 8 4 -1. <_> 5 11 4 2 2. <_> 9 13 4 2 2. <_> <_> 10 16 8 4 -1. <_> 14 16 4 2 2. <_> 10 18 4 2 2. <_> <_> 7 7 6 6 -1. <_> 9 7 2 6 3. <_> <_> 10 2 4 10 -1. <_> 10 2 2 10 2. <_> <_> 6 1 4 9 -1. <_> 8 1 2 9 2. <_> <_> 12 19 2 1 -1. <_> 12 19 1 1 2. <_> <_> 1 2 4 9 -1. <_> 3 2 2 9 2. <_> <_> 7 5 6 4 -1. <_> 9 5 2 4 3. <_> <_> 9 4 2 4 -1. <_> 9 6 2 2 2. <_> <_> 14 5 2 8 -1. <_> 14 9 2 4 2. <_> <_> 7 6 5 12 -1. <_> 7 12 5 6 2. <_> <_> 14 6 2 6 -1. <_> 14 9 2 3 2. <_> <_> 4 6 2 6 -1. <_> 4 9 2 3 2. <_> <_> 8 15 10 4 -1. <_> 13 15 5 2 2. <_> 8 17 5 2 2. <_> <_> 6 18 2 2 -1. <_> 7 18 1 2 2. <_> <_> 11 3 6 2 -1. <_> 11 4 6 1 2. <_> <_> 2 0 16 6 -1. <_> 2 2 16 2 3. <_> <_> 11 3 6 2 -1. <_> 11 4 6 1 2. <_> <_> 4 11 10 3 -1. <_> 4 12 10 1 3. <_> <_> 11 3 6 2 -1. <_> 11 4 6 1 2. <_> <_> 3 3 6 2 -1. <_> 3 4 6 1 2. <_> <_> 16 0 4 7 -1. <_> 16 0 2 7 2. <_> <_> 0 14 9 6 -1. <_> 0 16 9 2 3. <_> <_> 9 16 3 3 -1. <_> 9 17 3 1 3. <_> <_> 4 6 6 2 -1. <_> 6 6 2 2 3. <_> <_> 15 11 1 3 -1. <_> 15 12 1 1 3. <_> <_> 5 5 2 3 -1. <_> 5 6 2 1 3. <_> <_> 10 9 2 2 -1. <_> 10 10 2 1 2. <_> <_> 3 1 4 3 -1. <_> 5 1 2 3 2. <_> <_> 16 0 4 7 -1. <_> 16 0 2 7 2. <_> <_> 0 0 20 1 -1. <_> 10 0 10 1 2. <_> <_> 15 11 1 3 -1. <_> 15 12 1 1 3. <_> <_> 0 4 3 4 -1. <_> 1 4 1 4 3. <_> <_> 16 3 3 6 -1. <_> 16 5 3 2 3. <_> <_> 1 3 3 6 -1. <_> 1 5 3 2 3. <_> <_> 6 2 12 6 -1. <_> 12 2 6 3 2. <_> 6 5 6 3 2. <_> <_> 8 10 4 3 -1. <_> 8 11 4 1 3. <_> <_> 4 2 14 6 -1. <_> 11 2 7 3 2. <_> 4 5 7 3 2. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 15 13 2 3 -1. <_> 15 14 2 1 3. <_> <_> 8 12 4 3 -1. <_> 8 13 4 1 3. <_> <_> 15 11 1 3 -1. <_> 15 12 1 1 3. <_> <_> 7 13 5 2 -1. <_> 7 14 5 1 2. <_> <_> 7 12 6 3 -1. <_> 7 13 6 1 3. <_> <_> 5 11 4 4 -1. <_> 5 13 4 2 2. <_> <_> 11 4 3 3 -1. <_> 12 4 1 3 3. <_> <_> 6 4 3 3 -1. <_> 7 4 1 3 3. <_> <_> 16 5 3 6 -1. <_> 17 5 1 6 3. <_> <_> 3 6 12 7 -1. <_> 7 6 4 7 3. <_> <_> 16 5 3 6 -1. <_> 17 5 1 6 3. <_> <_> 3 13 2 3 -1. <_> 3 14 2 1 3. <_> <_> 16 5 3 6 -1. <_> 17 5 1 6 3. <_> <_> 1 5 3 6 -1. <_> 2 5 1 6 3. <_> <_> 1 9 18 1 -1. <_> 7 9 6 1 3. <_> <_> 0 9 8 7 -1. <_> 4 9 4 7 2. <_> <_> 12 11 8 2 -1. <_> 12 12 8 1 2. <_> <_> 0 11 8 2 -1. <_> 0 12 8 1 2. <_> <_> 9 13 2 3 -1. <_> 9 14 2 1 3. <_> <_> 4 10 12 4 -1. <_> 4 10 6 2 2. <_> 10 12 6 2 2. <_> <_> 9 3 3 7 -1. <_> 10 3 1 7 3. <_> <_> 7 2 3 5 -1. <_> 8 2 1 5 3. <_> <_> 9 12 4 6 -1. <_> 11 12 2 3 2. <_> 9 15 2 3 2. <_> <_> 8 7 3 6 -1. <_> 9 7 1 6 3. <_> <_> 15 4 4 2 -1. <_> 15 5 4 1 2. <_> <_> 8 7 3 3 -1. <_> 9 7 1 3 3. <_> <_> 14 2 6 4 -1. <_> 14 4 6 2 2. <_> <_> 7 16 6 1 -1. <_> 9 16 2 1 3. <_> <_> 15 13 2 3 -1. <_> 15 14 2 1 3. <_> <_> 8 7 3 10 -1. <_> 9 7 1 10 3. <_> <_> 11 10 2 6 -1. <_> 11 12 2 2 3. <_> <_> 6 10 4 1 -1. <_> 8 10 2 1 2. <_> <_> 10 9 2 2 -1. <_> 10 10 2 1 2. <_> <_> 8 9 2 2 -1. <_> 8 10 2 1 2. <_> <_> 12 7 2 2 -1. <_> 13 7 1 1 2. <_> 12 8 1 1 2. <_> <_> 5 7 2 2 -1. <_> 5 7 1 1 2. <_> 6 8 1 1 2. <_> <_> 13 0 3 14 -1. <_> 14 0 1 14 3. <_> <_> 4 0 3 14 -1. <_> 5 0 1 14 3. <_> <_> 13 4 3 14 -1. <_> 14 4 1 14 3. <_> <_> 9 14 2 3 -1. <_> 9 15 2 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 4 2 3 16 -1. <_> 5 2 1 16 3. <_> <_> 7 2 8 10 -1. <_> 7 7 8 5 2. <_> <_> 6 14 7 3 -1. <_> 6 15 7 1 3. <_> <_> 9 2 10 12 -1. <_> 14 2 5 6 2. <_> 9 8 5 6 2. <_> <_> 6 7 8 2 -1. <_> 6 8 8 1 2. <_> <_> 8 13 4 6 -1. <_> 8 16 4 3 2. <_> <_> 6 6 1 3 -1. <_> 6 7 1 1 3. <_> <_> 16 2 4 6 -1. <_> 16 4 4 2 3. <_> <_> 6 6 4 2 -1. <_> 6 6 2 1 2. <_> 8 7 2 1 2. <_> <_> 16 2 4 6 -1. <_> 16 4 4 2 3. <_> <_> 0 2 4 6 -1. <_> 0 4 4 2 3. <_> <_> 9 6 2 6 -1. <_> 9 6 1 6 2. <_> <_> 3 4 6 10 -1. <_> 3 9 6 5 2. <_> <_> 9 5 2 6 -1. <_> 9 5 1 6 2. <_> <_> 3 13 2 3 -1. <_> 3 14 2 1 3. <_> <_> 13 13 3 2 -1. <_> 13 14 3 1 2. <_> <_> 2 16 10 4 -1. <_> 2 16 5 2 2. <_> 7 18 5 2 2. <_> <_> 5 6 10 6 -1. <_> 10 6 5 3 2. <_> 5 9 5 3 2. <_> <_> 7 14 1 3 -1. <_> 7 15 1 1 3. <_> <_> 14 16 6 3 -1. <_> 14 17 6 1 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 7 4 10 3 -1. <_> 7 5 10 1 3. <_> <_> 0 4 5 4 -1. <_> 0 6 5 2 2. <_> <_> 13 11 3 9 -1. <_> 13 14 3 3 3. <_> <_> 4 11 3 9 -1. <_> 4 14 3 3 3. <_> <_> 9 7 2 1 -1. <_> 9 7 1 1 2. <_> <_> 5 0 6 17 -1. <_> 7 0 2 17 3. <_> <_> 10 3 6 3 -1. <_> 10 3 3 3 2. <_> <_> 2 2 15 4 -1. <_> 7 2 5 4 3. <_> <_> 8 2 8 2 -1. <_> 12 2 4 1 2. <_> 8 3 4 1 2. <_> <_> 8 1 3 6 -1. <_> 8 3 3 2 3. <_> <_> 9 17 2 2 -1. <_> 9 18 2 1 2. <_> <_> 0 0 2 14 -1. <_> 1 0 1 14 2. <_> <_> 12 0 7 3 -1. <_> 12 1 7 1 3. <_> <_> 1 14 1 2 -1. <_> 1 15 1 1 2. <_> <_> 14 12 2 8 -1. <_> 15 12 1 4 2. <_> 14 16 1 4 2. <_> <_> 1 0 7 3 -1. <_> 1 1 7 1 3. <_> <_> 14 12 2 8 -1. <_> 15 12 1 4 2. <_> 14 16 1 4 2. <_> <_> 6 0 8 12 -1. <_> 6 0 4 6 2. <_> 10 6 4 6 2. <_> <_> 6 1 8 9 -1. <_> 6 4 8 3 3. <_> <_> 5 2 2 2 -1. <_> 5 3 2 1 2. <_> <_> 13 14 6 6 -1. <_> 16 14 3 3 2. <_> 13 17 3 3 2. <_> <_> 0 17 20 2 -1. <_> 0 17 10 1 2. <_> 10 18 10 1 2. <_> <_> 10 3 2 6 -1. <_> 11 3 1 3 2. <_> 10 6 1 3 2. <_> <_> 5 12 6 2 -1. <_> 8 12 3 2 2. <_> <_> 10 7 6 13 -1. <_> 10 7 3 13 2. <_> <_> 5 15 10 5 -1. <_> 10 15 5 5 2. <_> <_> 10 4 4 10 -1. <_> 10 4 2 10 2. <_> <_> 5 7 2 1 -1. <_> 6 7 1 1 2. <_> <_> 10 3 6 7 -1. <_> 10 3 3 7 2. <_> <_> 4 3 6 7 -1. <_> 7 3 3 7 2. <_> <_> 1 7 18 5 -1. <_> 7 7 6 5 3. <_> <_> 3 17 4 3 -1. <_> 5 17 2 3 2. <_> <_> 8 14 12 6 -1. <_> 14 14 6 3 2. <_> 8 17 6 3 2. <_> <_> 0 13 20 4 -1. <_> 0 13 10 2 2. <_> 10 15 10 2 2. <_> <_> 4 5 14 2 -1. <_> 11 5 7 1 2. <_> 4 6 7 1 2. <_> <_> 1 2 10 12 -1. <_> 1 2 5 6 2. <_> 6 8 5 6 2. <_> <_> 6 1 14 3 -1. <_> 6 2 14 1 3. <_> <_> 8 16 2 3 -1. <_> 8 17 2 1 3. <_> <_> 9 17 3 2 -1. <_> 10 17 1 2 3. <_> <_> 5 15 4 2 -1. <_> 5 15 2 1 2. <_> 7 16 2 1 2. <_> <_> 10 15 1 3 -1. <_> 10 16 1 1 3. <_> <_> 8 16 4 4 -1. <_> 8 16 2 2 2. <_> 10 18 2 2 2. <_> <_> 6 11 8 6 -1. <_> 6 14 8 3 2. <_> <_> 2 13 5 2 -1. <_> 2 14 5 1 2. <_> <_> 13 14 6 6 -1. <_> 16 14 3 3 2. <_> 13 17 3 3 2. <_> <_> 1 9 18 4 -1. <_> 7 9 6 4 3. <_> <_> 13 14 6 6 -1. <_> 16 14 3 3 2. <_> 13 17 3 3 2. <_> <_> 0 2 1 6 -1. <_> 0 4 1 2 3. <_> <_> 5 0 15 20 -1. <_> 5 10 15 10 2. <_> <_> 1 14 6 6 -1. <_> 1 14 3 3 2. <_> 4 17 3 3 2. <_> <_> 8 14 4 6 -1. <_> 10 14 2 3 2. <_> 8 17 2 3 2. <_> <_> 7 11 2 1 -1. <_> 8 11 1 1 2. <_> <_> 9 17 3 2 -1. <_> 10 17 1 2 3. <_> <_> 8 17 3 2 -1. <_> 9 17 1 2 3. <_> <_> 12 14 4 6 -1. <_> 14 14 2 3 2. <_> 12 17 2 3 2. <_> <_> 4 14 4 6 -1. <_> 4 14 2 3 2. <_> 6 17 2 3 2. <_> <_> 13 14 2 6 -1. <_> 14 14 1 3 2. <_> 13 17 1 3 2. <_> <_> 5 14 2 6 -1. <_> 5 14 1 3 2. <_> 6 17 1 3 2. <_> <_> 7 0 6 12 -1. <_> 7 4 6 4 3. <_> <_> 0 7 12 2 -1. <_> 4 7 4 2 3. <_> <_> 10 3 3 13 -1. <_> 11 3 1 13 3. <_> <_> 7 3 3 13 -1. <_> 8 3 1 13 3. <_> <_> 10 8 6 3 -1. <_> 10 9 6 1 3. <_> <_> 3 11 3 2 -1. <_> 4 11 1 2 3. <_> <_> 13 12 6 8 -1. <_> 16 12 3 4 2. <_> 13 16 3 4 2. <_> <_> 7 6 6 5 -1. <_> 9 6 2 5 3. <_> <_> 17 11 2 7 -1. <_> 17 11 1 7 2. <_> <_> 3 13 8 2 -1. <_> 7 13 4 2 2. <_> <_> 6 9 8 3 -1. <_> 6 10 8 1 3. <_> <_> 4 3 4 3 -1. <_> 4 4 4 1 3. <_> <_> 11 3 4 3 -1. <_> 11 4 4 1 3. <_> <_> 1 4 17 12 -1. <_> 1 8 17 4 3. <_> <_> 11 3 4 3 -1. <_> 11 4 4 1 3. <_> <_> 4 8 6 3 -1. <_> 4 9 6 1 3. <_> <_> 12 3 5 3 -1. <_> 12 4 5 1 3. <_> <_> 1 11 2 7 -1. <_> 2 11 1 7 2. <_> <_> 15 12 2 8 -1. <_> 16 12 1 4 2. <_> 15 16 1 4 2. <_> <_> 4 8 11 3 -1. <_> 4 9 11 1 3. <_> <_> 9 13 6 2 -1. <_> 12 13 3 1 2. <_> 9 14 3 1 2. <_> <_> 6 13 4 3 -1. <_> 6 14 4 1 3. <_> <_> 9 12 3 3 -1. <_> 10 12 1 3 3. <_> <_> 5 3 3 3 -1. <_> 5 4 3 1 3. <_> <_> 9 4 2 3 -1. <_> 9 5 2 1 3. <_> <_> 0 2 16 3 -1. <_> 0 3 16 1 3. <_> <_> 15 12 2 8 -1. <_> 16 12 1 4 2. <_> 15 16 1 4 2. <_> <_> 3 12 2 8 -1. <_> 3 12 1 4 2. <_> 4 16 1 4 2. <_> <_> 14 13 3 6 -1. <_> 14 15 3 2 3. <_> <_> 3 13 3 6 -1. <_> 3 15 3 2 3. <_> <_> 6 5 10 2 -1. <_> 11 5 5 1 2. <_> 6 6 5 1 2. <_> <_> 2 14 14 6 -1. <_> 2 17 14 3 2. <_> <_> 10 14 1 3 -1. <_> 10 15 1 1 3. <_> <_> 4 16 2 2 -1. <_> 4 16 1 1 2. <_> 5 17 1 1 2. <_> <_> 10 6 2 3 -1. <_> 10 7 2 1 3. <_> <_> 0 17 20 2 -1. <_> 0 17 10 1 2. <_> 10 18 10 1 2. <_> <_> 13 6 1 3 -1. <_> 13 7 1 1 3. <_> <_> 8 13 3 2 -1. <_> 9 13 1 2 3. <_> <_> 12 2 3 3 -1. <_> 13 2 1 3 3. <_> <_> 3 18 2 2 -1. <_> 3 18 1 1 2. <_> 4 19 1 1 2. <_> <_> 9 16 3 4 -1. <_> 10 16 1 4 3. <_> <_> 6 6 1 3 -1. <_> 6 7 1 1 3. <_> <_> 13 1 5 2 -1. <_> 13 2 5 1 2. <_> <_> 7 14 6 2 -1. <_> 7 14 3 1 2. <_> 10 15 3 1 2. <_> <_> 11 3 3 4 -1. <_> 12 3 1 4 3. <_> <_> 1 13 12 6 -1. <_> 5 13 4 6 3. <_> <_> 14 11 5 2 -1. <_> 14 12 5 1 2. <_> <_> 2 15 14 4 -1. <_> 2 15 7 2 2. <_> 9 17 7 2 2. <_> <_> 3 7 14 2 -1. <_> 10 7 7 1 2. <_> 3 8 7 1 2. <_> <_> 1 11 4 2 -1. <_> 1 12 4 1 2. <_> <_> 14 0 6 14 -1. <_> 16 0 2 14 3. <_> <_> 4 11 1 3 -1. <_> 4 12 1 1 3. <_> <_> 14 0 6 14 -1. <_> 16 0 2 14 3. <_> <_> 1 10 3 7 -1. <_> 2 10 1 7 3. <_> <_> 8 12 9 2 -1. <_> 8 13 9 1 2. <_> <_> 0 6 20 1 -1. <_> 10 6 10 1 2. <_> <_> 8 4 4 4 -1. <_> 8 4 2 4 2. <_> <_> 0 0 2 2 -1. <_> 0 1 2 1 2. <_> <_> 5 3 10 9 -1. <_> 5 6 10 3 3. <_> <_> 15 2 4 10 -1. <_> 15 2 2 10 2. <_> <_> 8 2 2 7 -1. <_> 9 2 1 7 2. <_> <_> 7 4 12 1 -1. <_> 11 4 4 1 3. <_> <_> 3 4 9 1 -1. <_> 6 4 3 1 3. <_> <_> 15 10 1 4 -1. <_> 15 12 1 2 2. <_> <_> 4 10 6 4 -1. <_> 7 10 3 4 2. <_> <_> 15 9 1 6 -1. <_> 15 12 1 3 2. <_> <_> 7 17 6 3 -1. <_> 7 18 6 1 3. <_> <_> 14 3 2 16 -1. <_> 15 3 1 8 2. <_> 14 11 1 8 2. <_> <_> 4 9 1 6 -1. <_> 4 12 1 3 2. <_> <_> 12 1 5 2 -1. <_> 12 2 5 1 2. <_> <_> 6 18 4 2 -1. <_> 6 18 2 1 2. <_> 8 19 2 1 2. <_> <_> 2 4 16 10 -1. <_> 10 4 8 5 2. <_> 2 9 8 5 2. <_> <_> 6 5 1 10 -1. <_> 6 10 1 5 2. <_> <_> 4 8 15 2 -1. <_> 9 8 5 2 3. <_> <_> 1 8 15 2 -1. <_> 6 8 5 2 3. <_> <_> 9 5 3 6 -1. <_> 9 7 3 2 3. <_> <_> 5 7 8 2 -1. <_> 9 7 4 2 2. <_> <_> 9 11 2 3 -1. <_> 9 12 2 1 3. <_> <_> 1 0 16 3 -1. <_> 1 1 16 1 3. <_> <_> 11 2 7 2 -1. <_> 11 3 7 1 2. <_> <_> 5 1 10 18 -1. <_> 5 7 10 6 3. <_> <_> 17 4 3 2 -1. <_> 18 4 1 2 3. <_> <_> 8 13 1 3 -1. <_> 8 14 1 1 3. <_> <_> 3 14 14 6 -1. <_> 3 16 14 2 3. <_> <_> 0 2 3 4 -1. <_> 1 2 1 4 3. <_> <_> 12 1 5 2 -1. <_> 12 2 5 1 2. <_> <_> 3 1 5 2 -1. <_> 3 2 5 1 2. <_> <_> 10 13 2 3 -1. <_> 10 14 2 1 3. <_> <_> 8 13 2 3 -1. <_> 8 14 2 1 3. <_> <_> 14 12 2 3 -1. <_> 14 13 2 1 3. <_> <_> 7 2 2 3 -1. <_> 7 3 2 1 3. <_> <_> 5 6 10 4 -1. <_> 10 6 5 2 2. <_> 5 8 5 2 2. <_> <_> 9 13 1 6 -1. <_> 9 16 1 3 2. <_> <_> 10 12 2 2 -1. <_> 11 12 1 1 2. <_> 10 13 1 1 2. <_> <_> 4 12 2 3 -1. <_> 4 13 2 1 3. <_> <_> 14 4 6 6 -1. <_> 14 6 6 2 3. <_> <_> 8 17 2 3 -1. <_> 8 18 2 1 3. <_> <_> 16 4 4 6 -1. <_> 16 6 4 2 3. <_> <_> 0 4 4 6 -1. <_> 0 6 4 2 3. <_> <_> 14 6 2 3 -1. <_> 14 6 1 3 2. <_> <_> 4 9 8 1 -1. <_> 8 9 4 1 2. <_> <_> 8 12 4 3 -1. <_> 8 13 4 1 3. <_> <_> 5 12 10 6 -1. <_> 5 14 10 2 3. <_> <_> 11 12 1 2 -1. <_> 11 13 1 1 2. <_> <_> 8 15 4 2 -1. <_> 8 16 4 1 2. <_> <_> 6 9 8 8 -1. <_> 10 9 4 4 2. <_> 6 13 4 4 2. <_> <_> 7 12 4 6 -1. <_> 7 12 2 3 2. <_> 9 15 2 3 2. <_> <_> 10 11 3 1 -1. <_> 11 11 1 1 3. <_> <_> 9 7 2 10 -1. <_> 9 7 1 5 2. <_> 10 12 1 5 2. <_> <_> 8 0 6 6 -1. <_> 10 0 2 6 3. <_> <_> 3 11 2 6 -1. <_> 3 13 2 2 3. <_> <_> 16 12 1 2 -1. <_> 16 13 1 1 2. <_> <_> 1 14 6 6 -1. <_> 1 14 3 3 2. <_> 4 17 3 3 2. <_> <_> 13 1 3 6 -1. <_> 14 1 1 6 3. <_> <_> 8 8 2 2 -1. <_> 8 9 2 1 2. <_> <_> 9 9 3 3 -1. <_> 10 9 1 3 3. <_> <_> 8 7 3 3 -1. <_> 8 8 3 1 3. <_> <_> 14 0 2 3 -1. <_> 14 0 1 3 2. <_> <_> 1 0 18 9 -1. <_> 7 0 6 9 3. <_> <_> 11 5 4 15 -1. <_> 11 5 2 15 2. <_> <_> 5 5 4 15 -1. <_> 7 5 2 15 2. <_> <_> 14 0 2 3 -1. <_> 14 0 1 3 2. <_> <_> 4 0 2 3 -1. <_> 5 0 1 3 2. <_> <_> 11 12 2 2 -1. <_> 12 12 1 1 2. <_> 11 13 1 1 2. <_> <_> 7 12 2 2 -1. <_> 7 12 1 1 2. <_> 8 13 1 1 2. <_> <_> 12 0 3 4 -1. <_> 13 0 1 4 3. <_> <_> 4 11 3 3 -1. <_> 4 12 3 1 3. <_> <_> 12 7 4 2 -1. <_> 12 8 4 1 2. <_> <_> 8 10 3 2 -1. <_> 9 10 1 2 3. <_> <_> 9 9 3 2 -1. <_> 10 9 1 2 3. <_> <_> 8 9 3 2 -1. <_> 9 9 1 2 3. <_> <_> 12 0 3 4 -1. <_> 13 0 1 4 3. <_> <_> 5 0 3 4 -1. <_> 6 0 1 4 3. <_> <_> 4 14 12 4 -1. <_> 10 14 6 2 2. <_> 4 16 6 2 2. <_> <_> 8 13 2 3 -1. <_> 8 14 2 1 3. <_> <_> 10 10 3 8 -1. <_> 10 14 3 4 2. <_> <_> 8 10 4 8 -1. <_> 8 10 2 4 2. <_> 10 14 2 4 2. <_> <_> 10 8 3 1 -1. <_> 11 8 1 1 3. <_> <_> 9 12 1 6 -1. <_> 9 15 1 3 2. <_> <_> 10 8 3 1 -1. <_> 11 8 1 1 3. <_> <_> 7 8 3 1 -1. <_> 8 8 1 1 3. <_> <_> 5 2 15 14 -1. <_> 5 9 15 7 2. <_> <_> 2 1 2 10 -1. <_> 2 1 1 5 2. <_> 3 6 1 5 2. <_> <_> 14 14 2 3 -1. <_> 14 15 2 1 3. <_> <_> 2 7 3 3 -1. <_> 3 7 1 3 3. <_> <_> 17 4 3 3 -1. <_> 17 5 3 1 3. <_> <_> 0 4 3 3 -1. <_> 0 5 3 1 3. <_> <_> 13 5 6 2 -1. <_> 16 5 3 1 2. <_> 13 6 3 1 2. <_> <_> 4 19 12 1 -1. <_> 8 19 4 1 3. <_> <_> 12 12 2 4 -1. <_> 12 14 2 2 2. <_> <_> 3 15 1 3 -1. <_> 3 16 1 1 3. <_> <_> 11 16 6 4 -1. <_> 11 16 3 4 2. <_> <_> 2 10 3 10 -1. <_> 3 10 1 10 3. <_> <_> 12 8 2 4 -1. <_> 12 8 1 4 2. <_> <_> 6 8 2 4 -1. <_> 7 8 1 4 2. <_> <_> 10 14 2 3 -1. <_> 10 14 1 3 2. <_> <_> 5 1 10 3 -1. <_> 10 1 5 3 2. <_> <_> 10 7 3 2 -1. <_> 11 7 1 2 3. <_> <_> 5 6 9 2 -1. <_> 8 6 3 2 3. <_> <_> 9 8 2 2 -1. <_> 9 9 2 1 2. <_> <_> 2 11 16 6 -1. <_> 2 11 8 3 2. <_> 10 14 8 3 2. <_> <_> 12 7 2 2 -1. <_> 13 7 1 1 2. <_> 12 8 1 1 2. <_> <_> 9 5 2 3 -1. <_> 9 6 2 1 3. <_> <_> 9 7 3 2 -1. <_> 10 7 1 2 3. <_> <_> 5 1 8 12 -1. <_> 5 7 8 6 2. <_> <_> 13 5 2 2 -1. <_> 13 6 2 1 2. <_> <_> 5 5 2 2 -1. <_> 5 6 2 1 2. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 4 14 2 3 -1. <_> 4 15 2 1 3. <_> <_> 12 4 3 3 -1. <_> 12 5 3 1 3. <_> <_> 5 4 3 3 -1. <_> 5 5 3 1 3. <_> <_> 9 14 2 6 -1. <_> 10 14 1 3 2. <_> 9 17 1 3 2. <_> <_> 8 14 3 2 -1. <_> 9 14 1 2 3. <_> <_> 9 5 6 6 -1. <_> 11 5 2 6 3. <_> <_> 5 5 6 6 -1. <_> 7 5 2 6 3. <_> <_> 13 13 1 2 -1. <_> 13 14 1 1 2. <_> <_> 0 2 10 2 -1. <_> 0 3 10 1 2. <_> <_> 13 13 1 2 -1. <_> 13 14 1 1 2. <_> <_> 5 7 2 2 -1. <_> 5 7 1 1 2. <_> 6 8 1 1 2. <_> <_> 13 5 2 7 -1. <_> 13 5 1 7 2. <_> <_> 6 13 1 2 -1. <_> 6 14 1 1 2. <_> <_> 11 0 3 7 -1. <_> 12 0 1 7 3. <_> <_> 0 3 2 16 -1. <_> 0 3 1 8 2. <_> 1 11 1 8 2. <_> <_> 11 0 3 7 -1. <_> 12 0 1 7 3. <_> <_> 6 0 3 7 -1. <_> 7 0 1 7 3. <_> <_> 11 16 8 4 -1. <_> 11 16 4 4 2. <_> <_> 1 16 8 4 -1. <_> 5 16 4 4 2. <_> <_> 13 5 2 7 -1. <_> 13 5 1 7 2. <_> <_> 5 5 2 7 -1. <_> 6 5 1 7 2. <_> <_> 18 6 2 14 -1. <_> 18 13 2 7 2. <_> <_> 6 10 3 4 -1. <_> 6 12 3 2 2. <_> <_> 14 7 1 2 -1. <_> 14 8 1 1 2. <_> <_> 0 1 18 6 -1. <_> 0 1 9 3 2. <_> 9 4 9 3 2. <_> <_> 14 7 1 2 -1. <_> 14 8 1 1 2. <_> <_> 0 6 2 14 -1. <_> 0 13 2 7 2. <_> <_> 17 0 3 12 -1. <_> 18 0 1 12 3. <_> <_> 0 6 18 3 -1. <_> 0 7 18 1 3. <_> <_> 6 0 14 16 -1. <_> 6 8 14 8 2. <_> <_> 0 0 3 12 -1. <_> 1 0 1 12 3. <_> <_> 13 0 3 7 -1. <_> 14 0 1 7 3. <_> <_> 5 7 1 2 -1. <_> 5 8 1 1 2. <_> <_> 14 4 6 6 -1. <_> 14 6 6 2 3. <_> <_> 5 7 7 2 -1. <_> 5 8 7 1 2. <_> <_> 8 6 6 9 -1. <_> 8 9 6 3 3. <_> <_> 5 4 6 1 -1. <_> 7 4 2 1 3. <_> <_> 13 0 6 4 -1. <_> 16 0 3 2 2. <_> 13 2 3 2 2. <_> <_> 1 2 18 12 -1. <_> 1 6 18 4 3. <_> <_> 3 2 17 12 -1. <_> 3 6 17 4 3. <_> <_> 5 14 7 3 -1. <_> 5 15 7 1 3. <_> <_> 10 14 1 3 -1. <_> 10 15 1 1 3. <_> <_> 3 14 3 3 -1. <_> 3 15 3 1 3. <_> <_> 14 4 6 6 -1. <_> 14 6 6 2 3. <_> <_> 0 4 6 6 -1. <_> 0 6 6 2 3. <_> <_> 12 5 4 3 -1. <_> 12 6 4 1 3. <_> <_> 4 5 4 3 -1. <_> 4 6 4 1 3. <_> <_> 18 0 2 6 -1. <_> 18 2 2 2 3. <_> <_> 8 1 4 9 -1. <_> 10 1 2 9 2. <_> <_> 6 6 8 2 -1. <_> 6 6 4 2 2. <_> <_> 6 5 4 2 -1. <_> 6 5 2 1 2. <_> 8 6 2 1 2. <_> <_> 10 5 2 3 -1. <_> 10 6 2 1 3. <_> <_> 9 5 1 3 -1. <_> 9 6 1 1 3. <_> <_> 9 10 2 2 -1. <_> 9 11 2 1 2. <_> <_> 0 8 4 3 -1. <_> 0 9 4 1 3. <_> <_> 6 0 8 6 -1. <_> 6 3 8 3 2. <_> <_> 1 0 6 4 -1. <_> 1 0 3 2 2. <_> 4 2 3 2 2. <_> <_> 13 0 3 7 -1. <_> 14 0 1 7 3. <_> <_> 9 16 2 2 -1. <_> 9 17 2 1 2. <_> <_> 11 4 6 10 -1. <_> 11 9 6 5 2. <_> <_> 0 10 19 2 -1. <_> 0 11 19 1 2. <_> <_> 9 5 8 9 -1. <_> 9 8 8 3 3. <_> <_> 4 0 3 7 -1. <_> 5 0 1 7 3. <_> <_> 8 6 4 12 -1. <_> 10 6 2 6 2. <_> 8 12 2 6 2. <_> <_> 0 2 6 4 -1. <_> 0 4 6 2 2. <_> <_> 8 15 4 3 -1. <_> 8 16 4 1 3. <_> <_> 8 0 3 7 -1. <_> 9 0 1 7 3. <_> <_> 9 5 3 4 -1. <_> 10 5 1 4 3. <_> <_> 8 5 3 4 -1. <_> 9 5 1 4 3. <_> <_> 7 6 6 1 -1. <_> 9 6 2 1 3. <_> <_> 7 14 4 4 -1. <_> 7 14 2 2 2. <_> 9 16 2 2 2. <_> <_> 13 14 4 6 -1. <_> 15 14 2 3 2. <_> 13 17 2 3 2. <_> <_> 7 8 1 8 -1. <_> 7 12 1 4 2. <_> <_> 16 0 2 8 -1. <_> 17 0 1 4 2. <_> 16 4 1 4 2. <_> <_> 2 0 2 8 -1. <_> 2 0 1 4 2. <_> 3 4 1 4 2. <_> <_> 6 1 14 3 -1. <_> 6 2 14 1 3. <_> <_> 7 9 3 10 -1. <_> 7 14 3 5 2. <_> <_> 9 14 2 2 -1. <_> 9 15 2 1 2. <_> <_> 7 7 6 8 -1. <_> 7 11 6 4 2. <_> <_> 9 7 3 6 -1. <_> 9 10 3 3 2. <_> <_> 7 13 3 3 -1. <_> 7 14 3 1 3. <_> <_> 9 9 2 2 -1. <_> 9 10 2 1 2. <_> <_> 0 1 18 2 -1. <_> 6 1 6 2 3. <_> <_> 7 1 6 14 -1. <_> 7 8 6 7 2. <_> <_> 1 9 18 1 -1. <_> 7 9 6 1 3. <_> <_> 9 7 2 2 -1. <_> 9 7 1 2 2. <_> <_> 9 3 2 9 -1. <_> 10 3 1 9 2. <_> <_> 18 14 2 3 -1. <_> 18 15 2 1 3. <_> <_> 7 11 3 1 -1. <_> 8 11 1 1 3. <_> <_> 10 8 3 4 -1. <_> 11 8 1 4 3. <_> <_> 7 14 3 6 -1. <_> 8 14 1 6 3. <_> <_> 10 8 3 4 -1. <_> 11 8 1 4 3. <_> <_> 7 8 3 4 -1. <_> 8 8 1 4 3. <_> <_> 7 9 6 9 -1. <_> 7 12 6 3 3. <_> <_> 0 14 2 3 -1. <_> 0 15 2 1 3. <_> <_> 11 12 1 2 -1. <_> 11 13 1 1 2. <_> <_> 4 3 8 3 -1. <_> 8 3 4 3 2. <_> <_> 0 4 20 6 -1. <_> 0 4 10 6 2. <_> <_> 9 14 1 3 -1. <_> 9 15 1 1 3. <_> <_> 8 14 4 3 -1. <_> 8 15 4 1 3. <_> <_> 0 15 14 4 -1. <_> 0 17 14 2 2. <_> <_> 1 14 18 6 -1. <_> 1 17 18 3 2. <_> <_> 0 0 10 6 -1. <_> 0 0 5 3 2. <_> 5 3 5 3 2. ================================================ FILE: DEEP LEARNING/Pytorch from scratch/MLP/fc_model.py ================================================ import torch from torch import nn import torch.nn.functional as F class Network(nn.Module): def __init__(self, input_size, output_size, hidden_layers, drop_p=0.5): """ Builds a feedforward network with arbitrary hidden layers. Arguments --------- input_size: integer, size of the input layer output_size: integer, size of the output layer hidden_layers: list of integers, the sizes of the hidden layers """ super().__init__() # Input to a hidden layer self.hidden_layers = nn.ModuleList([nn.Linear(input_size, hidden_layers[0])]) # Add a variable number of more hidden layers layer_sizes = zip(hidden_layers[:-1], hidden_layers[1:]) self.hidden_layers.extend([nn.Linear(h1, h2) for h1, h2 in layer_sizes]) self.output = nn.Linear(hidden_layers[-1], output_size) self.dropout = nn.Dropout(p=drop_p) def forward(self, x): """ Forward pass through the network, returns the output logits """ for each in self.hidden_layers: x = F.relu(each(x)) x = self.dropout(x) x = self.output(x) return F.log_softmax(x, dim=1) def validation(model, testloader, criterion): accuracy = 0 test_loss = 0 for images, labels in testloader: images = images.resize_(images.size()[0], 784) output = model.forward(images) test_loss += criterion(output, labels).item() ## Calculating the accuracy # Model's output is log-softmax, take exponential to get the probabilities ps = torch.exp(output) # Class with highest probability is our predicted class, compare with true label equality = labels.data == ps.max(1)[1] # Accuracy is number of correct predictions divided by all predictions, just take the mean accuracy += equality.type_as(torch.FloatTensor()).mean() return test_loss, accuracy def train( model, trainloader, testloader, criterion, optimizer, epochs=5, print_every=40 ): steps = 0 running_loss = 0 for e in range(epochs): # Model in training mode, dropout is on model.train() for images, labels in trainloader: steps += 1 # Flatten images into a 784 long vector images.resize_(images.size()[0], 784) optimizer.zero_grad() output = model.forward(images) loss = criterion(output, labels) loss.backward() optimizer.step() running_loss += loss.item() if steps % print_every == 0: # Model in inference mode, dropout is off model.eval() # Turn off gradients for validation, will speed up inference with torch.no_grad(): test_loss, accuracy = validation(model, testloader, criterion) print( "Epoch: {}/{}.. ".format(e + 1, epochs), "Training Loss: {:.3f}.. ".format(running_loss / print_every), "Test Loss: {:.3f}.. ".format(test_loss / len(testloader)), "Test Accuracy: {:.3f}".format(accuracy / len(testloader)), ) running_loss = 0 # Make sure dropout and grads are on for training model.train() ================================================ FILE: DEEP LEARNING/Pytorch from scratch/MLP/helper.py ================================================ import matplotlib.pyplot as plt import numpy as np from torch import nn, optim from torch.autograd import Variable def test_network(net, trainloader): criterion = nn.MSELoss() optimizer = optim.Adam(net.parameters(), lr=0.001) dataiter = iter(trainloader) images, labels = dataiter.next() # Create Variables for the inputs and targets inputs = Variable(images) targets = Variable(images) # Clear the gradients from all Variables optimizer.zero_grad() # Forward pass, then backward pass, then update weights output = net.forward(inputs) loss = criterion(output, targets) loss.backward() optimizer.step() return True def imshow(image, ax=None, title=None, normalize=True): """Imshow for Tensor.""" if ax is None: fig, ax = plt.subplots() image = image.numpy().transpose((1, 2, 0)) if normalize: mean = np.array([0.485, 0.456, 0.406]) std = np.array([0.229, 0.224, 0.225]) image = std * image + mean image = np.clip(image, 0, 1) ax.imshow(image) ax.spines["top"].set_visible(False) ax.spines["right"].set_visible(False) ax.spines["left"].set_visible(False) ax.spines["bottom"].set_visible(False) ax.tick_params(axis="both", length=0) ax.set_xticklabels("") ax.set_yticklabels("") return ax def view_recon(img, recon): """ Function for displaying an image (as a PyTorch Tensor) and its reconstruction also a PyTorch Tensor """ fig, axes = plt.subplots(ncols=2, sharex=True, sharey=True) axes[0].imshow(img.numpy().squeeze()) axes[1].imshow(recon.data.numpy().squeeze()) for ax in axes: ax.axis("off") ax.set_adjustable("box-forced") def view_classify(img, ps, version="MNIST"): """ Function for viewing an image and it's predicted classes. """ ps = ps.data.numpy().squeeze() fig, (ax1, ax2) = plt.subplots(figsize=(6, 9), ncols=2) ax1.imshow(img.resize_(1, 28, 28).numpy().squeeze()) ax1.axis("off") ax2.barh(np.arange(10), ps) ax2.set_aspect(0.1) ax2.set_yticks(np.arange(10)) if version == "MNIST": ax2.set_yticklabels(np.arange(10)) elif version == "Fashion": ax2.set_yticklabels( [ "T-shirt/top", "Trouser", "Pullover", "Dress", "Coat", "Sandal", "Shirt", "Sneaker", "Bag", "Ankle Boot", ], size="small", ) ax2.set_title("Class Probability") ax2.set_xlim(0, 1.1) plt.tight_layout() ================================================ FILE: DEEP LEARNING/Pytorch from scratch/TODO/GAN/cycle-gan/helpers.py ================================================ # helper functions for saving sample data and models # import data loading libraries import os import pdb import pickle import argparse import warnings warnings.filterwarnings("ignore") # import torch import torch # numpy & scipy imports import numpy as np import scipy import scipy.misc def checkpoint( iteration, G_XtoY, G_YtoX, D_X, D_Y, checkpoint_dir="checkpoints_cyclegan" ): """Saves the parameters of both generators G_YtoX, G_XtoY and discriminators D_X, D_Y. """ G_XtoY_path = os.path.join(checkpoint_dir, "G_XtoY.pkl") G_YtoX_path = os.path.join(checkpoint_dir, "G_YtoX.pkl") D_X_path = os.path.join(checkpoint_dir, "D_X.pkl") D_Y_path = os.path.join(checkpoint_dir, "D_Y.pkl") torch.save(G_XtoY.state_dict(), G_XtoY_path) torch.save(G_YtoX.state_dict(), G_YtoX_path) torch.save(D_X.state_dict(), D_X_path) torch.save(D_Y.state_dict(), D_Y_path) def merge_images(sources, targets, batch_size=16): """Creates a grid consisting of pairs of columns, where the first column in each pair contains images source images and the second column in each pair contains images generated by the CycleGAN from the corresponding images in the first column. """ _, _, h, w = sources.shape row = int(np.sqrt(batch_size)) merged = np.zeros([3, row * h, row * w * 2]) for idx, (s, t) in enumerate(zip(sources, targets)): i = idx // row j = idx % row merged[:, i * h : (i + 1) * h, (j * 2) * h : (j * 2 + 1) * h] = s merged[:, i * h : (i + 1) * h, (j * 2 + 1) * h : (j * 2 + 2) * h] = t merged = merged.transpose(1, 2, 0) return merged def to_data(x): """Converts variable to numpy.""" if torch.cuda.is_available(): x = x.cpu() x = x.data.numpy() x = ((x + 1) * 255 / (2)).astype(np.uint8) # rescale to 0-255 return x def save_samples( iteration, fixed_Y, fixed_X, G_YtoX, G_XtoY, batch_size=16, sample_dir="samples_cyclegan", ): """Saves samples from both generators X->Y and Y->X. """ # move input data to correct device device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") fake_X = G_YtoX(fixed_Y.to(device)) fake_Y = G_XtoY(fixed_X.to(device)) X, fake_X = to_data(fixed_X), to_data(fake_X) Y, fake_Y = to_data(fixed_Y), to_data(fake_Y) merged = merge_images(X, fake_Y, batch_size) path = os.path.join(sample_dir, "sample-{:06d}-X-Y.png".format(iteration)) scipy.misc.imsave(path, merged) print("Saved {}".format(path)) merged = merge_images(Y, fake_X, batch_size) path = os.path.join(sample_dir, "sample-{:06d}-Y-X.png".format(iteration)) scipy.misc.imsave(path, merged) print("Saved {}".format(path)) ================================================ FILE: DEEP LEARNING/Pytorch from scratch/TODO/GAN/cycle-gan/samples_cyclegan/samples_dir.txt ================================================ An empty samples directory for saving generated samples during training. ================================================ FILE: DEEP LEARNING/Pytorch from scratch/TODO/GAN/project-face-generation/problem_unittests.py ================================================ from unittest.mock import MagicMock, patch import numpy as np import torch def _print_success_message(): print("Tests Passed") class AssertTest(object): def __init__(self, params): self.assert_param_message = "\n".join( [str(k) + ": " + str(v) + "" for k, v in params.items()] ) def test(self, assert_condition, assert_message): assert assert_condition, ( assert_message + "\n\nUnit Test Function Parameters\n" + self.assert_param_message ) def test_discriminator(Discriminator): batch_size = 50 conv_dim = 10 D = Discriminator(conv_dim) # create random image input x = torch.from_numpy( np.random.randint(1, size=(batch_size, 3, 32, 32)) * 2 - 1 ).float() train_on_gpu = torch.cuda.is_available() if train_on_gpu: x.cuda() output = D(x) assert_test = AssertTest( {"Conv Dim": conv_dim, "Batch Size": batch_size, "Input": x} ) correct_output_size = (batch_size, 1) assert_condition = output.size() == correct_output_size assert_message = "Wrong output size. Expected type {}. Got type {}".format( correct_output_size, output.size() ) assert_test.test(assert_condition, assert_message) _print_success_message() def test_generator(Generator): batch_size = 50 z_size = 25 conv_dim = 10 G = Generator(z_size, conv_dim) # create random input z = np.random.uniform(-1, 1, size=(batch_size, z_size)) z = torch.from_numpy(z).float() train_on_gpu = torch.cuda.is_available() if train_on_gpu: z.cuda() # b = torch.LongTensor(a) # nn_input = torch.autograd.Variable(b) output = G(z) assert_test = AssertTest( {"Z size": z_size, "Conv Dim": conv_dim, "Batch Size": batch_size, "Input": z} ) correct_output_size = (batch_size, 3, 32, 32) assert_condition = output.size() == correct_output_size assert_message = "Wrong output size. Expected type {}. Got type {}".format( correct_output_size, output.size() ) assert_test.test(assert_condition, assert_message) _print_success_message() ================================================ FILE: DEEP LEARNING/Pytorch from scratch/word2vec-embeddings/data/download_data.txt ================================================ Download the text8.zip file as per the instructions in the exercise notebooks. Extract that data in this directory so that you get data/text8. ================================================ FILE: DEEP LEARNING/Pytorch from scratch/word2vec-embeddings/utils.py ================================================ import re from collections import Counter def preprocess(text): # Replace punctuation with tokens so we can use them in our model text = text.lower() text = text.replace(".", " ") text = text.replace(",", " ") text = text.replace('"', " ") text = text.replace(";", " ") text = text.replace("!", " ") text = text.replace("?", " ") text = text.replace("(", " ") text = text.replace(")", " ") text = text.replace("--", " ") text = text.replace("?", " ") # text = text.replace('\n', ' ') text = text.replace(":", " ") words = text.split() # Remove all words with 5 or fewer occurences word_counts = Counter(words) trimmed_words = [word for word in words if word_counts[word] > 5] return trimmed_words def create_lookup_tables(words): """ Create lookup tables for vocabulary :param words: Input list of words :return: Two dictionaries, vocab_to_int, int_to_vocab """ word_counts = Counter(words) # sorting the words from most to least frequent in text occurrence sorted_vocab = sorted(word_counts, key=word_counts.get, reverse=True) # create int_to_vocab dictionaries int_to_vocab = {ii: word for ii, word in enumerate(sorted_vocab)} vocab_to_int = {word: ii for ii, word in int_to_vocab.items()} return vocab_to_int, int_to_vocab ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/README.MD ================================================ ## Solution to TGS Salt Identification Challenge 2018 Link: https://www.kaggle.com/c/tgs-salt-identification-challenge Detailed solution explanation: https://medium.com/@insafashrapov/kaggle-salt-identification-challenge-7fc502d1c3c3 Several areas of Earth with large accumulations of oil and gas also have huge deposits of salt below the surface. But unfortunately, knowing where large salt deposits are precisely is very difficult. Professional seismic imaging still requires expert human interpretation of salt bodies. This leads to very subjective, highly variable renderings. More alarmingly, it leads to potentially dangerous situations for oil and gas company drillers. To create the most accurate seismic images and 3D renderings, TGS (the world’s leading geoscience data company) is hoping Kaggle’s machine learning community will be able to build an algorithm that automatically and accurately identifies if a subsurface target is salt or not. I with my team ranked 27th (TOP 1%) in the TGS Salt Identification Challenge on Kaggle platform Teammates: * Mikhail Karchevskiy * Leonid Kozinkin ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/data_loader.py ================================================ import torch from torch.utils.data import Dataset from torch.utils.data import DataLoader from data_process.transform import * import random import pandas as pd def read_txt(txt): f = open(txt, "r") lines = f.readlines() f.close() return [tmp.strip() for tmp in lines] class SaltDataset(Dataset): def __init__(self, transform, mode, image_size, fold_index, aug_list): self.transform = transform self.mode = mode self.image_size = image_size self.aug_list = aug_list print("AugList: ") print(self.aug_list) # change to your path self.train_image_path = r"/data1/dex/DATA/Kaggle/Salt/Kaggle_salt/train/images" self.train_mask_path = r"/data1/dex/DATA/Kaggle/Salt/Kaggle_salt/train/masks" self.test_image_path = r"/data1/dex/DATA/Kaggle/Salt/Kaggle_salt/test/images" self.fold_index = None self.set_mode(mode, fold_index) def set_mode(self, mode, fold_index): self.mode = mode self.fold_index = fold_index print("fold index set: " + str(fold_index)) if self.mode == "train": data = pd.read_csv( "./data_process/10fold/fold" + str(fold_index) + "_train.csv" ) self.train_list = data["fold"] self.train_list = [tmp + ".png" for tmp in self.train_list] self.num_data = len(self.train_list) elif self.mode == "val": data = pd.read_csv( "./data_process/10fold/fold" + str(fold_index) + "_valid.csv" ) self.val_list = data["fold"] self.val_list = [tmp + ".png" for tmp in self.val_list] self.num_data = len(self.val_list) elif self.mode == "test": self.test_list = read_txt("./data_process/10fold/test.txt") self.num_data = len(self.test_list) print("set dataset mode: test") def __getitem__(self, index): if self.fold_index is None: print("WRONG!!!!!!! fold index is NONE!!!!!!!!!!!!!!!!!") return if self.mode == "train": image = cv2.imread( os.path.join(self.train_image_path, self.train_list[index]), 1 ) label = cv2.imread( os.path.join(self.train_mask_path, self.train_list[index]), 0 ) if self.mode == "val": image = cv2.imread( os.path.join(self.train_image_path, self.val_list[index]), 1 ) label = cv2.imread( os.path.join(self.train_mask_path, self.val_list[index]), 0 ) if self.mode == "test": image = cv2.imread( os.path.join(self.test_image_path, self.test_list[index]), 1 ) image_id = self.test_list[index].replace(".png", "") if self.image_size == 128: image = resize_and_pad(image, resize_size=101, factor=64) image = image.reshape([self.image_size, self.image_size, 3]) image = np.transpose(image, (2, 0, 1)) image = image.astype(np.float32) image = image.reshape([3, self.image_size, self.image_size]) image = (image.astype(np.float32) - 127.5) / 127.5 return image_id, torch.FloatTensor(image) is_empty = False if np.sum(label) == 0: is_empty = True if self.mode == "train": image, label = resize_and_random_pad( image, label, resize_size=101, factor=128, limit=(-13, 13) ) else: image = resize_and_pad(image, resize_size=101, factor=128) label = resize_and_pad(label, resize_size=101, factor=128) image = cv2.resize(image, (self.image_size, self.image_size)) label = cv2.resize(label, (self.image_size, self.image_size)) if self.mode == "train": if "flip_lr" in self.aug_list: if random.randint(0, 1) == 0: image = cv2.flip(image, 1) label = cv2.flip(label, 1) image = image.reshape([self.image_size, self.image_size, 3]) label = label.reshape([self.image_size, self.image_size, 1]) image = np.transpose(image, (2, 0, 1)).astype(np.float32) image = (image.astype(np.float32) - 127.5) / 127.5 label = label.reshape([1, self.image_size, self.image_size]) label = np.asarray(label).astype(np.float32) / 255.0 label[label >= 0.5] = 1.0 label[label < 0.5] = 0.0 return torch.FloatTensor(image), torch.FloatTensor(label), is_empty def __len__(self): return self.num_data def get_foldloader(image_size, batch_size, fold_index, aug_list=None, mode="train"): """Build and return data loader.""" dataset = SaltDataset(None, mode, image_size, fold_index, aug_list) shuffle = False if mode == "train": shuffle = True data_loader = DataLoader( dataset=dataset, batch_size=batch_size, num_workers=4, shuffle=shuffle ) return data_loader ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/data_process/10fold/test.txt ================================================ 943df308b6.png 00cdefa5d6.png 648d1ae4be.png 3c7d16efb4.png b59bb4f42b.png 60b26ed15e.png 5f6eb0452b.png b57b8d5c7e.png 266496989f.png 833a450da1.png f0256c5c19.png d09f670a22.png a15ac41235.png a4763177ef.png 555397b192.png d22a045c82.png d01e3d8f7c.png 3d9c671ce1.png 78d973e057.png a7fad8af86.png a37e566b4b.png a1ad0767f1.png dcf7859b19.png ab9a9e48dc.png eba07f1ec1.png 915ad56faf.png 40c2c80414.png 25a273a16a.png 624b6a6c3b.png 8ab2e33896.png 34a38ef34a.png 3018711518.png 4280f083c5.png d395e56a46.png e483ed9136.png 00f6108ccb.png 2637e17579.png c4291c0396.png 22c642d3eb.png 51adcb4fd1.png 9dd492d6e6.png 57f80fed27.png 68ca6d4b5d.png 28b5ab7b37.png bf6482f963.png 2efa022d01.png 99d1164d5f.png 970bd44389.png 55cf1d31dc.png fd038e782c.png c4b84025e1.png cf8ed7e7b4.png ff65941484.png 6f97112511.png eb18014173.png a01dfd5b11.png 6592d5e7fe.png 6f931611f7.png b698fce464.png cd8c487734.png b46cdbca5d.png ed00daf087.png 0fca192950.png 72fed38a43.png 21beba74c7.png 6c21a33935.png c4f24495e3.png 4698cc32f9.png 612e3372ce.png 711c505cf4.png dc898d55ca.png 9fed64924e.png 36df9ee508.png 14826063c7.png 8a9ddaff1d.png ca176eaab9.png 4ab1ae3516.png e3ee715d4e.png 9f2cc46573.png 2b23c2e75a.png 67e59dec89.png 388099f75d.png 34fc4627ff.png 31e17c9459.png 07e99af922.png 489df63e85.png 9a808f321d.png 6086dd952b.png b9b8727ba8.png 6432584b53.png 5f9879a8bc.png c63683e0af.png 0ab9e80e8c.png 9002e4bbcb.png 4450426d55.png 830509e296.png 1d3b12f176.png a9bf8069ba.png bbf3b633d7.png ca9ebdb0e6.png b9f34d3039.png d9c57ba98b.png a6d97826dd.png 3138263206.png 386b1e501f.png 33d638b9bd.png e4ce609688.png b5a206a00d.png 665912cade.png 6fcf6097f2.png d61b459e61.png 9f2ca5078b.png 3ad3fd1b91.png 3c77cbb39a.png 3c44e011af.png 3dff831f3c.png 6208c7711e.png be48e1e064.png 1cf33ec55a.png 5503a13b3b.png b71f8ae21f.png 4553f776f0.png c2be737b81.png e510198a84.png 92af56fd8a.png 948b2bed44.png df7daf15b5.png 091b46d588.png fefe2eb684.png be147b0ef2.png f67e8204ca.png bc7471a6c2.png 587c839aba.png 0d5d3cadd5.png 12f06e8373.png b664b27025.png 3a40695e2d.png e0ac392d8f.png 4b354208b1.png 4a85d2fb19.png 18046df8e3.png e8c835e104.png 3f404c5022.png 3cf7c01481.png 73e231af37.png 2c0dca7cbd.png 79fbf50ca3.png 4ca1a99fcf.png 52a63b329c.png 78b42298ab.png 539666654e.png e71e4852db.png 8ff5e93573.png 15b7f06ba0.png 11737bd271.png 91297fe545.png 54e0223472.png e468f76d96.png 316d5719d5.png 3b85447c61.png ed5ffdd2a8.png 89452791fd.png 3078a52105.png 78f7d46b55.png 6e4fe449ce.png 4510ce8fef.png 8c6b8aac6d.png 6f9e3bb2f7.png 147ec91542.png 041f48019f.png 5f6cf01dd6.png b690245d77.png 40fceff327.png ea189558a2.png eca39b106e.png e83c7943f9.png 5002e0163a.png c32590b06f.png eaf44cece7.png f762ed84a5.png afd984cece.png 3081fa09b8.png a5ae14f500.png 89a57acfbb.png 02564072c0.png dd631e6569.png 782a4a89f1.png 8e99199e35.png 760e92cf87.png 13e2856613.png b00c0fdd0e.png 3fea5ef77d.png 0c59027602.png 40a1a3ddcf.png 6cf620a2f0.png 15f3e1a0df.png f7c685315e.png a67fe36ac3.png 6e37ae1fde.png bb09d123bc.png 8ef46c404f.png b6c481b604.png a5a9e48a1b.png 2b0ff86c1b.png 41fbcb79d9.png 968c87dbe9.png 31c8f92fa9.png fb6ef1a753.png 1f27336ad7.png 547bfceee8.png e7ceb8a1f0.png aab16917e6.png 0fac240905.png 821f0bcb1d.png ab9683d790.png 2ac0b5c25c.png cd5d4d603c.png f82f19a681.png 6ca74c085b.png 85f763a9b4.png 0aa92c32d3.png 1aec922970.png f84783b31a.png 65474585cb.png 426bdcb658.png 62c2287cc4.png 7ee401ed76.png 4bea09bfd4.png 87114ddd92.png 7a4dad7bb4.png 2726b3fba5.png 142209dcbf.png c1f6155789.png eac74e0d63.png cb68284b4e.png 1b97d2054b.png 8b58bed470.png 3a41611201.png c176666556.png 58d550a35d.png 6d75fcd108.png 970e117246.png 85c075014c.png 9eb7f34982.png fbb9e8c041.png e426261c0a.png 3fefb4fa2d.png 2a44b1aa4c.png 5e29776755.png 37949f5dd0.png 7efc8f9954.png 60668ceb17.png cdd5f9eb0c.png 1afb27f632.png e8a4f0dd80.png 3fe1578a95.png 094511c4a5.png f3f127c01a.png 64752b5954.png 6031814bd6.png 2bd492e362.png 3ed16c7933.png cc52462e9d.png 8c27396a23.png 5f6a9df8e3.png c687189501.png 056d7bd8cd.png 04a60b7e45.png 4a2b003ce2.png 0230002b65.png 4b15cebb3c.png d480770008.png 1ac1e18079.png c1de072b83.png 15a5fc9a44.png d063e9625c.png 6402f3af25.png 00a738b887.png f3ab43b528.png 208d90dde3.png 5454e63aaf.png c18ed6f057.png afeced8b5f.png ddbdc80b55.png 20b0f116bf.png 20821458c9.png 3110e75d41.png 7f59a43fb8.png 8e544dd9be.png 74c86f24cb.png 2a44c7f603.png 1300ce55c4.png 101aef99e5.png 6425106fd4.png 4c2c29b221.png 3cbad9e965.png c23175cb53.png 7bc114d737.png 3d08ee7fe7.png 49ce7de30b.png 8a4a6988f2.png a88d46d451.png ab21a116de.png 6f4fce059a.png 24ab9aa878.png 2aa3aed6f0.png 6f2a1691c4.png 2f611aa593.png efe1db1329.png 4d83ad1538.png 0ccee86f32.png f3ab5cd2c9.png 83aaa6313e.png eecee83e14.png 16ad47a452.png bc5697eebb.png 5cdaefe6c0.png c6a07c1bf0.png 31767a6b6a.png 2f4efcb073.png b1a2903d1c.png 406ba2a864.png 1b01a457d9.png 30a31f4de8.png c4a1a78146.png 12069cc8fe.png 706bee4c9c.png 8caa006f70.png f1af965f8f.png 62db2c0479.png 213ac06da3.png d095994640.png 64b5679468.png 5b780293cd.png 859d0acc6d.png f2ff5cdf47.png e643e16a33.png 70cc45bc3a.png 143238e252.png 63a371159d.png 3535fe3ff5.png 68c24f3d46.png dd07581d02.png dbc641e275.png 8f06e655a4.png c9fc576387.png 96882dd4fa.png d484fbb030.png a5964e0dac.png 0712ea6aab.png 214bb6c663.png 5e2a86e209.png 2980d1bf07.png f81b02f6ee.png c437d4a4cd.png 333dd21431.png 7a4f1e86bf.png 9ae931f21a.png f3e67c0d77.png c38c3f0a49.png 5a416af8db.png 54a7882e73.png 74a3b69852.png ee98738f1f.png 939fbf65d8.png 69da7346f5.png 1bbf1cdaba.png e94023f24e.png 1a4411bd5c.png dddf779b5a.png 1093e4f138.png dd792321e8.png 5f6d235f00.png ea0d2f8ff1.png 23e0be0175.png d37250bba7.png 9d0b07cd6d.png 8687badf0a.png 985c03d8c8.png fb0a643ce3.png 30aef2acea.png e113a8b7e2.png 9613762743.png f16842c2d3.png 95eb72bdc1.png 818de0feb2.png ec8a34b478.png 648ac9c05a.png f486d3c0e5.png 29d32c7561.png 80bef8d68f.png 0ea282db13.png 37880e817f.png 5fb0953e0b.png 761fb17dc0.png 2d1846ae12.png c5749817aa.png c895702d04.png 1fac01003f.png 30451ed875.png ce6a32fc51.png c7383e9a87.png 88489834ac.png eab2d3c8af.png bba5226192.png 29a3dc18b0.png 7910314114.png b468a3a0f5.png cc5b03f643.png 0373bd8d6c.png bc78319696.png a0e9cd5453.png d5fbaeab9c.png 060d966da4.png ffedecc19c.png 900eb82c33.png 40f7669f65.png 4a74c0873d.png 309a8f9f4b.png 8f03ee383d.png 1594446b53.png c77bf07d42.png 761b0fef99.png 48da4541cc.png ec49e2aba8.png 967f41605c.png 5c2ee31bad.png 9d0f0a2488.png e0e23af636.png 65ec8a8f69.png 4b6bc93e6c.png c77cf11ee3.png 1af8728ece.png 1f7147deda.png 38471001af.png c5c0d14356.png 68206e6536.png 41a8ca9668.png 49fafe3b60.png cb658e0c88.png 61541269c2.png de672581da.png c9c7cd6fa4.png 2008ffe345.png 47bab26c30.png 16e0dd1047.png a3e067edd8.png 19c666a371.png ee4cabf39a.png bb834c3d6e.png acdbb294e4.png bef04f7b6e.png df3d72a2d0.png 0b8ec6ac7a.png 1e7c85e567.png f7d7577dff.png 33a1b10a37.png c02e3de473.png 9c53811ac1.png c34a4aa5b3.png 11236835b9.png bf44061c39.png 5bf538ffa6.png 87f1da602e.png 67b499db6a.png babe7b8be7.png 5bc134fb2d.png 35aa9f76ff.png 91bfb63ca7.png da23d83a71.png 625ba0be4e.png 1ec85530b6.png 8e7f953305.png 529cd39ad9.png 35e7acda04.png a85d0a35b4.png a1a0480cd9.png 12a7ca7096.png 767574627a.png 8d8fc0c5e9.png 7faefd69a8.png 39aeeceb53.png 57b4df87a9.png 4f43acf03a.png c5f335d44c.png 35d158258c.png d67b2eaa3c.png 9782b39532.png afc76fb439.png b3a5061e67.png 0035c56490.png b1ec2f27e4.png 9e9d2d23b9.png 22f4027b5b.png 42eb2264d8.png e18636b104.png 8544771e1d.png 383c73a408.png 3a76e22552.png 319fc55710.png dc2a31bc27.png 1034497357.png 975ae481a2.png 80bc5a57a3.png 6730d663de.png 7a60a99114.png 663990c75e.png 226b8347aa.png 02dd21181c.png 99f5360246.png 761e6c392a.png c24e12d0cf.png b6a88be280.png a9cb7bf304.png 7f23ba4e4a.png 9938699a58.png 0c842f5207.png 8a945b50bd.png e258f2a7f1.png e095c82f73.png cb58d64264.png 598008dcfa.png d792df5590.png 012ee0802b.png b680631ed5.png 3fa0352e1a.png de38a99f09.png af86467c71.png 0d808a8f68.png 9cb9185a70.png 316b113b65.png b318dfdca7.png c645f9fb9d.png b4089e711c.png 1b7304112e.png c6ac3cb5f1.png 9661a4546f.png 12c412993e.png 11e04924b2.png 89dd28d442.png 4b43990c7b.png 18654f824e.png 8147d3558c.png e006ec6c95.png ca70f9caf9.png ea79ad612f.png 41d06c2c33.png 9d7482beb6.png ecf703b922.png e536d6ff17.png 9d1516b5b9.png b3ad85e8a9.png f3638e69a3.png fff99a4584.png 266653cd84.png 1c21b0e9bb.png c230ea7815.png 57d0d7a5d0.png 3e59ba039c.png 81b5783353.png 94dcc2ee9a.png f650532780.png 9c8e69221c.png eaf3b0ec78.png 19fbc4280d.png b0732b724a.png cd3b363bfa.png 955a22dab3.png 42dcb5e761.png cfbc5030dd.png 34586dbe50.png b711135cfd.png 3d254d5311.png f2292656d5.png 459275ed4f.png c9ba1867cc.png 1ce1580804.png e3e70129bc.png 73e81d4093.png cd93859edc.png 4325dc8108.png b268ce180e.png d4e723b4c7.png 73cb3fb57b.png 6768e73c8b.png e65d1f0012.png 196638fe77.png 281050471b.png 067f82832a.png e68d553bdf.png 6a7d046783.png 2380869b24.png fbf8f58b71.png 748078728d.png 0fe0913aa8.png 41c76eef27.png 2447b1e3fa.png ba2e7143e9.png a29480d00e.png 9868dcfa42.png f417d9657c.png 285d6a6e97.png 8f5d3d5cec.png 265e948e47.png 2d7ff66d35.png c646a94e06.png 80de9489b2.png f38473c1dd.png f8ea0667b8.png 7eba79439a.png 72862eb350.png 984c93703e.png 783ee7dc03.png 38b5d46689.png 5e9c32ead8.png e18e04a6ff.png 94baa78d86.png 8eb9fca4f3.png b72e542ea7.png bcfddc1da8.png 5e3ac6f983.png 76c9b61a93.png 693689526d.png 40d7f084ce.png dd5c9e2550.png 8d0e4f5ceb.png 61493ca044.png 155111e72b.png 1a4cd0fd59.png d7fef0da4f.png 2fd6740e77.png fe7152e183.png 7c72ae0a51.png 1f07460c78.png bb689a3c35.png 642bd295f9.png 313cf7f11a.png 98a998d784.png 7756280610.png 0470c449ca.png de7a0dc03b.png 663c095075.png f858319382.png dfe93fbc63.png e286e6d0fc.png b09aaa94c1.png 20c82f0e9c.png 6abab2e4a1.png 744a2fab2c.png b001a5381c.png 6ce16dbcd4.png bec7c0ff21.png 074a4a918a.png 8c2dfc1e05.png 5fe661243a.png b27dcf087e.png 8720f13ca5.png f371086cfb.png 64f93bb656.png a0cfcb6546.png 64f11799ae.png 1c4d649995.png 07424fb781.png 9281a1fa33.png c9efd977d4.png 6955cae168.png 71510358a2.png 6a5d2c2738.png 54571ba221.png 71b381b1bb.png ed218a87e5.png 61438a146a.png a763650a19.png 4a0490244b.png 699c07648b.png b7ebdaa8bb.png cda5087210.png 32a40874f0.png f760baa181.png 4628d07e17.png bbf1d1b243.png 84044adfe4.png 7b7e1a542f.png bf5cf3c536.png cfb0294fdf.png 4d8c1e0580.png 71311cdce9.png 97f8cb9fac.png 6301fc6be7.png 43a137a06b.png a9054ffba1.png a4d9822ec8.png e0fce64c8c.png 0475626c02.png f0d68a2c3a.png ac2468e7b2.png dddf6d20bc.png dfbf9cdc06.png d443579521.png ea4c1436c7.png 0e102a8da9.png 258838cb73.png a1df99dffd.png bef02db904.png b7112227fa.png 8a396e306d.png 990468763b.png e15d008a21.png 1bae2bef94.png 7bfeb0809c.png b2f220fad7.png 9f9f947775.png f2a062e477.png be02cfe5da.png e0ceaa659b.png 52c4d1d8fa.png a8c5ce8f72.png 3e8f4f7c8f.png 353bca9171.png 8e919b610c.png 8181166ca9.png a3cc6ecf52.png da5a43625d.png 05cdc83902.png 9175e7d74c.png d3ff38ba9b.png e8e0ac9215.png d64b16435d.png 0981026c4f.png 7a0a1152e2.png 798e0e80ba.png d547702609.png 29ceeed519.png 227dd380e7.png adc42b057d.png b83fe9c9a8.png 5237e5d016.png 317f5e5458.png b1430fc9bf.png a42a45b613.png fa976875f7.png bd3f5f6d56.png fd1a957827.png 2d5933d5f6.png 7404408177.png 63051e4428.png 2897b099fe.png 922f4b1692.png 66c484c763.png d827064439.png fa2e0ec852.png 4be90bdeff.png 399315184c.png 88a58de38a.png b7e6b68ca5.png 6f917328a7.png 16d12d560d.png ef0ca9f5ed.png fca9339160.png 9926e8e837.png 2f37f301c0.png 97205f3eed.png e196ca33b3.png 774ae6c2eb.png 78377df955.png 289e85588f.png 929f4f4c47.png b873f6dad9.png 5f171def5f.png e40a6b75af.png cda1d37159.png 3ee9a8ddb1.png 8e58618fe6.png 885bc954e8.png 06403b80fa.png f981f39d37.png 8068909c83.png 37260c432f.png f27415aed0.png bc2ae414f8.png 0fcf26daaf.png b0955cb6a5.png 09a7af5a1b.png a71ecaecb1.png 773e6fba21.png 2ee235848e.png 283aea40d1.png be604488fd.png 40452bd035.png 9dada384f3.png 82904b406b.png 8346af8d52.png 8032860ce9.png 7c0fa011cc.png f0b36fc8b3.png 10ca4a5d66.png 21e2078fca.png 6f533a271d.png 662c5c3fea.png 665301fedb.png d0b188118f.png 49d2d5a232.png 25e682fe85.png c0b31ebf26.png 825aa65d80.png b21810165a.png 05e30ce8af.png 558a5e1dfe.png 09ff9f2dc2.png b6702e727f.png 3d7e68aca2.png 09ef36d784.png 4127db527f.png f221c63b76.png 78b32781d1.png 44ae5edaad.png 845267074c.png 1631293bba.png cf5d5915c1.png 978ae7ff61.png a919766328.png 43012fb793.png b0f7f890c8.png b3a1353d0e.png 80cb3e7f7d.png fb7a9f15a5.png 4502ae73a4.png 1432fcc191.png f819844efd.png 4b473f0e4a.png 63a6efdc11.png f2d096af76.png 52d6cae7a0.png 15103f6ef7.png 513685023c.png 09e83b7ec9.png 7e8201578d.png 75c4c73270.png a81fe70c11.png dd20094c03.png 3307dd0179.png eee30457a2.png 16d444da1d.png b9c8fa4ea1.png 0c7631165a.png 181be07ca5.png 45b3edccac.png 65edaad9c9.png b7be8c30e0.png 525e2bed36.png 22668e2420.png d167981f98.png 290adb76ea.png da4a6183cb.png 4eacd42b51.png 216d7c5437.png 99b09414cf.png 31f29ada31.png 542f26c6ee.png 51d19a3eb3.png 6e23b5482f.png 916c472945.png 146dfd93ac.png 20418b6cf2.png 38bb5d43f4.png 2d9b4d01d0.png 6f582d4023.png fc01432146.png 8758e2ddb4.png f3fd36d099.png a3adfce43e.png 5ec431887a.png 14d5d41e14.png f52e44f960.png 269bd08c22.png e17126744e.png 7cf980df36.png 9ed9a2feed.png 117bd13f22.png a60d8f7fbe.png e1f32ca8c1.png 68ce559aca.png 56445dca2b.png fe14b9e031.png 352e661350.png 8931ce5d9d.png 70596c3dd2.png 78d5dd593b.png 0b449cb641.png cc6dc526c6.png c7c733b053.png aae6ca24a9.png 7aa8677b5a.png 5b3a40bffb.png a656c1edc0.png 4d5306ecf9.png 495a45df4c.png cbd649b1ee.png b48a0af1f1.png b00fd9fcb9.png 614cd43381.png 7b32cb2861.png 4bf4b35f56.png b95c797bb5.png f97372fd50.png f8121521b6.png 72fe314276.png e853c3322a.png 8a54304ab0.png e4715f9546.png 678e0aa3ad.png ade2a658ee.png dff67697cb.png df4d3306f0.png d6273a678a.png d247469515.png 2d55a5841b.png a081425976.png 44d28db2dc.png 61023e1d99.png cc2fc654f5.png 6781b6e297.png 1cd0858d58.png 8135ca6dde.png c0f8ef8904.png a62f9b6494.png 9935d5f9e9.png 77953e3230.png 5bb56c179a.png 0be5323c3b.png dd6c3f08d9.png f006fb4fc6.png 141fe4baa1.png 3385dcccfc.png a4876c155d.png af9b763988.png 174bd4ed02.png 4e206da365.png 39f345dee2.png 1172c56c13.png 73152cd72f.png b47f514539.png e895c207eb.png 0c8d55a780.png 2d6b59a83b.png a4a1e89b8e.png ef22ccf533.png 8be34cb1dc.png d1c5e7f75b.png 068f7a5267.png 44e905e599.png bf3fc8ff12.png ed35c9c0d8.png 88b8522325.png a63468651c.png 598c719aa7.png 9351220cec.png 9b622b10f4.png 649b95fde3.png d9475049de.png 7bb4e8e6d7.png be2d77edfc.png 7b91d38f81.png 566b4e0770.png b0ef4ce251.png afc4844f6a.png 7b680e68ce.png a049e7255e.png 01166ff99c.png 333c47577b.png 0b20585c5a.png b7bedf816c.png 41d0f0703c.png c0581f8747.png 48fa508d87.png a5bdac93d1.png 6a8890377a.png d60db2ca4a.png 13cde8654c.png 170791a419.png 9d98ce444e.png 707361a693.png 2386a0869a.png c765869d59.png e288ff18e2.png 2f1e684ac7.png 9aea81d01d.png 14d1b7816a.png db16c4c2ae.png 6f4612137e.png 7f60438768.png 2c0820cfb4.png c4d1e821d1.png 7c640919a2.png 8aca22cb3e.png 14ad692232.png 341e90a036.png 85c813bc7b.png 65cb9ccd83.png 4151efcf29.png 04893c47bb.png f85632cd95.png bf352f5c5c.png d13105c407.png a9a4f7162f.png 897d7e821c.png b4eb3ee501.png 02ff065ed6.png 1e4bc50928.png 870e83dd9d.png c190d5a96a.png 31632725b3.png 802b3e6be9.png 326a51c36b.png a8fe8b9306.png 044d6800ff.png 56dc8e416f.png 6bc1b58b5d.png 0bd08d4d2d.png 670eb245f5.png 51dd15dd1e.png f93f231ea4.png 413353cd7d.png 4a11afb357.png e5e9e5fcff.png da1081e0ab.png 46a88e46a1.png 49f7d795cc.png def865335d.png 034f55162e.png 5fce13f8e1.png 0c10b00c44.png 63fa6eda16.png 857293f3fe.png 75aa6457a4.png 82dc840568.png e964212470.png 5adb4649bf.png dbecae2cc0.png ca339e5289.png 0ec5a99768.png 013e4e716a.png 99f86c993d.png 830b0c4dc7.png 0d1aaab6b8.png a3e5e1d301.png a70be225dc.png 71416f3e05.png 42e58ae641.png 263cd3f9b1.png a8ae93258c.png 446ddc96b2.png a680be5220.png 74ce107a84.png 9435647390.png dcaecdf831.png 6a7e072e7a.png 5513e388a6.png c982bcdf9e.png 552f7a9f14.png 2456901c98.png 5d9a434f6f.png 960d395a3f.png 7c4605002a.png 8de69c8b40.png 94759a6603.png 4cde340a69.png 83dddb0ca6.png 5893a87a04.png e8e897a8ae.png 20c2ec94c6.png de5264d7e9.png 8aa1e2dddf.png d09c8b55e8.png bc7512e68b.png 3e44639703.png 2d2f28610a.png fabb5223dc.png fb03170eac.png 407798f0de.png 957100fe7a.png 435cd5f003.png 055f01a5c9.png 8bcd5f745b.png ceaa808817.png 502bb755af.png 989980f611.png 62e58689c3.png 8beff4b809.png f3fdd9e147.png c8a962d7d1.png 0c476ba662.png b0bfdd3d3c.png 87af61df90.png a9eeedce67.png 1180277e3f.png 072bfb6a9c.png b94b6a4992.png f744325ef1.png 12516190e9.png 122e7dface.png 1126f78dd3.png b5821bfa07.png 19a46e881a.png 981bc36e6e.png 6e339205f1.png 832dd54aed.png 4a23ca32fa.png d2c3155dc4.png 8f0abdabcc.png 9739e07b5c.png 3a0168afba.png 2dd318a0c7.png 50fa8bbc7e.png 7c337d9e42.png 3ed46948ce.png 3856d9cc21.png d3d5626477.png 0470d6aba4.png a41122dbd8.png e138084a56.png bbb3054bf3.png 3bc23c3ac7.png 31f2c66fc9.png e86524fcbc.png f34715c722.png 01abaa26e8.png e85a720f91.png 8b5bb309bc.png a9914bdbf5.png d5fdf520e1.png 7262d7ac24.png cc6f3913b0.png de96056281.png 1965c20ff5.png 0c25be1d66.png 3e821f8642.png ed4cce1fbe.png 142b9c8d88.png e9c1c14939.png 5832fa2b13.png e220abe8b0.png 91ba84f784.png 8ea492a7ee.png b586705391.png c5e9aa26af.png 59605645c0.png e739fe4fbf.png a5c02f60cd.png 8881e6fb14.png 3dac65a9fd.png ba494943d8.png 935bd57df6.png 3731205282.png fa461678e9.png 2cf988af12.png 23012be6b7.png 6bc69c62e6.png 575d4ae82a.png 205097cbe4.png 67217aafd8.png c4a43ba621.png 13218ed167.png 0c2f4cf57b.png 7f38341dd9.png 3f57a66451.png c304ef9ecb.png 36b83e5530.png 23fb59b591.png 4db03fc647.png 6f5865ccfb.png 913f5c6470.png ae7ba85ff3.png 0d059aeae3.png 94f2fa673f.png ef04597f79.png ca0cf3d157.png 89ace8809a.png 79b6c430de.png 6a92fa6b2e.png 313be8227c.png 477df6be1d.png 9b11d67e37.png 1d8cfc6954.png e30535a390.png 5084c38739.png efec59e86f.png c05245c247.png 7931eb93b6.png 34acb105f7.png c47f69debb.png 37b5123c8f.png 367099de12.png 01f32c502c.png bffb67fc14.png 070047d518.png 080577b945.png f24c930c5c.png 56d39ded7f.png e849a8a057.png 2855669f79.png 4a08f295c0.png c575484a95.png 443f9cadc3.png e0257b4c20.png c741343ed8.png 84b9c5016d.png 2f6668d7df.png 8c9f7cd590.png 98bc73660f.png 4a1c037d5f.png 60bf7c5fbd.png fa6da5cb9d.png 4ee4b387e1.png 3153603b3e.png d6dcd4da21.png e1dbf1ca37.png 3d329cdce2.png f62d2298d6.png 228dc87bdf.png 6d710ec327.png f72d64ecdb.png c4f8acef95.png 7c6b453f71.png b144a72dc9.png b4ed4a112b.png 69dcaf2ada.png 28b600699e.png 2886fdf93f.png 428255da91.png 2626cc9b47.png 8795906a9d.png 15c00d00c4.png ef85dc4cf0.png ebd0f05fc1.png cc2b6a1eb2.png a2ce75daaa.png 08f2e9fcc4.png ef0f2d97df.png d187151bc2.png fe5625c304.png 5098537745.png e58c0adca4.png 4ca00f3f9b.png 077074bba9.png 9f024839e6.png 4031850bb9.png d20d6f41dd.png 6bb88deab5.png 53065eaa33.png 279f39950a.png b935f60197.png 77a38f1df1.png 36f9549e06.png b0a3baf70e.png 928ba68f99.png 26346acb80.png 6cf6befa6a.png 9b61c3ff73.png e1e2b3b3ea.png 0b70d67563.png 6f124c4dd2.png 4c8bc90762.png 00690a4185.png 2fd895df3d.png a8921964e8.png f580cbbe8c.png ee9a5d2cf8.png 0f19797af1.png d8b8dacc7e.png 02f19130c1.png 9609c8185b.png 34d898e6d9.png bf22319310.png 099342689f.png cf8f782c1a.png 60d9423890.png 079e05a311.png d3c27f59da.png 7b3a5f3d95.png 62c998cc72.png 0970725471.png 2575b53c1d.png eca8fc0255.png 98595cad73.png a79de081cf.png ca86bc43a0.png 871f2a1e45.png 25b5fa95b7.png 0f240d4463.png 10f1d4a32c.png fe5fdd7979.png 5e96338a97.png 512e5b5681.png b497566ac3.png ef6083f48e.png 4621e4cf32.png caac24dbe3.png 7b0773f310.png ba59579920.png 1ee8d337ab.png 67e0d71e9f.png e2e1a8c419.png 2c0e79d94a.png 5281d67da6.png a7323247ef.png 2c4d015b90.png d7d3ead58e.png 04d92b5a13.png 55737efbfe.png 96a9252b0c.png d4d825fe95.png 5f15a9ec4c.png c771336efb.png c08283e078.png 594af4bcde.png 28fbed93e4.png 750d00b2f9.png b836a898b4.png 66e4cf0269.png e1f349d34d.png 0e4572a9ae.png 60c70d9d2b.png ad1eae1fe9.png 087075f0f2.png 0534b9c761.png bb8e3d24d2.png fc4f24e7f2.png 34003990cc.png badc0a6c23.png 4e1c46b1ed.png a4b3dbc634.png b7cbfe92cf.png 1819f215f7.png bef8500370.png 161704122f.png 2b11f08d45.png aa0ef6b439.png e55ce10074.png a9e44990f9.png 82c3cfff3d.png 76949f552a.png 66c5e69234.png ec3f4f6f6d.png de28f19d4c.png 48477e7884.png af7e0cdd0d.png 48abb60ba0.png 669d158701.png e86690dd2b.png 435f2841d7.png 00323f1910.png 661059d0a5.png 5ca3ff4be9.png 915ead8b25.png 4169f0feaf.png b7aa650710.png d69fe4565f.png 3c80de29aa.png ce5fd7f840.png 1f4d1bd6fc.png 3c3dedc0cc.png 7afcc15c87.png 8ffb4376c0.png 5be0000be2.png 4a525c21b4.png eda23a9a24.png 661adc7b9c.png 6b7945d817.png a01134fa8e.png 6fb1cab30a.png 89074926b9.png c07a44eb90.png 213b23af27.png 0dffbb13f1.png 27a79442e2.png 8c5a6a2aed.png 748fda4538.png be663f4ad7.png 7fb1a8a0c5.png dd1779a6e8.png b01e1cd19c.png 59f388376a.png 90a5cd7288.png 5607cc4f40.png cfce7a0920.png 2c501a8b77.png d4069da6d3.png 3eb9c63046.png a1e1b90a18.png c1d8ab2c28.png e20e33ab7c.png a3bbf5c708.png 0fd4f71b7d.png 8ee672b4e6.png 7cd2918c27.png 0915403c23.png 114fd22f5c.png d1dff8de14.png b1fd612a60.png 8f9be04cd4.png 4e23fc92f3.png 1dec8a70c7.png 3e8651d250.png ecf1d1a666.png 67e4fdc167.png 57880c7526.png 598797da90.png 0813911355.png 3140fdaec8.png aac707eaa7.png 7798aa0c5f.png 73bd1ade5a.png f011521ef0.png bcfeacb8b3.png e26029b910.png c4a7680264.png d3e51484a2.png 3be52b19e1.png c04c9a4bba.png 0ab8b23845.png 97fe862edb.png 4f77eb811c.png 67142f744f.png 57ffcba066.png c9867c4064.png 837c793261.png be8b72467d.png a7c93f1649.png 5adcc5ba11.png 9694305ae1.png 23acdd12a8.png aa0dfcf8af.png 68915bcc5a.png 7ebbf0b3dc.png e49090fa59.png 110664c412.png 450da2ddcd.png a1bd9ad852.png 69357d53fb.png 3b7fac390a.png d2ee323c45.png 9a99e91fa3.png c60f31657e.png 62cb5b8d84.png 90b8109bc7.png be6ef0be10.png 0cbebcad99.png 6a2862b831.png c6013519e9.png e767158a8e.png c54a1a835a.png d3841e6c80.png ff76657860.png a6c84e89f1.png f5613d5371.png c996dc19a1.png 6c4b8e468b.png 34aa18cb4f.png 91ffedcfd5.png 32a571418e.png 4713dcdfe7.png 13496d77cf.png 45ea31b9da.png 643005b5af.png 8fde701098.png 2338283d0d.png 7633d58974.png 1ee8e51093.png bbd7e0885f.png f8fb47e8e1.png a543591b0c.png e82a9be847.png e7f271e490.png 629388a831.png 792b31cf9b.png ac059f8997.png 707c0b494f.png a23192d1eb.png 76fccbfd67.png 5c5ecbc728.png a595c6296e.png a8876c27ca.png c784560371.png 339e2d762e.png 04b529dd46.png 9a4d1749d4.png 57a953bb1d.png 5122692cce.png 89aedf2162.png 7327c7cad1.png d6d62e9b41.png b1ba756a79.png 68af6c5f57.png ddb0fdbd54.png 1ba6ec8c09.png 474c60acf4.png d4dcc3fb31.png 7aa7d78d30.png 71ce444528.png 754d4e98a5.png f959ffc6d9.png e6f2179d84.png 5f53c9d252.png 6eb24b0585.png a44270ae5e.png 6c88ce3622.png 3666f04356.png a82ea3864e.png 9da56ef334.png af85d6429d.png eefc0c11f7.png e739540fa2.png 6b26e7364e.png 8d71bd7891.png 0bbbd7b589.png 5a3ab68a97.png 2ecfb10439.png 3ccf256507.png ed2dac5160.png a6d02564cc.png f1e3ed1c10.png 1301514d67.png 7aa0fe93c5.png 1477d3e710.png d3e4630469.png 8595d53217.png c0de45a4d5.png a66a21e4c9.png bc1c545371.png a39c858e2c.png ec19326bbe.png b35a524585.png d064049a0b.png c8be125295.png 0839306166.png 31982ce029.png 1df8119d15.png 352749994a.png eb28ac55ab.png d694c84b1f.png 6e67571b91.png 1e7e6a7b31.png bc09c0039c.png b4dd1f458f.png 4b173d8f06.png 82f50352d2.png d514b10317.png 7801fdbd16.png 4afc4b57ad.png 96b71a38e9.png 27e33cfeed.png 2b4dbfc252.png 3c84d40142.png c7b9c59554.png cc09190dfb.png 9c14cb5581.png bf18502d61.png a056040228.png a994a04fd8.png bd9b727231.png e076188a6c.png 49b0ee21be.png bea5fee80f.png bcca498c87.png 198daefb7f.png 24a18f95ed.png 3929965e55.png 052c50e4e6.png 9afa3dea27.png 0af60a2408.png 15332d7c18.png c8cee4f4b3.png 9b901e92e4.png 273aded7a4.png e4e893bc98.png 0cbf2fdd4b.png dc71cdae70.png 18c219ecb7.png 76bd88df66.png d9d7c77e13.png 8706bdd5f4.png 7489fb76ec.png b9bbfd8128.png be331c9969.png 1ffeda69ba.png 1f3a28fbbd.png 2357cc8231.png c8f3d1b9c6.png 4eb102cd2e.png 17ff51e78c.png ec7058e510.png d92da71c3e.png cad296a394.png b8fcc32f11.png e402f53276.png bcf57add57.png 11f82be11e.png a515cb395b.png c43ad110ce.png 5d4ae4af66.png fe79b09a4a.png a498e414e9.png 166b46c4ff.png d3d6ced0d3.png 68d047de80.png e1d4493539.png fd98fc3bac.png 0d52ed9aad.png bedc7812fe.png 2c321af2dd.png 825db130f4.png 13268e9b59.png 2b5388e7b9.png da575a0444.png 31de8d8b34.png 4037f4ba93.png b49fe5308d.png a612bf83d3.png 6503a5e606.png d621c19bb8.png c3fba1c34e.png c793818b13.png 2c9058bc9e.png 6813cd8a9a.png f26293e80c.png 76302d297d.png 290a374cd4.png a08f3a707f.png 08eb8cc9e5.png 89ac484988.png fdbafdd468.png c6239930ec.png 6b5f72af67.png 3200c1b26e.png 1750f60b23.png 93cb37cdd3.png e2684fca5d.png f90ae4ac62.png 2437b08bc0.png 79e870db52.png 81d87e9c69.png 1f038bf35a.png 7ab963815b.png 97c0a37e6f.png 2462065207.png 4869d25c05.png 10c6b84f52.png cf671605eb.png d4f2ed2ce2.png cdab88a890.png c0a045726d.png d06d2ba008.png 8982354add.png 14b445d27e.png 7049da9998.png 3466c68b0a.png 1c093fde09.png 15338f4b95.png c08e29a1dd.png 55c0f6f4a9.png 3da8005edf.png b332da5919.png a31d85fa70.png d86dc56bdc.png a9e646fc8e.png ec96a1760a.png 646325e5bb.png 203e7683dd.png b05514e5fe.png 90b83d9260.png 8b18165c97.png cf19041b8e.png 8dd3e8622c.png d1adf6a8d8.png 5420263191.png 4d762be5e6.png f4394e72c5.png 921f62423d.png 8b056ea93a.png dbe559c0ed.png c773d84225.png b538ad97f7.png 3dd0afef2c.png 24df9ce7f3.png 69db2d04da.png 40e83640df.png a30307864e.png 128f4ccb18.png 77d383dd97.png 99c504fd40.png 85fe6c5bde.png 30feec0e78.png 06a79609c9.png aa60ebe3d4.png 2c9e776fd0.png 65f00f9982.png b2789223d4.png 9c1a87e7fa.png a594d86f88.png 2ccf5a4fcb.png 9244c80d9b.png 26d8e9c763.png b50f5e59ba.png 3ebce107cb.png a2460b1e74.png 97d2c11f37.png 617fff6c35.png 22e315d55c.png 14407c3233.png 4b4d404c82.png b3244169d5.png 4b8f0dd391.png 9cba387403.png 894420be25.png 6bc1d1227c.png 80d16f5eb3.png 2446290064.png f433483dba.png a6481131c7.png 094cf586ca.png ac525e4467.png 0d61c54a7f.png ecb398b5e9.png b8c7283298.png 056d1b3b59.png 4da67126ce.png f450f9c067.png 84dadcf34c.png ee54465e3d.png 90c3e5604e.png fb8b050b64.png 592fccad94.png 68ff47165b.png 8b99bc5f09.png ce04be18c5.png c3b1a8efa1.png 27b4cbac34.png ad68e3b559.png 6b090a7068.png 40186e2c64.png cb9c3597e8.png ec20edb5e5.png 164de10f56.png a9619e916f.png ea7cd41d83.png cacc0e3239.png 48fa734394.png eb7196935a.png dbd5499147.png 841103a83d.png f1d244a5ca.png ae75c77ff8.png d9299579aa.png ad7abb5e49.png f4ff08a9ff.png d6547548a1.png 1ac220b834.png 9e2432ac74.png 90a3f2a030.png 969e0a4804.png 3d9cc215e5.png 6e79a01f0b.png 82d8b50c5d.png ef96de0550.png 7bd606b890.png 0443387784.png e1719ec329.png 303a74f801.png 307f22698c.png 31a78326c8.png 3d21e1dc58.png 72abaed3bd.png 2a6209adae.png d31407ea3b.png fdc2de2c84.png 90ac7f0cc8.png ffdef44e2a.png 60a686709b.png f70a411f05.png 63c153b577.png 54f848a336.png 20f4920dd6.png 88e2efec9e.png 3394b3e57b.png cd134bd0dd.png c59e29f167.png da324cbdde.png 3724c63ddd.png 74d9a8ec01.png f13375e660.png 6869e641ab.png 02a4f7c7de.png b212dd2177.png 4d8007c75e.png 6c5b6e5733.png 099bce60e0.png f1b84b858e.png a7354b2f3e.png b0b6a38e0b.png 0c348fdf9d.png 541ad9b41a.png 5473d1590d.png 0f8905287c.png a69839ffc6.png 4df40162f4.png e8ce5691ef.png 810dacccc3.png e01c232637.png 20061dbc16.png 755b1d4def.png f1e8fccdc3.png aab3d007d1.png 88a7c71302.png bcc80b17b1.png 7276a4aa1b.png 221248dd0a.png 6b0f472ce3.png 6eef02f2b2.png cef5623670.png 2b65712f62.png 285d4eed14.png 302d49efc1.png 0fbbf1548f.png b467416ab9.png d0c4763c9b.png 4024a7e03d.png 9b095d1144.png dd566cf41e.png bdd42e95bb.png da7076f6d4.png 69d62b2f52.png 2baa4cda28.png 18da13aaaf.png 46c21d7d4b.png 706b40bddc.png abaf233b39.png ebae2cdcc7.png 97efe48f6e.png d156089f4a.png ec277da743.png 82b7a32ad4.png 2dc58e4bd0.png 84cee5c038.png 65c87893a0.png 8e48845dd4.png 48726415f8.png ea6dfe38ae.png 57aef5c6c3.png f1e1cbd5b8.png 68724d8662.png cb507d53f7.png 082ea078ea.png b9a6b4b21f.png e66b194457.png 1c45ad9906.png e925b2a8ff.png a9c9b93505.png db2552b1e8.png 06df6aa4bb.png 2d777bcac5.png b68b21f128.png 0e4ed69b55.png 6659f1e7e1.png e3ce4247d8.png a583b90630.png 8a59924259.png e07cd49e84.png a2bca0bbcf.png a470f0c83a.png bb5a0a2be6.png 5a5dea7240.png 54a86e0c5a.png 9051d9037e.png 2937fed09f.png d795565f86.png 99fb331dc9.png d1a34003b1.png 00e6e260a2.png 859c673a95.png 4a822016ff.png 320fb9c41a.png a7ea4ad918.png bf23bdb543.png d7702122e6.png a88b9fb912.png 568e610c43.png 15117177f0.png 6a050e000f.png dfdb8d4571.png 485f0d30ff.png ed4d01e60b.png b8058b581c.png c85d6353df.png 53071b0839.png 2116631809.png 659b1e0690.png 0cc152d572.png a90d339e39.png a17a67f57e.png 585de1481a.png 70cf807d0e.png 4d468ea464.png b54c20b864.png 39fe9cb4e4.png ed898877d1.png eab12b6c0b.png c0a6b5b312.png 6923e04956.png c37134e5b8.png e4ecc82bb4.png 94bcae761a.png 7b10d2ad6a.png 80bded4d93.png 708dcf36f9.png 1bb7369c68.png a1b071d24f.png 959b1ff073.png 47e49cf02a.png 04be99d480.png c5d65cc917.png 964820913b.png f4341b924b.png 5f723327ef.png 637a5ec28d.png 4d1f5bd37e.png 95e69499a8.png 0c5ea2df41.png 16d09f6351.png 0c75a9cbad.png ec18ca6314.png d23d16fa85.png d6ec32a8b3.png 1effba6499.png 659b17c4bd.png 5aeabfc312.png bdf243fb52.png dfb780956c.png 579fb9fac7.png 9930673328.png 0c14b0fe28.png 07c3553ef7.png cbc52ce985.png 31d4b415e4.png 45b8f0ec13.png 2a3db7bdf8.png e4b9664ba5.png b6923d46ee.png ae46eaaee3.png 95d7c67f1a.png 5f80ba82d5.png 13da82c8ae.png faa833d1e6.png 851fcdc053.png a710b672de.png 22aba9c257.png d648667e46.png ec2a46ed6d.png 4be61a973e.png 2097e63334.png ce6e39406d.png 390b6e7e7b.png 17234b98a7.png 3a39bd2a91.png 3c1abef969.png 3bba888579.png 96961227f1.png 5e4f66c987.png 5c06d96310.png bd38ae781d.png a521c311e0.png 61ab0aa78b.png 72328599e2.png bc51796258.png f19734e3a8.png f738309aed.png 490fcd92db.png 86d4be69d2.png c5e3415a42.png b607345314.png d3aba83506.png 85523172e6.png 1fcb42b90e.png 42aa153d94.png 1cfc959ec2.png 77f0e3eadb.png 19b25d6700.png 1db9722702.png 31d640b9b2.png 35f8e59694.png 76784fa72d.png 39438a4c45.png 66b8883dd0.png e066f5d49c.png 5ae1291c95.png 3cea2b2f8b.png 711ef6f24e.png a12f7f7f94.png eb342b28ff.png d5342efd47.png 37c25c3268.png 1b61453b52.png 31221e6d5b.png 976150fcd7.png 3e34b5b49b.png 821c36cd97.png 6172891da4.png 29e9c79a7e.png 7d19a1bc43.png f000d583f9.png e5fd31d394.png 256573c99f.png 7999a4c07a.png 95e790317b.png 5a00950b21.png 0115319420.png 257b9aaf33.png 4b27a19834.png f3c02959b3.png 04710d36cf.png 90c830116a.png 04b029690c.png 4b4b441e64.png 57b2f0c86e.png 700614dfbb.png f38cdb799e.png 1c16231286.png 1d8c40e024.png d69cf8151e.png f928d746c3.png cc636fcb13.png e8bc4c8384.png ff642cbc55.png dc3f33d2ea.png 90e9b53a63.png e2c6d37f9f.png de475737fb.png 44fcf2ebf9.png d8ea97b26c.png c52f664819.png 25386ddea1.png f01d94ac3a.png 2bd82f8fd4.png e9deeee398.png 818ccc0ca7.png 92d1de717f.png 09e6cfad6b.png 4d774cb2a4.png f214e16a78.png 512d8d9997.png 809d3a2b71.png 94c9bffdc4.png e171e6162c.png 55f19d6b76.png de0d58d7b5.png 3e503f55a8.png 6ae09ed91b.png f9fd089684.png 0c7fe0c644.png e6c62abf69.png e48c970217.png 92c77ff4df.png b2d9c9184b.png c2c78b53d6.png 8949175e6f.png ff234af44a.png f7a341bb7a.png 79c7b8ff29.png 5ef842ff3e.png df71d80bdf.png 0e69714d68.png 51c4fbfe63.png 2d3e3db6b9.png 273f74fadf.png 04a5bb16d7.png 88dc124b7f.png c6339fc9f8.png 2374487e5c.png b915b8aa25.png f3e2d515f5.png 7b7ce987a9.png a97cd1d7ab.png fde097daa0.png 2ecd04a9f8.png d14da73251.png bccfd45fab.png e8fda6896b.png 374a1dbf0c.png c80cc9e84e.png 06d9c22d31.png a0fefcdca0.png 0736a1aa17.png 3c3a01dc7a.png e62b69e2d6.png 7e21858e69.png a6c63420b2.png c05c593480.png 9ad6e2b35a.png e775f485b6.png 29d8817f97.png 9427ca3902.png 834a9e2087.png d01a30c77a.png 84480cf944.png 7cf6272d08.png e3a53f0510.png fa14635802.png f004fcafc7.png 42f5dde8ec.png 356a6e85dd.png a2b82c3cf3.png fb5b4462d9.png 305f5d7900.png 19edb31599.png 6e8334b5ce.png 94fd51a14f.png 5377827ce2.png cb9d510ceb.png e907b958e2.png fffd909d0f.png 8b62c26211.png 5d6b433645.png ed53b8fcad.png 903f9f033c.png 8cb2bbf1a8.png 97b7351da7.png 12395f07bf.png 9583b7d310.png 9c76cd7a3b.png 47a6238a64.png a7e5a56e0f.png 45cca8e973.png b55a1e3033.png 58f49bb2a6.png 24c2ef0b97.png 04384ff2b9.png 78c843da8a.png 6db1a21e46.png ba98e2df34.png 536d9ac15f.png 3a76eda882.png 4963db2e0b.png 09ff67448c.png eee314138e.png d4711d9cd4.png 52449a1c2a.png f6f32bb5f5.png a45a69e464.png 05163a6e41.png 221e96f96c.png 471e146748.png 6acd730f72.png f2f5f3d673.png f64b762060.png 423a435241.png 492256412c.png 3476cc2c7c.png 617e3ea776.png a0cc288f83.png 5aec15741f.png 280a7b7630.png 294d7c8fa9.png 7f09587094.png 5fefd5edd1.png b41a0ef572.png eb004aea14.png 7a82502124.png 1261de8951.png ca04c19c0b.png a57f92a611.png b0beff63b4.png b3609791f5.png 8c0d2616e5.png 58bc8d6ba0.png 677e132321.png 8debc4ebc6.png 47e91d98fc.png 9047a592c9.png 2807129884.png 40009f61ce.png 769f0a09b7.png ea79dbd86d.png 29603f9405.png 3d960d5148.png 3496c1d5b3.png df599e40e4.png aa2ab180cd.png 367b744d2d.png b9092f13c7.png f0384deeb7.png 196e901a92.png 130820c014.png 3d18153e16.png 92290c13f0.png ceab85e43a.png 2b8903d2db.png 7b97559200.png 2d05b0403b.png 7b0932f7f9.png 96c83b6822.png e0650ed8bf.png 96030d7569.png 49de37c5b8.png 1d6f51de05.png fe6487ceb1.png b259d12150.png 1744bd61ef.png ab8f26de28.png 43a8e00245.png 6b4bdc9134.png 38bda63402.png 5057536c73.png 4992de1835.png 4389cc59a0.png 3bf1419151.png b2f2f933b7.png 8b80908f1e.png 2c8148ce76.png c87253dfae.png 3297a9816f.png 574c07082c.png 01914d82ca.png ee39078723.png 03dee840bf.png f990b164fd.png de5f1f1e62.png 3a6bc1e413.png 04e5ecfbde.png 8dd3227410.png d98faddff6.png 1af88d781e.png dc59a10de0.png be3696598a.png 1a6ae27d2b.png e6b5506c1f.png 4440f7d174.png db6b84e832.png f5b747d45b.png 3e9fee1df1.png 4a96727bdf.png fbed21a091.png ae9ec40b18.png 6e65695d49.png 651d78e249.png 93d0068f10.png af3015e30b.png ce6760a4f3.png 55cd432cfe.png 8bc33608b6.png a6acbda593.png 594fb5e201.png 00cbbf2293.png 7e37c5b66e.png 9b86b8a5fe.png 9d64f7778a.png 321abb9aa6.png 8bd8257cea.png a1eca69525.png 0dba013816.png 53805fe33b.png e11479e2ef.png 3f58e8ba5a.png 7dea0df8c7.png 6a79ccb43e.png 9a1d9405c1.png 3dc2ae7514.png d11ee7fec1.png d2557e5d59.png 5eef0d1f4d.png 653a53866e.png bfd8b4e975.png 7d35569f4b.png b04510ede2.png 2a18b725e4.png 3924307553.png c165af8d0d.png 7dc633c2c9.png 62a3c1e005.png 7b3f1eaaa6.png 76de859005.png 2964d1edb5.png 038c4d7a3d.png ff82b105a2.png ad38358679.png 72ff77dcdc.png 55283447d6.png 34dba0581e.png 0d8a25ca65.png 4f21ee4e02.png 7c819c29a1.png 7e009749e7.png 6e3d814fd3.png 495424a64b.png c9094061c7.png 1e10c8b214.png df49be5433.png 74477df7f1.png 434551feb4.png 2e4a592cac.png 36bd172c8d.png dab9d0e3e6.png 84cf0b50cf.png de27bef2bf.png 29f66371c7.png 08f5aef292.png fbac994408.png 3198f42cfb.png 5f112087b7.png 09923f804b.png ded4d6422a.png 6efc5fc61d.png b8a9cb770e.png 85d7f53793.png 3a3e8fd696.png e585ec8541.png dab1938acb.png 68a1443ac6.png 6d4ae7243e.png 717270753b.png 5fbff21973.png e6d58ad89b.png c90ad27000.png dd3e93b539.png 930939bcaa.png 461176ae03.png 0d2f16deee.png 6d40520212.png bbae9c3dcc.png 5241080fcb.png d9ab5529da.png 672bb9b070.png fa69566591.png 5d83036e50.png 427e472cf8.png b8ecae8f7f.png 7d65bb33ed.png c8fabb275a.png 58fcc8cbc4.png a4e5bfb182.png fbdd5e45a4.png cd68b00149.png 431012008f.png 61c1a0a4ee.png 05b824cf58.png d8993ae908.png 80bdc2584b.png bb3ef9de05.png d27dc449a5.png 784440cf32.png b13437be49.png 2fe75ba3f9.png fc71babfdf.png e4d6a54b19.png 5b1a3faaa8.png c26cee2f37.png 715dd853a3.png a71cadc1ab.png 73da5d6722.png 60b574ccdd.png 70cf57ee68.png da1b14541c.png b9f6826cda.png a52470ae8e.png ed3d64a782.png caab8d8513.png bbf13ffcbb.png 71890f2e7c.png 227476b140.png 30a5a8d3c5.png 71de4aefac.png 50bf94a59a.png 6de14923ed.png 45bccca47c.png b8aac87d86.png 804c7d7108.png 269dca6e32.png 7e9b6a1687.png f3b0c5b57a.png 6419e5b53f.png 3eff6468cc.png 01495a638f.png b8182ee541.png 6c676d1605.png 0b835fe552.png 538fa5596e.png 091aaece26.png cd42b00c6c.png 4e0acb57df.png e5f5d12e89.png 5ed25d35df.png 983fc78511.png 398a4d0c7f.png 3dbd807584.png 271b6d1519.png 509634d9d9.png 057b1c6840.png 17c6a6e9b8.png ab273f19ff.png 82e87e1ab6.png 9b952b1af0.png 8c1cdc6be2.png 7767f3239d.png 2b125e9fc8.png d20516eb19.png 32f4de545c.png df90d30bf6.png 51a554c73d.png 9f0249442a.png f13198288e.png 70147d1d9d.png e9d149a452.png d7652e36f2.png 6576741772.png da38b07bb1.png ab89a9e4e5.png f6011fc398.png 8851d57f9b.png bf35b1cd7c.png 21c312cfa1.png c6d17f5835.png 8295d7b1ed.png fbea9383e2.png 5e06154276.png 9092dfb9de.png 6e03492fe6.png 8aea6cba17.png 320bf85482.png e9531eada5.png 738671724b.png 157cd8b518.png 961789705f.png 2233e6936c.png 143196b1e8.png d7757dc339.png ae708e6579.png 353e34b6a9.png 1513b19605.png d55dcb72ec.png 67804854cd.png 2a701aa3e7.png 61eb7aa298.png f2d6c1a719.png 158ac29820.png c72ddedc0c.png 2d44cabf72.png ce54f2defa.png 4c429ee782.png e0d61ed3cb.png 41376c4fbe.png 6ad87d8a2d.png 1aef19ae12.png a93e3cdc1d.png 91eca562cd.png b0fa04add4.png 565c15d6b2.png 7e6d80e407.png 4303cf97d3.png 185444ffcf.png 12c17cee12.png 45314d6084.png 9d8178a4cb.png 5bb5684d12.png c25cf4d8e9.png 0d2e0095df.png 038e53260b.png 446509eb39.png 3c0ae755c9.png 783f585c78.png 31c40c5c2a.png f0491dfb86.png fcd907558f.png 88997e61d0.png 5202cbe424.png 6ceb5f2342.png cb992ed293.png 5ab7c36d9b.png 45406c9a5a.png c41bf71d37.png ea97efa26f.png 3f26d3ea52.png a7c9f89610.png 0167d67b9e.png b7fc96f5d6.png eaaa014bcd.png ec4a9e5599.png da679a7f9b.png 8807748bf5.png e01fa7e070.png 0a69d50363.png 9b40ed4c71.png 065dae68d5.png 5e721cd3d9.png cb210acc22.png 14ecb5e60b.png d5f877964c.png 6ca0287c4a.png d5c8c3579c.png 8ee1bbbff2.png c229e55bfa.png d0380e138d.png 20dd18d8cb.png 2e3c7838bb.png ce6314ca42.png 02a73b97e5.png ed30208abd.png 667de59b1a.png 31975a3fc1.png b3e1c43576.png 6591c2f6c8.png 64864b7738.png f5b281f27c.png 71f7ef5864.png 6149ec3408.png 13148c27f8.png 2fcb45c44c.png c009838721.png 937d435c0c.png cebd6f3ebb.png 87ff4a488f.png d0ffb5b3f6.png d56dbda1b5.png f375ddc5a6.png 76d317386a.png e1b169bec4.png 9fffec824a.png b0a5d211a8.png a4f642c2d7.png ada4a5903d.png e6ddf7d21f.png 0f83ae8508.png 80dc850f25.png 859f69af1a.png 528bb36b3b.png 3a63fec26c.png a5dbf312b9.png 9716120e4b.png 97603fdda8.png c999ea6eb4.png 4ce9c87fee.png 03cf2a80bc.png 7208f75841.png fdceac3f62.png 6c29463345.png 87906e4144.png c7fbf93ee8.png 31888f3b13.png b570655083.png 10b99a2679.png fda99f622d.png 0f1bf1af9a.png cf8108a1fc.png 2585d38f47.png 799b58948d.png 104cbe173f.png 29345e1a87.png c2a16e2360.png 47f07fc396.png c0cc9532c4.png 3336643b56.png 4bbf7cc4b9.png 182eb84479.png 2133d8d39f.png 3ab3158a27.png cd7b5459c9.png 188f970073.png 52e6756789.png 4fd13dd205.png 4bc99aed9e.png 034aaba5a3.png 247d730764.png 603069d579.png ffac152437.png 99c1cc31ca.png 718d3ec452.png 6d975190d4.png c3b0fd8a6d.png 15c2b6e55e.png 28c9b3239f.png b39b153e93.png 656973c43c.png 1b6db79ff5.png 0b83548c34.png 4b20e32091.png fa04dab924.png 5445c943f8.png 14b50d2c26.png ef441205b5.png 394070b0b0.png 09bf956831.png 4555a21318.png 6b3f024cad.png 37c8167b81.png 9010e76e79.png 7b54f602e5.png 71737fb196.png 4f34b06dc8.png 06cf6a9e15.png 681612cea3.png 98688a6c7f.png 16531b343c.png 1ce78adad6.png c3825792c5.png 1025f1f9f7.png a9287d0e2d.png a8aa1d5b64.png 082cb33f51.png af3340c64a.png 5d5a0c70a2.png 4098e4f4ef.png 78e09d764b.png fe5227d488.png 4811bce9be.png 6d2b421f7a.png 8869cb02d9.png f5fa8299bc.png 4cfcacd4f9.png 41bf1f313d.png a4f7eb0929.png b3c74119ae.png 73f951b30c.png bce1766212.png af77e1d769.png baa0114aaf.png 82a6a0e66d.png 71150da04b.png 540b08ca10.png 933b9adba0.png 8b00c9309c.png e1aaf1b487.png 60bb53f935.png 51a98a8f3a.png 7d785d5296.png 6aa39d32e5.png 937b4cd8e7.png 6627a74e9c.png 1511f1de49.png 8500564b08.png 408b37703b.png 84f4a771f3.png 21c2d4e863.png 2de086d292.png 35714fa202.png 2f4cdfb568.png 53d9ed7ddc.png 5cf4d33d4f.png 41891c30fa.png 81989809aa.png b82cd81273.png dbcb10c638.png 31cee2e8f0.png 6f9541ff15.png 142c7c5408.png b7af4a57fd.png 37afd06dfa.png 0413ae3f5c.png 6e3a815b3e.png 4edb0938ab.png 33273c4d81.png 2afe092e2c.png 52889bff06.png 11dbf86bab.png 891398cf90.png d88eaf77d3.png 7163dee1f4.png ff5d55d4b6.png 79718d0ce6.png 05572c229f.png b887b3f5dc.png f9d5bb76c5.png 24d4817190.png ffa592312b.png 083ffe7f02.png 20fcf160f4.png 4ec803a4a1.png 6c95a61d2c.png 875052bf6a.png 45aa2ccbfe.png 4bd8042755.png 3540080bfe.png 9b1403e161.png 85d1d6b2cd.png 06decb795c.png 3ce95c74d5.png 9886bf8a44.png c31a3c9ae4.png f6cb4b93e6.png 60135a8a90.png d1aedb7466.png cd52989e69.png 45dc0d5d93.png 835a573b7d.png d9f21e185f.png 1626a286be.png 1fa25802cc.png 8413d342a9.png 6cc3e319bf.png 29f2d6e111.png 70b96ce692.png 3ae6793cf7.png 6456991eb0.png 86f858f81a.png 33b84dc57b.png b6cb1fda08.png 17aabc4f34.png 3b9d95d5df.png b2d2951f0e.png 5cfc14855c.png 0a050d38ca.png 7ee0e76934.png 68a8521c79.png 10cda1078b.png 740f33db4b.png 4e89a48b43.png 29a27c9903.png 4dd47d353e.png 4d0d7b3b8c.png e37a266061.png 32f6748b0a.png 2216d2a75b.png db1c258e8f.png 328183c949.png 6420ece709.png 9bc988c8b7.png 476cd53e02.png af8d5de7eb.png b32be89c4a.png 5064f20af7.png 67686e8e07.png 6d8b46c501.png 3c91c4805d.png 778f031703.png 75dda858fd.png 2f2b8bc0c1.png 8cb3edc93c.png 6e91f1eba3.png 3325f8af22.png 3eeb599831.png 86f1f06094.png f5f9636464.png b774b632f8.png f85d300376.png 9946b858fc.png 2c5fd36516.png 398177485c.png b941c8a655.png d529ba7f74.png edf2445671.png 40278e32e2.png 0e2808a025.png 1822127483.png bbf28ad8f4.png ca4e3b12aa.png 646dc6b247.png b4aff6e970.png e9f338cd6e.png c6b0fcca43.png 013974bce2.png c66e8dcd88.png a76adbbd52.png 4b4bb5ca9a.png 9b303e8370.png 6d0b7e8c5e.png 426cec9dd2.png 73623061fa.png 96798b90f9.png a8f6cd5b49.png e938a48293.png adc6e14121.png d1c8242b80.png 02910e3652.png 3b5774226e.png d649ce6484.png 55bc498d65.png 17c1981f7d.png b72181a9d5.png e162d8e24f.png 7b785380e9.png 71468b522d.png 1963a9e03a.png 80693d458f.png f8d083fbd9.png e3c14583d7.png 7500f695e6.png 85738bfeb5.png 804def1efb.png dfc563f793.png 64dba827d6.png 210c6bf5d2.png 03b8f5bfa7.png 17bfcdb967.png 6f07ae886b.png 499db8dbc2.png a589985aa4.png 4497395e80.png 940eb1bbe4.png 9e2e88c82b.png 3e2d048107.png c2e6f57d03.png 1630eeba83.png bb40ad5b70.png 85c5595dc3.png 6eeddeeb29.png 8fb16c02e4.png e0e56bd515.png 228e88f048.png 821bab3386.png 196e75547a.png 9a5f20c2b6.png 9163f15e89.png 6e262f320f.png 3ae4bfa0de.png 8e45622c55.png 7a86bccee8.png 63f93a4213.png 03a92bda0e.png 3ab1c71dba.png b5e32a1b6f.png c78e071138.png 8016056c46.png 0926af3a6c.png ab85ed0835.png 02c1fb48e4.png c9f84c908b.png cc4153a0ba.png 27c28dd8be.png 3ea3db144d.png 3f358013ac.png 0ffbef2a57.png b24947c8d3.png 58a87efcca.png 7db35be44e.png 6843ce1763.png acaae4b72f.png 5db18c66d8.png e9c2184f8b.png 64a2a50ee8.png cc132b53ec.png 31461f0f03.png dbcc1619f5.png db07e691de.png d625028eb4.png 16fb21800b.png a1d305862c.png a11b83ca27.png aef24f508a.png fa4c444dd5.png fb09c214ae.png 589548425b.png e451d2193d.png f9cc9a649d.png 65839ceeb2.png b2eec54a46.png 58ad3d9083.png 321fd72edc.png a0a978309f.png 0c6874fde9.png 81ede1ca77.png 1a7b40b40e.png 23119af289.png 0dc05f65a2.png 61427e5f8b.png f0b9ed069c.png b16c004483.png db4ad3e61e.png f478171003.png 64f1d0878c.png 30315fb6e8.png c8f08b5891.png 598d720228.png 7551ee0210.png 54463c0f84.png f31f30db2d.png 747924ff6c.png 394956fd49.png 24eb0dbec4.png d81f668af4.png 47285b6e1f.png d006b6ef23.png 3d64b5afb9.png 4540ae2a91.png 162b99d5b6.png b9412c61eb.png 9a354f8017.png 838f5e53b9.png 1e76a9cede.png bc3c918cd4.png ae2db518f3.png 13351e9bc6.png fdec2622ca.png f193ecaa85.png 009bfb3a78.png eeeb536d56.png a79de3a9cd.png e5d4791389.png 66e0cd3d9b.png 793ba9f7d2.png d48134038d.png 30e5c4d227.png 27b98d2fb7.png 79c7997f05.png 0c6e42492c.png 792181c3f1.png ecfb64b43e.png 32968918d9.png c46ec7a3a5.png 7b0f7847a8.png 523c5d756a.png 4a9ca949fa.png 6b74af57ef.png b1144d629d.png d30597f09f.png a447f49818.png af18915f0b.png 5601022a4d.png 6d5ad4ab9e.png b2f93873c6.png 915238dbf7.png 792467eff9.png eed2eb2cd1.png 45b6634d07.png 9a0fef6e76.png 663377db96.png d84d285b26.png d7a43dab4a.png 6a1beb1f77.png 7dd17aac9d.png 4f373d4a73.png 64692bc1de.png f04996aba1.png 3118e18c79.png 0b59f5ec03.png 0c53156b05.png cfd2c7ab97.png 1a8af411c3.png 23b3bd473f.png 3f99903e74.png 752368df10.png 772858e71a.png ad65f9f2c8.png 06fe4d8223.png da75372c30.png 3032b4f8fd.png 3b92f96f2f.png 60969ee8a0.png 390285454f.png d9377ce4f8.png 8e429ed84f.png 99de133bc7.png 4f84cfd807.png ac42154416.png 371bf59030.png 1ef7e65f42.png 7733aab28c.png 761fdaf070.png 31c97009c1.png 5910d039bc.png 88847c22a0.png 6d68b91615.png 3b8c8f0a19.png c3b31898df.png fcb75e949a.png b7eb34da94.png 4b4b7e4655.png cf7ab56ccc.png f905b4ed4a.png 551f9c1379.png 70afc514d2.png 92cef4936f.png b64cdc425f.png c0cda22d64.png 7dd01cb655.png 18ac7a5b88.png 05fb522022.png d377b39581.png 212782d522.png df999cbe7d.png 319872df0a.png b0c68deb98.png fc1b10ee80.png dec41374ce.png cb66ce2ae0.png 190ac23ab2.png 0e9d78f14f.png 67b4e6e068.png 0d1bf337ce.png a8d437f870.png 5602644562.png 1a80491edd.png 6c39cad9de.png 6a4c68f4bc.png 9950526250.png c6b59300c7.png bb4f2ca417.png ac5cd0c053.png 4a4573191e.png b6711aa65b.png 8ed7bbe728.png 2cfa33fde4.png e50a5a077a.png 9ab6cfe256.png 6e00792276.png d0bb00f25e.png bf98f3e3a7.png 641daad2d2.png ee3f606619.png 73788e166d.png 82cf8b58e3.png 0091fb2dab.png 80bdf2dfe0.png 5f37e756a1.png 3e4ea2e9b8.png f33c2ce025.png f6abb2285e.png 76e70c38f6.png 61c5b61567.png ac7e275644.png 14b1c33a62.png 2bd6da4508.png b3a6ed3046.png 1ffaab4396.png 1ac21f6704.png 12e44aaf72.png 32ffc55b56.png 6821a0013a.png ef0bb96dcd.png ae7203cd0d.png 5876dcc00f.png 040e8b3eb6.png ad7d11a9ce.png 041bda3b04.png c30dc2fb88.png 04fe99f3e4.png 0f73683331.png 646bead850.png 950b416f78.png bc19c541c0.png 7a9b7e9d5b.png e61d98500a.png f4297d5e4d.png 20d394d00f.png 270dd2b8e6.png defb3d4896.png 952c9f8a43.png 6b4b989279.png f40ce50235.png 61eddad5ff.png 617af65d86.png f0f1362f19.png 31629cce42.png f1a3d6352e.png 746abb2c3a.png 43fba1a9a4.png 722155ef59.png 7b9bdbea3c.png 3df34446db.png fb0b7686a2.png fb7987693e.png 98c4538e70.png b0a1399f41.png ce5710c27b.png 7d42cc767d.png 62d063baf2.png fe2e88b36d.png 6bd9f7f4c9.png 5848af3f89.png 2a0ae73183.png af03b50e82.png fe87689920.png 91f6bcd7a7.png 24328f0ad1.png a6a674ec87.png ea6937a76e.png 35c527afd0.png 90fd7812ed.png 5349da2c2d.png 804aeabe78.png c86ec557ad.png 54e1508240.png e5a61707cf.png 5628d8d57d.png a4db94dace.png b3b9fd43cc.png 5663471396.png 1be10e344a.png f1ba1f62f3.png c8b32316bd.png f7a539ee62.png 550b360c16.png b61cb2c555.png 0d3eb7681c.png 18f3cb6bd1.png dd535d0e0a.png 162f738a03.png c2b183bdc0.png a524090258.png ddd80e9d54.png af29e02e15.png 96cd0e4cc7.png 01258c92e7.png 89a201b5ff.png 635c1e9055.png f7a9edb985.png f145cf3eb1.png 4bfdc5e5b3.png 4f6c2e18f6.png 7a8d800e83.png 201a189503.png 98be6fe916.png a58b03118a.png 123870a546.png 79f4872925.png 05bfa6624d.png 614dd9f857.png 2e10e5fdf0.png 4b366ad75d.png 15f7a047c7.png 0ba253bf47.png 0afffbf3a7.png 7785879425.png f64705a472.png c9012b5df3.png 743ccf6d5a.png 8cafc8c3f5.png d669ab34d4.png b619b88818.png 2ae74e9ece.png 4db23d2bc3.png bffa15aaa5.png 20128efc40.png 4686d84198.png 210f887ce1.png 175c9c9e62.png 788720abf3.png ece2c5440d.png f3ae873adc.png 320e7851cc.png d054be6e3d.png 8ac7c26b28.png 4fce657ed6.png 0b40a9afe5.png 875170148c.png ce5b9c1de1.png d0f922c629.png 6f334750e4.png ddd6c17de3.png 1b2a33253f.png 5432daa68e.png ff14a3baeb.png 010082e36a.png aadc43bce3.png 69ac72804f.png 5d9d0112ad.png 5a160497a2.png c86cede787.png 2454a76962.png 2999c30683.png 8a394a5c38.png 09ee30a08d.png 5f7859c06f.png 88ff802bf0.png afb3847686.png ce59600cfa.png 736628f96a.png 6959af3cc3.png 6a4a8f9166.png eda924e7dd.png abeec5ed35.png 93506ed6e7.png 495faf2c57.png 59ba060353.png 6e3d4665bd.png 0c16d79223.png f6838859d7.png c638c588fe.png 0d6a468b92.png e7527c0183.png 6e470db51c.png 1ea255084b.png c9454c6638.png 28dc7e6de7.png e9147272b4.png ca06942a59.png 1a12d639de.png 1e4a6b81a3.png 9cea9923bf.png ab40e136cd.png e764cac378.png 0bc80a2050.png 354780e9fb.png f32a360c8b.png 9833bfe671.png feca2858c6.png 6538555893.png 0a66231f08.png 49c0988c19.png 4d6ef1a9bb.png 9e9f0266ea.png f5ab6d0102.png 489b8e8389.png 80666396cb.png 9611bdd831.png 43dc4c8c28.png 0005bb9630.png 871e2a367b.png 20a283cf78.png 7c3a952cf2.png f5e331a0f0.png 5186f6e1b4.png d254cf287c.png 1d8b53d9df.png 138cdd8247.png e619160edb.png 164cf9c566.png 970723f88d.png 3a9c63e8f4.png 781b5a8baf.png 498219f37e.png ea39579316.png bf4ded5e3a.png ad7e806892.png 6032385d55.png 8c55a43029.png 409f102f88.png a58470d2e0.png 50d3daf954.png dfc0a7b323.png 2445bf85b8.png 43d9c911d1.png 42faca9621.png 0f9ef8df38.png 61a0a17dcd.png f7f8a24612.png ec228a0784.png 8942571467.png 369f8a6f01.png 72826bcbb3.png 4e434e64a5.png e760d65679.png 5c9745bcd2.png 88fbee1a2f.png 014df49b3c.png 953761165d.png 027f49e160.png be9f7dc881.png 613bde123c.png a8336f8463.png 3027326497.png a57d19240f.png 4930028223.png b8851182cb.png 3b00ad8dae.png 1513083378.png c79d168bdc.png ad761e92d0.png 8ad6fce1d6.png 35a48ea5cf.png 7c8b940bba.png 90c214f1e5.png cd3dd039a7.png 04697a9083.png b542d75a78.png 237a9c7f4f.png 631a3498d7.png b404ffdbf7.png f306181b5d.png 05e47b3be5.png cb8a681027.png 98765fddfa.png e1f1f79326.png a393f5609b.png 3c246c464d.png 95577ef8f3.png a65fa99532.png 15db56acd5.png d024745342.png a43568e310.png e764404579.png 6937514d1c.png d975321865.png a6ffc65eef.png 491c5dbdf2.png 40db8da030.png ae8be09ef8.png d0a0a50b27.png 97aa1042ad.png 4e0f9ba44c.png 9399b45f19.png 19bd16cc80.png 71f4235df5.png c0b11fc61f.png 8723f2b53b.png 37ab36b8b8.png 5655a238b7.png ecac326167.png 315df3b3ef.png 993edf78fa.png 25055c35c2.png e2cff6312d.png ee13d500a2.png 282f1c2a78.png ab2e576462.png 58160d4f6c.png 19a6580aed.png 0129200dc4.png 6f0d7bdd29.png bafcaf7088.png 3b956837ed.png f413f0ea19.png 8a3932d6f7.png 718f18f71e.png 07143897b2.png 74d5a5c926.png a19987ca28.png e9edc8ee67.png 60baa3002f.png 3a58ed89fe.png 875085ea47.png 29ddc2a2aa.png cb04c4c5a1.png 8582e20d75.png f413fd0931.png ee86e0845f.png 2d65eed666.png 79e00af543.png c9bf1b4bc6.png bcfb588cfb.png 3b77ba573d.png de06dcb997.png 5258e72b4f.png abbfbfc591.png 4030fcfc51.png 6a05025151.png 52551f7a80.png fab01bfcae.png 9f436ce32f.png e9fafd9af3.png 537c57487c.png 13bd6b4cb5.png fb2f5485c7.png 357e13bb04.png f91af813d6.png 0d7993b61d.png 3d0eb2ac5b.png 13f1fec759.png 10947d16b1.png 6becbd1796.png 5dbeace688.png 14d7924ddd.png 64c0dcc319.png 6b45297549.png b7a0e18aa1.png fbc5acbff9.png a7c7cbca6d.png ad14d2413e.png 133c2477d6.png 93f3cf7644.png 63c62f219c.png 9d518b6b65.png 97b71c8c6b.png fedc8a385f.png e002cd7798.png 81e673345b.png 5bc5e4df88.png 1f158e8d68.png 47d9ae7016.png ed249ea79b.png 800d311316.png 98a4f24dcb.png cf14982a21.png b7fdc36c9b.png 71080dbb80.png 6eb2d4d1e3.png a2976c4ec4.png 258e23c0be.png 1917722d17.png cf023db098.png ddb1a59147.png 4a09589ec2.png 8cbe7d29e1.png 7317846e74.png bd8614d181.png d86ca1254a.png 805e8f004a.png c843f11c8a.png 95e0b5a613.png 3a23c0ad1f.png 41da1ab679.png c5a37a86fb.png 71d1424c5e.png 32510ca887.png 7aebf2b39b.png fe2daeb3c0.png 6c41e98267.png 70cb03f04c.png a13ede84dd.png 56441c3a16.png b2bb8b1c2c.png 5caec95eb3.png 4dc26b1265.png 07dafc9877.png b302fbe079.png 041d8acbf6.png 47f405dbf5.png b24c0b91a3.png 90519d19c7.png 0f41fb1404.png d879349c6e.png 146931dd43.png ee8721cc58.png 0881e78cac.png cc924f5758.png 855e5569a9.png b5f1babe63.png bef0bdcde3.png 0c4aea0dc8.png de2758051c.png b9863f5b64.png c7c0ded4b5.png 96065da756.png f8ff7058b6.png cde7db0718.png 35ff3457e7.png 6be54e99b0.png 3474172578.png f90d686e01.png a25158dec8.png a7667efaea.png 29cfb788f9.png ba3441ceef.png 76cc8212dd.png b4d509de34.png c5098d265e.png 7df490b209.png 153fed17c4.png cabc7e9643.png ec3faa8248.png bf9963c402.png c3ef1a2a7a.png 500267ba02.png 195420ac11.png a371ec6aee.png fee1806de8.png fa74fdc04c.png 2570a7d454.png 9619b76e6f.png 1c34dafbcc.png 535eb2e821.png 129f66cf0b.png 8f6b83329f.png 4995af5fe3.png 1649955714.png b74fcab200.png d8eefce4ca.png 09f5a0410c.png 3746667eb4.png 8ad317659a.png fe34a95b4d.png cb8ed909f8.png ab3db522bd.png de2a295cb6.png 95e3027425.png 3b5d5dd52b.png 5395ef1290.png b69229dd1a.png cdb1d2185f.png 3d84ed9c15.png cf8acde8a6.png ee113db06a.png 7a90f87b2f.png 24157bdeeb.png 8526b93268.png b1fcf57156.png a28b050491.png 34009c8c2e.png 6b67b187e3.png 444d0d46d3.png bc8ee4cf71.png 7b72683a91.png 75b33b09d0.png 61772569c7.png f73e93ed41.png 5d98069797.png a265577181.png 3f37d8bfd6.png c864432114.png 7d2561517f.png 59dde43449.png 9b9c2086f4.png 0e90fb8fc6.png 6c6f886709.png c4a70f7cba.png fd35db589d.png 3371fb06cb.png a0d21fb232.png c58b431079.png 09821df016.png a62e6bb195.png 7fbc88375b.png 79bb9dc447.png 37377158c5.png b7bdbc58cd.png f18d49b870.png f4c8e27cbb.png 1d614f22d8.png e58d16b268.png de6e1b4095.png 215eaca54a.png e5121874bb.png 916e95dae3.png ae807d587a.png fcf64355cc.png e19a8ccce6.png 72bb7e268d.png 95b0e08307.png e59cd0d10e.png e36cafd036.png 9931dd3141.png 239a80d29f.png d6b9a9ab7e.png 2ebc20ce2a.png 3bbbe5e44d.png 154079ce60.png ee63fc4ac8.png 1afb60e200.png 1064076633.png 9deb934708.png cc4a7f0884.png 80ec035d24.png e733c8e845.png eba212cf18.png f7e09f79e1.png efc114a3d1.png 9e31e1c64f.png adae2748c1.png 4c5937c9e2.png 69bc7087d5.png e0bd8e545c.png 5394610aed.png 48a18e2b84.png a5822773db.png 16a231bd69.png 15a4e9864c.png fe1ab48d73.png 827360080a.png b31ed95288.png 7a88625b83.png a97deaf198.png 7651ea8aa4.png 09fbbb4b20.png fec5331bb4.png ca509cfd78.png 8599321bef.png 64a02779cc.png 18cd26bc05.png 10af7026ff.png ecf1ba6ab9.png 03c0db5f66.png c5843a2b20.png f27a3ca60e.png 39ae6fcec8.png a369e4ece1.png 3a10265232.png f784443dc3.png 1c674cc105.png b5cb0a5337.png 2dc9e78155.png 2ebc0fb07c.png 930e785c7d.png 4db87ce39b.png d4c351a04c.png 292ea3b61f.png 6663d5f688.png 050f3600c1.png fcaa76df64.png 27c2b373be.png 5f41db0529.png e12c5719e9.png a7b5999db2.png 143ef299ab.png 2a7b5e1f16.png 09a2862301.png c5592544a0.png 6ded3d4b61.png 9de7ed8672.png 81ad4fed2b.png c0be35aea2.png 78a8a60bde.png ccd4f37dae.png 9d7815c64e.png 5171c905da.png 94cb90a273.png 169ef6df9c.png f5648f98db.png bf0c510431.png cf38172321.png bcb40fa449.png d07cc055fa.png 93d3950d7b.png ab90b80524.png 4ebe8a59b6.png dca68fd494.png 24025d965a.png e0eb2e95c3.png 24e327c455.png 65e9989c7b.png e35d17412e.png c17e3409af.png 26e7c4a304.png b2afc5f0b4.png 2a6d18ab5d.png c1335a0107.png eb4d13433b.png aedd098370.png 2862c77d0c.png 377b6c18d5.png 3c50ddbc65.png 7bab31366e.png 4cf7f2cbc9.png a3a8190a03.png 7e3f31ef05.png 3791842a6d.png ff08bceaf5.png 0f19e90f78.png b96b1971eb.png 3d2bc98c66.png 38a5cc707d.png bab4e6842d.png 0c4b3b3838.png 7e84c340bd.png 4a2c93f934.png 3e9e8b4fc3.png 9a32f8d94c.png 826bb24d25.png 723124abad.png dbdc2b5730.png 364c09b563.png d8f465c713.png bd8c036b93.png 937ac0c55c.png 9010a05d5e.png e9d8c832f0.png d7778398ed.png c8ea9fc5cb.png d5a82ebebf.png 25cc21facb.png c4e6a80118.png 08aa284d8a.png a6a0885ac9.png b54c9cc80b.png e6d88fe842.png dcaa2f7dec.png e141a12073.png ae4feae4ac.png 8d9905f7d5.png 5fe816a330.png 6c16057cd7.png becb8900ea.png 3be7193c50.png 90912de036.png 3403f634c5.png b398085048.png 740caf5038.png 3542a81a70.png 1f83bc94df.png af1d47494c.png 4c48b962ff.png 50e3e10afc.png 196b082463.png d782a6ea7d.png c8861d0d75.png c73ac8fd67.png 3c4eb3116f.png 3a45a51f21.png eddd90bd4a.png 2822fd3839.png bdbe57a505.png bcadb2743b.png 580a66f59a.png e7688312ec.png ab6a1be5d9.png 9a6aec2179.png 26fa565501.png 307d14d721.png 7f9e61c079.png 4ad00e8b5b.png b696d70c72.png ae36f17301.png c279e2e81b.png 8d0c065461.png f62cb9db70.png b3e666b13e.png 6654fbf093.png ec244d46b5.png a0d9eb23e1.png a4928cc0c4.png e69c6b5d79.png 7ba5fb76a8.png dceb326aee.png c4b9e32030.png 97c5934455.png 63c0eff552.png ed8fe4f4e0.png 3b6e0e45c7.png 0d01cacbc9.png c55f5b7931.png 699169e3a1.png a5f0c8b6f8.png 51a41b9281.png 7ca96e0c9f.png 069b571f97.png 91115cfc77.png bee9d5af54.png e3ccf38664.png aa82830b4f.png e7c396bf28.png 72aea0aaef.png 231262842e.png 2071f9850b.png a0891f7e3e.png 38a53b6b7c.png 156be6765a.png bdfae19bec.png 5fbcb45ed1.png ffa75fd526.png 196976ff21.png 3d897625dd.png 0aa3bfe21d.png 32368fa1a5.png c5f6d81074.png 5c8f7b5ec8.png 8bd6e290b2.png 758c74c39e.png d3acb2d561.png 55461699f5.png 58ef954a94.png bb3686fb3d.png 4ba3207c38.png 2cb5045cba.png 34eff695a2.png 2d5846820b.png f597d72b6d.png fcac5cb6d1.png 871aacfc7f.png 06e0ccbc02.png ef6a3bd80c.png 99b6682fcc.png 04d2ead1b4.png e8bec3476b.png 0794c37f5a.png d27ceec04a.png e7d582936b.png 5f5445bcd8.png e9b058f0f0.png 0573ed7a7b.png 357ce270a6.png 854e676f6d.png 3bacefecc1.png 3c4df17a32.png 016a8b9b9a.png 9e7a9ccc6f.png 070da35501.png e5333c6911.png 76ac440877.png 0a9fc67f17.png 97cef77fa4.png baf857f245.png 419e419f89.png 2ce0ef6162.png 7f9bb4a93a.png 2001dfd850.png ad883213d2.png 7f22aad9b8.png b5a15d7bf1.png b1d7dde27b.png de87d19851.png 2017a57511.png 76079d0bf1.png 9c276c8606.png 6a2a9f1e1d.png e46324b167.png 30e154843b.png dec7f76698.png efec662dc1.png d4a60589bb.png 31a30113b3.png 0d0a173bfe.png 59f0bb402e.png ed81af7f86.png 0b16ac0482.png 53289da645.png 9654d1a56c.png 3b2e64b4bb.png 17ac6c1165.png 165c8b1f14.png 69a3b60b11.png 0a13effcb6.png 1356069815.png c4d777c228.png cd570d2764.png 6c705b0da4.png b1cb5be1ce.png ee468f7195.png 4152525251.png 0d265e3a4c.png ed6bee376d.png 448427097b.png 7c18c8575c.png 38ea88abd7.png b5af74d77f.png 614270933e.png 1ecbdbe10f.png e556a7c183.png 533383b680.png bad4625e76.png 8ddf87b5bd.png 853d9832a2.png 2c2e72caf5.png c6ed46bb39.png 3ec16830a7.png 186ab92516.png 0b1f1059ca.png bbb568fb20.png 0adb8d3c2c.png 95e0620119.png a6c55fe3af.png b5c4939835.png adeb60c15b.png 0113339745.png a7a4bdce55.png 94ca0e01a0.png 99525132fd.png 18914f0797.png 1aed9a9daa.png 9f081a61d7.png 8449ff9997.png 3a0e15d4bc.png 0cfa7b3b64.png 141495f4b1.png be9c6e9b7f.png 1e95bad8bb.png bfd3a072a8.png 9bd1fdb232.png c866a1e2e0.png c91958a03b.png 3138069557.png 633b6d6ec4.png 76e19598b4.png 2fafa3db1a.png b7ed416e3c.png ef4254154d.png 9edcfbe543.png d168218bac.png 0d2238f294.png 94cf1a511f.png 25567a3210.png 95037a00f7.png 1c23bcab44.png 751248efa5.png e38299f1fc.png 9537c49d89.png 781c32484c.png 265f09083e.png ace1b850fd.png 92cb8028e8.png 86f33178d1.png d84b3632d2.png cb707b00e6.png 1e4fcfb2f9.png 13d89f8afb.png e2ca341f4d.png a40e944791.png 2a7d747db0.png 6a5070c07d.png 4478a2a1e0.png 014cc353bd.png 99b014b973.png d1cfe0c1f6.png a65ba359fa.png f9becf46d4.png 9da3f4e2ff.png 34b8d44aef.png 2e0ae8fa98.png 5cee7efb7a.png 31762a217d.png 7310863c7b.png 3e34c60f5f.png 929322a227.png 7e42729efd.png 285c426094.png 50bc1a2eb4.png a1efe19ede.png 03b4f1dc2a.png acdec8b46c.png f4fee61024.png 71d34fc906.png a37df3d8bc.png 2c9cb402d7.png e8d4c1d49b.png c0240a49cb.png 51df82c979.png da3e6f8513.png 9b10a74575.png c52faa0d3a.png e2b86b766e.png 4d137bd91d.png 538144a394.png df8f7ad6a1.png 7dad1b3905.png 2c47d41861.png 372df8e65c.png ce3d0fa3fa.png cc1b695b2c.png e155c42993.png 03f4b4a6ce.png 54dc8e1099.png e855b705bc.png 355952537c.png 44940466b6.png 2e21ca5ebe.png 22fe529e57.png 9c58e81c46.png e9497af3d7.png 01926f809a.png 861442da79.png 94500b7464.png 20dd6bc2ff.png 3c04beaa5b.png 185ff08d47.png 5a2f0ee267.png 6c39c17251.png 649d547157.png db8b480f5f.png 8cc037cd28.png 7e777df9d5.png b6d738b57b.png 5ae05ab401.png a1323b0391.png c8eba9e456.png 6868649862.png 6798e841e7.png 45a197485c.png 0aedf52acf.png 3627e1a769.png e90e55d803.png 91a92088b4.png 291464ee6d.png 6f8f441aaa.png ccd5f44474.png c6aaba4d7e.png 0d9250fea0.png 9461c11c60.png 642c2750e3.png 7fe5c45bd7.png 30cfe8210b.png 83711cf4a8.png 07a70fdbf3.png bd5c8feb85.png bef690a9ee.png 41dca1ffb2.png b1ba475d8d.png 4572bc04b2.png 6a8f9bd70a.png 5ad24ea101.png 6fb29028b3.png b814b1151c.png 73d6a58df1.png 7f43266580.png 3fe3373b67.png 754f34301c.png 7234856751.png 717bd5d6b1.png d4db8ada5e.png 8cf16aa0f5.png fc98189a79.png 87c2c8d1bb.png 5804b2ef80.png 3c95ea6205.png 348b3df20a.png f3fb50e182.png 07e48a0c94.png 610a3254fc.png fa233440c7.png 3c9c8cdc54.png aac2d24fd7.png a971d2ae53.png b0e3178d6f.png 0703c49856.png a25e0da562.png 9465348644.png 9e45ead18b.png db99ed23d2.png 2ecfd04874.png 40d925130f.png 29878a94ca.png c65a9fa7e1.png 84634ba306.png 782dced32d.png ab61a1c6b8.png d1ab12608e.png 0570579cc9.png bfbe6491cb.png 6edecbefa0.png 79a4692349.png 5e41dd0388.png 7eab4d8284.png 31609e30ad.png 7712c705f8.png 804580b1af.png 70958cacd4.png f0e3f4c0ad.png d8b68009d5.png 7fff116e01.png 424d862bcc.png f0ffa23ff8.png 1b70c24eb0.png 6131d2d8b3.png 17e8052ff2.png 6c81929afd.png 7e02747598.png 263c4fdbda.png 2bca466c25.png da65890bbb.png 70b3951b2f.png 8a2904c3aa.png 1d660098ac.png f7c8709aad.png 55f39afbe2.png 36e1354d65.png e8799c2322.png f716197b94.png a93060eb0d.png e6f52ddb72.png 8534d4dfec.png f12a8f2716.png 9cccb3141e.png a922b44416.png ee5113e6a0.png 37f1f5388e.png 1adcc5d526.png af45265429.png b9fbc53c1e.png 92497ac74d.png 3e70579f6a.png d7ca0bfe02.png 175ad73f3a.png fb90ccc9c1.png e62cc3f52d.png 30b8d8ed35.png ec7745d84b.png 59c6b08391.png ed73eb3bbb.png f6b8b2edef.png c5eb095a74.png 515b9e1052.png 9bc0027019.png 14566568d9.png edc16adc35.png 466a5efde6.png ee9f7913a1.png 4a3f525526.png 048b6423d4.png 061ff2990f.png 33225bdb83.png c84e06f60f.png 3d414f6b50.png f61edc2659.png 4228ad4f1a.png 7d0c3ea808.png cb6e524a1a.png 92deb56177.png 92ad1bf3e3.png e3e09fce08.png e3131891f8.png 6c9c69cf63.png 97363b2f20.png a54bf46d21.png 4153eb92e6.png de693bd53a.png 23d79ceec4.png 6ea0a105e6.png e32a58e85d.png 74d53376f9.png bc15e4ac18.png 1a73abcf3e.png 6f7396cb07.png 535920edd3.png 082041a8eb.png 486377874d.png 342e683405.png b013de1e71.png 510097c524.png b20787e2e7.png 0291e643ee.png 89a0972631.png 12536382c6.png 92cfea3778.png 4d5b2c8fe7.png ece4d1d4bc.png cf4daafaff.png 211fab5111.png da4e06f9b5.png 873df4c341.png cf8042ccb0.png fea53bcb0c.png 4881a4f71f.png 3c8cf08665.png 2ababa7cf5.png 288c260e08.png b74e810872.png 6d0a23599d.png a8afc6de39.png 6b13e87edf.png b180ac0113.png f42f9a65c3.png 050bf9ca30.png f01741e3fb.png 4f18b39baa.png f11db4f38a.png 805a279a36.png d8c4b4d618.png 7e9501ad1c.png a7fdcba6e8.png 75277c554d.png ff47f2a6f2.png 23f27e6704.png bb73a9de10.png b49666ccc4.png e99311dcb3.png 81545f724c.png 2c55aedecd.png bb8a7805be.png e109e2dc76.png aacf648c4b.png 676b7b2d48.png fce095c11b.png c5f83feb7d.png 72d5769c67.png 8d5787b7f0.png 4235358bc3.png 39579da136.png ad6a8ffd03.png 0b4d1f5071.png c7f37af819.png 25ecdbf1e2.png 773d6d6367.png 24554f2d85.png 22ef99e229.png 6a2dd17071.png 8db0766923.png 7482e0c304.png 5deab3e059.png 4d4db48d0d.png 9911b2b904.png 49301c781c.png fa56b04a29.png 9e6b377ea4.png bfecadcc92.png 391aa43e9d.png ff07b183f1.png 4f28c879e1.png c11adadc15.png 2cc1211c36.png 495b31555e.png 37ddf7de3c.png ab1de6f41d.png 866cbcc009.png 2b34eb8436.png 44a268d228.png 2eaf33b9f0.png ea69f29606.png e50212245b.png dcbfe835ec.png d56b977756.png 7eff5ec2dd.png ac4368e97d.png 3d05dc9c29.png 5fafc03e52.png db9008cc91.png a78aa61c59.png a5c44e49ba.png 25fcee37d1.png b6bef2058c.png 86d8cd13ac.png 9c36db226b.png d1fb1a76f2.png 78f3b18d4f.png 04306197e8.png 9337b5e168.png 56d842da83.png bb77421973.png 38e744be5e.png fa1edfd24c.png 2794d6bb71.png d107a8e18e.png 2cd6db6fcd.png 025f694e91.png 29bc65465e.png dc079bad31.png cbc13d1a01.png dd475f0405.png 2fc2b3f3d8.png 69f188eb44.png bb6a94ef1a.png 5534b178f4.png 3f88795b50.png 3ab7b7d831.png 722e556818.png 64c875c36e.png 7bee8e1e41.png f8d3fb6b13.png 267e4768a6.png 0b9fbd9b42.png 01ea536900.png f7234bb47d.png 71a8710bfe.png aa3289dd48.png 0b2a0711a2.png 64ee4cf22b.png 3d796eaf07.png 2f50fdcd27.png 226c8cb7ea.png 45b943d358.png bc606fc1ec.png 6134054093.png e7489b0c3c.png f385ab1b8a.png 558cad1501.png efd8613b2d.png 2c8a53b559.png 47e2eda9d4.png 8ef9856c81.png a442c472c5.png 9595247472.png 0f9ca6c340.png b8a065e744.png 36886c22c7.png 3a828fd486.png 7dc2f2afb6.png 2a0c638678.png fecda8c43c.png 59a20a914e.png 67efef3228.png 32b4371321.png 6445eace2c.png d298918b62.png 8ba86dc9c6.png a41685b927.png 6f5eebb896.png 5ef61f604d.png 124a6c6989.png 760173ca87.png 7d420cc2d4.png 6047a56db1.png d6cfbda4bf.png b3cbe4ea5d.png c34d5dfb1d.png ee0839ebf5.png 7cdd7df705.png 2163aa947a.png a609f4096e.png 20676ad11f.png 5338d62f75.png d3247e8f62.png a4db311648.png c2ff5a5721.png 8816f6d638.png 74361fb662.png 1f17c6232a.png be38c07458.png 5a503228eb.png a7a29c02d9.png 2c1eaa1a47.png 39d6fbba1b.png 2dcae23744.png b244d7991e.png dcdb96f81a.png 817a69e036.png 63987c709a.png 1b279deb93.png 280150526a.png 3aad1de5ac.png 61d395dbd4.png 941c82187f.png 80bc3aa015.png 760c2b68cf.png a5291b23f1.png c19963fb19.png 8be32a53af.png 961da31e2d.png 33be55293b.png 1c298a2807.png baca1f1596.png 6fcb932d11.png 3548f9bbca.png 8511455765.png 790e72ed9f.png 3a7868e7e4.png 4ffb50da29.png 92caf3281a.png ad2736fbd3.png 4c43b24562.png ccd33818b2.png 7fa12eba13.png b397172c0c.png de1d3a9266.png e45d4eb76a.png 0823602363.png 715df66304.png 545b319e46.png 966bf8fd8b.png d2c8d1b1d3.png 8688b0a79c.png 63c8f10d71.png 48a0396892.png f14ba9dae4.png c8b6b2c92e.png 20792970f8.png 14af3853d2.png f96854d4b7.png 456019cf5f.png a4b5244207.png 9cf74c6432.png 6519dfb0ad.png 6f5da258a5.png 76695059e8.png f4ba0ceaa9.png 90b140c01e.png 785a5c800f.png 25da96a64b.png f55a5f089d.png 22e67f017d.png f330cc6dac.png d446b467a4.png 52b4fe7246.png 50563e717b.png b1e6235974.png b5469f2eb9.png 8b2a9f576a.png 986d0353be.png 91cae16c03.png 8920afbcd2.png 3f277a3bb2.png a4bf75108b.png 38e9ea8346.png 271b964887.png 2abbb11546.png fea15039a7.png 90eef5ba6a.png 1053f64ac9.png 048763f628.png bbcd7567ee.png a7434c600a.png 5f487741b7.png 19dc3b6402.png 715e37b25b.png b805aaf6ed.png 14ab406aff.png 9a9afab314.png 60a54aae83.png 826805973e.png e15d1d1c7d.png aed7e87d02.png 615b89367a.png 609d7d1c49.png 2df90133e5.png 6c2c6de49a.png d6ad336745.png 45e6edb850.png 44ac304502.png 2e10314df1.png b19db02e8e.png fced196fe6.png e563ae7e9c.png 9d567894cb.png cbd2213768.png 1190a333a3.png 7b9fe6b1b3.png 3011a7f48d.png 810e964fb7.png e06234311a.png 5d1be3b238.png 56e6b6e780.png ad0bb529b5.png 9791e4eea4.png afca9aebdb.png 0267db6d11.png a77029244a.png 60738ba31e.png d588077d84.png 42a7f9ac30.png c9023ac460.png 1d6a8f9dcc.png b46c37a0a2.png cb956d972a.png 3c58a45fc6.png 960a4b6a0e.png fdb2660fd9.png 0094822667.png eb46e70089.png 9ddf722913.png 4899b0b50f.png cd260624b5.png a05dea8cff.png 9d31575469.png 2319827c36.png 1b1bf5bd6b.png 23606093d7.png a964a0f499.png 03672c1b75.png 6c5770c91c.png 51f091af03.png ac9cb56c91.png 89ad7bca6d.png 4fcfcdafb4.png c2d0892947.png 3d64a3515d.png 2ed7843982.png 6d42396edf.png e1d6f165cc.png 4e502a4a1f.png 0a194d3828.png 58cb646a9b.png 0ce2690857.png a2d7f0563a.png 6ca8842553.png 5b6aa79adc.png 0e37560ba9.png 5e583467a8.png c9005cebc8.png c06acdcf08.png 4a07a46b1d.png 2849772dd6.png d830c44d12.png 065c07cc06.png f9193e9a6d.png 58627a9dba.png af7cdf8534.png 6997ae1756.png d22f0a172a.png e48aff427f.png 0c44f43875.png d8da34b265.png fb5c32dad7.png 68aa2f3bf4.png ba3441fabe.png 7ca695f191.png aa649ae84e.png c80354dce7.png 0d0a5591c7.png cb79c2c1e3.png 4d3a5d287e.png ff7e13c3c5.png ce13104347.png fa899a655b.png a670e833a4.png 77e92f7157.png ca8b323d7d.png 189dcac15c.png 1c9a942d22.png 092c6bc422.png 632d03fc18.png 8865bb8294.png 2b2cafa2f0.png dd65f1856b.png 66120fc984.png 93ae9f8df9.png 7643966f2f.png 9641c4ccf1.png fadacca720.png 4e6fd7ab9c.png 930666ce82.png 4dc47d5ffd.png 4b07eed60b.png d308b0b2aa.png 91f656f295.png a1cf9fdfb9.png 72606ea7e2.png 9b97dee78e.png fb56c30236.png 9617049802.png 5acfbf7ae1.png c09b502837.png 4c0f207a50.png 77b07e34fc.png ef00c008bc.png be4a1be61e.png 043bcccc79.png 2d0eaa0a25.png 4e5a439e1c.png 878d489fa1.png ac90614072.png ae4c9f8061.png f025797d80.png fac01da8d0.png 677149a1a7.png 6dc54e0021.png 38daf12dba.png 728b34e175.png 5bb0dceac1.png dc690b4c89.png bf92688cf3.png 9d4c306750.png f8ae2a094d.png a9066a933d.png 07fc2c8e9a.png 6b8b1e7ad6.png 3c89b5b635.png 4f136093cb.png e64b6d27bf.png c0ca73758a.png 5ef14acc13.png d6275b7ae5.png 6677cfe3c6.png 608e51e49b.png eba8908805.png f83ecd0d61.png 10bb0dfced.png 10fe79fb2e.png 721b6d7dda.png 990d808b85.png 60b08464de.png cd48ef3def.png b4602ed79f.png a6192703d8.png 6754a6fdac.png 364b6ecf01.png fa87eb3962.png bd9e699850.png f069ae9d86.png eb4bc6e2d6.png e671d3f744.png 3c0b4f4c0e.png 6aa0d8db82.png 53fb6926f1.png b148e3561f.png 51ad23de04.png e37551bed6.png f756a811de.png bb7ff4c697.png da4016987e.png d76292283c.png 399f7b1816.png 6e86ef999f.png 2fdc5ea9d3.png 37db34423c.png a35cab481b.png e2623063bb.png 5157fb22d8.png ba0b91bf45.png d6cae22fc0.png 8782cc7732.png 508213f8ca.png 05e8012e5e.png 6a484cdfa8.png c003af5c7d.png dbec4fe1c5.png 689a03ea18.png 4bef5a7d3a.png 0be104dd37.png 21120f34d4.png 989a91d6ab.png 403b12a81f.png da0338c297.png 80f65d6da6.png 066c01d461.png 3d653d9577.png e162057e32.png 97e2dc7222.png e93981eb89.png 8d5cca7374.png 7bf748aa2b.png 567df9b888.png 3e72a48ef4.png 5cfcd47740.png 61991ac001.png 9ba1866dfa.png 2ed02fc499.png 7f8df64318.png cff4eaf93f.png edc0dc3a4f.png 0c6036a506.png e53f18894a.png 436aaf7e67.png 973fa28ef3.png 00c6225718.png 24caedea87.png 2d6d0b8ed3.png 3dff1a7114.png 2c76837632.png fa0beb5007.png f3df114520.png 15a7e201ca.png 0e57d9d4c9.png 7529b6d062.png 6d3a5ecdab.png 075c30e2f5.png cb8d49e61d.png f89138fa75.png 173073f1c8.png 59f63d1a95.png 02208cc8e1.png 03933bbd6d.png 510e8c243a.png 4025c0ac8e.png e05b637f1c.png bf18760706.png aebf30c3c7.png a527fe6bd1.png 7cb65cc6ea.png 8f7ad537ab.png c0cf5a03ea.png 988251c854.png 862eb1262d.png 11fe4dca71.png 4b3f1d969f.png 22ca08b636.png d18868570d.png 0cb8a3d070.png d3a7f52f0a.png 3245d14eee.png f1c3f0c377.png f6c03c0af4.png 426e71086b.png cf5dcf33f2.png af3bc2fb94.png 1f7f415bed.png 75dda4f3d6.png cb271e243d.png 4cded6760d.png 982eb40781.png d33ac09d91.png 42bafd5bec.png 010452a624.png cf3c075df1.png 6c33bebba4.png 0fd7ee2ea9.png e4b6946a28.png f2597ddd76.png 60affd7e45.png 7d9b2f9402.png 8bc62bdef7.png ed2151b47c.png 86d3b7c932.png 32c6df82a7.png 35155f4bb1.png 4358e27e18.png 351d8ccfd9.png d2164759b2.png 20d90748b2.png fe9ef2e02d.png ae13bcc892.png 4b643eb181.png 8f29c5d348.png 707ae290b6.png c551ed5fad.png 75f421cca0.png 509e612741.png e67ad4fc61.png 4e80e2cc2c.png babddbeedb.png f29d14411d.png 184a687046.png ffc8978fd2.png 050da9c564.png aad709fe6f.png df72029e4e.png fa3575af98.png a1bd5af287.png a1465a9036.png c8f06b6aa5.png 2efd3776d7.png c195df04f5.png 1559e04eec.png 059ae59b4f.png 72f5a4b1f0.png 562f848c07.png 6efd749560.png f43882a92c.png 8fc3eccd37.png 3108f0bfec.png d17759d2d1.png 651873c256.png 62ab055b81.png be9cbe601e.png 41e672b66d.png 2fd67fc61d.png ffc7accfe2.png b46364e795.png a5fc503220.png a84bb18e9f.png fa93747e87.png 3fd3788e31.png 3255c8a764.png 14353ee720.png cabcae01fa.png f6c2cf9470.png a2ad71b576.png 71cd2e2d3d.png 616ef89f45.png 6fe5709361.png 8f1649cfba.png 5a1f5d188d.png 97381917c6.png ff7a7f0d93.png b465487b3e.png 34a2e84c01.png 9fb88ef17c.png 035922489b.png cae5f3c6fa.png 7cdc7ed0b9.png 2b65f74905.png 2b4c4aeecc.png bc2160ec16.png 9ef54fa6eb.png c47b1ac061.png 3ed7b7577b.png 25b466a5dd.png 065d95e8dc.png fdcf50e18a.png 3de4ee4e0c.png 71c0f47b6c.png 5436f8e94e.png caeaa21d24.png ca9f801c0a.png 25fd997ffa.png 87ded295b9.png 10dc83d62f.png 4ea67ddd37.png a6b21886fa.png fc244e24dd.png e735f7b212.png a05a91dc20.png bd7f4cb2c4.png 768b7a5955.png 13df1a9d29.png a81b4d2453.png 73547e4381.png 40c65da2ad.png 3a174d4c0b.png ecd4c52bd7.png 50fbd415fe.png d9f9f7ba0d.png df8ebf4571.png 083c487e4a.png 893f6e0f7f.png 69dde91f51.png 49adbea04a.png 3eefb6f02d.png 343a049d60.png 36dcec0996.png 784d0bfad7.png a4fec99d30.png b7b72a69d1.png 22f1fcd47e.png a1abc4d779.png 97ab9d8f26.png 5e5447c74c.png 48b79d6237.png 3c937cd300.png 538bfcfbef.png 5f55c759cc.png 0ad7dd5b44.png 581430fbf1.png c752672e83.png d106946488.png c593c4a497.png bc6c1c7006.png 838e2cfbb1.png 6902873ebf.png 22b3c34606.png ffa51f1bc4.png 277bd3a647.png 0ace75e142.png 5320f9f579.png 60e40140e7.png 50e4b38d46.png 38599bb2b5.png 4031759c78.png bb62954978.png a43ca4f01d.png 56babd544c.png 7bf9ae630f.png 472d0bfdce.png 821c0444b3.png 2c38be5eea.png 9029480222.png 781ea1465f.png f0e2b7c039.png 1b44199942.png d89411d9d1.png 4f718f6704.png 8e6a55c1e7.png 4a0a6965fa.png 356f233d08.png 82385cd8e9.png dc1ec1396e.png 947bd72542.png ef449747d5.png c96eb8eee8.png 7551f356ce.png 540c76e5bc.png c2879bc657.png 24af93594a.png 4d808c34c8.png 1602c8b05b.png 558c857cd1.png 88362ab4e5.png 6a9c9598eb.png 76990c9738.png dd01adda98.png 01f91c6197.png 0bbaa6d56a.png c4d31c5319.png 384a44c635.png 862ad92176.png 0b4b5e2bb1.png 174bc625a0.png fb8cd151ce.png f01ab39d6f.png 15cc715515.png 17cc9250e9.png ab2670448a.png 26943026b5.png 221f271d8a.png c5dbddb17e.png 45b110b2d7.png e4b76c6f69.png 0d3dd984a6.png 66fca3e5c6.png 4bd819a267.png 0854a2336d.png cf8ad2b1eb.png 50acc0ee96.png cbe5d89ffc.png 573dad0ffb.png 85f4838aec.png a056a19d45.png ed6c8fc9be.png a7ec866668.png 84c15cdca0.png 70c40f648b.png 5eafa5297b.png 5ef4baab15.png 686437c2cb.png 57e8104bca.png 54964f9bb6.png cc45eeeafb.png 6bcf6c19bb.png c3c25408ae.png 98af17c0ff.png 0460ed00e4.png 9e28ecb2b1.png f04de5e206.png 46ce54f66d.png 60bdccece7.png 76ff83530d.png 0623c74e99.png 6d0ea586a4.png d87eca88a6.png a2e625f222.png 92357f8a9c.png c6650767c2.png cecf808839.png 3484c36b51.png da1577ebcd.png bcae4cc8d2.png db79147c92.png 604dafb545.png ab647410b9.png 9e4e6733bc.png adc797b5b9.png 35f233e10a.png 30b166ac76.png 6ed4e5215a.png de54a0fc4e.png b13910ee1b.png 4bbeaf32f1.png 89e3fc01e4.png b50aa287f2.png faa76d8a7c.png 103811d8af.png 9c2cab0be5.png 901cf47850.png e7a09512ea.png c7dbcf550d.png fc6750f468.png 4edca0711e.png 48ca300f39.png 580172eb67.png b08170c5f3.png 76df3b1845.png da07ac2a52.png cde189305a.png 35856d2bdf.png 5ea1fe5010.png b7275ec255.png 9ce70fe066.png 03f991ef8f.png 7fa74fdeba.png e599fabb46.png 153558a258.png aa88fc4124.png 6a06625d6a.png dc7da3a2cc.png c5a4dbdd1a.png a611a75229.png 1a14ae3468.png 73a1614bea.png 0e9c3b837b.png b6100c2809.png ba82685b51.png 81563b7b32.png 8054361dfd.png 92eaa4c1c5.png 7cdba71b29.png ba1ce90692.png df6e53387b.png 1ef0b973fd.png 98e18540a2.png 4998016777.png 60bc283617.png 452e3918f7.png 3ca18312a0.png 985b25f2b1.png 524adc6537.png 882fe73d29.png 593421be30.png bbb8eb87db.png cbd6daf292.png b64a39eb97.png 9321025f07.png c8479fe755.png fd82a91d3b.png 2aa5771b5e.png abbed11be4.png f3103f4418.png e196178f53.png e2313f87de.png e4eb890966.png 3f0e97ff77.png 9e48a469e8.png ed415f29eb.png 54b1cff49b.png 788cb5df86.png 241f9702a2.png 11b18944fe.png 6389a7688d.png 3653f28f67.png 330e786de1.png 8f57714896.png d94be52713.png d5dec361aa.png 1e3881f1e0.png 4efbd07c56.png 8884856272.png 628d220a0f.png 8fc42d8cc9.png 892cdf8eb5.png a139ee59f1.png c14e1cad20.png 64431a59f4.png 3f43f2850f.png 926a4a511c.png a66dd1f283.png f7677ef77c.png 7c3081a812.png 141f29d8b3.png 92eb4aa6e4.png 0f3af50fdb.png a984e630ab.png 2aa72c7903.png df7c813622.png a4ee1a0e9d.png 7ff1d00b47.png 791ca7c91f.png d02a7dc593.png cc46103f98.png a8e3f97611.png 6b28e2f3f5.png 8590af360e.png f1716e0716.png 0852944481.png bce80dc1da.png f9bb50511b.png 3983d723b8.png a8ee53877f.png 5fea3149b3.png c96f52ba7a.png 973038e1c1.png 01572cfbc2.png 0cf56f5ff9.png 521675c678.png 1bf3d27d55.png 14241c27ef.png b20a70b6b7.png feb0134117.png 693ed8cd99.png 15a7893aaa.png 8cb504a3fa.png b97fc0a32a.png 2890995b32.png 5d91db33fd.png d03df054cf.png 71ba21f967.png a35dded5b4.png f50c1f8bce.png b4836d1c53.png e3bf961b41.png 5c7e257630.png 1173fe4941.png 0b925d4e8d.png 925d995276.png 4ea94e932a.png 301595fcd8.png c9bf362410.png 923aca4789.png 7ad42439bc.png f0d7632959.png 5bf6104412.png 639dbc4799.png f355185623.png 32a4fb558d.png 8d641d2e8d.png 4519bf6347.png b789820d77.png 50b21b7971.png 86e7716f79.png 2c6e23e219.png 35f1574879.png 989c646373.png 69253f7efc.png dc0eba53d6.png 4ce2883ba3.png 4983760174.png c8598ec93b.png cc32da1b7d.png bc2bb48583.png 9b024c5953.png db373ab7b6.png d9764a65ae.png ff763fc36c.png a16cf0126e.png 0d31971e2f.png 7a67a57455.png 2822b81a5a.png f0bc803eec.png e6a986f6c8.png 71d5d55932.png 5850ff1f52.png 883dcbd352.png 3c565576bb.png 6a436d7460.png cb5926b32e.png 20b02228c7.png 14e3d2f19d.png b249b1f476.png bab9a78e8e.png 241f5d63c5.png a48ffd1f27.png b3f377a7e4.png d84e84d367.png 64dc981415.png 1d6266dfe6.png 7f6ad34bcf.png f199e2628a.png 534591738b.png e439ae5e8c.png 91458415ab.png c427e869c9.png c97a78e54d.png 43f9b2d59b.png b67b1a4db4.png 133e16f211.png 7bcb61c3bf.png 56eecd7fc0.png cf63fbd55d.png 437f1c2894.png 791d8e2d30.png 918e6952a0.png f0345fbe7e.png 8d9e8acc95.png 1557139238.png 86f8e8b9b0.png c877496b7a.png e50d3d420d.png e32b064308.png 33d921c28e.png a92c322fcd.png a8e3c96ae3.png 9b2ad9f14a.png 4bb7ebf911.png c7f9a5ab36.png a388900be9.png 38285ef00d.png ae1849dbec.png b178921d26.png e133ac97fd.png b4b9723956.png bd73a889d6.png e196a48c94.png 209c3eaa70.png bf8d1fb21d.png d49547ef96.png 1bb3688821.png 66276f7cf4.png 41ae01a47b.png bb364faea2.png 72d5c2e914.png 4071fae726.png 27f1c2b267.png 2afe87d240.png 625d4d8487.png 256f6c133a.png 60a06c3078.png 400f822d93.png 3a8da5dd51.png 4ba8d5d08b.png c771f34634.png 775be16cd8.png 21f1e10952.png 0ad15731c4.png db00870dcd.png 2c07634387.png 523ddc787f.png bb6179387e.png 5ea341abf2.png d5b2dbbbf6.png 7161efbf0a.png bb8a9f2aa7.png 18184347cf.png e1c2f954a0.png fa1c58a6c2.png bfeb7b1e93.png d1d7ed06cf.png 6b9fb67be5.png b0308268a8.png ed5515c950.png 65c5edcfa3.png eb942a7ad0.png c88d7d3c76.png 088f1c6ae1.png a9aaafc24b.png f70f6a5336.png 069c7fbb03.png 5403a9d43a.png f734abe528.png 914945be12.png e8c919c8ec.png 1cfb3a3092.png 3fb7ca35c9.png de99730157.png 1c900e9782.png 6102cfaeb3.png 966b96f8b2.png 50d689da2c.png 9913721ee5.png 86e3475645.png 4703aadcb4.png b4a88043be.png c50a04f278.png e5b07450e3.png 2287d5cbbf.png 395b3fdd18.png 9f0ccd7979.png 8655a31d30.png 4a91733da3.png c54981fe30.png 9f54b45a74.png 9a4d43460c.png 401310594d.png 475e27d13c.png fa17bef99a.png c3789dbed6.png 1f4067e73f.png 216a741f7e.png 7f6d43202d.png a71b76545d.png 30f1ed8caf.png bcc816b619.png 4d2778b117.png 3e85318809.png 94b1dd298b.png 696d91b37e.png b427cb176e.png 8b88631559.png 0493bb7894.png bd125b1dbc.png a9ff5638a1.png 7a1f58855d.png 1bde429ee9.png ac1c1262a0.png 076c17198a.png 737f39881c.png 174789f4b8.png 3b474dfed2.png 0be517d0e6.png ac4331b411.png 8567ff7170.png fd66ad582d.png 93c8f958ce.png a310519345.png a58f7bf642.png f08c404497.png c97455657d.png a3d7e18515.png 541f392605.png 7f1c1802d4.png 9d22a9e14a.png b5768c5204.png d9d75842cb.png 0b37e26016.png 88291780d6.png 76de89d0eb.png 4f9748f56b.png d1bc239adf.png 9bcf7863cd.png 9290c42ee0.png b65d1b12f9.png 8c9df5d510.png 642057611a.png 55714a25e7.png 5dc3703d30.png 186ec3704a.png 8597ba8dc8.png 8f7fd55a76.png 1e37c0eae8.png 348232af8d.png dd8bdd9081.png 2c6dbbc57c.png f460ceb65d.png 43f87dfde2.png 00565e793d.png a52cf1d9ea.png 2a59f72960.png 097031e22e.png aad8794a12.png f6143e3cf8.png 0208be7868.png b2d2042049.png 0ceb9ed723.png e4bcdceb27.png 3a7f0d0bc1.png 6d0e37599c.png a53f55e67b.png 1e62978cc9.png ec712f4129.png ad513e2b36.png ef60d10f12.png 214bee1aa1.png 4273671d5d.png ce00ad751e.png 3ecb0db5bf.png 8bf21420ad.png 8c666c6eca.png ac562c9a1b.png 151a1098b1.png a07b40cd8a.png a2116f6ae2.png 4d92d49210.png 8ba1b78c2a.png 9388190e1d.png c60bdbbcae.png e49ab753ed.png ba4c45d323.png 3c4352ff4f.png a4066d42fc.png d5e7b5a6a4.png 7ccedd8742.png b5dd684e36.png b9789d9734.png 4878809292.png 39e91d3247.png aa794b2756.png 2ba7fd429b.png 7b238266de.png e04d9a0afe.png d8bf9761f8.png 7296069bfc.png 4ef659421f.png 76dbac3910.png ff608418c1.png 28f031b89e.png 70b7e1c459.png 9a1a93a217.png 9cd8e831c6.png a945ecdcc9.png 300c287220.png 61934728ec.png 846caee6e0.png bc77c9515b.png 11985f826d.png ab99fc85b6.png eb61ff3bd3.png 7815ce431a.png a588bcb650.png 10968dea34.png 3ccbc353af.png 6fea77b2a6.png b8116cd3ac.png f5ffdccdcd.png 01fd9581f6.png 2a3b0dba1c.png 238a3c6d9d.png 41bbbc3c6a.png 964f6dab2f.png 49f33f1832.png 73eb0134c9.png d97e6ffda3.png 6ba0ff2b77.png db658c5ade.png cb0d2bd803.png 64d8cbc1ab.png dd606ae1f3.png 811fb98143.png d96c4efcda.png 7b85a10a19.png bd48b27bd3.png 102a7ad32b.png 208be81c7c.png c5e7ec3c34.png 5fdd07c869.png 244d2a8082.png c9cbf72057.png 4a26fdca60.png 0a90963914.png 7e4af53bfd.png dcdfb81371.png 0227b5b765.png 012b7b5cd0.png 44730f65b0.png 256c00d426.png 4d1d5d9d62.png ac7300662b.png 01a48b1544.png 12ab19091a.png 5113517acf.png 71432420ed.png bd21c7615b.png 3768877c25.png 8995f21618.png f3b3d14146.png aeed80472d.png 74ef894c55.png 3d6452e27a.png da5b430ecd.png 9b3112b0b6.png 3e6a6c3c9b.png 2d05dbfff2.png 89daaf02d5.png 873f6cdf33.png b12bc217f6.png e6285f497c.png d832b3d757.png d43e2382c9.png 74a717ddcb.png aef4309602.png 971ff26c0d.png ef532b1d90.png f97e33f4a0.png e88de6b8fc.png a7fbaa2e3a.png 6952ef1a14.png b5f5cb0885.png fdda40625e.png 568d051da0.png 16fe0e5148.png 8620edf732.png 751796a6b2.png 6bd3e38587.png 5e3ddc6340.png 26afdd76b5.png 9accde1974.png 35c5c1e757.png 301bb33659.png bedeb394ba.png 8f22918dcf.png ba3558504f.png 278c81f164.png a490a68472.png d7de9e7fd6.png e49b5c4be8.png 0bb14b8c19.png 2b80686da1.png 90cd0edbf4.png d1368abea3.png 4ca0c2e20f.png af773ea8ed.png 9d9b6f17b7.png 1a2b9fc0ef.png 8b6939fa74.png 707da802b9.png c09b5e92cb.png 42e7632c3c.png d4ce2a2530.png 0cc25fed1c.png c23a260780.png 8b9135cb6e.png 543e8ef480.png 3f20bbb54d.png d81b53a8c1.png 35d30e4e6d.png 041bdffed0.png 773533b10e.png 4a51c8b3bc.png 240b3b3de9.png 0a6b2cea49.png 5f0b4e4389.png 201b6ac1e0.png 866fb53024.png e423a30632.png 7ea0fd3c88.png 2114e8d6b9.png b20f6fc0eb.png 4200355d17.png c316ff21b8.png b3c8b426fb.png 71abe009c6.png 08ea9862c9.png 59a07f8b50.png 232a5c4634.png 290082cd0a.png fb7cc4bd6c.png 10fb725cfb.png feaae39fc4.png ff2cfb99cd.png 398808ab1f.png 23a74b714e.png 4409f74613.png b6ef3d7ed7.png 6e9164c1f3.png 6849022dab.png 0599374285.png 4cf9a64333.png 475986aa57.png 72b009939a.png 53a81ace9f.png bd572bed64.png d2db3c72fe.png 7caf9364fd.png 6182e7e891.png 3ca7a95c42.png 6b9716ffbd.png cb7a4519ac.png f28310a865.png f0c9aa2b32.png 8e632c2239.png 172d24f19c.png c8cf8823a0.png 9a5e7fb405.png 11ee5f9682.png f0c3cf012a.png 40ab4aa81b.png 2c4e9612cc.png 44970cdc57.png af02eda909.png 8c09cba826.png 81a05f393f.png 6f48dd2861.png bcd6012819.png ba36fddbc0.png 5a7566a915.png 9cb3e373b5.png 7d6e95d2d5.png a94a59fc55.png 53f7dc0824.png 1533770ecc.png 674653f58a.png 4ebf1a7500.png fbb223dbe7.png 2d6c9ecb08.png bb5d74ece7.png 49c3f16b62.png e0cfbb4d1e.png 27f63c56a0.png 33f4067402.png ba22bcb515.png ec7e0e98e1.png d6f318bd6f.png c11c6a374c.png b7b9702887.png b019443c23.png 64d1275e94.png 305e3dc5c7.png b6b2115f33.png bab8c99a60.png a8a86d7d11.png 53558f2db4.png d520e24c96.png a7221c24e4.png 4957366c55.png 9c462097d0.png 6c53696981.png 287457855d.png 25adecfb8a.png daa59da19e.png f889a20f30.png 1b4c67f0cc.png c37b8373f3.png 703cc2cdc7.png 939e2fceef.png 55cd46afec.png 1cf2b64739.png d9076d4917.png 1eaf09c1bd.png db68ab6d70.png e388ed5fb9.png 20ce0bb46b.png fd2f09d544.png 5a48d9f7c9.png bb5953d161.png 533f1cfb17.png 942b755ac6.png 3b71213533.png a8da16b97c.png fc0cec9297.png 80bea8ddbe.png b95049835c.png 75ba3f1b99.png 55bb514332.png 483294d654.png 6d9baf0d42.png 64ad05c7f2.png fdfaab1f5c.png df64563d9e.png 6b5f03996d.png 48a9647ade.png ba16f363d7.png f12d23aac8.png 5220b448bc.png adea138b16.png 810309305f.png 64423dd98b.png dc501d2cb5.png 06e2664df1.png 27e4bd625d.png 5398848bf1.png 0d2bff49ea.png 1c376a8287.png 70ca23bd65.png ffa64b0acf.png 79115207b8.png 9431677217.png ab01feb861.png d53feca9be.png bd90397780.png 034210b100.png 27882d27ff.png 4dae5d1e28.png 42f3ec73d6.png ce4a1c6a57.png 5411bfa79c.png 0b5da62449.png e83222698a.png 6e416c1a91.png d61a3ab831.png 3825b66859.png ee4094ce85.png 18c28327b4.png cf52335730.png 1dd78bd5d5.png 7f954be7ab.png 115623101a.png 3417ef817c.png 7f14677274.png a4c5fdf614.png f4c0be9dbe.png cb4e3c72e3.png 9e3ed814dc.png e97a3e5acc.png 9011eda704.png 53d3cf1ae4.png 3bfe771dc8.png 9a21f73ad4.png fde46e4a24.png f22304afd9.png 6521203218.png b614e76921.png dbdfc912ac.png fe3d670457.png 7266925b66.png d2bc78e5ce.png 85d4a097a1.png 43311d0da8.png 1c2ad559cc.png 4775e574dd.png 34c4081c9b.png 3175807e68.png 824e666e6f.png 1a8b38f45f.png 2b068f2f40.png 841ebfb96f.png 68efd1662e.png 464b563944.png b1fd7719e3.png 702315d0b7.png 359e6a043b.png ade714ba38.png 0860568fe5.png cd0ce1b45b.png d4952a2854.png 8bbcef76bc.png e4afc92300.png dc86b26706.png 00c153007b.png 6945362fd4.png f2a038cbd1.png 3a37009a34.png ac11aab43a.png f80f1932f1.png 380bf23f4b.png 91c3046e29.png 5f5b77cc1b.png 19809089fd.png fde6627282.png dfafd0bad1.png 7ca4629653.png c221839b8f.png 308bdf2973.png 9b29c91d73.png 189f543aa7.png 1069817f2b.png c9f2c6ab45.png 429f9cc0c7.png bb66632dea.png 658219f5b4.png 1a0a056dbd.png 2aa4bae403.png bf21540fd5.png 2bfe87d488.png 398c285d13.png ca3d34d73e.png 04300886c1.png 61a61114b9.png aec95a704d.png 45ad1de292.png 04d05430ab.png 395b9609f3.png 7a49ff1a46.png 497626af88.png 6adfb31724.png 6bce96251f.png 0706b7541a.png 8a6ed0439b.png 7704608969.png ac0dfa8b51.png bf1bd5c21a.png 2d2b303e07.png 0be00ec340.png 061a8ca0db.png f81a4dd023.png 36eb8d9d53.png 800b9f8b72.png 71930621da.png 9a954c3db7.png 4bd87bd3da.png 5466ce802a.png 26fa7eb03e.png eb2313684f.png 25ec60d1fb.png 9652e27bdc.png 5954dc3bbb.png 7eb6261dcd.png 955155dcfc.png 176e1cf804.png 63ee7113ff.png 0bab031d59.png 7b5fda3922.png d04d504efe.png 68e3ae2fd2.png f518cd6d26.png 85460cb29e.png 88ee6e1988.png a23b79953c.png 55dc884bd8.png b4cc869bd0.png db8f57831b.png 42707233b9.png 606f5503e8.png e1b367d535.png 704de84fa8.png 60e7b5d738.png 7a7cac58b1.png cc28f19bce.png a00b575195.png c50affbe08.png 002af5d1e8.png 1b8d23755b.png 1817464894.png 9e897a76ea.png 9a74757d79.png 17df5aa486.png 0da877df19.png 44e630bf50.png 6de89340a5.png e938c76532.png 18bbbabadd.png ad870f48bc.png e2b680135b.png f8e39bd61f.png 00f342f248.png 4d5bd7f272.png b5137b993b.png 5d9c2a8469.png bbf8b15a50.png e2b83ec618.png eebb71c6e1.png e3bb9c881a.png a3a6c8f3af.png f66f46d2bc.png 4a624a202b.png b783c69710.png 85296701e6.png f1633d5b80.png 85703ee290.png 4bfa0bfa8b.png 4392b160a6.png 0b0b0362be.png e3bd0d2365.png 8f1145f250.png 4c1c8b3774.png 6c237adaba.png de3b4d9046.png cd90c05864.png 37ae46fab5.png 0d5b43b41a.png 3f0d544cae.png 4a723a302f.png 6f75868949.png 31729627d2.png 1290e11543.png 06f467360f.png 03733663ac.png 0692b505d2.png d5bcc73a21.png bdf438ab78.png a94a0b7780.png 14411bfb9c.png 035d178826.png 590ba9d838.png 1548834d01.png deb1b058f8.png bdbf180bb4.png 6c05e03941.png b4916183a5.png 1436c973af.png f731d8930f.png 17bfb214ad.png 84cce35d7e.png 28a5f65cc2.png e4f2783759.png 764d1a6614.png f6a757cbf6.png a5079cb93c.png d238d7beab.png 420ed132b9.png 2582af5390.png 53f97a1a88.png 0c096431ce.png c19973511d.png 1374727444.png ab827ecd91.png e469859cd3.png 6908a36e6a.png e953b8fb9d.png 23416531ec.png a453819463.png 3c16374ea3.png 79e2069243.png 3e7fa000c7.png 7c1728d80b.png 7e9c4e3932.png 84f510947a.png c6466c2752.png aa7589fa21.png 6ce2fbd852.png ec80a4212e.png 44c903a754.png f37a2afb5b.png e246e54bdd.png 539c2225d3.png c8e691b7ba.png 4ef8c0897a.png e50041b85d.png 1c920e3604.png 6ee6f38517.png 4ff25e6999.png 77cd801900.png 45f9b71a91.png 2087cc2916.png a2acd2c458.png 6afae09aa9.png f86c86466c.png 3a489c31f9.png afd4f54ea5.png 354c3a5d44.png cc63e9b444.png 7c8c827799.png d800b91a5f.png 0e4123fff1.png be5f65573c.png 7cb7fb97d6.png 9ea14bcead.png 7285733d96.png 184cf35640.png 2a4ceb76ae.png f0f3922d30.png ea301ffabd.png 227987aa07.png c51176fe44.png e4872a93ba.png 7889812661.png ffb3be0fa8.png d923825e05.png fe4930a905.png 88957d4b3f.png ee6357ee64.png a067c4ea5b.png ed4711ab1d.png 155eb0affb.png 83fdc47ff0.png 55ce36ea90.png 202b601141.png 67fce30109.png 06d4212fca.png b06aa2ee78.png 47abe23212.png a64ebcbf08.png 46a94d4190.png 8a588ad1c0.png 398c678c04.png a0d7c5dcbb.png 2bcae75a7b.png f76ac8de40.png e325b6388c.png 5d62a981e7.png 9aad618687.png e13bcd6e22.png 1717c31a33.png ccace37b00.png 67066b5871.png c82b27b742.png c268afb4a1.png 3bceaa0303.png 500e912121.png abd3256917.png 92fb5b47ac.png c2ff775372.png 8edcb8b48c.png 376b6b7e94.png 0e0edd09c7.png 0dfe2971d0.png f6ea999684.png 896c89d21c.png 40b72f14c4.png a401ccdd89.png 6fa955a605.png e91679e234.png 0b9686de0e.png 17050aa15e.png c6acc6edb0.png 8399158374.png cdf00572fe.png d51ef97f33.png d1fa6d0e0a.png 1276bc341c.png 6a50b924bd.png 8acfda99c5.png 2864cd871f.png 444e6e251c.png 8cc3d09d76.png e3d9ffaacc.png b53e07d18a.png 24da167d30.png 2dad6bef5f.png e8f06500ea.png ac083c126f.png b855245294.png f6e56e8246.png 5aece0449d.png 371ee426c2.png c7a0370b35.png 54ca91e49f.png 78884dad01.png d3ccdbe2be.png 033bf5105e.png 65bb27f932.png b337d81063.png 25d31baad9.png 08539d8fd6.png 95338a2cc9.png 7aeebea3bc.png 2cc9e8a198.png 86bb8ddfe4.png a13e062836.png 587e768d3a.png 44e41ce44f.png 8fb8e7784c.png 36951bc157.png 30265b3659.png 8280dbed52.png ff2ebb3e79.png 88a0258400.png 5a13a495f6.png f2e6753aad.png 00c6536758.png 668879ae3f.png ee256d408a.png a64ade1730.png 34d49de018.png 4df85f0d5a.png 11b987732e.png 8ecdb4163c.png 872fd7fcde.png 63ea7ee5d6.png 7628d4d391.png 579b201f56.png 6dc67726cb.png b1221bb8d2.png e947cf77db.png ed93c39d1c.png bc6f7dbf38.png 1e5ae9d2a9.png d69b835df1.png f98e740c98.png 337d3152d1.png 20b3b504bb.png 0bdf279a26.png 909a223b2a.png 656213f488.png 8fcf8fd268.png 49a553c65e.png c0ac5c2522.png 54c4df56c6.png 42903ae768.png d928dc5068.png 8b217536f4.png ea9ad92591.png 2cc9698c4c.png 7949b8c74d.png adccaabc57.png 7977b3e4d0.png d2a6a4e67c.png 88f577fd2a.png 12ef0f8019.png 36aac13e58.png fab4191314.png 4cb8474e4b.png 661ee2a9b9.png 4e596a41b0.png d12d3125e7.png 753761db4b.png 03b2e0b652.png 7fbb12b1ac.png 188ec986d9.png 6832de9b9c.png 92b1a7eec7.png 5dcb83b69e.png 3b4f30c92e.png feace2a064.png 6b8be32bca.png 687093f687.png f8c1b2b3b1.png 2d1a6bb739.png 0b9424abbb.png e4c74c0573.png 4f5a6f8c74.png 00f053ec96.png 00d26ea627.png b969a65d69.png ad898df954.png 94548cba37.png 239870f218.png b796ee40b0.png 91b10fffe2.png 0352ae7ea3.png f74f620d68.png 4f26bde95e.png bdb72006f7.png e616634db7.png ed0e7d188e.png c5dc55c970.png 2d6f3c5ea4.png bbbee75b08.png d19c8929dd.png 6158817b25.png 3603aae294.png a3f984c72f.png b4b1840b53.png 5791c70c05.png 465cdee46c.png 447aefae2b.png 36c3c517ad.png 5bf4cc95a7.png 20345ad292.png 4b4dd814e7.png d1ac97d3ec.png 7c374bd2cc.png 51cf810935.png 28bfbb1894.png 0c91260657.png ee5cddeb0c.png 4f37c11814.png abfc365c4b.png 36667d3e96.png 7a8ef143fe.png 56bed3512e.png 8ec847ca45.png 21f1d4055a.png c58269ccfe.png 04495e40e6.png 33bbf6ca95.png b7d6aadf83.png f01f1a62fd.png 175f61a717.png f653451c51.png 372fbddaf4.png 92ceaa55e4.png 39f1a4f12f.png fdc2f74523.png 7ff5700a23.png 93bcc1b466.png 8f135ade8b.png 1d1447a1b6.png 6b97b024aa.png 472d8fb7f7.png 644ab5c5da.png a17be3fe58.png 65a150de53.png 14a00a63d3.png 4d00f5b453.png 72fb8a9d26.png ea0df883d2.png e263adecde.png 009d3365bc.png c29736e475.png fcf64ff2d1.png 9ec2ecb34b.png 854fc2c0df.png 7161ad1940.png 2b9fc720f8.png 0794347c0c.png 10ad5189a3.png 1957bd75f5.png 964ba742b6.png c0390b37bf.png 56aee0ab08.png f83ff82a40.png 71d46b2a4b.png b6af3ba0e1.png 62697e02cc.png e16fb83895.png a4b1b30e7b.png ee2bfe0240.png 6dcf25329a.png 01d6be9b57.png f8777febea.png 9c4fb66a3b.png 0b1b207e5e.png f761f7c273.png 628e8fc49b.png 659ecabddb.png 76e214f5ed.png c59e59474e.png 7c3c772835.png 158d0a4ec2.png da322f4911.png f7d6830beb.png f154d2eb14.png 34cfc626af.png 3a5d046537.png 3a272cabc2.png 6b22f89f38.png bcf6935d08.png 9e80f1de5b.png 3174c61ab2.png 0455d56bca.png 90c067de3d.png 23087ece3d.png 963e4a56bc.png b985fb0dfe.png feb066e638.png 526fe8e7ca.png 67efda4b14.png 1d2bbee88b.png 1120f58e5f.png 2a0d1a296e.png ef4b3908f1.png 9048ab9f44.png 42f76c7c21.png 3b58fbbf7b.png d1a903690d.png 9951ffaa5a.png 980acb2f1d.png b40512ff28.png b50dbf7dc1.png 558f33e591.png c76cbc2fe9.png ed01a305c2.png d910edd2e7.png 5ee3fbc1d2.png 4e44708d4b.png 3df9f3edc2.png 503f08307e.png b2d7eb0937.png ec1a509f08.png 39fcc00d01.png 21ba72ed47.png f7500b963a.png 934a1de79c.png 2efa48cd11.png e323635585.png 133b5ee507.png d2fbaaeae5.png 86f7134adf.png c2849b2261.png bb97216331.png 0b11c85eb7.png c4687713db.png f70b438480.png 1a8026456f.png 1196a14840.png e161ceb5a7.png 6a72b1d26d.png 20ff112fb3.png 92e3428d1e.png c81174f057.png 0b0e4210b3.png 1ad16d5693.png d24b00781f.png 769c87aa71.png 2340ad8cfb.png 5a005e1b95.png ef79b3b912.png cbae673566.png 575fca4e10.png 32b1cd7652.png 8f91b34e5b.png e0f166a352.png 346b4c38aa.png 70ae581728.png 4c5f25ed11.png 8a4c33185f.png 8b1337f50a.png 3f73575f28.png 63a347b03a.png 8a6090c9ec.png 1ac6523c3a.png 81babf8586.png 6abfffdd6d.png a350bf9ce2.png 686113cc67.png 1cc76fe868.png 0f1c46ba13.png e6b6755d97.png 9d64ebd0cc.png 86e484ac94.png 583a3ba83c.png d859e715d4.png e45c6ac356.png ab1ff4ba98.png 4829eb37ab.png bb9b6086fd.png 624b6d899f.png 567ddfb264.png f8e3b0b7c6.png e0aabc9212.png c4e9c0dda0.png eb8d9a0d4a.png 694e451a45.png cad8e1ccac.png 7d7656d684.png 10e16dd975.png 69d9cb1c48.png 5eca033d76.png 6a272dacd8.png 50c5efed92.png def68d1495.png 3ce8a8bdf4.png 1336b989ff.png cb3f0be080.png 5b3e049596.png 7432950176.png 24a902540b.png 5b979e06c1.png ab276f9fd2.png e18238535d.png afd7bcd985.png 82de84fe54.png e480079ae6.png feecb89064.png 23ae01f9de.png 743097891a.png 67ae021997.png f7e58da74f.png ad34383074.png ab7fcad758.png e8b694951f.png 94edc8c496.png a5050ea371.png 1b2bc9e64c.png 16099fb731.png 934fcb3879.png 7b5cb1b93e.png c9a6cf85ca.png 1008a41c55.png 5b2a625adb.png fd0d1264e5.png a553f6ecec.png 8b62cdd144.png ad294a082c.png 18150f9ca6.png ffef5dd845.png 8229c8feac.png 34ab125f26.png 0de7c509cc.png fb91f7bd64.png d81f6c3432.png 9d156a0efa.png b70825020e.png 900a53ca3e.png e15f74cf8c.png aee94e6892.png 9f06b4bbd9.png 4e50b795b0.png 0aada349b6.png b8a8ff838f.png 76f2e81fea.png 2ecd05d83c.png f73561cee2.png 1357b08d8e.png 291c5dc477.png c8b7b52f7f.png 722806521a.png 20bda6e6d0.png afde39c848.png 9844d1cd98.png ca32b9178d.png 78534871be.png 1e66c09f24.png 0b633fad17.png f5bd321e00.png 42de63318a.png 89b6496f57.png 52158a3b36.png 4bb0fd9591.png d3fbedf392.png d4be3d7e50.png 87807623b6.png ac6f1aba22.png 1516960973.png 43addb85a4.png f3037afbee.png 8c8450cba6.png aa0846111a.png 43c29e757d.png 1b46f6af5c.png 0da4b0731e.png 1dfcbf4bca.png 636456b360.png 3ce13de7cb.png bc22c76e09.png 64c76ea7a3.png 41ca396fae.png 26cd314b1c.png cd7e41ca62.png af34547bf2.png d98ef8bb13.png 7b33b2ca6c.png d95ad63bb9.png 098194923a.png c22ccd5186.png fe2fafb64f.png 34882b481e.png 381ef9a1af.png 51806f45ce.png d8e9f9d7e4.png 80552d0e8f.png 82fae7d0cd.png 55df1f35af.png aaf148d8c3.png 5726b12101.png cb559bbed4.png 8f86c7b6f9.png 886335d982.png 1a4a10e974.png 3575b15285.png e4096090e6.png 9b3d407035.png 9cacb628db.png f8621065c1.png cd01f01ac2.png 085ef8448c.png 5e07f381cc.png db5856eb69.png bb939d39e0.png 5ee5607228.png 6d0ab73c29.png 508f77d60d.png 709c9537c9.png b5934d2a3b.png 63c49b24d0.png f6442fd9c6.png 765321cd6b.png 6cf8fec79a.png e327e9714d.png 9a4222ba49.png 572870ed39.png 81fc619c7f.png 3fc444f3c1.png 7054f9226c.png 095b44b0ce.png e2bb21efd1.png 1b4836f485.png d16c0e2f8b.png 55937bc991.png 1f28807881.png 5b8bb095d3.png deade70419.png 37bfa26044.png 9f2ffd1c09.png b278cc6326.png 24fa97853b.png b22bf3694c.png 3cd84afe62.png 5662818526.png 2f64ffd99a.png 2649a5ea52.png c4e956d952.png 95a184c026.png 796f2819a3.png 0bd264d1a0.png 2dd21f355b.png b42453f94b.png 468067c08b.png 6f26c4be9e.png ef4b910323.png 635fda5299.png 81ab5dc2d6.png 14c7a48dad.png 792b1ff712.png 6a2d493fb8.png bee920335c.png 217e7acba4.png f73d73ec75.png ed80cf7830.png 9795561cd9.png 439cecc232.png c2fbac0e66.png fd1085d949.png 37335631a0.png f78391fcd1.png de67466121.png 94eb08b688.png 5cbb8cb416.png d4ec7810c4.png a0d3c0da28.png be53c64363.png 8fb4c44b8b.png 2f8693379e.png 05b9a246c6.png c516803d41.png 9d2a8ea7d1.png 8b300cc9c3.png 9ae5ecca79.png d600ee1df1.png 59e5a2f843.png db246349d8.png ffb3e66bbe.png c8592c745c.png 22922eb6bf.png 40709ec6d8.png 2add3264c5.png 1d49878a48.png d7c4d4e1b2.png 42074c0725.png 336474d36f.png 76d6ec9bb0.png ac38d44d7d.png 90746d35da.png 7c01d02935.png b0ac47bf6d.png e6c0408a1f.png 6b5dc56ee8.png 919fdc4e34.png 5a689622e2.png e89784ccbf.png de52bfb104.png 8440daea2c.png 516ae893fc.png d9bce92614.png b70271bba2.png e69e307dfd.png ad2114bd71.png e38510a800.png 9aa82de10d.png eb9d14df6f.png bd292a1690.png b833a115ee.png e1a0800dc7.png 4e7930ac09.png cc90212371.png a4bab2ef2d.png 01d782ab9a.png d93241186b.png e135f81c66.png 45c17e9144.png 92a88f5641.png 2e55225481.png 894f6a1da6.png d31cbc0033.png 6a86f75986.png 193f8f285e.png b7699d334f.png 6dfd2f101f.png 20bde697e6.png 94a4ec0276.png 038617ab0d.png 20d9a105c2.png 8f8458c343.png 4eec9d2907.png 4303a5ae52.png cfddb8231f.png 4c9d8d500c.png 1c5e4acb6d.png 9dde6c3755.png 7f012d3661.png cebc1b3f7d.png 58c00da563.png 25a1f27254.png b788ebfa2c.png c75903d2a9.png 79ec88ff29.png 133d7c26cd.png 6c25956bc4.png eb95aae3a3.png 6c8e7ad4c0.png 9b9bddfb54.png 96d2ddd94f.png 515ed7b6de.png 513a7fde16.png 2a9805a861.png 0c26ab8168.png 157401d95e.png f43de2bb2a.png 989e8cfb6a.png f6065d0142.png a749ecef14.png 280c59adc5.png 95a7b73906.png 24554214ed.png f0d6a1cc66.png e698b4859b.png d8200d88b1.png e16c36b008.png 9c75c05f12.png a1e931d1da.png 66a1ce8398.png 56e8cf35d1.png 0568930a95.png 5fb9409afd.png de54842e48.png fcf8a26d93.png 2907c5cca5.png 128d07c753.png e634f95937.png a333c87428.png 4cca1e8763.png c8a3cf31fe.png 5198929758.png 2a75f20754.png 40a7b6b08b.png 71644debd8.png 555653d188.png 67320e41a5.png 8b3148b744.png e435eabb31.png 4bf2e5b78e.png 365c346528.png 3dcc2fdb76.png e8ad4c4398.png fe7c0c392e.png f2ce04bcea.png 3b282ca9fb.png acb6f14934.png 1ad3ccd797.png 3b8d185300.png 54b5c16ea9.png 0c58be00dc.png 29cd49e08e.png aeea7d0ea2.png 54961d841d.png 5caecaa345.png b53cd73f5e.png 215970a6ec.png 23563da1f7.png e4a49040ed.png 6738994f95.png 6343d8b189.png 2db3730f05.png 1d1e3f95d3.png e7cd8cdcb8.png ec18a789ec.png e5265b3f94.png ff28f29ea4.png 4ab596b394.png c173b95448.png 0e04f3f709.png 9bba9f0981.png cbf3dbfb4c.png df14c1e0c5.png 9b4ae543b5.png 71991595fa.png 4bc7c8cca1.png 43a180e051.png 388385f4be.png 6ba5e65f26.png 4a5769fbe8.png b211bcbb47.png 6eb4b1e1b0.png 91f0dc8f97.png 139b327245.png ee3e2a6b0b.png 7f3a6d74ed.png b994f9a4fa.png de25ccc39e.png ca210d235f.png f79b4370a0.png 396c918307.png 03c247c74b.png 14fecd67d2.png ee8419c13f.png 472ca04a17.png d548a1b2e9.png 0eb1cadc73.png 8a0eb38750.png ab97a25f56.png 9c2e45bf79.png bfc9ef388f.png 1230d07385.png 5fc4559c16.png 249cc02d2f.png 89ac736eca.png c1fc605426.png e2c5c7991c.png b76637a5b1.png 1fdf187ca2.png f0b88c1c94.png 9ec8ddce2e.png 6318ebf3fb.png 1ee12ee903.png f05f01139e.png b7b64e2e3c.png 051c0a2ddb.png 6bdd15f74a.png 5482075056.png 2a2b51e873.png dd56be4d81.png 5afce5bd51.png 9d39009d77.png 2309b6b116.png 7e893b59b5.png 34ee4db3e9.png e72ec9aa6a.png 0daf208ba4.png e25d11adc9.png b132d4111e.png efea140c8a.png 4184479788.png 13d6e87328.png 3cee398114.png bdb1c1fcbf.png 69c5f6be60.png 688e20fd00.png 2f3b480bb3.png fa2269d3e6.png 343443992e.png 4f359f7110.png b38ee97247.png 2984673259.png f844ef3537.png 1edc6ca8a7.png a3debd62c6.png 297646fb99.png 6c48112d73.png 7616ef548b.png 52193e1f20.png 3fb8c2ce8a.png 6377b2a077.png 4aa24fbabb.png 37dd11b8cb.png aac410c5d3.png d0257d7254.png 13b4cdb701.png 9b1efe2798.png fa0ae3c3f9.png 79fd4a6e1e.png 0717a21efc.png 1409ddabbf.png e5b8905fea.png 61138805e1.png 55894e899a.png ad553cf52f.png 5fbeb50b5a.png 9d65420fcc.png e0e1e28aaa.png e85ba9f671.png 1b741079c5.png 5f64a4011b.png ed7bea5840.png cc6f8b821b.png 2d450d63a8.png 9952099fd0.png 54538419f5.png 98d374c1f6.png 8373567bb1.png 0decef2ce3.png a1f55a188e.png 8687efe0d4.png d14be11409.png 4d27ef11d6.png ed5f2675bf.png c6bc5851f4.png 33f7a451b3.png 566eb41f6a.png fa2d86387e.png 3c24e4dc89.png a9bc82e277.png 0e760c1317.png 449edd9569.png a754e003ca.png 74a066b134.png d14105ad2e.png 9267408c45.png 0988338304.png c3dc03f42e.png b94052b389.png 8efaac0550.png ee4d7cfcea.png 79f7bf317e.png a30967eb65.png 1ed64d38cd.png 45228f9dab.png fae8a1af69.png b38fa501ed.png 020a0335b5.png 9478fcc031.png 96f60d42bd.png dd4b9d33ab.png 40e37ab6d3.png 39b8cfa930.png 21d8a7f563.png a3945cc9c8.png 52f369a734.png f24baff2ee.png 05d175bd91.png ab230639bd.png 1d2bf3cc94.png a80973d210.png a433189cb9.png b3be6d0b23.png e9c73652a5.png cd21f9a20e.png 14ec9b67c3.png 2297e39a1e.png a97394e47e.png ee230082be.png de2fe332eb.png d54615afef.png fb9a1efb51.png b41beccab3.png a9b099b251.png c0593f7735.png 0795655fb6.png 1ccd0edac4.png 796a06dd45.png c0b0e1782b.png e719377b14.png 7c96230fcc.png 18606906bc.png 2ac25d2e83.png a539c08702.png 6bc43978cd.png dd80b7cd67.png 113f9e005e.png ecb7e859fe.png 64b8ca4d93.png 93c3bd5f5c.png 2b562b2ea8.png 9ae739a3ad.png e8957ff25d.png f74833dc1c.png 2659e2d532.png bdf72c90ad.png d927c15fb4.png 94dc7202b0.png 49d1d110b5.png 8ca0f37825.png e5463f2c0f.png 76f2458ae9.png e50303e172.png 863eddc9a4.png ea5c092532.png d24e24eea9.png 0702b8700f.png 80c275e4ad.png e5db78c10b.png 550555bcd0.png caf77a8651.png 86eccfe44a.png 0bcfadfd28.png e62622675a.png bd1131dcdc.png 2d744191c8.png 86096bd26d.png cc4dd6c823.png 2ab5284049.png 544caee232.png 135bbbeafe.png f19171329c.png fc3293661a.png 4f7b28dcba.png 5d89e1ab89.png 495962d062.png 4c26629cdf.png b8016fff86.png 0e18f949cc.png 0bda89116e.png 7938b71fe5.png e8e330c390.png e17703fdd5.png c5c7f765d9.png 12a7d7f2e9.png 38f374d26f.png c0200e7c89.png 8c4f0af661.png bc9ee00ac3.png 15a52de24a.png 14eddd75d3.png e1f4bd4876.png 4fc4759294.png f5ddab9cab.png c218b0d187.png cfeaf79010.png 4fe184616a.png da7c1dfeca.png f34cd4146d.png db5547a121.png f85a321be3.png 503c47f8ce.png 8c19c5829d.png 5f69ff419b.png 3521b38d49.png e563323c18.png 8ee70d5955.png 12e11ab92c.png 27d080fb1c.png cb18628039.png 875d5cbd51.png 9478850fcc.png 6464ec6140.png 40876f27d4.png 48088c96a6.png c2af313f48.png c83f1f448b.png cd3841173f.png f3b62e9e0a.png c07ed81d25.png 5187928643.png 85d82d8218.png 5af5682dcc.png 423e66795d.png 88177cb642.png 74b8b1e820.png bfd7a73deb.png 86ef32c658.png 7c3e872cbc.png 39fc7213e1.png 041b1900de.png 9484a42649.png dfea8c08b8.png 61fbd7bcd9.png 205bc22cbe.png 6fabf8d88a.png d29a58d133.png e02281aad7.png 92f0273998.png 061f2729bd.png 577964b6ce.png 24c59f0e00.png d3c6689f39.png 34fcc75290.png 118c8410fb.png dec2ad9eb2.png 5b3cecb9af.png 742dce37c4.png 1d72c26633.png 5e52f098d9.png d2776b82d5.png d1e5eeedf1.png c2916143c9.png 514a1c19da.png 9e86e03bec.png 7054ae209d.png 1cd35a5d9d.png 514b6302ee.png 2abe2d917b.png 9f88bc6651.png 0daa48f5a1.png 937f1253a0.png c5d1c2b8dc.png bfe7e5c004.png 8996600f77.png 74a524c6f6.png 91062f1f24.png c01b9a4db8.png abb6ca967b.png af9230b78b.png d5e72925d7.png fe86a6f843.png b894d4c3b0.png d123f81e7d.png ab8c023b14.png c66fd86269.png ef3d8acb5d.png f7adc6c4a8.png 78ffefb944.png c927012921.png ff69f8d84e.png 12a50502da.png 294dd884ff.png ba9a540bc1.png 728a6d743c.png fabf77ade7.png 45a04b7102.png 6f2bded59b.png e2562cf41b.png 650b1ef686.png 8a21cff6cc.png 1fd49d28d8.png b13be19418.png 2480b2ea50.png 526fec1e2d.png 4c76db3834.png c7b2190636.png a848047508.png 4caad13660.png c3feb6b712.png 7d048ae83d.png 19611e0df2.png d5f32fb9d8.png ca9f072002.png eab159c085.png 1751413556.png 5425b9b864.png 32c2343233.png d978006aae.png 5f1e22d81c.png 87172d491e.png 8fb2ab4e8b.png 81a2b120a6.png 59d34c582c.png 510f0a1180.png 590c7895df.png 310efcec18.png b54da3837d.png 8888ff440d.png 175420a7ac.png be92239eb4.png 6817506a91.png 169f0aa462.png a4457eaa05.png cbaabe0368.png 8841a25b64.png 879ed76a41.png 9a28814a64.png c6a614c6fb.png 449b778c01.png 0fdfde6a55.png f37f2eb2f8.png 00aa6a3958.png e4fa7c6a7d.png c6d5346205.png 75e8f7f24e.png b91bb6305a.png e61e9bcb65.png 79d37aa089.png 595023dd24.png caf0757af5.png d542d8517b.png 8c9846ac4b.png 934ac92102.png cafce53ad7.png c9272c542f.png 3d3359afd8.png 60ce9113f9.png dcadc4c820.png f6d6caf753.png f094ebc7d3.png 000d0a5f6c.png 4a03a65d79.png 32b2140185.png 807262dbb7.png f34886e220.png fc721787b5.png e84aa09005.png ea20808a7e.png b74675b268.png a38ec5925e.png 034a84a1a9.png 1f01fe0512.png fe8ee42b93.png 7ec7eda82f.png 1e933dc6cb.png 1e0b9a424b.png cd5ebe51b6.png 22b0398a5d.png df8800857f.png 482c05de33.png dd4af2ee73.png 900da4d5f2.png 6c45c3cae0.png 739a2484b4.png 2adf56faa5.png d6e3f898b0.png f4de1207a1.png 54153773d3.png 5c97dd7b21.png d7eb8b4a95.png f9e8baab8d.png ff0a4f1109.png a6a568e5de.png 08b4743736.png c6f717f69b.png e16cf1ced5.png c1c62f32e5.png 2f8b6beb17.png eaa6ff2cc3.png 2e19b36968.png 8267c5f862.png ec1db9fe21.png 2acc6caa30.png fe6a637d8d.png 3a8fcdba16.png 5001f015a4.png f9d5a850cf.png 60a5591917.png 0828fed727.png ec0266ad71.png 0c43ec36f9.png c9ea133098.png aa74dbc398.png 040cf0d9ed.png 348f475161.png fca1016aa7.png a3c332fe5a.png 8a0f543772.png e65cb587e2.png 486273b149.png 7aca719607.png b035452c45.png aa34fea223.png 02337f94a9.png f4e1756bea.png 763128cef3.png f3bcec6b35.png 1161352da6.png f9f6588f79.png 54fbd50faa.png cf5be83765.png da0b7ec78b.png 0762de37c3.png e040d91fe9.png b61e97ca9a.png 03422321bb.png 0310766b6c.png 7887dc1b63.png 524f01dd79.png f7ed9b7ab7.png 318cd6739c.png 8cbcad0831.png cf063b6a84.png 3ea50ff362.png 1496c1470f.png e4c7895444.png 78fb4e57da.png d1a15c65a2.png 35ae3107a6.png 03faead0bb.png 4cb9bdf555.png 541687068c.png a325af7cd6.png a55c6c1d0b.png 8fbd93c9b8.png eaceba067e.png 1db40838ce.png ad9f0a2927.png 0366c64dd9.png 04d7031258.png e71eb5dbaa.png 7c1b8a17cc.png 6c217077e5.png 4548b5fe8a.png 1668e61448.png 4183f90c66.png 8b5578c2d4.png 59c92db054.png e7f3808bd0.png 4c075a6454.png 0f1831de13.png 58d03e7c89.png d58addc3c9.png 65fd376d9f.png edc0e28c09.png b1b9ce9b86.png 8e546f0a9e.png 8fa238ffc7.png 9f29dfa66d.png dcf6316d5a.png 01fc11f637.png 942f9aee0a.png 4d163fda07.png a9ea42fb81.png 4022a53ed1.png af1140dc2f.png d0df1a121f.png c430c464eb.png cae4b0f0d4.png 1bc1ec2325.png a9b8ff1cc7.png 67fa36c65c.png 9a616b906b.png 2acb8bbe84.png fae8a6874d.png 89a4b40e09.png dc9b82b153.png 647acd5865.png 17b344c505.png 87d94a1264.png 074c92dc0e.png 392b7bc50a.png 0e437b51df.png 101f683ee6.png c1494cafd8.png 38a0a84353.png eed8fc6acc.png 62683a84e4.png b8bde6d60f.png acd12248e4.png 6417b5bc9c.png 6c82a04337.png 5ebb6bc370.png a2a8d65144.png d1f53c0fa1.png 7efd271bba.png 207b8f1707.png c223b6cd87.png 8fa22efd9b.png 4885a860a1.png 0ec3cfbcc5.png c8c86d269e.png 56b0d83562.png 1b3aa9a328.png 315b1e0da7.png 853e07e13e.png 2077f4f5d8.png 45e8c5d733.png ae12e89a80.png 417002075c.png fc3dcf852d.png fd50358e85.png d4bef9a35f.png 51767ccd9d.png c5a4c4e6d1.png 2b0d71a390.png 18cedfd6ea.png 04cbf52244.png ada9f8c74d.png b8a1648734.png c66acd78a9.png fe9eb2c15c.png 915be642cc.png 33e98bf037.png 9848ad8e46.png b542fd75b6.png db9158c9ec.png 90b8394c22.png c8316110ee.png c0d5f29125.png 10442d17d2.png 8d52127a38.png 132df3fdef.png 6b59edf680.png e578390adc.png 62d9d1fc79.png 11c70402fd.png cbdd38711c.png 8ba0e5e058.png 9b82ce06a2.png 60dfd16b68.png a836cef588.png f783725948.png 0eeeca0531.png 966f23aa7c.png dfacd912f5.png 240798dc12.png 1640610fd0.png a7c1278674.png 329563756f.png 79ad96357c.png 7308c64525.png be8fb89ea9.png 649224d545.png d7099eb334.png 57eff70775.png af1826b80d.png 5092434e2a.png 7478744236.png 31ae66e986.png a4a209dc52.png d385c199a3.png f2d250342d.png 31f6090f30.png 7844cbedaf.png c8e5f52fa0.png e7551e9a26.png 34ffa4722d.png 3d1e2064c8.png b2ef982b4b.png c602d02313.png a2322778e0.png 97c11d9b04.png 70a891a3b9.png bedf824aa0.png d8f44271c2.png 89b77fc82a.png 76aa28c0ef.png 6bdcd9b280.png cd5168b2db.png acad5e495a.png 906c1ff22e.png f89a479c21.png 6d8e425cc3.png d2fe1189c4.png bb2c8d04b8.png 8fc26c0caa.png f81413f017.png 45456c0cf5.png 3159a2100b.png 195f997af2.png b800303800.png 6139ed81ab.png 701138cbde.png 860f605575.png 689de6e32e.png 51308c8b03.png 54a5842258.png 0e371eac28.png bc8c4fb855.png 9ef364d6de.png 6817f42eba.png beeceae804.png e9b05be83e.png e487752343.png 3b3e29c628.png d0c9bf6f02.png 18cd0215e3.png 9e1719a077.png f694707d78.png 789cf04c29.png 4454da0dcd.png e2c1c771e9.png 19cc12c7fe.png bb365e1786.png 1870bc0ec0.png 74a5ef33c0.png b6a256fb4f.png d502c7113a.png 5819935dd4.png 093e17ad49.png ccec631d75.png 609c37ba03.png 54d675829b.png f72a9df651.png d2169330bb.png 8e84576858.png 9018e08735.png 6ec1f0c03e.png 50822696b4.png df46b3c036.png 0a3b7696cf.png 4df5b725e4.png b8d01a893a.png c59cbc2c2c.png 79b2e7fb3b.png d626773552.png 92c6b79a7c.png 513a596d8b.png f851b1959f.png ca3bc1f093.png 4bbd0a683c.png 0971f6b351.png c4f2b6ed96.png b8e7212860.png 9f0bf03c7e.png f34b7f5f31.png 2e55ac15c6.png 4fed31718b.png 714a530736.png 3bc80b1c12.png 3e227bf413.png efa6548f84.png 15d7c9beab.png cecb9a3bd3.png 070a913f3e.png 799453dcae.png ed313a0458.png 9840439edc.png 330fac2779.png 02b705b112.png 7bbea56114.png 3d49c23446.png 9e97c676a0.png c4b802d1d1.png dea3ee05df.png bb875e35ab.png 45d1bb9fb2.png 4f1fe6ebef.png 49e96a6bab.png 678716dff8.png 34dbf84916.png 1d2d268bbc.png be5468a599.png 96f1a0e953.png f95cb64587.png cc9a95b13f.png c7dd6d539f.png 78116fa2a8.png 69cec1ddde.png 4bc3530a30.png 0488eb2f20.png efa70b51dd.png 96e656eb8c.png e4a2ebc155.png d0107a1229.png a0c27256fd.png bc6521fff4.png 5572857e9f.png e0fd25b6c9.png f2df759bab.png 37f78a8697.png 2b420cf6f6.png 448a080d3f.png 8d8f9a7868.png 9a7167039d.png 82821aa473.png c8bc2ec5b9.png 1c3a92013c.png 48226b94d3.png 5394f6a4e9.png 581f8c2db5.png f74beabd47.png a443a58ff2.png 0fdf592515.png a4af4ec79e.png fa65fcaf12.png c111da300a.png a12ab05d74.png 624c50077e.png 41e4f4038a.png 82301d3f95.png 37c400489b.png 724541cf3b.png e68e53a654.png 83232c5c15.png 7269030c21.png 7a47875a7b.png 7cc1022e2c.png faced45569.png 9acd310f25.png 75420c460b.png c4117da764.png 8851e4f0b2.png 8fd80add2e.png 15e99c4456.png d0aaadfad8.png 5af7237d5c.png aae2ea202c.png 17a938e17d.png 927218abd3.png 18e4bdc8d4.png 6c147e8265.png f23939f747.png f8594cc56f.png 58ee6464fd.png 2d57242565.png 62d13e356a.png cc4d4d7351.png c333977b5c.png 6909be8eb1.png fa03ff2472.png f29742cf45.png 39f8da5892.png 56985e82a0.png f15f1f9c2d.png 9be8405130.png e7d963d69a.png daa44f92ec.png 24c5a49118.png 31681e5258.png 6c2e63198d.png 43b82e6341.png aa856fa950.png cf02a20d32.png 8cd406ddbd.png ab90867ff8.png 55a5c88745.png 19c0520d70.png 6c292f738a.png c67d804ce4.png 13c22c3cd8.png 6bde41d5b5.png 4d9caf0bed.png 411c393de0.png d567492570.png 59f453a2de.png 24ccf23eed.png 813593f7e0.png c3363afbc4.png 74f1b30c08.png 763de0e83d.png 2b0e163a9d.png 25e2f2418c.png 3aecf1edfc.png 2cf5e31383.png f803e91a54.png 3b3647008a.png d3332b8273.png e3134028ed.png aa2bcc866e.png f2bcc24bad.png 3dc568193f.png acaf962142.png 506313852a.png 7eeebb8145.png a7a66e306b.png 0d247ee571.png 22d990d9a6.png 4dc10dd415.png 8182bdb020.png d05176b53c.png f5c5ee96f3.png df692412f1.png 66e42629c1.png c37685f2ad.png caeb60c6f8.png c0cc10dcaf.png fc7926f05e.png 514f87c157.png e431838b7a.png 56de180fa8.png 38fee950c3.png c30f196026.png e265ee440b.png 980d9ad971.png ce47492e46.png 7abfe45a2f.png e77611a140.png 9360f588c1.png a7b439c134.png 0e9d22de45.png 10b09b3d29.png b01ed5d099.png 7300c9fdf1.png 820b99b513.png 4f0f086203.png 5ce6499aa2.png 260d5faf0e.png 11096643c6.png 1b1f719ff8.png c899bb9da4.png 4f3c549609.png 08e529fbea.png 6778b7675a.png 687a034e8b.png dcbc243dd1.png 7edef17361.png 875c61e40c.png c329b6d198.png 09456ecccf.png a7a3075a1c.png fa061fde8d.png ecc2ea758c.png d3ce9e576f.png 56e61928d2.png 84a93da64c.png 0279a4db6e.png 9aa679bd58.png 3621dd35dc.png 39bf2e6358.png 8784d75f0e.png 2ca82d707e.png 9f0a0921e0.png b1ff4879c6.png 4bacc96aa3.png 3ac5dc16c1.png 6805e1ed9f.png f41e46eedd.png 2ce8354e3c.png 64e526c39f.png c2bd5f07c3.png f8a1f29b78.png 97a7516ca4.png bafaf5810e.png cca5d24d54.png aa5f085ae7.png 07d9da93c6.png 0ab06437bc.png 11c00399d6.png e969baeebd.png ecea555030.png af7d70119d.png cbaa2838cf.png 63e4c28d41.png acf7bb62cc.png 7f4ccadf3f.png ff263bac3d.png 0bbee760e3.png b223958781.png db6202ef84.png f8853d0a66.png d5ec79a1d9.png 7a5cb865a2.png 83b062b608.png b538b5e2dc.png 82612016ee.png d244dc0b1c.png eecbb5b38e.png c144359991.png 2ddb9d0b5e.png 58c0ba9cff.png ac26936da7.png 6702002a59.png 7a0d2b5d6d.png 91791bd48c.png 5f56aedf85.png a1660f15a4.png 380e59ba25.png 6bf20054b6.png fea530ed89.png f2cafb648c.png 640c607028.png 2c51e2a97b.png f7b2fe49a6.png 86cbc4e630.png 38c805312f.png a346964cc6.png d384ce1a9c.png 563d6cd7eb.png c28f0753df.png 3d74dea2f3.png 842e153666.png 09b712b3a2.png 2063f2934b.png 612eab5d71.png b1956b1703.png 23895ff11f.png 2efda9a6bd.png ebbf3ea889.png e1d0fcd36a.png 7ed44899db.png 2fc2517c87.png 099090a5ac.png 54e1ae89d2.png 81abf40136.png 755ba63241.png 95d14b6295.png 9787ddd96b.png e372009e84.png 7370b31cd0.png baf79bc8b3.png 005855cd72.png 6239f9dccc.png 47393e1828.png 8cedd346cf.png be7fd92858.png 7b19f5eb71.png e7c38ef150.png 60764d08d3.png c3214a300e.png 4074911972.png 3c7ce000d3.png 02658f5ae3.png 26de5a7d3e.png a52298e252.png d2f6881bda.png 193a5e4c04.png 1bd9b1a1c8.png 58c5cc6c34.png 7b4ae4fdb5.png 4a08951f0e.png d446acc411.png a79f8ad5ea.png 4e5eaec9e7.png a43ae84282.png e17119b103.png 8d673bd786.png fbd6989cc2.png f6d8b8393d.png d42e7ee9cd.png b2293c79c5.png 242d332c46.png 9938ffcf0f.png d96a45425b.png b0a7ac630a.png f6736eaab1.png 25770e1dcf.png a8dd12fde3.png 3e11cc14db.png 6107902d61.png 0fcfbcf23f.png 1b313539f1.png 97f03b486d.png ee12c800ac.png 8ef3d8c73c.png 377953344d.png 7d596c01eb.png 4588ecf11f.png b78cb3ec99.png 68715e75f4.png 98d2f64d03.png 9269b8617c.png 8291aa0945.png b618cae630.png 9a3a802f4c.png b5ddc25ebf.png e033795108.png 482e5face0.png 610522a8ea.png dfecdb6231.png d3e042cc9f.png 55ae3f3757.png 1bb08d1d48.png 8fef989622.png f10c0e5046.png d5b94e470f.png 6061f711e6.png 355de57e2c.png 68c1093ddc.png b3c3f6847b.png 2a3ae9f7a4.png 539881f52c.png 95d9e303bd.png a40813ad63.png 3457baa631.png 349516c6c0.png ea374127b1.png 7f558ed116.png b1de48342b.png 013f2c7bef.png 34ef14a0f7.png 9a30620053.png 71319b35e8.png 7ffccc46c5.png a51e0ecc70.png 61a526dba0.png ca8621f9cb.png 084cdc19f0.png e07886c9e1.png d2c9311644.png 3c4c3153af.png 1d1f8ae141.png 8313bd80b5.png 4ac6530567.png cfcd55d96c.png 68d3e8314d.png 96b5aa4543.png 25ab18341a.png 4604ba0a16.png dbaa50e4e8.png c820e89250.png 1bde2dd64c.png 9990d72d8d.png d4ed19a4d4.png bdde42d974.png f283b78236.png 9f91c31994.png 9765869d24.png 70239a8c97.png 678be9f387.png 27dc4eed59.png dab3760ec2.png 7d58c958b7.png 555a28a94f.png 6fd4ac5516.png 393b86d929.png 5dacdb1080.png 396f334f22.png 56d600b706.png ff37c16424.png 9599d70e00.png 0599c13063.png 237c1d424f.png 5258922b55.png ef44ece465.png 4f4d5a2c20.png 2e7e2de23f.png 4026885307.png e0f43b5213.png a9de4ea104.png 3243944add.png cb8fbea20f.png 8a23c93c1c.png a6d618a651.png 3b65804dd5.png ab21118871.png 635bf7e9d1.png 10637d3b2d.png 929063c568.png 393941ea97.png d1e15abcbe.png fc05b19061.png e12852e1cf.png e2ea7ff45b.png b2aa9a8705.png c157e34751.png 3a1e264383.png 8e9df4c791.png d91cf89370.png f17c5539be.png da90bb6570.png 2858abba07.png f8cd0940ab.png 55d7c2ef8a.png 92b7e5def2.png 35277a6516.png 4820132bfc.png a619fde3ae.png 3b36b4cfc7.png a1f432ecc5.png 02f62a671c.png 6cce97a933.png 4b02d1de2d.png 97a19e7d37.png 5d4578efd7.png 7eb296821f.png e1e4f6186e.png 6f6ed73e26.png e4ada88a55.png 54668cfc5b.png e9fe017cf3.png 5433c8a5aa.png ec1e7c99c6.png 0381cdf44e.png b69bf71d8a.png d9db7ad9d8.png 9c90708fb3.png 76b63181f0.png fbc13a5b47.png 9da76dae32.png 3648353086.png c5ce3b7c0f.png 117ac75de0.png f41faf6e43.png cfc651fc58.png 69840acbc6.png 4ca0fd980f.png 899172e5dd.png f836633c5d.png bab434d0ba.png 931f8f7623.png c8a43265bc.png 374b8c1563.png dd7f87e316.png bc056b97fc.png 536def7060.png 6840d101a6.png 11bb6f999f.png b850c9ac3c.png 9772fe6e9b.png 19932718b7.png 33c2d43d95.png c38f7daf18.png bdeb6fc911.png bbcfa77705.png 291c027b3f.png b6274f23a3.png 8ea497ed9d.png 6af3f7f682.png 71022f79b0.png 67377e2624.png cca35c91c7.png 3e01678748.png d76ab972db.png f420886e62.png dd8a561e4c.png 3e47574443.png 99e00a4567.png 4f8a095e23.png f6d7d74093.png 3ae98f57f6.png f2f31ca428.png 97866aac0c.png 4454298e57.png d78179dc1c.png 4a30e84131.png 8b6a124c7e.png 9700b1dd12.png 2f425d379e.png 6a2861f265.png 9559ab8b64.png b4f0255ba5.png f56e5373a1.png 8f0a738345.png 1283b9ee2f.png 59519b78d2.png d5b11bbfe0.png 31c01817bd.png 1da9e3d14a.png 71158cec61.png 15a864a1d7.png 8dd1373b0a.png 73cb41b13d.png 68d1cc2e33.png 11a9828601.png ad9cf3c2b9.png 55b630dd3b.png 362de7e871.png 0c79f66275.png d53032aabd.png 41fee23985.png b96e52844e.png e5a9192e3d.png ad2be130fb.png bcbe49c82f.png c20578d4b6.png a8bb069a39.png d36a3ca700.png 799db836f6.png a53cf7d9d9.png 5ea1a7508e.png 84dd68008f.png 09ce1453ea.png 744cda657f.png 479f4e8b6f.png bab082fee3.png 960f8991c8.png 4711ddd4a2.png f78ea315ec.png 8755799352.png 952333ee99.png e0377b9bcd.png a68923cc57.png 7a3bff0c21.png a157bacfbe.png aea6c99c49.png 5b4089af99.png c931414489.png 57f9c7cc29.png 6751604e2d.png c62768ea85.png 46bcca523a.png 3b408e43d0.png d2bb65bbd0.png ab644f4608.png 159ff83d6d.png 51a67d4268.png 9e545de5b0.png 081bdb0060.png 493521412a.png cca0ef0b2b.png a14dfc9c23.png 6b22fa7059.png 0ff62b7139.png 8a2afd812c.png 4607195958.png a889481fa2.png f5d9f8e9b0.png 78d992d2c6.png 6fd673ec85.png c52c863224.png 3d40103812.png cdb440a4e1.png eb3f2d1468.png 5651ff20d6.png 3ee7e5d5ec.png 9991480992.png 735aa737ea.png 2872ffab1e.png e0c928ff5d.png 502360ae46.png b49679bab9.png fd119c8d2f.png 7aa9ed1476.png a2437f978d.png 751ccfabff.png 267efbb1f8.png d8d1ff3d49.png 7c46ee160d.png 290f496ffd.png 36ccc5a8f9.png c75a92a0fc.png 373e714f3d.png 8d71ff6d1f.png 51d27e732b.png 6d84c92dd5.png 50d1ebb96f.png 887c27bbe9.png fda5468e31.png 19436cc9b9.png 9525b60672.png a00a1f5133.png fdc18ce87f.png cfd6f05061.png 81da51a1b2.png 167025be93.png cf39a7aef0.png 221a787935.png 892f66c867.png d59fe2fb62.png 000a68e46c.png ee1312ac0e.png c0c83b4e07.png 26320df569.png 031709c0fa.png 7744768972.png b7ae0829e9.png 09aa9bde24.png dd1b4b2f7d.png 6b8ac65560.png 5554fc278d.png df9a4986d7.png b6ad668266.png 62f191ada1.png 09020d5904.png affc79d07d.png 8f399c3cc6.png ce269253a0.png d20de74c75.png 9a171b49a9.png c96d3d7eba.png ce6b910fe3.png 5d2a7997d3.png 9347eca0c8.png 0fbf0f803f.png 8346a9c748.png d0cf409725.png 64d3566e09.png 2fac24e793.png 300ad77caa.png 16322de21c.png 13709c6a2d.png e428876d1a.png 6385fbffc8.png cb33ac262f.png ffca8b12cc.png 20ef62f227.png 4071dd4858.png 773932c485.png 42becaa75c.png 79dc99b54d.png 6b387438d4.png 769620862d.png a6935120c2.png af08b134ef.png 5fa15f3d6e.png 3efd2d1d03.png 21caa62f95.png e361151ef3.png f5431c0d2c.png dcaec58c8b.png 0fc11f3da1.png 79f95432ba.png 066803e978.png eb4d9e16ad.png b67e8c0e8e.png 35d3bc7c5e.png 6250becb42.png 73d7fd7daa.png ff0a22953c.png a713287800.png 76fba60faa.png ab7bb7a149.png e5af87d93c.png cc3cd53279.png ac91198928.png 0cbd2440cd.png 7e23d561cd.png 74fb9f65d1.png 4e42f26a2f.png a48358f1bc.png a04d442538.png cb55032676.png 165968e004.png dc3ff463f0.png 1226755483.png 96fbe949fa.png 5c18909f08.png e54944e5bf.png 787813e948.png 355a7edcb8.png 2794ebdad9.png 65e6f00f4f.png 8ceaf79e16.png fd84c2ff6c.png 1a66074498.png 7d561f388e.png 83f67afabd.png 08b63f1442.png 04e5d3d26a.png c424ef2d35.png 8d1856dc1b.png d83d9f26b8.png 7d73751ac9.png 7366dd0525.png e22e1ac585.png 6856dc43a1.png 634aab7a86.png 4e583649f3.png 4c3a64cb0c.png 4f8c82df73.png 34fee0c28d.png 4ce77cc568.png 67cb2d8463.png b9cff7bb67.png c36ea2b661.png 6e4a4f8843.png 17ca457cff.png 4aa5b85fb1.png e61d5c8b3a.png 77d71dd60c.png 8518809291.png c470fd3fa4.png 894f88afd4.png 66ceca6202.png 366dbb8cb4.png da6ddf9739.png eb5fd4f394.png af8fe66d63.png a3b4801717.png d24045efa2.png d4703bff2c.png 7cb8401bb1.png 4fb16587b5.png 63b871232e.png 57c0f3cf2c.png 79e562058a.png 65556f12d3.png edaf99ea34.png 3c916033c2.png 62debbe8ae.png 33bb699ffe.png 3b1004b99a.png e694b95fa4.png c2e472a205.png 5f1bd25287.png 5bc16d8dd1.png 0e0efa0166.png 90ebf56f6e.png a4d44e2c7d.png 80db571e2b.png feb9ca88e3.png 4a4e33c15e.png d35a7e87f5.png ee308764e2.png 070ab527b1.png 5b281d742f.png 57cdf8ac6b.png 5a7d0e837a.png a535f4e908.png 2dea78df15.png 95d55a10f2.png 1bfba17615.png 75ec408017.png 213e942c77.png a6f63524af.png 31c6a2860f.png 00aaa5b7f4.png 6852ac83d6.png e2070fdf67.png ac1854ccd3.png 4b04101375.png b97ac031ff.png 2cf50a51a0.png 7e713574ed.png f4f94415aa.png 4a021e9e3e.png d1b3ac82c3.png 709f59e611.png 4d7ff23978.png 3606703e6b.png a06546807e.png 906cdb0f91.png 837543dddb.png 1351d43f41.png 920d7f4c5a.png 5bf185daf4.png 92d0113e12.png dd3d4091c1.png 688b56cd43.png cd09e4859e.png 2959cf9916.png 0a9712e8a5.png fbc0199119.png c491ef1f9f.png d2d362db2e.png ba38c8759f.png ecd210735f.png 42f9e766c4.png de2ce9bf28.png 4c99a92c2b.png d71590e987.png d57917d8d8.png 38edaacd98.png 5f28c579a7.png 51fd24701d.png dc47477270.png 65ee9780bc.png 7ce692067e.png 4487941235.png 683fb67c92.png eb735d8274.png 92564491d9.png fcaa836106.png 5f384be473.png 0f054c214c.png f26273bfeb.png f64e69ccfe.png 08371860e0.png ca1b6771a0.png aa0e831f50.png 99b27c5760.png ea4ee37cea.png c2b6747f68.png 8a9780932d.png 6d545391d1.png 1e889b5203.png dd92524ddf.png d05ad715e2.png f21b46a988.png 943daf2fcb.png 93facfbb35.png b44efbf44d.png b722380b7f.png f3b0873046.png ac700035a2.png 68220c08c2.png 5a69e74675.png d50b6c3267.png 65353fa69b.png 44e0f2c9c7.png 48e86df5c9.png 96196151be.png 28e55ba73b.png 09fbd62e87.png 1196deafb1.png 41be9a5164.png 953860af74.png 4fbce04350.png a336eeacdf.png 267d02b0fd.png abaeb87b3f.png 82d65941ec.png fc7fa22730.png 4acda6877e.png 651a594743.png 7922ae6d9b.png 86a1ed83c3.png 5d318847b6.png 2f673006e2.png 1e94d3d832.png fd5cc36d93.png 8bef77c6f4.png 68c205d1e4.png 7639365121.png 5fee7724fc.png 256c8caa20.png 49c3835f0c.png 45caeb65cd.png 4782e66916.png b9463e78e6.png 17f320bc00.png 68dfacddd1.png e59003dfc4.png 8f80ef62b2.png dfbdbcb4f7.png e8827bc832.png 64266e4d4e.png 8baac34c90.png 12503e67bd.png 2643c25e2a.png 3974e9d32e.png 2588e3481e.png 4730f5a23c.png 0c2778b69e.png fdc2d50f42.png 375a8da879.png fb21ee1ab4.png 566e168f8c.png 552467d680.png 40e3262fb1.png 3e991d73fa.png e2fade489b.png 933d90f822.png f3a13b06bd.png 3287f756d4.png 62f02d3e0e.png ad7ac7b47f.png 060e0dd7d4.png 5bb5258677.png 6c10ab3d93.png 1001eb37e5.png b1b0090486.png 4f1c44860a.png c137884306.png 1144b8dfed.png d20e50b054.png 178f33f196.png 259c78b1f0.png 7ab5edb803.png dbb637eebf.png a03848e48d.png 163dbc14cd.png 96fce23186.png c539d447bf.png 6331b430fe.png 84123cd149.png 38263b36df.png b9fd7d330a.png dc3c0c492d.png 6237eac159.png d941b83446.png 2d9abe1e25.png 20d0d1f973.png 66236629d2.png e8d5563783.png 0416ba85bb.png 22594a646a.png 94dc4409ce.png 734bcacca1.png e3699b796a.png 4d19875184.png 536b6405d9.png a2c8d323cc.png c44a16349c.png 899d1000fe.png 1832ab22f3.png 7238a260cf.png a87c29bf6b.png 3e56432fea.png c6e3a3feea.png 0db6588bf9.png 3011508959.png ecf74e005a.png f82cc7ffe3.png 15691df1b1.png 032177aab1.png 00d51ae232.png 564f4cc077.png d43149afb9.png e236f6035a.png 22c42f88ab.png 0bec31a789.png 2bbba74c54.png e169daa2d7.png 6284db1276.png 2135dad339.png 8bb4d98d6a.png 73658121f9.png 01eab004dd.png d4b9cb057f.png 7b5e37063c.png de2d8f0fd6.png 7d2a222b14.png b4a2b76dfe.png c5d8f51521.png db714e7d68.png 10c66588d5.png 82c95a0ab4.png ab301a4e93.png 73a091665b.png 01b134167c.png 43b65acf38.png a2c697968b.png 76afc4b8e8.png dfe6acb4b9.png 2777901446.png e2b7d2f1ca.png d0c9e7f9c6.png 986f9cb702.png 83e2b18761.png 7dd235711d.png ceedc60808.png e03be6ad65.png b12a52e09f.png ec2fb1a42b.png df3fa9de04.png ead08fb62d.png ce2c3ed5c1.png ab1efdf03a.png 4c89d6ba5c.png 98919a128f.png 1215d3d0e0.png 3d158db770.png 31d2ea0306.png 2fb7fa40ee.png 58b6687314.png 79f1ed9ebd.png 4ab227936f.png 13be34d712.png 6e634a6fd2.png cab90fda72.png 56b581d1ca.png 259262e35e.png c8505be4f8.png 661a4a99df.png 7f9f059f8e.png 9b76ac365d.png 03837c9b48.png ed11bbda4f.png d9aff0b72f.png 1410a2c9af.png 0a6605d064.png 0ca984e5b4.png 2e1af0654d.png 4dbd529a9a.png e9a1ccaee4.png 3a479d449b.png 100c1f042e.png c901e3db9d.png 435935f0bf.png f1c78adac1.png 59ac415c45.png 2fb64df4f9.png 9f7f3b3c88.png 12eb26825d.png 1f00c16021.png 3e7f8f6b33.png d15e59193a.png f066ef45be.png 21ee8615f0.png 94f4c2e264.png 94f94ed836.png b7838fa9a6.png 29940401c6.png 777a42ca36.png 98b2dfadb6.png d96f1003cf.png 21036cd656.png 6206b55810.png f2ff5ef2b7.png eaadfd33a5.png ce69bd4ece.png 79950869a4.png b4c5f0d153.png ed22b7c4a2.png 32b6780741.png 4287d43823.png b380fcfa80.png d802b933e3.png b1d038b961.png 1a2196365e.png 4ae24ea066.png 147a36429e.png 9bc6f25a04.png 4cdff73936.png e09e63b36c.png 05e6941139.png f49f7aab7a.png 5a3ddb7980.png 6c9e7df548.png ce062742bf.png 4cc9c51c09.png cc3fa7233a.png 4aec150e7b.png 67b6a5a9de.png a3c6ed959e.png 6e5f8caed6.png 75a285c615.png 0e9bd4e164.png a4cede6f59.png a630afad97.png 87dcac9eea.png 677f4cbc88.png 229a939c86.png 14f01b8876.png 05a54ab210.png 3d57917af7.png 3831b3ff1c.png 28c4c062c6.png 6b2d8a1c1e.png 25094044ad.png 0ce88ce9c7.png f2b0f2cc91.png 961c64fe51.png 8df7b2c99e.png 4f684f7764.png e7e1dca0aa.png 6aaddb7b41.png 24f57fec17.png 73cabef9bd.png d3b4bcf92a.png 230b7b8d21.png 70e6f8f3bc.png c0572f0f52.png 4bd29d99f5.png 0b10d5525d.png 4df9af6dd8.png 56877ea14c.png 1d5ff29422.png edc9216897.png 4150e85a49.png ae9da06afe.png 314b80176d.png 1eb92902a4.png a40e1112da.png 9d9988ac9d.png 84a42703ee.png 78153bb977.png b788015db8.png 9061243d58.png bac45161c9.png b804c702fe.png ff29cd153f.png 527c9dd65f.png 2cd4095182.png e8f2ace48b.png a11c4322e8.png 17ef7c6253.png 63f3762727.png e1721bfe62.png 51902003d8.png 9a76952b63.png 1deb46ea81.png 3825eb8722.png 31aa522509.png d3757f9885.png f49380471e.png 6350e7b9ea.png 50580fb78e.png 54296f679c.png 85813f234e.png 3c975c06cc.png 5b7d9ed799.png 7cb4bf1ca6.png 39b07bf42a.png fd6cc6ecbb.png c00a5cdd62.png 076670cc1c.png 8b27b0910f.png 7f45ef3c24.png 2f91b6f34d.png aec734e4db.png 5d0410b2b2.png bfed194c18.png 553d0ed5c3.png 5a06c45958.png 0d15b3011a.png 88ba38dab2.png 525fdefea3.png d376de0a55.png d7e63b028a.png c172f3ca08.png 17d4b5e4e6.png 5b0dc2a3ca.png 619fa9083c.png 2230bca035.png 49aeb06689.png c2ec2c9de4.png d607fd7e0b.png 033029547c.png 5e95c5418c.png 1ddf6944a7.png d56c4da533.png ee4a501d81.png e2775a3b33.png 7d2ad19738.png d934a53d9b.png 1262067f6b.png 06665f87d0.png e778f4c95f.png a0447d64e2.png 8a83f122c0.png 1b7ac7bb31.png 538befb2d5.png fed6020461.png b0e07dd157.png 3c0012cf47.png f389e1ad02.png 68f0a9f47d.png 98e63a2729.png 23dc46cef1.png 8ac0fe0392.png 8976fa79e7.png 4801e6c341.png 77b35c01c7.png 875e1a2d73.png 8126503a2e.png 99d18ed201.png 6f452a72e9.png 5ed1c2294d.png e5c3b78df0.png 447e2666f2.png fbbc4ef116.png 175804ae16.png 427387c25b.png a7c9e07706.png 9d9a5cfece.png 4f34c7f252.png acdb7877fa.png eb86b8c715.png d91a887ed2.png bda6b91790.png a20f3d52d0.png aa3f48ac07.png de69685b70.png 86321af3bf.png 82e0f71730.png 14d9b671a4.png 1d8a5c0fb1.png a54d55c572.png 14dbe534d0.png 52fb476677.png fcdf222153.png ca5226f983.png 9d2eafece8.png b5b762cc9e.png d7826e339b.png b4e067c10e.png 0910edcf69.png 84d6b146a8.png 1cb2fde971.png 7194629d17.png dc9070258f.png 1572629edf.png d037cfacb1.png 512d7e9115.png 86142b66cd.png 356d5e4e49.png 4af50b7c23.png 46d4cce6b7.png 343ea5c3b8.png 29b42ba485.png fb8d42aeb5.png 5fcb672d96.png 8b3edddb86.png 13e1e4670e.png 935329585f.png 87db3bb36f.png e04715a8e5.png 59641cace0.png 6aa4963e22.png cdbc142c7e.png 42d68dbc86.png 48c7477de8.png 0c065a063b.png 8f64d370c5.png e8f48a2038.png 8280397ff7.png a3bfc5a549.png 145335fd03.png 457b6caea7.png 4dc913ff73.png 50ac0f2474.png d65ad5c777.png bb173e1ef0.png 0d9f17158f.png 9877b263a6.png c36f7b3920.png 9ca2242c33.png be5478366a.png 967958f50b.png 4757068b17.png 6193839fa8.png 92cbec90ac.png 681910e8fb.png 24621be803.png 533c11374e.png efc0369a2e.png 9bb238c99f.png 0a746dfb52.png 6550e7b59a.png 55d3fc0419.png 63824b7412.png 98872fcf4e.png 2cdc2c12a3.png 58c362e010.png 63d0049fd4.png 74575644bf.png 6e1232c356.png 91f07b5bb6.png 4c4d0194fc.png 36cb81c54e.png 389ceae5ba.png be088426cc.png da8c2994e7.png f8ff29eba9.png 28da93197f.png fcf5a2aa19.png 238dad4016.png f40b354125.png 6b36c0a954.png ff18770185.png c69942be7a.png c95b654fb9.png 27c890d8b3.png 43710ef977.png 5a0e07149a.png 8f4b5f835f.png 2785d33497.png 1ddcb58933.png 24efbcb089.png 57df29302d.png 2d230a0550.png f4365363ef.png 26c09fffa8.png 3f8dab943f.png 2832423eb9.png 715faa9d3f.png bef04e89bc.png ba47b8d963.png 4d0a24c425.png a7f6142fa0.png 37742e5f10.png aa0f87b252.png 5ce76a572d.png 9dfb81996b.png aeff4535bc.png 54af8e4d2e.png 95d6538296.png 85ef988548.png 4431e6768e.png 9991d31572.png 7caf112c28.png 9dc2a6667a.png 49960a0373.png 9a4c770131.png b0c2b9a9f2.png b09d843d5f.png e3fc4ea5e8.png 53cc45fbcf.png 3d12cf2051.png 3ca09d9e5c.png 37e459b035.png b6c3fc77ae.png a227e7f1da.png 5a3946f871.png 2e80aec171.png 136a686679.png fec37b496b.png a95461312e.png 36a2715c09.png cd34f93d5a.png 4b264383e4.png 83eb3d2cd4.png e4970114f2.png a28e9a56a4.png 690b29e4f5.png fcbda0c85b.png f0db14f93e.png 910f26f2e7.png 97ac7d5eee.png a235adfab3.png e085780d3a.png 772ebad9a4.png 8c860c8b88.png 2565d98748.png 6169381013.png a1dd97eff3.png f90accfd37.png c0b9277880.png e589937bda.png fbecb60564.png 93bcc09673.png 38d61f0fef.png 1bff16cb1e.png 3be5267c36.png bfc495e840.png 536decbbed.png a8718f10cc.png ad972c7127.png 834437456a.png 11cf17a0ed.png eb84ce7263.png b00430ef37.png 0c1a420b5c.png 20f0e2dfdd.png cb36e2e2ae.png eaef4c3a5a.png 84d1245b1c.png 4555582431.png c1d9f5d8d1.png 4fe35f1f53.png 0c3cdc4486.png 164530d3f0.png d89c8c4e3b.png 92165511b1.png f4f0625dbf.png c63a278bac.png df4275e6d3.png a26ee36d15.png 9de0eaded3.png 12de44ce0c.png 1184b70b09.png 547b7e3237.png 048ced84d2.png ffb5a4a57c.png e3b8f5e02b.png 220066ba05.png eb0707f881.png e3519d5537.png 7c0d3a28a1.png 24bb32f0f8.png 72e90f437c.png 4e4fab3bf3.png 38272bc266.png 50e42267af.png 68a5d5d7ce.png 36c2188143.png ba0260e3fb.png f777740f86.png 4501df1f39.png c4a41f979d.png b5ed436d27.png 649c70eab7.png b58742de47.png 876dd03fbb.png 8b1d451770.png fadefe071c.png e3fc3bd709.png f5abd9a08a.png 2bfe79c7c6.png e3493e23f0.png 2ad1ace6a6.png aaffa385df.png 10aa861f59.png 3adea2aede.png 495f652399.png 4e8167fe05.png 1d7bb8a0b3.png 8507aeb1cb.png 313a79ab24.png 5375adb7dd.png 5664870cd3.png 368fff8ff3.png 9f75213aa3.png c3ceb42632.png 69d9edeccb.png d9cf5a971f.png 10d142f54c.png e855773fbc.png 2c7f7f93a7.png 9896d6ac33.png cbd8199a3a.png d9fe7e4fce.png fc017371d0.png 8ae4c4eaf8.png f273589439.png d728765746.png aca781ea7d.png 34adc69da6.png dbfc10558b.png 4645308ab1.png d6e01e97bd.png 38b090e4a3.png 22a2288e0f.png 15c043279f.png 9666274ded.png 17e9169813.png aaa30aba1e.png 17fb9d852c.png 08017b8e25.png ad04472e14.png 9993baa4e5.png 663821acb8.png cc21d3af94.png b6bed493ec.png ea314f7c7f.png 53d4c8a52c.png a6fad0fb3d.png 71e937b285.png afb4b98b8f.png a468149f40.png 5cc4cc40f5.png e5632bb2f1.png 69af036eb7.png 6868facb17.png d8ca3bb8c8.png 34625fbc1c.png cda102a81b.png 4789404953.png 8c4f5c8935.png 82ee3a1413.png 6e2ca15d41.png 00b6d3a31f.png c768d42da6.png ae8823b009.png 41d2667f7c.png 4cf99abf91.png f7a8c1442e.png 093e16bfdc.png e2f17cf732.png 9ccba7ec23.png ac1aefb611.png 56dce16be5.png 63a0fa5b43.png c9512a289b.png 569214f149.png 7ca0a71ed2.png 598ec4a143.png 0a8fbf4379.png 71f0e0759f.png 20b000b00b.png 2f07cfbb01.png f369ff14ab.png 84d61225fc.png f1c0279b35.png f66b4e58d5.png 75ab739866.png 5636457570.png b169f405fb.png 2b157ab430.png 690fab72e2.png 80d7cdbbed.png a2b3dffa6f.png afcddf4696.png f3c5b41f11.png d3d97e53d4.png 7f7fcf0a7b.png 328e232d2c.png eb8720bb47.png f094e60180.png 74cb9f9a6c.png 3f57f5288e.png 54b1c1d5bd.png 0fb8a865dd.png a6b5ba6921.png 1a7497f2c6.png 5d36a9659e.png 007c7c7dcf.png 4b50ad0e65.png 22a4bbce52.png 79e829b445.png 27aad9dc3a.png 0bfed731a5.png f44850f63d.png 00a6bfc7a7.png 15c58c3f7c.png 1a5c58280d.png ecda478e37.png d528409626.png cae81d44d2.png 02ad64d551.png a8c3aafd2a.png b32c994c11.png 52c9a7d0ea.png fe6361c582.png a8a8e4949b.png 3659fb63e1.png 7aeffacb7a.png 0c9ce1e818.png 6a3da583b7.png 8779738220.png 97ea7698b8.png af1b38af1e.png c2eae5cd30.png f976134657.png 76b6c9025b.png e2c081fd15.png f72edf3035.png 78f7d2a79b.png 591ea9bcdb.png 6aee0e5621.png d7d6a4e742.png 9106efa654.png 7a00981494.png 6bdcbd78dd.png 2e6d2556b4.png 9f5029183b.png 0be16f65f8.png d2e5dc1a0b.png e891e8cdad.png ccfd0dd652.png e224e91c50.png 80d05ebf2c.png ad212e6869.png 727c1d5dbb.png fccebb487b.png 566fce5ef6.png c42a96a61c.png 9f2b973eef.png bb6a397bf9.png de20d35e16.png a41339b815.png dacb8bebea.png 622771eae9.png 6bece6177e.png 093433e9d7.png 7de8a54df3.png a6d2bf21fe.png 239b0528cf.png 80faacb8c6.png b4cdeee946.png b2aa9c7f1c.png 002124aa19.png c51edbadc7.png 9be67d911c.png 716eb65725.png d034695ac3.png b43dba4531.png 3da8ee4c09.png 4bcd073e5e.png 0c66d31a1c.png d0e95cbd2a.png 79cdd2b60f.png 5910423829.png e4dbcffde6.png 6040f6b5af.png ba951493dd.png a39dc1c7d1.png bd388b139f.png c0b1d5f314.png 3b5368ede9.png ffecb03e46.png 3c50c38749.png 5fd8556f1b.png 5593543b84.png 2407342da4.png 5bd4b0d116.png 9327ed7fc3.png 6288726a58.png a08783f5fd.png 9501e38344.png b2343c89d7.png da98867337.png 103035b94b.png 9f6d0b9e30.png 0ea4e8145a.png 22e0d4d976.png 0f23861d30.png 49c5661e21.png 239f80dbf5.png cce73f7dd4.png 3ff987c2e4.png 3139acbbe9.png 4230e4510d.png 0bf3bff34d.png ccae28c451.png e1cbce6620.png 617f00b8de.png 58bc52866e.png 67840ed90a.png e4705d28d5.png ada919169f.png 3d882b8d41.png 40fdadad5d.png 2160b09db5.png c92ae135a1.png 450715077f.png ecb3bcbe7c.png aed722bd3b.png f63f03c926.png 0be8956e00.png 5a109d6ff4.png 3f325903d7.png 1ad9ccb904.png 4f29c4cd04.png 38416b901f.png 8fa965a12c.png fc74f77bae.png 2b4049f833.png db0fe6fc41.png 5a80185b1a.png 51ed1f2aed.png b813b28cf2.png f92998b2d2.png 32fc8d7cd8.png 77d0c793f9.png e96dc1f42e.png 6347c18183.png 33c2c53893.png 203bd03cd1.png 4b59ccd023.png 8ee22588c5.png 77f958ff1b.png 5cbaa0c09f.png c8254ec3b4.png 9bde066865.png d129dd38da.png 82b1901574.png 8a48b37b4e.png bc5ee6b256.png bd2a2c0b16.png edb300a0c6.png 550ffbb9f8.png 7c55edb677.png b2a129276d.png db5fa9a654.png 701c8ddc8a.png a5b0ce8395.png 520c426a43.png 420447e7a6.png 328ac22108.png ea1d553565.png 8cb3525ca4.png ef719ce0f9.png 3d969bc3cb.png ae14c389bf.png 53560dfd35.png 1f320a021a.png a52f9258e6.png e432bbadaf.png c7f8839a1e.png b0869b33ce.png 198b605afd.png 7f196f6711.png 7fa55c8e4f.png 42c6942544.png 747141df74.png 96dd878ace.png 3fd9c0ffed.png f8723f9dd2.png 60cad4fd1e.png 9b9c0f8eb2.png 97c42503fb.png 9c6b016819.png 6dd12af82e.png 5358961921.png 4289f167b7.png 03a2677daf.png 9e46a3352e.png c0e834f392.png 1a407db63b.png c2db0d0a66.png 213d9163c6.png 78211a2b74.png 4045285603.png 0ea4f97315.png 04c4a4acdc.png 59b5c4accc.png 363cf09985.png 74a6423226.png 3f377767ea.png 98d115e32d.png f81a3e3c9c.png b329875de2.png cb63ab8cde.png 75d91acabd.png a487cbafbd.png 7e584d50b4.png 75b273372e.png 3e8b104f48.png 4c4991aaa9.png 91c4dc1e59.png c16f939a6f.png 98e2d2aba5.png 68cd77317d.png 15921c04ea.png 2c27610d37.png 841fe8b503.png c4902fb3f1.png 195b9ae705.png b368971dc7.png 1637d12136.png ce8add65b4.png f30eb09e9c.png 25fdf34ca9.png 9a81355819.png f66e94caad.png 464e8483f0.png 01dd84b7dd.png f7282eff57.png aaf2dcbb36.png 6614d038a7.png d5b845a346.png b16bea9a38.png 3eef3e190f.png 7ae288db6b.png 7b7c7b6488.png 52346bbc4c.png cad643a3b6.png 403a7b5de7.png ade356fe0a.png 731bd710ad.png 2a4a5d2b71.png d6a0d579f1.png aa8b2d0fbb.png b20eb9e813.png 48b61d9b9c.png 75cae57c64.png 82a15ecee7.png b2d7e9d9b0.png 5febd850e1.png 49a27aaaf0.png 3606ccb4e2.png 7401d2fbbb.png 14f25502c5.png e32452b10d.png b7fcb32056.png aa4cb435c6.png 1240a6ce3b.png 52b98a62e6.png dd15ac9493.png 9017195c55.png 5bc61454ef.png 216f53089c.png e5d57c3fbd.png bc26da3339.png 0aa90143db.png 90fd5ae87d.png 4d77975b6f.png 6e4ac641d6.png a4dffd26d3.png ca7c651e29.png dfced982a4.png 81fdac0b58.png d4afd342c1.png 15586bd7ac.png 2731a8327c.png 446e131acf.png 97fcdfcb2b.png 6b5cc16048.png 0e5156bf25.png e238748543.png 5ca63e94e9.png b7c27ed70c.png 81c9c9365f.png c24839469c.png ccdf60d661.png 6be85fecc3.png 868a08ed2a.png 6d7774165a.png 39eeff5b3d.png e5d64a2aea.png cbc5bd4021.png 173b15430f.png 22546c69f1.png 8f13f14cf0.png 5bfd9e78d0.png 875b8313fa.png 9ea6ebf3d1.png 7fa98fc471.png 08b117294d.png f876ebe60b.png 39377f4740.png 8bde7fa6d3.png af26a47641.png fdee9fcb31.png d5b547eaf2.png b47ad209d4.png 901c578a64.png 7562462083.png a35093b0f8.png 3e47fdb169.png 1a0975b0fa.png 442fc1d9de.png fa230ac409.png 9a836057bc.png 917971eeb8.png 29bf18e23c.png c8bd931f39.png 511b704f00.png fc835386e7.png cd9d726e26.png 8441ee9ffa.png 31d9475776.png 01f2b031ac.png 370ef12310.png b2d4c41f68.png 86c8fd7185.png aafb84b530.png bf8525523a.png c17dd92387.png afc846e1e5.png 540c5a8294.png b9711af26a.png 5299cd2c33.png f9fb359f7d.png b9a3a4935d.png f6a63121f1.png 6c65ab86f5.png 577c96c270.png c2a2ad1fa0.png 44c1acd6e2.png 63a1777e28.png 3dfef75f8e.png 4961bb7a3b.png ff55cc5361.png f6ece7409c.png 076eb6998e.png a00d39a13e.png 235fce1c1e.png ac872800c9.png 3922843c4e.png 6a73082b55.png 24d42d4499.png d5992222c3.png a99b61c527.png e040765722.png f614477668.png e5bd8ae238.png 24cd295677.png 0d41d039cc.png 2a0c3c2aee.png 639103c523.png 30f085c4e3.png 277be83e7e.png 5b807c2235.png 290b6aeb20.png c2568dbdcf.png 79b39472b7.png 43287380d3.png 553c6f13ab.png 578c9f94f3.png 538b835716.png cbf0cdfe2a.png f1f5ef7e45.png 2567b0c9de.png 1363323721.png 553655c199.png 42ad1eb10b.png 4bf7663d30.png deb49604b1.png 6b7f4a1a91.png baca775a49.png 6a49954583.png 87c1310f25.png 629d13dfeb.png b0c03d1040.png f68ae5fc4f.png 86c49fac6f.png e00acaaec7.png a4554beb3c.png b54c2fdf03.png 3b2be010c4.png 06446b9d8c.png a4e2723074.png 1fd17872d4.png 05ef6e7154.png 48fb4775d3.png 569cb8bb6b.png ac50e41f8a.png 043ed7fe5e.png dcee7f62ac.png 0f2381dc96.png 04e1d8f7ca.png dcba17e654.png 12ad6085b7.png c834d7e9df.png 63ba14657e.png 7808f030a0.png 4555e5fcdf.png 10cbd21919.png 4fb0d65a85.png 02446da877.png b6332b22a5.png dd10c894a7.png ea8a0439fe.png 75a7afca65.png fab534d1ce.png 41ffbf9674.png bc6b14c9d3.png d9e2dab380.png 44678207cb.png 0259b01cfe.png 5cd181b41f.png b5672d535a.png 1c3df8172c.png 720d581c59.png 6f755aad25.png 21fe3bdb52.png 276c7ac1dc.png 4eeb9a13a4.png 6654150ac9.png f6b94122b4.png 76bd3c0890.png 38a89c763c.png da6d3b141e.png 34bcfef7e6.png 9656f8f7df.png b6fc486117.png 00707c7864.png a62d4765d2.png d0aeae2658.png 36c0313b9e.png 0690bc9579.png 67500eb66d.png 4a5681a563.png 643a1fb9c4.png a0fa989668.png 62418f57e1.png 372fc2e2ad.png 8cd612c0cb.png ea4522cf05.png a34b03c4db.png f74a97c2ff.png 068b75c080.png a4dc4e0266.png 32a0e5cde1.png a45f297827.png ea5c00cd7e.png 6642c9d86f.png b6d3278d88.png 0e6f54a44e.png 4313120f5b.png 26a5f0bd74.png 6acd09c3a1.png 88abaec3f3.png 283563892f.png 9b5538c283.png e9c131be99.png 023b29090a.png e93e2f83d6.png 90859e7e87.png fd0aafd8b7.png 965b4cffcc.png a1ebb51291.png 0fcc664e40.png 9decfafbf3.png 3d348e6dc0.png 4e86e06594.png 81560cbf2b.png 52af742153.png b192ef99f8.png 805cb4d316.png 60373566f9.png 576fc986ce.png 0feeb1040c.png 76fa8ec9a1.png 5fae53bf33.png 92abe333f4.png ea7b588e17.png 1c165d61d6.png da720e8d17.png c3ea16ed8c.png f59ae94c33.png 7bcb9044cf.png 6d633872b5.png c8cc1a4dd3.png 92c6e998bf.png 02999b160b.png 6f091c04b8.png 904a5115ed.png e33d753279.png f9f779bc32.png 31d4fdd297.png 3b44dcf59b.png 67dcb0ce6e.png 6b83d97821.png fd31311ea1.png 3b5aad6cdc.png 82db07ac64.png 93badd2207.png c0173ae190.png ad61fd92b2.png fc81b3e307.png 7a26e2ae43.png 04fbced677.png 67ba6c0b0f.png 5c641d8b06.png 81fd475861.png 0b86387a02.png 0a0cc52eca.png 0de8ecce67.png 0daed89bf4.png ee6a9c3cd3.png a66a01bd98.png 8472683427.png 5a93345d97.png 810d63ce0c.png 725c079100.png 82991308ed.png 44b4548573.png 0958fdc7bf.png d2355eb92b.png a11f564ac5.png 21b690be65.png 81be859449.png a9593732f1.png 3cd8674cb2.png 9b933aea52.png b8e3c83fd3.png 8cd826bc5b.png 5a1e0d8d51.png 8f8dcb2506.png 747af0ae75.png 47c58dfdae.png 8c9f8d0790.png f5865bd6ff.png 0e3a142be1.png fe1e39f435.png 41b1e8e333.png 17d27ccb9e.png 2ac1aebb6d.png 15d731142e.png 7d60e50a98.png 4f1c683f81.png fb4bfbfd88.png fa44a921f8.png eae4111384.png 4603c0743b.png a560bed6e4.png ead48d81ae.png c5779b8a86.png 99e331e803.png b5a137afa4.png d9443b3376.png 3bf345cd29.png 78d559a80d.png eeb676e37b.png b14736ed95.png d6b48fc0b9.png 0fbf301a5e.png e3900fce68.png d92a3528f6.png 9ea14f1617.png eae2a8b2ef.png 7d0ab4664f.png 20c468c70c.png bf358cc90b.png b79b0318fa.png 5e8440e745.png b46cb148e9.png 09be9b3f94.png 6ec4de436b.png 87cf093046.png de14d598bc.png 37062e1138.png 93c17f9615.png b6d5ad81c3.png 61291bc911.png 92e4968815.png 7c08e09f87.png 563d40e991.png 4b05f60263.png c9907b0008.png d39077b54d.png baa4f4a656.png f10e03cecf.png 41b11a12e6.png a0f76db166.png 35452780b5.png c42e2dbf2a.png 61071d8a4c.png 87ecbd03d6.png 033c0ecfb6.png 11e4c5d93b.png 7de3a34407.png 754297deed.png e110c5bf98.png 40f2443ba3.png ab7eb91a82.png 759541acc7.png 361efa9093.png f1f93ae87c.png c49addaf55.png 80eae07846.png bc69ed9589.png 5da5ddb2e2.png 2c312d9f1f.png 9e64d5f765.png d5dcc34739.png de682a1eb5.png 61e325ac65.png 74b54e1925.png 938ad4fd40.png c5d0701e78.png b9e6350f6f.png 445ee07efe.png 871cdbe362.png 2ce7a9e81b.png 0b584a37c8.png caf12d30ab.png 0839b6cf1a.png 1c1d062bca.png f0272d1ea0.png 8fb440fbad.png c8a0a0c511.png f9ebff804b.png b4f8f7e136.png 6230e29f51.png b01d2e5375.png a54da7eb9e.png cd3b8db4a0.png c3edae73f9.png 06050de815.png 61ba42e450.png 6e1e4abee9.png c0933729ea.png 6eb7db0910.png 3ba256ba46.png a0fa330a03.png f06a2c2849.png b5b9b37a9b.png 485e70caef.png 0d3cdf8ada.png f9b563d232.png c376dbe602.png 01aa774656.png 53bb18ce06.png 1bd88b6b5d.png e8bda05582.png e6714fd3e7.png e4cc57f730.png ba5cd51d20.png 1b818ee74a.png e4ff4bbfd3.png 67ce646767.png ea3a61e257.png 32d3368584.png 5c635d62ae.png 21337b258f.png 533cb21516.png 3e6b6146a4.png 9121e2f1dd.png 92944e2aab.png 6d4837b498.png 02dae1c38d.png dbc99c3182.png aaac9f9da2.png cab729cc02.png 9c740fdea9.png 5987f0b196.png 3f1fe84513.png f3b6e11340.png 939ec7a920.png f83888b84a.png 07244009e3.png 64691b048e.png 5beb3977b4.png b7e9aeb1f1.png aab9d19cd3.png a01b8c4af5.png 06c6968589.png 021594d8ee.png e40a992524.png 9c44868c96.png a344f31c96.png 115485e965.png 988f29b4c1.png a19a483998.png a443637ddf.png 38049a710d.png 8f25e6d0d6.png fa68bdde45.png e414c58d11.png 8ef841cae8.png f419aaa1b8.png 5c2a235f47.png ab0f420be5.png 277678b119.png f5bae9cdc5.png 9f60bf97a9.png d410a74e8c.png 4ed1276470.png 8d4644da68.png 8f955e935c.png 7ba36e3032.png 20482a66e6.png b37ebb4c18.png ecd1737bb1.png 9834bd4034.png 6db8231d14.png 26c403ce6d.png 726c429e57.png e1d267dd49.png 1ba354e42a.png 0ed6516b91.png 59bdabe3ff.png 864ed26714.png 311ee1dd72.png 8c521772c8.png c955f688f3.png 9f0d6b4bbe.png 4c8dab3f1a.png b4f806f74e.png eb2e928dba.png 5fd6a2da0d.png 441888f897.png 90b82efe82.png d430cdaadc.png c49ef24cd2.png ee609c01b5.png 88bacbc4b9.png 25a18d1cc8.png 4bd2d2981c.png a7f209b6d9.png 6c74777cbf.png 9edc9cd726.png d0a0d48334.png a024514486.png 23e7ebf95f.png 7809e5b59d.png d6b36a5082.png 96ecbfedff.png bd38e4dccf.png 6ad29a5c0e.png 5547127042.png fd0c0208cb.png 45c637499c.png b6e77d3212.png b36d540a8d.png e53d96b2ce.png d2d97caad6.png 4a7c0517d4.png aa10246dda.png 18a167d8a9.png d1154e5122.png 221df8405b.png 879937f791.png 1e60f585fa.png 599c69c278.png 0d091ab909.png bdfa099910.png b129f24bcd.png 7ac46c38d9.png dc35bbc9ee.png 7f7b6a6a6c.png c9b35591b7.png 148227be45.png 43b367d7ee.png ea3b072e78.png 6caca4af05.png 868bb336b9.png d3829ca10a.png b4759edcc7.png 887ccd9e4f.png e93456f706.png 7ed6de6ae9.png 4caf753363.png 4230b78a8e.png ab2ff73087.png e0463d1c9a.png 26ade8f8ce.png b4650d576e.png b0a33197f5.png 833993f5c2.png ac50daa8b6.png 6626ba484f.png 4f4f1baf90.png 165ff6c3b8.png 6d7f1db1d5.png 12867cc74e.png e0b2222122.png 4aee25ccf3.png b0d008f6df.png a01ec79fb7.png e544c8249f.png 85f12fb05d.png 71fd51fbe8.png 991f1104ec.png b75933e223.png a3eff91b5e.png 09393f1bb5.png c5959875cd.png d3c0ed351b.png aefe24c5ae.png eb8e6e0b8a.png bf56f7dd40.png 7e5ffe9006.png a1ef786b98.png a50a98656c.png 73d3d08aff.png 499237cf6c.png 0ffb6cd301.png 13197aa534.png dce832adcc.png ca51c2690c.png e34832b696.png 96b7a3b42a.png ae0582d77c.png bfbeb93dd8.png aa78d862d6.png 4ead0643ad.png 0f7d72f024.png dcb4915c46.png 3778554f16.png 4fa49ff7f5.png 82b5b3d64f.png 6fc195d3de.png fba70b6e6f.png 1f71a777ff.png 531687f063.png 7bb95ab2d1.png 9f757eb55b.png 848fcb838e.png ad58a834a8.png 85548b6982.png 4598c65a74.png 2aa30fc1d4.png 15498a92ad.png 8b7a361aaf.png 447ddaf0dc.png 22c6019157.png 0e92422666.png ed71454d03.png aebc36c11a.png 7959b9bd53.png 9beb6c1184.png 86aeea3b74.png 3474bba21d.png c717a458f1.png 85ff9eacfe.png 742017e5d7.png e297179699.png 4f64946e08.png 80d529997b.png ddd3e5ca3f.png 46a8d5b47f.png 5dc37f7b2a.png 24228899d5.png 20d433a6b7.png d5da2cf109.png 494cc43525.png fe78577b21.png 9b77f7802e.png 4062ebb8f8.png d2d9c7f757.png e2aa5063cc.png aacc6d9a4d.png 3797fc31e1.png d488ebc31b.png 28639f0d4e.png 0892b7c9f6.png 1db85dc47c.png 38cc48d708.png 83dbe763aa.png 21c45388e8.png 7e72764080.png 83be87dae4.png 28fb4363ea.png 16ad51e2ed.png 7e2f5c3a0b.png cb060ff8e7.png 082908c425.png 21cd732e68.png 5edea5c7cd.png a495e667ac.png aa166b090d.png dbe5ab28a4.png 10c40a8426.png e72efea1d1.png 4d522a60c2.png eccb63f909.png 6f509c9790.png a4a75dd824.png 1d417cc926.png cdaa28bbd0.png e9a25067ba.png 4c6c90518d.png a070422df0.png fa2c779db2.png 5a0ac0af98.png 29605d469a.png 7899c31f0a.png 7056ecb2cc.png fa05e43818.png c6c65a92a2.png d2c4ef10c7.png 72559e426b.png c6722496fc.png 826b1b2ec1.png 56fec9fc41.png fcbe9ea985.png 8af8d5fadd.png 9d9f348b03.png e755b8f086.png 7e325e7a9d.png dfe7e1c7ac.png d0a54afbc5.png b0d0386a1c.png 20110b03bf.png 85fe1cb502.png 5dff1ecb41.png 4c5ba6aee9.png d2ae89c1a9.png d7d6cb4a8e.png c4f145aef7.png f7b409e684.png 7a9729505b.png 5af256bd64.png 13c3fb3de1.png 8d1c74ff65.png b88f677a39.png 90efc61382.png 0f482a81b3.png a6f46b656e.png dafc37c9b5.png d99216cfbb.png 17d4d42273.png c5fbc0612f.png fee2a9e791.png 9c4d9fdb92.png 81d51f7eaf.png 7d185a151b.png 9653eda8bb.png 293636b7d5.png 7b9b43e231.png a3dfaa5fab.png c9fd06a1f9.png af7343b7e3.png e3f1cd2bb1.png 521d437270.png 3e75a0f7d4.png e0939d3faa.png 277bfa9b8f.png e86a7ecaa5.png 575fcf27fd.png 35b730549d.png 8f45dcab28.png 83f98d2c24.png efb349eca6.png 1b7497985f.png 22f989d627.png da4679232d.png 93a9e01734.png 86eb3e77a3.png f21da6e691.png b184282a6a.png ff4f821746.png 859c40e162.png ab5278f9b7.png af2901932b.png 2587f44a00.png 98aee6595f.png e7cbcd855e.png 82b62ee3be.png 06fa0b053b.png 0f776d1a05.png 0e1f6f4a9d.png 4f34a8f76a.png 4a800ed06e.png 6661af933c.png 7c530a9085.png 38413a2fac.png 1b818dd025.png f17a9a04de.png e4177132c1.png 60ba38f87b.png bebc672259.png 628dc60af6.png 40512c6d02.png b0e7a894c3.png 93ec7f697f.png 1fd2701517.png f1681f27a6.png f2b63204c8.png f045946cb7.png 431a019f05.png 0fec368473.png f3ce9ff03e.png 914f9a2e4e.png e3f1908c35.png 2662f5581a.png 8d9d768dfb.png 9d302f4085.png 106d450f14.png 6cea60aa06.png 3f35c6241a.png f3bf3050d0.png 8d35b213a9.png c79df71fb3.png c45bc4c599.png 5b01231632.png 28c49076d1.png 3d558ae0c2.png 68b892b80c.png ff3b80b82c.png e82fddb779.png b16b9fa3da.png bed4dce080.png b435f169a7.png f6bf2f264d.png a8a109908e.png 760ce79881.png 7585d90354.png d55f9bcd21.png 6338a2def5.png d4a1f3d6cd.png b6235dcbb4.png 00329dc15c.png 4c92645a67.png 593ae73040.png a562fff73f.png 5b4cec17bf.png a0cc846d2f.png 842cd34527.png a003c71571.png 180e38fa4b.png 7b2ad17f6c.png 2458a5cd64.png 89bb9341df.png 76c44f5b8c.png 0914ccfb51.png b7563a8f61.png d12e6ed617.png fed1be9dbc.png c76d853d5b.png 1f31e73ac9.png 24d5404d36.png 7f76751c6b.png ad8304e634.png 867e8976fd.png 8cbd5b61a5.png 4c33b2dd89.png 89381d5be6.png 47dd1a37eb.png 0279cf7419.png 708da79f31.png 21f003a1cd.png 4f89afc1e5.png 9af3b0c9ad.png 090075ab14.png 69cb0653e5.png c3682a463c.png f452c01d97.png 624f67e5f0.png 2bf2a9037f.png cf58cfcd0f.png 4f3ebfa6fa.png 2191c9ab21.png 6d61d71a38.png 765db22f0e.png 140bb23a86.png 4cf72e5ba6.png 365b34260e.png 3fb234589e.png 099b96c480.png da73799b4c.png 30f19c9e60.png fcfc987c61.png cfd9af336f.png 6d5ed262e4.png b9e9505424.png 2b8d74fcb3.png 82197f0f0a.png c1b12c9cbe.png 2b62bc74fd.png 8f09a3c64f.png b6bb3d4986.png e97033b42c.png 64ac969cac.png 0902703ce8.png d3fb9d5fef.png c1bf512092.png aee12c124d.png 3aa0a9ed5b.png ec807c98b8.png 33c7f692a1.png 979f77d312.png 50bf331c09.png d665b7d9c2.png cc6723c303.png a76d1d833a.png 8fb4b30658.png d53df2727c.png 0d55880203.png 8c9a658868.png 242beacac1.png c455f7be1b.png da33eff7ae.png 7f0a6fb2f3.png bfe12bdf70.png 2a9d434aa5.png 6c00d07fe9.png 39b6ef3f29.png 390dfe1688.png 3e0743ab02.png 0929430755.png c65a7ae03a.png f7b9f874cb.png 7c3c2d6b19.png b45b8b6a5f.png 2901743d7d.png 258e0261fe.png 758d47a932.png 6c0a68de6c.png 4e8f536122.png 052f53097b.png 36841d78ba.png 9b90e921ec.png d230bf4a24.png b9d10b62c9.png 79cb3c11a6.png dd35be7c48.png 32332fc441.png 45c4464cf1.png 29c6630f61.png de8577c69e.png 753ac9f3ed.png fb9d1d06a6.png a54115fadc.png c854388025.png fd6b09e668.png 1811afb8fb.png 923afac48b.png 9981ad3aaf.png f31db080ea.png bcabfde62b.png 8f3c9b3a6f.png d553d1a918.png 0a1b6ae0d5.png 4aaa140390.png 421b69d6a4.png 16358ba5b1.png e7be02fbab.png bba083d347.png efa4499cd9.png d853da3c22.png 9411951a0d.png bb3b5f35c7.png 0c426c1510.png 6e030e29a9.png c120a8aeb0.png 3df20bcdfb.png 04d3cd2444.png d82ec932ab.png 9c0b85b5b4.png 956922a176.png 9ce4cbaefa.png bde08b24f0.png fb4aaea758.png 33f9dd99c6.png e888c2eb4d.png 02c9416d86.png 23bd6495e5.png 12e7a48729.png 0c94055b5b.png 28194875d8.png 2497cda279.png e3c11882be.png 555ab38f47.png e0e9a7dcb8.png 9772738ce2.png ffc6f6f99d.png 132cea196e.png 2e4b5494c7.png 238860d957.png 345b80cd1d.png 222bdb4aa9.png fa63971218.png ec407c9578.png 40a31f799b.png 7f03a3995f.png 32995c6b96.png ec5f9c51f9.png 4a91a7ed71.png 4c2eb1cd66.png 83d4aae732.png 4ff0eb9512.png 54b0600992.png 5e008b90b6.png 3b3e3a9a97.png f5efd88c24.png fb6ed9dcc9.png 835fd78e54.png e267b50b06.png ddbe6bbb4a.png d29316fd33.png e547ff9d88.png 607728ac81.png 3d477a4128.png 3ba7e5581e.png 87de3d4a1e.png 2130994fbd.png 30e8cdb401.png 0eb03cccc1.png b39b67db8a.png 0b42061620.png b983d50fa3.png d3b47c38e2.png af4a92584e.png a8e26c8317.png ed0a59bf6f.png 9c4cf9f5f1.png 545ff25feb.png ed2d89f69b.png 90cec09744.png a425d50aac.png 0593bd99d0.png 7e1e743cdf.png 4194504947.png 538b6e9b98.png 905082b7fb.png 726c743e97.png ce4ceaa5ed.png d5da791643.png fb99f1be84.png 24c04f56a2.png a1ae077026.png 6df052d3ad.png 1adad51ef8.png ce32dfe7c3.png d57ab9cd68.png 934cd199f2.png 1d73d18a1f.png 97c05f4628.png 8776ffcaa4.png 6e3a11fa65.png b303943f66.png 6ad49a6e14.png d184edb816.png 3312ba9934.png 740cf53b4c.png 6bedfa8083.png 8412d2542a.png de5338e179.png c6b2feddd7.png eca8b13122.png 276be2d7ab.png 6cabd17489.png e074d99484.png 94fef33e39.png c64b87ba5a.png 50cd98fea9.png 160cf2c5d3.png f81f9cead3.png 3b2ff53a06.png c7b4b3f494.png ac14003b16.png 57243fcad7.png fa420ff909.png 3b73d2e8af.png 3cae60b2e3.png eb886df39d.png c5627d8c35.png 0afbccca04.png decd39afc3.png c115806ff8.png 857c693eed.png 019766b43c.png 3f4d7ad434.png cbd1b23efc.png 2be9a84d1b.png 220bb859ee.png b5f2602f5b.png 243c97ac4d.png dfdc5ca98a.png 61d15e4861.png 0e2266401d.png ee942dcd44.png 95fc6d05a6.png 441e322b5a.png 99b4599831.png 291a923318.png 7f7ced694f.png b2039444f4.png 2958ce0087.png 604c708fe5.png 4424dfb42f.png 91b90e946d.png 5cc6b64727.png 0d53163eb1.png 5d2c7161fc.png e0294013db.png f0743b3eda.png 75d8153a52.png 0a64d578b5.png 7c383cc256.png 6c467ece12.png 90113ed6bc.png db923ca728.png b87452efb1.png da41e9ed21.png 06b9cddeb5.png bae698239d.png 49a5de33b3.png 6bf32019f9.png a5657750c8.png 510579c24b.png be68195daf.png f2fd5c81ac.png 70c6682b69.png 13ecf7e516.png fac66f7b11.png ae16194c7a.png 2b40a03d1d.png 3d5f63e0be.png 49ba3412bd.png 1a8cbd3a80.png 65fc772aeb.png 8ac72dfeba.png 7f9f7a2bbc.png e4b97067dc.png 0ccce05a04.png 383e701524.png 564763543f.png 11ad04f277.png 9402477e2e.png 53bc10a8c4.png b58913573a.png c3ff8a15a4.png 6090b5c911.png 9897c52667.png e764e3ede0.png 55dbfb0fcd.png a0b47461d9.png 534da81275.png 42c5683e28.png 779c169816.png 9556d5ea0a.png 8899e6ddee.png fa467c163e.png c3d0ede216.png da90e6e56f.png 4f633e2d63.png 58877e2525.png ebe877d429.png 03d1a4e518.png 739c26298f.png eb78f23074.png cee1ebd36d.png a438d5e984.png b2277ba07e.png 9866f4d5dc.png 883284c825.png 9da5d14ca9.png 2e482fb818.png f94f2ddfcd.png da8f12fb9e.png e1e2f5742a.png a2350575a3.png 260b956861.png 2da79e62f9.png 5c2c196072.png 854b912e71.png 33abaa62db.png 3bc996d7b7.png 45aa888721.png 14c2834524.png fd36b0917a.png 6d7b9dbbe5.png 24cfa6ef47.png 1bcab21a24.png 4eba5550d9.png b3962e504c.png 060cfb2d18.png 08274e82fb.png 811261bfe4.png 1470cdc60c.png b9e8bd58f7.png aa4f0df151.png 1f161001b4.png 58f295fd1c.png 36c461dcb6.png 2199f90646.png 3280be0d66.png db52b1a918.png c22f677a67.png 71ce93a7b7.png 275477cf56.png f9467f033a.png c82d0ed565.png 536da22fe4.png 1c8830d82b.png 3175b43628.png d2066b2414.png 6fb061814b.png e63a0991d5.png 21be159d97.png 572ab7045a.png 89634f0c5e.png 67e2ba4499.png bce346738c.png ccc645a996.png 01721bbf24.png 1a0230832a.png 3bb083c7b3.png ce7b81ea3d.png 48c0d1f283.png eb7b4320f4.png b16f497480.png 91b0697d86.png bf1a216ff9.png 117503a0b0.png 53ec68998b.png ad8edbc8cc.png 17df03088f.png d155b45b62.png 175cf3b2e2.png 1f782cbc43.png cf856ef539.png 20f63efb12.png 95ef69abc1.png d5c50fa71c.png 313961f834.png e5416b5ff6.png f30c96de13.png de6a98fcbb.png 16b198d233.png f78fcd6c45.png bbd1b4cc0b.png 6489d78b57.png 0d5957b64a.png 2c157df08f.png 4011974d7a.png 2e1884a536.png 51c67608e1.png 90364abd01.png 4c9a332e58.png 140c7cc82c.png 7c66d9c0fc.png 4620695897.png e083d6d0f1.png 6567f59d54.png dac0ee6141.png efe4a7c5fc.png 7910783120.png d76b5e2a7f.png 3056753c3a.png f33ac8fba7.png f0ba375ffe.png 1b5991119e.png 3e8cdc7e6a.png 5accb79219.png dc2600ff63.png 7dd73361c1.png 9a0aa00799.png df7b58d2e5.png ee0c346a44.png e468cbe171.png fc4be42dc3.png e3ce840258.png 5d47b1f360.png 9dd88fbb40.png 7adfa301a2.png 96c6342357.png 1eac578815.png aa0059cf3f.png 6cb2eca8e7.png 0b41b59f85.png 3f4a3d99ea.png 5dc352fbfc.png 6704437efa.png 4ee453173a.png bd89b15cba.png c9d1f1d210.png c24b739128.png 55810b23c4.png b97e5dc573.png b535380255.png 5ba2224fff.png e1c77c92d5.png 84db0ddb55.png 5d6e5fe652.png 4c1fa719dc.png 50ac343646.png 97246287a5.png d169f9f991.png dd4a11ab43.png 3efcef3f21.png 6ae3ffe059.png 9e8723bca5.png 787ceb54eb.png 8e667cec9c.png 3faab13d3e.png a1db1ba4e9.png 26831e1535.png d17e7b28c2.png 3d7736db3e.png 7195bd6223.png 94bd962c6b.png ab3200a666.png fbc8a6a4f9.png 2c17660e01.png b59cadbfbe.png b8a90a08b3.png ddeb7c04b2.png 4652ed0274.png c90d708c52.png 135fc76f91.png dffb6b3ae2.png aba14b6a42.png ebd833ff22.png 86d22b5b83.png 7587b8363e.png 3136a81ab1.png 2f0f0f38bb.png 25320f34bb.png b39932655c.png c627f6c6c5.png d79d1a972c.png aa9ba4a552.png 7df398e4ba.png fe92cc02d9.png 82c7ad300d.png f03011ec7e.png e4bfd07346.png 1c1aa330aa.png 3c1ee5b008.png d63778e374.png 1d1ca0e373.png fd493dfefa.png 4bcefa3819.png 8c758e47a1.png 1fdb7fe384.png cb2a2e89d3.png 145c06c2d1.png d7579484b5.png be053f21db.png 6cad0fd382.png c1466f194c.png 913fc84bb4.png 7f24dfceef.png e86203f4f1.png b8a51aaee9.png b8dc5ec60e.png 6fb1ecf627.png 9866b8ffb5.png 9ae81a029e.png 4520e28929.png acba470146.png 75907e6bb3.png ff9dcbb5ba.png 45068edcbe.png f70176789c.png fdf190fde9.png 8fb449f918.png 94b29f3064.png fc1292d85d.png c30d453614.png 195450d08d.png 80c17491af.png 5520599432.png e5dd8bbfd7.png 1a241a8926.png c9573d723f.png 964f452e73.png 5a945e734c.png 327b7a01ea.png 2705e93cf0.png c50d5ef081.png b9ffd8011c.png 726f7e5450.png 4f66cd03ef.png 66a4f809c6.png 1dfdd132ca.png 6227359fbc.png a36735c684.png 49a438eeaf.png 840f1a7eb1.png b325cf9099.png 203a330c4a.png fb7ec23a4c.png a1ac36929f.png 1ddca41ffc.png 562cf59500.png c515bc227f.png c7f3dbc608.png ffd51ee9a3.png b26035f279.png f836b0746c.png ac63c9fa7b.png be2ca3ebce.png e2cc98b860.png ac4eff5773.png 69700e2869.png 1d8164b941.png f4a0c6315d.png 553d2398dd.png 6080c9f07c.png e589972dfc.png 74545c82ce.png 54818230e7.png 450203ec14.png 6bdc887531.png 8277c7e8eb.png 6dc107059b.png cafccdcba5.png 814b6d6ac1.png ce66fda32b.png b65e79a4fb.png 962598eac3.png 149eec939e.png 684187d7b8.png 2eb9de549b.png f85c15d050.png 18758d8f8f.png 069780eb80.png eeeb80810b.png 4622cee4b9.png 3a6caba2e9.png dffe0975ff.png c2b94268bc.png 138d9c0a80.png f68ae19c90.png 36a7c1effe.png 21de5cb166.png b42b881141.png aae3d06017.png c73cf17575.png d43d1a6f66.png c7a97902e7.png 2af01517c2.png 832ebfaa73.png e0dddf219b.png 1f841a6f8b.png 0fe88d720a.png 85773f7a14.png 60fb99942f.png f2f055154d.png 89272f179a.png 7b0f327bda.png 0e54c8098a.png 71e2382100.png 1113401d3c.png eff7ff1f67.png f097dfb619.png fdb24056fe.png ea127c793e.png 593f3e9254.png 3f9678c6f9.png 75ac803a11.png 386d47cbe0.png 75b8134623.png 56f72ef356.png eef671c610.png 79949a4117.png 1dcece25d7.png c2e34aa6b9.png c9ce569601.png 51f1a24bbd.png 65449ab1f3.png ba9906abb1.png e9f4699c1e.png d3d8adb2c2.png ee8d380c54.png 7974573fe0.png 390c158f57.png 8e58dad54d.png 5c78acfc62.png c9cfbe1161.png b365432652.png 32160e4b75.png 757775da15.png 7ced00a298.png 77388690e1.png 0b9a1a7a83.png 5d85874fbb.png c021826839.png 9129261f99.png b9281b76e3.png b149724d80.png e8b83b2005.png 1389c3bac1.png 48822379cc.png cff9f980d7.png e082c17bfa.png fcf87c94e3.png 7c5c9f8ba4.png 0b410a0dc2.png 16d83d1861.png 0e899c2105.png ef49e86b66.png 2be52b518b.png cd4db8b133.png 02d63087cc.png ea378e6f88.png d1d46ef2de.png ebe61e1427.png c25ec5b066.png 5eb7ee9522.png 22bc698c3f.png 7172c509f6.png 91c0886bbe.png 7d6ec23f08.png 3860513b01.png 966b3bffe3.png 387265cc0b.png 613d4bb70f.png 9665f7544e.png 3bb5a46a23.png 448df97735.png a4b189748f.png 9ea1b3c663.png 41aae07818.png fe2c23d972.png 47b9dd541a.png 8329088275.png 9f75a6366c.png 48d705f189.png f1f4a8d2ee.png 830f5d9628.png 34b4cd1648.png 7b23a72408.png acad22ecfe.png 71a00195c6.png 173abc7490.png 7fde5cb281.png 0ded804d83.png 8adf3e546b.png e91f473198.png 3cf20ce659.png 240285633f.png 2b3efd7d7f.png 36febb2cf5.png 4b0d23912d.png ffeb06fdc6.png 9293eee645.png a2c1aaa15d.png 1c4012bff4.png c1169d47ce.png 8b6fe1fb5e.png 67358e3002.png ca4d59fef3.png 7074999e14.png c1b9ea094d.png 14d3d242ed.png e3ef53a7be.png 85b57f0344.png 26a380a4b8.png 44c9b9a51b.png a6debaf56e.png ae7fdfd55e.png 6cf84a4340.png a1e16dc7d6.png f3e27d394c.png 597fe20001.png 422ce49bbf.png b0608ba635.png 89d48aba49.png 01b47afbf4.png 3f39e6e1e1.png fa0daef792.png 42c30e696c.png 152a2d8bd6.png 22ca26f94a.png e306f89a02.png ccd8906fbf.png dd68a62c10.png 7520edb0d6.png 093f8b1d6e.png 643180a49b.png 5a74b2e160.png 7bf6203cb1.png dfab2c098a.png e4a5a7227d.png 06f311ebb5.png 4c691b6847.png a4d2a5df9f.png df274ef7c6.png 812a494ff0.png 85a9687a4f.png 2d1bc23321.png 75dd47f9f2.png 24ad74ca83.png 894b6febb5.png 3baa95e545.png ff56914ac3.png 39a599078a.png 97d26bbb53.png bf5f0e482c.png a9199bae3f.png 2ffff5b00b.png c0dc514a7c.png b0e3dba964.png 238f33b1ea.png 88711d54c0.png b0a9170b6f.png 866b8fb98f.png 2ae328c427.png 7cfcdfb76e.png f6d3bcf420.png 35883e7b28.png 4dae4a3072.png ac1dd634a8.png 8995059b83.png d1d882f7de.png a0a1b2118c.png c5cc962173.png 9cf75e089f.png 012daf4256.png f93e29bff0.png bff8269656.png c4bc6757ce.png 36aaae86d3.png 3a6f7f1320.png ae47fe8c01.png be466f2fc3.png 8c498416aa.png c147830d3d.png ee4cf359a2.png df0628f8b4.png f5e19b10bd.png 1e99ecc4de.png e8f7ceaf00.png 29994023fc.png fc7019ac3c.png a743bf1c06.png b6f193a90d.png e0829f05ac.png f9e510b5d4.png ee2cd8b38b.png 2c8a7e025d.png 3a25d72ad5.png 6d9b5ae77a.png 9238f8f461.png c68d428ccb.png eb9ae11a93.png 6fe5d74176.png c04fb6068a.png cc08ae7778.png 944d2d6bb8.png eec0d74159.png 55501cc489.png ef2ad4fbb3.png 4fd3d56da4.png 1f150266cf.png 35741a470b.png 1adf735507.png 0abe6c137d.png eee98f9511.png 0910a5f8d6.png 33f94114cc.png 00bf25f9f9.png 570c9d5a7a.png 5b7ebdc259.png 8232db2b76.png 713faefb03.png 2acc196bd1.png ca6bc81fcd.png 63db2a476a.png 45ead8f8fd.png c18a60afdc.png 3d19cc455e.png 7d3b22a889.png ddcd5701b2.png dd230b84a9.png ced201b37c.png 6724070ec9.png 46244f8df6.png 45dfe0640a.png 4f06185ed0.png a5902ff190.png 74dc83a265.png 1f086449b5.png 2e16e6397a.png f147fc9161.png efea7102dd.png 5d127af974.png 8dbf4c5515.png 36f364c4fb.png b344da6616.png d3ada660bd.png 60d7d451e2.png ba13dbaa29.png ecc84d1ead.png bdc98456ab.png 69319596b6.png 2b6f27a34d.png 80d492f994.png 90b7053440.png 9f7e293e89.png 11c70211b2.png ec218a2c03.png 155410d6fa.png 4f069d6740.png c0936aa1c4.png 510805c1d2.png b85341bcaa.png a12c152cac.png 01c5af2643.png 7fb8b363c5.png 2dbbe7bf53.png 3cdbe07a1a.png 3863eafbfa.png c09ff6deab.png 6fb4c35e0e.png f85573609a.png a444fdc56e.png ed481a5484.png 529758ae86.png 2e1f0b7a74.png 575160ad14.png 756a0a16dd.png 89d0caa7d1.png 9416e65d9e.png cde797dd61.png 0d215e9cc4.png 9827ff0a2c.png 8d08d5a68a.png 1e7f747bb7.png 567a050bf0.png 82e4332ae3.png 999ac34f4c.png be78c05316.png ee9dd14151.png 919f72b795.png 47808639c0.png adecc7ecaa.png 3df2736429.png c5f5614e87.png 66148a9c70.png 120cef9fab.png 36eaaa64e2.png 373c27c20a.png c5f1688f84.png 49b7be4ef2.png 9197adb6f3.png e12b6c0b0a.png 644d224e9c.png 35cb0dbb51.png 19112f71b9.png 5ba8ea8437.png 75d6c48a00.png d3174677ee.png c483125bdc.png 4d493854a1.png e77514fa9d.png 4a263eda40.png 0c6f58357e.png d3124d74bd.png 1b0ff56708.png 0b1c21a106.png 17470dd9fc.png 4f79ec0ba8.png 7968eec1f1.png 2ea0b129a3.png 2aeaa3a43e.png c858f7fb38.png 342be6effb.png 16af70da6d.png 86d8081e4d.png 6bc1aa8213.png 21624c7947.png 27d39dc44f.png 36d9ea343f.png b01e16574a.png e609ac2104.png 3c03ac9b56.png 97fad1d33f.png 53f0d7a5de.png 362d82ca7b.png 814bd19e43.png 286f309694.png d710d1af61.png 04f48c4646.png 827bc20b7a.png 611d13abcd.png 6d5bf5fde0.png f9ac19b3e4.png e4955211ab.png a282e85e8d.png 57bf244688.png 9e191d17e0.png 4622823178.png 526453de1e.png 0507f8672e.png 8e80f40570.png 102afec92a.png c3cb500dfb.png 5a9dfd23de.png 410b6f1760.png ed28175fe1.png 62df6591d2.png 7cfbd6059d.png fabad6b46a.png 73c97fc400.png 1a44c4e591.png 934c53d70e.png 185bf0a1fc.png e6a6cb08c5.png d76fdc0c66.png 68a469ef7e.png e59526d6bf.png 67e8e9f5a2.png 96e09ff434.png 69fe14835b.png 6dca333081.png 15b84c63ac.png ab2d102ef6.png 41314275bd.png cf36d61397.png d9d82b7c5a.png 4c7ffb89ae.png bf9e800301.png dbabc23680.png c14ab2b105.png 61e932cc71.png 341da65aac.png 01af0a6ee9.png 7d933efecd.png baa44e8d1f.png 0ed75a8482.png 649a81e118.png 50e92f4a67.png 3af482b98c.png ac06468546.png 73d82d003c.png 9e45e84bac.png 6d94eea16d.png c463a7bc45.png edb228a9b4.png e3cced6b6a.png 36f3c069ac.png d011233664.png f2aa5877ad.png 9b66bcf23c.png a62afb364a.png 69c7de5d26.png 5febd30d82.png d2aac3d56d.png 7616ccfb6a.png 865a3c3462.png 400714c26c.png 182891f8a6.png 4315656153.png 41c64dc78f.png 16d8e1d384.png c614988286.png 02ff55da9e.png 09799a998e.png 89cb80c596.png b4a849594f.png 1bb2b1fbf4.png 8aa8ca5b75.png a0bd7123fa.png 97af1c4038.png 57dfb12f1a.png 34f944baa4.png 984cf461df.png 71fd607e6b.png c43159d789.png 72181494e8.png cdca082980.png c51ad843f1.png 828d543df2.png df244aceeb.png ab1210dadc.png f6fc4f5177.png 7a14038cdc.png 5f553d9bc2.png bed4e13a4b.png 9eeb6f090f.png 5637d965e3.png 5d1934fb12.png b49894747f.png cc9fae6415.png b02ad730ec.png 15e87c0c0e.png 78bc946c0e.png 92629f769b.png 53e04029fc.png 017d84a5a6.png 35493007b0.png 54075e899e.png f8ea96a1ed.png 376e1a060f.png 1b346bfba2.png dcaacc0402.png 9ba53387b4.png c83f3cc8ac.png 2056c97a10.png d14b77170a.png 1f043f4fe8.png 808c63ed8f.png 9bfb38a26f.png b3fa13682c.png 9fa6f8e4d7.png 5b5b4e2805.png d72dedfa75.png 10b41b221b.png 463925cada.png 7a6ef8886b.png a9b4214b92.png dce5510be3.png fb377b3df7.png f8a05eac67.png ab7074c50b.png 5bef437307.png 501b9807d2.png e6784c9c5b.png 0c0610be6a.png a2329d9497.png 0043a01a19.png 7d5345b3aa.png 2c4b9599df.png dbd44add85.png 9da19a126d.png dbc239fc29.png 536106a930.png d2e494a718.png 32dd0a323e.png e1bc4ce241.png 9923de1c7f.png 4c38a9702e.png 0fa2535b77.png 2ffcaf4c45.png 36b2e8672d.png eafa11cd72.png 63098bee3b.png 648b09f832.png debfaadc1e.png dcd3b15b7f.png f9a787b1ec.png 59caf44e3d.png 7877c97e02.png 3767362bcf.png 676ea2ece0.png 28029fa2e6.png 6204577291.png 2824065636.png b0fda65353.png f8b9fa402a.png fe5cefdc72.png 29a734bae8.png 676d53ad70.png ee5fb13710.png b6dc397995.png fcb97ed460.png 00f12566b9.png 823ad213d9.png 3dd350a6f2.png 3abde75a97.png aaa025af5f.png 655bb63be8.png 122b429ccd.png 1d77187496.png 9cb55834da.png 24bb2d5239.png 8a57f722c9.png 51ff6322d5.png 6417ae8563.png 3a226d196a.png b0d08bde82.png b523c067be.png ae6aacd57a.png c884a56bdd.png b14f73e81c.png 3dc1fea85e.png aceadac414.png 20ada280f0.png 720fde436b.png 0eeccfa5d3.png ed4f75e17e.png ba53ab39fb.png 01e136f700.png 29372dcce7.png f3fb230499.png 9f0d446457.png 80c2769443.png 0207954fdc.png 4cc08d6a80.png b935b426a5.png 7c5528d1ed.png ea80fb83f5.png 6f2f98381f.png 1edcff8f55.png f21fb36d82.png 1df8d91491.png 389e82d252.png b30a514b50.png fbc34adf28.png 28d365fb50.png 2cd315fb22.png 7a6b92a90d.png 3a51d8fb4b.png 7374d22ad8.png 7570331dbb.png 6205973a3e.png d05f21e2ad.png 1eafbf57bf.png 2261517560.png 0d64aa7de2.png 908b0475f4.png 2e54db05a5.png b608bfc9f4.png 4a6120cd63.png 258b965292.png e7319918f8.png 8b65866f57.png 71a360306a.png 19a19742ce.png 20b784c31b.png 973a14e68f.png d0190aaf62.png 68da71599b.png 4566beb8e0.png e5aefdd3da.png c98c4c3f09.png 165ec2acbb.png 248badfc5a.png 95c2122344.png 2aac273cdb.png aa4be18d6a.png 6736047f57.png 1dde15c583.png 0d6db8f166.png b77b60349e.png 83b78b9386.png ec4a9f09a6.png 8656e9203b.png 416a425526.png b398e877c2.png 50c1a76871.png fd2421b895.png b18f11ea40.png cb3f9687bb.png dcc130871b.png 73f53cd327.png b259e7fa97.png cdb4e3510f.png 1d89f24721.png c7f4301086.png 04614bf5ac.png a62c94394a.png 34990ac2e4.png d29c7b4b50.png 8306f847a0.png 5c9de2a022.png 0893024db8.png 7f34898162.png e2a8145eae.png 212eeca2de.png 0da24cf72a.png 8d21f488a5.png 68904129ca.png e20c37a47b.png 0bf4710ee2.png dcc80c1df1.png 10dbc1c592.png a3f4d92597.png 9e0f3ef394.png 1052fcf702.png 80b7b5c6f6.png e476971090.png dd65de3b70.png 27737f71f6.png 4b86ca5deb.png c5f3085b12.png 16fb12f4ce.png a66fd32f20.png 419ef90290.png 864ebfc491.png a496d57c85.png 97def6b173.png d20568b2d6.png 9366fccb95.png 7294001ccb.png 9271befaa3.png 102a73cb82.png 97ff8aa3a0.png aed83b81bb.png dbb3965aca.png 6bd0e156a6.png b3a135bd66.png 7387c46115.png 1369ddd462.png 776d73a00d.png 18902bd56d.png a1fcd43f33.png 71e5181d4f.png 6b3478573c.png ebef3c7dad.png 50d7c206cc.png 0a45628c37.png eb1b5278e7.png 35b544e74b.png e034b7e250.png dfb9785064.png 0905843ee0.png 540fe7dc25.png 7987e0e0c2.png 2a48ce5e78.png d288995f93.png e697e2d9c7.png 9cbca0af7a.png 0711675899.png 2e87e350af.png 0d0762e2f1.png 227d87ebc3.png a765cd6aab.png a754e9e91c.png ecf73f779f.png 4dae9c390c.png 567c36f67f.png 3d033df4c0.png 54b4d74cba.png 9667fcc96d.png 10c1560bed.png 9699288c2f.png 16e3b0564d.png 0bcfcf34d7.png 8cff7e0631.png 09ce3f15ee.png 97aab49e92.png 7c4874f691.png a0723cef81.png 8869f3399c.png 7f5737c5b3.png 05e59f3c7e.png dfeefdc7e3.png 1392afc522.png 974300fa9a.png 415d3e85b1.png 228c4daacd.png 4c09e631c1.png 45b430d235.png e10417ab71.png c13a0c92d1.png e1e2a4a56d.png af85ba8c8c.png e6e478cbc6.png 6225efbdfa.png 91439aab61.png 0283add18e.png 76ed70b2e7.png a059a8be41.png 69ff232673.png d2e4b1e381.png 6d88e3341d.png 9211f9a1aa.png b65894db11.png 667fa631f4.png bdcf0026d8.png 3dfd1c311a.png b6a6479b03.png 5de263d7ea.png fdbe0275bd.png ec1d7d1ae1.png ee044b4654.png f202b3b4ca.png d0a367e216.png 41647172d6.png a987ebe117.png 45cf70cc74.png b3d612db82.png 3203884be7.png f4809326f6.png ceb58f3460.png 16472639a6.png f7e384e255.png 086c242b55.png 6225c596c4.png 9d96a157ca.png 69ad43554c.png 0d5ec46059.png aab10e4cfb.png a0716df5df.png 9256e2b7ba.png 97e335754c.png 91d104a6b1.png 2715531a3f.png 2efb94dbfd.png 3cced1ea46.png 710fc67627.png 165ffa1723.png 03a9683c39.png e1978e83b1.png 4a7ac48295.png 75db955734.png 2eb37ccc68.png 4902b2ec40.png c91a6405a5.png 9df2466f89.png a035f3c359.png 4b05075e91.png 0adcdbf194.png 4ed639c85f.png b83682118b.png e5fdeba224.png 4a1df22a26.png 4e98c975bd.png 243ee3da2d.png d5cb770b8c.png a0f5234b07.png 2bec322251.png d81f87949c.png 395bab08f4.png 3d53b0ae57.png bf7fc1c772.png 2714fcd59e.png ff8afea074.png 3666fea8c3.png b00e1265b6.png b3ad0f3dc0.png ceadfc98bd.png e0df3ed0ad.png d5aaeec7b0.png de5a42a506.png a8aa087faa.png 6d91979be6.png 324e1c12c4.png 0f04ad5127.png 1c427dd881.png a1e640f0b7.png 8a15905832.png cd0352c2f3.png 39f9ba348e.png 667ef29591.png 720ed9c0e9.png 240004d8fd.png ee3aad7ba7.png 4f02e56080.png 9daed1e88d.png a498311665.png 7bc3bb0a20.png 9e699c4bd5.png ec82dc9c80.png 1df0d002f5.png 52812aaf65.png f47c7a0fd2.png 3ccf3f7a15.png 0775d2543e.png 19d06934db.png f45fa444e5.png 0ecc2e0065.png ad292a8043.png 66b56662df.png 9ac1f214d8.png 9f4d859a6d.png cd2567246d.png 2165fa4ff9.png 11100c5070.png 55371c6ef2.png 63e0650693.png 3fa715098c.png 938d4036a9.png fdd8e5ab91.png b1734f57e7.png fbb738d83f.png d13f2aa25a.png 48055c205f.png 9cd6d11627.png bc183053e8.png 2517937482.png 932d0af9a5.png 5eb8ee3c04.png b5f8880d44.png 6e55491120.png 7fdd18017e.png 52dbe09f4c.png f88f72e343.png 701cfebd25.png 2ddfdf7a00.png 89e1d01fda.png 0e27f19921.png 25bc6fdc1d.png acb17142e1.png c1b28f261a.png 2c34919bdf.png 8875824a73.png e6ca6a00d4.png 33228f3eaf.png c7d1e6fe7b.png 6b21f429a8.png 679833ddad.png 30e2d59d62.png e3fc1a3e14.png 151c5884d6.png fb1977dbf4.png 6213dd23d6.png 8fa6d81b29.png 23e2ad6faa.png 556d8c542e.png ff35ac6658.png 7cf7445350.png d72a290951.png c26df751cb.png f0bc578837.png afb0329994.png a478665286.png abd466e64b.png 745be77eed.png 636df5b27a.png decdf173a4.png 2d177a217d.png 00e900afb7.png af3e29f617.png 8efd177b4b.png 6569d102b6.png e846787720.png 87347549f4.png 4ef618552a.png b66151dbe5.png 61db631085.png 50006ac207.png bd745ad4e4.png 03969a67e1.png bc002e42ab.png 597cd882cb.png 4c4dbdeaac.png 4fa6ae9db4.png ff0d9d4f75.png 63b3217142.png 787f824d70.png 9ad3911361.png ebc13ad1f1.png 9d3ec04eac.png 284f7dd9f9.png 430c303755.png d4c0bfa755.png e1207841c3.png 0b9874fd4f.png c51173f352.png e81bc8050f.png 0a9992ce50.png 50a91adce8.png a5b81694e5.png 382b3f0c24.png dc98370594.png ab8f326e09.png a7c88d0eb0.png f9aa42899b.png 1760bece6d.png 3dbf4d3e57.png 0b5988d7b0.png 11e9ac0aeb.png cdda3b1f5e.png 4c82bc66c9.png 5f54df3753.png 6a98b95754.png 4e3378fc69.png 33cb556649.png 7ddcf83303.png f4a2cfefb3.png 29cf979b92.png 5f3bc00104.png 8e76bf194e.png cae26f3214.png eb8a1f8c5d.png 7e79bb71dc.png 029dd6f51f.png 4c02cb44d5.png 6c1a8906dc.png a0e0452f1c.png 2bf60e2330.png 853a1ba28f.png 6e7e9b98a4.png 5d126bd7d8.png 90e92b9fce.png 1f3038af73.png cc8e029e21.png f8f9e5ba3b.png 08b3c441eb.png 5c0acc3f31.png 9b838f638a.png ba72ecf0b5.png b2fc87dc4e.png c58cbe572d.png 81bded8b9b.png f8afabcb4c.png 6a1defeaa5.png 07b06234e7.png 6066dbfca9.png c0df1c6bc5.png 00a052d822.png 3885101128.png ce53de2451.png e484ea9ad2.png ab829d20a1.png b569096e82.png d5d599c225.png 636b5fb5a2.png 87ede84827.png 9156a46309.png 3568a238ab.png ef0ccbe97b.png 918d76601c.png b923daba0a.png e02453fa1f.png 31cd04055c.png 8bc939cc85.png e60a29d658.png 8fd6d6de42.png bd02724c0d.png 023350c4e2.png 039b7c2b74.png 5895535b14.png 9dd4d99ab5.png 824ef90b9b.png f8a2cb1d13.png c32c64b949.png 48e6f06a5b.png 617cee13bc.png 3a8925ef48.png b413657974.png dd7f250e5a.png c555df6518.png 9c5cd7cf24.png ade7b6c1ea.png 23823cad6c.png c2582be202.png a62e962739.png fbb8303f81.png d36234ebd5.png 85c5a1b5e8.png 68d5a944e7.png 3a61ff125e.png 0d14aedcd5.png 5f168cd2d5.png 53726197dd.png 582ec64662.png d69abbca50.png 669bd87a83.png abb91e8148.png 3a0922aeea.png ca4d17a4f2.png 311030c73a.png 12b6c7311a.png f6f5806e2a.png 0b03165d15.png 91fbe9ad11.png 1fdce40b42.png 3d65204ea2.png 75fec62ce4.png afe5e42216.png 191bfc2fae.png 2d37d558a3.png 0759b4c0a6.png 5512a556b3.png 614afa7224.png 4f1bb674c2.png 48fc4044ff.png 9bf7bee899.png f63b28a739.png fa9aec9e27.png 1b203471b7.png 01f2262bf6.png 45ea134474.png 4334a4df17.png 457c69bcc8.png 526418e256.png 0224643e71.png 39316d8a46.png 9cc2bd46f2.png cf6e41f329.png 05562883e7.png b1f47c5be7.png 4ae16a3b40.png 953316da2b.png 1e95f2f6eb.png c98b273ac9.png dca0ca5ecd.png bdaf5d8f32.png 7eb34773ab.png 7463d7da9a.png ac9f1608b0.png 610f0279fa.png 88ef84acb9.png 3e3d120907.png 5f86057ba1.png a676b46c7e.png 4b82adea21.png b00ae599a6.png eb5778dd5b.png 00eea9cc56.png e2112cdbb0.png 770d038a86.png b7844c89e2.png fc697b13ac.png 50f78681db.png 2bfc5326d4.png c9663ee44e.png 9b73299424.png 11dce96954.png 1e4a6db5c6.png 2583a7cedf.png 5f5badbc35.png 60611407d3.png ce36e2a0ae.png da723a31d3.png 354d881033.png 98ec81a8df.png ff9e8760d8.png 9da95ae912.png 0c14b502e8.png 462bfb1848.png d27e49b95a.png aa63df78d9.png c7899986d3.png 8c9638818d.png 3a35c0728f.png d9443d6374.png 69eabf5f29.png a92d86be81.png 42579e0bc6.png e0a6b46fd1.png 7304dcacee.png b6e91e4bc9.png 15ecb44c76.png 8e914b81fe.png 32ee738945.png dc6b08b866.png 8e99928455.png 8bb2eca74b.png a089728353.png 5aa5d4a616.png 3bac4bd5af.png 21e61a7540.png 39b1d2294d.png 66d29aed4c.png a6ec2ce172.png ea90052ad6.png 5ed9ba604c.png c3f533acee.png 34f0687bbc.png 0616cb9c1f.png c8266973f7.png 0189ff5265.png d223809084.png 2806b89050.png 353e010b7b.png f6322a46a2.png 394f8072bb.png a1593593f2.png 967e6213ce.png e7ed227dda.png f44be3e2d7.png 8fa7391a85.png a6043f00ef.png d3ad12287c.png 502d93b515.png 9545264612.png 76ea2b7366.png 07707ab8b2.png ef521e71b8.png d6063c665b.png b81ebd84cc.png 43bce54542.png 95016016d6.png ffa51e8c7e.png 66114b9764.png 9091c7ef1d.png 8a8ca7cdcc.png 26233363f8.png 2aa996939f.png 435ae188ca.png e57d4e9c04.png f74f2c5dec.png 210bf75217.png 829451e2cf.png 0a39c86312.png d1e2aed114.png 5f1bec06fe.png 001ef8fc87.png 71f16b2619.png ac26efe98e.png 3a1e053394.png 14a9d4876d.png 5cc486a204.png 4e84e470fe.png e7723f6276.png 93d82c5591.png f80ccad902.png b43e1ad347.png ecde62fedf.png fe52d8e719.png c353f941ca.png 93b58cb146.png fe14970ee7.png 1cf783890d.png 2620ab7aa2.png 37941ad573.png c84a98b6d3.png b4538661b4.png f83931131f.png 848c3fb0b7.png bcba6a2e84.png 8ae428b77f.png 5404974f3d.png 9a59a4f4ae.png bf9664650b.png c320fb7641.png 10eeeda559.png 4f738a869e.png b5fd02b2f7.png 5ba4a336bd.png 112774ba35.png d98293b5d2.png f2827e1818.png f92e022f08.png 00b68675b4.png a3f8992e72.png cdbec42931.png c779a1e062.png e48ce37527.png 13b1a7ad42.png 1705ade299.png 840edfd9b0.png 10a0e97a05.png ba797582a4.png 7e8db86731.png 7fadebf068.png 56b06072e3.png c3c242a14d.png 4d5860a0df.png 5d6be3e74c.png 850f48c5e3.png 16db20b5e8.png d9140cdbc2.png e9a4c4ee10.png 0b64e69d0e.png 1a52f342a7.png 0b118ea7b7.png b83a115365.png c5f64bb650.png 8f3d13f940.png 9d72658a31.png 9ad15b2d25.png 59681332a3.png 4de659b0f5.png aa6ca37586.png e6f8434e55.png dad62e6cd7.png 0da4918f5a.png f2b5d8aa8a.png 066f18a55c.png ce4424106b.png 12aaea5149.png 2f28a9f9f8.png 5cbdfef7b3.png 86fb847889.png 53a3147186.png 7ff659b264.png 490c2cc42e.png 746f7f7f27.png 28f383ba58.png 76b5d31d85.png f4fb218df6.png 582d92d3a0.png e699288e54.png 1edcb6a250.png 18ef5f86ab.png 09f1675cfb.png 4a21d26749.png cea291eedc.png c543bb359b.png 8a60cc9e23.png ff35f2a328.png b99433d2e0.png 39d958da04.png 88fa975478.png bfd73ece7a.png 28532f0b9b.png c81e790680.png ac7169bfb7.png 524e500962.png 9f56da8998.png 4bcfc0f9bd.png 07d631693c.png caf762e1ab.png 26a0a33c8c.png a8c33b125c.png 385580a2f7.png e51487b92e.png 66a00fd33e.png d303e1774a.png 97c63fd321.png d9ef8f6403.png c4fcfdce00.png 0510482257.png 51141fa392.png 41bff02c51.png 252aa6e031.png 3e04a6cc24.png 3c0f1d465a.png e45649bcc1.png d3c87f3e56.png 7c34859167.png 460c5f2ccd.png 5256861a31.png 63ed0faeb8.png ce98269a83.png e60ec55223.png 2d6a27493c.png 677dbfd1c1.png 01694e04e2.png 33b3e958fb.png e001c9a868.png 20b67a6c1d.png 17759743db.png 15da8f19c8.png 61538a4a19.png 745b73e846.png 71ef3fc1c9.png 59635629a7.png 6fef9bc131.png 88e2f52aad.png 64dcad5c0e.png eb5baeb627.png c43594084d.png 375661a521.png 4dd7ed43a0.png 863aeec5eb.png 06ef1122ec.png 229e38ecab.png 67550b39f3.png e47c5d83fc.png d2ee33bc03.png de56d56e3b.png 149c2f22c9.png e0e40311d9.png 861f283361.png a4dd1d2900.png f5f5901c55.png 6ccaafe665.png 759128aca2.png 084a5e8648.png 1b0dc93eec.png 9bc43ac1d9.png df2ec73bd5.png 8603855246.png 3fdc35b832.png acdc75508d.png 8e43b91b7a.png b65ac8a9b3.png 2567aa74b6.png d5777e4789.png 2103cc814b.png c3f52220da.png c3f7c12107.png 76b121e7c6.png 52285f7cbf.png 923f8be483.png 5f041131a1.png 2e3b9098b8.png e0bec01df6.png ce48548fa6.png 9922cd597b.png 2143b330fe.png 5a970eae2c.png bfd6f21136.png a97c8676be.png 08ce8991f1.png 3a06849378.png cede9158fa.png 4234acef31.png 1693eecf63.png 4282adcba1.png d13ede5f14.png d6fdb80bae.png 565f34a45e.png e36949a00d.png 29f9ee1ab4.png 9b525b08e7.png 7f82fe9f71.png 06f0b6ef91.png 5537f478e1.png 1695784a24.png 5208af95c1.png e91e8917f7.png 22895dc54a.png 9c50f550c4.png 1cb6d0d0ce.png 8ab63d565b.png 53383aa190.png c0ea282c4f.png 3276b81273.png 9ea1b4c239.png daf22070f5.png 0dd7241a30.png d93cea85bb.png 8eedc347f2.png 5ae9fe9e4a.png 56bb598a33.png 855363abfa.png acc61bd7af.png 1acac10cfe.png abc1ec4bc3.png 8ebdcba27d.png 91f7d4e92f.png 0ab8828eb5.png f4db6fadac.png 23d0724e97.png 0ee2f5120a.png a7181efc6d.png e4ee492bd5.png f4c478c3c9.png 90edc7fb0a.png 7aedf0e386.png 59b6b69cf1.png 04ff5c14f7.png c453e5d3fb.png 064b4962e9.png 2fecaf1c54.png 89c0f9dcab.png 6ec4386cbb.png e77d46b5e7.png bf41d02c55.png 7877bf3a49.png c8682f2387.png 8afdbc2226.png e0a9c3c415.png b44168da26.png 1cbfb9a597.png 5439dbbddf.png 85e89d3d33.png 5f15393348.png 6d08896012.png 5fe8923649.png d1baafb170.png ead4e4f3fe.png 860ab1514f.png da85c5ae62.png 27352bee07.png 965ab1dc20.png 031fc7e30d.png 7c6e3e4d9d.png 023a4a8fc1.png 96f8bd1813.png f3e6109c05.png a76f0622ec.png 62bd7dc7d7.png cd85f4b39b.png 9970a663e7.png 75234e0190.png 7d5f9abb1c.png 2fbf1cd550.png 149d907795.png 90c0054bfe.png d8ad9966ba.png 02446ab7b5.png 22f416fba8.png 7974419f1a.png 318cdeff85.png a0f7d1db58.png 8688aa6acb.png 0ca07a2b06.png fbbd320627.png d0ec6da193.png 3116f272e3.png 09c4201b4a.png 1cdd74608b.png 9830eb6971.png 815d94120d.png dc5a650af7.png 6337fc7a59.png 6e5c564258.png 0fe7bd88fb.png 3db26cb791.png 1471bc7b6d.png 1117ef4324.png 5e51d0070c.png 539bbb05f8.png 11d36f46e8.png 3912a7c40b.png 9a16cf829d.png fb9c58299e.png b2782e3901.png c2e24433d2.png d83fe9fa7a.png 6015110caa.png 878c50521d.png 161febc96f.png cbd043c3b0.png a03c96ed05.png 837d92f194.png 16c3e76481.png cc770c1a5e.png dfb3390016.png a9710f6508.png 1c098a50aa.png dba4475686.png 98f28c0303.png 9b6a41e977.png 551cb1b843.png b3459251e5.png 631cec82b9.png 71ed7325d3.png 8ea5a5cf57.png 9c5406268d.png 20e0444ffb.png 87173ef16f.png eb05ac38b0.png d3dc15fbc2.png e9ffc56d5d.png fb29635668.png 8b754adb0c.png 9d5617b842.png c0aa15a26a.png f3d457ccce.png 19dfee3fcd.png fd0b168cf6.png 014a31d53f.png f4ef003a58.png 5e713bea12.png 6dd1746fdf.png a06f18de38.png af445bc114.png 8a8eaf1df7.png 014681457b.png 23c6efd41e.png 982cb1378d.png 41b52c1438.png a5a99f3913.png a4546fe71f.png 655d3e4d01.png 0ed2fce6db.png 99cfeaba69.png 72c9b3ca5b.png de5361fe2c.png 5bf8deec0f.png d44a4a62dd.png bde4f58ca3.png ae6ffe812a.png e25d3a27b1.png 97a26ea163.png 526fb2a204.png 1d05eff605.png 812492066c.png 49e215f84c.png b57a03686d.png c215d4d831.png 439a2ebfbd.png e59a73943c.png 6514081e49.png dfc4545499.png 748b1244ca.png 826dac705d.png f47fa89a52.png a8bc163db6.png 9f7155bd98.png e3e7a65574.png 17394fc203.png 8bab2b0c82.png e71380e985.png 305e201b21.png 68c0ec9724.png 790251ad62.png 5235fc6d22.png 53e739bf11.png 1155134b65.png 1777e9be51.png e96b8f5e28.png 365f78e91a.png b5c6caa273.png f6a8da7ffb.png 920dd2feba.png 0e471a54c7.png e2b655987d.png 5313788acb.png c3c257491a.png 15a54065ac.png 2d76db6f66.png 4d3eeda971.png 1db00d7590.png 7640216003.png c36bb4c231.png 8d702c4aec.png ee77baabf5.png 100d433d0d.png c328588e36.png 99f2dd50d8.png 8963e13c49.png 9ac4e6c7fc.png 5dd42247a1.png c5f7b76607.png 208db5271e.png 99fddf686c.png 67ba09a89e.png 7aa84dac4c.png ea77554368.png 370746aa1b.png 05e7f129ee.png 745003b86f.png a39f01e911.png 629f639f2c.png f3bcfb2955.png 2265a9bb97.png 4cee41f355.png 7ccccf5f30.png c2ad307cd2.png c8b9beec1c.png 83dbe2a00f.png 61f1a55dbf.png ceda8750a4.png 4166f7db11.png 991f239daf.png 998e781159.png 78e836e9f4.png 3f587ca621.png a39866f50c.png 0430d7ea49.png f31ab2f578.png 79017b6cd1.png 76c72dec1a.png 121bc4deb7.png 1ef24cd2f7.png 3820797dab.png 81f6c814e2.png ebeeab3a36.png 47cb876dde.png c563ab4d1f.png 7e6815b7b2.png c04dbddedd.png 1ac3babe57.png 8b74a58326.png 0e5e551d4c.png 344395de65.png a43ec97f2a.png 0731f87679.png 2a9f891518.png ca430c5ad2.png c87da590ee.png 2e7d8297e7.png f0405d15ce.png c8f4812ba1.png aeadb630c5.png ece2724f0a.png 732fb7faf6.png 874535525b.png 51936b6118.png e30e29d767.png 1f8d2fb264.png f2ba02ee9c.png f791482ed1.png 9e91369659.png 2dbaca14cf.png 0da0088115.png 07993dc1d4.png ee9a8aa9be.png faf72a780b.png 83a2adae40.png 0aa2cfd2e2.png b5f79edcc3.png da090efc50.png b34410a696.png 4fb2778316.png 59f5a1afc7.png 51d523930b.png c2cf683cdc.png e1593c24b1.png 90fbd7163f.png 7a4bf67c4b.png 3cbbc5ed1d.png 6242efa63a.png 588f6656aa.png e0e065b312.png 4a5f65e1fe.png e3dcd28ec0.png 387f07cf75.png 0e37ae8b14.png 4e13bb0edb.png c51572a089.png 019342f169.png 9fe3459bb2.png e12ea6b1c1.png 2049282c72.png 1eb9662cd1.png f74ff67ea7.png babfe73af6.png 7b0b71c55b.png de8a820637.png d6dc342f83.png a53de091e0.png 969951e384.png 494f10f99b.png 6fbf6c40cd.png d8b065d0eb.png d3444844ea.png b393cb32a7.png 6db4d1afbe.png be150e5652.png 51c7e18ca7.png 50fc16ff18.png aef07da484.png 68519b8d65.png f069247787.png 4eff1c1469.png bb97471c13.png b720639d3d.png 4179c83f47.png 672b6c08a1.png a712f50125.png bb895d5015.png 183b58df29.png b18cb84bca.png dc8281c5ff.png 3164ab09ed.png 502a8b84ea.png 2529342187.png 92cdbbb3f5.png 2eaecdf8b5.png 69a8775edd.png bb5ec93158.png bf34f09365.png ba5e46652e.png c0d95beb5f.png a89c8b991c.png 501da23c5b.png c1e2411006.png c6f29dc1a4.png bfb24092c3.png 9b9d62b4f2.png 4488974c52.png 3e8ab52b8a.png 9fb226174a.png eaf39dda19.png 67f35d28b4.png daef07fd90.png a3c895cf5e.png 3e5eac5296.png 020e6211ad.png 63235ccaf6.png 2db89bd54e.png 5b8ccc9cb6.png 6dcb56d4db.png 5c665e8088.png 5393cb5880.png 7e0eddd4a7.png 603549682a.png 44df56fa12.png 25f57cf4f4.png 725f623fa0.png ea12c68da6.png 9b965db66d.png 4c67f13454.png ddaa8f2cc9.png ee81585df9.png 766c55d886.png 69bf9df3a8.png 36e1d2c441.png ea89287cac.png b28b22e057.png 396a5f2049.png e84940ac6a.png d3012444d9.png a366e0eeae.png 1774fc54d9.png 37e8fbecdc.png 5e0be40c1f.png b9145d4519.png 1775baeb70.png cca8cdfe66.png 138652f569.png 3af0b6fef4.png 6c35d8d95b.png ad3a16eb53.png e2262f7275.png 3dfdde9c1a.png ec04a9c168.png 86d92264a9.png 6919c6895e.png 2ef244e01a.png 9e60534bef.png 847550431e.png 0a072e6c9b.png 10a3b543d4.png b06dde0ed9.png a6b263f3bc.png 427212d90c.png a1f51211b1.png 1a948a1a2d.png 0a4fd33486.png 04c31e19f4.png dcb7468a65.png e099a1a8ad.png a89e1ab744.png f64c261570.png 25bb6c7720.png d145118221.png 226a07a818.png 77b202a9c6.png ff2b792046.png ef06e29142.png de3f38b5de.png 3eb810a03f.png a2e850fa2a.png f7b5458d2a.png 83f8ae854e.png 2fb819ab32.png 92b23cfe90.png 0680eb5e6e.png 42a6d179ef.png 54e5e78455.png bb633b3089.png e5699c01e6.png e18072f750.png 75311de238.png 9718a3fbb3.png 92fa1137d9.png 22f1f09e62.png d615842865.png 1083eaa92a.png d76c91c5b2.png ebd1c80849.png cb47a30879.png 68350ac997.png eb590942a1.png e67a038cf7.png 65fd699136.png e91eaf191a.png d082aa9b68.png b9f2ed8a68.png f7b7615fb8.png 0fbce89aa2.png 8a78a43802.png 3ffa242fa1.png 4e70e4d96c.png 39aa1f3a2b.png d4c235a41e.png 1529529daa.png 7aa312d8d5.png 75b8d54e1c.png b69dd4ba7a.png 3290d37891.png d82b7bc89b.png 52b11a66b7.png 98c055f418.png 493a210d3a.png 792cef86c2.png d61b895fcd.png 3d42b00d47.png 1780e96886.png 10c7f0d246.png 5870ec4884.png e451bbd1a8.png c75e33ad32.png 9969eb6d37.png c91684784f.png 3eff3c0e27.png 104def81dc.png 139650fe97.png e7d950f0b1.png 6e98da23b9.png 5cdb791f34.png a9957cbaa0.png 214dc3b533.png fd4d5819be.png 2735b4d2b0.png 6cc50bb10c.png a843ccfbf7.png b9ea5eb4c5.png 06aeec54bd.png ec27ab38b8.png 3527e03e5d.png 5c82266b71.png 1a157f9551.png 367eac65c5.png d01b8993e1.png de83a67dd2.png cb2a21050e.png 9e26c87dad.png 132e1081a7.png e9cce9c914.png 992d1a1434.png abbb0b44df.png 51b91303cc.png 854ee81355.png 0960ae5218.png 4720794315.png 7833140676.png cca88b97da.png 4304badb8f.png 73d612a604.png 80ddb7476e.png 5f28207f7a.png a0e6d8b0a7.png f68b35ebd2.png 33a18815cb.png 2b221fc0d7.png 9b3614da4a.png d50c9d0919.png 085484b27f.png d590a3a3ba.png a4a5eca0c8.png 514ece6215.png bc9a247d9a.png 85ecabd362.png 8eb9bd0e65.png d078c2ee8a.png a022b9c3ac.png ffca00e9d7.png 8e900e1e4f.png 68deafa4a7.png 5cf7cc53bf.png b8be6ec1db.png 9ef73b5eba.png 4c5482697f.png 794ee5fa8e.png 8a7db2c1d1.png 9a613530e7.png 8f4e0ee37f.png 23d8bf4955.png 8e13cda6fb.png 721e2e1811.png 5ca5ec45da.png b695427db8.png 359fa522b7.png 6798d3af4a.png 8bcdfdb737.png eddf8b7e55.png e85ca402ee.png b4875b1537.png 140572b0ce.png 1cac4d17ac.png a17c068d3a.png 1c7acddca2.png 8d8bfa55d5.png f99a792e1c.png da2f5777db.png 3bb4585abc.png 4b276b23ec.png 80de565868.png a36c68a4fa.png d8edb39aa3.png a9ee986303.png a8cf94648e.png 9ea97ebc02.png 84ee0bfc80.png 963c696594.png 56a8a4e1f3.png c040483242.png 2b0de46b94.png d6344fd906.png 836bb06e23.png e5fb8e1029.png fc623c5fc1.png 1e78fe8a45.png f8af98960f.png 0532a37194.png e594ef45fc.png d4c67575c4.png 0433c39f5d.png 2c0da8535c.png a745ee2cf2.png 5a8893ef09.png 5dda6082c7.png 3ddf2a9990.png 6721c5356e.png 4cfe70e0ef.png 7fb929c05f.png 47859b36c3.png 04467827d1.png 7f1c9e5f69.png 44e625aad1.png a4975f26d0.png bc54357991.png 16dea35a1c.png 45bd9c2a06.png 67ccf95c75.png ef606386ed.png ade2aff16c.png a8ab7eba73.png f38e999102.png df3c0ca9ca.png 26127d74ee.png ac2af593c2.png a9b361a48e.png 3e71bbc1d5.png 9883150c69.png 4b64c96dbe.png 04bcc0f6c4.png 3cc902c1b4.png 51b5d26a59.png a9ad49f3a9.png dbaa639a96.png 9d55e4ccc9.png 012c3ed07e.png d711226cda.png 667b3004a1.png fa503f3f93.png b484e89591.png 14aec6bfbc.png bd853e7ecb.png 924c0e9cef.png 16924862c6.png 1f1cfbdcb3.png f90d64d4bf.png b90c03ccdb.png c6ccbc78ff.png 98faa20dde.png 77cf676acc.png c89bda5c02.png c37a17f712.png c1bdf548c9.png c3bafa1d78.png 4fd8abbdb5.png 6b69a22bc3.png 261df55c24.png 006d9df08a.png 94c4ad470b.png 9ec5530e38.png 74be878015.png ea38e39ba5.png 72e7f5a583.png b091620f53.png b9ec0ae950.png 9110d9e4d0.png 17f6adbfed.png ff9c8270bd.png aadea795b0.png a84af7a220.png 371fb700c0.png e72c42736a.png 28c176bebe.png 729f4f3a44.png d4762e96b3.png 88e238caef.png 343fd32150.png 1d40181f56.png e8a0999879.png 908bacfbae.png d4ff78ea8a.png 389a9f7ad6.png fdad2f99d8.png 2f71bcb486.png da7c022d60.png 6c89234f73.png 93be99ac1f.png 000c8dfb2a.png c812d01650.png 9a804d3e93.png a9e6fa74bc.png 3c7ee1e49e.png 554af0ca10.png 0dd4d9acf7.png 9a7fc35eab.png 6a8b6c77c4.png 8020c6cc91.png 7d594dd079.png f76af6728e.png e60e1201f5.png e3a437ca0d.png c123ed5f24.png 6364ce708e.png b4043d90c5.png fcf843ab71.png 186e591d03.png 09eb37dca0.png 2bbae68be2.png 42bfae680f.png 87e6e60636.png 98fd6b23f0.png 1ebd1031cd.png 6c725b1b62.png 6a936a6de9.png 5fd24230c4.png a3e85ba277.png 8aea7aa3b5.png 5d5bbffb59.png 470fd746f1.png 96383c7022.png 06da5a2b39.png 29422d4ed6.png a2a2ec508b.png 013b2d2dd1.png ac8ecfa0f0.png a24e316abb.png fc04d08cfe.png 753f85d9de.png e265c37b89.png e35bb189f6.png 2aa93d33e9.png 152abce000.png 86f2cf093f.png 31fb079ea8.png 21258b28bb.png 5bdd3618c8.png 5bfa612299.png 9b55f81daa.png dcf1889cbb.png b1667e0603.png 5c283e9cad.png 13fd9a6ce9.png 3fba8a6660.png d89124eac2.png ddf2eb4eb2.png 67a413f082.png d5e433e1bd.png 1e7e77e274.png ca2cc667dc.png f1d70317fd.png 0f4c862220.png 48e7a5676b.png a0a13ec7de.png 2afd8cbff7.png 063d449cd2.png 750ef7cde4.png cff78ba6f7.png 6395bd6c7f.png 1aaffdb790.png b42ae73708.png 66eb719e38.png 6d3bb1c3d6.png 6747f7bb35.png f21090dacd.png cff690800f.png bb01433ae6.png e148bc72aa.png f18eb3b587.png dde86fece3.png 37a866550e.png a3c26d86cb.png 1596ae1cdb.png 253508042f.png 095473ab35.png 1aeaa85dae.png d21d09dd73.png 2d50edd604.png a04349cfc4.png 57ff363100.png ad3daf9ba7.png b440f01d8c.png f0d5d88809.png 826120ef4e.png f1a0db4ac1.png 9bc6bf1c23.png 1e6c05169d.png 7fa49d7624.png 6bc1550a56.png d343f6974e.png c66ae04671.png 70764e7a6d.png 45911f71fb.png 9594833b58.png 46eccacdd4.png 98b49ec0e6.png 98a174a0d4.png 3c01f5e5cf.png 0a5eac8775.png 0614cf0b6c.png f8088ca24a.png cffbb49dc1.png 8e115cbec4.png 716575974d.png c62b3e15f4.png cc4cb99e50.png 72ccfcef34.png aacc4fb565.png feec666b6c.png 80b2ea548c.png 1cbb39d623.png 2455c55b4e.png e1d26c8806.png da72305266.png d91fb67e81.png b3df47aa9f.png 932ec40ab4.png 447e0cd396.png 700a2f62f1.png 3f77083653.png 432e819b15.png b3eb95cd5b.png 606cf6645d.png bdb7d19e2f.png 69e0c0ac2d.png 60adaaeeef.png 0e83c832a8.png d63e5779da.png 3e1e8416e0.png b7c6762ad5.png eb574eab0e.png bb319c8fcd.png 20c314dc8b.png 0942db4eed.png 9e9f1a10c8.png f051e93f9f.png 9ffb5d6034.png 80edfca7d3.png 658b78124a.png faa5a454bc.png 0e8ff74901.png ada318e411.png 10d990f91e.png 4f42f2193a.png 1d5095d325.png 58b73c60c6.png 2b3fa35f16.png 974f07329c.png 8a5739903e.png be06a00a4d.png e9032dee29.png ef77a03cae.png 6e70299b98.png b479520ed1.png 94f53802ae.png 7173e8bb6c.png 5f9c7e9503.png 2c5ee8638a.png 7b8700f0e1.png be9f4dba24.png 34b01f1639.png e6703f6191.png 6aeee32e59.png a046868003.png d390da215f.png 16771e6d53.png b059eb7570.png 44cf29d695.png ce7addb51e.png f0c6966ef8.png e146c20d21.png 68d8ee613f.png fc471580a2.png b3680c53d9.png 22f1d9ba23.png 1e4e74dd1e.png 7b49a01666.png 639e8ffbae.png d8807e8abf.png 065c6cd6ff.png e09080ef49.png ef491c01dc.png 0f81ab5099.png 3189466c83.png 6a0282da60.png b5a52c35fc.png f737613072.png e78df7b2c3.png db50e3d295.png b1ceebc1fa.png 17f3075bd2.png 9b7e9f8a91.png 79201fb797.png 54ac782d61.png de3db2a1c6.png 9ff430c52b.png d84f620e57.png 242f1fac62.png 2c0cdab53e.png 84ac54e5a8.png 3a8641b598.png 67c6eccc7d.png 39c584b10a.png 0a1ea2ce4f.png 2093e5c98e.png 9c57a7ab91.png 30d3aa07d0.png 4ccd4ad68a.png 8de3dc60ac.png ec76f13e84.png b02595bf3e.png 3e70505ba4.png d53f293494.png 96ed985fda.png 6519483c74.png cc6a06550b.png 3149b1eebc.png 50b9046e67.png b5a76532d0.png d1b35d319f.png 5b28bc540c.png 2d3ff9e083.png 969caf2c6c.png ac6c4357a9.png 82f8e5737e.png e04bf08dff.png 8ceb500014.png 646f093b5f.png 4aa6feb688.png 8ba0248e74.png fc8d512788.png b3b28f26eb.png 97da46ad4a.png 0d10332602.png 9e346a910c.png 3823ddd8cf.png 0c7a052374.png ff32fc77c7.png 1fb19a252f.png 7bd8bfb18e.png 3fde792ba8.png c54ccd9f94.png 48f237773a.png 9b5b0e60a1.png 7dd0a19b0a.png 9cfa22e826.png 85007ebd13.png 05af913dbe.png 3d65b48db5.png 18619c2342.png b5544cfe5f.png c6ba202202.png 668cf61ce0.png ea122de9b3.png 43be809ad3.png ef73a37e31.png 2b13786b5e.png 3b7121a267.png 3cbade83c1.png b475e5ad7a.png d29d1424ce.png e9feb4fcc4.png 70c6e41609.png 9aae327222.png eccc82228f.png aa81ca4f3b.png 107abcbb72.png 6df6139389.png 7bcfd67b4a.png 68b826491f.png 70c273f62a.png 35e9810619.png 4ab53d1795.png 8aaf885cd3.png 34c5b8d814.png 9a14689f82.png be8310513c.png 0172b71f58.png 13d02b602b.png 154e585cc4.png 595c54b0ac.png d27db3dcc0.png 834c1f2d71.png 88c9d3f47d.png 097989f097.png e01c32c8a9.png 3bde8847ad.png 530f6e4597.png 11f4ed3a8a.png 82670a1711.png c435b4f4f8.png 52da078de7.png fbc680b74f.png 63d4a471c8.png c9afe2f91e.png 96e1a80391.png 3b6ed42600.png a21e1cf8d4.png 89c5994dc6.png bceae870ce.png afa6b76f77.png c192a33608.png c6d577c616.png 8f3ef2f080.png 07d94f047a.png 3bc1fe41fc.png 6c34c04e12.png 1c7c8f02c5.png 0406d1fda9.png 27fbb734ab.png 01066c1de0.png 6be77d7154.png e32ae6e436.png 0a75bbbb74.png b455f3a725.png 10c0624432.png d1dcbcfea6.png 384050c4e5.png 1e7b37c671.png 6768f2c7cd.png a27e70b9ad.png 6dc362f696.png 250a94739d.png ff349094e4.png f5395fd3cd.png fd219f9cfc.png 2c4ec05c50.png 6e8d40dc65.png 8f6454562a.png dbd3a5dc0a.png b4fc2ce0be.png 0cd43eb1d8.png d63629d428.png 79af45f6e5.png adc1ec2462.png 4708fce9cb.png 0ac4df785f.png aa082095e7.png fe9ef87c45.png 46af3a5b29.png bd67eeac0f.png b3961ddea6.png 462ee323ab.png 37676b8fa4.png 577eac9bc5.png 55b7d18492.png e1b5a636ba.png 7177b9576f.png 61ec0b181a.png 2df8965962.png eef6e1c58c.png 69d4d52bb3.png 4ce34a9fb5.png d07b5f804a.png a4e04b5bc8.png dc066ad24e.png 48d00777ce.png 2afa754199.png 7a4ef2cd6c.png 70779a50f1.png b142db0966.png 4504f9c398.png fd82a6b2f5.png a19df661b7.png 75623af4a3.png 5d934f890d.png 8c7a0d5a1a.png d0da4f7de7.png 0670f16651.png 7e35e90693.png 2f7043caf5.png a16b0e43e9.png 1d6e08ee8d.png 2c04e84b3d.png 48e9086d51.png 20e707e4e1.png 7b9739c44f.png 673d620dca.png 3835ff55a0.png d4e2400b25.png 0a7c09181a.png dc7d737c47.png a6be9b9688.png 2bc9bc7c1b.png 0681b94208.png aa4f987da1.png fcfac062ef.png ad068f08d1.png 5261804250.png 9c726c07cc.png a03090943e.png 00a9b78f49.png 8a6f94a69a.png 6a0c145773.png 0dc2288534.png d07279fb65.png 86cda5f8ce.png d454f0d70c.png 5cfa3dc715.png b19888b1d4.png 3ecd9b4931.png c10a04cb9c.png babf9dfe9a.png ab4a9da299.png c216c094d3.png 57e445c326.png ff52c8f5f2.png 4e10dfcd54.png a16bbd70da.png b84a690f8f.png 4c64716fa8.png ea5cc18a2d.png ce146a156c.png 48db5fccee.png 265e1752b4.png 22b0703aa1.png c1b4f6c978.png 4882d2a775.png 7bb36cdb1a.png ebfba68ec5.png 4a82c89850.png dd05b799d5.png b930c21ff1.png 569c62c7d0.png 7b4e7cb0e1.png 279999e213.png b54c04f07f.png b66dfdf6dd.png 0bcf0f39d5.png 58335ef080.png 51caec18c7.png 8561c63d20.png 9e17d61db9.png 7757d22ad4.png 2d6fbe4e0e.png 16541f595d.png fb820642eb.png 1d085fd979.png ca30359954.png ee71a6c72b.png 04aec42282.png ee09643244.png f3d195ee69.png 5202aa6a12.png a747fc2b99.png 43e7c593d2.png fb305a2062.png baab5d127e.png d50e55dc71.png 4d66fb9825.png 55689d22ea.png 355ce54530.png 449a9e0c51.png 2d36bc16c9.png 2428fce568.png cbf2924b41.png b8b46ff67f.png 6b6e268379.png 69ab424098.png 0d151d1bbe.png c9049a4fa8.png 82dc91ec22.png e54d72e6b7.png c95e99e11f.png 02607a1d6e.png ae80852574.png 9b1b4b7481.png 5755998028.png ce78d7d613.png 76f8eb7530.png 873c879e6c.png 4a4c747233.png 9e54e0ee92.png 14c9bc2545.png b433dba580.png 0cfc3f08a5.png f48701d932.png f741649c22.png 1aac5dad59.png b8945d366f.png 40e58a796f.png 7cf4d3dacf.png f6964b62ae.png ef252584ab.png df19018cf2.png 634088c2cb.png b9c7a3c680.png 8be77224a0.png f2db786fef.png 6b1a1e50c5.png c440ceda26.png eac66ccf10.png 40525a740e.png 3a1c84fe7c.png fca4d42846.png 27aa644839.png 1c51a79860.png 9ef7777145.png d17e8f536b.png 1ffc2168ad.png 66dec21f1d.png c60ff9fb7d.png 56cfa0c19d.png d5e5df065d.png 462a7f9805.png 74c0bc5214.png 556d61cbf4.png f2d3d06909.png c835712756.png e16235fa5b.png a48b98d992.png 494ce6d61d.png e72b32e044.png 389eeae597.png 82d226eb19.png 787c79465f.png 5cbf79259f.png 76e5c5422e.png 7d761f02c2.png 3cc01963e1.png 58c949a784.png 04b90090f8.png eb9af521d6.png d2edf62bfa.png 0b2fbd6e26.png 0f8497a7f9.png 33e736f52e.png f00dc3b37e.png 808fb3d46c.png c987a5763a.png ae2f6f17be.png 89f8881f19.png cb610f515a.png c616ac5178.png 9f6bc7a549.png 13d601c146.png 368fc1bf25.png 64ad650850.png 6d34f414ed.png e47f1a1be8.png 115d0054ef.png 6fb522de93.png ee8f46704d.png 0e991e3624.png a3cfc9ec3a.png ca3bf7b634.png 69dd4b8705.png b52ac8f64e.png be234bafbf.png 0fa1e2ec0d.png ff540c7ca0.png 47c62d446e.png 3d80641a99.png 43b527f949.png cb61601ea1.png 8536003f03.png 0f6aa9f5da.png 4096a4741f.png bf42f85d68.png dbe0fe4dc1.png 0e67c7794b.png a16611557b.png 6ecb722809.png 3435b69c29.png 201c30c2f3.png 5d9d31868c.png aa29e7876b.png 198925c04a.png e367a6ca8b.png 7f841928bb.png 7e94eb71be.png b77ab07896.png 67fefe864d.png 8e132e492e.png 98a9095250.png 78ad1df4a1.png aeb4aa148c.png 49ee3373b3.png ef36c47553.png e6b76e030e.png 309400bf90.png a4f86ae62b.png f38d7d303f.png 9db87ffdaa.png 7b8bada98a.png 10321b58c3.png 0969783d07.png e1a0cca60e.png aec650e318.png 4cfe2d4763.png f158599333.png 445bfee824.png 6e9484138d.png b349b57230.png dcff079eb2.png bc2c4e63bf.png be8a6ccc8c.png a099efaadf.png 92d9119491.png 8c14ce1882.png 073eeb58c8.png fd6a32c9b6.png 691a004407.png 7f54fb7d0e.png 8e131567d6.png 4dee03c883.png 3b57b1ef9d.png bfbe0808b1.png 7e0d970af8.png 8f3009b2cb.png 66e610e586.png 2d75d6bc0b.png e9a6d47f94.png 518b6d0f17.png d33fce2c44.png a77f740603.png f8f3fa162f.png ebd7b4879f.png 2542f94c1c.png 0f77318a28.png 32cbd61c99.png 9ad7e627fa.png 7ebfc0aee3.png c35a01102a.png 462493f004.png d3b9892977.png e63b9c1cd4.png d3cdf99eba.png ccceb23dda.png d1bc57f92d.png 2e24b94e5d.png 985bcaf46f.png d90e533ce3.png 53b90f4e43.png bbc1ca699c.png 3bb4884ac5.png 4f3c55a643.png 4b478173aa.png a6903a84f2.png 0f5164a7c9.png 29309e32c6.png 75190d4eb8.png 899bef8b58.png c039fc26ad.png 37e8e0a012.png 742fb47f42.png 26b509826c.png 3dac7c4094.png 4d630eb6ce.png 64f1e00916.png 2425fd4e27.png 7bca7168b6.png cbab88c5c0.png a9d067cf35.png 09a53387aa.png eaa481ae86.png 4b1bf13b46.png dbec5c6e98.png 0245364ec1.png 108fe2c3d8.png 4fda00e2d1.png 3660856523.png c4f2c790fb.png 6bfa33ab79.png 495da9037d.png 0e79df7ad2.png 6ea89a9eaa.png b8173c3664.png df34ce2d4c.png e7afd37c7f.png 1fde67d42e.png b68729a56a.png a6327775cd.png 1045d28892.png f66b2e3432.png fa37b3bbb5.png 751bb24ab9.png 597a8f0a20.png 10ccf7d9dc.png ed063311a7.png c5141ec49f.png 165ec50967.png 5f240e936f.png ac03d3aeb6.png c62fb52445.png f5199961a1.png 62bce5724c.png 95ba7bd510.png 79eb884bd2.png 770210adb4.png ea35a95332.png 28abb87539.png 73acee452c.png 073a59f653.png c60ef7505e.png 20933fcee0.png 557b56b7e9.png 7e0279884d.png 80b0fa63e4.png 81b1d7ed17.png 581a8a574c.png bd0ea3d8a5.png 38bffa5fa7.png 1cc2a7346e.png 1d35fb9bb8.png 3998ea2fb2.png 75ea71b97e.png bc15d3d823.png cac3b6adf1.png b48d5d0a49.png 097f02867c.png 8d3552011c.png 6adbbca343.png e133fc5d3d.png f4fd4f5ebe.png 5a7e7cd37a.png 2510191dbf.png df3b956d5b.png 0ec11733cd.png 4ed082016b.png c32048ab2e.png 45bc251e85.png 95775a9362.png e5fc8cb081.png 3e613b4906.png 064a8eb3dd.png d566980876.png 14525851f6.png 8c139b7d3a.png 93614d4b95.png f4a6b37b7c.png 84450c580f.png ba9328f577.png 03138aebc4.png 69a52adc65.png 029612d30a.png 23a760a05e.png 5a8dce4386.png 7f380f4095.png 6c0f139b5b.png 254689666f.png ea68c33a0e.png 3116974feb.png 5a88500149.png 25ebcec9c0.png f95b20e4b5.png 20a3294af9.png b790c65f84.png 2becc508a4.png 4ad823e2d3.png 4eb539b65b.png aff52da041.png c7a2535ee6.png 7e1b79b767.png 789b0007eb.png 3b680d50c9.png ba6e0a1859.png 817dc95214.png f89b63c425.png ac30b3edde.png 5edcec5115.png 5962b44f3d.png 03dcdf8b24.png 1bf9e7785d.png 0e91ebd824.png 1fdf1ea64b.png 58bc76194d.png 41df6abd8b.png 2c22f20699.png f91185cc34.png 14862c2754.png ebb5c4e58e.png cdb6298286.png 62d11a72f3.png 5005257da5.png 26f2a18ee2.png fb663774b9.png 7ee71ee874.png 0bcfa63f88.png 5137243b27.png fd22cb4311.png ee5e67f77a.png 04ecf2b040.png 9001151a5c.png db5ec02b2e.png e24efb21d8.png 577e97ccbc.png 3ffbcbfb40.png 1f3f6c3791.png fa3e8609bb.png 84c314d868.png a778e85a05.png d2f25a78a6.png 2b9d6bad0d.png c0e7b93c04.png 604e99b0c6.png 65aa0b8161.png 9e2f4c7946.png ff16cbe4bb.png d2f82ead6a.png 14e3b9d607.png 8b9528c3f2.png 6cf706f764.png 15474a9e79.png 38d9fe1df5.png 64060a574f.png 4da725a703.png ae87f367a8.png 427c6caf1c.png 598a044729.png 84f807d2ad.png a2393894ff.png 8972857ec9.png 665452e731.png 07f00d6967.png 7ffd320769.png 5968a5ba44.png 5f2b6a66d1.png 7f8cc01860.png 2b185ef472.png beba956f7e.png 402b2c241c.png ce9b8cc11e.png caee58b3ea.png 750aa12137.png c689bc0cbb.png 5bb0ca2e6b.png ee200c15ac.png d2862ced4d.png e4a1869906.png 85a9824616.png 51caea4f7a.png c4f2855630.png 624aa8ebdf.png dc888669ce.png 77aaeef0a4.png ac2404b452.png fa78260d1c.png d0fa5460a9.png 80988b32b4.png b4382ccb5d.png cd81de3128.png 0d2e3e9a4c.png d4602e9eb0.png 570761aef4.png dd59e76729.png 5a01200b40.png ed764022ae.png a7d56ddaf1.png 42f38d930f.png 26b001bc1f.png 72db0c3a2f.png ed793c1d33.png ad8604aeac.png f31007fdcd.png 77a154ebcb.png 00e68bfb1b.png f707d4c4ba.png 9771c21176.png 561fa940ab.png fd284219fe.png 11373f4cb8.png abb62290bd.png 6315adc398.png 1873c5eced.png a38c6bd807.png aaddd5cd19.png aebf99da9e.png a218c04841.png 423749f702.png f37d00e098.png 21c09f5272.png 10a04f7dfd.png 792351f140.png 917a0e6868.png 72317af9c6.png 1056e892f6.png 8e1a651214.png 66ce83df1c.png c8a942dbf4.png d3696f45f9.png a5f876a4b6.png 62d367a908.png e6735cfd80.png e23d59c891.png a1a950ce34.png c467bf46da.png b1b4b687f7.png c0188d737e.png 6fc2b9d6fd.png 416bbf1081.png f7cb3559f9.png de917fe153.png 2a40c4adeb.png 14027d7d54.png 113ff7f87d.png 6c654f0642.png fd2642606b.png 832a05c627.png b173d500a9.png 5aa379e81e.png 0304e028d9.png 6b030ae5e8.png 1045448bac.png a74573e55c.png 63660a3693.png 62b4377713.png d2353f04b3.png b773d9a181.png a624d8dc64.png 0df528c6f9.png 3a81fa6cb5.png 1de2a09cca.png 9e5ca2e27f.png 604e5bbf9b.png 5dafe5bb61.png a647ea2cad.png 9aa744c0d6.png 2a481972a1.png 3821e89b66.png aad74ec770.png 342ec0cfc8.png 4397a2b3fb.png d5f7d673f3.png 41574b9d75.png dc048ecac2.png c5dded34ae.png 4c822aca6a.png ac18a9120d.png 10f949e0c3.png 147caf1892.png cad650215e.png aaa9b6e252.png 8f73820ee7.png c8899dc0bf.png 54a36671be.png e145be89b2.png 03e9a82817.png 2ef75bf4d2.png 34dcdfb4c8.png 1a1383df07.png ebe37a58d3.png c8eb320feb.png c3c41a510a.png ed17b586e8.png d639f4c3ae.png aafdda92d8.png e9c780ce9e.png b688bd015e.png 97099ae7b2.png 8db6e29dd8.png 0fd4156470.png a3b37496d0.png f51afa7501.png 1442c59632.png 44882c70fb.png 7d9995c4cb.png e42e6250bd.png 577e38c148.png 65b8b45711.png 0634142132.png 2126d0dea6.png 765964a84c.png b174e802d6.png 5655bebf54.png d2511dfca8.png 6b6aef9a45.png d0c287e257.png 98ef92da51.png 0d4c2ee69a.png 2c755bf200.png 5546a9b0a7.png 122568b709.png 7de77dc41f.png d1b2555927.png 3d059ab2cf.png 955a9274be.png 62b7bc9a1b.png 6ed76bb3fd.png 4d3cdc8697.png fe051a426a.png f1d52a443e.png 32163dcd2a.png 2282d94f28.png ff3267b613.png 120ae382d4.png 26b573dd27.png 3f90de437f.png 01ee06523b.png 4eda5fee4a.png b3ee456eb5.png 6424d3b6e1.png d18d6ca1b5.png a0eca9a853.png ea83727b30.png b97701125d.png 293dccb805.png 58bf5a0052.png a1646cbb62.png 6700ff86b9.png addbeb160c.png 91002b54e4.png 580cdf3c55.png 3fa5b770f9.png 794e763e6b.png e5aa4a03b4.png 2eae67f243.png 71408d1c56.png 3bde973437.png 1ac7f45711.png 2b66c196d7.png 84e866a2d3.png cab5dde4eb.png 606ef9d9f3.png 399ac12902.png 22b1274df6.png 8be34a849e.png 3d0fec4a1e.png e3e55d9e16.png 595b69ce11.png 945b8261c9.png 2d5ca11aae.png 5df1adaa10.png d155d709dc.png 69d62e153c.png 817a1259a3.png 2bf72b17e6.png ef7b551c05.png 0e9495f2fe.png 308469f5cf.png 3772d8349e.png 6e166d6284.png b3777ff467.png 17a5a58850.png 59b6130fa0.png c9bd75f14e.png 1cfaab36d8.png 4680a45404.png be6c27d3ab.png 71aa85d5a4.png 3b88cf99b3.png 73eb023f31.png ccd8af9426.png 527f4c67b5.png c14978dca9.png 568a6188ab.png 32034f14af.png 84c0fd3ce3.png c238f22e8a.png 9a704ae142.png 2a9ff688e3.png 26e5094d40.png a342e04707.png 3b5653f6b3.png af1d588df1.png e21021cd36.png 0203970177.png 0fa88fc811.png fd07e58d73.png 8894588d5d.png e08ad29c4d.png 051bfc19fc.png 2265b53f82.png 48b3dccf26.png 5cca94091b.png b1b8290b61.png 949d41bcc8.png f4aae34a84.png f869349ffe.png c22fae7598.png 5a25f90bd9.png 511e4a0eb1.png 593e0e741f.png f87ef87ca2.png c55beb0582.png c096fab229.png 6bb333fe7b.png c5ef41f73e.png 606efcc5ae.png c1dbd8af8d.png 77ba57abdb.png a707bacffb.png d8af997922.png b7c3012e31.png abd9ba8120.png 255a44ea74.png d1b150a0d0.png 4e22f17d32.png 233b762d1a.png 7f9e856b9a.png 8311fce851.png 60c4d1d597.png 23a9b95318.png 618bace044.png a15415f3c9.png 9f3cc74e77.png a328d04452.png 23ff5127ff.png 3b403b3f01.png 7dfe39d7ae.png 119db9578b.png da0c1a83d9.png f2d5b21c5d.png 2ccc636a08.png 5df0d7bceb.png 96a7ad5c07.png 48c9c1c34f.png 29a4296e74.png 7f62bd4856.png df22272d32.png 295e52d03d.png d80d9c1445.png f33605c868.png c215f25359.png 0cf4d64a89.png 8e479eaedd.png 922f50a838.png 58c2fb4293.png 76876c97cd.png 563692395d.png 506bc2ec20.png d8a4c11479.png bfbc7fe76d.png 5b6501b1e0.png 0ff0988d7e.png 1b554577bf.png 0a5f49ac6e.png 5535f37211.png d45c69bd9d.png 373b220a7b.png 808c282801.png 155de1fbf9.png 25db63dca5.png 0123eeda35.png 206045cf26.png ab72718c45.png b91cbd7a4a.png 66abc632b7.png 0f2540e5f7.png ab5f39fa08.png 26e47af0a2.png 7b9a3b1da0.png ee1bc8b7e4.png ea1fe0df1d.png 1f68e3a538.png 139d31bbc4.png 6c50e0b05e.png 3ad1d37b83.png db7bd98d2f.png 9e866473b7.png e506b4b589.png 15a76bc90c.png d05c1dc1ad.png eed2797518.png af6dd3433a.png 7fb97671b4.png 44257c5138.png 7708c1a8fa.png 254ad9e3c2.png 3d4093dcdb.png ea0c6893a5.png 2eb194fca4.png a089157e91.png 4c7f5de583.png 80590647c7.png 54c30d55b3.png 99a661efaf.png e0bbaec3b9.png b884ea365d.png 8f02627082.png 7884eaed47.png f5bf21ccc3.png 1b64862494.png 5637102f6f.png 23d24d6b0b.png f6a9cdc607.png 3a5bdd55ef.png 3911bcfb02.png 0c187c0ec0.png ffdc97aa4f.png 56b654a72a.png c818265a5d.png e3261dbace.png 8279b390ec.png 7680c9b7fe.png 4411ace0b8.png 0f5b2d9561.png 075c99bcfc.png e49d683e92.png a0c20610e2.png 02f0e1dc32.png a4b54abbf7.png 629e31317c.png 151099de84.png 10d2e76fb5.png 208e7fcf75.png 956aa89d91.png 111eb1d764.png 99f14c4b3c.png 6b1694099b.png b199772417.png 86b02d1253.png 43e345b8bd.png 7e38f83eb1.png e3577b8d4d.png a7ddfa3911.png 505692120b.png eb30d99426.png bb055480d4.png fea329e4ee.png de8e649f22.png 12298a8e03.png 1b2c24dfdb.png 3159053d8f.png 52c753e4da.png 5f706cc210.png 21789de742.png b2294d186b.png fbd452dfbf.png b6f6a93b17.png ba6f30ad6f.png 334f76e324.png d64b58516c.png 90ede84c79.png f51a494b10.png 88bd7bfca0.png 9609f60e28.png b51c6afa98.png a99d486d6f.png 19d2303888.png cfa895be5c.png 7ee3778aaa.png c7937f3713.png 988ed36efc.png ce23065eac.png 4c4ccb59ed.png f6e2c5da67.png 26c4ff2238.png 98017bf556.png 39c47a3f54.png 053566ac5a.png d16f246753.png d734013742.png 0176d2ace5.png f678d23811.png 846d597c6b.png 9a39b3caad.png dc330f6bfe.png f1ad140585.png 8e0c252445.png 5ba442f1cf.png 181f0917b2.png 35ff11761b.png e1213e9ace.png 2c84e49a39.png 19167725cd.png d4b07eba7b.png 65b5805351.png 096e56929a.png 79d6d9e217.png 51ad12b135.png 23578edc04.png 9c6d46eac1.png c86aa5e90a.png 97a306a60a.png d074403298.png 070394af17.png 22323cb42b.png 720b810ecc.png 80a63d5fa6.png f124af3a8a.png 609afffbe8.png 5073b62291.png 633a88f80a.png a1ece99af1.png 71e17c98ff.png 1806e34f68.png 533683b8e0.png 0c4a4fe6ec.png add26d48a4.png ff9d2e11aa.png 325fe8db2b.png 101fab9667.png 224b5191f1.png faaf883ec2.png 4a023354b9.png 4f381902e8.png 7233849a7a.png 30e76b97d1.png 8e2b00b033.png 17170c3fb1.png 94a1b56a13.png cc859576a3.png f346f5a7da.png 11b4141a6a.png 284894a681.png 50cb6ae8b3.png 9213d2bca3.png c925d8f9e1.png 49830fa829.png cbef2e2128.png c87cebf728.png 7c6e4834c9.png 5c91f8d9c0.png 46fdd04ed3.png df6ab067bb.png 991ec143b1.png 23028f1d61.png 89c9bd7ad4.png 494a610bfa.png 69b96fdadb.png 752d0ede64.png 6c91aa602d.png 46bfd27b90.png 18bcca2e96.png 59f990f493.png 0498d1fd98.png f24e1277be.png 0505759310.png de59f281db.png 3f94b6d38b.png 88f479236b.png d2a65f4435.png 144c958fa8.png 3b32255caa.png 226ba1773b.png cb9aedbfdb.png fb08e351bd.png faabfd1272.png f560c14550.png 43874376f4.png dbaa4c219a.png 131fc7cbf2.png f63dc1e3be.png 0a98fc89ab.png ae3782511b.png dcb3f0a060.png 164999db81.png 5b808ba57b.png fb773b7c69.png d2e5b43517.png c6c66ccb3c.png 736061632f.png 695d72762c.png 135e445ceb.png be74bf2e59.png 4a33e17f59.png c0434afd21.png 4b1ad60300.png 01a70b45ed.png e4cf54768b.png 00c473f654.png 81466d1890.png ba75f507fa.png dbf7801ea6.png 36d1b74131.png 7896674088.png 3003a4c4c8.png 2c327a06e2.png 7ee1b2f49b.png abace4b11f.png c9a3cb97e5.png 7b20febd6c.png ab5e7b990d.png 0b1b18a835.png bfb385be9f.png d431312cb9.png fe8abf3496.png a1c1dad851.png 2c61e169be.png 77e13dbb16.png 7ed6ac2f41.png f5fbe0ec32.png a30a23a310.png 8eab008735.png 00cde1fc96.png 2224f6d2d3.png 5db75dc1f1.png 6a54c9a21f.png 95ad98d2a6.png 368b385f61.png b4fa92bf4a.png 339db3eb53.png 8d57bc47c1.png 41cb99014d.png 9eab4428db.png be56c6732d.png 55b1c3e797.png 92e4cc072a.png 53db37148d.png 4b532df3df.png 6429ce0a8d.png e902cfed5a.png 61c2d72207.png 349f4316aa.png c8bb808990.png 14bdb1a4e0.png a8a6d20d45.png 2b05065d47.png 1e62bfeb3d.png e612ab0326.png b054b1c29c.png 80668fbcee.png a6e3ee1039.png 179de94b7e.png 27e7cffaa9.png 4a1afaf591.png 3a5330c79d.png 69f47cbc7b.png ffd47b14e5.png cd8ed0c05d.png 1298444dfa.png 68d70623a8.png 0e64ca0b80.png 9c86b981a8.png d6e41f3c45.png a78ec4f628.png 60fa9f985c.png 78d776d952.png 750a9f8a03.png 7fd682b979.png 7eaa5900b9.png 9c82805504.png 9be54cd6a2.png a4990e5d39.png 743a985f94.png 43fb770e34.png 262dbffadf.png 793dde2ab1.png b2eb29f6a6.png c96223d1d2.png a026d16f0b.png fe0f94a2bc.png 85720e2425.png f411b6b9c3.png a340d1d4ab.png 7110db12b9.png acb9762a12.png 341fca7b7c.png 3330b9ee6b.png 695da8b59b.png 57157b6f9d.png e60b73512b.png 90436aed27.png 46bf3f3bdf.png b8d543020b.png 5fbbe16b53.png 043cefa1b0.png 0a7fa5c5e1.png 690ad6b01a.png cb040c0f89.png f57a53da45.png d4e045055f.png 61c79657d1.png 079629bc48.png e115069b08.png 1c85715bf7.png fbe41e2659.png a0f1f0b1f8.png 245daa2004.png 40a6d01026.png 32970c365a.png b50f98299f.png 725e4a6ba0.png ba18af259f.png aa532a7c30.png 0eda123a2a.png 5777ae6eb1.png 39fd17e017.png a17c4dc16f.png c9adcab5f0.png 32fe997af3.png 6376c88ec3.png c9a8c9c5bf.png 57b461407f.png 487e2ad19c.png 36c0d6063f.png f947b41164.png a82d7959b3.png 25544ba1a8.png 24ab6d3ded.png 60ed5847a1.png e94ed59b74.png 356334a716.png c3b07f663a.png b3c901c03b.png a63fd8e2a8.png 82bc39d826.png 81575289eb.png 58b893053f.png fee853f244.png 9e54251a89.png 8b7b938922.png c573df4315.png f9d932e912.png 7271cef48a.png 903ed53422.png 1c6f0527ae.png 1c2931e548.png 497ed6a760.png 4ce0d52b0e.png 139a4307a3.png 1d10ae96f5.png 254a7179a6.png f9eb5a18dd.png 5a4f3cfa85.png af0c3f3591.png 641dabe2c5.png 23f5febd5d.png afce0bd7dc.png 650e16bbf8.png a5055b4e51.png 32abaddce7.png e48c8294d2.png ce900e9c54.png 0066451ce3.png 75842bc006.png c8c576b9db.png 942bf47b58.png 08d6cb7e93.png 1c224a1b4d.png 431ad89cf5.png 0a29abfa13.png dffe50ca61.png 39c3747602.png 7b8b5a7bbc.png 62157d438e.png e8c3aa3269.png 5382fb0713.png d3a1329a49.png 62546dadf6.png 0ee6773a65.png e7ef2c54aa.png 7f80ac6447.png f96265d40e.png 4bdff7af87.png ede06242fd.png 1af68faa92.png 45116205b9.png a3b91acb96.png 2675797f52.png 4c9eef5a61.png 01f43eb833.png 4553bc6fda.png 72a6095db8.png c8409479b3.png ba5da40d8c.png 675d0ed1c7.png 2035cc5f5d.png 152f9b96d5.png 1393ef7cbb.png 2c89a54ba5.png d9827c66d5.png 403b47ec61.png dddfb6085f.png b4f68d9a41.png eb3b019e86.png b15d57ba45.png 0ef56f5ef6.png c8c7701dbd.png 64d5d795ee.png 97dc92d4e2.png 6013c6b879.png 3a00f81f99.png a900d21f9e.png 99ea7f1c07.png 9ccbea0d6a.png 8b71ac9863.png 28b3d997ce.png d526a6bf6a.png 7252a44a02.png 4a56c90000.png d6b4003095.png 8d5a7fe872.png 547f6cc102.png 4dd463ca9e.png 81b6dacaba.png d236c0b381.png 8cc2d23c57.png 41b3376629.png c068228c1e.png 34a3c779b2.png 60e17a8944.png afaa14f2a2.png 6d00a14fdf.png 4d119162bf.png d9d49a1831.png 92fa3084e7.png faf8e27e42.png 60b7f7060d.png e54b5f7985.png 29b2a38316.png 7b24cc5255.png 3ee59e7485.png ca6f8f16a1.png 122edd47a9.png 22f5dc03eb.png c4507c616a.png f0acdd0a7c.png a5cef24195.png b3c8932dc8.png 221a6117a2.png 43eee3a16f.png 8847a1fbf2.png c22d9b32b0.png c2228f38aa.png ddf789f194.png d81265587a.png 390a558cbb.png eb62b76058.png 309e1f0815.png 03ab71b9d7.png f8e06d0345.png 51e533cf03.png 82a5a9bf4a.png 22c08a8dba.png 3a7981d706.png 188598e41e.png edc3e08e48.png 8ef8466217.png 5406a61720.png bca07dbbec.png 3b5ca1ae0a.png 3b881cf889.png 78728951e6.png 1811721401.png 73053e4d03.png 9e2cb9d6cc.png 138cdd198f.png 3e1cfd2ccb.png 69adeb575d.png bc41500ff5.png 25a0f0fd27.png 15d090dfcf.png 9cead7930d.png ef898b80ea.png 80a253818f.png 18cd36e491.png af92444d7f.png 9e88bf3ab1.png 7467212701.png 706f5ea90f.png c6e884e38c.png c2eed8269f.png 1a279da1f9.png b91af03eda.png d1917291dc.png f9829bf4d2.png 8b29f94321.png bb5b1e34ba.png 85cbf88c3a.png 41b907baea.png 23ee619fec.png 4ce3eb12cd.png 43bc135ba9.png 20d957cd46.png dd8c8b143d.png 06b664b866.png 0462491d87.png b8933f437c.png e53934a7c9.png 49c9c04ee7.png ddaf8d7cf3.png 3f3ac0573d.png ce4047f646.png 0bd1e720bc.png 1d241376fb.png 6de3a6d961.png 16b6cd9bc0.png 68dd1c44ae.png 98056176af.png dc0047f648.png 0cb2f8b29c.png 4ccc7e2691.png 8ba3b7b19b.png cf5e9f93ab.png 6ade8abb39.png 61ac649947.png 01a9e8454c.png eb61290af7.png db6f54bb56.png 08c5eccda6.png 6bf6f7cd9d.png 66b2d4a486.png 62560a7420.png 873e2f5d2c.png 02b224b871.png 85ff5b98a7.png c4f3cced43.png 5c21830f2c.png 7ce5d97648.png 59ed0ad9fa.png d36e380a0b.png afad34be59.png 5d049a35b3.png 634be460d9.png 5e2793aa94.png d26f77256f.png 1fca9e9479.png 1dcf541ad8.png 5125a5c599.png ca0030c4ed.png d3947fc006.png ef12562fe2.png 781694a6b1.png 4671f0bf71.png 32326636a3.png fb131f3cd5.png 8a927a2c52.png 7c4a4add03.png 37ca434162.png 8113b5279c.png c4b4370ea7.png 7eae0b1bb1.png 8e3a461a6a.png 34f399a2e5.png 517872435e.png eccbf3f0c2.png 5097350725.png 1b6afd84fb.png 8502b6d382.png c2171fde8a.png c5afb8174e.png 7381f17bcc.png 86a72bdce6.png 8c659875e6.png 992bf0d046.png de3f584f95.png a44587b9ca.png b1935eef13.png 9ff01fb94a.png 6aad94af7d.png 616e0b20ba.png 0228455db0.png cb88a4e70a.png cde2cf1ae9.png fd5894772e.png ca08075350.png f4259be373.png d4c21d0aa2.png e78041acf8.png 10a1d480a5.png c032d1b936.png 194ebc0b86.png 90dfe4f673.png 19a9d37c4c.png 372483a22d.png 00b3ad08c8.png a8e62d2504.png 42a8d2bcb5.png 37260d998a.png 94fc265d24.png 4df895ff96.png b55aa09a18.png 612c946296.png 2a26a80b9a.png 16769a3e8a.png a9d6ff5d4c.png 6c7b1a041d.png 153a47924d.png f741becc08.png 73efb5b23b.png c2a4700caf.png 0b9829c5db.png 0cc93c1754.png 0c45122390.png d8448c2a06.png 593519d51e.png f4e6470f2b.png cfe57ea3fa.png cd8765b15a.png 4c445e5206.png 93ff5d63de.png e64711cf41.png ccd4db34f0.png fd141b8ffd.png 9af260ba1f.png 7819882e1a.png 3aef003939.png 0ab43360f6.png ed47d19004.png fb5bb6be18.png 389d9615ec.png 65a338624e.png 4171b6ca36.png f448297676.png 3fa643b8fb.png 6d428b7d07.png 33b02dc92f.png d9692cf925.png 4efc5efc79.png 8bce9ebbfd.png 738958ae5d.png c620332bc0.png d2b3f8b7da.png 9744ed0e4a.png 7c37fbeb5f.png 6fe9bc9132.png 5bf950d526.png 8eaa59df0a.png 569e920119.png 68666e7f45.png b203e59c04.png cbad522960.png 34a7b93098.png 877343b661.png b2a0365c9d.png 6926d43d4a.png 149d9f1a60.png 06aa4ac96d.png 4cdf314bda.png c576a01a52.png 48132be0ac.png 15253b48f4.png 13a93f9444.png 476bde9dbf.png 6c72d0dfd0.png 63340cabf9.png 02e3c926d1.png 6b3c84dc5a.png 29e9f52665.png 59d6fd86f3.png bc24d33d57.png d067d519f9.png 0bcde7fb0f.png cddd1a5805.png 157500b95c.png e4186029c2.png 616ebf67c3.png 2bec33a46d.png 3bb7347dab.png d4a84662ee.png 7128b1506e.png 78ac553fb7.png 034034d17a.png 639a529644.png 111b01c533.png 09a9bd4ffc.png 09cf21afa7.png 5b25607782.png 9e83c04d5c.png 914df9f8f8.png f0c7259583.png aafb5e7b77.png f2d52f3fc0.png b2ce3e9581.png 6df9a9d1f5.png 8221d9b2b3.png c6d9c13cea.png 8974f6558c.png cf4162011a.png 3dacf22e6d.png b8b0fe94b0.png 094a5b30fa.png 11bc27b01c.png 0939b133e1.png 7481e20a4b.png dbf16358a4.png 8e9a51812e.png 52739de8a0.png 7af335b97b.png 78d7865bde.png c76c0acac6.png b6b9452a52.png cd179a8e54.png ac1cf2cdcf.png e766c650a3.png 8d738d136f.png b05d4e02d2.png b87803d6e0.png afc247387c.png 0c61b75e90.png d8e7f62b4e.png f5ab2a12f3.png d4b3a58d5e.png 572001f0b4.png 225cbb9fef.png 5244b40d0c.png 141d9f2d64.png de193a4b3b.png 280911f6fd.png 0d4038338b.png bb9f42f7c8.png bca65f4faa.png d0f06eee13.png 7964e62d1d.png 1ee2156eb1.png 9ac1664234.png f9f0be34b7.png bc0ea15b81.png a2ca5eec91.png 090f67b75d.png 8b4302d784.png 49d36f09b4.png 936d863260.png 33350197f3.png 474cb70429.png fe6dca6363.png fccfe75923.png ff182734dc.png 5e5ee7f8c2.png a787b2115a.png 6d9bbf4c1e.png 4b1c5e085d.png 22263d7cdc.png 0b293581b5.png 62ac70c3e8.png 2125e91ae1.png 356dd015ba.png aafaaa68d6.png 97559e9fc0.png 1e79d48a44.png 5cac2dde69.png 2a2dd02617.png fbcd0447ae.png c585215aef.png e5fdf421a1.png 8e950278f2.png c236669b05.png 71f7d85904.png 6761377ad9.png ada8a36dff.png f6b8bf64b4.png a3328ab6d1.png 14289fd124.png 63e2318edd.png 97d34ed343.png 88b89e2654.png 1e6c071a06.png 781c76c9fb.png 36e8817ef5.png 0cf880cdf5.png a911d4f326.png 53b4719e8a.png 294983be8c.png 99cf856ff7.png fc26352edb.png bd2b47f556.png 55017a37a3.png 7bf1f7ff2c.png 260720933e.png c79f40f0cd.png 538ec1a18e.png 6e1433766d.png 8f17217adc.png 3b6f36dc01.png 23986c3a69.png e09572a521.png 469b1c506c.png f8e7ee80bc.png 169b928039.png 6056e713c4.png e0c018cc57.png 1f75d0bd30.png b952e9c869.png 9853112f5e.png ecca6a828d.png 4400c5bac8.png 06d2cdd10b.png 8f90213bc5.png 2b641b5aee.png 25402dcb0b.png ee86a9485e.png 468303ea76.png 9a346d8216.png 5ae916d52c.png 58a4b8ec4a.png 0af4a2ad0b.png fbf7b17153.png 526179a9b1.png 2d069cef1f.png 6d5077d085.png eb60c1763b.png ec1bd0c46a.png 2a82ebb062.png 470d69965f.png 3f9b5ad0e0.png aa5bb9e3ef.png abc4c46db1.png 1c82f67993.png e46d4284d5.png ece547d5f4.png 4ef8852462.png 2c5df02c7f.png 95fc7cf6a6.png 2803a5cf55.png 0414cc3198.png efce4de15c.png f60e495e7c.png e509b9c869.png 92b5f47694.png aca25559c4.png b8963d4754.png 4578174915.png daa98b9d98.png d0f903ce16.png 9f350005b5.png f2f7bfb55a.png 0aa49c1f5b.png 83349a5042.png acb8f69957.png d7b2a04db3.png 912fb85555.png 90fb6f4825.png e47e42d98b.png 2ce1812846.png b28dee166b.png e292577582.png 401718a5ca.png d809054e30.png fb3ffe5424.png 16da227a77.png 27ed8e3d5f.png fdb49c8336.png 2f9998ea8e.png 7a0c21b0e4.png f0e0e3f933.png 9091630666.png 2e3ab718cd.png 490fd4bfaf.png a51b08d882.png 69874e7963.png 48dddfecdc.png 03d9a31cd0.png c91038e023.png f20201155b.png 3ca6956aac.png 63e49edc70.png 9f7f6d76db.png b08328c011.png 3709acd3d8.png 72bc5edd34.png 93353de86c.png c9255da5a5.png 5c122ecb96.png 4b2294dfcc.png 84b9da36fb.png 1b7adc4406.png 1f536c5e95.png b42eb8028b.png ce4593cd3e.png 34aec621f6.png daa0c14bf8.png 57f175f5ec.png c9e76be5dd.png 71bdecc536.png b30982f994.png ec098526f5.png ec55911833.png a579c775bb.png 3d2b243494.png 4892ce4f3f.png ce7de72524.png e576adfb4f.png 09493c684a.png aed738c07f.png cc079af7c4.png 4c9b3dc4c8.png 3e741873b1.png 21006cd47c.png 4f9c0b8c34.png ad642c2161.png 60c1bb4390.png 05c164b212.png 8369ecd82d.png a0e18ad460.png 519955218e.png 46a12ca49e.png 4c7781ae43.png 4a411c946b.png 0b651bd775.png b15561ae18.png ffbbadd3eb.png ead7dd8e26.png a0a349ec44.png 42446ee0c8.png 27144efbb1.png adffb35572.png 62bead84dd.png 28f2e72621.png 540d271079.png 3e95d4417b.png 07e7427152.png db275a11fb.png 340216e59a.png e519d5dc25.png b9f002931e.png ef18960bb3.png b116d83f00.png 3cc03621b5.png 94856b278e.png 27838f7f46.png 111f53e48f.png 81574fb1cf.png c5af6a21e7.png b1cc24274f.png 2fceacfd78.png 1b1783a2a8.png e8325b54e1.png a9e19c1e10.png 5be7dbad99.png 46fccdac75.png b56f9e78e6.png eb5934bd67.png 10c3458a28.png 8aa2cf1ec9.png 89cc61c040.png 6539fda60c.png 48e42488b0.png 4e8235d649.png 6e72e53dda.png da5209aa13.png f2c108fd0b.png 4cec6bf0aa.png 6e99d91e17.png 1a6fd02308.png 973872ad59.png dfee9e4bab.png 24dfb5825f.png 1ff564151f.png b239eb33f5.png f6663b4aad.png b8f80587f1.png 711470dabc.png d4259417a6.png 76131bdd5f.png 5cca3a3213.png 8b049ec23a.png 971bab4c1e.png 37940b652c.png 04a21e7ce0.png a14daf13a3.png 556e28c244.png 2ce903774a.png 3cffb3227b.png ca720c6ad8.png 7d8e81e137.png 5d4ebda29c.png 3695558548.png eaa326be94.png c9b54f28b2.png 62135221f1.png e9dad4676f.png c5b4548ff2.png 41f7617f91.png 6c36352343.png 2deae378ef.png 182ef04220.png 99f40c4b94.png e4883bfdf0.png 98b6e72be0.png 7cb042c4eb.png 8a700d4031.png a856815b31.png bd83eb2721.png bd76fc4213.png 0100bf4bf9.png 935e8e43fc.png 0de9dd9520.png 3f12023654.png f01ac1723f.png 634572b017.png 364e353a82.png b600f6e4fd.png 131fe6a1fe.png eaebee27aa.png d0ef5d91e0.png 4d4769981f.png 51c9bd64b2.png 0727c8045d.png 42ce7fe354.png 010c27432a.png d248e4ccc2.png e9adb58e5f.png 87804706f0.png 5ae57cf40e.png 0754ae5da8.png 237782b1b2.png 5383a3f1ff.png 635c6f6b8f.png 02b0a55486.png b365cdf41f.png 40bfc63823.png 0c36a4de54.png 0827ac0e62.png ff29a185b7.png 2f44c71554.png f2974ab55b.png c1ab73f5b2.png 1dab5be479.png a792976d83.png d3618783eb.png 0432c28b41.png f3efb5f509.png 7865079bea.png ca4dc840a9.png b43c8c37a1.png 0b4093a820.png 541e59b47e.png 3de99572f3.png 15d872393a.png 3eb3e346ca.png 9ab3a897e8.png 0fdbfa2f0d.png ea0ceb154d.png deb1e0e23d.png ce96a07785.png 7baa1cf344.png 7a3c8c0d2d.png 994217fb87.png cc2c7789b8.png 0d2789f1a0.png 09ff0bf1b8.png 08d4933465.png e70983bf79.png be4b1274dd.png 9ef9b40de2.png c894b9e4d2.png 9511d7e887.png 7ae7a91efc.png 2ad5cb95c8.png c514a65854.png 614e08f3f8.png fa5f0040ee.png 188da27ff6.png 4e5c620706.png 6654e84002.png 7fa5927702.png 82238ffb93.png 73e31d6ba2.png 164e2dccd5.png 82724f83ce.png d125d1f8f4.png 0a4d368a58.png 940fce5c20.png 8b937b3dbc.png 160adc1c40.png 9ea7bef973.png 5f3bc6338a.png da459db8b7.png 1f96e75dd4.png 5cafb50b66.png bb0c689bb9.png 358c91b7ce.png 244edb19cc.png 4e1d253099.png 8f384b5525.png fec9d967bd.png 7b741f4f83.png 929bb32e72.png 58a33df533.png 9abb77605e.png f9a438cdfd.png 5e6a728cf3.png 11a8397e82.png dd0b1012ca.png 9f32747c28.png f5d0bc1b0d.png cbb74247a4.png d451f0645b.png 0092c53387.png 23affe3bde.png b7c0062406.png 441adcda4d.png 5a7235dd88.png e4a276f1cb.png 3c9218e3d2.png ccd02673de.png 561c3ee6c6.png 802fa1a9f6.png 26de0d5588.png 95abc7000c.png f94f8cce10.png 751b4f4354.png 1fdb251261.png 005b02dd7c.png 4388f8ed7f.png 79f6734016.png 66e5e6debd.png f91da5124f.png 4cb49fd736.png f22fc5bff8.png 68b94c24d5.png 3790459cd0.png c3b42ca60c.png 07e0ac7743.png 11b8214fae.png 0a4082a7d0.png ed039de746.png c25acd1ab5.png bb71f5a675.png 86fff4bd22.png d87bfe2c9a.png 68186883f1.png b3861c9620.png be542946f5.png 8debc383b3.png 423a10be0b.png 9b0239d22c.png 883163a438.png 3a4a98aadd.png 21f6c04e43.png 2b80a1a753.png c352c269de.png f8d07a5ecf.png 6f2071d2b5.png aae740801a.png c9bbf41eb2.png ec612d6e1f.png 48b74ccd0e.png 3755a4f1c8.png 0d12341d7c.png a53e9abcef.png 47e634345e.png 0a59145585.png 6f90ec390c.png 057b54820c.png 0f61dd2edd.png 699924356a.png 1fbc472829.png 843fe9dd2e.png 7ac61d2369.png 53677afabf.png 4f9f89ee2a.png 322815a679.png da28696786.png 91c68481cd.png 96e03e657f.png f4c228a2cb.png 0642eb11c7.png d02bbb7461.png b404aafd56.png 64c27a1dba.png 6d25e0f3a7.png 00a5318192.png fa6d82463a.png 2b624269dd.png 3feeed910d.png d8b5e842cf.png d1e97641e8.png 5a8b4aeb28.png 485e869caf.png fd66b58631.png 43d4e67fed.png 5505f08449.png 971775bc8b.png 939855018d.png e00f9885c4.png 2eaa0e2925.png f439b7a428.png 05454fe6a8.png 82f686d860.png 389139a9d0.png f51a3cd14b.png dd6e39ee85.png 70b5a9919a.png 1a05d9c2a2.png 9175c41a74.png f86b6b05b6.png b452af04cd.png ea233d4117.png cdff8ed1ca.png 3567a5235d.png bfd167b98f.png f88e532e4a.png 842579c2cb.png b447288bcf.png 606ca6621d.png 2985c57bb7.png 7bed570cde.png 1c3ef17382.png 0192693ea2.png 17ea34c5d9.png 9234e203f8.png 3de6277060.png 1471b3bf7e.png 16c2c3cbae.png 1b99e91068.png 009e9c5f22.png bd971c3d86.png 261549d7ff.png 582649f4c4.png 522901656b.png b319973d58.png fd1f3e5caa.png 7e5879117e.png e4dbb99aa2.png 3e5e5bc3be.png 680ec6e447.png bb68fcaaf1.png 319f3240b9.png fdc16dcadf.png 13dfe3b905.png 9134be08ab.png 270c61a3f4.png d7e72cfc7e.png 4c407be403.png 919f18579b.png 616d7f08a8.png cfe755cfcd.png 3022a2d122.png 650dc752dc.png 1368ade51e.png dd52fb7cb6.png 07b344fbb5.png 3db89d9c92.png 5997066cbf.png d3302e82e5.png 32cb09b74f.png 39c765b268.png 54afef2ccf.png e7eeb87ebe.png b22e02807a.png bbc3a70187.png a5d6f86af7.png a3eedc216e.png cf9c283f60.png 3fd8443a93.png 927ac50fa4.png 30707d81d9.png b91e65bb04.png cf5d2ec0bd.png 586a68e3d4.png 53bbeae507.png 979b3ab248.png f170d1105d.png dd063e8cd4.png 086df8ab93.png 56357ce74c.png 16f4daba7d.png 20cf8b7a66.png 50fd2ca447.png 70a4a1eb64.png 49b0c9b785.png d376f8676a.png 3589572823.png 1299942387.png b959545cfc.png ffc50b68bf.png bcb43f1fec.png fb1bed3120.png d25aa6c068.png c76df8e72f.png 26027f6238.png c2a808b758.png 80e1e37c49.png 5b087e5813.png 3b69920d03.png 2379d514cd.png 832c709b04.png 040af02c81.png 03b1288247.png fb8524cf3d.png 3780e66035.png 106b0f23eb.png a2bac51579.png 5270c3324f.png b7f523db92.png 6dfcbdbade.png 158372da81.png 322816b277.png 5aa1bc199b.png af795e857d.png 3f05ca9eda.png 7d2a057276.png 79c3a9a0de.png e4fce4b587.png e0d104baea.png ef0e0b570d.png bfc44d82f0.png 77795c3885.png 8b05478217.png 70be68d0a1.png eb69e96015.png 3507dd1cf1.png c005e0beae.png 567d785c85.png 1873b8f6a8.png eb8cc8640f.png c9fc80957f.png 6dc1cff938.png d53dabc268.png 46f947b8d8.png 14db62dde9.png 9fff138ea3.png 1e1e0fb0e5.png 09e2c7bfa3.png 4eaf4060af.png dd75c9c653.png 8370703e18.png bd4dd3ba3f.png 9b7ade011b.png 98d30fa576.png d69dc03388.png 9f3d03c145.png 0e5add3298.png a0ae63c9bc.png 642e79bdbc.png 479ac4a280.png 0b6bb5c85a.png 6c9d4e4786.png f3c0c384d1.png 0c39e78c19.png 9b42e0bfb8.png 76438dfb9d.png b3c53c57c0.png 5b40470a20.png edb7317647.png feaf8ae578.png dd9997f013.png 247ecc1a63.png 97dabec5eb.png cccb72adc0.png 6d3209c6d5.png c5dad43641.png 5248258f96.png 32a414a0d8.png d0eaa2adbe.png 43c323e221.png 5f78fdc4fb.png 8f4a26738e.png 62bfc99b5d.png 3f68cc0fcd.png e84a489d0e.png 11dc566878.png 93d95729b9.png 8e38d229cc.png d1408f9935.png d2c53f4b7b.png 4e176e4a6d.png 4c0f3277e7.png 5e16e537a2.png 68e24bffc0.png 66d52bc03a.png 8b4306b0b7.png d80d8067d8.png 47beea764b.png b6298c4af0.png 884958bc2a.png e92155faf2.png 08f3e1580b.png c71ec28470.png 2ced1f6e8f.png d65f579350.png 908ee82dde.png c9958b45d0.png fb85acf55a.png 61d244b0e1.png 1f028def4a.png 764765d9b9.png 655358d4c6.png be464130da.png fbf6226410.png 98c93a0d18.png c7272c27d4.png 88efb73723.png f3de47863a.png a1ee362660.png 02677351df.png 78d7c70b94.png 35da47b3e6.png 9714f42c6b.png 3a1e404bbc.png e0f853692c.png d0ef6f681d.png 096788e6c4.png f099f5fecf.png b1a9b71eb1.png 78e417087a.png c8c82dcede.png 838581e54e.png 1aa56af36c.png 14ff4740d0.png 44b05c1bc5.png a248b69897.png 92eb99caa8.png 949b1fbe67.png 6f39c615f9.png 86bb108198.png bc493a5136.png 46d98e3296.png eefde17753.png 2c1d9a7284.png c104f63014.png b3ffb97bd0.png f22224cb9e.png a6753a46ff.png 06cdaef7b0.png 1ec1f4b3ea.png f8fba159c0.png 28e1de6f4e.png 2dbcfec0b3.png cc31e0720c.png 6c126643dc.png 0c73d146b1.png b3b3e761fe.png c7b8fda693.png 49c82e40f6.png 137fe8a868.png dd691e392a.png 3be3f006c8.png f40bfdeb45.png 1a1c2eb4c7.png 98943bbc82.png 3a00144329.png 88b36056f0.png 2df17e4028.png 739ba65f16.png 2be0c0384d.png c19559637d.png c21acbb2b2.png eff6f75116.png 77f0e55398.png 34b4732d20.png 3ddc3ad0b5.png e325a27d31.png ff7dc78a2c.png 7c14a49942.png a3df74dd31.png 46a93d2bd4.png 3d6e96149e.png e484db5a63.png 5e3679f159.png b385f3a649.png e9fb2fa04f.png f6ba31fbf3.png c5e23e3c24.png 1bc532153f.png 2448f7f11e.png 11d82f87fd.png 20df40b631.png 50094e6744.png 6d49d84013.png d12faedcfc.png b2ba08c21b.png 49174ccdd9.png a9d13eb682.png ba588ce106.png 11994fcea5.png ed607ec342.png 0320c3c633.png d11b0da6cb.png ad653a0343.png c8074c16dd.png 062ff07243.png f3b9a8601b.png 332dbd80a3.png 7c7ea2a8db.png d8c00f1f19.png 79b5c88862.png bbfc493cd1.png eba7ead66c.png 240835a198.png 77468b048a.png 760e3d1750.png c7df3e05ad.png 4d3bff540d.png 7299f61039.png 4f7ba782e6.png e6757ac486.png 22caaba7fa.png 8a39b1ce9f.png 175540fbbf.png b0f7c95ac9.png de9ecc8950.png 4f05c105c6.png e8135a1a96.png ddcbdb5447.png 06f549734d.png ee026cf4fd.png d1c6b43e5e.png 58d7827e0f.png deb84b430f.png 81809318af.png 0965a4cfdf.png e57b99c9b4.png b254feec1a.png 8596457c74.png 780bbb490f.png de8e673c5d.png a4104dec88.png 722574af9e.png e39ca54d2b.png 81b84bb9c9.png b8a2f1a673.png ed29f7fa16.png 6b2ee6c253.png 5f405e1970.png b6b97b2238.png 6774a12a64.png 024a6d0c47.png 99ac198170.png a49465e1af.png 7eb352ecfe.png b985d07f6f.png e991f05a67.png c7b0d84043.png 4b0e52eb9c.png 2c67cc6d42.png 4d8fc28f50.png fab9e5a46a.png a53ce65d9f.png 90c2ceb801.png 5af890206e.png b387191390.png fdd6fb200a.png f2b1b2d180.png 5a85ebb162.png 2dd75dd10c.png ef9151a6d1.png 34d78a619f.png d953b0b60b.png e26935aff8.png f9c42b8d50.png 36b2ed5c09.png ea9a1c61a0.png 1e048fd40e.png c6aaf86f7f.png ba96be1a01.png b97a4c857d.png 92b9a0c1a6.png 07243dbcbf.png 15f9aa8356.png bfad493b37.png 6cff622a5e.png efcc088f95.png 7cb2165703.png 1e3b1e8c02.png 7c1758ce19.png 8f4e3c0d7c.png 67913364b6.png e92024548a.png 2168a05735.png 69cd6cdd28.png 9831a5a7fa.png e9d622dba7.png 9521c81c4b.png f6ca628f38.png 1dac95d5b7.png aa37f37aa4.png 1bcc5ea50a.png 27ddc1e08c.png 063c439dac.png edfa8cdc1c.png b0ce227ed6.png e9f2b199ef.png 0350a9e3bd.png 7818f0f4e6.png 01ee4f83f9.png 7246da723f.png 950defdb1e.png 572ffe9ec9.png f7c67e98e7.png efb7370889.png 77dde5d3cb.png 578cae22ea.png 2ef21d2cb6.png b8a7031d3d.png 7ec369d890.png 75b4fe1c78.png 9c4e59c725.png b208e23ba1.png e8f8ab82ce.png 6048597c55.png b011b540e8.png e31364901d.png e7923bdabf.png 96021baf01.png c0e06c8b5f.png e9afdf107c.png 6f18215e39.png 29669db85f.png 34bcf08008.png c90712e934.png 12b47dcb66.png 80a60e50be.png 8e20641658.png 0db0d82d37.png 2180e2610f.png dfde68c552.png 46c8f4192e.png 49fbbd45f5.png b5c096003d.png 5497f42ab8.png 66e94a50e2.png fca169873a.png 9d48cf230c.png b3740228b0.png fb643d300a.png 156589ec9c.png 48d37635a0.png 7d58fd7771.png c68b2ca953.png bac92dee00.png 6e1c857c00.png d476a47369.png daadda3a18.png 973b5ff2f7.png b3bf74f77d.png 26e7e22f60.png 3ceec05d58.png 1ccc46e36f.png d811dea143.png 68cc289774.png 6ba0601416.png e321020b2e.png 0d6dcdd704.png 2337388245.png 98ddd20ff1.png eae5302a1d.png 0f074f459b.png 337d9a4379.png fab48de08f.png daa3d292d1.png a7f7930f3c.png 4ff2b5959b.png 41809fc23d.png 8077c06f68.png 641806b79e.png 97357fbd43.png ee48355ed6.png 02a3ec26b3.png 57e242dd6d.png e53ca23b39.png 0c06b7f8b4.png 5fe905145d.png b0f23f7415.png 1e6eea6c81.png 3e53d236d3.png 7cf4dcc68e.png a54ae707dd.png 020b586ddf.png ad91e70d5c.png 64310e0861.png 8a6401e9d5.png ade7b0d2aa.png d028ae45d9.png 60235a3230.png 5547124214.png d1f0237831.png 2b41b80931.png ea2206dd6f.png 5c9ff6624c.png 2ea086caa3.png 8a481007c9.png 69c4e1da35.png d72554e86a.png 699e9c511c.png 96ce99d109.png 13723d4e2a.png 01f5dedbf0.png 4dfc862dff.png 328ab38f76.png 93d0ed6abd.png ad4bfb8c00.png 3dc343c503.png 8043caee17.png 679a0030aa.png ee9bd5a04a.png 9480d31795.png aeb75ff00e.png 2f85d3f736.png b3102e4e0d.png 8661a2b464.png f6b8be7626.png ac938e2761.png 77e259c418.png 088baa4c44.png ee82c84aeb.png eabb73d429.png b7abc2029c.png 4f8b7cf7dd.png 23a4cc9225.png 88fbabb58b.png 3f0debff7e.png d2bbf82139.png 8e3cdc41e0.png b42c01d7fb.png da56ed9d56.png c0bcd07a7b.png c175c77179.png 328d1497af.png 86b82ac3fd.png bb7e7af84a.png 836f781562.png d8b24dc645.png 51519aaa77.png ea0b716b6e.png b15b7eb177.png 8a04ba71be.png 3b80fffae9.png 8e154a02a7.png 54524393c7.png ffe63102a0.png 45de55ad3b.png 9608c60728.png dbdb45277f.png 4e54c259a0.png e21597846e.png 63726c0bdd.png aa5fbe402e.png 8676b531a3.png ad19d4e20c.png 4856963531.png 34a94a77bd.png 1a47928acb.png 453cd20948.png 7d04e34530.png 07adb8811b.png 0514122b6e.png b081cf2ca0.png 591a9a0aa6.png f0633e8b86.png bc814417aa.png d04b72eb09.png 73af373fca.png d979a315ce.png 2af94f9c4c.png 2ba0764fe1.png ebbd2ea275.png 6a65fb7ddb.png 7127a65f6f.png abbc5e8ba1.png da9d8425cf.png a92c448553.png 28604880bb.png bb9393397e.png d666f65d34.png dd07c35381.png d14060225a.png 6e05b60c72.png 310abcd735.png d101256aee.png 855b3c7d30.png bf66dafb31.png 032535bbd8.png 0723cf2280.png ad95b2baae.png 1285d1dc37.png a18b7d9b6e.png a754990d1f.png bf185105cb.png 80efbeb7e2.png 791a14f34f.png 4636496784.png a614c44092.png da0af9cbf9.png fdfe7e5987.png 55e2b8d4b6.png 2e0bbaa822.png 0e36eb125b.png 205d9b714c.png 896ab41b34.png 87e08f180f.png 233ef1fa32.png bf6faea4de.png 528affbfce.png 699c9334c5.png d029316467.png 6719731541.png 075e7d7937.png bc1868e3ce.png 3e60aff57c.png 7f8112b31e.png 644dd2c53a.png 7b2d30b095.png 7dcd975aab.png 6aee62c3eb.png 32b6ac7ddf.png 948eba1e86.png 7b392bda72.png 772d2aed6b.png 0c19fd77ca.png f13eed34a1.png b7754e1aac.png 2a5db8e4f7.png 305861d7ab.png dcd9710d60.png 01a40c3405.png 11a0fc8072.png 6a2de1c736.png 5abac94653.png 9ba360fe0d.png f6a71f87fd.png a011acc5d9.png ec4005618f.png 2ab2a682bc.png 09dbb503a8.png 6d412459ba.png 54319ceb3d.png 7f03bfdbdf.png e835ac232b.png 7671c2d961.png 2d7e704551.png 9ec9469778.png 1aa5baa761.png 79ce59706a.png af600f2a65.png 3dfca0b816.png f448b518f6.png dd4e7dde38.png b7214417bc.png 61fa3e07b2.png 5764d3797f.png adbee50c8d.png 41045d9a0f.png 4dee25677d.png 131332f84f.png ad34bc33ed.png f0c9c19f47.png 407aa4d1a3.png 476b88ccd8.png 286978d145.png c58edbac0a.png 2b7baf7374.png c62a370303.png 3cb4906b6e.png c207a2983d.png 98f4e2f918.png 84e1902710.png ef8b8553f8.png 53858001d1.png 9e8fbecf82.png 79f0ebae66.png 90f086d17e.png 560c9471f6.png d7470e757f.png 3b7ceb9c90.png 0a23a32d1a.png 494393c725.png 9aebdf433e.png 1a505d91b8.png bdfc5dc085.png d8e549f16a.png a6355cc103.png f14eb52a4d.png 4090bd3129.png 6599700d73.png 706321cca9.png 9bd349312c.png 67d600cccc.png dc33e8d3a5.png 6f96fea158.png 80444c3dab.png fe18ea88b0.png 3e1d9b88f7.png b3075bc7c0.png 3e06571ef3.png d2531a4d49.png 0402a7ba0c.png 1ec750ee29.png 875fa958c8.png 957e09ce5b.png 95747d4345.png 764fc25e64.png df23231a9d.png 2645e45058.png 20d753d385.png c92e16d3c0.png d1a7ba274d.png c5cae37fca.png e81dd36733.png dbfbead279.png f81e574205.png b9e2f1d49a.png 2db8392cd9.png 38447389af.png c35f12ef87.png 046cba545c.png 0eed90b7de.png f48b8dab45.png 546e401ee0.png 94eb6e5d40.png 12c401001b.png 4f856fc09d.png c6ccf15b4e.png 14f73c6c74.png d65df3a8cf.png b54e6cba44.png 79c8bd2854.png 6c94e054e6.png b98e30c2fa.png f58804bcfc.png e2d4588c65.png b95433b42d.png 0afc8c6d3f.png b544b666a4.png f1de314d5e.png b5fc6574cc.png 3c90e0da69.png 31333d1810.png 1b611f81d9.png f6d5677450.png 4da9fb1be9.png 64d66aa587.png 0d3e8f9868.png 5e1656cfcb.png 833ff7ed7e.png d0030ee6be.png 51d5142fdd.png 02d8b415fd.png 7d2eec203e.png 29f3b6dc8e.png 17aa492868.png 8d7b7baf47.png 541d5341c0.png 658f7c6b32.png d8d7a8ab4d.png 47d97eaa56.png e6aa3a20b4.png dcdad231c0.png 6fe6f537f0.png 36f087bbb8.png e6b58b9a6e.png dfd1b4037a.png 89eb8ef89f.png 611103499c.png 1f27634299.png 54af2c195a.png 01f537721e.png ae55273079.png c78063e0a6.png 5bbbade03d.png 2aa42366f9.png 3f4b677dec.png facbcfa109.png 8891f0ddcc.png 937bf3bde5.png 9714d5390c.png b07015747f.png 0f785ea0ce.png 8d71a7b436.png 7fb0f3f722.png e10798585e.png 8d1caa7424.png 6d707a2713.png e69bb6ca73.png cc383f3d4d.png b38fc0bc4d.png 38c852ce16.png 0823abbc29.png ef481ba313.png 50e3fe9bc1.png a63c9474ad.png 214a3af065.png 5c46f520d2.png 8f7b79768c.png b258011964.png 257d28374f.png 828f7f524f.png ee9df7a0d7.png 1451f3a7ba.png 087b30cbd3.png 32851c6bff.png 0c71c122bc.png c26c927bb8.png 1bea5426f5.png 972718a84f.png c304dcd3c7.png cc435c1f0b.png 3e871346f4.png ccf829551b.png 493bee70cc.png c180f4858b.png 5601dc4c6b.png 288afaadba.png 8200fffe39.png 6e293e90b2.png d56d366f80.png 3839b132a3.png 3ee086e2ac.png 8c6a8730ff.png 15eebbf52a.png 1c1c2983ca.png b4b45105cd.png 8973a34ef9.png 57a3af612c.png 5c520f8046.png 9324c530ca.png 6b06770322.png 914604b3ae.png c529870d8c.png 58b63d6905.png fa3d9abeb9.png cdaa35be38.png 4e04982929.png 98a98ca9e8.png 747c075dfb.png 0dbed4dcf2.png ea3000cc49.png ee463d2892.png 709fcc80e5.png 83b28f856a.png bb3a8a42af.png 9e457f2983.png 331b11f8db.png e03d434fea.png bd6338e1f6.png abb222c430.png 1d2e024c1f.png df2ecb632f.png ed2224ab77.png 1ee20d41ce.png f53940cb48.png 85306393b6.png 94f3719cb1.png d8e57f29b6.png f35f60b7a3.png 2731fa8693.png ca384fdd2f.png b773b0a33d.png 8d5e51efb4.png 9da48c77c3.png a12c9895f2.png ed4cb9bcc6.png cc233193ba.png c6ed8a5ae5.png e2902bf2a3.png e4f1c5b15c.png a3b2bb97ac.png 008315cbd8.png 51e6fa0574.png ec935828fe.png 497735ff9a.png d7ecb1e319.png f33e9641c7.png dcd5eaced7.png e2938f7370.png 4beb590412.png 6cfc72c21d.png c5172e6af4.png 302e684a9c.png 3614095a0e.png f970a44702.png f953e11b4c.png 430bad3c88.png dd9af1f22f.png 899f8650da.png 2e0bd0472c.png 0e6f485743.png 9cc7c33d95.png 187fa49f49.png 3c77445aa6.png addf8411a1.png fcbf884d92.png fbcc1b2a37.png 662b00c0fe.png 7a8df90e4a.png 53e356cf6d.png 0e5eb2e19c.png f0c5925a80.png 00f1af5e69.png 6e58134639.png 4d2c664efd.png 93007a203b.png bf92b48ddf.png 5e4cd3fb1c.png 7304ffb567.png 02be61df2b.png b3ef8aa64a.png cf93be642e.png de73a5a74c.png 9dc4ce9178.png 1fef5171bb.png 90b385321a.png 6973e71920.png 71033f6fbd.png e5e6a428b6.png 7ed2a9b1f5.png 880f4c16af.png 4301b1f7e3.png ce573caad1.png 17111dba6b.png 6cf33a5e20.png 06814a8ba4.png 1a73f9ce89.png 4be11bded3.png 1190cfd81e.png d66e58294c.png 2998f3f29b.png 71efaabf89.png 4927c651e0.png 217ffd92fc.png 8f10fd62fb.png 7f5df12942.png 48588f24a8.png 44b7b7a750.png 8850d1e9ef.png a0637bbf74.png f8aac62301.png 21fea9b8f7.png 7af87e1aa6.png b9802f3539.png e3dca32ca5.png a9f29dca64.png ffc0ed590d.png 113156b9e9.png db087a15ac.png 99b6ecc1c8.png 4ca4737f4a.png cf4b289c17.png 9bef2899b0.png 91471464a2.png fe76b5e9e0.png 4ead77ca14.png 534dcc8cdf.png aa94d14241.png a5e1da850e.png 549a707326.png c95594456f.png 45cabd3ca3.png 24f4a505b4.png 0c9f8a7a42.png 22ba69d8cd.png d3d258ee8f.png 508062c055.png 1918e72177.png 008f8c8aaa.png df4495253c.png ec042b411f.png 6f770862bf.png dce7811645.png 88f3d7a1f6.png 2cf9b202bb.png 617f259ef0.png 993950daeb.png f753515bb8.png 0a3a8a5f37.png 67fdaf03af.png b09456d59c.png aa622a23c5.png 0a797ef290.png 88f4daafbb.png 760eeda87b.png 29b017cb20.png 25ec24dcd6.png 686e1f28fb.png d23419186e.png 2a7336b189.png 8965871960.png 78c36a5e46.png bee4d7241e.png 3e4bd3b6e5.png 6c0ae2e809.png d8dcf9f0be.png 967b146e20.png 5977523480.png 36488934b7.png 92fe1d923f.png 04fdd70962.png 347d3a7801.png 9b67bcf412.png 8e1be11efb.png 90090d08ae.png 1186d4ca3c.png 6a443ecf2a.png b9eafc377e.png 48f502aaca.png da7da78656.png 996c4dc2a9.png 21bc477614.png acfa052ac8.png b45dd34dfb.png 9d5aeb5104.png 7aa0e4e924.png 95862fc051.png 90117af5fb.png a16f6fa6f9.png 179b18eb1b.png 8c71fc1122.png 8e5c3abaf7.png 48a6b2914d.png 5c93067d41.png 826f5573b8.png 3eea2cd3e4.png d78c366a0d.png 4a16993559.png 165cf32a37.png 27f4d59295.png feb1738f44.png af3d81a42d.png 96cd72c1f6.png a6ab750afe.png 7712e09b9d.png 632c5881af.png 298246d0a2.png 6f533e9f3e.png 9cced7a09c.png 735ff8c333.png 3d8e486c58.png 5cb1c7a644.png 2057e966b9.png 6ed63018b1.png 13950a2184.png 6b6a7b9756.png 1cb68f59e7.png c20fd75377.png 1b2fa5d4f5.png bb4b7133a6.png f4676634e5.png 1702c5fa6e.png 8f9027e401.png 33cfb92423.png 8fa4415858.png 2c0fd3a542.png ccfb9693c3.png 153c26c3e9.png 5f77a1ba95.png 2cf5acb2c2.png 7f9ec4856a.png 9f9fd9cd6e.png 4a830422cb.png 9c37d6fe35.png c16e8ff6c3.png b78adef524.png 60269a895b.png c086a756ec.png 5fb39d0e7f.png 3b5f671680.png 346d259abd.png 3091d07dd9.png ad6283c993.png 7bf5942c18.png 0804088f79.png 573b493456.png 1c46fe53df.png a0b00e7922.png 4d640602cc.png 7dd0a9a509.png b270ffbcd8.png a0ef83e8f7.png 505ceabce1.png ced71f3641.png fccf003bed.png fa02cf34fd.png f06e589dca.png 97712a8265.png 4180504cd3.png 059f99344f.png db1b291802.png 06e009a7a4.png 46df24ee51.png 07b92247d3.png 1e674e5b6d.png b2a7f34fa1.png 640c22038a.png 69233da61a.png b1e7ed420a.png 89aa92a709.png a648490cf6.png 97aed38b4d.png 27d6ed1bb0.png 91b12546b9.png 02fedd0c79.png 50b21b5dba.png 24baee6e4b.png 1f78b0cece.png 0c59da2eea.png a48d0b7d22.png 3f01db328a.png 91c3a0e8a8.png 94e3ebf443.png 19a0c4e9b5.png 42e3dc40ba.png 00efd96e2c.png ac69290900.png 31b22c447f.png 36b0906d62.png d72f61a21b.png 77b692d7ed.png d0bdfc3217.png 3e34caf528.png a173685785.png 18b147861a.png 927c12b972.png 3d86cf245b.png 2a25afc47f.png a3f3157a83.png b0912218d7.png 178c67d992.png 95da7d8f73.png aaad317b50.png 1ddce7211e.png 05bb19ebcd.png 924c3d6a9c.png a23223b144.png 74b9b40ef0.png d185255316.png ce96b58bee.png cf44d77ca0.png ca0e0b463f.png 365dec6186.png 73d3411765.png 09452c6408.png 1efbd5996b.png e202f8d4df.png 1f7d2d2769.png 9a5d8e5f37.png 580f8c86c1.png 2f71546df6.png 21a3da8bd4.png 03aa815dd1.png fb8da7b005.png b699fe7dd1.png 8d932981b5.png a7fcafee63.png f3cd70744d.png 827491498a.png 2c436eb10f.png 21753d8ef6.png d68a5abbe9.png 35d93d979c.png ce1ed41e9a.png ac289a4281.png bc0ecdfd52.png 5a40c4b4a0.png 7aad507507.png ab343c4976.png 299c46c3d2.png 30a9858fdd.png fbc0dcd4df.png 1f3a94b447.png 0611452742.png 164a29c9f8.png bc067b8eff.png aee24b7b6f.png 8ffb761299.png 515798b1cd.png 5b841772e1.png 9853f60114.png d3e581916e.png b93424039f.png 9720e1e105.png d024b8d5d9.png d397b6d85a.png 7f73304dca.png 88a9870bbf.png a0b4f9b664.png 5f15a72005.png 11005c0470.png d98ee3cef9.png cdb488ab27.png 750bd2308b.png 8a237e828a.png 3a81cff745.png 9881925fc5.png 0a52e1bf02.png 4f74d3b977.png 2d29478050.png 9241807175.png a1196a546e.png 763eecf967.png 7cd4898363.png f6cba2e890.png 189357775a.png e62ec0b893.png a80109c813.png eccdd0f368.png 080b5e2407.png a09eea259b.png 4b3bee9051.png ffb1b9d096.png a971989911.png 42bf7406bb.png aa073980f7.png ca2c7ceb97.png 70618c36ee.png 4a2c200514.png 5f664c10a2.png 1f9fe8640a.png 2fa3affaf2.png 80cb33ede2.png 182a63515e.png 20415fd0b8.png 7e61b8c897.png c1be8dcffe.png d7c57f676e.png f4b56e86fa.png e31b6fc92f.png 641142a960.png 67998dfb60.png 3e2400afbf.png aeb2194389.png 1e6cc68c5f.png 2b31c73245.png 31af711b5c.png 8df9c84f20.png 936fa8e3e4.png 224c490664.png 7a14066e7a.png 58a1c44228.png 5b72ebcad6.png 84cc99f06b.png c06881f692.png 408083de74.png ea8da4b503.png 5d1909b602.png be72bfb0b2.png 411f4ac9d3.png 22ca553463.png 63b98f9248.png b596f5428a.png 20810a1279.png dcd83e940b.png d84ed53d33.png 43de4bb238.png b5e9a12412.png a557fd3376.png 8c8b8b7d6d.png 4fcbac3606.png a100455c2c.png 03948bcdc9.png 6b464d56a4.png 7784c83371.png b810ed2ed1.png 522bfc0c1b.png 1de9b66b64.png cf14a9e3d0.png 953d0eb2ab.png bd1f81f0ad.png bf0a278c46.png d28614094e.png 602cf815b4.png 6842e3fc27.png eb48070e3e.png 8858cb4648.png c3a749a6a7.png c19e72fb1f.png e974741e66.png 56f7cb9c52.png c829cbf315.png 17312df29e.png 0cd4ad5bae.png 3680dada70.png 95b1cfae2f.png b138330f9f.png de0c63338d.png 87a140d745.png 290510ddab.png 6e1f24469c.png 1d630e8527.png 9d45516026.png 7d51af6ef3.png 2975e0a15e.png 7c223a0665.png 1915af8856.png 9829094cb2.png 989778f18c.png 66d07dd062.png 42241a4692.png b35ac76f29.png 3a6f5a2675.png 6177ff1ad4.png 9c5567124a.png 53ff9d218a.png 5a5eee5cde.png 495718a00c.png 6f19a15faa.png 461c4b2154.png a23ce0105e.png fa9e8e851e.png 03c7e68cbb.png b728ab6b4d.png 47c89965f6.png 3a8facd639.png c3205a8130.png b3aabe7b9a.png edae0cbbda.png 616dc8b3e1.png cc827009db.png 711d860055.png de6bc4b60f.png af226b2973.png 1892c3d197.png fdf773357a.png 70538e4c47.png 02e1654bef.png ceba75e611.png 83b58112e7.png 7cf3f7f133.png 04c1375204.png b2b49923ea.png 5cedcdb47a.png 28574ad175.png a8b1c4d814.png 2b85abe20c.png 6b42489773.png cf495190b9.png ca14a9a381.png 97b2dbc36f.png 56b597f6a8.png d2dcce97b1.png 3ae90bbf94.png 5bcea69e9b.png 5fbf274e64.png ef223baeaf.png 60cfe5b3e0.png 3977f3e349.png 0ba2681782.png fc5a8b5122.png 18925b68f8.png 2bbe5967d8.png e369caf81e.png c2f2f9fb78.png f070629919.png 5f43ce7f89.png aab9a109da.png 02504aecbe.png fdd2dc5ce6.png a99344890f.png 736e3874c8.png 2403b921b5.png c457249c34.png 24294d88d3.png d905ab6a67.png 9ffa8a1f08.png 236e82dbdd.png 0c85a86c36.png c2bcde700c.png 46100c192b.png 5cd89f2d4c.png 6b2b54455e.png e0362d2205.png 532012ac5a.png b9be2550e6.png a83eb8c3c0.png b38d8d7402.png d946d589ff.png 9437ba261e.png a1d381f0fd.png fd8d57d81f.png c7c8e8ff63.png d367a6e845.png d93f654b79.png 3d5d820fa4.png 3cf05e05b7.png 1bca27f98f.png 03a98b53cc.png 26d1c96d4b.png a7c05c669a.png 0614268874.png 60e9913cf8.png c531c994cd.png ad9427548d.png 77321a127e.png 881cc4a167.png 7cdc6291db.png e0a303ec6b.png 7bbc8e0a69.png cd12ccf73c.png 842016c170.png e3ada5840a.png a51ccd2f00.png 5fe9fb5c4e.png 39f87fe0c3.png f99a7a0250.png 9f6abef1a7.png f18c5bf639.png 351168f0b3.png aac1902d4d.png 092d7bc330.png 77e273731e.png 6b3dd7f999.png 7fdbce1fca.png d3edd4d0d2.png 5fbfc69a6c.png e364ebd859.png 1f24885947.png 00801127b0.png f13f682676.png 7e3425f0f9.png 9567a72dc5.png f0062a6a72.png b702f2456b.png 34f546117e.png 1926bbd7a9.png 930ace946d.png d1835bf888.png bb394eef20.png 3bf1dc1ffc.png 2ef21a740f.png 2fa10e0844.png dd2c8b294c.png 3a003f211d.png 428b47a70c.png c29d85de16.png 0cb5f92f6c.png 92a2165923.png 5cb7627bee.png b482310066.png 9ee2a96d6f.png 4b2522e257.png 5c18ce998b.png f290d2554b.png d3fec84000.png f5d2d4d974.png 0a1b35bb54.png 80ae0d1b54.png c13346444f.png 5fadeae354.png 436fead290.png f33577efee.png 467f13c5c8.png 64eb7a40ca.png c3507d4ac6.png 7a1852f98b.png 200f674793.png 0786b42c85.png e962689604.png 317a7a9f5e.png 91d4f1574a.png fec8cb9677.png a1dc7c8cab.png a63763888b.png 8f73748cda.png bd56cea895.png cc71a2479b.png c4505b8d57.png ab9b2622b0.png 1078ce67ed.png a734025f26.png eb58ef5910.png d7a9a97b4a.png 4189112ea4.png 61b8d3debd.png a9494a9a5f.png d6ddf45bf5.png 545a6ed959.png eda8637a53.png 9b24c1eb70.png 8b1b7b6b9a.png 2a6a13e3ed.png 31a1e63e3b.png bcdf24526e.png 56583846d9.png a7c572c021.png 68241a010a.png 8499eba4d6.png 32dacc5dae.png a02d22da7b.png 74169e1717.png 35341c7a45.png 5e01df0d66.png d62486399c.png 7039307d0a.png abce81db29.png d342b98570.png f1eca3ffd2.png e5cd6bc55c.png 641dd7bc32.png 0b4b307e28.png 1c7bd9200a.png bfcdcd2720.png f09d1d559c.png 9a95d359d9.png 1ff103fe54.png fff9bc7e09.png d835d3e6f3.png 334ca525eb.png b49a70d0c3.png 67da0e77b4.png 7e1b387b7c.png 7a710d3b24.png 24af5751a5.png 59224321e4.png dbe799dc2b.png 9ff904c385.png 4d4271753e.png f526e6c2dc.png e2de2ce77a.png af3bc56edb.png 61c0129a58.png bfac5970fb.png 5b6d177013.png 304b53d8b1.png df52f7c7dd.png d6e385a87e.png 81fde400a8.png e1f1069116.png bcc6debfe7.png 88017f8e99.png 404db84e12.png 9543901c15.png 87e5ff8f08.png 4d49c3bdc3.png 4b950b6227.png b62081e0eb.png 8c7293ab40.png 05bf647e6d.png d4939a8bb6.png 87c102e766.png 4db1587bed.png c6cebf6829.png 173b50b4e0.png 111affce1a.png c425404682.png 6959f9efff.png 9afd54b9a1.png bb180f72d4.png 7ba388a682.png 5be84e4ce5.png e0ad4ecf12.png 39f0728ddf.png 1cc45d2a1f.png ff85a49633.png e862c4a1dc.png 97b67fe469.png 9ca9eae6c7.png 02a4e3a82e.png 0fc3f9d9dc.png c56c59f691.png e499f3c6ee.png 08caf9890f.png 94d397294b.png 405a1991a0.png 843bf0269c.png 1d23853728.png 68eaa96a49.png 22a9fdff9e.png 7940a73429.png fc7e44c6e0.png d100338a78.png f1a0a38096.png 2e749cfd59.png 8830ed5259.png 1ed0432125.png 440908f39f.png 3b23772288.png 692207d70f.png ba488e8c97.png 78e58914a3.png 1156737ae5.png f63a24c964.png 82c95cdb56.png fdab05aef0.png 673ec36187.png a9443f266d.png 6bd528bc92.png 20f04ce268.png 1c31c535a0.png 74ace6d352.png c2419712de.png 04013dfaae.png d914ed0736.png 1d6d730817.png 8d9ad80697.png 16545fae06.png f54aaaacd9.png 613ce5c75c.png 0d9e65099f.png 462a384a2b.png 5954cb50c1.png 9d7600e578.png a3f894216b.png 995c49297f.png b69cacf30a.png 4ff2ff620d.png 7d5409ff4b.png 3b48cce005.png 4705df4bbc.png d81b111a52.png c37ab09296.png 203a0b212d.png a5659fd2cc.png 740a5406d8.png df687410da.png 4454cf34a8.png 0155f4541f.png e6d955fffa.png 69deef503a.png 52f6267e3f.png 432f07b09e.png 1e178288ac.png 454c09bd70.png ce67c2e8dc.png 1fce96e96c.png e6abda423b.png 170a1cb9c7.png 71cebdc720.png a11da27e7b.png 876a7537a1.png 7c1348eb50.png 976e6e223f.png da63fc9668.png c7bde3271c.png 5246cf43ed.png 8946dfe209.png 02edcee8af.png fffa0542df.png 5b59adc91c.png c7c8ffea4a.png c47a2bb9a3.png 9d218888de.png 0f5f146f1c.png fd2ef2374c.png fcf3215350.png e60cd100f1.png 7e4fbf9bc2.png 51302b1585.png 9efa93ff14.png 14863a785e.png 943754ba03.png c6a9583845.png 45c44595a1.png f0a7b2070d.png 8997ca1a29.png 951c8ea3fe.png e0bc3d5a16.png d2b9a9beea.png 63d57d16de.png 0291a0c49b.png 1fdd703c81.png 5365d85bbf.png df4991a4c3.png 458c78660e.png c32e8869bc.png 0c89c4c0f7.png 550ab3f639.png 394d2280fc.png b05d265497.png fbcef17a13.png cf92834b28.png b0d14aeedc.png 709b6f8868.png c0111d3fb6.png 6ee68db123.png 6b75879bf2.png 72b3086d05.png 6723526c1a.png 62e4d6c471.png fd0d738abc.png dfd7cbea2e.png cf3c36117a.png 10391aefa5.png c4f9fffbad.png b36f7e07bb.png c5d6fe7b88.png d462737ce8.png 0db214c76b.png d31b7bca55.png 0f13aea58f.png ee41eb45b6.png 2992bd33c2.png d884aa82ab.png 644e2688b3.png 24421f34d4.png 78e2b8371a.png c4c0cb57f0.png 61b6c452ad.png 17a2b55a01.png 259c209627.png 092a81dc1c.png 7270c3b9e3.png 2d209b870d.png 71a3a44fc8.png 2ca6256249.png c0d50876eb.png fb1add496b.png c62cffd089.png 8d85595c2f.png d97f7b6b18.png 1d7eaa9036.png 4bbe1afbc2.png bc86846749.png 5086050a38.png fd0424be0f.png 5ec71d2e6e.png 86081eee45.png fbbed87ccd.png e8ebd88bb5.png ca69c909a8.png 9f95d4f2cd.png 7ba89db3b5.png 6fe3868d58.png 92ec5cd1a3.png 9a5cc7e8dc.png 8d8b3c36cd.png ff41dd8a8a.png 52cfb25e88.png 42f46dcb33.png 65ac89d834.png 34b54fdbba.png 7b5261d44c.png 1087f576d3.png a71154d40a.png 5edb47ab35.png 8e224affa8.png 1ffd2147e1.png e3cf4481ae.png 921fe866ac.png 165fb47f85.png 1d9d2189a2.png 56377d37d8.png 2dcf7dc762.png 28710277a9.png a36673b867.png 3893cc2455.png dfc37cbc5c.png 73500d8f72.png 36e6e20bd8.png d7f329deb1.png d11e86362a.png abcd697bda.png 156e64df6b.png 9ab1087c65.png 8c75ac2447.png 1e2ff4572f.png 96ce456813.png 8a578f1c6d.png aa250d5464.png 5eff7a6eb2.png b01ffa12f5.png a77f69692a.png 6daeaa31c7.png 440927b8e0.png e0c79815d3.png 134c694413.png 6bb26e2bd5.png 8a894561b6.png b3a4656e16.png 293a7d72e7.png 4401600a78.png 8c4081751a.png 7f107a23d4.png 8d74e6f54a.png 175cf79569.png e19efd1928.png ff06e0f167.png 19a274548c.png dce0abc347.png ba281ddfb8.png b6b9bfd923.png 79f188cbf5.png 8d2785033d.png ba37ff39c7.png b7900af09d.png 155070a394.png e723bcb7ae.png 0fb39bdd4f.png 29db281c47.png 35da3d536c.png 119e974f72.png cc18f94210.png a7ad37eda1.png dc4f08cf84.png 3e635c129e.png c12eecef20.png 9548bbf287.png 8d0a03ad21.png 63ec6fa3e4.png bdcde6c055.png b92dad3725.png bf8bf3d4fa.png 3eaee773ac.png dbefc8222e.png e58a0083f9.png fa62872b1c.png ee55c26bfb.png 3a449e5df9.png 31f3ed6cb1.png 101926ea19.png 1551bb254e.png 66564cc507.png 2675a2f9b6.png 8753fe755b.png 8936407edf.png 993a7eca7a.png c1f15b6967.png 1835fd08ce.png 69768c0d00.png 64dc4d38bf.png cfad7b2185.png 9754145e61.png 826698f6b8.png ad298486ed.png e904dc08db.png db04c2683d.png db90c7db2c.png 04c0c5f664.png f3a6fd21f7.png 41e4b1a387.png f17a840281.png dc3239a567.png 08b5985634.png 0d875c5490.png 9ac5fd325e.png b541e2c336.png 1e51e9a592.png 54978adcc6.png ba85d911eb.png 8db280a3b0.png 59cb0eecde.png 6d27f1faf7.png 4db3811fbf.png db92a00c3b.png ec33956570.png 7672a277e6.png 8e149fe591.png 488aa5caa0.png fae3d31a65.png 9c4fed0493.png ea65085167.png 1f7fae2e19.png 4a408fb14b.png 950f33c5f9.png e0b26de691.png 908d9627df.png 448b2ab416.png b2776c7bf3.png 814a711be4.png d7b84ee2cd.png 28708ca79f.png 2b3a5ae3ea.png 858f84a797.png ea86c1d9cf.png 308ce73ab6.png 72ed4033ee.png ef0f75b1e1.png e1b3a4044b.png 9e26b0563f.png efbcadb481.png 2690474e7d.png 376826eeb0.png 755b31ff54.png a6f453f543.png b9d7e04349.png 0fa6d979c2.png ce7bb8f52b.png de2733d9e2.png 084cb5f737.png a920e20f1c.png 4b6931306e.png 2533d14255.png 5e10672652.png 8f0cd99812.png 631f8ac5aa.png 8b45ba83a7.png 3fbe62aa50.png 10f59e0caf.png a0c2b4a329.png 380209106c.png 73cf0baa15.png 3538c8a7db.png b5970ee4d5.png 31dbaea96c.png 5d45c03e9d.png 87ef963522.png 75acea0c54.png 979a06fdbf.png 15966e1968.png 452d4ea919.png dccc7bde70.png b31d571a94.png 22479c66a9.png 013259c337.png 613da61fd8.png da3b6be1d5.png 31dba1ef9a.png e4c862a4a5.png aa0a7a440e.png 9cdb3805a1.png e0f9a3a2d8.png 27797053ff.png d34c539d4e.png 684a14ff53.png 536c71aba3.png d7cc4296b2.png a1351b1979.png 39538ce2b0.png 0aebb572f8.png 0f2b6a8586.png 043c15a9af.png bc541b8369.png 33dd8c2bd2.png ac08414ac6.png 45e3277f3f.png 1702e1317f.png af73ae71b9.png 464c9005e9.png 6415017006.png 94cb5df4f2.png e4d536fec6.png 32071efa12.png 9abcd70258.png 2cf2b06f33.png 670d6332be.png 4f15ac8be7.png ba0db3d025.png a61b2d8fd3.png 13cd1b2e50.png 454964ab02.png 62930388ba.png 4eceea0d2a.png adf61b04b9.png 0e292e0b79.png cee5f80b1c.png f33da3a50f.png 1c23f6817c.png ade51acc52.png 197f03e18a.png 3ec79673da.png 6059cedbfb.png 9fe9aa0449.png 25dcf3cbfa.png 6eef596fc8.png f5d30fbf24.png 9e16b88203.png 7867d98278.png 5d15e26742.png 34bf180903.png 454a4e14a6.png bc4fc7c41e.png 51417cc1ba.png b43c7545ec.png c1fbb3149c.png 756fc7c806.png 8011d054e7.png 78fb3ab862.png 182ab836ce.png 88b412588a.png 1a5d0c150d.png a2728f5a2b.png c0c4b98415.png 571e7f5a50.png 3970b732a5.png 5b89d0ef0b.png 3f18e1afb2.png 843530ad3c.png 64663bc8c0.png 0227a27435.png d51a4d6c04.png af4794de08.png 6947dbc4f4.png 91b88142fa.png 30bb570ce5.png 07faa3527e.png 991d9bf376.png 2539151aeb.png 343382c0c8.png fe7ecb6b3b.png 201c2f346a.png dbbbf02cb1.png 81c4fb6418.png 1813a61a7c.png 00c06147b5.png 08d073b404.png c07a6c2da6.png 825b2f52f0.png c3327c163a.png c7407d87cb.png 22dce42e16.png 9d65b4b8c6.png b1c30ea1dc.png 9c60208784.png 2b2fdaaa9b.png 0f7302ad43.png 9c936ae7ff.png 3448234dee.png a024bd28fa.png 8716fd9933.png c54217c477.png c8d429588d.png f0551d4405.png 259b4c2009.png 0441017e49.png 763f6e03ce.png 758a2d9b6d.png 1d56be5402.png 165df5edb1.png dec5c3fa93.png b0078f9be2.png 902f970c1c.png 03ae7e298c.png 98994afc4f.png 78181dbca5.png 0c29a22fe5.png 6dfbacf10b.png 6febaa8dc2.png 54beb44cac.png 6e5e055e6f.png d7927f11dd.png 83424cab00.png bf0f9e16e7.png dbffa35f38.png 1a091013a6.png 57063e912c.png 6d3bd2f30b.png 8299b97f38.png d39f51a99c.png 9769ec0011.png 9132b8b239.png 86cd09d1e5.png e31144fbe3.png 9aa58dfee8.png ca2f360993.png 241a32aab0.png f104068e09.png 1ef4ad65ac.png 176bd974e0.png f110d1c41f.png 86900ef966.png d18e1a3ffe.png f9c9f273a1.png aad0f3a281.png ac691fa4e2.png 23917c7f27.png 42eaca028e.png 604dc2c69c.png 4be9ea64fe.png 9f89caa7f3.png 60e0902746.png d34c5a3e21.png 30998d19cd.png 39b10799fb.png 7e7579b833.png c345789eb2.png 679ee788d7.png a7c5bb3d9a.png b31e7d63e4.png 85f4a71954.png 4e50c41f4e.png e8769e4043.png 389d097af2.png 72dbd4a9bc.png 283a0f28ed.png 999d21abf1.png 8d5fa4ae69.png 9ddc91e5bb.png ed7d54e701.png c939e08a4b.png 7f45830e33.png 83a48671bd.png 88d86cecb5.png 980b56419d.png 8a14fa3b33.png 8ffef526e0.png bfb44314b2.png 335586ece3.png 2c3585a547.png 0e8e9e9b41.png ad56da0d75.png b0dbde2430.png 356abb91d5.png 9be3796b6c.png e06a3e3bfb.png bf64e8280e.png e97a3a3e47.png 4b9c05eb80.png 262de74669.png 120bb13cfc.png 49eb0d5d7b.png 6ae646336d.png 1874b0614a.png d8fa7027a9.png 53c8faa2de.png cdd7ef59a9.png ae0fb45c52.png ce2f737ee1.png 0360e6f681.png d84c0443ef.png de1b4b1e70.png 86b69c8d0f.png db4967025d.png 6b677614ea.png 76bc4e0cd6.png 2de62031ee.png 610d6fa9e0.png d69d9cf365.png 4553c50290.png 9571d16b40.png 6491e7762a.png 9f252722f5.png 7a29766af2.png 7824b680f1.png 9159c5f8fe.png a945daae40.png 113655af27.png 00bbed5966.png a233a60deb.png c813181542.png d18dec87b4.png e0215d7e9c.png dff966dad4.png 97bbb7e309.png 87eff3371d.png 733f591b93.png 985507fc8a.png 94f577f74c.png 29bd0c2d25.png 4d6522470e.png 82f412d210.png fac33dff05.png 26a59c7514.png eed2e1afbe.png 4565c06028.png b538164346.png 3a613d003a.png 85a3114e20.png eb9afa8deb.png 0540ea22cd.png 258a6cebd7.png c5ef2c8428.png 47ccff39a8.png 4bbc410ec5.png 4ccccc2ff3.png b8999eaa8b.png 58b7922c6d.png a680da22d5.png a009da75d1.png a6a252e8a0.png 596b9ee0eb.png 4d1b2c230e.png 679b9fbf54.png 48c8b7dbfa.png 1c458ae740.png 1a013e5ca3.png c02940f66e.png dcd3c54405.png a0a3f03553.png 08af8b0df4.png b16b507725.png d607bab433.png d361e24d92.png 34c0247f34.png 97e8949284.png 0f72426c72.png a13bd1e1fa.png bd16b04193.png 3ae2766077.png 6b81fba94a.png a4707da97f.png fb29b004e9.png ac54591ef1.png 84b1fda205.png 134502bf0d.png dfbc399eca.png 986f57256f.png 9d57cce77c.png 363a8a9701.png a15dc1875a.png 2789ca643e.png 3b215fbf05.png 4f47a5553c.png 837342a089.png bb0cba14fa.png 3a7a0b6a9d.png 57ccc5cb82.png 27dd841e7a.png baa7d7ba42.png e8e42ebc71.png 6a1703471f.png d926e006d0.png 642d76749a.png 7b10e08263.png ff22eb863f.png 7113090556.png 90b7f38c5c.png 52f8ed4b41.png 0962d90501.png 164e2232cf.png d2cb4356bb.png 7ca8574a96.png 57b062d234.png ad364c186d.png 035c07744f.png 41edd70f4f.png fb45d8e754.png 85f84d4960.png 727bd3a3b7.png 0f734266ca.png d43f845db5.png aaf90619d3.png 818c8334ad.png 7ca30f5c04.png dfb450f27a.png 3c5e3124c7.png 864532d1e7.png d952078a85.png c921814978.png 54943dc562.png ed1581c2d9.png bac4bf9fdd.png 3536b5d252.png 4abf00b33b.png a7e060fec7.png f963d0da02.png d1115a51da.png 74f0afbfc5.png 7bf025f29c.png 9041bc2468.png 0621ebf7b5.png 1b29749de6.png be56f5359f.png fecf98956c.png 593c918ee5.png e1a51e48a1.png 447b0d530d.png 82eb6c93d3.png 6119e97074.png cdac58c984.png 9ffe9b70c4.png 4c0efe9735.png 0da270a98a.png 0294ae08af.png 7d187bf4bb.png 4ef64308cf.png de63c230aa.png feb2c6a00c.png c2c8c4bcfa.png 3284441946.png 8356ba4507.png ff06094492.png f61358ecbf.png 8fd7efc82d.png 57314a2b58.png 8245366dcf.png d943ef59b4.png d8d207d58f.png 88e2f2736b.png f2148ddf93.png 0e9624bf3c.png 94c1d3a759.png 20169726a4.png 00e9cff0f2.png 951cf62d3d.png 8be9ac156b.png fd38950b2c.png 1fe82aa458.png d4eaffbe2f.png 6a19a8ccc3.png d699f66ea1.png d2c728aaf3.png f51f522f3c.png 5925accb52.png a0cd55b2f4.png 016ec66cd4.png 74ecf92a27.png a6c17d483f.png 76656d621e.png 46163e4ad9.png 4d3e7f3eb4.png 1e45cb9411.png d15eeb222b.png 462d3ca87e.png ce7515118f.png c6c3e6a015.png 5ba378eb07.png f83756c308.png abbcfad73b.png 4545f4bad4.png 4c249c63a1.png 55d1e72d35.png a87b3fe6b0.png 2288a277e8.png abcc4c1aa9.png acd1a34650.png ac1c575cd9.png a4bf108f7b.png cb11801fc4.png bb78b0170e.png 25fb2afebf.png e01867ca71.png bb2d46bbe0.png e3532bddf2.png 9e4f9640fa.png 18f73b05ae.png f43c6999ba.png a27600b0b2.png 51b006e1e8.png 36118090a1.png defb156cc1.png 3e1b6580f5.png 68de95fb39.png 35832ed326.png 7cbc8d92ab.png 692f785564.png d6eb3700b1.png 85c8d7f76c.png 25fcf14778.png 8df60c2b48.png b54ac21864.png 35053e8edb.png a25b549073.png ea1390525e.png 7a8eae16e1.png c03056f1aa.png 2a091413ea.png 94857fe622.png e3f6e4b032.png d72bc1190c.png 9dab37614e.png 1537754546.png 9afd0533dd.png 7b2d4b9295.png 63e28795b7.png f7c45731d2.png 6648f8d017.png 3cca3f86b6.png cf22da8b0b.png cfb2babeb8.png 761995bfd6.png 4e516a255d.png bb038c78da.png 76b26d2e39.png 8bbb229784.png 49b54df7bd.png 145095689d.png b7f1e8c111.png 6f40647181.png 948e82d61e.png 78de77e44b.png ea1488cd35.png 0d51b207aa.png 1421a7b417.png 8ab67a80a0.png 47694d4de5.png c0660b7172.png 0703a8437b.png 9f5bb5383e.png b69705bcf7.png 30ad603f80.png f313650e66.png 749314518c.png 78fbb95606.png 564c7b3515.png 96867a3897.png 8925e85c08.png c88a511d91.png 18078e8284.png a703fc4911.png d3aaf303a1.png 8a65df187c.png 0b45162089.png 5ce21107fa.png b12c491f2a.png 3eb7ad3107.png adaa24accb.png 7e453c8ed7.png 0c9c49e734.png e2cec6cc04.png 75363c138f.png 23b75fe183.png dba440c1e1.png 464317917c.png e55f192294.png 5ef66a020f.png 2e61d980c7.png 9a79d93047.png de80c430e6.png bebb8af347.png 4d7f9af393.png 9b496d8233.png 3b2362a168.png 7a3c76d202.png 2b1bc39770.png b5b511dc06.png cd433757bb.png 79c7e5a9e9.png 35371045fb.png 8d7e882550.png 84c1e715ca.png 74312e8f3f.png 97d23cea10.png df7176eaa4.png 5bbff609ed.png 78ab68c3c8.png 053e7d3043.png 18729df07b.png 98fd0a654c.png 28b61cb50a.png 9658b015f5.png d5b2e07776.png 074535c849.png be27934873.png 4479bbc91e.png 37aba9fcb3.png 21720a05fa.png 6e807dbef1.png 69fbd42bce.png 4a430a5d54.png 9a51433e42.png bb3bd778b1.png bbf06a910a.png c25f0275e8.png 75bd1e0652.png d9fc7d8aa6.png b2063e6bb6.png 7fefadd513.png d2c08be257.png c02894016b.png 6924dd75cb.png d57d30d6a1.png 851d6c941b.png 4969c6ece4.png f14987617d.png 3223aabdaa.png b3e448572a.png 1a05259ac0.png 37ff6cca4f.png 5cd2e24eb2.png fd45c51330.png bba06a7d49.png 9e1d7b968e.png 30a47ba346.png 02caed72b7.png 245c641ba5.png be40a43921.png e9077013c8.png 3b1a9d94cf.png cd573faeae.png 6d23b68142.png f50ca50044.png c9526a0744.png 3f26445878.png 9ec6ead0e2.png a0c81d2a79.png 2cfae3f373.png f537c28b83.png fa45b2168b.png e800a212f6.png 3c6ea4c16d.png fcf8c91350.png e5a158c743.png 52110da0ac.png 5ca5bc9009.png a70ecc55dc.png 78918ee676.png 3a9fd030f2.png aa55948a76.png 43639ee6de.png 8b258ca8e0.png 90d9677c56.png f7aabef468.png 7c1962afdc.png 4b99b98243.png 49578dea83.png 0557701ace.png 0175551830.png 761204f143.png 3c97c52d0f.png 8a7395008e.png ad72eda039.png 45123cba3b.png 07e73a3201.png c47f022330.png 6c1ff4fc83.png 1ea7d8528a.png e34eaa10e1.png 71108e4178.png 6f750b8a0d.png 66e2ec7b55.png 6aad1b361e.png bb326ec0a8.png c814546335.png e4ede1a7f3.png 1ff696d59f.png 1fe408de00.png bd29207bc3.png 02f36ca5ec.png f6e8117887.png 0d4d304c79.png 34453e5f12.png 494ce271f5.png d6bcecfcfe.png 4d1825be4e.png 63b5f1676d.png 7864dc7883.png fa4f1b94b2.png 145c7992e7.png a1f8f97ec0.png 6f5968f78b.png e4ab79406f.png a28c2ff4e2.png 03821e9586.png 952563a97e.png 93c58d5dd5.png 67e00c705e.png 9dba372ece.png 5d079b66dc.png 5415f36431.png 1717b6750a.png f1f5e46fe0.png ff377c193c.png 2b761449ef.png 8b30fb6d98.png 9fe905c12d.png fbb14f2691.png 30bdba0c6b.png df0027e3ab.png f799c8d19f.png 63d008746b.png 8169a50aec.png 97cb7b1d6a.png 22986eba07.png 5377347cf4.png 7ea197b7df.png 19c8c5aa98.png 6267b99664.png 0a5b5df54b.png 82fd0dd4ae.png f38bc86fea.png d77eb315ac.png bd4aed9a86.png 1ff6e2c33b.png 6b2f49cad6.png 18cf38b412.png eb19a9744b.png bc97a09993.png 84ee6c32bc.png 9dcb6ffffa.png 83d1c277dd.png 895271788a.png 3c4acab200.png 303f985155.png 677cf459d1.png f98a87f651.png 8e4e5f12f2.png cdaa2d3f02.png 9fa72ddc6a.png 772abdb8df.png ff16f2f584.png 333262e665.png 6e58a88e4d.png 1a997b9106.png 130904553c.png 643c7c5672.png 27ac879f52.png c621f020d9.png 02e651b7bd.png c73fcb8a62.png 8d3fa0ddbe.png 987eb16144.png 8d97feafe8.png 7c9770ad2a.png 2fb72cfd9e.png c5df6c89df.png e63ba604c4.png eb0b46dd7e.png 1f0907fbef.png 68383a41a5.png de6e6ed26a.png 748da1dda2.png a05fe50177.png 5f7e85ed97.png d5b1a635a9.png b95f1633e8.png 7089f09d5b.png f213d4b318.png f13d52a40a.png 1858148001.png b57ecf9e0e.png 6a7bf9f1c6.png 73621db013.png 9b6cb72794.png ea1bf77219.png 51176b9d90.png 28f5a828d0.png e659f781ee.png 723ee6c018.png 11d6b46aa7.png 0b75c88e6c.png 103c96d62c.png e4534b82b1.png efbf52e9b9.png 5ca4a83636.png ee0da7c735.png 762b4b27c9.png 917e80f94e.png 0703b799a0.png 9cf5dd8561.png a7dbfe6a12.png ea1ac2b2ce.png 162f55f72b.png 7a597c0b30.png 34e956d7e8.png 43dfa0e160.png d8fa1cbf13.png c47357ae6a.png dbd762aa71.png ab0c6b03b0.png 5995a07fc6.png b1a8e768af.png 71b7cc2fdc.png 7d0d470e33.png 9fecf3b7b0.png 50000fada5.png dd361d12f5.png 71c5288092.png 51f328cebc.png 2cc9b18030.png e37147b293.png 7d90c184ab.png 696552712d.png b23429fadf.png 55a217cba8.png 3e8ca34142.png fbea8c7ae0.png 312a39246f.png 315b8f2266.png e57ef95bb2.png 898fb59f6d.png e445d83dd1.png d778928df6.png 5e400955f7.png b807539a5f.png ce61662084.png 777df11ca2.png e7feb2d438.png 9dc508d95d.png 18aea1f624.png e41b2925a7.png dceef5a0e1.png 76c406c9bf.png 20bdf88bee.png f2961eb2d7.png 3b02981f8d.png 961ed3ae33.png 6e9aceff2f.png e67c706413.png bed2be7216.png da7658f446.png 4739b252fe.png 6cd1de8ef4.png 80f930d541.png 3ee3375dce.png 53c5b16111.png e2351d6eff.png d9dca6cf43.png 5106b883d7.png 64c36c6a25.png 5b31f5b38e.png f96f608c5a.png 2a0583533f.png 02b2e006c8.png ab2ed24522.png 77a67d6573.png 9d9232634b.png e86bc3782c.png e0dc20e66a.png 2937b14b90.png 9375886364.png 78e40a6459.png 5155437a9d.png e19316acc4.png 86c5a1fec1.png a6a18e0dea.png b314d90af5.png fd3eb62762.png 45c512050e.png 18bd2e6277.png 95ef42fec4.png 8c25a010a8.png 98ef8e3b13.png fda74a4257.png d7bf279db2.png 2e5811bc80.png 946fe1467b.png fea5f19d76.png 22a109bb35.png 42a5fda22e.png b642883836.png 306bde4606.png 9dba0d933d.png 31b631d4c1.png 819ac703be.png 0e59057977.png 497e15ff3a.png d5dd97abfb.png 0f337683b4.png d0a8505343.png 96f700aec5.png e8042ee36c.png 0300ad09f3.png 024332e85b.png 39294d0534.png ebbca91b35.png b7fbd93422.png 6fad2e31a1.png 53ac4dc8ba.png 2ea5f9e7d9.png 8d858a66d8.png 529fe2bf20.png 8e96420dca.png 0611c441b8.png b8dc035a88.png 9348c2319b.png 825204d8a8.png 132e7e2cd5.png 44ab5b7be4.png 50e1d5bf28.png a5536ee0bb.png c95a673c42.png 7d180ef5a2.png eb6a10a157.png 343705e8fe.png 347686c1b9.png 3d73f32e1e.png dabe63a77d.png 901f697be4.png dc21186e6b.png 694cf352f7.png 6705b7299a.png bca55d7fa5.png c6e6e51ec1.png 382c39da65.png e730c9c4e8.png 1973a628b1.png d07b4cef46.png 7cf26c9dea.png 4be04e10aa.png 52114dcb14.png 6e9137c28d.png c9a87ab2ab.png bd9d82e3d8.png 39d7ccca10.png 945317d107.png 70c7ead798.png 0246257f2b.png cedb73a437.png 4b4ce588a9.png 78a68dece6.png ece1494d81.png edb34c730b.png 878338aa59.png c1c23f6048.png ad459fb6b1.png dab9e1b94c.png afc56c2c28.png 47822df035.png 5ea247195e.png c1b3a9912c.png 1f5849be95.png 7010d3e8d9.png be721a303b.png 696a866b71.png 5ab14e9d76.png f447853ad2.png bb62c0e164.png 328929d96a.png 738d7b7191.png 3cdd50ddf0.png a0018e4f71.png 4f92b8d674.png 99fcb67e17.png 5344ef1b33.png bd6b9327ac.png ba030fff5d.png 785d976125.png 2e40cf4b88.png d8e410e039.png 2e9396a8df.png d72c5b3623.png ba70cf68f2.png 79410fa81a.png c84f0d4dd9.png bcb54a6510.png 1274daf0ae.png 94348a4334.png c8f0aaaaf7.png 5b01ba4ec1.png 4d21a8e11c.png 99fb0ccafa.png e093696fc6.png 19d0384e1f.png ebb000af78.png 161f7c184f.png b9962027c6.png 7bfdfb3a12.png 3b24607460.png b27c83519f.png 98c97825f1.png d5d4ad6b25.png b81a8fc72e.png 9fc4b3704c.png e02756640e.png 22d360be43.png c6885a38e6.png bca0070a77.png 52a8c847d0.png 5119fdbfde.png bc99a6fff0.png 205953b152.png 49f8c016d2.png fbbdc5f6e2.png 50c056c994.png 8f60ff0312.png 44c56a45b0.png f67ca9b0ff.png d0fa976e23.png 7b1c5cf0c3.png 04f7141ff7.png a11a5bab72.png ff0b6070b1.png a3982b9d36.png a715988e34.png 2bd5791def.png 96b2a2359b.png e79aa5ff58.png b2c26edd9c.png ac3600bf24.png d27b85e7c0.png 43de3f9c9a.png 861e452121.png 436d01f71f.png 5f3f6d6ca6.png d5dbfe8494.png 0c444101f4.png 054c764e3a.png a3a7f49081.png 6d8817f092.png 40b8ea6ae7.png c7dca52386.png 4087d80276.png e2526a10e9.png b5995bbf96.png e08e7d5619.png 47cd9710fd.png ba987b336e.png 990a672905.png 36ddf39bf0.png f50030f52a.png 40ca4c4ff2.png 5f5c584d56.png 734e92abd7.png 973efa154b.png ab222f9a41.png 0d7157d748.png 203c13a28b.png 849845be66.png 2b66898740.png 73f4759351.png 5718e81a4d.png a2b2d4fe99.png fe53259bf6.png aa8daddd49.png 173a077701.png 97a644bbf3.png 8b63b67722.png bfc9276507.png 4578fe28d8.png 26370170b8.png 41a93e2459.png 188de9320e.png ae2e378908.png 7943b928ff.png 8e8ddd8b7b.png 37247922ec.png e981a42d6e.png a7e191ebc4.png 52eff24db9.png 538dafe0c4.png 507dbc9444.png 2286d961f2.png ece0d4b36c.png 124f5f46f6.png ed5d275ef1.png 9f0685e8a2.png b51a512daf.png e3ecb649c6.png 02782eb6f2.png 2194de7683.png fbdea8f46c.png 664dd976a9.png e127edb610.png f4199a74bf.png 432a77d470.png 22959357f8.png 13bdb9a218.png ffd071d826.png bcc8a4a8c8.png debfff36ea.png 0753d119b6.png 94f2701ea6.png e46625376f.png c3ce830a05.png 886e3df4ab.png e94b092cc1.png 9e9200aab0.png 2da8adf16a.png 49ee9c5e00.png 417fbc9aef.png 057754e031.png 316d0460b6.png 1894f7c35a.png 9c59b70ad0.png 715295d6ab.png 1cec04bb12.png 593b21a623.png 689edd4185.png b2a2fd2e0b.png 2126473557.png 51a170c2ea.png 412e61e42f.png 2596ef2a19.png 2a7fcf7da7.png 9003e2ecd0.png 0c82e01a9f.png f12ef6c930.png 04e021f699.png 58360538fd.png 8ec7e755e6.png a45db71245.png 52477a56f5.png 5d43b6e684.png 3ab326340b.png 32405003b5.png 5e8f17069e.png f161d8e4df.png f906c96b0b.png f1f051d549.png 93577f1313.png 37e819830e.png fd05d8188f.png c5d6528a35.png 435e1f9e54.png 7f996bc3ed.png 32f2fed6c9.png b42d968164.png 2d08095342.png 1b0eec121b.png 6b279fcb79.png fff4282d5f.png 85841d174b.png bdb7d2e7c4.png 5625127de7.png 5d81dbf5ea.png 1bc7d41154.png fd938a4752.png 47fec2abbd.png 42e97b4a5f.png e214be96e8.png ae74081600.png 1675d7da88.png 7c73090754.png 564b1ca301.png cd22ea7236.png ad5d638041.png cc76384dfc.png 5125c3b025.png 3f44516dda.png b47f64fc94.png db17867b19.png 541e32b9ea.png ace9b935fb.png a20cced9fb.png 3d6a897901.png 7db83b64e3.png 616afb7dc0.png 46e374f8d3.png 667a5015dd.png 677d02e7f1.png 1552d4e795.png c0106cb856.png 0ef6a1a9d0.png 9a9fa8ad20.png e5d26987a9.png e66b084eba.png 62feb1eebf.png c23be3df99.png 007176e42a.png 25b1cfb30c.png 9e9707e9ef.png d6066d27a9.png 8fe9c92090.png 039929151f.png a282128493.png 7661b7a843.png 8118c2c6e0.png ad73449af3.png 23062a0de4.png 89b5cc20e5.png ae595b003e.png b7f5e6933e.png c7bfd8548e.png c9eb68517b.png 9db4f0eb40.png f0ec895f3d.png 9eb54c97be.png c7e88240be.png 4e8f4b7b6e.png 0aef3dff6a.png f61f590543.png 684d0d84d4.png 751e4a5bc0.png 194e149187.png 3392f9b1c5.png 053293110f.png 4997428512.png f33034c1ab.png cec3aace1e.png 653f33a676.png 965bf5c85e.png 6e28a340f7.png a25e9e12a7.png b28f64e243.png 4359dac218.png 476f1f618b.png 8d5336acd7.png 8635fa4f68.png 342d17a869.png 06c19e4c07.png e573b432c3.png 454b28069a.png d512386a1b.png 08a17ff7fb.png 4ed65877ea.png db102119c2.png 0521e30a6c.png edcff16369.png 405e04b9bc.png 728b06f90b.png 52956e1f53.png cc30dc52ee.png 6bf65c3d06.png bb40a9a368.png 6225d9ec9e.png 3bd0ebda02.png ffc6f7ddbf.png 82300bf473.png db1856cd5d.png c227dad701.png ad7065c216.png 9c26e28710.png 0712535c2b.png 869e15dfcf.png fe56b937f6.png 5dd1246d5b.png bb4f51d2f7.png 8dfcdb2b3c.png a688df9574.png d623222fb0.png 29b0235e9a.png 1081dc0cb9.png b0a1a539d0.png 9476c5ca8d.png a4bdd53fb9.png b249094b5a.png 91eccaa550.png 8d2e7ffd4a.png 67d21b9e92.png f1f3eaa428.png 0fd22e2882.png a69dbcad1b.png 89381f766c.png ba98ef6b0d.png b6c1ef1441.png 5c964e5765.png e19d76920d.png 6e7bef0170.png 0041cb8c49.png d31eb8057d.png e995d7343b.png aac2c54c69.png 5f7a888a88.png 6e409df907.png da116eb67e.png 298bda8c6b.png 75f992ad8c.png afc996abf3.png bb7596db38.png 96d45b4e8e.png 54f0a62c2c.png a0372e4e59.png 1202914cf2.png 0ee3d20d51.png 8011db07e4.png 75f0269699.png 75fb042981.png e84a4d5380.png d84535e5f6.png 08de6285b8.png c17cc9f45c.png 37617be9c2.png b9414d0f45.png 973b0b920a.png 639e4dac3e.png dc786d88fe.png 8cb4641c0d.png 9741bfeded.png 17815a50e0.png 8c14de9fb8.png cc718eada4.png 0dd421c6db.png eea3aa657e.png b5869ced23.png 9a85353794.png eb4b2816ca.png c4467ac3b7.png bbb43d70f4.png f3aae8d8d5.png d075ac58be.png b4863138c2.png 7ceede7d55.png 25a419e8c3.png 1b6678d415.png 1c60c13d20.png df356bb303.png 68709951de.png ebe13dbb60.png 8767e6755c.png b6a84556e1.png df61ab2482.png f227baddb1.png 7f5b4e0cd1.png eb46ed5de8.png b455bee299.png 473cbcdc24.png 5f4c315e78.png 5010a5cb65.png 5b8c857ffc.png e9ca391fbe.png 57cc268ef2.png bd8b6464b3.png 6531d04894.png e56d476cf0.png 95dc8f147e.png 4a2dcbe387.png 523834c0e0.png 7898118d67.png efd13aa45b.png 9ca858814a.png a89f111730.png b0eb953a1d.png 5df6f69b48.png 81aa49a9fc.png fe3b576f13.png a6e085d8e0.png 06b111b02d.png 592b9fc860.png 0510fec103.png 4767ae41d0.png 29fdaa3c4e.png 71bab9f311.png 25c6dc51d9.png 8016da014b.png c20570220b.png a8c12329c4.png b1d1f35104.png 4d7d9cad2d.png e48923a845.png 919b7a9683.png d0712900eb.png eec980e314.png 2f248d982b.png 1b9d714ef4.png 3739ae2d77.png f411c146f2.png d3d7b32db0.png d864cf03a1.png b553dbb375.png 6fd888afc5.png b0998be638.png f96ce17553.png 1b51d7eb4c.png 1c4d3b5dc2.png 6f843d8fdd.png 55b9cb8acd.png 7b6a6f4f69.png c72e00ed55.png d8d5895a6f.png bc0b179b41.png 1103eb72d3.png 2e616e1cde.png 88c55d296d.png 6ee73fdc3e.png 1b50bad7d1.png 490e5d3e4f.png 1423eb65ce.png fe6b152962.png 8d9355e7d2.png b0d0d70817.png d79c094faf.png 187ecc32d5.png bf6a587575.png 16f514d1ee.png 619a549372.png add95e52cb.png 453054d86c.png 583b5ed773.png 15823abda7.png 68cd094920.png 725fe78bcc.png a9d0b5f2f3.png 2ad4bf0d9c.png 814d0b9a3e.png ac3e753207.png 104f908a3d.png f8d8c9be54.png ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/data_process/transform.py ================================================ # from include import * # from utility.draw import * # from utility.file import * import cv2 import numpy as np import os def do_resize2(image, mask, H, W): image = cv2.resize(image, dsize=(W, H)) mask = cv2.resize(mask, dsize=(W, H)) mask = (mask > 0.5).astype(np.float32) return image, mask ################################################################# def compute_center_pad(H, W, factor=32): if H % factor == 0: dy0, dy1 = 0, 0 else: dy = factor - H % factor dy0 = dy // 2 dy1 = dy - dy0 if W % factor == 0: dx0, dx1 = 0, 0 else: dx = factor - W % factor dx0 = dx // 2 dx1 = dx - dx0 return dy0, dy1, dx0, dx1 def do_center_pad_to_factor(image, factor=32): H, W = image.shape[:2] dy0, dy1, dx0, dx1 = compute_center_pad(H, W, factor) image = cv2.copyMakeBorder(image, dy0, dy1, dx0, dx1, cv2.BORDER_REPLICATE) return image def do_center_pad_to_factor_edgeYreflectX(image, factor=32): H, W = image.shape[:2] dy0, dy1, dx0, dx1 = compute_center_pad(H, W, factor) image = cv2.copyMakeBorder(image, 0, 0, dx0, dx1, cv2.BORDER_REFLECT101) image = cv2.copyMakeBorder(image, dy0, dy1, 0, 0, cv2.BORDER_REPLICATE) return image def do_center_pad_to_factor2(image, mask, factor=32): image = do_center_pad_to_factor(image, factor) mask = do_center_pad_to_factor(mask, factor) return image, mask # --- def do_horizontal_flip(image): # flip left-right image = cv2.flip(image, 1) return image def do_horizontal_flip2(image, mask): image = do_horizontal_flip(image) mask = do_horizontal_flip(mask) return image, mask # --- def compute_random_pad(H, W, limit=(-4, 4), factor=32): if H % factor == 0: dy0, dy1 = 0, 0 else: dy = factor - H % factor dy0 = dy // 2 + np.random.randint(limit[0], limit[1]) # np.random.choice(dy) dy1 = dy - dy0 if W % factor == 0: dx0, dx1 = 0, 0 else: dx = factor - W % factor dx0 = dx // 2 + np.random.randint(limit[0], limit[1]) # np.random.choice(dx) dx1 = dx - dx0 return dy0, dy1, dx0, dx1 def do_random_pad_to_factor2(image, mask, limit=(-4, 4), factor=32): H, W = image.shape[:2] dy0, dy1, dx0, dx1 = compute_random_pad(H, W, limit, factor) image = cv2.copyMakeBorder(image, dy0, dy1, dx0, dx1, cv2.BORDER_REPLICATE) mask = cv2.copyMakeBorder(mask, dy0, dy1, dx0, dx1, cv2.BORDER_REPLICATE) return image, mask def do_random_pad_to_factor2_edgeYreflectX(image, mask, limit=(-4, 4), factor=32): H, W = image.shape[:2] dy0, dy1, dx0, dx1 = compute_random_pad(H, W, limit, factor) # image = cv2.copyMakeBorder(image, dy0, dy1, dx0, dx1, cv2.BORDER_REPLICATE) image = cv2.copyMakeBorder(image, 0, 0, dx0, dx1, cv2.BORDER_REFLECT101) image = cv2.copyMakeBorder(image, dy0, dy1, 0, 0, cv2.BORDER_REPLICATE) # mask = cv2.copyMakeBorder(mask, dy0, dy1, dx0, dx1, cv2.BORDER_REPLICATE) mask = cv2.copyMakeBorder(mask, 0, 0, dx0, dx1, cv2.BORDER_REFLECT101) mask = cv2.copyMakeBorder(mask, dy0, dy1, 0, 0, cv2.BORDER_REPLICATE) return image, mask # ---- def do_invert_intensity(image): # flip left-right image = np.clip(1 - image, 0, 1) return image def do_brightness_shift(image, alpha=0.125): image = image + alpha image = np.clip(image, 0, 1) return image def do_brightness_multiply(image, alpha=1): image = alpha * image image = np.clip(image, 0, 1) return image # https://www.pyimagesearch.com/2015/10/05/opencv-gamma-correction/ def do_gamma(image, gamma=1.0): image = image ** (1.0 / gamma) image = np.clip(image, 0, 1) return image def do_flip_transpose2(image, mask, type=0): # choose one of the 8 cases if type == 1: # rotate90 image = image.transpose(1, 0) image = cv2.flip(image, 1) mask = mask.transpose(1, 0) mask = cv2.flip(mask, 1) if type == 2: # rotate180 image = cv2.flip(image, -1) mask = cv2.flip(mask, -1) if type == 3: # rotate270 image = image.transpose(1, 0) image = cv2.flip(image, 0) mask = mask.transpose(1, 0) mask = cv2.flip(mask, 0) if type == 4: # flip left-right image = cv2.flip(image, 1) mask = cv2.flip(mask, 1) if type == 5: # flip up-down image = cv2.flip(image, 0) mask = cv2.flip(mask, 0) if type == 6: image = cv2.flip(image, 1) image = image.transpose(1, 0) image = cv2.flip(image, 1) mask = cv2.flip(mask, 1) mask = mask.transpose(1, 0) mask = cv2.flip(mask, 1) if type == 7: image = cv2.flip(image, 0) image = image.transpose(1, 0) image = cv2.flip(image, 1) mask = cv2.flip(mask, 0) mask = mask.transpose(1, 0) mask = cv2.flip(mask, 1) return image, mask ##================================ def do_shift_scale_crop(image, mask, x0=0, y0=0, x1=1, y1=1): # cv2.BORDER_REFLECT_101 # cv2.BORDER_CONSTANT height, width = image.shape[:2] image = image[y0:y1, x0:x1] mask = mask[y0:y1, x0:x1] image = cv2.resize(image, dsize=(width, height)) mask = cv2.resize(mask, dsize=(width, height)) mask = (mask > 0.5).astype(np.float32) return image, mask def do_random_shift_scale_crop_pad2(image, mask, limit=0.10): H, W = image.shape[:2] dy = int(H * limit) y0 = np.random.randint(0, dy) y1 = H - np.random.randint(0, dy) dx = int(W * limit) x0 = np.random.randint(0, dx) x1 = W - np.random.randint(0, dx) # y0, y1, x0, x1 image, mask = do_shift_scale_crop(image, mask, x0, y0, x1, y1) return image, mask # =========================================================================== def do_shift_scale_rotate2(image, mask, dx=0, dy=0, scale=1, angle=0): borderMode = cv2.BORDER_REPLICATE # cv2.BORDER_REFLECT_101 cv2.BORDER_CONSTANT height, width = image.shape[:2] sx = scale sy = scale cc = math.cos(angle / 180 * math.pi) * (sx) ss = math.sin(angle / 180 * math.pi) * (sy) rotate_matrix = np.array([[cc, -ss], [ss, cc]]) box0 = np.array([[0, 0], [width, 0], [width, height], [0, height]], np.float32) box1 = box0 - np.array([width / 2, height / 2]) box1 = np.dot(box1, rotate_matrix.T) + np.array([width / 2 + dx, height / 2 + dy]) box0 = box0.astype(np.float32) box1 = box1.astype(np.float32) mat = cv2.getPerspectiveTransform(box0, box1) image = cv2.warpPerspective( image, mat, (width, height), flags=cv2.INTER_LINEAR, borderMode=borderMode, borderValue=(0, 0, 0), ) # cv2.BORDER_CONSTANT, borderValue = (0, 0, 0)) #cv2.BORDER_REFLECT_101 mask = cv2.warpPerspective( mask, mat, (width, height), flags=cv2.INTER_NEAREST, # cv2.INTER_LINEAR borderMode=borderMode, borderValue=(0, 0, 0), ) # cv2.BORDER_CONSTANT, borderValue = (0, 0, 0)) #cv2.BORDER_REFLECT_101 mask = (mask > 0.5).astype(np.float32) return image, mask # https://www.kaggle.com/ori226/data-augmentation-with-elastic-deformations # https://github.com/letmaik/lensfunpy/blob/master/lensfunpy/util.py def do_elastic_transform2(image, mask, grid=32, distort=0.2): borderMode = cv2.BORDER_REPLICATE height, width = image.shape[:2] x_step = int(grid) xx = np.zeros(width, np.float32) prev = 0 for x in range(0, width, x_step): start = x end = x + x_step if end > width: end = width cur = width else: cur = prev + x_step * (1 + random.uniform(-distort, distort)) xx[start:end] = np.linspace(prev, cur, end - start) prev = cur y_step = int(grid) yy = np.zeros(height, np.float32) prev = 0 for y in range(0, height, y_step): start = y end = y + y_step if end > height: end = height cur = height else: cur = prev + y_step * (1 + random.uniform(-distort, distort)) yy[start:end] = np.linspace(prev, cur, end - start) prev = cur # grid map_x, map_y = np.meshgrid(xx, yy) map_x = map_x.astype(np.float32) map_y = map_y.astype(np.float32) # image = map_coordinates(image, coords, order=1, mode='reflect').reshape(shape) image = cv2.remap( image, map_x, map_y, interpolation=cv2.INTER_LINEAR, borderMode=borderMode, borderValue=(0, 0, 0), ) mask = cv2.remap( mask, map_x, map_y, interpolation=cv2.INTER_NEAREST, borderMode=borderMode, borderValue=(0, 0, 0), ) mask = (mask > 0.5).astype(np.float32) return image, mask def do_horizontal_shear2(image, mask, dx=0): borderMode = cv2.BORDER_REPLICATE # cv2.BORDER_REFLECT_101 cv2.BORDER_CONSTANT height, width = image.shape[:2] dx = int(dx * width) box0 = np.array([[0, 0], [width, 0], [width, height], [0, height]], np.float32) box1 = np.array( [[+dx, 0], [width + dx, 0], [width - dx, height], [-dx, height]], np.float32 ) box0 = box0.astype(np.float32) box1 = box1.astype(np.float32) mat = cv2.getPerspectiveTransform(box0, box1) image = cv2.warpPerspective( image, mat, (width, height), flags=cv2.INTER_LINEAR, borderMode=borderMode, borderValue=(0, 0, 0), ) # cv2.BORDER_CONSTANT, borderValue = (0, 0, 0)) #cv2.BORDER_REFLECT_101 mask = cv2.warpPerspective( mask, mat, (width, height), flags=cv2.INTER_NEAREST, # cv2.INTER_LINEAR borderMode=borderMode, borderValue=(0, 0, 0), ) # cv2.BORDER_CONSTANT, borderValue = (0, 0, 0)) #cv2.BORDER_REFLECT_101 mask = (mask > 0.5).astype(np.float32) return image, mask def resize_and_pad(image, resize_size, factor): image = cv2.resize(image, (resize_size, resize_size)) image = do_center_pad_to_factor(image, factor) return image def resize_and_pad_edgeYreflectX(image, resize_size, factor): image = cv2.resize(image, (resize_size, resize_size)) image = do_center_pad_to_factor_edgeYreflectX(image, factor) return image def resize_and_random_pad(image, mask, resize_size, factor, limit=(-13, 13)): image = cv2.resize(image, (resize_size, resize_size)) mask = cv2.resize(mask, (resize_size, resize_size)) image, mask = do_random_pad_to_factor2(image, mask, limit=limit, factor=factor) return image, mask def resize_and_random_pad_edgeYreflectX(image, mask, resize_size, factor): image = cv2.resize(image, (resize_size, resize_size)) mask = cv2.resize(mask, (resize_size, resize_size)) image, mask = do_random_pad_to_factor2_edgeYreflectX( image, mask, limit=(-13, 13), factor=factor ) return image, mask def center_corp(image, image_size, crop_size): image = cv2.resize(image, (image_size, image_size)) radius = (image_size - crop_size) / 2 image = image[radius : radius + crop_size, radius : radius + crop_size] return image # main ################################################################# if __name__ == "__main__": # print( '%s: calling main function ... ' % os.path.basename(__file__)) path = r"/data1/dex/DATA/Kaggle/Salt/Kaggle_salt/train/images/0a0814464f.png" image = cv2.imread(path, 1) # image = cv2.resize(image, (202,202)) image = resize_and_pad(image, 202, 64) # cv2.imwrite('tmp_.png', image) # image = do_center_pad_to_factor(image, factor=64) # image,image = do_random_pad_to_factor2(image, image, limit=(-10, 10), factor=64) cv2.imwrite("tmp.png", image) # image = center_corp(image, image_size=256, crop_size=202) # cv2.imwrite('tmp_crop.png', image) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/evaluate.py ================================================ import numpy as np ### metric ################################################################################# # https://github.com/neptune-ml/open-solution-salt-detection/blob/master/src/metrics.py # https://www.kaggle.com/c/tgs-salt-identification-challenge/discussion/61550 EPS = 0.00001 def do_kaggle_metric(predict, truth, threshold=0.5): N = len(predict) predict = predict.reshape(N, -1) truth = truth.reshape(N, -1) predict = predict > threshold truth = truth > 0.5 intersection = truth & predict union = truth | predict iou = intersection.sum(1) / (union.sum(1) + EPS) # ------------------------------------------- result = [] precision = [] is_empty_truth = truth.sum(1) == 0 is_empty_predict = predict.sum(1) == 0 threshold = np.array([0.50, 0.55, 0.60, 0.65, 0.70, 0.75, 0.80, 0.85, 0.90, 0.95]) for t in threshold: p = iou >= t tp = (~is_empty_truth) & (~is_empty_predict) & (iou > t) fp = (~is_empty_truth) & (~is_empty_predict) & (iou <= t) fn = (~is_empty_truth) & (is_empty_predict) fp_empty = (is_empty_truth) & (~is_empty_predict) tn_empty = (is_empty_truth) & (is_empty_predict) p = (tp + tn_empty) / (tp + tn_empty + fp + fp_empty + fn) result.append(np.column_stack((tp, fp, fn, tn_empty, fp_empty))) precision.append(p) result = np.array(result).transpose(1, 2, 0) precision = np.column_stack(precision) precision = precision.mean(1) return precision, result, threshold ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/loss/__init__.py ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/loss/bce_losses.py ================================================ import numpy as np import torch import torch.optim as optim from torch.autograd import Variable import torch.nn as nn from functools import partial class DiceLoss(nn.Module): def __init__(self, smooth=0, eps=1e-7): super(DiceLoss, self).__init__() self.smooth = smooth self.eps = eps def forward(self, output, target): return 1 - (2 * torch.sum(output * target) + self.smooth) / ( torch.sum(output) + torch.sum(target) + self.smooth + self.eps ) def mixed_dice_bce_loss( output, target, dice_weight=0.2, dice_loss=None, bce_weight=0.9, bce_loss=None, smooth=0, dice_activation="sigmoid", ): num_classes = output.size(1) target = target[:, :num_classes, :, :].long() if bce_loss is None: bce_loss = nn.BCEWithLogitsLoss() if dice_loss is None: dice_loss = multiclass_dice_loss return dice_weight * dice_loss( output, target, smooth, dice_activation ) + bce_weight * bce_loss(output, target) def multiclass_dice_loss(output, target, smooth=0, activation="softmax"): """Calculate Dice Loss for multiple class output. Args: output (torch.Tensor): Model output of shape (N x C x H x W). target (torch.Tensor): Target of shape (N x H x W). smooth (float, optional): Smoothing factor. Defaults to 0. activation (string, optional): Name of the activation function, softmax or sigmoid. Defaults to 'softmax'. Returns: torch.Tensor: Loss value. """ if activation == "softmax": activation_nn = torch.nn.Softmax2d() elif activation == "sigmoid": activation_nn = torch.nn.Sigmoid() else: raise NotImplementedError("only sigmoid and softmax are implemented") loss = 0 dice = DiceLoss(smooth=smooth) output = activation_nn(output) num_classes = output.size(1) target.data = target.data.float() for class_nr in range(num_classes): loss += dice(output[:, class_nr, :, :], target[:, class_nr, :, :]) return loss / num_classes def where(cond, x_1, x_2): cond = cond.long() return (cond * x_1) + ((1 - cond) * x_2) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/loss/cyclic_lr.py ================================================ import torch import math from torch.optim.lr_scheduler import _LRScheduler class CosineAnnealingLR_with_Restart(_LRScheduler): """Set the learning rate of each parameter group using a cosine annealing schedule, where :math:`\eta_{max}` is set to the initial lr and :math:`T_{cur}` is the number of epochs since the last restart in SGDR: .. math:: \eta_t = \eta_{min} + \frac{1}{2}(\eta_{max} - \eta_{min})(1 + \cos(\frac{T_{cur}}{T_{max}}\pi)) When last_epoch=-1, sets initial lr as lr. It has been proposed in `SGDR: Stochastic Gradient Descent with Warm Restarts`_. The original pytorch implementation only implements the cosine annealing part of SGDR, I added my own implementation of the restarts part. Args: optimizer (Optimizer): Wrapped optimizer. T_max (int): Maximum number of iterations. T_mult (float): Increase T_max by a factor of T_mult eta_min (float): Minimum learning rate. Default: 0. last_epoch (int): The index of last epoch. Default: -1. model (pytorch model): The model to save. out_dir (str): Directory to save snapshots take_snapshot (bool): Whether to save snapshots at every restart .. _SGDR\: Stochastic Gradient Descent with Warm Restarts: https://arxiv.org/abs/1608.03983 """ def __init__( self, optimizer, T_max, T_mult, model, out_dir, take_snapshot, eta_min=0, last_epoch=-1, ): self.T_max = T_max self.T_mult = T_mult self.Te = self.T_max self.eta_min = eta_min self.current_epoch = last_epoch self.model = model self.out_dir = out_dir self.take_snapshot = take_snapshot self.lr_history = [] super(CosineAnnealingLR_with_Restart, self).__init__(optimizer, last_epoch) def get_lr(self): new_lrs = [ self.eta_min + (base_lr - self.eta_min) * (1 + math.cos(math.pi * self.current_epoch / self.Te)) / 2 for base_lr in self.base_lrs ] self.lr_history.append(new_lrs) return new_lrs def step(self, epoch=None): if epoch is None: epoch = self.last_epoch + 1 self.last_epoch = epoch self.current_epoch += 1 for param_group, lr in zip(self.optimizer.param_groups, self.get_lr()): param_group["lr"] = lr ## restart if self.current_epoch == self.Te: print("restart at epoch {:03d}".format(self.last_epoch + 1)) if self.take_snapshot: torch.save( {"epoch": self.T_max, "state_dict": self.model.state_dict()}, self.out_dir + "Weight/" + "snapshot_e_{:03d}.pth.tar".format(self.T_max), ) ## reset epochs since the last reset self.current_epoch = 0 ## reset the next goal self.Te = int(self.Te * self.T_mult) self.T_max = self.T_max + self.Te ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/loss/lovasz_losses.py ================================================ """ Lovasz-Softmax and Jaccard hinge loss in PyTorch Maxim Berman 2018 ESAT-PSI KU Leuven (MIT License) """ from __future__ import print_function, division import torch from torch.autograd import Variable import torch.nn.functional as F import numpy as np try: from itertools import ifilterfalse except ImportError: # py3k from itertools import filterfalse def lovasz_grad(gt_sorted): """ Computes gradient of the Lovasz extension w.r.t sorted errors See Alg. 1 in paper """ p = len(gt_sorted) gts = gt_sorted.sum() intersection = gts - gt_sorted.float().cumsum(0) union = gts + (1 - gt_sorted).float().cumsum(0) jaccard = 1.0 - intersection / union if p > 1: # cover 1-pixel case jaccard[1:p] = jaccard[1:p] - jaccard[0:-1] return jaccard def iou_binary(preds, labels, EMPTY=1.0, ignore=None, per_image=True): """ IoU for foreground class binary: 1 foreground, 0 background """ if not per_image: preds, labels = (preds,), (labels,) ious = [] for pred, label in zip(preds, labels): intersection = ((label == 1) & (pred == 1)).sum() union = ((label == 1) | ((pred == 1) & (label != ignore))).sum() if not union: iou = EMPTY else: iou = float(intersection) / union ious.append(iou) iou = mean(ious) # mean accross images if per_image return 100 * iou def iou(preds, labels, C, EMPTY=1.0, ignore=None, per_image=False): """ Array of IoU for each (non ignored) class """ if not per_image: preds, labels = (preds,), (labels,) ious = [] for pred, label in zip(preds, labels): iou = [] for i in range(C): if ( i != ignore ): # The ignored label is sometimes among predicted classes (ENet - CityScapes) intersection = ((label == i) & (pred == i)).sum() union = ((label == i) | ((pred == i) & (label != ignore))).sum() if not union: iou.append(EMPTY) else: iou.append(float(intersection) / union) ious.append(iou) ious = map(mean, zip(*ious)) # mean accross images if per_image return 100 * np.array(ious) # --------------------------- BINARY LOSSES --------------------------- def lovasz_hinge(logits, labels, per_image=True, ignore=None): """ Binary Lovasz hinge loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) per_image: compute the loss per image instead of per batch ignore: void class id """ if per_image: loss = mean( lovasz_hinge_flat( *flatten_binary_scores(log.unsqueeze(0), lab.unsqueeze(0), ignore) ) for log, lab in zip(logits, labels) ) else: loss = lovasz_hinge_flat(*flatten_binary_scores(logits, labels, ignore)) return loss def lovasz_hinge_flat(logits, labels): """ Binary Lovasz hinge loss logits: [P] Variable, logits at each prediction (between -\infty and +\infty) labels: [P] Tensor, binary ground truth labels (0 or 1) ignore: label to ignore """ if len(labels) == 0: # only void pixels, the gradients should be 0 return logits.sum() * 0.0 signs = 2.0 * labels.float() - 1.0 errors = 1.0 - logits * signs errors_sorted, perm = torch.sort(errors, dim=0, descending=True) perm = perm.data gt_sorted = labels[perm] grad = lovasz_grad(gt_sorted) # loss = torch.dot(F.relu(errors_sorted), grad) # print('elu!!!!!!') loss = torch.dot(F.elu(errors_sorted) + 1, grad) # loss = torch.dot(F.leaky_relu(errors_sorted)+1, grad) return loss def flatten_binary_scores(scores, labels, ignore=None): """ Flattens predictions in the batch (binary case) Remove labels equal to 'ignore' """ scores = scores.view(-1) labels = labels.view(-1) if ignore is None: return scores, labels valid = labels != ignore vscores = scores[valid] vlabels = labels[valid] return vscores, vlabels class StableBCELoss(torch.nn.modules.Module): def __init__(self): super(StableBCELoss, self).__init__() def forward(self, input, target): neg_abs = -input.abs() loss = input.clamp(min=0) - input * target + (1 + neg_abs.exp()).log() return loss.mean() def binary_xloss(logits, labels, ignore=None): """ Binary Cross entropy loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) ignore: void class id """ logits, labels = flatten_binary_scores(logits, labels, ignore) loss = StableBCELoss()(logits, Variable(labels.float())) return loss # --------------------------- MULTICLASS LOSSES --------------------------- def lovasz_softmax(probas, labels, only_present=False, per_image=False, ignore=None): """ Multi-class Lovasz-Softmax loss probas: [B, C, H, W] Variable, class probabilities at each prediction (between 0 and 1) labels: [B, H, W] Tensor, ground truth labels (between 0 and C - 1) only_present: average only on classes present in ground truth per_image: compute the loss per image instead of per batch ignore: void class labels """ if per_image: loss = mean( lovasz_softmax_flat( *flatten_probas(prob.unsqueeze(0), lab.unsqueeze(0), ignore), only_present=only_present ) for prob, lab in zip(probas, labels) ) else: loss = lovasz_softmax_flat( *flatten_probas(probas, labels, ignore), only_present=only_present ) return loss def lovasz_softmax_flat(probas, labels, only_present=False): """ Multi-class Lovasz-Softmax loss probas: [P, C] Variable, class probabilities at each prediction (between 0 and 1) labels: [P] Tensor, ground truth labels (between 0 and C - 1) only_present: average only on classes present in ground truth """ C = probas.size(1) losses = [] for c in range(C): fg = (labels == c).float() # foreground for class c if only_present and fg.sum() == 0: continue errors = (Variable(fg) - probas[:, c]).abs() errors_sorted, perm = torch.sort(errors, 0, descending=True) perm = perm.data fg_sorted = fg[perm] losses.append(torch.dot(errors_sorted, Variable(lovasz_grad(fg_sorted)))) return mean(losses) def flatten_probas(probas, labels, ignore=None): """ Flattens predictions in the batch """ B, C, H, W = probas.size() probas = probas.permute(0, 2, 3, 1).contiguous().view(-1, C) # B * H * W, C = P, C labels = labels.view(-1) if ignore is None: return probas, labels valid = labels != ignore vprobas = probas[valid.nonzero().squeeze()] vlabels = labels[valid] return vprobas, vlabels def xloss(logits, labels, ignore=None): """ Cross entropy loss """ return F.cross_entropy(logits, Variable(labels), ignore_index=255) # --------------------------- HELPER FUNCTIONS --------------------------- def mean(l, ignore_nan=False, empty=0): """ nanmean compatible with generators. """ l = iter(l) if ignore_nan: l = ifilterfalse(np.isnan, l) try: n = 1 acc = next(l) except StopIteration: if empty == "raise": raise ValueError("Empty mean") return empty for n, v in enumerate(l, 2): acc += v if n == 1: return acc return acc / n ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/main.py ================================================ import argparse from data_loader import * from data_process.transform import * from loss.bce_losses import * from loss.cyclic_lr import * from loss.lovasz_losses import * from model.model import ( model34_DeepSupervion, model50A_DeepSupervion, model101A_DeepSupervion, ) from utils import create_submission from evaluate import do_kaggle_metric import time import datetime class SingleModelSolver(object): def __init__(self, config): self.model_name = config.model_name self.model = config.model self.dice_weight = config.dice_weight self.bce_weight = config.bce_weight # Model hyper-parameters self.image_size = config.image_size # Hyper-parameteres self.g_lr = config.lr self.cycle_num = config.cycle_num self.cycle_inter = config.cycle_inter self.dice_bce_pretrain_epochs = config.dice_bce_pretrain_epochs self.batch_size = config.batch_size self.pretrained_model = config.pretrained_model # Path self.log_path = os.path.join("./models", self.model_name, config.log_path) self.sample_path = os.path.join("./models", self.model_name, config.sample_path) self.model_save_path = os.path.join( "./models", self.model_name, config.model_save_path ) self.result_path = os.path.join("./models", self.model_name, config.result_path) # Create directories if not exist if not os.path.exists(self.log_path): os.makedirs(self.log_path) if not os.path.exists(self.model_save_path): os.makedirs(self.model_save_path) if not os.path.exists(self.sample_path): os.makedirs(self.sample_path) if not os.path.exists(self.result_path): os.makedirs(self.result_path) # Step size self.log_step = config.log_step self.sample_step = config.sample_step self.model_save_step = config.model_save_step # Build tensorboard if use self.build_model() self.load_pretrained_model(config.train_fold_index) def build_model(self): if self.model == "model_34": self.G = model34_DeepSupervion() elif self.model == "model_50A": self.G = model50A_DeepSupervion() elif self.model == "model_101A": self.G = model101A_DeepSupervion() self.g_optimizer = torch.optim.SGD( filter(lambda p: p.requires_grad, self.G.parameters()), self.g_lr, weight_decay=0.0002, momentum=0.9, ) self.print_network(self.G, "G") if torch.cuda.is_available(): self.G = torch.nn.DataParallel(self.G) self.G.cuda() def print_network(self, model, name): num_params = 0 for p in model.parameters(): num_params += p.numel() print(name) print(model) print("The number of parameters: {}".format(num_params)) def load_pretrained_model(self, fold_index, mode=None, Cycle=None): if mode == None: if os.path.exists( os.path.join( self.model_save_path, "fold_" + str(fold_index), "{}_G.pth".format(self.pretrained_model), ) ): self.G.load_state_dict( torch.load( os.path.join( self.model_save_path, "fold_" + str(fold_index), "{}_G.pth".format(self.pretrained_model), ) ) ) print( "loaded trained G models fold: {} (step: {})..!".format( fold_index, self.pretrained_model ) ) elif mode == "max_map": if Cycle is None: pth = os.path.join( self.model_save_path, "fold_" + str(fold_index), "Lsoftmax_maxMap_G.pth", ) else: pth = os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(Cycle) + "_Lsoftmax_maxMap_G.pth", ) if os.path.exists(pth): self.G.load_state_dict(torch.load(pth)) print( "loaded trained G models fold: {} (step: {})..!".format( fold_index, pth ) ) elif mode == "min_loss": if Cycle is None: pth = os.path.join( self.model_save_path, "fold_" + str(fold_index), "Lsoftmax_minValidLoss_G.pth", ) else: pth = os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(Cycle) + "_Lsoftmax_minValidLoss_G.pth", ) if os.path.exists(pth): self.G.load_state_dict(torch.load(pth)) print( "loaded trained G models fold: {} (step: {})..!".format( fold_index, pth ) ) def update_lr(self, g_lr): for param_group in self.g_optimizer.param_groups: param_group["lr"] = g_lr def to_var(self, x, volatile=False): if torch.cuda.is_available(): x = x.cuda() return Variable(x, volatile=volatile) def criterion(self, logits, label): logits = logits.squeeze(1) label = label.squeeze(1) loss = lovasz_hinge(logits, label, per_image=True, ignore=None) return loss def train_fold(self, fold_index, aug_list): CE = torch.nn.CrossEntropyLoss() if not os.path.exists( os.path.join(self.model_save_path, "fold_" + str(fold_index)) ): os.makedirs(os.path.join(self.model_save_path, "fold_" + str(fold_index))) print("train loader!!!") data_loader = get_foldloader( self.image_size, self.batch_size, fold_index, aug_list, mode="train" ) print("val loader!!!") val_loader = get_foldloader(self.image_size, 1, fold_index, mode="val") iters_per_epoch = len(data_loader) for init_index in range(self.dice_bce_pretrain_epochs): for i, (images, labels, is_empty) in enumerate(data_loader): inputs = self.to_var(images) labels = self.to_var(labels) class_lbls = self.to_var(torch.LongTensor(is_empty)) binary_logits, no_empty_logits, final_logits = self.G(inputs) bce_loss_final = mixed_dice_bce_loss( final_logits, labels, dice_weight=self.dice_weight, bce_weight=self.bce_weight, ) class_loss = CE(binary_logits, class_lbls) non_empty = [] for c in range(len(is_empty)): if is_empty[c] == 0: non_empty.append(c) has_empty_nonempty = False if len(non_empty) * len(is_empty) > 0: has_empty_nonempty = True all_loss = bce_loss_final + 0.05 * class_loss loss = {} loss["loss_seg"] = bce_loss_final.data[0] loss["loss_classifier"] = class_loss.data[0] if has_empty_nonempty: indices = self.to_var(torch.LongTensor(non_empty)) y_non_empty = torch.index_select(no_empty_logits, 0, indices) mask_non_empty = torch.index_select(labels, 0, indices) loss_no_empty = mixed_dice_bce_loss( y_non_empty, mask_non_empty, dice_weight=self.dice_weight, bce_weight=self.bce_weight, ) all_loss += 0.50 * loss_no_empty loss["loss_seg_noempty"] = loss_no_empty.data[0] self.g_optimizer.zero_grad() all_loss.backward() self.g_optimizer.step() # Print out log info if (i + 1) % 10 == 0: lr = self.g_optimizer.param_groups[0]["lr"] log = "{} FOLD: {}, BCE+DICE pretrain Epoch [{}/{}], lr {:.4f}".format( self.model_name, fold_index, init_index, 10, lr ) for tag, value in loss.items(): log += ", {}: {:.4f}".format(tag, value) print(log) sgdr = CosineAnnealingLR_with_Restart( self.g_optimizer, T_max=self.cycle_inter, T_mult=1, model=self.G, out_dir="../input/", take_snapshot=False, eta_min=1e-3, ) # Start training start_time = time.time() for cycle_index in range(self.cycle_num): print("cycle index: " + str(cycle_index)) valid_loss_plot = [] max_map_plot = [] for e in range(0, self.cycle_inter): sgdr.step() lr = self.g_optimizer.param_groups[0]["lr"] print("change learning rate into: {:.4f}".format(lr)) for i, (images, labels, is_empty) in enumerate(data_loader): # all images inputs = self.to_var(images) labels = self.to_var(labels) class_lbls = self.to_var(torch.LongTensor(is_empty)) binary_logits, no_empty_logits, no_empty, final_logits, final = self.G( inputs ) loss_final = self.criterion(final_logits, labels) class_loss = CE(binary_logits, class_lbls) non_empty = [] for c in range(len(is_empty)): if is_empty[c] == 0: non_empty.append(c) has_empty_nonempty = False if len(non_empty) * len(is_empty) > 0: has_empty_nonempty = True all_loss = loss_final + 0.05 * class_loss loss = {} loss["loss_seg"] = loss_final.data[0] loss["loss_classifier"] = class_loss.data[0] if has_empty_nonempty: indices = self.to_var(torch.LongTensor(non_empty)) y_non_empty = torch.index_select(no_empty_logits, 0, indices) mask_non_empty = torch.index_select(labels, 0, indices) loss_no_empty = self.criterion(y_non_empty, mask_non_empty) all_loss += 0.50 * loss_no_empty loss["loss_seg_noempty"] = loss_no_empty.data[0] self.g_optimizer.zero_grad() all_loss.backward() self.g_optimizer.step() # Print out log info if (i + 1) % self.log_step == 0: elapsed = time.time() - start_time elapsed = str(datetime.timedelta(seconds=elapsed)) lr = self.g_optimizer.param_groups[0]["lr"] log = "{} FOLD: {}, Cycle: {}, Elapsed [{}], Epoch [{}/{}], Iter [{}/{}], lr {:.4f}".format( self.model_name, fold_index, cycle_index, elapsed, e + 1, self.cycle_inter, i + 1, iters_per_epoch, lr, ) for tag, value in loss.items(): log += ", {}: {:.4f}".format(tag, value) print(log) if e + 1 >= 20 and (e + 1) % 5 == 0: valid_loss, max_map, max_thres = self.val_TTA( fold_index, val_loader, is_load=False ) if len(valid_loss_plot) == 0 or valid_loss < min(valid_loss_plot): print("save min valid loss model") torch.save( self.G.state_dict(), os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(cycle_index) + "_Lsoftmax_minValidLoss_G.pth", ), ) f = open( os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(cycle_index) + "_Lsoftmax_min_valid_loss.txt", ), "w", ) f.write( str(max_map) + " " + str(max_thres) + " " + str(valid_loss) + " epoch: " + str(e) ) f.close() if len(valid_loss_plot) == 0 or max_map > max(max_map_plot): print("save max map model") torch.save( self.G.state_dict(), os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(cycle_index) + "_Lsoftmax_maxMap_G.pth", ), ) f = open( os.path.join( self.model_save_path, "fold_" + str(fold_index), "Cycle_" + str(cycle_index) + "_Lsoftmax_max_map.txt", ), "w", ) f.write( str(max_map) + " " + str(max_thres) + " " + str(valid_loss) + " epoch: " + str(e) ) f.close() valid_loss_plot.append(valid_loss) max_map_plot.append(max_map) def val_TTA(self, fold_index, val_loader, is_load=False, mode=None, Cycle=None): if fold_index < 0: return if is_load: self.load_pretrained_model(fold_index, mode=mode, Cycle=Cycle) self.G.eval() loss = 0 t = 0 output_list = [] labels_list = [] for i, (images, labels, _) in enumerate(val_loader): img1 = images.numpy() img2 = img1[:, :, :, ::-1] batch_size = img1.shape[0] img_all = np.concatenate([img1, img2]) images = torch.FloatTensor(img_all) inputs = self.to_var(images) _, _, output = self.G(inputs) output = output.data.cpu().numpy() mask = output[0 : batch_size * 2] output = ( mask[0:batch_size] + mask[batch_size : batch_size * 2][:, :, :, ::-1] ) output = output / 2.0 labels = labels.numpy() output = output.transpose(2, 3, 0, 1).reshape( [self.image_size, self.image_size, -1] ) labels = labels.transpose(2, 3, 0, 1).reshape( [self.image_size, self.image_size, -1] ) if self.image_size == 128: output = center_corp(output, self.image_size, crop_size=101) labels = center_corp(labels, self.image_size, crop_size=101) elif self.image_size == 160: output = center_corp(output, self.image_size, crop_size=101) labels = center_corp(labels, self.image_size, crop_size=101) elif self.image_size == 256: output = center_corp(output, self.image_size, crop_size=202) labels = center_corp(labels, self.image_size, crop_size=202) output = cv2.resize(output, (101, 101)).reshape([101, 101, -1]) labels = cv2.resize(labels, (101, 101)).reshape([101, 101, -1]) output_list.append(output) labels_list.append(labels) output = output.transpose(2, 0, 1).reshape([batch_size, 1, 101, 101]) labels = labels.transpose(2, 0, 1).reshape([batch_size, 1, 101, 101]) output = torch.FloatTensor(output) labels = torch.FloatTensor(labels) labels = self.to_var(labels) output = self.to_var(output) bce_loss = self.criterion(output, labels) loss += bce_loss.data[0] t += 1.0 valid_loss = loss / t output = np.concatenate(output_list, axis=2) labels = np.concatenate(labels_list, axis=2) output = output.transpose(2, 0, 1) labels = labels.transpose(2, 0, 1) threshold = np.arange(-0.5, 0.5, 0.0125) def get_max_map(output_, labels_): precision_list = [] for thres in threshold: precision, result, _ = do_kaggle_metric( output_, labels_, threshold=thres ) precision = precision.mean() precision_list.append(precision) max_map = max(precision_list) max_index = np.argmax(np.asarray(precision_list)) print( "max map: {:.4f} at thres:{:.4f}".format(max_map, threshold[max_index]) ) return max_map, max_index max_map, max_index = get_max_map(output, labels) log = "{} FOLD: {} valid loss: {:.4f}".format( self.model_name, fold_index, valid_loss ) print(log) self.G.train() return valid_loss, max_map, threshold[max_index] def get_infer_TTA(self, fold_index, thres): self.G.eval() test_loader = get_foldloader( self.image_size, self.batch_size / 2, 0, mode="test" ) out = [] for i, (id, images) in enumerate(test_loader): img1 = images.numpy() img2 = img1[:, :, :, ::-1] batch_size = img1.shape[0] img_all = np.concatenate([img1, img2]) images = torch.FloatTensor(img_all) inputs = self.to_var(images) _, _, output = self.G(inputs) output = output.data.cpu().numpy() mask = output[0 : batch_size * 2] output = ( mask[0:batch_size] + mask[batch_size : batch_size * 2][:, :, :, ::-1] ) output = output / 2.0 output = output.transpose(2, 3, 0, 1).reshape( [self.image_size, self.image_size, batch_size] ) if self.image_size == 128: output = center_corp(output, self.image_size, crop_size=101) output = cv2.resize(output, (101, 101), cv2.INTER_CUBIC) output[output >= thres] = 1.0 output[output < thres] = 0.0 output = output.transpose(2, 0, 1) output = output.reshape([batch_size, 101, 101]).astype(np.uint8) for id_index in range(batch_size): out.append([id[id_index], output[id_index].reshape([101, 101])]) if i % 1000 == 0 and i > 0: print( self.model_name + " fold index: " + str(fold_index) + " " + str(i) ) return out def infer_fold_TTA(self, fold_index, mode="max_map", Cycle=None): print(mode) val_loader = get_foldloader( self.image_size, self.batch_size / 2, fold_index, mode="val" ) _, max_map, thres = self.val_TTA( fold_index, val_loader, is_load=True, mode=mode, Cycle=Cycle ) if fold_index < 0: return infer = self.get_infer_TTA(fold_index, thres) if Cycle is None: name_tmp = "fold_{}_TTA_{}{:.3f}at{:.3f}.csv".format( fold_index, mode, max_map, thres ) else: name_tmp = "fold_{}_Cycle_{}_TTA_{}{:.3f}at{:.3f}.csv".format( fold_index, Cycle, mode, max_map, thres ) output_name = os.path.join( self.model_save_path, "fold_" + str(fold_index), name_tmp ) submission = create_submission(infer) submission.to_csv(output_name, index=None) def infer_fold_all_Cycle(self, fold_index, mode="max_map"): for i in range(self.cycle_num): self.infer_fold_TTA(fold_index, mode, Cycle=i) def main(config, aug_list): # cudnn.benchmark = True if config.mode == "train": solver = SingleModelSolver(config) solver.train_fold(config.train_fold_index, aug_list) if config.mode == "test": solver = SingleModelSolver(config) solver.infer_fold_all_Cycle(config.train_fold_index) if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--train_fold_index", type=int, default=0) parser.add_argument("--model", type=str, default="model_34") parser.add_argument("--model_name", type=str, default="model_34") parser.add_argument("--image_size", type=int, default=128) parser.add_argument("--batch_size", type=int, default=16) aug_list = ["flip_lr"] parser.add_argument("--mode", type=str, default="train", choices=["train", "test"]) parser.add_argument("--pretrained_model", type=str, default=None) parser.add_argument("--lr", type=float, default=0.01) parser.add_argument("--cycle_num", type=int, default=7) parser.add_argument("--cycle_inter", type=int, default=50) parser.add_argument("--dice_bce_pretrain_epochs", type=int, default=10) parser.add_argument("--dice_weight", type=float, default=0.5) parser.add_argument("--bce_weight", type=float, default=0.9) parser.add_argument("--num_workers", type=int, default=16) # Test settings parser.add_argument("--log_path", type=str, default="logs") parser.add_argument("--model_save_path", type=str, default="models") parser.add_argument("--sample_path", type=str, default="samples") parser.add_argument("--result_path", type=str, default="results") # Step size parser.add_argument("--log_step", type=int, default=10) parser.add_argument("--sample_step", type=int, default=10) parser.add_argument("--model_save_step", type=int, default=20000) config = parser.parse_args() print(config) main(config, aug_list) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/model/__init__.py ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/model/ibnnet.py ================================================ from __future__ import division """ Creates a ResNeXt Model as defined in: Xie, S., Girshick, R., Dollar, P., Tu, Z., & He, K. (2016). Aggregated residual transformations for deep neural networks. arXiv preprint arXiv:1611.05431. import from https://github.com/facebookresearch/ResNeXt/blob/master/models/resnext.lua """ import math import torch.nn as nn import torch.nn.functional as F from torch.nn import init import torch __all__ = ["resnext50_ibn_a", "resnext101_ibn_a", "resnext152_ibn_a"] class IBN(nn.Module): def __init__(self, planes): super(IBN, self).__init__() half1 = int(planes / 2) self.half = half1 half2 = planes - half1 self.IN = nn.InstanceNorm2d(half1, affine=True) self.BN = nn.BatchNorm2d(half2) def forward(self, x): split = torch.split(x, self.half, 1) out1 = self.IN(split[0].contiguous()) out2 = self.BN(split[1].contiguous()) out = torch.cat((out1, out2), 1) return out class Bottleneck(nn.Module): """ RexNeXt bottleneck type C """ expansion = 4 def __init__( self, inplanes, planes, baseWidth, cardinality, stride=1, downsample=None, ibn=False, ): """ Constructor Args: inplanes: input channel dimensionality planes: output channel dimensionality baseWidth: base width. cardinality: num of convolution groups. stride: conv stride. Replaces pooling layer. """ super(Bottleneck, self).__init__() D = int(math.floor(planes * (baseWidth / 64))) C = cardinality self.conv1 = nn.Conv2d( inplanes, D * C, kernel_size=1, stride=1, padding=0, bias=False ) if ibn: self.bn1 = IBN(D * C) else: self.bn1 = nn.BatchNorm2d(D * C) self.conv2 = nn.Conv2d( D * C, D * C, kernel_size=3, stride=stride, padding=1, groups=C, bias=False ) self.bn2 = nn.BatchNorm2d(D * C) self.conv3 = nn.Conv2d( D * C, planes * 4, kernel_size=1, stride=1, padding=0, bias=False ) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) out += residual out = self.relu(out) return out class ResNeXt(nn.Module): """ ResNext optimized for the ImageNet dataset, as specified in https://arxiv.org/pdf/1611.05431.pdf """ def __init__(self, baseWidth, cardinality, layers, num_classes): """ Constructor Args: baseWidth: baseWidth for ResNeXt. cardinality: number of convolution groups. layers: config of layers, e.g., [3, 4, 6, 3] num_classes: number of classes """ super(ResNeXt, self).__init__() block = Bottleneck self.cardinality = cardinality self.baseWidth = baseWidth self.num_classes = num_classes self.inplanes = 64 self.output_size = 64 self.conv1 = nn.Conv2d(3, 64, 7, 2, 3, bias=False) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) self.maxpool1 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.layer1 = self._make_layer(block, 64, layers[0]) self.layer2 = self._make_layer(block, 128, layers[1], stride=2) self.layer3 = self._make_layer(block, 256, layers[2], stride=2) self.layer4 = self._make_layer(block, 512, layers[3], stride=2) self.avgpool = nn.AvgPool2d(7) self.fc = nn.Linear(512 * block.expansion, num_classes) self.conv1.weight.data.normal_(0, math.sqrt(2.0 / (7 * 7 * 64))) for m in self.modules(): if isinstance(m, nn.Conv2d): n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels m.weight.data.normal_(0, math.sqrt(2.0 / n)) elif isinstance(m, nn.BatchNorm2d): m.weight.data.fill_(1) m.bias.data.zero_() elif isinstance(m, nn.InstanceNorm2d): m.weight.data.fill_(1) m.bias.data.zero_() def _make_layer(self, block, planes, blocks, stride=1): """ Stack n bottleneck modules where n is inferred from the depth of the network. Args: block: block type used to construct ResNext planes: number of output channels (need to multiply by block.expansion) blocks: number of blocks to be built stride: factor to reduce the spatial dimensionality in the first bottleneck of the block. Returns: a Module consisting of n sequential bottlenecks. """ downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d( self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False, ), nn.BatchNorm2d(planes * block.expansion), ) layers = [] ibn = True if planes == 512: ibn = False layers.append( block( self.inplanes, planes, self.baseWidth, self.cardinality, stride, downsample, ibn, ) ) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append( block( self.inplanes, planes, self.baseWidth, self.cardinality, 1, None, ibn, ) ) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) x = self.maxpool1(x) x = self.layer1(x) x = self.layer2(x) x = self.layer3(x) x = self.layer4(x) x = self.avgpool(x) x = x.view(x.size(0), -1) x = self.fc(x) return x def resnext50_ibn_a(baseWidth, cardinality): """ Construct ResNeXt-50. """ model = ResNeXt(baseWidth, cardinality, [3, 4, 6, 3], 1000) return model from utils import state_dict_remove_moudle def resnext101_ibn_a(baseWidth, cardinality, pretrained=True): """ Construct ResNeXt-101. """ model = ResNeXt(baseWidth, cardinality, [3, 4, 23, 3], 1000) if pretrained: state_dict = torch.load( r"/data/shentao/Airbus/code/pretrained_model/resnext101_ibn_a.pth.tar" )["state_dict"] state_dict = state_dict_remove_moudle(state_dict, model) model.load_state_dict(state_dict) return model def resnext152_ibn_a(baseWidth, cardinality): """ Construct ResNeXt-152. """ model = ResNeXt(baseWidth, cardinality, [3, 8, 36, 3], 1000) return model ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/model/model.py ================================================ import torch import torch.nn as nn import torchvision import torch.nn.functional as F from ibnnet import resnext101_ibn_a, IBN from senet import se_resnext50_32x4d def Stconv3x3(in_, out, bias=True): return nn.Conv2d(in_, out, 3, padding=1, bias=bias) def Stconv7x7(in_, out, bias=True): return nn.Conv2d(in_, out, 7, padding=3, bias=bias) def Stconv5x5(in_, out, bias=True): return nn.Conv2d(in_, out, 5, padding=2, bias=bias) def Stconv1x1(in_, out, bias=True): return nn.Conv2d(in_, out, 1, padding=0, bias=bias) class StConvRelu(nn.Module): def __init__(self, in_, out, kernel_size, norm_type=None): super(StConvRelu, self).__init__() is_bias = True self.norm_type = norm_type if norm_type == "batch_norm": self.norm = nn.BatchNorm2d(out) is_bias = False elif norm_type == "instance_norm": self.norm = nn.InstanceNorm2d(out) is_bias = True if kernel_size == 3: self.conv = Stconv3x3(in_, out, is_bias) elif kernel_size == 7: self.conv = Stconv7x7(in_, out, is_bias) elif kernel_size == 5: self.conv = Stconv5x5(in_, out, is_bias) elif kernel_size == 1: self.conv = Stconv1x1(in_, out, is_bias) self.activation = nn.ReLU(inplace=True) def forward(self, x): if self.norm_type is not None: x = self.conv(x) x = self.norm(x) x = self.activation(x) else: x = self.conv(x) x = self.activation(x) return x class ImprovedIBNaDecoderBlock(nn.Module): def __init__(self, in_channels, n_filters): super(ImprovedIBNaDecoderBlock, self).__init__() self.conv1 = nn.Conv2d(in_channels, in_channels // 4, 1) self.norm1 = IBN(in_channels // 4) self.relu = nn.ReLU(inplace=True) self.deconv2 = nn.ConvTranspose2d( in_channels // 4, in_channels // 4, 4, stride=2, padding=1 ) self.norm2 = nn.BatchNorm2d(in_channels // 4) self.conv3 = nn.Conv2d(in_channels // 4, n_filters, 1) self.norm3 = nn.BatchNorm2d(n_filters) def forward(self, x): x = self.conv1(x) x = self.norm1(x) x = self.relu(x) x = self.deconv2(x) x = self.norm2(x) x = self.relu(x) x = self.conv3(x) x = self.norm3(x) x = self.relu(x) return x class SELayer(nn.Module): def __init__(self, channel, reduction=16): super(SELayer, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) self.fc = nn.Sequential( nn.Linear(channel, int(channel / reduction), bias=False), nn.ReLU(inplace=True), nn.Linear(int(channel / reduction), channel, bias=False), nn.Sigmoid(), ) def forward(self, x): b, c, _, _ = x.size() y = self.avg_pool(x).view(b, c) y = self.fc(y).view(b, c, 1, 1) return x * y.expand_as(x) class SCSEBlock(nn.Module): def __init__(self, channel, reduction=16): super(SCSEBlock, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) self.channel_excitation = nn.Sequential( nn.Linear(channel, int(channel // reduction)), nn.ReLU(inplace=True), nn.Linear(int(channel // reduction), channel), nn.Sigmoid(), ) self.spatial_se = nn.Sequential( nn.Conv2d(channel, 1, kernel_size=1, stride=1, padding=0, bias=False), nn.Sigmoid(), ) def forward(self, x): bahs, chs, _, _ = x.size() # Returns a new tensor with the same data as the self tensor but of a different size. chn_se = self.avg_pool(x).view(bahs, chs) chn_se = self.channel_excitation(chn_se).view(bahs, chs, 1, 1) chn_se = torch.mul(x, chn_se) spa_se = self.spatial_se(x) spa_se = torch.mul(x, spa_se) return torch.add(chn_se, 1, spa_se) class Decoder(nn.Module): def __init__(self, in_channels, channels, out_channels): super(Decoder, self).__init__() self.conv1 = nn.Sequential( nn.Conv2d(in_channels, channels, kernel_size=3, padding=1), nn.BatchNorm2d(channels), nn.ReLU(inplace=True), ) self.conv2 = nn.Sequential( nn.Conv2d(channels, out_channels, kernel_size=3, padding=1), nn.BatchNorm2d(out_channels), nn.ReLU(inplace=True), ) self.SCSE = SCSEBlock(out_channels) def forward(self, x, e=None): x = F.upsample(x, scale_factor=2, mode="bilinear") if e is not None: x = torch.cat([x, e], 1) x = F.dropout2d(x, p=0.50) x = self.conv1(x) x = self.conv2(x) x = self.SCSE(x) return x class model34_DeepSupervion(nn.Module): def __init__(self, num_classes=1, mask_class=2): super(model34_DeepSupervion, self).__init__() self.num_classes = num_classes self.encoder = torchvision.models.resnet34(pretrained=True) self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu ) self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center_global_pool = nn.AdaptiveAvgPool2d([1, 1]) self.center_conv1x1 = nn.Conv2d(512, 64, kernel_size=1) self.center_fc = nn.Linear(64, mask_class) self.center = nn.Sequential( nn.Conv2d(512, 512, kernel_size=3, padding=1), nn.BatchNorm2d(512), nn.ReLU(inplace=True), nn.Conv2d(512, 256, kernel_size=3, padding=1), nn.BatchNorm2d(256), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=2, stride=2), ) self.decoder5 = Decoder(256 + 512, 512, 64) self.decoder4 = Decoder(64 + 256, 256, 64) self.decoder3 = Decoder(64 + 128, 128, 64) self.decoder2 = Decoder(64 + 64, 64, 64) self.decoder1 = Decoder(64, 32, 64) self.logits_no_empty = nn.Sequential( nn.Conv2d(320, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 1, kernel_size=1, padding=0), ) self.logits_final = nn.Sequential( nn.Conv2d(320 + 64, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 1, kernel_size=1, padding=0), ) def forward(self, x): conv1 = self.conv1(x) # 1/4 conv2 = self.conv2(conv1) # 1/4 conv3 = self.conv3(conv2) # 1/8 conv4 = self.conv4(conv3) # 1/16 conv5 = self.conv5(conv4) # 1/32 center_512 = self.center_global_pool(conv5) center_64 = self.center_conv1x1(center_512) center_64_flatten = center_64.view(center_64.size(0), -1) center_fc = self.center_fc(center_64_flatten) f = self.center(conv5) d5 = self.decoder5(f, conv5) d4 = self.decoder4(d5, conv4) d3 = self.decoder3(d4, conv3) d2 = self.decoder2(d3, conv2) d1 = self.decoder1(d2) hypercol = torch.cat( ( d1, F.upsample(d2, scale_factor=2, mode="bilinear"), F.upsample(d3, scale_factor=4, mode="bilinear"), F.upsample(d4, scale_factor=8, mode="bilinear"), F.upsample(d5, scale_factor=16, mode="bilinear"), ), 1, ) hypercol = F.dropout2d(hypercol, p=0.50) x_no_empty = self.logits_no_empty(hypercol) hypercol_add_center = torch.cat( (hypercol, F.upsample(center_64, scale_factor=128, mode="bilinear")), 1 ) x_final = self.logits_final(hypercol_add_center) return center_fc, x_no_empty, x_final class model50A_DeepSupervion(nn.Module): def __init__(self, num_classes=1): super(model50A_DeepSupervion, self).__init__() self.num_classes = num_classes self.encoder = se_resnext50_32x4d() self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder.layer0.conv1, self.encoder.layer0.bn1, self.encoder.layer0.relu1, ) self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center_global_pool = nn.AdaptiveAvgPool2d([1, 1]) self.center_conv1x1 = nn.Conv2d(512 * 4, 64, kernel_size=1) self.center_fc = nn.Linear(64, 2) self.center = nn.Sequential( nn.Conv2d(512 * 4, 512, kernel_size=3, padding=1), nn.BatchNorm2d(512), nn.ReLU(inplace=True), nn.Conv2d(512, 256, kernel_size=3, padding=1), nn.BatchNorm2d(256), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=2, stride=2), ) self.decoder5 = Decoder(256 + 512 * 4, 512, 64) self.decoder4 = Decoder(64 + 256 * 4, 256, 64) self.decoder3 = Decoder(64 + 128 * 4, 128, 64) self.decoder2 = Decoder(64 + 64 * 4, 64, 64) self.decoder1 = Decoder(64, 32, 64) self.logits_no_empty = nn.Sequential( nn.Conv2d(320, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 1, kernel_size=1, padding=0), ) self.logits_final = nn.Sequential( nn.Conv2d(320 + 64, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 1, kernel_size=1, padding=0), ) def forward(self, x): conv1 = self.conv1(x) # 1/4 conv2 = self.conv2(conv1) # 1/4 conv3 = self.conv3(conv2) # 1/8 conv4 = self.conv4(conv3) # 1/16 conv5 = self.conv5(conv4) # 1/32 center_512 = self.center_global_pool(conv5) center_64 = self.center_conv1x1(center_512) center_64_flatten = center_64.view(center_64.size(0), -1) center_fc = self.center_fc(center_64_flatten) f = self.center(conv5) d5 = self.decoder5(f, conv5) d4 = self.decoder4(d5, conv4) d3 = self.decoder3(d4, conv3) d2 = self.decoder2(d3, conv2) d1 = self.decoder1(d2) hypercol = torch.cat( ( d1, F.upsample(d2, scale_factor=2, mode="bilinear"), F.upsample(d3, scale_factor=4, mode="bilinear"), F.upsample(d4, scale_factor=8, mode="bilinear"), F.upsample(d5, scale_factor=16, mode="bilinear"), ), 1, ) hypercol = F.dropout2d(hypercol, p=0.50) x_no_empty = self.logits_no_empty(hypercol) hypercol_add_center = torch.cat( (hypercol, F.upsample(center_64, scale_factor=128, mode="bilinear")), 1 ) x_final = self.logits_final(hypercol_add_center) return center_fc, x_no_empty, x_final class model101A_DeepSupervion(nn.Module): def __init__(self, num_classes=1): super(model101A_DeepSupervion, self).__init__() self.num_classes = num_classes num_filters = 32 baseWidth = 4 cardinality = 32 self.encoder = resnext101_ibn_a(baseWidth, cardinality, pretrained=True) self.relu = nn.ReLU(inplace=True) self.pool = nn.MaxPool2d(2, 2) self.conv1 = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu ) self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center_global_pool = nn.AdaptiveAvgPool2d([1, 1]) self.center_conv1x1 = nn.Conv2d(2048, 64, kernel_size=1) self.center_fc = nn.Linear(64, 2) self.center_se = SELayer(512 * 4) self.center = ImprovedIBNaDecoderBlock(512 * 4, num_filters * 8) self.dec5_se = SELayer(512 * 4 + num_filters * 8) self.dec5 = ImprovedIBNaDecoderBlock(512 * 4 + num_filters * 8, num_filters * 8) self.dec4_se = SELayer(256 * 4 + num_filters * 8) self.dec4 = ImprovedIBNaDecoderBlock(256 * 4 + num_filters * 8, num_filters * 8) self.dec3_se = SELayer(128 * 4 + num_filters * 8) self.dec3 = ImprovedIBNaDecoderBlock(128 * 4 + num_filters * 8, num_filters * 4) self.dec2_se = SELayer(64 * 4 + num_filters * 4) self.dec2 = ImprovedIBNaDecoderBlock(64 * 4 + num_filters * 4, num_filters * 4) self.logits_no_empty = nn.Sequential( StConvRelu(num_filters * 4, num_filters, 3), nn.Dropout2d(0.5), nn.Conv2d(num_filters, 1, kernel_size=1, padding=0), ) self.logits_final = nn.Sequential( StConvRelu(num_filters * 4 + 64, num_filters, 3), nn.Dropout2d(0.5), nn.Conv2d(num_filters, 1, kernel_size=1, padding=0), ) def forward(self, x): conv1 = self.conv1(x) # 1/2 conv2 = self.conv2(conv1) # 1/2 conv3 = self.conv3(conv2) # 1/4 conv4 = self.conv4(conv3) # 1/8 conv5 = self.conv5(conv4) # 1/16 center_2048 = self.center_global_pool(conv5) center_64 = self.center_conv1x1(center_2048) center_64_flatten = center_64.view(center_64.size(0), -1) center_fc = self.center_fc(center_64_flatten) center = self.center(self.center_se(self.pool(conv5))) # 1/16 dec5 = self.dec5(self.dec5_se(torch.cat([center, conv5], 1))) # 1/8 dec4 = self.dec4(self.dec4_se(torch.cat([dec5, conv4], 1))) # 1/4 dec3 = self.dec3(self.dec3_se(torch.cat([dec4, conv3], 1))) # 1/2 dec2 = self.dec2(self.dec2_se(torch.cat([dec3, conv2], 1))) # 1 x_no_empty = self.logits_no_empty(dec2) dec0_add_center = torch.cat( (dec2, F.upsample(center_64, scale_factor=128, mode="bilinear")), 1 ) x_final = self.logits_final(dec0_add_center) return center_fc, x_no_empty, x_final ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/model/senet.py ================================================ """ ResNet code gently borrowed from https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py """ from __future__ import print_function, division, absolute_import from collections import OrderedDict import math import torch.nn as nn from torch.utils import model_zoo __all__ = [ "SENet", "senet154", "se_resnet50", "se_resnet101", "se_resnet152", "se_resnext50_32x4d", "se_resnext101_32x4d", ] pretrained_settings = { "senet154": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/senet154-c7b49a05.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, "se_resnet50": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/se_resnet50-ce0d4300.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, "se_resnet101": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/se_resnet101-7e38fcc6.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, "se_resnet152": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/se_resnet152-d17c99b7.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, "se_resnext50_32x4d": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/se_resnext50_32x4d-a260b3a4.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, "se_resnext101_32x4d": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/se_resnext101_32x4d-3b2fe3d8.pth", "input_space": "RGB", "input_size": [3, 224, 224], "input_range": [0, 1], "mean": [0.485, 0.456, 0.406], "std": [0.229, 0.224, 0.225], "num_classes": 1000, } }, } class SEModule(nn.Module): def __init__(self, channels, reduction): super(SEModule, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) self.fc1 = nn.Conv2d(channels, channels // reduction, kernel_size=1, padding=0) self.relu = nn.ReLU(inplace=True) self.fc2 = nn.Conv2d(channels // reduction, channels, kernel_size=1, padding=0) self.sigmoid = nn.Sigmoid() def forward(self, x): module_input = x x = self.avg_pool(x) x = self.fc1(x) x = self.relu(x) x = self.fc2(x) x = self.sigmoid(x) return module_input * x class Bottleneck(nn.Module): """ Base class for bottlenecks that implements `forward()` method. """ def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) out = self.se_module(out) + residual out = self.relu(out) return out class SEBottleneck(Bottleneck): """ Bottleneck for SENet154. """ expansion = 4 def __init__(self, inplanes, planes, groups, reduction, stride=1, downsample=None): super(SEBottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes * 2, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes * 2) self.conv2 = nn.Conv2d( planes * 2, planes * 4, kernel_size=3, stride=stride, padding=1, groups=groups, bias=False, ) self.bn2 = nn.BatchNorm2d(planes * 4) self.conv3 = nn.Conv2d(planes * 4, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.se_module = SEModule(planes * 4, reduction=reduction) self.downsample = downsample self.stride = stride class SEResNetBottleneck(Bottleneck): """ ResNet bottleneck with a Squeeze-and-Excitation module. It follows Caffe implementation and uses `stride=stride` in `conv1` and not in `conv2` (the latter is used in the torchvision implementation of ResNet). """ expansion = 4 def __init__(self, inplanes, planes, groups, reduction, stride=1, downsample=None): super(SEResNetBottleneck, self).__init__() self.conv1 = nn.Conv2d( inplanes, planes, kernel_size=1, bias=False, stride=stride ) self.bn1 = nn.BatchNorm2d(planes) self.conv2 = nn.Conv2d( planes, planes, kernel_size=3, padding=1, groups=groups, bias=False ) self.bn2 = nn.BatchNorm2d(planes) self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.se_module = SEModule(planes * 4, reduction=reduction) self.downsample = downsample self.stride = stride class SEResNeXtBottleneck(Bottleneck): """ ResNeXt bottleneck type C with a Squeeze-and-Excitation module. """ expansion = 4 def __init__( self, inplanes, planes, groups, reduction, stride=1, downsample=None, base_width=4, ): super(SEResNeXtBottleneck, self).__init__() width = int(math.floor(planes * (base_width / 64)) * groups) self.conv1 = nn.Conv2d(inplanes, width, kernel_size=1, stride=1, bias=False) self.bn1 = nn.BatchNorm2d(width) self.conv2 = nn.Conv2d( width, width, kernel_size=3, stride=stride, padding=1, groups=groups, bias=False, ) self.bn2 = nn.BatchNorm2d(width) self.conv3 = nn.Conv2d(width, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.se_module = SEModule(planes * 4, reduction=reduction) self.downsample = downsample self.stride = stride class SENet(nn.Module): def __init__( self, block, layers, groups, reduction, dropout_p=0.2, inplanes=128, input_3x3=True, downsample_kernel_size=3, downsample_padding=1, num_classes=1000, ): """ Parameters ---------- block (nn.Module): Bottleneck class. - For SENet154: SEBottleneck - For SE-ResNet models: SEResNetBottleneck - For SE-ResNeXt models: SEResNeXtBottleneck layers (list of ints): Number of residual blocks for 4 layers of the network (layer1...layer4). groups (int): Number of groups for the 3x3 convolution in each bottleneck block. - For SENet154: 64 - For SE-ResNet models: 1 - For SE-ResNeXt models: 32 reduction (int): Reduction ratio for Squeeze-and-Excitation modules. - For all models: 16 dropout_p (float or None): Drop probability for the Dropout layer. If `None` the Dropout layer is not used. - For SENet154: 0.2 - For SE-ResNet models: None - For SE-ResNeXt models: None inplanes (int): Number of input channels for layer1. - For SENet154: 128 - For SE-ResNet models: 64 - For SE-ResNeXt models: 64 input_3x3 (bool): If `True`, use three 3x3 convolutions instead of a single 7x7 convolution in layer0. - For SENet154: True - For SE-ResNet models: False - For SE-ResNeXt models: False downsample_kernel_size (int): Kernel size for downsampling convolutions in layer2, layer3 and layer4. - For SENet154: 3 - For SE-ResNet models: 1 - For SE-ResNeXt models: 1 downsample_padding (int): Padding for downsampling convolutions in layer2, layer3 and layer4. - For SENet154: 1 - For SE-ResNet models: 0 - For SE-ResNeXt models: 0 num_classes (int): Number of outputs in `last_linear` layer. - For all models: 1000 """ super(SENet, self).__init__() self.inplanes = inplanes if input_3x3: layer0_modules = [ ("conv1", nn.Conv2d(3, 64, 3, stride=2, padding=1, bias=False)), ("bn1", nn.BatchNorm2d(64)), ("relu1", nn.ReLU(inplace=True)), ("conv2", nn.Conv2d(64, 64, 3, stride=1, padding=1, bias=False)), ("bn2", nn.BatchNorm2d(64)), ("relu2", nn.ReLU(inplace=True)), ("conv3", nn.Conv2d(64, inplanes, 3, stride=1, padding=1, bias=False)), ("bn3", nn.BatchNorm2d(inplanes)), ("relu3", nn.ReLU(inplace=True)), ] else: layer0_modules = [ ( "conv1", nn.Conv2d( 3, inplanes, kernel_size=7, stride=2, padding=3, bias=False ), ), ("bn1", nn.BatchNorm2d(inplanes)), ("relu1", nn.ReLU(inplace=True)), ] # To preserve compatibility with Caffe weights `ceil_mode=True` # is used instead of `padding=1`. layer0_modules.append(("pool", nn.MaxPool2d(3, stride=2, ceil_mode=True))) self.layer0 = nn.Sequential(OrderedDict(layer0_modules)) self.layer1 = self._make_layer( block, planes=64, blocks=layers[0], groups=groups, reduction=reduction, downsample_kernel_size=1, downsample_padding=0, ) self.layer2 = self._make_layer( block, planes=128, blocks=layers[1], stride=2, groups=groups, reduction=reduction, downsample_kernel_size=downsample_kernel_size, downsample_padding=downsample_padding, ) self.layer3 = self._make_layer( block, planes=256, blocks=layers[2], stride=2, groups=groups, reduction=reduction, downsample_kernel_size=downsample_kernel_size, downsample_padding=downsample_padding, ) self.layer4 = self._make_layer( block, planes=512, blocks=layers[3], stride=2, groups=groups, reduction=reduction, downsample_kernel_size=downsample_kernel_size, downsample_padding=downsample_padding, ) self.avg_pool = nn.AvgPool2d(7, stride=1) self.dropout = nn.Dropout(dropout_p) if dropout_p is not None else None self.last_linear = nn.Linear(512 * block.expansion, num_classes) def _make_layer( self, block, planes, blocks, groups, reduction, stride=1, downsample_kernel_size=1, downsample_padding=0, ): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d( self.inplanes, planes * block.expansion, kernel_size=downsample_kernel_size, stride=stride, padding=downsample_padding, bias=False, ), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append( block(self.inplanes, planes, groups, reduction, stride, downsample) ) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes, groups, reduction)) return nn.Sequential(*layers) def features(self, x): x = self.layer0(x) x = self.layer1(x) x = self.layer2(x) x = self.layer3(x) x = self.layer4(x) return x def logits(self, x): x = self.avg_pool(x) if self.dropout is not None: x = self.dropout(x) x = x.view(x.size(0), -1) x = self.last_linear(x) return x def forward(self, x): x = self.features(x) x = self.logits(x) return x def initialize_pretrained_model(model, num_classes, settings): assert ( num_classes == settings["num_classes"] ), "num_classes should be {}, but is {}".format( settings["num_classes"], num_classes ) model.load_state_dict(model_zoo.load_url(settings["url"])) model.input_space = settings["input_space"] model.input_size = settings["input_size"] model.input_range = settings["input_range"] model.mean = settings["mean"] model.std = settings["std"] def senet154(num_classes=1000, pretrained="imagenet"): model = SENet( SEBottleneck, [3, 8, 36, 3], groups=64, reduction=16, dropout_p=0.2, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["senet154"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model def se_resnet50(num_classes=1000, pretrained="imagenet"): model = SENet( SEResNetBottleneck, [3, 4, 6, 3], groups=1, reduction=16, dropout_p=None, inplanes=64, input_3x3=False, downsample_kernel_size=1, downsample_padding=0, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["se_resnet50"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model def se_resnet101(num_classes=1000, pretrained="imagenet"): model = SENet( SEResNetBottleneck, [3, 4, 23, 3], groups=1, reduction=16, dropout_p=None, inplanes=64, input_3x3=False, downsample_kernel_size=1, downsample_padding=0, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["se_resnet101"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model def se_resnet152(num_classes=1000, pretrained="imagenet"): model = SENet( SEResNetBottleneck, [3, 8, 36, 3], groups=1, reduction=16, dropout_p=None, inplanes=64, input_3x3=False, downsample_kernel_size=1, downsample_padding=0, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["se_resnet152"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model def se_resnext50_32x4d(num_classes=1000, pretrained="imagenet"): model = SENet( SEResNeXtBottleneck, [3, 4, 6, 3], groups=32, reduction=16, dropout_p=None, inplanes=64, input_3x3=False, downsample_kernel_size=1, downsample_padding=0, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["se_resnext50_32x4d"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model def se_resnext101_32x4d(num_classes=1000, pretrained="imagenet"): model = SENet( SEResNeXtBottleneck, [3, 4, 23, 3], groups=32, reduction=16, dropout_p=None, inplanes=64, input_3x3=False, downsample_kernel_size=1, downsample_padding=0, num_classes=num_classes, ) if pretrained is not None: settings = pretrained_settings["se_resnext101_32x4d"][pretrained] initialize_pretrained_model(model, num_classes, settings) return model ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v1/utils.py ================================================ import logging import os # import pathlib import random import sys import time from itertools import chain from collections import Iterable # from deepsense import neptune import numpy as np import pandas as pd import torch from PIL import Image import yaml from imgaug import augmenters as iaa import imgaug as ia def do_length_encode(x): bs = np.where(x.T.flatten())[0] rle = [] prev = -2 for b in bs: if b > prev + 1: rle.extend((b + 1, 0)) rle[-1] += 1 prev = b # https://www.kaggle.com/c/data-science-bowl-2018/discussion/48561# # if len(rle)!=0 and rle[-1]+rle[-2] == x.size: # rle[-2] = rle[-2] -1 rle = " ".join([str(r) for r in rle]) return rle from math import isnan def do_length_decode(rle, H, W, fill_value=255): mask = np.zeros((H, W), np.uint8) if type(rle).__name__ == "float": return mask mask = mask.reshape(-1) rle = np.array([int(s) for s in rle.split(" ")]).reshape(-1, 2) for r in rle: start = r[0] - 1 end = start + r[1] mask[start:end] = fill_value mask = mask.reshape(W, H).T # H, W need to swap as transposing. return mask def decode_csv(csv_name): import pandas as pd data = pd.read_csv(csv_name) id = data["id"] rle_mask = data["rle_mask"] dict = {} for id, rle in zip(id, rle_mask): tmp = do_length_decode(rle, 101, 101, fill_value=1) dict[id] = tmp return dict def save_id_fea(predict_dict, save_dir): for id in predict_dict: output_mat = predict_dict[id].astype(np.float32) np.save(os.path.join(save_dir, id), output_mat) def state_dict_remove_moudle(moudle_state_dict, model): state_dict = model.state_dict() keys = list(moudle_state_dict.keys()) for key in keys: print(key + " loaded") new_key = key.replace(r"module.", r"") print(new_key) state_dict[new_key] = moudle_state_dict[key] return state_dict from matplotlib import pyplot as plt def write_and_plot(name, aver_num, logits, max_y=1.0, color="blue"): def moving_average(a, n=aver_num): ret = np.cumsum(a, dtype=float) ret[n:] = ret[n:] - ret[:-n] return ret[n - 1 :] / n # =========================================================== moving_plot = moving_average(np.array(logits)) x = range(moving_plot.shape[0]) # plt.close() plt.plot(x, moving_plot, color=color) plt.ylim(0, max_y) plt.savefig(name) def decompose(labeled): nr_true = labeled.max() masks = [] for i in range(1, nr_true + 1): msk = labeled.copy() msk[msk != i] = 0.0 msk[msk == i] = 255.0 masks.append(msk) if not masks: return [labeled] else: return masks def encode_rle(predictions): return [run_length_encoding(mask) for mask in predictions] def create_submission(predictions): output = [] for image_id, mask in predictions: # print(image_id) rle_encoded = " ".join(str(rle) for rle in run_length_encoding(mask)) output.append([image_id, rle_encoded]) submission = pd.DataFrame(output, columns=["id", "rle_mask"]).astype(str) return submission def run_length_encoding(x): # https://www.kaggle.com/c/data-science-bowl-2018/discussion/48561# bs = np.where(x.T.flatten())[0] rle = [] prev = -2 for b in bs: if b > prev + 1: rle.extend((b + 1, 0)) rle[-1] += 1 prev = b if len(rle) != 0 and rle[-1] + rle[-2] > (x.size + 1): rle[-2] = rle[-2] - 1 return rle def run_length_decoding(mask_rle, shape): """ Based on https://www.kaggle.com/msl23518/visualize-the-stage1-test-solution and modified Args: mask_rle: run-length as string formatted (start length) shape: (height, width) of array to return Returns: numpy array, 1 - mask, 0 - background """ s = mask_rle.split() starts, lengths = [np.asarray(x, dtype=int) for x in (s[0:][::2], s[1:][::2])] starts -= 1 ends = starts + lengths img = np.zeros(shape[1] * shape[0], dtype=np.uint8) for lo, hi in zip(starts, ends): img[lo:hi] = 1 return img.reshape((shape[1], shape[0])).T def sigmoid(x): return 1.0 / (1 + np.exp(-x)) def softmax(X, theta=1.0, axis=None): """ https://nolanbconaway.github.io/blog/2017/softmax-numpy Compute the softmax of each element along an axis of X. Parameters ---------- X: ND-Array. Probably should be floats. theta (optional): float parameter, used as a multiplier prior to exponentiation. Default = 1.0 axis (optional): axis to compute values along. Default is the first non-singleton axis. Returns an array the same size as X. The result will sum to 1 along the specified axis. """ # make X at least 2d y = np.atleast_2d(X) # find axis if axis is None: axis = next(j[0] for j in enumerate(y.shape) if j[1] > 1) # multiply y against the theta parameter, y = y * float(theta) # subtract the max for numerical stability y = y - np.expand_dims(np.max(y, axis=axis), axis) # exponentiate y y = np.exp(y) # take the sum along the specified axis ax_sum = np.expand_dims(np.sum(y, axis=axis), axis) # finally: divide elementwise p = y / ax_sum # flatten if X was 1D if len(X.shape) == 1: p = p.flatten() return p def from_pil(*images): images = [np.array(image) for image in images] if len(images) == 1: return images[0] else: return images def to_pil(*images): images = [Image.fromarray((image).astype(np.uint8)) for image in images] if len(images) == 1: return images[0] else: return images def binary_from_rle(rle): return cocomask.decode(rle) def get_crop_pad_sequence(vertical, horizontal): top = int(vertical / 2) bottom = vertical - top right = int(horizontal / 2) left = horizontal - right return (top, right, bottom, left) def get_list_of_image_predictions(batch_predictions): image_predictions = [] for batch_pred in batch_predictions: image_predictions.extend(list(batch_pred)) return image_predictions def set_seed(seed): random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) if torch.cuda.is_available(): torch.cuda.manual_seed_all(seed) class ImgAug: def __init__(self, augmenters): if not isinstance(augmenters, list): augmenters = [augmenters] self.augmenters = augmenters self.seq_det = None def _pre_call_hook(self): seq = iaa.Sequential(self.augmenters) seq = reseed(seq, deterministic=True) self.seq_det = seq def transform(self, *images): images = [self.seq_det.augment_image(image) for image in images] if len(images) == 1: return images[0] else: return images def __call__(self, *args): self._pre_call_hook() return self.transform(*args) def get_seed(): seed = int(time.time()) + int(os.getpid()) return seed def reseed(augmenter, deterministic=True): augmenter.random_state = ia.new_random_state(get_seed()) if deterministic: augmenter.deterministic = True for lists in augmenter.get_children_lists(): for aug in lists: aug = reseed(aug, deterministic=True) return augmenter ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/augmentation.py ================================================ import cv2 import numpy as np import imgaug as ia from imgaug import augmenters as iaa from .utils import get_crop_pad_sequence, reseed def _perspective_transform_augment_images(self, images, random_state, parents, hooks): result = images if not self.keep_size: result = list(result) matrices, max_heights, max_widths = self._create_matrices( [image.shape for image in images], random_state ) for i, (M, max_height, max_width) in enumerate( zip(matrices, max_heights, max_widths) ): warped = cv2.warpPerspective(images[i], M, (max_width, max_height)) if warped.ndim == 2 and images[i].ndim == 3: warped = np.expand_dims(warped, 2) if self.keep_size: h, w = images[i].shape[0:2] warped = ia.imresize_single_image(warped, (h, w)) result[i] = warped return result iaa.PerspectiveTransform._augment_images = _perspective_transform_augment_images affine_seq = iaa.Sequential( [ # General iaa.SomeOf( (1, 2), [ iaa.Fliplr(0.5), iaa.Affine( rotate=(-2, 2), translate_percent={"x": (-0.04, 0.04)}, mode="edge" ) # symmetric (-0.25, 0.25) # iaa.CropAndPad(percent=((0.0, 0.10), (0.0, 0.05), (0.0, 0.10), (0.0, 0.05)), pad_mode='symmetric') ], ), # >>> aug = iaa.CropAndPad(px=((0, 10), (0, 5), (0, 10), (0, 5))) # pads the top and bottom by a random value from the range 0px to 10px # and the left and right by a random value in the range 0px to 5px. # Deformations iaa.Sometimes(0.05, iaa.PiecewiseAffine(scale=(0.04, 0.08))), iaa.Sometimes(0.05, iaa.PerspectiveTransform(scale=(0.05, 0.1))), ], random_order=True, ) intensity_seq = iaa.Sequential([iaa.Noop()], random_order=False) """ intensity_seq = iaa.Sequential([ iaa.Invert(0.3), iaa.Sometimes(0.3, iaa.ContrastNormalization((0.5, 1.5))), iaa.OneOf([ iaa.Noop(), iaa.Sequential([ iaa.OneOf([ iaa.Add((-10, 10)), iaa.AddElementwise((-10, 10)), iaa.Multiply((0.95, 1.05)), iaa.MultiplyElementwise((0.95, 1.05)), ]), ]), iaa.OneOf([ iaa.GaussianBlur(sigma=(0.0, 1.0)), iaa.AverageBlur(k=(2, 5)), iaa.MedianBlur(k=(3, 5)) ]) ]) ], random_order=False) """ tta_intensity_seq = iaa.Sequential([iaa.Noop()], random_order=False) def resize_pad_seq(resize_target_size, pad_method, pad_size): seq = iaa.Sequential( [ iaa.Scale({"height": resize_target_size, "width": resize_target_size}), PadFixed(pad=(pad_size, pad_size), pad_method=pad_method), affine_seq, ], random_order=False, ) return seq def pad_to_fit_net(divisor, pad_mode, rest_of_augs=iaa.Noop()): return iaa.Sequential(InferencePad(divisor, pad_mode), rest_of_augs) class PadFixed(iaa.Augmenter): PAD_FUNCTION = {"reflect": cv2.BORDER_REFLECT_101, "edge": cv2.BORDER_REPLICATE} def __init__( self, pad=None, pad_method=None, name=None, deterministic=False, random_state=None, ): super().__init__(name, deterministic, random_state) self.pad = pad self.pad_method = pad_method def _augment_images(self, images, random_state, parents, hooks): result = [] for i, image in enumerate(images): image_pad = self._pad(image) result.append(image_pad) return result def _augment_keypoints(self, keypoints_on_images, random_state, parents, hooks): result = [] return result def _pad(self, img): img_ = img.copy() if self._is_expanded_grey_format(img): img_ = np.squeeze(img_, axis=-1) h_pad, w_pad = self.pad img_ = cv2.copyMakeBorder( img_.copy(), h_pad, h_pad, w_pad, w_pad, PadFixed.PAD_FUNCTION[self.pad_method], ) if self._is_expanded_grey_format(img): img_ = np.expand_dims(img_, axis=-1) return img_ def get_parameters(self): return [] def _is_expanded_grey_format(self, img): if len(img.shape) == 3 and img.shape[2] == 1: return True else: return False def test_time_augmentation_transform(image, tta_parameters): if tta_parameters["ud_flip"]: image = np.flipud(image) if tta_parameters["lr_flip"]: image = np.fliplr(image) if tta_parameters["color_shift"]: random_color_shift = reseed(intensity_seq, deterministic=False) image = random_color_shift.augment_image(image) image = rotate(image, tta_parameters["rotation"]) return image def test_time_augmentation_inverse_transform(image, tta_parameters): image = per_channel_rotation(image.copy(), -1 * tta_parameters["rotation"]) if tta_parameters["lr_flip"]: image = per_channel_fliplr(image.copy()) if tta_parameters["ud_flip"]: image = per_channel_flipud(image.copy()) return image def per_channel_flipud(x): x_ = x.copy() for i, channel in enumerate(x): x_[i, :, :] = np.flipud(channel) return x_ def per_channel_fliplr(x): x_ = x.copy() for i, channel in enumerate(x): x_[i, :, :] = np.fliplr(channel) return x_ def per_channel_rotation(x, angle): return rotate(x, angle, axes=(1, 2)) def rotate(image, angle, axes=(0, 1)): if angle % 90 != 0: raise Exception("Angle must be a multiple of 90.") k = angle // 90 return np.rot90(image, k, axes=axes) class RandomCropFixedSize(iaa.Augmenter): def __init__(self, px=None, name=None, deterministic=False, random_state=None): super(RandomCropFixedSize, self).__init__( name=name, deterministic=deterministic, random_state=random_state ) self.px = px if isinstance(self.px, tuple): self.px_h, self.px_w = self.px elif isinstance(self.px, int): self.px_h = self.px self.px_w = self.px else: raise NotImplementedError def _augment_images(self, images, random_state, parents, hooks): result = [] seeds = random_state.randint(0, 10 ** 6, (len(images),)) for i, image in enumerate(images): seed = seeds[i] image_cr = self._random_crop(seed, image) result.append(image_cr) return result def _augment_keypoints(self, keypoints_on_images, random_state, parents, hooks): result = [] return result def _random_crop(self, seed, image): height, width = image.shape[:2] np.random.seed(seed) if height > self.px_h: crop_top = np.random.randint(height - self.px_h) elif height == self.px_h: crop_top = 0 else: raise ValueError("To big crop height") crop_bottom = crop_top + self.px_h np.random.seed(seed + 1) if width > self.px_w: crop_left = np.random.randint(width - self.px_w) elif width == self.px_w: crop_left = 0 else: raise ValueError("To big crop width") crop_right = crop_left + self.px_w if len(image.shape) == 2: image_cropped = image[crop_top:crop_bottom, crop_left:crop_right] else: image_cropped = image[crop_top:crop_bottom, crop_left:crop_right, :] return image_cropped def get_parameters(self): return [] class InferencePad(iaa.Augmenter): def __init__( self, divisor=2, pad_mode="symmetric", name=None, deterministic=False, random_state=None, ): super(InferencePad, self).__init__( name=name, deterministic=deterministic, random_state=random_state ) self.divisor = divisor self.pad_mode = pad_mode def _augment_keypoints(self, keypoints_on_images, random_state, parents, hooks): return keypoints_on_images def _augment_images(self, images, random_state, parents, hooks): result = [] for i, image in enumerate(images): image_padded = self._pad_image(image) result.append(image_padded) return result def _pad_image(self, image): height = image.shape[0] width = image.shape[1] pad_sequence = self._get_pad_sequence(height, width) augmenter = iaa.Pad(px=pad_sequence, keep_size=False, pad_mode=self.pad_mode) return augmenter.augment_image(image) def _get_pad_sequence(self, height, width): pad_vertical = self._get_pad(height) pad_horizontal = self._get_pad(width) return get_crop_pad_sequence(pad_vertical, pad_horizontal) def _get_pad(self, dim): if dim % self.divisor == 0: return 0 else: return self.divisor - dim % self.divisor def get_parameters(self): return [self.divisor, self.pad_mode] ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/callbacks.py ================================================ from functools import partial import os from datetime import datetime, timedelta import numpy as np import torch import neptune from torch.autograd import Variable from torch.optim.lr_scheduler import ExponentialLR from tempfile import TemporaryDirectory from steppy.base import Step, IdentityOperation from steppy.adapter import Adapter, E from toolkit.pytorch_transformers.utils import Averager, persist_torch_model from toolkit.pytorch_transformers.validation import score_model from .utils import ( get_logger, sigmoid, softmax, make_apply_transformer, read_masks, get_list_of_image_predictions, ) from .metrics import intersection_over_union, intersection_over_union_thresholds from .postprocessing import crop_image, resize_image, binarize logger = get_logger() Y_COLUMN = "file_path_mask" ORIGINAL_SIZE = (101, 101) THRESHOLD = 0.5 class Callback: def __init__(self): self.epoch_id = None self.batch_id = None self.model = None self.optimizer = None self.loss_function = None self.output_names = None self.validation_datagen = None self.lr_scheduler = None def set_params(self, transformer, validation_datagen, *args, **kwargs): self.model = transformer.model self.optimizer = transformer.optimizer self.loss_function = transformer.loss_function self.output_names = transformer.output_names self.validation_datagen = validation_datagen self.transformer = transformer def on_train_begin(self, *args, **kwargs): self.epoch_id = 0 self.batch_id = 0 def on_train_end(self, *args, **kwargs): pass def on_epoch_begin(self, *args, **kwargs): pass def on_epoch_end(self, *args, **kwargs): self.epoch_id += 1 def training_break(self, *args, **kwargs): return False def on_batch_begin(self, *args, **kwargs): pass def on_batch_end(self, *args, **kwargs): self.batch_id += 1 def get_validation_loss(self): if self.epoch_id not in self.transformer.validation_loss.keys(): self.transformer.validation_loss[self.epoch_id] = score_model( self.model, self.loss_function, self.validation_datagen ) return self.transformer.validation_loss[self.epoch_id] class CallbackList: def __init__(self, callbacks=None): if callbacks is None: self.callbacks = [] elif isinstance(callbacks, Callback): self.callbacks = [callbacks] else: self.callbacks = callbacks def __len__(self): return len(self.callbacks) def set_params(self, *args, **kwargs): for callback in self.callbacks: callback.set_params(*args, **kwargs) def on_train_begin(self, *args, **kwargs): for callback in self.callbacks: callback.on_train_begin(*args, **kwargs) def on_train_end(self, *args, **kwargs): for callback in self.callbacks: callback.on_train_end(*args, **kwargs) def on_epoch_begin(self, *args, **kwargs): for callback in self.callbacks: callback.on_epoch_begin(*args, **kwargs) def on_epoch_end(self, *args, **kwargs): for callback in self.callbacks: callback.on_epoch_end(*args, **kwargs) def training_break(self, *args, **kwargs): callback_out = [ callback.training_break(*args, **kwargs) for callback in self.callbacks ] return any(callback_out) def on_batch_begin(self, *args, **kwargs): for callback in self.callbacks: callback.on_batch_begin(*args, **kwargs) def on_batch_end(self, *args, **kwargs): for callback in self.callbacks: callback.on_batch_end(*args, **kwargs) class TrainingMonitor(Callback): def __init__(self, epoch_every=None, batch_every=None): super().__init__() self.epoch_loss_averagers = {} if epoch_every == 0: self.epoch_every = False else: self.epoch_every = epoch_every if batch_every == 0: self.batch_every = False else: self.batch_every = batch_every def on_train_begin(self, *args, **kwargs): self.epoch_loss_averagers = {} self.epoch_id = 0 self.batch_id = 0 def on_epoch_end(self, *args, **kwargs): for name, averager in self.epoch_loss_averagers.items(): epoch_avg_loss = averager.value averager.reset() if self.epoch_every and ((self.epoch_id % self.epoch_every) == 0): logger.info( "epoch {0} {1}: {2:.5f}".format( self.epoch_id, name, epoch_avg_loss ) ) self.epoch_id += 1 def on_batch_end(self, metrics, *args, **kwargs): for name, loss in metrics.items(): loss = loss.data.cpu().numpy()[0] if name in self.epoch_loss_averagers.keys(): self.epoch_loss_averagers[name].send(loss) else: self.epoch_loss_averagers[name] = Averager() self.epoch_loss_averagers[name].send(loss) if self.batch_every and ((self.batch_id % self.batch_every) == 0): logger.info( "epoch {0} batch {1} {2}: {3:.5f}".format( self.epoch_id, self.batch_id, name, loss ) ) self.batch_id += 1 class ExponentialLRScheduler(Callback): def __init__(self, gamma, epoch_every=1, batch_every=None): super().__init__() self.gamma = gamma if epoch_every == 0: self.epoch_every = False else: self.epoch_every = epoch_every if batch_every == 0: self.batch_every = False else: self.batch_every = batch_every def set_params(self, transformer, validation_datagen, *args, **kwargs): self.validation_datagen = validation_datagen self.model = transformer.model self.optimizer = transformer.optimizer self.loss_function = transformer.loss_function self.lr_scheduler = ExponentialLR(self.optimizer, self.gamma, last_epoch=-1) def on_train_begin(self, *args, **kwargs): self.epoch_id = 0 self.batch_id = 0 logger.info( "initial lr: {0}".format( self.optimizer.state_dict()["param_groups"][0]["initial_lr"] ) ) def on_epoch_end(self, *args, **kwargs): if self.epoch_every and (((self.epoch_id + 1) % self.epoch_every) == 0): self.lr_scheduler.step() logger.info( "epoch {0} current lr: {1}".format( self.epoch_id + 1, self.optimizer.state_dict()["param_groups"][0]["lr"], ) ) self.epoch_id += 1 def on_batch_end(self, *args, **kwargs): if self.batch_every and ((self.batch_id % self.batch_every) == 0): self.lr_scheduler.step() logger.info( "epoch {0} batch {1} current lr: {2}".format( self.epoch_id + 1, self.batch_id + 1, self.optimizer.state_dict()["param_groups"][0]["lr"], ) ) self.batch_id += 1 class ExperimentTiming(Callback): def __init__(self, epoch_every=None, batch_every=None): super().__init__() if epoch_every == 0: self.epoch_every = False else: self.epoch_every = epoch_every if batch_every == 0: self.batch_every = False else: self.batch_every = batch_every self.batch_start = None self.epoch_start = None self.current_sum = None self.current_mean = None def on_train_begin(self, *args, **kwargs): self.epoch_id = 0 self.batch_id = 0 logger.info("starting training...") def on_train_end(self, *args, **kwargs): logger.info("training finished") def on_epoch_begin(self, *args, **kwargs): if self.epoch_id > 0: epoch_time = datetime.now() - self.epoch_start if self.epoch_every: if (self.epoch_id % self.epoch_every) == 0: logger.info( "epoch {0} time {1}".format( self.epoch_id - 1, str(epoch_time)[:-7] ) ) self.epoch_start = datetime.now() self.current_sum = timedelta() self.current_mean = timedelta() logger.info("epoch {0} ...".format(self.epoch_id)) def on_batch_begin(self, *args, **kwargs): if self.batch_id > 0: current_delta = datetime.now() - self.batch_start self.current_sum += current_delta self.current_mean = self.current_sum / self.batch_id if self.batch_every: if self.batch_id > 0 and (((self.batch_id - 1) % self.batch_every) == 0): logger.info( "epoch {0} average batch time: {1}".format( self.epoch_id, str(self.current_mean)[:-5] ) ) if self.batch_every: if self.batch_id == 0 or self.batch_id % self.batch_every == 0: logger.info( "epoch {0} batch {1} ...".format(self.epoch_id, self.batch_id) ) self.batch_start = datetime.now() class NeptuneMonitor(Callback): def __init__(self, image_nr, image_resize, model_name): super().__init__() self.model_name = model_name self.ctx = neptune.Context() self.epoch_loss_averager = Averager() self.image_nr = image_nr self.image_resize = image_resize def on_train_begin(self, *args, **kwargs): self.epoch_loss_averagers = {} self.epoch_id = 0 self.batch_id = 0 def on_batch_end(self, metrics, *args, **kwargs): for name, loss in metrics.items(): loss = loss.data.cpu().numpy()[0] if name in self.epoch_loss_averagers.keys(): self.epoch_loss_averagers[name].send(loss) else: self.epoch_loss_averagers[name] = Averager() self.epoch_loss_averagers[name].send(loss) self.ctx.channel_send( "{} batch {} loss".format(self.model_name, name), x=self.batch_id, y=loss, ) self.batch_id += 1 def on_epoch_end(self, *args, **kwargs): self._send_numeric_channels() self.epoch_id += 1 def _send_numeric_channels(self, *args, **kwargs): for name, averager in self.epoch_loss_averagers.items(): epoch_avg_loss = averager.value averager.reset() self.ctx.channel_send( "{} epoch {} loss".format(self.model_name, name), x=self.epoch_id, y=epoch_avg_loss, ) self.model.eval() val_loss = self.get_validation_loss() self.model.train() for name, loss in val_loss.items(): loss = loss.data.cpu().numpy()[0] self.ctx.channel_send( "{} epoch_val {} loss".format(self.model_name, name), x=self.epoch_id, y=loss, ) class ValidationMonitor(Callback): def __init__(self, data_dir, loader_mode, epoch_every=None, batch_every=None): super().__init__() if epoch_every == 0: self.epoch_every = False else: self.epoch_every = epoch_every if batch_every == 0: self.batch_every = False else: self.batch_every = batch_every self.data_dir = data_dir self.validation_pipeline = postprocessing_pipeline_simplified self.loader_mode = loader_mode self.meta_valid = None self.y_true = None self.activation_func = None def set_params( self, transformer, validation_datagen, meta_valid=None, *args, **kwargs ): self.model = transformer.model self.optimizer = transformer.optimizer self.loss_function = transformer.loss_function self.output_names = transformer.output_names self.validation_datagen = validation_datagen self.meta_valid = meta_valid self.y_true = read_masks(self.meta_valid[Y_COLUMN].values) self.activation_func = transformer.activation_func self.transformer = transformer def get_validation_loss(self): return self._get_validation_loss() def on_epoch_end(self, *args, **kwargs): if self.epoch_every and ((self.epoch_id % self.epoch_every) == 0): self.model.eval() val_loss = self.get_validation_loss() self.model.train() for name, loss in val_loss.items(): loss = loss.data.cpu().numpy()[0] logger.info( "epoch {0} validation {1}: {2:.5f}".format( self.epoch_id, name, loss ) ) self.epoch_id += 1 def _get_validation_loss(self): output, epoch_loss = self._transform() y_pred = self._generate_prediction(output) logger.info("Calculating IOU and IOUT Scores") iou_score = intersection_over_union(self.y_true, y_pred) iout_score = intersection_over_union_thresholds(self.y_true, y_pred) logger.info("IOU score on validation is {}".format(iou_score)) logger.info("IOUT score on validation is {}".format(iout_score)) if not self.transformer.validation_loss: self.transformer.validation_loss = {} self.transformer.validation_loss.setdefault( self.epoch_id, { "sum": epoch_loss, "iou": Variable(torch.Tensor([iou_score])), "iout": Variable(torch.Tensor([iout_score])), }, ) return self.transformer.validation_loss[self.epoch_id] def _transform(self): self.model.eval() batch_gen, steps = self.validation_datagen partial_batch_losses = [] outputs = {} for batch_id, data in enumerate(batch_gen): X = data[0] targets_tensors = data[1:] if torch.cuda.is_available(): X = Variable(X, volatile=True).cuda() targets_var = [] for target_tensor in targets_tensors: targets_var.append(Variable(target_tensor, volatile=True).cuda()) else: X = Variable(X, volatile=True) targets_var = [] for target_tensor in targets_tensors: targets_var.append(Variable(target_tensor, volatile=True)) outputs_batch = self.model(X) if len(self.output_names) == 1: for (name, loss_function_one, weight), target in zip( self.loss_function, targets_var ): loss_sum = loss_function_one(outputs_batch, target) * weight outputs.setdefault(self.output_names[0], []).append( outputs_batch.data.cpu().numpy() ) else: batch_losses = [] for (name, loss_function_one, weight), output, target in zip( self.loss_function, outputs_batch, targets_var ): loss = loss_function_one(output, target) * weight batch_losses.append(loss) partial_batch_losses.setdefault(name, []).append(loss) output_ = output.data.cpu().numpy() outputs.setdefault(name, []).append(output_) loss_sum = sum(batch_losses) partial_batch_losses.append(loss_sum) if batch_id == steps: break self.model.train() average_losses = sum(partial_batch_losses) / steps outputs = { "{}_prediction".format(name): get_list_of_image_predictions(outputs_) for name, outputs_ in outputs.items() } for name, prediction in outputs.items(): if self.activation_func == "softmax": outputs[name] = [ softmax(single_prediction, axis=0) for single_prediction in prediction ] elif self.activation_func == "sigmoid": outputs[name] = [sigmoid(np.squeeze(mask)) for mask in prediction] else: raise Exception("Only softmax and sigmoid activations are allowed") return outputs, average_losses def _generate_prediction(self, outputs): data = { "callback_input": {"meta": self.meta_valid, "meta_valid": None}, "unet_output": {**outputs}, } with TemporaryDirectory() as cache_dirpath: pipeline = self.validation_pipeline(cache_dirpath, self.loader_mode) output = pipeline.transform(data) y_pred = output["y_pred"] return y_pred class ModelCheckpoint(Callback): def __init__(self, filepath, metric_name="sum", epoch_every=1, minimize=True): self.filepath = filepath self.minimize = minimize self.best_score = None if epoch_every == 0: self.epoch_every = False else: self.epoch_every = epoch_every self.metric_name = metric_name def on_train_begin(self, *args, **kwargs): self.epoch_id = 0 self.batch_id = 0 os.makedirs(os.path.dirname(self.filepath), exist_ok=True) def on_epoch_end(self, *args, **kwargs): if self.epoch_every and ((self.epoch_id % self.epoch_every) == 0): self.model.eval() val_loss = self.get_validation_loss() loss_sum = val_loss[self.metric_name] loss_sum = loss_sum.data.cpu().numpy()[0] self.model.train() if self.best_score is None: self.best_score = loss_sum if ( (self.minimize and loss_sum < self.best_score) or (not self.minimize and loss_sum > self.best_score) or (self.epoch_id == 0) ): self.best_score = loss_sum persist_torch_model(self.model, self.filepath) logger.info( "epoch {0} model saved to {1}".format(self.epoch_id, self.filepath) ) self.epoch_id += 1 class EarlyStopping(Callback): def __init__(self, metric_name="sum", patience=1000, minimize=True): super().__init__() self.patience = patience self.minimize = minimize self.best_score = None self.epoch_since_best = 0 self._training_break = False self.metric_name = metric_name def training_break(self, *args, **kwargs): return self._training_break def on_epoch_end(self, *args, **kwargs): self.model.eval() val_loss = self.get_validation_loss() loss_sum = val_loss[self.metric_name] loss_sum = loss_sum.data.cpu().numpy()[0] self.model.train() if not self.best_score: self.best_score = loss_sum if (self.minimize and loss_sum < self.best_score) or ( not self.minimize and loss_sum > self.best_score ): self.best_score = loss_sum self.epoch_since_best = 0 else: self.epoch_since_best += 1 if self.epoch_since_best > self.patience: self._training_break = True self.epoch_id += 1 def postprocessing_pipeline_simplified(cache_dirpath, loader_mode): if loader_mode == "resize_and_pad": size_adjustment_function = partial(crop_image, target_size=ORIGINAL_SIZE) elif loader_mode == "resize": size_adjustment_function = partial(resize_image, target_size=ORIGINAL_SIZE) else: raise NotImplementedError mask_resize = Step( name="mask_resize", transformer=make_apply_transformer( size_adjustment_function, output_name="resized_images", apply_on=["images"] ), input_data=["unet_output"], adapter=Adapter({"images": E("unet_output", "mask_prediction")}), experiment_directory=cache_dirpath, ) binarizer = Step( name="binarizer", transformer=make_apply_transformer( partial(binarize, threshold=THRESHOLD), output_name="binarized_images", apply_on=["images"], ), input_steps=[mask_resize], adapter=Adapter({"images": E(mask_resize.name, "resized_images")}), experiment_directory=cache_dirpath, ) output = Step( name="output", transformer=IdentityOperation(), input_steps=[binarizer], adapter=Adapter({"y_pred": E(binarizer.name, "binarized_images")}), experiment_directory=cache_dirpath, ) return output ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/loaders.py ================================================ import numpy as np import torch import torchvision.transforms as transforms from PIL import Image from attrdict import AttrDict from sklearn.externals import joblib from torch.utils.data import Dataset, DataLoader from imgaug import augmenters as iaa from functools import partial from itertools import product import multiprocessing as mp from scipy.stats import gmean from tqdm import tqdm import json from steppy.base import BaseTransformer from .utils import from_pil, to_pil, binary_from_rle, ImgAug class ImageReader(BaseTransformer): def __init__(self, train_mode, x_columns, y_columns, target_format="png"): self.train_mode = train_mode self.x_columns = x_columns self.y_columns = y_columns self.target_format = target_format def transform(self, meta): X_ = meta[self.x_columns].values X = self.load_images(X_, filetype="png", grayscale=False) if self.train_mode: y_ = meta[self.y_columns].values y = self.load_images(y_, filetype=self.target_format, grayscale=True) else: y = None return {"X": X, "y": y} def load_images(self, filepaths, filetype, grayscale=False): X = [] for i in range(filepaths.shape[1]): column = filepaths[:, i] X.append([]) for filepath in tqdm(column): if filetype == "png": data = self.load_image(filepath, grayscale=grayscale) elif filetype == "json": data = self.read_json(filepath) else: raise Exception("files must be png or json") X[i].append(data) return X def load_image(self, img_filepath, grayscale): image = Image.open(img_filepath, "r") if not grayscale: image = image.convert("RGB") else: image = image.convert("L").point(lambda x: 0 if x < 128 else 255, "1") return image def read_json(self, path): with open(path, "r") as file: data = json.load(file) masks = [to_pil(binary_from_rle(rle)) for rle in data] return masks class XYSplit(BaseTransformer): def __init__(self, train_mode, x_columns, y_columns): self.train_mode = train_mode super().__init__() self.x_columns = x_columns self.y_columns = y_columns self.columns_to_get = None self.target_columns = None def transform(self, meta): X = meta[self.x_columns[0]].values if self.train_mode: y = meta[self.y_columns[0]].values else: y = None return {"X": X, "y": y} class ImageSegmentationBaseDataset(Dataset): def __init__( self, X, y, train_mode, image_transform, image_augment_with_target, mask_transform, image_augment, image_source="memory", ): super().__init__() self.X = X if y is not None: self.y = y else: self.y = None self.train_mode = train_mode self.image_transform = image_transform self.mask_transform = mask_transform self.image_augment = ( image_augment if image_augment is not None else ImgAug(iaa.Noop()) ) self.image_augment_with_target = ( image_augment_with_target if image_augment_with_target is not None else ImgAug(iaa.Noop()) ) self.image_source = image_source def __len__(self): if self.image_source == "memory": return len(self.X[0]) elif self.image_source == "disk": return self.X.shape[0] def __getitem__(self, index): if self.image_source == "memory": load_func = self.load_from_memory elif self.image_source == "disk": load_func = self.load_from_disk else: raise NotImplementedError("Possible loading options: 'memory' and 'disk'!") Xi = load_func(self.X, index, filetype="png", grayscale=False) if self.y is not None: Mi = self.load_target(self.y, index, load_func) Xi, *Mi = from_pil(Xi, *Mi) Xi, *Mi = self.image_augment_with_target(Xi, *Mi) Xi = self.image_augment(Xi) Xi, *Mi = to_pil(Xi, *Mi) if self.mask_transform is not None: Mi = [self.mask_transform(m) for m in Mi] if self.image_transform is not None: Xi = self.image_transform(Xi) Mi = torch.cat(Mi, dim=0) return Xi, Mi else: Xi = from_pil(Xi) Xi = self.image_augment(Xi) Xi = to_pil(Xi) if self.image_transform is not None: Xi = self.image_transform(Xi) return Xi def load_from_memory(self, data_source, index, **kwargs): return data_source[0][index] def load_from_disk(self, data_source, index, *, filetype, grayscale=False): if filetype == "png": img_filepath = data_source[index] return self.load_image(img_filepath, grayscale=grayscale) elif filetype == "json": json_filepath = data_source[index] return self.read_json(json_filepath) else: raise Exception("files must be png or json") def load_image(self, img_filepath, grayscale): image = Image.open(img_filepath, "r") if not grayscale: image = image.convert("RGB") else: image = image.convert("L").point(lambda x: 0 if x < 128 else 1) return image def read_json(self, path): with open(path, "r") as file: data = json.load(file) masks = [to_pil(binary_from_rle(rle)) for rle in data] return masks def load_target(self, data_source, index, load_func): raise NotImplementedError class ImageSegmentationJsonDataset(ImageSegmentationBaseDataset): def load_target(self, data_source, index, load_func): Mi = load_func(data_source, index, filetype="json") return Mi class ImageSegmentationPngDataset(ImageSegmentationBaseDataset): def load_target(self, data_source, index, load_func): Mi = load_func(data_source, index, filetype="png", grayscale=True) Mi = from_pil(Mi) target = [to_pil(Mi == class_nr) for class_nr in [0, 1]] return target class ImageSegmentationTTADataset(ImageSegmentationBaseDataset): def __init__(self, tta_params, tta_transform, *args, **kwargs): super().__init__(*args, **kwargs) self.tta_params = tta_params self.tta_transform = tta_transform def __getitem__(self, index): if self.image_source == "memory": load_func = self.load_from_memory elif self.image_source == "disk": load_func = self.load_from_disk else: raise NotImplementedError("Possible loading options: 'memory' and 'disk'!") Xi = load_func(self.X, index, filetype="png", grayscale=False) Xi = from_pil(Xi) if self.image_augment is not None: Xi = self.image_augment(Xi) if self.tta_params is not None: tta_transform_specs = self.tta_params[index] Xi = self.tta_transform(Xi, tta_transform_specs) Xi = to_pil(Xi) if self.image_transform is not None: Xi = self.image_transform(Xi) return Xi class ImageSegmentationLoaderBasic(BaseTransformer): def __init__(self, train_mode, loader_params, dataset_params, augmentation_params): super().__init__() self.train_mode = train_mode self.loader_params = AttrDict(loader_params) self.dataset_params = AttrDict(dataset_params) self.augmentation_params = AttrDict(augmentation_params) self.mask_transform = None self.image_transform = None self.image_augment_train = None self.image_augment_inference = None self.image_augment_with_target_train = None self.image_augment_with_target_inference = None self.dataset = None def transform(self, X, y, X_valid=None, y_valid=None, **kwargs): if self.train_mode and y is not None: flow, steps = self.get_datagen(X, y, True, self.loader_params.training) else: flow, steps = self.get_datagen(X, None, False, self.loader_params.inference) if X_valid is not None and y_valid is not None: valid_flow, valid_steps = self.get_datagen( X_valid, y_valid, False, self.loader_params.inference ) else: valid_flow = None valid_steps = None return { "datagen": (flow, steps), "validation_datagen": (valid_flow, valid_steps), } def get_datagen(self, X, y, train_mode, loader_params): if train_mode: dataset = self.dataset( X, y, train_mode=True, image_augment=self.image_augment_train, image_augment_with_target=self.image_augment_with_target_train, mask_transform=self.mask_transform, image_transform=self.image_transform, image_source=self.dataset_params.image_source, ) else: dataset = self.dataset( X, y, train_mode=False, image_augment=self.image_augment_inference, image_augment_with_target=self.image_augment_with_target_inference, mask_transform=self.mask_transform, image_transform=self.image_transform, image_source=self.dataset_params.image_source, ) datagen = DataLoader(dataset, **loader_params) steps = len(datagen) return datagen, steps def load(self, filepath): params = joblib.load(filepath) self.loader_params = params["loader_params"] return self def save(self, filepath): params = {"loader_params": self.loader_params} joblib.dump(params, filepath) class ImageSegmentationLoaderBasicTTA(ImageSegmentationLoaderBasic): def __init__(self, loader_params, dataset_params, augmentation_params): self.loader_params = AttrDict(loader_params) self.dataset_params = AttrDict(dataset_params) self.augmentation_params = AttrDict(augmentation_params) self.mask_transform = None self.image_transform = None self.image_augment_train = None self.image_augment_inference = None self.image_augment_with_target_train = None self.image_augment_with_target_inference = None self.dataset = None def transform(self, X, tta_params, **kwargs): flow, steps = self.get_datagen(X, tta_params, self.loader_params.inference) valid_flow = None valid_steps = None return { "datagen": (flow, steps), "validation_datagen": (valid_flow, valid_steps), } def get_datagen(self, X, tta_params, loader_params): dataset = self.dataset( tta_params=tta_params, tta_transform=self.augmentation_params.tta_transform, X=X, y=None, train_mode=False, image_augment=self.image_augment_inference, image_augment_with_target=self.image_augment_with_target_inference, mask_transform=self.mask_transform, image_transform=self.image_transform, image_source=self.dataset_params.image_source, ) datagen = DataLoader(dataset, **loader_params) steps = len(datagen) return datagen, steps class ImageSegmentationLoaderResizePad(ImageSegmentationLoaderBasic): def __init__(self, train_mode, loader_params, dataset_params, augmentation_params): super().__init__(train_mode, loader_params, dataset_params, augmentation_params) self.image_transform = transforms.Compose( [ transforms.Grayscale(num_output_channels=3), transforms.ToTensor(), transforms.Normalize( mean=self.dataset_params.MEAN, std=self.dataset_params.STD ), ] ) self.mask_transform = transforms.Compose( [transforms.Lambda(to_array), transforms.Lambda(to_tensor)] ) self.image_augment_train = ImgAug( self.augmentation_params["image_augment_train"] ) self.image_augment_with_target_train = ImgAug( self.augmentation_params["image_augment_with_target_train"] ) self.image_augment_inference = ImgAug( self.augmentation_params["image_augment_inference"] ) self.image_augment_with_target_inference = ImgAug( self.augmentation_params["image_augment_with_target_inference"] ) if self.dataset_params.target_format == "png": self.dataset = ImageSegmentationPngDataset elif self.dataset_params.target_format == "json": self.dataset = ImageSegmentationJsonDataset else: raise Exception("files must be png or json") class ImageSegmentationLoaderPadTTA(ImageSegmentationLoaderBasicTTA): def __init__(self, loader_params, dataset_params, augmentation_params): super().__init__(loader_params, dataset_params, augmentation_params) self.image_transform = transforms.Compose( [ transforms.Grayscale(num_output_channels=3), transforms.ToTensor(), transforms.Normalize( mean=self.dataset_params.MEAN, std=self.dataset_params.STD ), ] ) self.mask_transform = transforms.Compose( [transforms.Lambda(to_array), transforms.Lambda(to_tensor)] ) self.image_augment_inference = ImgAug( self.augmentation_params["image_augment_inference"] ) self.image_augment_with_target_inference = ImgAug( self.augmentation_params["image_augment_with_target_inference"] ) self.dataset = ImageSegmentationTTADataset class ImageSegmentationLoaderResize(ImageSegmentationLoaderBasic): def __init__(self, train_mode, loader_params, dataset_params, augmentation_params): super().__init__(train_mode, loader_params, dataset_params, augmentation_params) self.image_transform = transforms.Compose( [ transforms.Resize((self.dataset_params.h, self.dataset_params.w)), transforms.Grayscale(num_output_channels=3), transforms.ToTensor(), transforms.Normalize( mean=self.dataset_params.MEAN, std=self.dataset_params.STD ), ] ) self.mask_transform = transforms.Compose( [ transforms.Resize( (self.dataset_params.h, self.dataset_params.w), interpolation=0 ), transforms.Lambda(to_array), transforms.Lambda(to_tensor), ] ) self.image_augment_train = ImgAug( self.augmentation_params["image_augment_train"] ) self.image_augment_with_target_train = ImgAug( self.augmentation_params["image_augment_with_target_train"] ) if self.dataset_params.target_format == "png": self.dataset = ImageSegmentationPngDataset elif self.dataset_params.target_format == "json": self.dataset = ImageSegmentationJsonDataset else: raise Exception("files must be png or json") class ImageSegmentationLoaderResizeTTA(ImageSegmentationLoaderBasicTTA): def __init__(self, loader_params, dataset_params, augmentation_params): super().__init__(loader_params, dataset_params, augmentation_params) self.image_transform = transforms.Compose( [ transforms.Resize((self.dataset_params.h, self.dataset_params.w)), transforms.Grayscale(num_output_channels=3), transforms.ToTensor(), transforms.Normalize( mean=self.dataset_params.MEAN, std=self.dataset_params.STD ), ] ) self.mask_transform = transforms.Compose( [ transforms.Resize( (self.dataset_params.h, self.dataset_params.w), interpolation=0 ), transforms.Lambda(to_array), transforms.Lambda(to_tensor), ] ) self.dataset = ImageSegmentationTTADataset class MetaTestTimeAugmentationGenerator(BaseTransformer): def __init__(self, **kwargs): self.tta_transformations = AttrDict(kwargs) def transform(self, X, **kwargs): X_tta_rows, tta_params, img_ids = [], [], [] for i in range(len(X)): rows, params, ids = self._get_tta_data(i, X[i]) tta_params.extend(params) img_ids.extend(ids) X_tta_rows.extend(rows) X_tta = np.array(X_tta_rows) return {"X_tta": X_tta, "tta_params": tta_params, "img_ids": img_ids} def _get_tta_data(self, i, row): original_specs = { "ud_flip": False, "lr_flip": False, "rotation": 0, "color_shift": False, } tta_specs = [original_specs] ud_options = [True, False] if self.tta_transformations.flip_ud else [False] lr_options = [True, False] if self.tta_transformations.flip_lr else [False] rot_options = [0, 90, 180, 270] if self.tta_transformations.rotation else [0] if self.tta_transformations.color_shift_runs: color_shift_options = list( range(1, self.tta_transformations.color_shift_runs + 1, 1) ) else: color_shift_options = [False] for ud, lr, rot, color in product( ud_options, lr_options, rot_options, color_shift_options ): if ud is False and lr is False and rot == 0 and color is False: continue else: tta_specs.append( { "ud_flip": ud, "lr_flip": lr, "rotation": rot, "color_shift": color, } ) img_ids = [i] * len(tta_specs) X_rows = [row] * len(tta_specs) return X_rows, tta_specs, img_ids class TestTimeAugmentationGenerator(BaseTransformer): def __init__(self, **kwargs): self.tta_transformations = AttrDict(kwargs) def transform(self, X, **kwargs): X_tta, tta_params, img_ids = [], [], [] X = X[0] for i in range(len(X)): images, params, ids = self._get_tta_data(i, X[i]) tta_params.extend(params) img_ids.extend(ids) X_tta.extend(images) return {"X_tta": [X_tta], "tta_params": tta_params, "img_ids": img_ids} def _get_tta_data(self, i, row): original_specs = { "ud_flip": False, "lr_flip": False, "rotation": 0, "color_shift": False, } tta_specs = [original_specs] ud_options = [True, False] if self.tta_transformations.flip_ud else [False] lr_options = [True, False] if self.tta_transformations.flip_lr else [False] rot_options = [0, 90, 180, 270] if self.tta_transformations.rotation else [0] if self.tta_transformations.color_shift_runs: color_shift_options = list( range(1, self.tta_transformations.color_shift_runs + 1, 1) ) else: color_shift_options = [False] for ud, lr, rot, color in product( ud_options, lr_options, rot_options, color_shift_options ): if ud is False and lr is False and rot == 0 and color is False: continue else: tta_specs.append( { "ud_flip": ud, "lr_flip": lr, "rotation": rot, "color_shift": color, } ) img_ids = [i] * len(tta_specs) X_rows = [row] * len(tta_specs) return X_rows, tta_specs, img_ids class TestTimeAugmentationAggregator(BaseTransformer): def __init__(self, tta_inverse_transform, method, nthreads): self.tta_inverse_transform = tta_inverse_transform self.method = method self.nthreads = nthreads @property def agg_method(self): methods = {"mean": np.mean, "max": np.max, "min": np.min, "gmean": gmean} return partial(methods[self.method], axis=-1) def transform(self, images, tta_params, img_ids, **kwargs): _aggregate_augmentations = partial( aggregate_augmentations, images=images, tta_params=tta_params, tta_inverse_transform=self.tta_inverse_transform, img_ids=img_ids, agg_method=self.agg_method, ) unique_img_ids = set(img_ids) threads = min(self.nthreads, len(unique_img_ids)) with mp.pool.ThreadPool(threads) as executor: averages_images = executor.map(_aggregate_augmentations, unique_img_ids) return {"aggregated_prediction": averages_images} def aggregate_augmentations( img_id, images, tta_params, tta_inverse_transform, img_ids, agg_method ): tta_predictions_for_id = [] for image, tta_param, ids in zip(images, tta_params, img_ids): if ids == img_id: tta_prediction = tta_inverse_transform(image, tta_param) tta_predictions_for_id.append(tta_prediction) else: continue tta_averaged = agg_method(np.stack(tta_predictions_for_id, axis=-1)) return tta_averaged def to_array(x): x_ = x.convert("L") # convert image to monochrome x_ = np.array(x_) x_ = x_.astype(np.float32) return x_ def to_tensor(x): x_ = np.expand_dims(x, axis=0) x_ = torch.from_numpy(x_) return x_ ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/metrics.py ================================================ import numpy as np from tqdm import tqdm from pycocotools import mask as cocomask from .utils import get_segmentations def iou(gt, pred): gt[gt > 0] = 1.0 pred[pred > 0] = 1.0 intersection = gt * pred union = gt + pred union[union > 0] = 1.0 intersection = np.sum(intersection) union = np.sum(union) if union == 0: union = 1e-09 return intersection / union def compute_ious(gt, predictions): gt_ = get_segmentations(gt) predictions_ = get_segmentations(predictions) if len(gt_) == 0 and len(predictions_) == 0: return np.ones((1, 1)) elif len(gt_) != 0 and len(predictions_) == 0: return np.zeros((1, 1)) else: iscrowd = [0 for _ in predictions_] ious = cocomask.iou(gt_, predictions_, iscrowd) if not np.array(ious).size: ious = np.zeros((1, 1)) return ious def compute_precision_at(ious, threshold): mx1 = np.max(ious, axis=0) mx2 = np.max(ious, axis=1) tp = np.sum(mx2 >= threshold) fp = np.sum(mx2 < threshold) fn = np.sum(mx1 < threshold) return float(tp) / (tp + fp + fn) def compute_eval_metric(gt, predictions): thresholds = [0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95] ious = compute_ious(gt, predictions) precisions = [compute_precision_at(ious, th) for th in thresholds] return sum(precisions) / len(precisions) def intersection_over_union(y_true, y_pred): ious = [] for y_t, y_p in tqdm(list(zip(y_true, y_pred))): iou = compute_ious(y_t, y_p) iou_mean = 1.0 * np.sum(iou) / len(iou) ious.append(iou_mean) return np.mean(ious) def intersection_over_union_thresholds(y_true, y_pred): iouts = [] for y_t, y_p in tqdm(list(zip(y_true, y_pred))): iouts.append(compute_eval_metric(y_t, y_p)) return np.mean(iouts) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/models.py ================================================ import numpy as np import torch import torch.optim as optim from torch.autograd import Variable import torch.nn as nn from functools import partial from toolkit.pytorch_transformers.models import Model import torch.nn.functional as F from .utils import sigmoid, softmax, get_list_of_image_predictions from . import callbacks as cbk from .unet_models import ( AlbuNet, UNet11, UNetVGG16, UNetResNet, UNetPNASNet, UNetResNext, UNetResNet_wo_pool, UNetResNext_wo_pool, UNetResNext_wo_pool_hyper, UNetResNext50, UNetResNetAttention, ) # , TernausNetV2 PRETRAINED_NETWORKS = { "VGG11": { "model": UNet11, "model_config": {"pretrained": True}, "init_weights": False, }, "VGG16": { "model": UNetVGG16, "model_config": {"pretrained": True, "dropout_2d": 0.0, "is_deconv": True}, "init_weights": False, }, "AlbuNet": { "model": AlbuNet, "model_config": {"pretrained": True, "is_deconv": True}, "init_weights": False, }, "ResNet34": { "model": UNetResNet, "model_config": { "encoder_depth": 34, "num_filters": 32, "dropout_2d": 0.0, "pretrained": True, "is_deconv": True, }, "init_weights": False, }, "ResNet101": { "model": UNetResNet, "model_config": { "encoder_depth": 101, "num_filters": 32, "dropout_2d": 0.0, "pretrained": True, "is_deconv": True, }, "init_weights": False, }, "ResNet152": { "model": UNetResNetAttention, "model_config": { "encoder_depth": 152, "num_filters": 32, "dropout_2d": 0.0, "pretrained": True, "is_deconv": True, }, "init_weights": False, }, "UNetPNASNet": { "model": UNetPNASNet, "model_config": { "encoder_depth": 152, "num_filters": 32, "dropout_2d": 0.2, "pretrained": True, "is_deconv": True, }, "init_weights": False, }, } class PyTorchUNet(Model): def __init__(self, architecture_config, training_config, callbacks_config): super().__init__(architecture_config, training_config, callbacks_config) self.activation_func = self.architecture_config["model_params"]["activation"] self.set_model() self.set_loss() self.weight_regularization = weight_regularization self.optimizer = optim.Adam( self.weight_regularization( self.model, **architecture_config["regularizer_params"] ), **architecture_config["optimizer_params"] ) self.callbacks = callbacks_unet(self.callbacks_config) def fit(self, datagen, validation_datagen=None, meta_valid=None): self._initialize_model_weights() if not isinstance(self.model, nn.DataParallel): self.model = nn.DataParallel(self.model) if torch.cuda.is_available(): self.model = self.model.cuda() self.callbacks.set_params( self, validation_datagen=validation_datagen, meta_valid=meta_valid ) self.callbacks.on_train_begin() batch_gen, steps = datagen for epoch_id in range(self.training_config["epochs"]): self.callbacks.on_epoch_begin() for batch_id, data in enumerate(batch_gen): self.callbacks.on_batch_begin() metrics = self._fit_loop(data) self.callbacks.on_batch_end(metrics=metrics) if batch_id == steps: break self.callbacks.on_epoch_end() if self.callbacks.training_break(): break self.callbacks.on_train_end() return self def _fit_loop(self, data): X = data[0] targets_tensors = data[1:] if torch.cuda.is_available(): X = Variable(X).cuda() targets_var = [] for target_tensor in targets_tensors: targets_var.append(Variable(target_tensor).cuda()) else: X = Variable(X) targets_var = [] for target_tensor in targets_tensors: targets_var.append(Variable(target_tensor)) self.optimizer.zero_grad() outputs_batch = self.model(X) partial_batch_losses = {} if len(self.output_names) == 1: for (name, loss_function, weight), target in zip( self.loss_function, targets_var ): batch_loss = loss_function(outputs_batch, target) * weight else: for (name, loss_function, weight), output, target in zip( self.loss_function, outputs_batch, targets_var ): partial_batch_losses[name] = loss_function(output, target) * weight batch_loss = sum(partial_batch_losses.values()) partial_batch_losses["sum"] = batch_loss batch_loss.backward() self.optimizer.step() return partial_batch_losses def transform(self, datagen, validation_datagen=None, *args, **kwargs): outputs = self._transform(datagen, validation_datagen) for name, prediction in outputs.items(): if self.activation_func == "softmax": outputs[name] = [ softmax(single_prediction, axis=0) for single_prediction in prediction ] elif self.activation_func == "sigmoid": outputs[name] = [sigmoid(np.squeeze(mask)) for mask in prediction] else: raise Exception("Only softmax and sigmoid activations are allowed") return outputs def _transform(self, datagen, validation_datagen=None, **kwargs): self.model.eval() batch_gen, steps = datagen outputs = {} for batch_id, data in enumerate(batch_gen): if isinstance(data, list): X = data[0] else: X = data if torch.cuda.is_available(): X = Variable(X, volatile=True).cuda() else: X = Variable(X, volatile=True) outputs_batch = self.model(X) if len(self.output_names) == 1: outputs.setdefault(self.output_names[0], []).append( outputs_batch.data.cpu().numpy() ) else: for name, output in zip(self.output_names, outputs_batch): output_ = output.data.cpu().numpy() outputs.setdefault(name, []).append(output_) if batch_id == steps: break self.model.train() outputs = { "{}_prediction".format(name): get_list_of_image_predictions(outputs_) for name, outputs_ in outputs.items() } return outputs def set_model(self): encoder = self.architecture_config["model_params"]["encoder"] config = PRETRAINED_NETWORKS[encoder] self.model = config["model"]( num_classes=self.architecture_config["model_params"]["out_channels"], **config["model_config"] ) self._initialize_model_weights = lambda: None def set_loss(self): if self.activation_func == "softmax": loss_function = partial( mixed_dice_cross_entropy_loss, dice_loss=multiclass_dice_loss, cross_entropy_loss=nn.CrossEntropyLoss(), dice_activation="softmax", dice_weight=self.architecture_config["model_params"]["dice_weight"], cross_entropy_weight=self.architecture_config["model_params"][ "bce_weight" ], ) elif self.activation_func == "sigmoid": """ loss_function = partial(mixed_dice_bce_loss, dice_loss=multiclass_dice_loss, bce_loss=nn.BCEWithLogitsLoss(), dice_activation='sigmoid', dice_weight=self.architecture_config['model_params']['dice_weight'], bce_weight=self.architecture_config['model_params']['bce_weight'] ) """ loss_function = designed_loss else: raise Exception("Only softmax and sigmoid activations are allowed") self.loss_function = [("mask", loss_function, 1.0)] def load(self, filepath): self.model.eval() if not isinstance(self.model, nn.DataParallel): self.model = nn.DataParallel(self.model) if torch.cuda.is_available(): self.model.cpu() self.model.load_state_dict(torch.load(filepath)) self.model = self.model.cuda() else: self.model.load_state_dict( torch.load(filepath, map_location=lambda storage, loc: storage) ) return self def designed_loss(output, target): target = target.data return lovasz_hinge(output, target) # return mixed_dice_bce_loss(output, target) def mean(l, ignore_nan=False, empty=0): """ nanmean compatible with generators. """ l = iter(l) if ignore_nan: l = ifilterfalse(np.isnan, l) try: n = 1 acc = next(l) except StopIteration: if empty == "raise": raise ValueError("Empty mean") return empty for n, v in enumerate(l, 2): acc += v if n == 1: return acc return acc / n def lovasz_grad(gt_sorted): """ Computes gradient of the Lovasz extension w.r.t sorted errors See Alg. 1 in paper """ p = len(gt_sorted) gts = gt_sorted.sum() intersection = gts - gt_sorted.float().cumsum(0) union = gts + (1 - gt_sorted).float().cumsum(0) jaccard = 1.0 - intersection / union if p > 1: # cover 1-pixel case jaccard[1:p] = jaccard[1:p] - jaccard[0:-1] return jaccard def lovasz_hinge(logits, labels, per_image=True, ignore=None): """ Binary Lovasz hinge loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) per_image: compute the loss per image instead of per batch ignore: void class id """ if per_image: loss = mean( lovasz_hinge_flat( *flatten_binary_scores(log.unsqueeze(0), lab.unsqueeze(0), ignore) ) for log, lab in zip(logits, labels) ) else: loss = lovasz_hinge_flat(*flatten_binary_scores(logits, labels, ignore)) return loss def lovasz_hinge_flat(logits, labels): """ Binary Lovasz hinge loss logits: [P] Variable, logits at each prediction (between -\infty and +\infty) labels: [P] Tensor, binary ground truth labels (0 or 1) ignore: label to ignore """ if len(labels) == 0: # only void pixels, the gradients should be 0 return logits.sum() * 0.0 signs = 2.0 * labels.float() - 1.0 # print('signs \n', signs) # print('\n logits', logits) errors = 1.0 - logits * Variable(signs) errors_sorted, perm = torch.sort(errors, dim=0, descending=True) perm = perm.data gt_sorted = labels[perm] grad = lovasz_grad(gt_sorted) loss = torch.dot(F.elu(errors_sorted), Variable(grad)) return loss def flatten_binary_scores(scores, labels, ignore=None): """ Flattens predictions in the batch (binary case) Remove labels equal to 'ignore' """ scores = scores.view(-1) labels = labels.view(-1) if ignore is None: return scores, labels valid = labels != ignore vscores = scores[valid] vlabels = labels[valid] return vscores, vlabels def weight_regularization(model, regularize, weight_decay_conv2d): if regularize: parameter_list = [ { "params": filter(lambda p: p.requires_grad, model.parameters()), "weight_decay": weight_decay_conv2d, } ] else: parameter_list = [filter(lambda p: p.requires_grad, model.parameters())] return parameter_list def callbacks_unet(callbacks_config): experiment_timing = cbk.ExperimentTiming(**callbacks_config["experiment_timing"]) model_checkpoints = cbk.ModelCheckpoint(**callbacks_config["model_checkpoint"]) lr_scheduler = cbk.ExponentialLRScheduler(**callbacks_config["lr_scheduler"]) training_monitor = cbk.TrainingMonitor(**callbacks_config["training_monitor"]) validation_monitor = cbk.ValidationMonitor(**callbacks_config["validation_monitor"]) neptune_monitor = cbk.NeptuneMonitor(**callbacks_config["neptune_monitor"]) early_stopping = cbk.EarlyStopping(**callbacks_config["early_stopping"]) return cbk.CallbackList( callbacks=[ experiment_timing, training_monitor, validation_monitor, model_checkpoints, lr_scheduler, neptune_monitor, early_stopping, ] ) class DiceLoss(nn.Module): def __init__(self, smooth=0, eps=1e-7): super(DiceLoss, self).__init__() self.smooth = smooth self.eps = eps def forward(self, output, target): return 1 - (2 * torch.sum(output * target) + self.smooth) / ( torch.sum(output) + torch.sum(target) + self.smooth + self.eps ) def mixed_dice_bce_loss( output, target, dice_weight=0.2, dice_loss=None, bce_weight=0.9, bce_loss=None, smooth=0, dice_activation="sigmoid", ): num_classes = output.size(1) target = target[:, :num_classes, :, :].long() if bce_loss is None: bce_loss = nn.BCEWithLogitsLoss() if dice_loss is None: dice_loss = multiclass_dice_loss return dice_weight * dice_loss( output, target, smooth, dice_activation ) + bce_weight * bce_loss(output, target) def mixed_dice_cross_entropy_loss( output, target, dice_weight=0.5, dice_loss=None, cross_entropy_weight=0.5, cross_entropy_loss=None, smooth=0, dice_activation="softmax", ): num_classes_without_background = output.size(1) - 1 dice_output = output[:, 1:, :, :] dice_target = target[:, :num_classes_without_background, :, :].long() cross_entropy_target = torch.zeros_like(target[:, 0, :, :]).long() for class_nr in range(num_classes_without_background): cross_entropy_target = where( target[:, class_nr, :, :], class_nr + 1, cross_entropy_target ) if cross_entropy_loss is None: cross_entropy_loss = nn.CrossEntropyLoss() if dice_loss is None: dice_loss = multiclass_dice_loss return dice_weight * dice_loss( dice_output, dice_target, smooth, dice_activation ) + cross_entropy_weight * cross_entropy_loss(output, cross_entropy_target) def multiclass_dice_loss(output, target, smooth=0, activation="softmax"): """Calculate Dice Loss for multiple class output. Args: output (torch.Tensor): Model output of shape (N x C x H x W). target (torch.Tensor): Target of shape (N x H x W). smooth (float, optional): Smoothing factor. Defaults to 0. activation (string, optional): Name of the activation function, softmax or sigmoid. Defaults to 'softmax'. Returns: torch.Tensor: Loss value. """ if activation == "softmax": activation_nn = torch.nn.Softmax2d() elif activation == "sigmoid": activation_nn = torch.nn.Sigmoid() else: raise NotImplementedError("only sigmoid and softmax are implemented") loss = 0 dice = DiceLoss(smooth=smooth) output = activation_nn(output) num_classes = output.size(1) target.data = target.data.float() for class_nr in range(num_classes): loss += dice(output[:, class_nr, :, :], target[:, class_nr, :, :]) return loss / num_classes def where(cond, x_1, x_2): cond = cond.long() return (cond * x_1) + ((1 - cond) * x_2) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/pipelines.py ================================================ from functools import partial from steppy.base import Step, IdentityOperation from steppy.adapter import Adapter, E from . import loaders from .utils import make_apply_transformer from .postprocessing import binarize def preprocessing_train(config, model_name="unet", suffix=""): if config.general.loader_mode == "resize_and_pad": Loader = loaders.ImageSegmentationLoaderResizePad loader_config = config.loaders.resize_and_pad elif config.general.loader_mode == "resize": Loader = loaders.ImageSegmentationLoaderResize loader_config = config.loaders.resize else: raise NotImplementedError if loader_config.dataset_params.image_source == "memory": reader_train = Step( name="reader_train{}".format(suffix), transformer=loaders.ImageReader( train_mode=True, **config.reader[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) reader_inference = Step( name="reader_inference{}".format(suffix), transformer=loaders.ImageReader( train_mode=True, **config.reader[model_name] ), input_data=["callback_input"], adapter=Adapter({"meta": E("callback_input", "meta_valid")}), experiment_directory=config.execution.experiment_dir, ) elif loader_config.dataset_params.image_source == "disk": reader_train = Step( name="xy_train{}".format(suffix), transformer=loaders.XYSplit( train_mode=True, **config.xy_splitter[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) reader_inference = Step( name="xy_inference{}".format(suffix), transformer=loaders.XYSplit( train_mode=True, **config.xy_splitter[model_name] ), input_data=["callback_input"], adapter=Adapter({"meta": E("callback_input", "meta_valid")}), experiment_directory=config.execution.experiment_dir, ) else: raise NotImplementedError loader = Step( name="loader{}".format(suffix), transformer=Loader(train_mode=True, **loader_config), input_steps=[reader_train, reader_inference], adapter=Adapter( { "X": E(reader_train.name, "X"), "y": E(reader_train.name, "y"), "X_valid": E(reader_inference.name, "X"), "y_valid": E(reader_inference.name, "y"), } ), experiment_directory=config.execution.experiment_dir, ) return loader def preprocessing_inference(config, model_name="unet", suffix=""): if config.general.loader_mode == "resize_and_pad": Loader = loaders.ImageSegmentationLoaderResizePad loader_config = config.loaders.resize_and_pad elif config.general.loader_mode == "resize": Loader = loaders.ImageSegmentationLoaderResize loader_config = config.loaders.resize else: raise NotImplementedError if loader_config.dataset_params.image_source == "memory": reader_inference = Step( name="reader_inference{}".format(suffix), transformer=loaders.ImageReader( train_mode=False, **config.reader[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) elif loader_config.dataset_params.image_source == "disk": reader_inference = Step( name="xy_inference{}".format(suffix), transformer=loaders.XYSplit( train_mode=False, **config.xy_splitter[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) else: raise NotImplementedError loader = Step( name="loader{}".format(suffix), transformer=Loader(train_mode=False, **loader_config), input_steps=[reader_inference], adapter=Adapter( {"X": E(reader_inference.name, "X"), "y": E(reader_inference.name, "y")} ), experiment_directory=config.execution.experiment_dir, cache_output=True, ) return loader def preprocessing_inference_tta(config, model_name="unet", suffix=""): if config.general.loader_mode == "resize_and_pad": Loader = loaders.ImageSegmentationLoaderResizePad loader_config = config.loaders.resize_and_pad elif config.general.loader_mode == "resize": Loader = loaders.ImageSegmentationLoaderResize loader_config = config.loaders.resize else: raise NotImplementedError if loader_config.dataset_params.image_source == "memory": reader_inference = Step( name="reader_inference{}".format(suffix), transformer=loaders.ImageReader( train_mode=False, **config.reader[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) tta_generator = Step( name="tta_generator{}".format(suffix), transformer=loaders.TestTimeAugmentationGenerator(**config.tta_generator), input_steps=[reader_inference], adapter=Adapter({"X": E("reader_inference", "X")}), experiment_directory=config.execution.experiment_dir, ) elif loader_config.dataset_params.image_source == "disk": reader_inference = Step( name="reader_inference{}".format(suffix), transformer=loaders.XYSplit( train_mode=False, **config.xy_splitter[model_name] ), input_data=["input"], adapter=Adapter({"meta": E("input", "meta")}), experiment_directory=config.execution.experiment_dir, ) tta_generator = Step( name="tta_generator{}".format(suffix), transformer=loaders.MetaTestTimeAugmentationGenerator( **config.tta_generator ), input_steps=[reader_inference], adapter=Adapter({"X": E("reader_inference", "X")}), experiment_directory=config.execution.experiment_dir, ) else: raise NotImplementedError loader = Step( name="loader{}".format(suffix), transformer=Loader(**loader_config), input_steps=[tta_generator], adapter=Adapter( { "X": E(tta_generator.name, "X_tta"), "tta_params": E(tta_generator.name, "tta_params"), } ), experiment_directory=config.execution.experiment_dir, cache_output=True, ) return loader, tta_generator def aggregator(name, model, tta_generator, experiment_directory, config): tta_aggregator = Step( name=name, transformer=loaders.TestTimeAugmentationAggregator(**config), input_steps=[model, tta_generator], adapter=Adapter( { "images": E(model.name, "mask_prediction"), "tta_params": E(tta_generator.name, "tta_params"), "img_ids": E(tta_generator.name, "img_ids"), } ), experiment_directory=experiment_directory, ) return tta_aggregator def mask_postprocessing(config, suffix=""): binarizer = Step( name="binarizer{}".format(suffix), transformer=make_apply_transformer( partial(binarize, threshold=config.thresholder.threshold_masks), output_name="binarized_images", apply_on=["images"], ), input_data=["input_masks"], adapter=Adapter({"images": E("input_masks", "resized_images")}), experiment_directory=config.execution.experiment_dir, ) return binarizer ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/pnasnet.py ================================================ from collections import OrderedDict # link to the github repository https://github.com/Cadene/pretrained-models.pytorch/blob/master/pretrainedmodels/models/pnasnet.py import torch import torch.nn as nn import torch.utils.model_zoo as model_zoo pretrained_settings = { "pnasnet5large": { "imagenet": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/pnasnet5large-bf079911.pth", "input_space": "RGB", "input_size": [3, 331, 331], "input_range": [0, 1], "mean": [0.5, 0.5, 0.5], "std": [0.5, 0.5, 0.5], "num_classes": 1000, }, "imagenet+background": { "url": "http://data.lip6.fr/cadene/pretrainedmodels/pnasnet5large-bf079911.pth", "input_space": "RGB", "input_size": [3, 331, 331], "input_range": [0, 1], "mean": [0.5, 0.5, 0.5], "std": [0.5, 0.5, 0.5], "num_classes": 1001, }, } } class MaxPool(nn.Module): def __init__(self, kernel_size, stride=1, padding=1, zero_pad=False): super(MaxPool, self).__init__() self.zero_pad = nn.ZeroPad2d((1, 0, 1, 0)) if zero_pad else None self.pool = nn.MaxPool2d(kernel_size, stride=stride, padding=padding) def forward(self, x): if self.zero_pad: x = self.zero_pad(x) x = self.pool(x) if self.zero_pad: x = x[:, :, 1:, 1:] return x class SeparableConv2d(nn.Module): def __init__( self, in_channels, out_channels, dw_kernel_size, dw_stride, dw_padding ): super(SeparableConv2d, self).__init__() self.depthwise_conv2d = nn.Conv2d( in_channels, in_channels, kernel_size=dw_kernel_size, stride=dw_stride, padding=dw_padding, groups=in_channels, bias=False, ) self.pointwise_conv2d = nn.Conv2d( in_channels, out_channels, kernel_size=1, bias=False ) def forward(self, x): x = self.depthwise_conv2d(x) x = self.pointwise_conv2d(x) return x class BranchSeparables(nn.Module): def __init__( self, in_channels, out_channels, kernel_size, stride=1, stem_cell=False, zero_pad=False, ): super(BranchSeparables, self).__init__() padding = kernel_size // 2 middle_channels = out_channels if stem_cell else in_channels self.zero_pad = nn.ZeroPad2d((1, 0, 1, 0)) if zero_pad else None self.relu_1 = nn.ReLU() self.separable_1 = SeparableConv2d( in_channels, middle_channels, kernel_size, dw_stride=stride, dw_padding=padding, ) self.bn_sep_1 = nn.BatchNorm2d(middle_channels, eps=0.001) self.relu_2 = nn.ReLU() self.separable_2 = SeparableConv2d( middle_channels, out_channels, kernel_size, dw_stride=1, dw_padding=padding ) self.bn_sep_2 = nn.BatchNorm2d(out_channels, eps=0.001) def forward(self, x): x = self.relu_1(x) if self.zero_pad: x = self.zero_pad(x) x = self.separable_1(x) if self.zero_pad: x = x[:, :, 1:, 1:].contiguous() x = self.bn_sep_1(x) x = self.relu_2(x) x = self.separable_2(x) x = self.bn_sep_2(x) return x class ReluConvBn(nn.Module): def __init__(self, in_channels, out_channels, kernel_size, stride=1): super(ReluConvBn, self).__init__() self.relu = nn.ReLU() self.conv = nn.Conv2d( in_channels, out_channels, kernel_size=kernel_size, stride=stride, bias=False, ) self.bn = nn.BatchNorm2d(out_channels, eps=0.001) def forward(self, x): x = self.relu(x) x = self.conv(x) x = self.bn(x) return x class FactorizedReduction(nn.Module): def __init__(self, in_channels, out_channels): super(FactorizedReduction, self).__init__() self.relu = nn.ReLU() self.path_1 = nn.Sequential( OrderedDict( [ ("avgpool", nn.AvgPool2d(1, stride=2, count_include_pad=False)), ( "conv", nn.Conv2d( in_channels, out_channels // 2, kernel_size=1, bias=False ), ), ] ) ) self.path_2 = nn.Sequential( OrderedDict( [ ("pad", nn.ZeroPad2d((0, 1, 0, 1))), ("avgpool", nn.AvgPool2d(1, stride=2, count_include_pad=False)), ( "conv", nn.Conv2d( in_channels, out_channels // 2, kernel_size=1, bias=False ), ), ] ) ) self.final_path_bn = nn.BatchNorm2d(out_channels, eps=0.001) def forward(self, x): x = self.relu(x) x_path1 = self.path_1(x) x_path2 = self.path_2.pad(x) x_path2 = x_path2[:, :, 1:, 1:] x_path2 = self.path_2.avgpool(x_path2) x_path2 = self.path_2.conv(x_path2) out = self.final_path_bn(torch.cat([x_path1, x_path2], 1)) return out class CellBase(nn.Module): def cell_forward(self, x_left, x_right): x_comb_iter_0_left = self.comb_iter_0_left(x_left) x_comb_iter_0_right = self.comb_iter_0_right(x_left) x_comb_iter_0 = x_comb_iter_0_left + x_comb_iter_0_right x_comb_iter_1_left = self.comb_iter_1_left(x_right) x_comb_iter_1_right = self.comb_iter_1_right(x_right) x_comb_iter_1 = x_comb_iter_1_left + x_comb_iter_1_right x_comb_iter_2_left = self.comb_iter_2_left(x_right) x_comb_iter_2_right = self.comb_iter_2_right(x_right) x_comb_iter_2 = x_comb_iter_2_left + x_comb_iter_2_right x_comb_iter_3_left = self.comb_iter_3_left(x_comb_iter_2) x_comb_iter_3_right = self.comb_iter_3_right(x_right) x_comb_iter_3 = x_comb_iter_3_left + x_comb_iter_3_right x_comb_iter_4_left = self.comb_iter_4_left(x_left) if self.comb_iter_4_right: x_comb_iter_4_right = self.comb_iter_4_right(x_right) else: x_comb_iter_4_right = x_right x_comb_iter_4 = x_comb_iter_4_left + x_comb_iter_4_right x_out = torch.cat( [x_comb_iter_0, x_comb_iter_1, x_comb_iter_2, x_comb_iter_3, x_comb_iter_4], 1, ) return x_out class CellStem0(CellBase): def __init__( self, in_channels_left, out_channels_left, in_channels_right, out_channels_right ): super(CellStem0, self).__init__() self.conv_1x1 = ReluConvBn(in_channels_right, out_channels_right, kernel_size=1) self.comb_iter_0_left = BranchSeparables( in_channels_left, out_channels_left, kernel_size=5, stride=2, stem_cell=True ) self.comb_iter_0_right = nn.Sequential( OrderedDict( [ ("max_pool", MaxPool(3, stride=2)), ( "conv", nn.Conv2d( in_channels_left, out_channels_left, kernel_size=1, bias=False, ), ), ("bn", nn.BatchNorm2d(out_channels_left, eps=0.001)), ] ) ) self.comb_iter_1_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=7, stride=2 ) self.comb_iter_1_right = MaxPool(3, stride=2) self.comb_iter_2_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=5, stride=2 ) self.comb_iter_2_right = BranchSeparables( out_channels_right, out_channels_right, kernel_size=3, stride=2 ) self.comb_iter_3_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=3 ) self.comb_iter_3_right = MaxPool(3, stride=2) self.comb_iter_4_left = BranchSeparables( in_channels_right, out_channels_right, kernel_size=3, stride=2, stem_cell=True, ) self.comb_iter_4_right = ReluConvBn( out_channels_right, out_channels_right, kernel_size=1, stride=2 ) def forward(self, x_left): x_right = self.conv_1x1(x_left) x_out = self.cell_forward(x_left, x_right) return x_out class Cell(CellBase): def __init__( self, in_channels_left, out_channels_left, in_channels_right, out_channels_right, is_reduction=False, zero_pad=False, match_prev_layer_dimensions=False, ): super(Cell, self).__init__() # If `is_reduction` is set to `True` stride 2 is used for # convolutional and pooling layers to reduce the spatial size of # the output of a cell approximately by a factor of 2. stride = 2 if is_reduction else 1 # If `match_prev_layer_dimensions` is set to `True` # `FactorizedReduction` is used to reduce the spatial size # of the left input of a cell approximately by a factor of 2. self.match_prev_layer_dimensions = match_prev_layer_dimensions if match_prev_layer_dimensions: self.conv_prev_1x1 = FactorizedReduction( in_channels_left, out_channels_left ) else: self.conv_prev_1x1 = ReluConvBn( in_channels_left, out_channels_left, kernel_size=1 ) self.conv_1x1 = ReluConvBn(in_channels_right, out_channels_right, kernel_size=1) self.comb_iter_0_left = BranchSeparables( out_channels_left, out_channels_left, kernel_size=5, stride=stride, zero_pad=zero_pad, ) self.comb_iter_0_right = MaxPool(3, stride=stride, zero_pad=zero_pad) self.comb_iter_1_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=7, stride=stride, zero_pad=zero_pad, ) self.comb_iter_1_right = MaxPool(3, stride=stride, zero_pad=zero_pad) self.comb_iter_2_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=5, stride=stride, zero_pad=zero_pad, ) self.comb_iter_2_right = BranchSeparables( out_channels_right, out_channels_right, kernel_size=3, stride=stride, zero_pad=zero_pad, ) self.comb_iter_3_left = BranchSeparables( out_channels_right, out_channels_right, kernel_size=3 ) self.comb_iter_3_right = MaxPool(3, stride=stride, zero_pad=zero_pad) self.comb_iter_4_left = BranchSeparables( out_channels_left, out_channels_left, kernel_size=3, stride=stride, zero_pad=zero_pad, ) if is_reduction: self.comb_iter_4_right = ReluConvBn( out_channels_right, out_channels_right, kernel_size=1, stride=stride ) else: self.comb_iter_4_right = None def forward(self, x_left, x_right): x_left = self.conv_prev_1x1(x_left) x_right = self.conv_1x1(x_right) x_out = self.cell_forward(x_left, x_right) return x_out class PNASNet5Large(nn.Module): def __init__(self, num_classes=1001): super().__init__() self.num_classes = num_classes self.conv_0 = nn.Sequential( OrderedDict( [ ("conv", nn.Conv2d(3, 96, kernel_size=3, stride=2, bias=False)), ("bn", nn.BatchNorm2d(96, eps=0.001)), ] ) ) self.cell_stem_0 = CellStem0( in_channels_left=96, out_channels_left=54, in_channels_right=96, out_channels_right=54, ) self.cell_stem_1 = Cell( in_channels_left=96, out_channels_left=108, in_channels_right=270, out_channels_right=108, match_prev_layer_dimensions=True, is_reduction=True, ) self.cell_0 = Cell( in_channels_left=270, out_channels_left=216, in_channels_right=540, out_channels_right=216, match_prev_layer_dimensions=True, ) self.cell_1 = Cell( in_channels_left=540, out_channels_left=216, in_channels_right=1080, out_channels_right=216, ) self.cell_2 = Cell( in_channels_left=1080, out_channels_left=216, in_channels_right=1080, out_channels_right=216, ) self.cell_3 = Cell( in_channels_left=1080, out_channels_left=216, in_channels_right=1080, out_channels_right=216, ) self.cell_4 = Cell( in_channels_left=1080, out_channels_left=432, in_channels_right=1080, out_channels_right=432, is_reduction=True, zero_pad=True, ) self.cell_5 = Cell( in_channels_left=1080, out_channels_left=432, in_channels_right=2160, out_channels_right=432, match_prev_layer_dimensions=True, ) self.cell_6 = Cell( in_channels_left=2160, out_channels_left=432, in_channels_right=2160, out_channels_right=432, ) self.cell_7 = Cell( in_channels_left=2160, out_channels_left=432, in_channels_right=2160, out_channels_right=432, ) self.cell_8 = Cell( in_channels_left=2160, out_channels_left=864, in_channels_right=2160, out_channels_right=864, is_reduction=True, ) self.cell_9 = Cell( in_channels_left=2160, out_channels_left=864, in_channels_right=4320, out_channels_right=864, match_prev_layer_dimensions=True, ) self.cell_10 = Cell( in_channels_left=4320, out_channels_left=864, in_channels_right=4320, out_channels_right=864, ) self.cell_11 = Cell( in_channels_left=4320, out_channels_left=864, in_channels_right=4320, out_channels_right=864, ) self.relu = nn.ReLU() self.avg_pool = nn.AvgPool2d(11, stride=1, padding=0) self.dropout = nn.Dropout(0.5) self.last_linear = nn.Linear(4320, num_classes) def features(self, x): x_conv_0 = self.conv_0(x) x_stem_0 = self.cell_stem_0(x_conv_0) x_stem_1 = self.cell_stem_1(x_conv_0, x_stem_0) x_cell_0 = self.cell_0(x_stem_0, x_stem_1) x_cell_1 = self.cell_1(x_stem_1, x_cell_0) x_cell_2 = self.cell_2(x_cell_0, x_cell_1) x_cell_3 = self.cell_3(x_cell_1, x_cell_2) x_cell_4 = self.cell_4(x_cell_2, x_cell_3) x_cell_5 = self.cell_5(x_cell_3, x_cell_4) x_cell_6 = self.cell_6(x_cell_4, x_cell_5) x_cell_7 = self.cell_7(x_cell_5, x_cell_6) x_cell_8 = self.cell_8(x_cell_6, x_cell_7) x_cell_9 = self.cell_9(x_cell_7, x_cell_8) x_cell_10 = self.cell_10(x_cell_8, x_cell_9) x_cell_11 = self.cell_11(x_cell_9, x_cell_10) return x_cell_11 def logits(self, features): x = self.relu(features) x = self.avg_pool(x) x = x.view(x.size(0), -1) x = self.dropout(x) x = self.last_linear(x) return x def forward(self, input): x = self.features(input) x = self.logits(x) return x def pnasnet5large(num_classes=1001, pretrained="imagenet"): r"""PNASNet-5 model architecture from the `"Progressive Neural Architecture Search" `_ paper. """ if pretrained: settings = pretrained_settings["pnasnet5large"][pretrained] assert ( num_classes == settings["num_classes"] ), "num_classes should be {}, but is {}".format( settings["num_classes"], num_classes ) # both 'imagenet'&'imagenet+background' are loaded from same parameters model = PNASNet5Large(num_classes=1001) model.load_state_dict(model_zoo.load_url(settings["url"])) if pretrained == "imagenet": new_last_linear = nn.Linear(model.last_linear.in_features, 1000) new_last_linear.weight.data = model.last_linear.weight.data[1:] new_last_linear.bias.data = model.last_linear.bias.data[1:] model.last_linear = new_last_linear model.input_space = settings["input_space"] model.input_size = settings["input_size"] model.input_range = settings["input_range"] model.mean = settings["mean"] model.std = settings["std"] else: model = PNASNet5Large(num_classes=num_classes) return model ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/postprocessing.py ================================================ import numpy as np from scipy import ndimage as ndi from skimage.transform import resize from .utils import get_crop_pad_sequence def resize_image(image, target_size): """Resize image to target size Args: image (numpy.ndarray): Image of shape (C x H x W). target_size (tuple): Target size (H, W). Returns: numpy.ndarray: Resized image of shape (C x H x W). """ n_channels = image.shape[0] resized_image = resize( image, (n_channels, target_size[0], target_size[1]), mode="constant" ) return resized_image def crop_image(image, target_size): """Crop image to target size. Image cropped symmetrically. Args: image (numpy.ndarray): Image of shape (C x H x W). target_size (tuple): Target size (H, W). Returns: numpy.ndarray: Cropped image of shape (C x H x W). """ top_crop, right_crop, bottom_crop, left_crop = get_crop_pad_sequence( image.shape[1] - target_size[0], image.shape[2] - target_size[1] ) cropped_image = image[ :, top_crop : image.shape[1] - bottom_crop, left_crop : image.shape[2] - right_crop, ] return cropped_image def binarize(image, threshold): image_binarized = (image[1, :, :] > threshold).astype(np.uint8) return image_binarized ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/preprocessing.py ================================================ import numpy as np def img_cumsum(img): return (np.float32(img) - img.mean()).cumsum(axis=0) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/resnext.py ================================================ """ New for ResNeXt: 1. Wider bottleneck 2. Add group for conv2 """ import torch.nn as nn import math __all__ = ["ResNeXt", "resnext18", "resnext34", "resnext50", "resnext101", "resnext152"] def conv3x3(in_planes, out_planes, stride=1): """3x3 convolution with padding""" return nn.Conv2d( in_planes, out_planes, kernel_size=3, stride=stride, padding=1, bias=False ) class BasicBlock(nn.Module): expansion = 1 def __init__(self, inplanes, planes, stride=1, downsample=None, num_group=32): super(BasicBlock, self).__init__() self.conv1 = conv3x3(inplanes, planes * 2, stride) self.bn1 = nn.BatchNorm2d(planes * 2) self.relu = nn.ReLU(inplace=True) self.conv2 = conv3x3(planes * 2, planes * 2, groups=num_group) self.bn2 = nn.BatchNorm2d(planes * 2) self.downsample = downsample self.stride = stride def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) if self.downsample is not None: residual = self.downsample(x) out += residual out = self.relu(out) return out class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1, downsample=None, num_group=32): super(Bottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes * 2, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes * 2) self.conv2 = nn.Conv2d( planes * 2, planes * 2, kernel_size=3, stride=stride, padding=1, bias=False, groups=num_group, ) self.bn2 = nn.BatchNorm2d(planes * 2) self.conv3 = nn.Conv2d(planes * 2, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample self.stride = stride def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) out += residual out = self.relu(out) return out class ResNeXt(nn.Module): def __init__(self, block, layers, num_classes=1000, num_group=32): self.inplanes = 64 super(ResNeXt, self).__init__() self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3, bias=False) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.layer1 = self._make_layer(block, 64, layers[0], num_group) self.layer2 = self._make_layer(block, 128, layers[1], num_group, stride=2) self.layer3 = self._make_layer(block, 256, layers[2], num_group, stride=2) self.layer4 = self._make_layer(block, 512, layers[3], num_group, stride=2) self.avgpool = nn.AvgPool2d(7, stride=1) self.fc = nn.Linear(512 * block.expansion, num_classes) for m in self.modules(): if isinstance(m, nn.Conv2d): n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels m.weight.data.normal_(0, math.sqrt(2.0 / n)) elif isinstance(m, nn.BatchNorm2d): m.weight.data.fill_(1) m.bias.data.zero_() def _make_layer(self, block, planes, blocks, num_group, stride=1): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d( self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False, ), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append( block(self.inplanes, planes, stride, downsample, num_group=num_group) ) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes, num_group=num_group)) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) x = self.maxpool(x) x = self.layer1(x) x = self.layer2(x) x = self.layer3(x) x = self.layer4(x) x = self.avgpool(x) x = x.view(x.size(0), -1) x = self.fc(x) return x def resnext18(**kwargs): """Constructs a ResNeXt-18 model. """ model = ResNeXt(BasicBlock, [2, 2, 2, 2], **kwargs) return model def resnext34(**kwargs): """Constructs a ResNeXt-34 model. """ model = ResNeXt(BasicBlock, [3, 4, 6, 3], **kwargs) return model def resnext50(**kwargs): """Constructs a ResNeXt-50 model. """ model = ResNeXt(Bottleneck, [3, 4, 6, 3], **kwargs) return model def resnext101(**kwargs): """Constructs a ResNeXt-101 model. """ model = ResNeXt(Bottleneck, [3, 4, 23, 3], **kwargs) return model def resnext152(**kwargs): """Constructs a ResNeXt-152 model. """ model = ResNeXt(Bottleneck, [3, 8, 36, 3], **kwargs) return model ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/unet_models.py ================================================ from torch import nn # from torch.nn import functional as F import torch from torchvision import models import torchvision from collections import OrderedDict import torch.nn.parallel import torch.optim import torch.utils.data import torch.utils.data.distributed import torch.utils.model_zoo as model_zoo from .pnasnet import PNASNet5Large import pretrainedmodels import torch.nn.functional as F # from modules.wider_resnet import WiderResNet from .resnext import * """ This script has been taken (and modified) from : https://github.com/ternaus/TernausNet @ARTICLE{arXiv:1801.05746, author = {V. Iglovikov and A. Shvets}, title = {TernausNet: U-Net with VGG11 Encoder Pre-Trained on ImageNet for Image Segmentation}, journal = {ArXiv e-prints}, eprint = {1801.05746}, year = 2018 } """ def conv3x3(in_, out): return nn.Conv2d(in_, out, 3, padding=1) class ConvRelu(nn.Module): def __init__(self, in_, out): super().__init__() self.conv = conv3x3(in_, out) self.activation = nn.ReLU(inplace=True) def forward(self, x): x = self.conv(x) x = self.activation(x) return x class NoOperation(nn.Module): def forward(self, x): return x class DecoderBlock_old(nn.Module): def __init__(self, in_channels, middle_channels, out_channels): super().__init__() self.block = nn.Sequential( ConvRelu(in_channels, middle_channels), nn.ConvTranspose2d( middle_channels, out_channels, kernel_size=3, stride=2, padding=1, output_padding=1, ), nn.BatchNorm2d(out_channels), ##me added nn.ReLU(inplace=True), ) def forward(self, x): return self.block(x) class DecoderBlock(nn.Module): def __init__(self, in_channels, middle_channels, out_channels): super(DecoderBlock, self).__init__() self.conv1 = ConvBn2d(in_channels, middle_channels) self.conv2 = ConvBn2d(middle_channels, out_channels) # self.deconv = nn.ConvTranspose2d(middle_channels, out_channels, kernel_size=4, stride=2, padding=1) # self.bn = nn.BatchNorm2d(out_channels) self.spatial_gate = SpatialAttentionGate(out_channels) self.channel_gate = ChannelAttentionGate(out_channels) def forward(self, x, e=None): x = F.upsample(x, scale_factor=2, mode="bilinear") if e is not None: x = torch.cat([x, e], 1) x = F.relu(self.conv1(x), inplace=True) x = F.relu(self.conv2(x), inplace=True) g1 = self.spatial_gate(x) g2 = self.channel_gate(x) x = x * g1 + x * g2 return x class UNet11(nn.Module): def __init__(self, num_classes=1, num_filters=32, pretrained=False): """ :param num_classes: :param num_filters: :param pretrained: False - no pre-trained network is used True - encoder is pre-trained with VGG11 """ super().__init__() self.pool = nn.MaxPool2d(2, 2) self.encoder = models.vgg11(pretrained=pretrained).features self.relu = self.encoder[1] self.conv1 = self.encoder[0] self.conv2 = self.encoder[3] self.conv3s = self.encoder[6] self.conv3 = self.encoder[8] self.conv4s = self.encoder[11] self.conv4 = self.encoder[13] self.conv5s = self.encoder[16] self.conv5 = self.encoder[18] self.center = DecoderBlock( num_filters * 8 * 2, num_filters * 8 * 2, num_filters * 8 ) self.dec5 = DecoderBlock( num_filters * (16 + 8), num_filters * 8 * 2, num_filters * 8 ) self.dec4 = DecoderBlock( num_filters * (16 + 8), num_filters * 8 * 2, num_filters * 4 ) self.dec3 = DecoderBlock( num_filters * (8 + 4), num_filters * 4 * 2, num_filters * 2 ) self.dec2 = DecoderBlock( num_filters * (4 + 2), num_filters * 2 * 2, num_filters ) self.dec1 = ConvRelu(num_filters * (2 + 1), num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.relu(self.conv1(x)) conv2 = self.relu(self.conv2(self.pool(conv1))) conv3s = self.relu(self.conv3s(self.pool(conv2))) conv3 = self.relu(self.conv3(conv3s)) conv4s = self.relu(self.conv4s(self.pool(conv3))) conv4 = self.relu(self.conv4(conv4s)) conv5s = self.relu(self.conv5s(self.pool(conv4))) conv5 = self.relu(self.conv5(conv5s)) center = self.center(self.pool(conv5)) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(torch.cat([dec2, conv1], 1)) return self.final(dec1) def unet11(pretrained=False, **kwargs): """ pretrained: False - no pre-trained network is used True - encoder is pre-trained with VGG11 carvana - all weights are pre-trained on Kaggle: Carvana dataset https://www.kaggle.com/c/carvana-image-masking-challenge """ model = UNet11(pretrained=pretrained, **kwargs) if pretrained == "carvana": state = torch.load("TernausNet.pt") model.load_state_dict(state["model"]) return model class DecoderBlockV2(nn.Module): def __init__(self, in_channels, middle_channels, out_channels, is_deconv=True): super(DecoderBlockV2, self).__init__() self.in_channels = in_channels if is_deconv: """ Paramaters for Deconvolution were chosen to avoid artifacts, following link https://distill.pub/2016/deconv-checkerboard/ """ self.block = nn.Sequential( ConvRelu(in_channels, middle_channels), nn.ConvTranspose2d( middle_channels, out_channels, kernel_size=4, stride=2, padding=1 ), # nn.BatchNorm2d(out_channels), ##me added nn.ReLU(inplace=True), ) else: self.block = nn.Sequential( nn.Upsample(scale_factor=2, mode="bilinear"), ConvRelu(in_channels, middle_channels), ConvRelu(middle_channels, out_channels), ) def forward(self, x): return self.block(x) class DecoderCenter(nn.Module): def __init__(self, in_channels, middle_channels, out_channels, is_deconv=True): super(DecoderCenter, self).__init__() self.in_channels = in_channels if is_deconv: """ Paramaters for Deconvolution were chosen to avoid artifacts, following link https://distill.pub/2016/deconv-checkerboard/ """ self.block = nn.Sequential( ConvRelu(in_channels, middle_channels), nn.ConvTranspose2d( middle_channels, out_channels, kernel_size=4, stride=2, padding=1 ), nn.BatchNorm2d(out_channels), ##me added nn.ReLU(inplace=True), ) else: self.block = nn.Sequential( ConvRelu(in_channels, middle_channels), ConvRelu(middle_channels, out_channels), # nn.BatchNorm2d(out_channels), ##me added # nn.ReLU(inplace=True) ##me added ) def forward(self, x): return self.block(x) class AlbuNet(nn.Module): """ UNet (https://arxiv.org/abs/1505.04597) with Resnet34(https://arxiv.org/abs/1512.03385) encoder Proposed by Alexander Buslaev: https://www.linkedin.com/in/al-buslaev/ """ def __init__( self, num_classes=1, num_filters=32, pretrained=False, is_deconv=False ): """ :param num_classes: :param num_filters: :param pretrained: False - no pre-trained network is used True - encoder is pre-trained with resnet34 :is_deconv: False: bilinear interpolation is used in decoder True: deconvolution is used in decoder """ super().__init__() self.num_classes = num_classes self.pool = nn.MaxPool2d(2, 2) self.encoder = torchvision.models.resnet34(pretrained=pretrained) self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu, self.pool ) self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center = DecoderBlockV2( 512, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec5 = DecoderBlockV2( 512 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec4 = DecoderBlockV2( 256 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec3 = DecoderBlockV2( 128 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv ) self.dec2 = DecoderBlockV2( 64 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv ) self.dec1 = DecoderBlockV2( num_filters * 2 * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec0 = ConvRelu(num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.conv1(x) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) conv4 = self.conv4(conv3) conv5 = self.conv5(conv4) center = self.center(self.pool(conv5)) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(dec2) dec0 = self.dec0(dec1) return self.final(dec0) class UNetVGG16(nn.Module): def __init__( self, num_classes=1, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.pool = nn.MaxPool2d(2, 2) self.encoder = torchvision.models.vgg16(pretrained=pretrained).features self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder[0], self.relu, self.encoder[2], self.relu ) self.conv2 = nn.Sequential( self.encoder[5], self.relu, self.encoder[7], self.relu ) self.conv3 = nn.Sequential( self.encoder[10], self.relu, self.encoder[12], self.relu, self.encoder[14], self.relu, ) self.conv4 = nn.Sequential( self.encoder[17], self.relu, self.encoder[19], self.relu, self.encoder[21], self.relu, ) self.conv5 = nn.Sequential( self.encoder[24], self.relu, self.encoder[26], self.relu, self.encoder[28], self.relu, ) self.center = DecoderBlockV2( 512, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec5 = DecoderBlockV2( 512 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec4 = DecoderBlockV2( 512 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec3 = DecoderBlockV2( 256 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv ) self.dec2 = DecoderBlockV2( 128 + num_filters * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec1 = ConvRelu(64 + num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.conv1(x) conv2 = self.conv2(self.pool(conv1)) conv3 = self.conv3(self.pool(conv2)) conv4 = self.conv4(self.pool(conv3)) conv5 = self.conv5(self.pool(conv4)) center = self.center(self.pool(conv5)) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(torch.cat([dec2, conv1], 1)) return self.final(F.dropout2d(dec1, p=self.dropout_2d)) class UNetResNet(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d if encoder_depth == 34: self.encoder = torchvision.models.resnet34(pretrained=pretrained) bottom_channel_nr = 512 elif encoder_depth == 101: self.encoder = torchvision.models.resnet101(pretrained=pretrained) bottom_channel_nr = 2048 elif encoder_depth == 152: self.encoder = torchvision.models.resnet152(pretrained=pretrained) bottom_channel_nr = 2048 else: raise NotImplementedError( "only 34, 101, 152 version of Resnet are implemented" ) self.pool = nn.MaxPool2d(2, 2) self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu, self.pool ) self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center = DecoderCenter( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, False ) self.dec5 = DecoderBlockV2( bottom_channel_nr + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec4 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.dec1 = DecoderBlockV2( num_filters * 2 * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec0 = ConvRelu(num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.conv1(x) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) conv4 = self.conv4(conv3) conv5 = self.conv5(conv4) # pool = self.pool(conv5) # deleted pooling # center = self.center(pool) center = self.center(conv5) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(dec2) dec0 = self.dec0(dec1) return self.final(F.dropout2d(dec0, p=self.dropout_2d)) class UNetResNet_wo_pool(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d if encoder_depth == 34: self.encoder = torchvision.models.resnet34(pretrained=pretrained) bottom_channel_nr = 512 elif encoder_depth == 101: self.encoder = torchvision.models.resnet101(pretrained=pretrained) bottom_channel_nr = 2048 elif encoder_depth == 152: self.encoder = torchvision.models.resnet152(pretrained=pretrained) bottom_channel_nr = 2048 else: raise NotImplementedError( "only 34, 101, 152 version of Resnet are implemented" ) self.pool = nn.MaxPool2d(2, 2) self.relu = nn.ReLU(inplace=True) self.input_adjust = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu ) self.conv1 = self.encoder.layer1 self.conv2 = self.encoder.layer2 self.conv3 = self.encoder.layer3 self.conv4 = self.encoder.layer4 self.dec4 = DecoderBlockV2( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec1 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.final = nn.Conv2d(num_filters * 2 * 2, num_classes, kernel_size=1) def forward(self, x): input_adjust = self.input_adjust(x) conv1 = self.conv1(input_adjust) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) center = self.conv4(conv3) dec4 = self.dec4(center) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = F.dropout2d(self.dec1(torch.cat([dec2, conv1], 1)), p=self.dropout_2d) # print('input_adjust ', input_adjust.shape, '\ncenter ' , center.shape, '\ndec1: ', dec1.shape) return self.final(dec1) class UNetResNext_wo_pool(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.encoder = ( pretrainedmodels.se_resnext50_32x4d() ) # torchvision.models.resnet152(pretrained=pretrained) self.pool = nn.MaxPool2d(2, 2) bottom_channel_nr = 512 * 4 self.input_adjust = nn.Sequential( self.encoder.layer0.conv1, self.encoder.layer0.bn1, self.encoder.layer0.relu1, ) self.conv1 = self.encoder.layer1 self.conv2 = self.encoder.layer2 self.conv3 = self.encoder.layer3 self.conv4 = self.encoder.layer4 self.dec4 = DecoderBlockV2( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec1 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.final = nn.Conv2d(num_filters * 2 * 2, num_classes, kernel_size=1) def forward(self, x): input_adjust = self.input_adjust(x) conv1 = self.conv1(input_adjust) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) center = self.conv4(conv3) dec4 = self.dec4(center) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = F.dropout2d(self.dec1(torch.cat([dec2, conv1], 1)), p=self.dropout_2d) print( "input_adjust ", input_adjust.shape, "\ncenter ", center.shape, "\ndec1: ", dec1.shape, self.final(dec1).shape, ) return self.final(dec1) class UNetResNetAttentionv2(nn.Module): def __init__( self, encoder_depth, num_classes=1, num_filters=32, dropout_2d=0.4, pretrained=True, is_deconv=True, ): super(UNetResNetAttention, self).__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.resnet = pretrainedmodels.se_resnext50_32x4d() bottom_channel_nr = 2048 self.encoder1 = EncoderBlock( nn.Sequential( self.resnet.layer0.conv1, self.resnet.layer0.bn1, self.resnet.layer0.relu1, ), num_filters * 2, ) self.encoder2 = EncoderBlock(self.resnet.layer1, bottom_channel_nr // 8) self.encoder3 = EncoderBlock(self.resnet.layer2, bottom_channel_nr // 4) self.encoder4 = EncoderBlock(self.resnet.layer3, bottom_channel_nr // 2) self.encoder5 = EncoderBlock(self.resnet.layer4, bottom_channel_nr) center_block = nn.Sequential( ConvBn2d(bottom_channel_nr, bottom_channel_nr, kernel_size=3, padding=1), nn.ReLU(inplace=True), ConvBn2d( bottom_channel_nr, bottom_channel_nr // 2, kernel_size=3, padding=1 ), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=2, stride=2), ) self.center = EncoderBlock(center_block, bottom_channel_nr // 2) self.decoder5 = DecoderBlock( bottom_channel_nr + bottom_channel_nr // 2, num_filters * 16, 64 ) self.decoder4 = DecoderBlock(64 + bottom_channel_nr // 2, num_filters * 8, 64) self.decoder3 = DecoderBlock(64 + bottom_channel_nr // 4, num_filters * 4, 64) self.decoder2 = DecoderBlock(64 + bottom_channel_nr // 8, num_filters * 2, 64) self.decoder1 = DecoderBlock(64, num_filters, 64) self.final = nn.Conv2d(64, 2, kernel_size=1) self.logit = nn.Sequential( nn.Conv2d(320, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 2, kernel_size=1, padding=0), ) def forward(self, x): x = self.encoder1(x) # ; print('x:', x.size()) e2 = self.encoder2(x) # ; print('e2:', e2.size()) e3 = self.encoder3(e2) # ; print('e3:', e3.size()) e4 = self.encoder4(e3) # ; print('e4:', e4.size()) e5 = self.encoder5(e4) # ; print('e5:', e5.size()) center = self.center(e5) # ; print('center:', center.size()) d5 = self.decoder5(center, e5) # ; print('d5:', d5.size()) d4 = self.decoder4(d5, e4) # ; print('d4:', d4.size()) d3 = self.decoder3(d4, e3) # ; print('d3:', d3.size()) d2 = self.decoder2(d3, e2) # ; print('d2:', d2.size()) d1 = self.decoder1(d2) # print('d1:', d1.size()) f = torch.cat( [ d1, F.upsample(d2, scale_factor=2, mode="bilinear"), F.upsample(d3, scale_factor=4, mode="bilinear"), F.upsample(d4, scale_factor=8, mode="bilinear"), F.upsample(d5, scale_factor=16, mode="bilinear"), ], dim=1, ) # f = F.dropout2d(f, p=self.dropout_2d) # print (self.logit(d1).shape) return self.logit(f) class UNetResNetAttention(nn.Module): def __init__( self, encoder_depth, num_classes=1, num_filters=32, dropout_2d=0.4, pretrained=True, is_deconv=True, ): super(UNetResNetAttention, self).__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.pool = nn.MaxPool2d(2, 2) self.resnet = pretrainedmodels.se_resnext50_32x4d() bottom_channel_nr = 2048 conv1 = nn.Conv2d( 3, 64, kernel_size=(7, 7), stride=(1, 1), padding=(3, 3), bias=False ) conv1.weight = self.resnet.layer0.conv1.weight """ self.encoder1 = nn.Sequential(conv1, self.resnet.layer0.bn1, self.resnet.layer0.relu1 ,self.pool ) """ self.encoder1 = EncoderBlock( nn.Sequential( conv1, self.resnet.layer0.bn1, self.resnet.layer0.relu1, self.pool ), num_filters * 2, ) self.encoder2 = EncoderBlock(self.resnet.layer1, bottom_channel_nr // 8) self.encoder3 = EncoderBlock(self.resnet.layer2, bottom_channel_nr // 4) self.encoder4 = EncoderBlock(self.resnet.layer3, bottom_channel_nr // 2) self.encoder5 = EncoderBlock(self.resnet.layer4, bottom_channel_nr) center_block = nn.Sequential( ConvBn2d(bottom_channel_nr, bottom_channel_nr, kernel_size=3, padding=1), nn.ReLU(inplace=True), ConvBn2d( bottom_channel_nr, bottom_channel_nr // 2, kernel_size=3, padding=1 ), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=2, stride=2), ) self.center = EncoderBlock(center_block, bottom_channel_nr // 2) self.decoder5 = DecoderBlock( bottom_channel_nr + bottom_channel_nr // 2, num_filters * 16, 64 ) self.decoder4 = DecoderBlock(64 + bottom_channel_nr // 2, num_filters * 8, 64) self.decoder3 = DecoderBlock(64 + bottom_channel_nr // 4, num_filters * 4, 64) self.decoder2 = DecoderBlock(64 + bottom_channel_nr // 8, num_filters * 2, 64) self.decoder1 = DecoderBlock(64, num_filters, 64) self.final = nn.Conv2d(64, 2, kernel_size=1) self.logit = nn.Sequential( nn.Conv2d(64, 64, kernel_size=3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 2, kernel_size=1, padding=0), ) def forward(self, x): x = self.encoder1(x) # ; print('x:', x.size()) e2 = self.encoder2(x) # ; print('e2:', e2.size()) e3 = self.encoder3(e2) # ; print('e3:', e3.size()) e4 = self.encoder4(e3) # ; print('e4:', e4.size()) e5 = self.encoder5(e4) # ; print('e5:', e5.size()) center = self.center(e5) # ; print('center:', center.size()) d5 = self.decoder5(center, e5) # ; print('d5:', d5.size()) d4 = self.decoder4(d5, e4) # ; print('d4:', d4.size()) d3 = self.decoder3(d4, e3) # ; print('d3:', d3.size()) d2 = self.decoder2(d3, e2) # ; print('d2:', d2.size()) d1 = self.decoder1(d2) # print('d1:', d1.size()) """ f = torch.cat([ d1, F.upsample(d2, scale_factor=2, mode='bilinear'), F.upsample(d3, scale_factor=4, mode='bilinear'), F.upsample(d4, scale_factor=8, mode='bilinear'), F.upsample(d5, scale_factor=16, mode='bilinear'), ], dim=1) """ # f = F.dropout2d(f, p=self.dropout_2d) # print (self.logit(d1).shape) return self.final(d1) class EncoderBlock(nn.Module): def __init__(self, block, out_channels): super(EncoderBlock, self).__init__() self.block = block self.out_channels = out_channels self.spatial_gate = SpatialAttentionGate(out_channels) self.channel_gate = ChannelAttentionGate(out_channels) def forward(self, x): x = self.block(x) g1 = self.spatial_gate(x) g2 = self.channel_gate(x) return x * g1 + x * g2 class ChannelAttentionGate(nn.Module): def __init__(self, channel, reduction=16): super(ChannelAttentionGate, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) self.fc = nn.Sequential( nn.Linear(channel, channel // reduction), nn.ReLU(inplace=True), nn.Linear(channel // reduction, channel), nn.Sigmoid(), ) def forward(self, x): b, c, _, _ = x.size() y = self.avg_pool(x).view(b, c) y = self.fc(y).view(b, c, 1, 1) return y def conv3x3(in_, out): return nn.Conv2d(in_, out, 3, padding=1) class ConvRelu(nn.Module): def __init__(self, in_, out): super().__init__() self.conv = conv3x3(in_, out) self.activation = nn.ReLU(inplace=True) def forward(self, x): x = self.conv(x) x = self.activation(x) return x class ConvBn2d(nn.Module): def __init__( self, in_channels, out_channels, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), ): super(ConvBn2d, self).__init__() self.conv = nn.Conv2d( in_channels, out_channels, kernel_size=kernel_size, stride=stride, padding=padding, bias=False, ) self.bn = nn.BatchNorm2d(out_channels) def forward(self, x): x = self.conv(x) x = self.bn(x) return x class SpatialAttentionGate(nn.Module): def __init__(self, channel, reduction=16): super(SpatialAttentionGate, self).__init__() self.fc1 = nn.Conv2d(channel, reduction, kernel_size=1, padding=0) self.fc2 = nn.Conv2d(reduction, 1, kernel_size=1, padding=0) def forward(self, x): x = self.fc1(x) x = F.relu(x, inplace=True) x = self.fc2(x) x = torch.sigmoid(x) # print(x.size()) return x class UNetResNext_wo_pool_hyper(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.encoder = ( pretrainedmodels.se_resnext50_32x4d() ) # torchvision.models.resnet152(pretrained=pretrained) self.pool = nn.MaxPool2d(2, 2) bottom_channel_nr = 512 * 4 self.input_adjust = nn.Sequential( self.encoder.layer0.conv1, self.encoder.layer0.bn1, self.encoder.layer0.relu1, ) self.conv1 = self.encoder.layer1 self.conv2 = self.encoder.layer2 self.conv3 = self.encoder.layer3 self.conv4 = self.encoder.layer4 self.dec4 = DecoderBlockV2( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, is_deconv ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec1 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.final = nn.Conv2d(num_filters * 2 * 2, num_classes, kernel_size=1) self._mask_out = nn.Sequential( nn.Conv2d(704, 64, kernel_size=3, stride=1, padding=1), nn.ReLU(inplace=True), nn.Conv2d(64, 2, kernel_size=1, stride=1, padding=0), ) def forward(self, x): input_adjust = self.input_adjust(x) conv1 = self.conv1(input_adjust) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) center = self.conv4(conv3) dec4 = self.dec4(center) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(torch.cat([dec2, conv1], 1)) hcol = torch.cat( [ dec1, F.upsample( dec2, scale_factor=2, mode="bilinear" ), # ,align_corners=False F.upsample( dec3, scale_factor=4, mode="bilinear" ), # ,align_corners=False F.upsample(dec4, scale_factor=8, mode="bilinear"), ], dim=1, ) # ,align_corners=False # hcol = F.dropout2d(hcol, p = 0.5) # print('input_adjust ', input_adjust.shape, '\ncenter ' , center.shape, '\ndec1: ', dec1.shape) # print('hcol ', hcol.shape, '\nout ', self._mask_out(hcol).shape) return self._mask_out(hcol) class UNetResNext50(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.encoder = ( pretrainedmodels.se_resnext50_32x4d() ) # torchvision.models.resnet152(pretrained=pretrained) bottom_channel_nr = 512 * 4 self.relu = nn.ReLU(inplace=True) self.pool = nn.MaxPool2d(2, 2) # self.input_adjust = nn.Sequential(self.encoder.layer0, self.pool) self.input_adjust = self.encoder.layer0 self.conv1 = self.encoder.layer1 self.conv2 = self.encoder.layer2 self.conv3 = self.encoder.layer3 self.conv4 = self.encoder.layer4 self.center = DecoderCenter( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, False ) self.dec5 = DecoderBlockV2( bottom_channel_nr + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec4 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.dec1 = DecoderBlockV2( num_filters * 2 * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec0 = ConvRelu(num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): input_adjust = self.input_adjust(x) conv1 = self.conv1(input_adjust) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) conv4 = self.conv4(conv3) center = self.center(conv4) dec5 = self.dec5(torch.cat([center, conv4], 1)) dec4 = self.dec4(torch.cat([dec5, conv3], 1)) dec3 = self.dec3(torch.cat([dec4, conv2], 1)) dec2 = self.dec2(torch.cat([dec3, conv1], 1)) dec1 = self.dec1(dec2) dec0 = self.dec0(dec1) # print('input_adjust ', input_adjust.shape, '\ncenter ' , center.shape, '\ndec1: ', dec1.shape, self.final(F.dropout2d(dec0, p=self.dropout_2d).shape)) return self.final(F.dropout2d(dec0, p=self.dropout_2d)) """ center = self.conv4(conv3) dec4 = self.dec4(center) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = F.dropout2d(self.dec1(torch.cat([dec2, conv1], 1)), p=self.dropout_2d) return self.final(dec1) """ class UNetResNext(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d if encoder_depth == 34: self.encoder = resnext34() bottom_channel_nr = 512 elif encoder_depth == 101: self.encoder = resnext101() bottom_channel_nr = 2048 elif encoder_depth == 152: self.encoder = resnext152() bottom_channel_nr = 2048 else: raise NotImplementedError( "only 34, 101, 152 version of Resnext are implemented" ) self.pool = nn.MaxPool2d(2, 2) self.relu = nn.ReLU(inplace=True) self.conv1 = nn.Sequential( self.encoder.conv1, self.encoder.bn1, self.encoder.relu, self.pool ) ## this pool to delete self.conv2 = self.encoder.layer1 self.conv3 = self.encoder.layer2 self.conv4 = self.encoder.layer3 self.conv5 = self.encoder.layer4 self.center = DecoderCenter( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, False ) self.dec5 = DecoderBlockV2( bottom_channel_nr + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec4 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec2 = DecoderBlockV2( bottom_channel_nr // 8 + num_filters * 2, num_filters * 2 * 2, num_filters * 2 * 2, is_deconv, ) self.dec1 = DecoderBlockV2( num_filters * 2 * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec0 = ConvRelu(num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.conv1(x) conv2 = self.conv2(conv1) conv3 = self.conv3(conv2) conv4 = self.conv4(conv3) conv5 = self.conv5(conv4) # pool = self.pool(conv5) # deleted pooling # center = self.center(pool) center = self.center(conv5) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(dec2) dec0 = self.dec0(dec1) return self.final(F.dropout2d(dec0, p=self.dropout_2d)) class UNetPNASNet(nn.Module): def __init__( self, encoder_depth, num_classes, num_filters=32, dropout_2d=0.2, pretrained=False, is_deconv=False, ): super().__init__() self.num_classes = num_classes self.dropout_2d = dropout_2d self.encoder = PNASNet5Large() bottom_channel_nr = 4320 self.center = DecoderCenter( bottom_channel_nr, num_filters * 8 * 2, num_filters * 8, False ) self.dec5 = DecoderBlockV2( bottom_channel_nr + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec4 = DecoderBlockV2( bottom_channel_nr // 2 + num_filters * 8, num_filters * 8 * 2, num_filters * 8, is_deconv, ) self.dec3 = DecoderBlockV2( bottom_channel_nr // 4 + num_filters * 8, num_filters * 4 * 2, num_filters * 2, is_deconv, ) self.dec2 = DecoderBlockV2( num_filters * 4 * 4, num_filters * 4 * 4, num_filters, is_deconv ) self.dec1 = DecoderBlockV2( num_filters * 2 * 2, num_filters * 2 * 2, num_filters, is_deconv ) self.dec0 = ConvRelu(num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): features = self.encoder.features(x) relued_features = self.encoder.relu(features) avg_pooled_features = self.encoder.avg_pool(relued_features) center = self.center(avg_pooled_features) dec5 = self.dec5(torch.cat([center, avg_pooled_features], 1)) dec4 = self.dec4(torch.cat([dec5, relued_features], 1)) dec3 = self.dec3(torch.cat([dec4, features], 1)) dec2 = self.dec2(dec3) dec1 = self.dec1(dec2) dec0 = self.dec0(dec1) return self.final(F.dropout2d(dec0, p=self.dropout_2d)) class TernausNetV2(nn.Module): """Variation of the UNet architecture with InplaceABN encoder.""" "https://github.com/ternaus/TernausNetV2 by Ternaus 2018" def __init__( self, num_classes=1, num_filters=32, is_deconv=False, num_input_channels=3 ): """ Args: num_classes: Number of output classes. num_filters: is_deconv: True: Deconvolution layer is used in the Decoder block. False: Upsampling layer is used in the Decoder block. num_input_channels: Number of channels in the input images. """ super(TernausNetV2, self).__init__() self.pool = nn.MaxPool2d(2, 2) encoder = WiderResNet(structure=[3, 3, 6, 3, 1, 1], classes=0) state_dict = torch.load("./modules/wide_resnet38_ipabn_lr_256.pth.tar")[ "state_dict" ] state_dict = {".".join(k.split(".")[1:]): v for k, v in state_dict.items()} encoder.load_state_dict(state_dict, strict=False) self.conv1 = Sequential( OrderedDict( [("conv1", nn.Conv2d(num_input_channels, 64, 3, padding=1, bias=False))] ) ) self.conv2 = encoder.mod2 self.conv3 = encoder.mod3 self.conv4 = encoder.mod4 self.conv5 = encoder.mod5 self.center = DecoderBlockTernaus( 1024, num_filters * 8, num_filters * 8, is_deconv=is_deconv ) self.dec5 = DecoderBlockTernaus( 1024 + num_filters * 8, num_filters * 8, num_filters * 8, is_deconv=is_deconv, ) self.dec4 = DecoderBlockTernaus( 512 + num_filters * 8, num_filters * 8, num_filters * 8, is_deconv=is_deconv ) self.dec3 = DecoderBlockTernaus( 256 + num_filters * 8, num_filters * 2, num_filters * 2, is_deconv=is_deconv ) self.dec2 = DecoderBlockTernaus( 128 + num_filters * 2, num_filters * 2, num_filters, is_deconv=is_deconv ) self.dec1 = ConvRelu(64 + num_filters, num_filters) self.final = nn.Conv2d(num_filters, num_classes, kernel_size=1) def forward(self, x): conv1 = self.conv1(x) conv2 = self.conv2(self.pool(conv1)) conv3 = self.conv3(self.pool(conv2)) conv4 = self.conv4(self.pool(conv3)) conv5 = self.conv5(self.pool(conv4)) center = self.center(self.pool(conv5)) dec5 = self.dec5(torch.cat([center, conv5], 1)) dec4 = self.dec4(torch.cat([dec5, conv4], 1)) dec3 = self.dec3(torch.cat([dec4, conv3], 1)) dec2 = self.dec2(torch.cat([dec3, conv2], 1)) dec1 = self.dec1(torch.cat([dec2, conv1], 1)) return self.final(dec1) class DecoderBlockTernaus(nn.Module): """Paramaters for Deconvolution were chosen to avoid artifacts, following link https://distill.pub/2016/deconv-checkerboard/ """ def __init__(self, in_channels, middle_channels, out_channels, is_deconv=False): super(DecoderBlock, self).__init__() self.in_channels = in_channels if is_deconv: self.block = nn.Sequential( ConvRelu(in_channels, middle_channels), nn.ConvTranspose2d( middle_channels, out_channels, kernel_size=4, stride=2, padding=1 ), nn.ReLU(inplace=True), ) else: self.block = nn.Sequential( nn.Upsample(scale_factor=2, mode="nearest"), ConvRelu(in_channels, middle_channels), ConvRelu(middle_channels, out_channels), ) def forward(self, x): return self.block(x) """ def AttentionBlock(x,shortcut,i_filters): g1 = Conv2D(i_filters,kernel_size = 1)(shortcut) g1 = BatchNormalization()(g1) x1 = Conv2D(i_filters,kernel_size = 1)(x) x1 = BatchNormalization()(x1) g1_x1 = Add()([g1,x1]) psi = Activation('relu')(g1_x1) psi = Conv2D(1,kernel_size = 1)(psi) psi = BatchNormalization()(psi) psi = Activation('sigmoid'))(psi) x = Multiply()([x,psi]) return x """ ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/common_blocks/utils.py ================================================ import logging import os import pathlib import random import sys import time from itertools import chain from collections import Iterable import gc import numpy as np import pandas as pd import torch from PIL import Image import matplotlib.pyplot as plt from attrdict import AttrDict from tqdm import tqdm from pycocotools import mask as cocomask from sklearn.model_selection import BaseCrossValidator from steppy.base import BaseTransformer, Step from steppy.utils import get_logger import yaml from imgaug import augmenters as iaa import imgaug as ia import torch NEPTUNE_CONFIG_PATH = str( pathlib.Path(__file__).resolve().parents[1] / "configs" / "neptune.yaml" ) logger = get_logger() def read_yaml(fallback_file=NEPTUNE_CONFIG_PATH): with open(fallback_file) as f: config = yaml.load(f) return AttrDict(config) def init_logger(): logger = logging.getLogger("salt-detection") logger.setLevel(logging.INFO) message_format = logging.Formatter( fmt="%(asctime)s %(name)s >>> %(message)s", datefmt="%Y-%m-%d %H-%M-%S" ) # console handler for validation info ch_va = logging.StreamHandler(sys.stdout) ch_va.setLevel(logging.INFO) ch_va.setFormatter(fmt=message_format) # add the handlers to the logger logger.addHandler(ch_va) return logger def get_logger(): return logging.getLogger("salt-detection") def create_submission(meta, predictions): output = [] for image_id, mask in zip(meta["id"].values, predictions): rle_encoded = " ".join(str(rle) for rle in run_length_encoding(mask)) output.append([image_id, rle_encoded]) submission = pd.DataFrame(output, columns=["id", "rle_mask"]).astype(str) return submission def encode_rle(predictions): return [run_length_encoding(mask) for mask in predictions] def read_masks(masks_filepaths): masks = [] for mask_filepath in tqdm(masks_filepaths): mask = Image.open(mask_filepath) mask = np.asarray( mask.convert("L").point(lambda x: 0 if x < 128 else 1) ).astype(np.uint8) masks.append(mask) return masks def read_images(filepaths): images = [] for filepath in filepaths: image = np.array(Image.open(filepath)) images.append(image) return images def run_length_encoding(x): # https://www.kaggle.com/c/data-science-bowl-2018/discussion/48561# bs = np.where(x.T.flatten())[0] rle = [] prev = -2 for b in bs: if b > prev + 1: rle.extend((b + 1, 0)) rle[-1] += 1 prev = b return rle def run_length_decoding(mask_rle, shape): """ Based on https://www.kaggle.com/msl23518/visualize-the-stage1-test-solution and modified Args: mask_rle: run-length as string formatted (start length) shape: (height, width) of array to return Returns: numpy array, 1 - mask, 0 - background """ s = mask_rle.split() starts, lengths = [np.asarray(x, dtype=int) for x in (s[0:][::2], s[1:][::2])] starts -= 1 ends = starts + lengths img = np.zeros(shape[1] * shape[0], dtype=np.uint8) for lo, hi in zip(starts, ends): img[lo:hi] = 1 return img.reshape((shape[1], shape[0])).T def generate_metadata(train_images_dir, test_images_dir, depths_filepath): depths = pd.read_csv(depths_filepath) metadata = {} for filename in tqdm(os.listdir(os.path.join(train_images_dir, "images"))): image_filepath = os.path.join(train_images_dir, "images", filename) mask_filepath = os.path.join(train_images_dir, "masks", filename) image_id = filename.split(".")[0] depth = depths[depths["id"] == image_id]["z"].values[0] metadata.setdefault("file_path_image", []).append(image_filepath) metadata.setdefault("file_path_mask", []).append(mask_filepath) metadata.setdefault("is_train", []).append(1) metadata.setdefault("id", []).append(image_id) metadata.setdefault("z", []).append(depth) for filename in tqdm(os.listdir(os.path.join(test_images_dir, "images"))): image_filepath = os.path.join(test_images_dir, "images", filename) image_id = filename.split(".")[0] depth = depths[depths["id"] == image_id]["z"].values[0] metadata.setdefault("file_path_image", []).append(image_filepath) metadata.setdefault("file_path_mask", []).append(None) metadata.setdefault("is_train", []).append(0) metadata.setdefault("id", []).append(image_id) metadata.setdefault("z", []).append(depth) return pd.DataFrame(metadata) def sigmoid(x): return 1.0 / (1 + np.exp(-x)) def softmax(X, theta=1.0, axis=None): """ https://nolanbconaway.github.io/blog/2017/softmax-numpy Compute the softmax of each element along an axis of X. Parameters ---------- X: ND-Array. Probably should be floats. theta (optional): float parameter, used as a multiplier prior to exponentiation. Default = 1.0 axis (optional): axis to compute values along. Default is the first non-singleton axis. Returns an array the same size as X. The result will sum to 1 along the specified axis. """ # make X at least 2d y = np.atleast_2d(X) # find axis if axis is None: axis = next(j[0] for j in enumerate(y.shape) if j[1] > 1) # multiply y against the theta parameter, y = y * float(theta) # subtract the max for numerical stability y = y - np.expand_dims(np.max(y, axis=axis), axis) # exponentiate y y = np.exp(y) # take the sum along the specified axis ax_sum = np.expand_dims(np.sum(y, axis=axis), axis) # finally: divide elementwise p = y / ax_sum # flatten if X was 1D if len(X.shape) == 1: p = p.flatten() return p def from_pil(*images): images = [np.array(image) for image in images] if len(images) == 1: return images[0] else: return images def to_pil(*images): images = [Image.fromarray((image).astype(np.uint8)) for image in images] if len(images) == 1: return images[0] else: return images def make_apply_transformer(func, output_name="output", apply_on=None): class StaticApplyTransformer(BaseTransformer): def transform(self, *args, **kwargs): self.check_input(*args, **kwargs) if not apply_on: iterator = zip(*args, *kwargs.values()) else: iterator = zip(*args, *[kwargs[key] for key in apply_on]) output = [] for func_args in tqdm(iterator, total=self.get_arg_length(*args, **kwargs)): output.append(func(*func_args)) return {output_name: output} @staticmethod def check_input(*args, **kwargs): if len(args) and len(kwargs) == 0: raise Exception("Input must not be empty") arg_length = None for arg in chain(args, kwargs.values()): if not isinstance(arg, Iterable): raise Exception("All inputs must be iterable") arg_length_loc = None try: arg_length_loc = len(arg) except: pass if arg_length_loc is not None: if arg_length is None: arg_length = arg_length_loc elif arg_length_loc != arg_length: raise Exception("All inputs must be the same length") @staticmethod def get_arg_length(*args, **kwargs): arg_length = None for arg in chain(args, kwargs.values()): if arg_length is None: try: arg_length = len(arg) except: pass if arg_length is not None: return arg_length return StaticApplyTransformer() def rle_from_binary(prediction): prediction = np.asfortranarray(prediction) return cocomask.encode(prediction) def binary_from_rle(rle): return cocomask.decode(rle) def get_segmentations(labeled): nr_true = labeled.max() segmentations = [] for i in range(1, nr_true + 1): msk = labeled == i segmentation = rle_from_binary(msk.astype("uint8")) segmentation["counts"] = segmentation["counts"].decode("UTF-8") segmentations.append(segmentation) return segmentations def get_crop_pad_sequence(vertical, horizontal): top = int(vertical / 2) bottom = vertical - top right = int(horizontal / 2) left = horizontal - right return (top, right, bottom, left) def get_list_of_image_predictions(batch_predictions): image_predictions = [] for batch_pred in batch_predictions: image_predictions.extend(list(batch_pred)) return image_predictions def set_seed(seed): random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) if torch.cuda.is_available(): torch.cuda.manual_seed_all(seed) class ImgAug: def __init__(self, augmenters): if not isinstance(augmenters, list): augmenters = [augmenters] self.augmenters = augmenters self.seq_det = None def _pre_call_hook(self): seq = iaa.Sequential(self.augmenters) seq = reseed(seq, deterministic=True) self.seq_det = seq def transform(self, *images): images = [self.seq_det.augment_image(image) for image in images] if len(images) == 1: return images[0] else: return images def __call__(self, *args): self._pre_call_hook() return self.transform(*args) def get_seed(): seed = int(time.time()) + int(os.getpid()) return seed def reseed(augmenter, deterministic=True): augmenter.random_state = ia.new_random_state(get_seed()) if deterministic: augmenter.deterministic = True for lists in augmenter.get_children_lists(): for aug in lists: aug = reseed(aug, deterministic=True) return augmenter class KFoldBySortedValue(BaseCrossValidator): def __init__(self, n_splits=3, shuffle=False, random_state=None): self.n_splits = n_splits self.shuffle = shuffle self.random_state = random_state def _iter_test_indices(self, X, y=None, groups=None): n_samples = X.shape[0] indices = np.arange(n_samples) sorted_idx_vals = sorted(zip(indices, X), key=lambda x: x[1]) indices = [idx for idx, val in sorted_idx_vals] for split_start in range(self.n_splits): split_indeces = indices[split_start :: self.n_splits] yield split_indeces def get_n_splits(self, X=None, y=None, groups=None): return self.n_splits def plot_list(images=[], labels=[]): n_img = len(images) n_lab = len(labels) n = n_lab + n_img fig, axs = plt.subplots(1, n, figsize=(16, 12)) for i, image in enumerate(images): axs[i].imshow(image) axs[i].set_xticks([]) axs[i].set_yticks([]) for j, label in enumerate(labels): axs[n_img + j].imshow(label, cmap="nipy_spectral") axs[n_img + j].set_xticks([]) axs[n_img + j].set_yticks([]) plt.show() def clean_object_from_memory(obj): del obj gc.collect() if torch.cuda.is_available(): torch.cuda.empty_cache() class FineTuneStep(Step): def __init__( self, name, transformer, experiment_directory, input_data=None, input_steps=None, adapter=None, is_trainable=False, cache_output=False, persist_output=False, load_persisted_output=False, force_fitting=False, fine_tuning=False, persist_upstream_pipeline_structure=False, ): super().__init__( name, transformer, experiment_directory, input_data=input_data, input_steps=input_steps, adapter=adapter, is_trainable=is_trainable, cache_output=cache_output, persist_output=persist_output, load_persisted_output=load_persisted_output, force_fitting=force_fitting, persist_upstream_pipeline_structure=persist_upstream_pipeline_structure, ) self.fine_tuning = fine_tuning def _cached_fit_transform(self, step_inputs): if self.is_trainable: if self.transformer_is_cached: if self.force_fitting and self.fine_tuning: raise ValueError( "only one of force_fitting or fine_tuning can be True" ) elif self.force_fitting: logger.info( "Step {}, fitting and transforming...".format(self.name) ) step_output_data = self.transformer.fit_transform(**step_inputs) logger.info( "Step {}, persisting transformer to the {}".format( self.name, self.exp_dir_transformers_step ) ) self.transformer.persist(self.exp_dir_transformers_step) elif self.fine_tuning: logger.info( "Step {}, loading transformer from the {}".format( self.name, self.exp_dir_transformers_step ) ) self.transformer.load(self.exp_dir_transformers_step) logger.info("Step {}, transforming...".format(self.name)) step_output_data = self.transformer.fit_transform(**step_inputs) self.transformer.persist(self.exp_dir_transformers_step) else: logger.info( "Step {}, loading transformer from the {}".format( self.name, self.exp_dir_transformers_step ) ) self.transformer.load(self.exp_dir_transformers_step) logger.info("Step {}, transforming...".format(self.name)) step_output_data = self.transformer.transform(**step_inputs) else: logger.info("Step {}, fitting and transforming...".format(self.name)) step_output_data = self.transformer.fit_transform(**step_inputs) logger.info( "Step {}, persisting transformer to the {}".format( self.name, self.exp_dir_transformers_step ) ) self.transformer.persist(self.exp_dir_transformers_step) else: logger.info("Step {}, transforming...".format(self.name)) step_output_data = self.transformer.transform(**step_inputs) if self.cache_output: logger.info( "Step {}, caching output to the {}".format( self.name, self.exp_dir_cache_step ) ) self._persist_output(step_output_data, self.exp_dir_cache_step) if self.persist_output: logger.info( "Step {}, persisting output to the {}".format( self.name, self.exp_dir_outputs_step ) ) self._persist_output(step_output_data, self.exp_dir_outputs_step) return step_output_data ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/configs/neptune.yaml ================================================ project: neptune-ml/Salt-Detection name: tgs_salt_identification_challenge tags: [solution-3] metric: channel: 'IOUT' goal: maximize #Comment out if not in Cloud Environment #pip-requirements-file: requirements.txt exclude: - .git - .idea - .ipynb_checkpoints - output - imgs - neptune.log - offline_job.log - notebooks parameters: # Data Paths train_images_dir: ../input/train test_images_dir: ../input/test metadata_filepath: ./meta/files/metadata.csv depths_filepath: ../input/depths.csv experiment_dir: ./experiments/resnets_regularization # Execution fine_tuning: 1 overwrite: 1 num_workers: 8 num_threads: 8 kaggle_message: 'solution-5' image_source: disk pin_memory: 1 loader_mode: resize_and_pad resize_target_size: 102 pad_size: 13 pad_method: edge target_format: 'png' dev_mode_size: 20 n_cv_splits: 6 shuffle: 1 # General parameters image_h: 128 image_w: 128 image_channels: 3 # U-Net parameters unet_output_channels: 2 unet_activation: 'sigmoid' encoder: ResNet152 # U-Net from scratch parameters nr_unet_outputs: 1 n_filters: 32 conv_kernel: 3 pool_kernel: 3 pool_stride: 2 repeat_blocks: 4 # Loss dice_weight: 0 bce_weight: 1.0 # Training schedule epochs_nr: 75 batch_size_train: 20 batch_size_inference: 20 lr: 0.0000007 momentum: 0.9 gamma: 0.95 patience: 75 validation_metric_name: 'iout' minimize_validation_metric: 0 # Regularization use_batch_norm: 1 l2_reg_conv: 0.0001 l2_reg_dense: 0.0 dropout_conv: 0.0 dropout_dense: 0.0 # Postprocessing threshold_masks: 0.45 tta_aggregation_method: mean ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/__init__.py ================================================ from .bn import ABN, InPlaceABN, InPlaceABNWrapper from .misc import GlobalAvgPool2d from .residual import IdentityResidualBlock ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/bn.py ================================================ from collections import OrderedDict, Iterable from itertools import repeat import torch import torch.nn as nn import torch.autograd as autograd from .functions import inplace_abn def _pair(x): if isinstance(x, Iterable): return x return tuple(repeat(x, 2)) class ABN(nn.Sequential): """Activated Batch Normalization This gathers a `BatchNorm2d` and an activation function in a single module """ def __init__(self, num_features, activation=nn.ReLU(inplace=True), **kwargs): """Creates an Activated Batch Normalization module Parameters ---------- num_features : int Number of feature channels in the input and output. activation : nn.Module Module used as an activation function. kwargs All other arguments are forwarded to the `BatchNorm2d` constructor. """ super(ABN, self).__init__( OrderedDict( [("bn", nn.BatchNorm2d(num_features, **kwargs)), ("act", activation)] ) ) class InPlaceABN(nn.Module): """InPlace Activated Batch Normalization""" def __init__( self, num_features, eps=1e-5, momentum=0.1, affine=True, activation="leaky_relu", slope=0.01, ): """Creates an InPlace Activated Batch Normalization module Parameters ---------- num_features : int Number of feature channels in the input and output. eps : float Small constant to prevent numerical issues. momentum : float Momentum factor applied to compute running statistics as. affine : bool If `True` apply learned scale and shift transformation after normalization. activation : str Name of the activation functions, one of: `leaky_relu`, `elu` or `none`. slope : float Negative slope for the `leaky_relu` activation. """ super(InPlaceABN, self).__init__() self.num_features = num_features self.affine = affine self.eps = eps self.momentum = momentum self.activation = activation self.slope = slope if self.affine: self.weight = nn.Parameter(torch.Tensor(num_features)) self.bias = nn.Parameter(torch.Tensor(num_features)) else: self.register_parameter("weight", None) self.register_parameter("bias", None) self.register_buffer("running_mean", torch.zeros(num_features)) self.register_buffer("running_var", torch.ones(num_features)) self.reset_parameters() def reset_parameters(self): self.running_mean.zero_() self.running_var.fill_(1) if self.affine: self.weight.data.fill_(1) self.bias.data.zero_() def forward(self, x): return inplace_abn( x, self.weight, self.bias, autograd.Variable(self.running_mean), autograd.Variable(self.running_var), self.training, self.momentum, self.eps, self.activation, self.slope, ) def __repr__(self): rep = ( "{name}({num_features}, eps={eps}, momentum={momentum}," " affine={affine}, activation={activation}" ) if self.activation == "leaky_relu": rep += " slope={slope})" else: rep += ")" return rep.format(name=self.__class__.__name__, **self.__dict__) class InPlaceABNWrapper(nn.Module): """Wrapper module to make `InPlaceABN` compatible with `ABN`""" def __init__(self, *args, **kwargs): super(InPlaceABNWrapper, self).__init__() self.bn = InPlaceABN(*args, **kwargs) def forward(self, x): return self.bn(x) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/build.py ================================================ import os from torch.utils.ffi import create_extension sources = ["src/lib_cffi.cpp"] headers = ["src/lib_cffi.h"] extra_objects = ["src/bn.o"] with_cuda = True this_file = os.path.dirname(os.path.realpath(__file__)) extra_objects = [os.path.join(this_file, fname) for fname in extra_objects] ffi = create_extension( "_ext", headers=headers, sources=sources, relative_to=__file__, with_cuda=with_cuda, extra_objects=extra_objects, extra_compile_args=["-std=c++11"], ) if __name__ == "__main__": ffi.build() ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/build.sh ================================================ #!/bin/bash # Configuration CUDA_GENCODE="\ -gencode=arch=compute_61,code=sm_61 \ -gencode=arch=compute_52,code=sm_52 \ -gencode=arch=compute_50,code=sm_50" cd src nvcc -I/usr/local/cuda/include --expt-extended-lambda -O3 -c -o bn.o bn.cu -x cu -Xcompiler -fPIC -std=c++11 ${CUDA_GENCODE} cd .. ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/functions.py ================================================ import torch.autograd as autograd import torch.cuda.comm as comm from torch.autograd.function import once_differentiable from . import _ext # Activation names ACT_LEAKY_RELU = "leaky_relu" ACT_ELU = "elu" ACT_NONE = "none" def _check(fn, *args, **kwargs): success = fn(*args, **kwargs) if not success: raise RuntimeError("CUDA Error encountered in {}".format(fn)) def _broadcast_shape(x): out_size = [] for i, s in enumerate(x.size()): if i != 1: out_size.append(1) else: out_size.append(s) return out_size def _reduce(x): if len(x.size()) == 2: return x.sum(dim=0) else: n, c = x.size()[0:2] return x.contiguous().view((n, c, -1)).sum(2).sum(0) def _count_samples(x): count = 1 for i, s in enumerate(x.size()): if i != 1: count *= s return count def _act_forward(ctx, x): if ctx.activation == ACT_LEAKY_RELU: _check(_ext.leaky_relu_cuda, x, ctx.slope) elif ctx.activation == ACT_ELU: _check(_ext.elu_cuda, x) elif ctx.activation == ACT_NONE: pass def _act_backward(ctx, x, dx): if ctx.activation == ACT_LEAKY_RELU: _check(_ext.leaky_relu_backward_cuda, x, dx, ctx.slope) _check(_ext.leaky_relu_cuda, x, 1.0 / ctx.slope) elif ctx.activation == ACT_ELU: _check(_ext.elu_backward_cuda, x, dx) _check(_ext.elu_inv_cuda, x) elif ctx.activation == ACT_NONE: pass def _check_contiguous(*args): if not all([mod is None or mod.is_contiguous() for mod in args]): raise ValueError("Non-contiguous input") class InPlaceABN(autograd.Function): @staticmethod def forward( ctx, x, weight, bias, running_mean, running_var, training=True, momentum=0.1, eps=1e-05, activation=ACT_LEAKY_RELU, slope=0.01, ): # Save context ctx.training = training ctx.momentum = momentum ctx.eps = eps ctx.activation = activation ctx.slope = slope n = _count_samples(x) if ctx.training: mean = x.new().resize_as_(running_mean) var = x.new().resize_as_(running_var) _check_contiguous(x, mean, var) _check(_ext.bn_mean_var_cuda, x, mean, var) # Update running stats running_mean.mul_((1 - ctx.momentum)).add_(ctx.momentum * mean) running_var.mul_((1 - ctx.momentum)).add_(ctx.momentum * var * n / (n - 1)) else: mean, var = running_mean, running_var _check_contiguous(x, mean, var, weight, bias) _check( _ext.bn_forward_cuda, x, mean, var, weight if weight is not None else x.new(), bias if bias is not None else x.new(), x, x, ctx.eps, ) # Activation _act_forward(ctx, x) # Output ctx.var = var ctx.save_for_backward(x, weight, bias, running_mean, running_var) ctx.mark_dirty(x) return x @staticmethod @once_differentiable def backward(ctx, dz): z, weight, bias, running_mean, running_var = ctx.saved_tensors dz = dz.contiguous() # Undo activation _act_backward(ctx, z, dz) if ctx.needs_input_grad[0]: dx = dz.new().resize_as_(dz) else: dx = None if ctx.needs_input_grad[1]: dweight = dz.new().resize_as_(running_mean).zero_() else: dweight = None if ctx.needs_input_grad[2]: dbias = dz.new().resize_as_(running_mean).zero_() else: dbias = None if ctx.training: edz = dz.new().resize_as_(running_mean) eydz = dz.new().resize_as_(running_mean) _check_contiguous(z, dz, weight, bias, edz, eydz) _check( _ext.bn_edz_eydz_cuda, z, dz, weight if weight is not None else dz.new(), bias if bias is not None else dz.new(), edz, eydz, ctx.eps, ) else: # TODO: implement CUDA backward for inference mode edz = dz.new().resize_as_(running_mean).zero_() eydz = dz.new().resize_as_(running_mean).zero_() _check_contiguous(dz, z, ctx.var, weight, bias, edz, eydz, dx, dweight, dbias) _check( _ext.bn_backard_cuda, dz, z, ctx.var, weight if weight is not None else dz.new(), bias if bias is not None else dz.new(), edz, eydz, dx if dx is not None else dz.new(), dweight if dweight is not None else dz.new(), dbias if dbias is not None else dz.new(), ctx.eps, ) del ctx.var return dx, dweight, dbias, None, None, None, None, None, None, None class InPlaceABNSync(autograd.Function): @classmethod def forward( cls, ctx, x, weight, bias, running_mean, running_var, extra, training=True, momentum=0.1, eps=1e-05, activation=ACT_LEAKY_RELU, slope=0.01, ): # Save context cls._parse_extra(ctx, extra) ctx.training = training ctx.momentum = momentum ctx.eps = eps ctx.activation = activation ctx.slope = slope n = _count_samples(x) * (ctx.master_queue.maxsize + 1) if ctx.training: mean = x.new().resize_(1, running_mean.size(0)) var = x.new().resize_(1, running_var.size(0)) _check_contiguous(x, mean, var) _check(_ext.bn_mean_var_cuda, x, mean, var) if ctx.is_master: means, vars = [mean], [var] for _ in range(ctx.master_queue.maxsize): mean_w, var_w = ctx.master_queue.get() ctx.master_queue.task_done() means.append(mean_w) vars.append(var_w) means = comm.gather(means) vars = comm.gather(vars) mean = means.mean(0) var = (vars + (mean - means) ** 2).mean(0) tensors = comm.broadcast_coalesced( (mean, var), [mean.get_device()] + ctx.worker_ids ) for ts, queue in zip(tensors[1:], ctx.worker_queues): queue.put(ts) else: ctx.master_queue.put((mean, var)) mean, var = ctx.worker_queue.get() ctx.worker_queue.task_done() # Update running stats running_mean.mul_((1 - ctx.momentum)).add_(ctx.momentum * mean) running_var.mul_((1 - ctx.momentum)).add_(ctx.momentum * var * n / (n - 1)) else: mean, var = running_mean, running_var _check_contiguous(x, mean, var, weight, bias) _check( _ext.bn_forward_cuda, x, mean, var, weight if weight is not None else x.new(), bias if bias is not None else x.new(), x, x, ctx.eps, ) # Activation _act_forward(ctx, x) # Output ctx.var = var ctx.save_for_backward(x, weight, bias, running_mean, running_var) ctx.mark_dirty(x) return x @staticmethod @once_differentiable def backward(ctx, dz): z, weight, bias, running_mean, running_var = ctx.saved_tensors dz = dz.contiguous() # Undo activation _act_backward(ctx, z, dz) if ctx.needs_input_grad[0]: dx = dz.new().resize_as_(dz) else: dx = None if ctx.needs_input_grad[1]: dweight = dz.new().resize_as_(running_mean).zero_() else: dweight = None if ctx.needs_input_grad[2]: dbias = dz.new().resize_as_(running_mean).zero_() else: dbias = None if ctx.training: edz = dz.new().resize_as_(running_mean) eydz = dz.new().resize_as_(running_mean) _check_contiguous(z, dz, weight, bias, edz, eydz) _check( _ext.bn_edz_eydz_cuda, z, dz, weight if weight is not None else dz.new(), bias if bias is not None else dz.new(), edz, eydz, ctx.eps, ) if ctx.is_master: edzs, eydzs = [edz], [eydz] for _ in range(len(ctx.worker_queues)): edz_w, eydz_w = ctx.master_queue.get() ctx.master_queue.task_done() edzs.append(edz_w) eydzs.append(eydz_w) edz = comm.reduce_add(edzs) / (ctx.master_queue.maxsize + 1) eydz = comm.reduce_add(eydzs) / (ctx.master_queue.maxsize + 1) tensors = comm.broadcast_coalesced( (edz, eydz), [edz.get_device()] + ctx.worker_ids ) for ts, queue in zip(tensors[1:], ctx.worker_queues): queue.put(ts) else: ctx.master_queue.put((edz, eydz)) edz, eydz = ctx.worker_queue.get() ctx.worker_queue.task_done() else: edz = dz.new().resize_as_(running_mean).zero_() eydz = dz.new().resize_as_(running_mean).zero_() _check_contiguous(dz, z, ctx.var, weight, bias, edz, eydz, dx, dweight, dbias) _check( _ext.bn_backard_cuda, dz, z, ctx.var, weight if weight is not None else dz.new(), bias if bias is not None else dz.new(), edz, eydz, dx if dx is not None else dz.new(), dweight if dweight is not None else dz.new(), dbias if dbias is not None else dz.new(), ctx.eps, ) del ctx.var return dx, dweight, dbias, None, None, None, None, None, None, None, None @staticmethod def _parse_extra(ctx, extra): ctx.is_master = extra["is_master"] if ctx.is_master: ctx.master_queue = extra["master_queue"] ctx.worker_queues = extra["worker_queues"] ctx.worker_ids = extra["worker_ids"] else: ctx.master_queue = extra["master_queue"] ctx.worker_queue = extra["worker_queue"] inplace_abn = InPlaceABN.apply inplace_abn_sync = InPlaceABNSync.apply __all__ = ["inplace_abn", "inplace_abn_sync"] ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/misc.py ================================================ import torch.nn as nn class GlobalAvgPool2d(nn.Module): def __init__(self): """Global average pooling over the input's spatial dimensions""" super(GlobalAvgPool2d, self).__init__() def forward(self, inputs): in_size = inputs.size() return inputs.view((in_size[0], in_size[1], -1)).mean(dim=2) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/residual.py ================================================ from collections import OrderedDict import torch.nn as nn from .bn import ABN class IdentityResidualBlock(nn.Module): def __init__( self, in_channels, channels, stride=1, dilation=1, groups=1, norm_act=ABN, dropout=None, ): """Configurable identity-mapping residual block Parameters ---------- in_channels : int Number of input channels. channels : list of int Number of channels in the internal feature maps. Can either have two or three elements: if three construct a residual block with two `3 x 3` convolutions, otherwise construct a bottleneck block with `1 x 1`, then `3 x 3` then `1 x 1` convolutions. stride : int Stride of the first `3 x 3` convolution dilation : int Dilation to apply to the `3 x 3` convolutions. groups : int Number of convolution groups. This is used to create ResNeXt-style blocks and is only compatible with bottleneck blocks. norm_act : callable Function to create normalization / activation Module. dropout: callable Function to create Dropout Module. """ super(IdentityResidualBlock, self).__init__() # Check parameters for inconsistencies if len(channels) != 2 and len(channels) != 3: raise ValueError("channels must contain either two or three values") if len(channels) == 2 and groups != 1: raise ValueError("groups > 1 are only valid if len(channels) == 3") is_bottleneck = len(channels) == 3 need_proj_conv = stride != 1 or in_channels != channels[-1] self.bn1 = norm_act(in_channels) if not is_bottleneck: layers = [ ( "conv1", nn.Conv2d( in_channels, channels[0], 3, stride=stride, padding=dilation, bias=False, dilation=dilation, ), ), ("bn2", norm_act(channels[0])), ( "conv2", nn.Conv2d( channels[0], channels[1], 3, stride=1, padding=dilation, bias=False, dilation=dilation, ), ), ] if dropout is not None: layers = layers[0:2] + [("dropout", dropout())] + layers[2:] else: layers = [ ( "conv1", nn.Conv2d( in_channels, channels[0], 1, stride=stride, padding=0, bias=False, ), ), ("bn2", norm_act(channels[0])), ( "conv2", nn.Conv2d( channels[0], channels[1], 3, stride=1, padding=dilation, bias=False, groups=groups, dilation=dilation, ), ), ("bn3", norm_act(channels[1])), ( "conv3", nn.Conv2d( channels[1], channels[2], 1, stride=1, padding=0, bias=False ), ), ] if dropout is not None: layers = layers[0:4] + [("dropout", dropout())] + layers[4:] self.convs = nn.Sequential(OrderedDict(layers)) if need_proj_conv: self.proj_conv = nn.Conv2d( in_channels, channels[-1], 1, stride=stride, padding=0, bias=False ) def forward(self, x): if hasattr(self, "proj_conv"): bn1 = self.bn1(x) shortcut = self.proj_conv(bn1) else: shortcut = x.clone() bn1 = self.bn1(x) out = self.convs(bn1) out.add_(shortcut) return out ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/src/common.h ================================================ #pragma once #include /* * General settings */ const int WARP_SIZE = 32; const int MAX_BLOCK_SIZE = 512; template struct Pair { T v1, v2; __device__ Pair() {} __device__ Pair(T _v1, T _v2) : v1(_v1), v2(_v2) {} __device__ Pair(T v) : v1(v), v2(v) {} __device__ Pair(int v) : v1(v), v2(v) {} __device__ Pair &operator+=(const Pair &a) { v1 += a.v1; v2 += a.v2; return *this; } }; /* * Utility functions */ template __device__ __forceinline__ T WARP_SHFL_XOR(T value, int laneMask, int width = warpSize, unsigned int mask = 0xffffffff) { #if CUDART_VERSION >= 9000 return __shfl_xor_sync(mask, value, laneMask, width); #else return __shfl_xor(value, laneMask, width); #endif } __device__ __forceinline__ int getMSB(int val) { return 31 - __clz(val); } static int getNumThreads(int nElem) { int threadSizes[5] = {32, 64, 128, 256, MAX_BLOCK_SIZE}; for (int i = 0; i != 5; ++i) { if (nElem <= threadSizes[i]) { return threadSizes[i]; } } return MAX_BLOCK_SIZE; } template static __device__ __forceinline__ T warpSum(T val) { #if __CUDA_ARCH__ >= 300 for (int i = 0; i < getMSB(WARP_SIZE); ++i) { val += WARP_SHFL_XOR(val, 1 << i, WARP_SIZE); } #else __shared__ T values[MAX_BLOCK_SIZE]; values[threadIdx.x] = val; __threadfence_block(); const int base = (threadIdx.x / WARP_SIZE) * WARP_SIZE; for (int i = 1; i < WARP_SIZE; i++) { val += values[base + ((i + threadIdx.x) % WARP_SIZE)]; } #endif return val; } template static __device__ __forceinline__ Pair warpSum(Pair value) { value.v1 = warpSum(value.v1); value.v2 = warpSum(value.v2); return value; } template __device__ T reduce(Op op, int plane, int N, int C, int S) { T sum = (T)0; for (int batch = 0; batch < N; ++batch) { for (int x = threadIdx.x; x < S; x += blockDim.x) { sum += op(batch, plane, x); } } // sum over NumThreads within a warp sum = warpSum(sum); // 'transpose', and reduce within warp again __shared__ T shared[32]; __syncthreads(); if (threadIdx.x % WARP_SIZE == 0) { shared[threadIdx.x / WARP_SIZE] = sum; } if (threadIdx.x >= blockDim.x / WARP_SIZE && threadIdx.x < WARP_SIZE) { // zero out the other entries in shared shared[threadIdx.x] = (T)0; } __syncthreads(); if (threadIdx.x / WARP_SIZE == 0) { sum = warpSum(shared[threadIdx.x]); if (threadIdx.x == 0) { shared[0] = sum; } } __syncthreads(); // Everyone picks it up, should be broadcast into the whole gradInput return shared[0]; } ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/src/inplace_abn.cpp ================================================ #include #include #include "inplace_abn.h" std::vector mean_var(at::Tensor x) { if (x.is_cuda()) { return mean_var_cuda(x); } else { return mean_var_cpu(x); } } at::Tensor forward(at::Tensor x, at::Tensor mean, at::Tensor var, at::Tensor weight, at::Tensor bias, bool affine, float eps) { if (x.is_cuda()) { return forward_cuda(x, mean, var, weight, bias, affine, eps); } else { return forward_cpu(x, mean, var, weight, bias, affine, eps); } } std::vector edz_eydz(at::Tensor z, at::Tensor dz, at::Tensor weight, at::Tensor bias, bool affine, float eps) { if (z.is_cuda()) { return edz_eydz_cuda(z, dz, weight, bias, affine, eps); } else { return edz_eydz_cpu(z, dz, weight, bias, affine, eps); } } std::vector backward(at::Tensor z, at::Tensor dz, at::Tensor var, at::Tensor weight, at::Tensor bias, at::Tensor edz, at::Tensor eydz, bool affine, float eps) { if (z.is_cuda()) { return backward_cuda(z, dz, var, weight, bias, edz, eydz, affine, eps); } else { return backward_cpu(z, dz, var, weight, bias, edz, eydz, affine, eps); } } void leaky_relu_forward(at::Tensor z, float slope) { at::leaky_relu_(z, slope); } void leaky_relu_backward(at::Tensor z, at::Tensor dz, float slope) { if (z.is_cuda()) { return leaky_relu_backward_cuda(z, dz, slope); } else { return leaky_relu_backward_cpu(z, dz, slope); } } void elu_forward(at::Tensor z) { at::elu_(z); } void elu_backward(at::Tensor z, at::Tensor dz) { if (z.is_cuda()) { return elu_backward_cuda(z, dz); } else { return elu_backward_cpu(z, dz); } } PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def("mean_var", &mean_var, "Mean and variance computation"); m.def("forward", &forward, "In-place forward computation"); m.def("edz_eydz", &edz_eydz, "First part of backward computation"); m.def("backward", &backward, "Second part of backward computation"); m.def("leaky_relu_forward", &leaky_relu_forward, "Leaky relu forward computation"); m.def("leaky_relu_backward", &leaky_relu_backward, "Leaky relu backward computation and inversion"); m.def("elu_forward", &elu_forward, "Elu forward computation"); m.def("elu_backward", &elu_backward, "Elu backward computation and inversion"); } ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/src/inplace_abn.h ================================================ #pragma once #include #include std::vector mean_var_cpu(at::Tensor x); std::vector mean_var_cuda(at::Tensor x); at::Tensor forward_cpu(at::Tensor x, at::Tensor mean, at::Tensor var, at::Tensor weight, at::Tensor bias, bool affine, float eps); at::Tensor forward_cuda(at::Tensor x, at::Tensor mean, at::Tensor var, at::Tensor weight, at::Tensor bias, bool affine, float eps); std::vector edz_eydz_cpu(at::Tensor z, at::Tensor dz, at::Tensor weight, at::Tensor bias, bool affine, float eps); std::vector edz_eydz_cuda(at::Tensor z, at::Tensor dz, at::Tensor weight, at::Tensor bias, bool affine, float eps); std::vector backward_cpu(at::Tensor z, at::Tensor dz, at::Tensor var, at::Tensor weight, at::Tensor bias, at::Tensor edz, at::Tensor eydz, bool affine, float eps); std::vector backward_cuda(at::Tensor z, at::Tensor dz, at::Tensor var, at::Tensor weight, at::Tensor bias, at::Tensor edz, at::Tensor eydz, bool affine, float eps); void leaky_relu_backward_cpu(at::Tensor z, at::Tensor dz, float slope); void leaky_relu_backward_cuda(at::Tensor z, at::Tensor dz, float slope); void elu_backward_cpu(at::Tensor z, at::Tensor dz); void elu_backward_cuda(at::Tensor z, at::Tensor dz); ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/src/inplace_abn_cpu.cpp ================================================ #include #include #include "inplace_abn.h" at::Tensor reduce_sum(at::Tensor x) { if (x.ndimension() == 2) { return x.sum(0); } else { auto x_view = x.view({x.size(0), x.size(1), -1}); return x_view.sum(-1).sum(0); } } at::Tensor broadcast_to(at::Tensor v, at::Tensor x) { if (x.ndimension() == 2) { return v; } else { std::vector broadcast_size = {1, -1}; for (int64_t i = 2; i < x.ndimension(); ++i) broadcast_size.push_back(1); return v.view(broadcast_size); } } int64_t count(at::Tensor x) { int64_t count = x.size(0); for (int64_t i = 2; i < x.ndimension(); ++i) count *= x.size(i); return count; } at::Tensor invert_affine(at::Tensor z, at::Tensor weight, at::Tensor bias, bool affine, float eps) { if (affine) { return (z - broadcast_to(bias, z)) / broadcast_to(at::abs(weight) + eps, z); } else { return z; } } std::vector mean_var_cpu(at::Tensor x) { auto num = count(x); auto mean = reduce_sum(x) / num; auto diff = x - broadcast_to(mean, x); auto var = reduce_sum(diff.pow(2)) / num; return {mean, var}; } at::Tensor forward_cpu(at::Tensor x, at::Tensor mean, at::Tensor var, at::Tensor weight, at::Tensor bias, bool affine, float eps) { auto gamma = affine ? at::abs(weight) + eps : at::ones_like(var); auto mul = at::rsqrt(var + eps) * gamma; x.sub_(broadcast_to(mean, x)); x.mul_(broadcast_to(mul, x)); if (affine) x.add_(broadcast_to(bias, x)); return x; } std::vector edz_eydz_cpu(at::Tensor z, at::Tensor dz, at::Tensor weight, at::Tensor bias, bool affine, float eps) { auto edz = reduce_sum(dz); auto y = invert_affine(z, weight, bias, affine, eps); auto eydz = reduce_sum(y * dz); return {edz, eydz}; } std::vector backward_cpu(at::Tensor z, at::Tensor dz, at::Tensor var, at::Tensor weight, at::Tensor bias, at::Tensor edz, at::Tensor eydz, bool affine, float eps) { auto y = invert_affine(z, weight, bias, affine, eps); auto mul = affine ? at::rsqrt(var + eps) * (at::abs(weight) + eps) : at::rsqrt(var + eps); auto num = count(z); auto dx = (dz - broadcast_to(edz / num, dz) - y * broadcast_to(eydz / num, dz)) * broadcast_to(mul, dz); auto dweight = at::empty(z.type(), {0}); auto dbias = at::empty(z.type(), {0}); if (affine) { dweight = eydz * at::sign(weight); dbias = edz; } return {dx, dweight, dbias}; } void leaky_relu_backward_cpu(at::Tensor z, at::Tensor dz, float slope) { AT_DISPATCH_FLOATING_TYPES(z.type(), "leaky_relu_backward_cpu", ([&] { int64_t count = z.numel(); auto *_z = z.data(); auto *_dz = dz.data(); for (int64_t i = 0; i < count; ++i) { if (_z[i] < 0) { _z[i] *= 1 / slope; _dz[i] *= slope; } } })); } void elu_backward_cpu(at::Tensor z, at::Tensor dz) { AT_DISPATCH_FLOATING_TYPES(z.type(), "elu_backward_cpu", ([&] { int64_t count = z.numel(); auto *_z = z.data(); auto *_dz = dz.data(); for (int64_t i = 0; i < count; ++i) { if (_z[i] < 0) { _z[i] = log1p(_z[i]); _dz[i] *= (_z[i] + 1.f); } } })); } ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/src/inplace_abn_cuda.cu ================================================ #include #include #include #include #include "common.h" #include "inplace_abn.h" // Checks #ifndef AT_CHECK #define AT_CHECK AT_ASSERT #endif #define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x " must be a CUDA tensor") #define CHECK_CONTIGUOUS(x) AT_CHECK(x.is_contiguous(), #x " must be contiguous") #define CHECK_INPUT(x) CHECK_CUDA(x); CHECK_CONTIGUOUS(x) // Utilities void get_dims(at::Tensor x, int64_t& num, int64_t& chn, int64_t& sp) { num = x.size(0); chn = x.size(1); sp = 1; for (int64_t i = 2; i < x.ndimension(); ++i) sp *= x.size(i); } // Operations for reduce template struct SumOp { __device__ SumOp(const T *t, int c, int s) : tensor(t), chn(c), sp(s) {} __device__ __forceinline__ T operator()(int batch, int plane, int n) { return tensor[(batch * chn + plane) * sp + n]; } const T *tensor; const int chn; const int sp; }; template struct VarOp { __device__ VarOp(T m, const T *t, int c, int s) : mean(m), tensor(t), chn(c), sp(s) {} __device__ __forceinline__ T operator()(int batch, int plane, int n) { T val = tensor[(batch * chn + plane) * sp + n]; return (val - mean) * (val - mean); } const T mean; const T *tensor; const int chn; const int sp; }; template struct GradOp { __device__ GradOp(T _weight, T _bias, const T *_z, const T *_dz, int c, int s) : weight(_weight), bias(_bias), z(_z), dz(_dz), chn(c), sp(s) {} __device__ __forceinline__ Pair operator()(int batch, int plane, int n) { T _y = (z[(batch * chn + plane) * sp + n] - bias) / weight; T _dz = dz[(batch * chn + plane) * sp + n]; return Pair(_dz, _y * _dz); } const T weight; const T bias; const T *z; const T *dz; const int chn; const int sp; }; /*********** * mean_var ***********/ template __global__ void mean_var_kernel(const T *x, T *mean, T *var, int num, int chn, int sp) { int plane = blockIdx.x; T norm = T(1) / T(num * sp); T _mean = reduce>(SumOp(x, chn, sp), plane, num, chn, sp) * norm; __syncthreads(); T _var = reduce>(VarOp(_mean, x, chn, sp), plane, num, chn, sp) * norm; if (threadIdx.x == 0) { mean[plane] = _mean; var[plane] = _var; } } std::vector mean_var_cuda(at::Tensor x) { CHECK_INPUT(x); // Extract dimensions int64_t num, chn, sp; get_dims(x, num, chn, sp); // Prepare output tensors auto mean = at::empty(x.type(), {chn}); auto var = at::empty(x.type(), {chn}); // Run kernel dim3 blocks(chn); dim3 threads(getNumThreads(sp)); AT_DISPATCH_FLOATING_TYPES(x.type(), "mean_var_cuda", ([&] { mean_var_kernel<<>>( x.data(), mean.data(), var.data(), num, chn, sp); })); return {mean, var}; } /********** * forward **********/ template __global__ void forward_kernel(T *x, const T *mean, const T *var, const T *weight, const T *bias, bool affine, float eps, int num, int chn, int sp) { int plane = blockIdx.x; T _mean = mean[plane]; T _var = var[plane]; T _weight = affine ? abs(weight[plane]) + eps : T(1); T _bias = affine ? bias[plane] : T(0); T mul = rsqrt(_var + eps) * _weight; for (int batch = 0; batch < num; ++batch) { for (int n = threadIdx.x; n < sp; n += blockDim.x) { T _x = x[(batch * chn + plane) * sp + n]; T _y = (_x - _mean) * mul + _bias; x[(batch * chn + plane) * sp + n] = _y; } } } at::Tensor forward_cuda(at::Tensor x, at::Tensor mean, at::Tensor var, at::Tensor weight, at::Tensor bias, bool affine, float eps) { CHECK_INPUT(x); CHECK_INPUT(mean); CHECK_INPUT(var); CHECK_INPUT(weight); CHECK_INPUT(bias); // Extract dimensions int64_t num, chn, sp; get_dims(x, num, chn, sp); // Run kernel dim3 blocks(chn); dim3 threads(getNumThreads(sp)); AT_DISPATCH_FLOATING_TYPES(x.type(), "forward_cuda", ([&] { forward_kernel<<>>( x.data(), mean.data(), var.data(), weight.data(), bias.data(), affine, eps, num, chn, sp); })); return x; } /*********** * edz_eydz ***********/ template __global__ void edz_eydz_kernel(const T *z, const T *dz, const T *weight, const T *bias, T *edz, T *eydz, bool affine, float eps, int num, int chn, int sp) { int plane = blockIdx.x; T _weight = affine ? abs(weight[plane]) + eps : 1.f; T _bias = affine ? bias[plane] : 0.f; Pair res = reduce, GradOp>(GradOp(_weight, _bias, z, dz, chn, sp), plane, num, chn, sp); __syncthreads(); if (threadIdx.x == 0) { edz[plane] = res.v1; eydz[plane] = res.v2; } } std::vector edz_eydz_cuda(at::Tensor z, at::Tensor dz, at::Tensor weight, at::Tensor bias, bool affine, float eps) { CHECK_INPUT(z); CHECK_INPUT(dz); CHECK_INPUT(weight); CHECK_INPUT(bias); // Extract dimensions int64_t num, chn, sp; get_dims(z, num, chn, sp); auto edz = at::empty(z.type(), {chn}); auto eydz = at::empty(z.type(), {chn}); // Run kernel dim3 blocks(chn); dim3 threads(getNumThreads(sp)); AT_DISPATCH_FLOATING_TYPES(z.type(), "edz_eydz_cuda", ([&] { edz_eydz_kernel<<>>( z.data(), dz.data(), weight.data(), bias.data(), edz.data(), eydz.data(), affine, eps, num, chn, sp); })); return {edz, eydz}; } /*********** * backward ***********/ template __global__ void backward_kernel(const T *z, const T *dz, const T *var, const T *weight, const T *bias, const T *edz, const T *eydz, T *dx, T *dweight, T *dbias, bool affine, float eps, int num, int chn, int sp) { int plane = blockIdx.x; T _weight = affine ? abs(weight[plane]) + eps : 1.f; T _bias = affine ? bias[plane] : 0.f; T _var = var[plane]; T _edz = edz[plane]; T _eydz = eydz[plane]; T _mul = _weight * rsqrt(_var + eps); T count = T(num * sp); for (int batch = 0; batch < num; ++batch) { for (int n = threadIdx.x; n < sp; n += blockDim.x) { T _dz = dz[(batch * chn + plane) * sp + n]; T _y = (z[(batch * chn + plane) * sp + n] - _bias) / _weight; dx[(batch * chn + plane) * sp + n] = (_dz - _edz / count - _y * _eydz / count) * _mul; } } if (threadIdx.x == 0) { if (affine) { dweight[plane] = weight[plane] > 0 ? _eydz : -_eydz; dbias[plane] = _edz; } } } std::vector backward_cuda(at::Tensor z, at::Tensor dz, at::Tensor var, at::Tensor weight, at::Tensor bias, at::Tensor edz, at::Tensor eydz, bool affine, float eps) { CHECK_INPUT(z); CHECK_INPUT(dz); CHECK_INPUT(var); CHECK_INPUT(weight); CHECK_INPUT(bias); CHECK_INPUT(edz); CHECK_INPUT(eydz); // Extract dimensions int64_t num, chn, sp; get_dims(z, num, chn, sp); auto dx = at::zeros_like(z); auto dweight = at::zeros_like(weight); auto dbias = at::zeros_like(bias); // Run kernel dim3 blocks(chn); dim3 threads(getNumThreads(sp)); AT_DISPATCH_FLOATING_TYPES(z.type(), "backward_cuda", ([&] { backward_kernel<<>>( z.data(), dz.data(), var.data(), weight.data(), bias.data(), edz.data(), eydz.data(), dx.data(), dweight.data(), dbias.data(), affine, eps, num, chn, sp); })); return {dx, dweight, dbias}; } /************** * activations **************/ template inline void leaky_relu_backward_impl(T *z, T *dz, float slope, int64_t count) { // Create thrust pointers thrust::device_ptr th_z = thrust::device_pointer_cast(z); thrust::device_ptr th_dz = thrust::device_pointer_cast(dz); thrust::transform_if(th_dz, th_dz + count, th_z, th_dz, [slope] __device__ (const T& dz) { return dz * slope; }, [] __device__ (const T& z) { return z < 0; }); thrust::transform_if(th_z, th_z + count, th_z, [slope] __device__ (const T& z) { return z / slope; }, [] __device__ (const T& z) { return z < 0; }); } void leaky_relu_backward_cuda(at::Tensor z, at::Tensor dz, float slope) { CHECK_INPUT(z); CHECK_INPUT(dz); int64_t count = z.numel(); AT_DISPATCH_FLOATING_TYPES(z.type(), "leaky_relu_backward_cuda", ([&] { leaky_relu_backward_impl(z.data(), dz.data(), slope, count); })); } template inline void elu_backward_impl(T *z, T *dz, int64_t count) { // Create thrust pointers thrust::device_ptr th_z = thrust::device_pointer_cast(z); thrust::device_ptr th_dz = thrust::device_pointer_cast(dz); thrust::transform_if(th_dz, th_dz + count, th_z, th_z, th_dz, [] __device__ (const T& dz, const T& z) { return dz * (z + 1.); }, [] __device__ (const T& z) { return z < 0; }); thrust::transform_if(th_z, th_z + count, th_z, [] __device__ (const T& z) { return log1p(z); }, [] __device__ (const T& z) { return z < 0; }); } void elu_backward_cuda(at::Tensor z, at::Tensor dz) { CHECK_INPUT(z); CHECK_INPUT(dz); int64_t count = z.numel(); AT_DISPATCH_FLOATING_TYPES(z.type(), "leaky_relu_backward_cuda", ([&] { elu_backward_impl(z.data(), dz.data(), count); })); } ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/v2/modules/wider_resnet.py ================================================ from collections import OrderedDict import torch.nn as nn from modules import IdentityResidualBlock, ABN, GlobalAvgPool2d class WiderResNet(nn.Module): def __init__(self, structure, norm_act=ABN, classes=0): """Wider ResNet with pre-activation (identity mapping) blocks Parameters ---------- structure : list of int Number of residual blocks in each of the six modules of the network. norm_act : callable Function to create normalization / activation Module. classes : int If not `0` also include global average pooling and a fully-connected layer with `classes` outputs at the end of the network. """ super(WiderResNet, self).__init__() self.structure = structure if len(structure) != 6: raise ValueError("Expected a structure with six values") # Initial layers self.mod1 = nn.Sequential( OrderedDict( [("conv1", nn.Conv2d(3, 64, 3, stride=1, padding=1, bias=False))] ) ) # Groups of residual blocks in_channels = 64 channels = [ (128, 128), (256, 256), (512, 512), (512, 1024), (512, 1024, 2048), (1024, 2048, 4096), ] for mod_id, num in enumerate(structure): # Create blocks for module blocks = [] for block_id in range(num): blocks.append( ( "block%d" % (block_id + 1), IdentityResidualBlock( in_channels, channels[mod_id], norm_act=norm_act ), ) ) # Update channels and p_keep in_channels = channels[mod_id][-1] # Create module if mod_id <= 4: self.add_module( "pool%d" % (mod_id + 2), nn.MaxPool2d(3, stride=2, padding=1) ) self.add_module("mod%d" % (mod_id + 2), nn.Sequential(OrderedDict(blocks))) # Pooling and predictor self.bn_out = norm_act(in_channels) if classes != 0: self.classifier = nn.Sequential( OrderedDict( [ ("avg_pool", GlobalAvgPool2d()), ("fc", nn.Linear(in_channels, classes)), ] ) ) def forward(self, img): out = self.mod1(img) out = self.mod2(self.pool2(out)) out = self.mod3(self.pool3(out)) out = self.mod4(self.pool4(out)) out = self.mod5(self.pool5(out)) out = self.mod6(self.pool6(out)) out = self.mod7(out) out = self.bn_out(out) if hasattr(self, "classifier"): out = self.classifier(out) return out ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/vanilla unet/utils/cyclelr_callback.py ================================================ from keras.callbacks import * class CyclicLR(Callback): """This callback implements a cyclical learning rate policy (CLR). The method cycles the learning rate between two boundaries with some constant frequency, as detailed in this paper (https://arxiv.org/abs/1506.01186). The amplitude of the cycle can be scaled on a per-iteration or per-cycle basis. This class has three built-in policies, as put forth in the paper. "triangular": A basic triangular cycle w/ no amplitude scaling. "triangular2": A basic triangular cycle that scales initial amplitude by half each cycle. "exp_range": A cycle that scales initial amplitude by gamma**(cycle iterations) at each cycle iteration. For more detail, please see paper. # Example ```python clr = CyclicLR(base_lr=0.001, max_lr=0.006, step_size=2000., mode='triangular') model.fit(X_train, Y_train, callbacks=[clr]) ``` Class also supports custom scaling functions: ```python clr_fn = lambda x: 0.5*(1+np.sin(x*np.pi/2.)) clr = CyclicLR(base_lr=0.001, max_lr=0.006, step_size=2000., scale_fn=clr_fn, scale_mode='cycle') model.fit(X_train, Y_train, callbacks=[clr]) ``` # Arguments base_lr: initial learning rate which is the lower boundary in the cycle. max_lr: upper boundary in the cycle. Functionally, it defines the cycle amplitude (max_lr - base_lr). The lr at any cycle is the sum of base_lr and some scaling of the amplitude; therefore max_lr may not actually be reached depending on scaling function. step_size: number of training iterations per half cycle. Authors suggest setting step_size 2-8 x training iterations in epoch. mode: one of {triangular, triangular2, exp_range}. Default 'triangular'. Values correspond to policies detailed above. If scale_fn is not None, this argument is ignored. gamma: constant in 'exp_range' scaling function: gamma**(cycle iterations) scale_fn: Custom scaling policy defined by a single argument lambda function, where 0 <= scale_fn(x) <= 1 for all x >= 0. mode paramater is ignored scale_mode: {'cycle', 'iterations'}. Defines whether scale_fn is evaluated on cycle number or cycle iterations (training iterations since start of cycle). Default is 'cycle'. """ def __init__( self, base_lr=0.001, max_lr=0.006, step_size=2000.0, mode="triangular", gamma=1.0, scale_fn=None, scale_mode="cycle", ): super(CyclicLR, self).__init__() self.base_lr = base_lr self.max_lr = max_lr self.step_size = step_size self.mode = mode self.gamma = gamma if scale_fn == None: if self.mode == "triangular": self.scale_fn = lambda x: 1.0 self.scale_mode = "cycle" elif self.mode == "triangular2": self.scale_fn = lambda x: 1 / (2.0 ** (x - 1)) self.scale_mode = "cycle" elif self.mode == "exp_range": self.scale_fn = lambda x: gamma ** (x) self.scale_mode = "iterations" else: self.scale_fn = scale_fn self.scale_mode = scale_mode self.clr_iterations = 0.0 self.trn_iterations = 0.0 self.history = {} self._reset() def _reset(self, new_base_lr=None, new_max_lr=None, new_step_size=None): """Resets cycle iterations. Optional boundary/step size adjustment. """ if new_base_lr != None: self.base_lr = new_base_lr if new_max_lr != None: self.max_lr = new_max_lr if new_step_size != None: self.step_size = new_step_size self.clr_iterations = 0.0 def clr(self): cycle = np.floor(1 + self.clr_iterations / (2 * self.step_size)) x = np.abs(self.clr_iterations / self.step_size - 2 * cycle + 1) if self.scale_mode == "cycle": return self.base_lr + (self.max_lr - self.base_lr) * np.maximum( 0, (1 - x) ) * self.scale_fn(cycle) else: return self.base_lr + (self.max_lr - self.base_lr) * np.maximum( 0, (1 - x) ) * self.scale_fn(self.clr_iterations) def on_train_begin(self, logs={}): logs = logs or {} if self.clr_iterations == 0: K.set_value(self.model.optimizer.lr, self.base_lr) else: K.set_value(self.model.optimizer.lr, self.clr()) def on_batch_end(self, epoch, logs=None): logs = logs or {} self.trn_iterations += 1 self.clr_iterations += 1 self.history.setdefault("lr", []).append(K.get_value(self.model.optimizer.lr)) self.history.setdefault("iterations", []).append(self.trn_iterations) for k, v in logs.items(): self.history.setdefault(k, []).append(v) K.set_value(self.model.optimizer.lr, self.clr()) ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/vanilla unet/utils/lovasz_losses_tf.py ================================================ # https://github.com/bermanmaxim/LovaszSoftmax/blob/master/tensorflow/lovasz_losses_tf.py """ Lovasz-Softmax and Jaccard hinge loss in Tensorflow Maxim Berman 2018 ESAT-PSI KU Leuven (MIT License) """ from __future__ import print_function, division import tensorflow as tf import numpy as np def lovasz_grad(gt_sorted): """ Computes gradient of the Lovasz extension w.r.t sorted errors See Alg. 1 in paper """ gts = tf.reduce_sum(gt_sorted) intersection = gts - tf.cumsum(gt_sorted) union = gts + tf.cumsum(1.0 - gt_sorted) jaccard = 1.0 - intersection / union jaccard = tf.concat((jaccard[0:1], jaccard[1:] - jaccard[:-1]), 0) return jaccard # --------------------------- BINARY LOSSES --------------------------- def lovasz_hinge(logits, labels, per_image=True, ignore=None): """ Binary Lovasz hinge loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) per_image: compute the loss per image instead of per batch ignore: void class id """ if per_image: def treat_image(log_lab): log, lab = log_lab log, lab = tf.expand_dims(log, 0), tf.expand_dims(lab, 0) log, lab = flatten_binary_scores(log, lab, ignore) return lovasz_hinge_flat(log, lab) losses = tf.map_fn(treat_image, (logits, labels), dtype=tf.float32) loss = tf.reduce_mean(losses) else: loss = lovasz_hinge_flat(*flatten_binary_scores(logits, labels, ignore)) return loss def lovasz_hinge_flat(logits, labels): """ Binary Lovasz hinge loss logits: [P] Variable, logits at each prediction (between -\infty and +\infty) labels: [P] Tensor, binary ground truth labels (0 or 1) ignore: label to ignore """ def compute_loss(): labelsf = tf.cast(labels, logits.dtype) signs = 2.0 * labelsf - 1.0 errors = 1.0 - logits * tf.stop_gradient(signs) errors_sorted, perm = tf.nn.top_k( errors, k=tf.shape(errors)[0], name="descending_sort" ) gt_sorted = tf.gather(labelsf, perm) grad = lovasz_grad(gt_sorted) loss = tf.tensordot( tf.nn.relu(errors_sorted), tf.stop_gradient(grad), 1, name="loss_non_void" ) return loss # deal with the void prediction case (only void pixels) loss = tf.cond( tf.equal(tf.shape(logits)[0], 0), lambda: tf.reduce_sum(logits) * 0.0, compute_loss, strict=True, name="loss", ) return loss def flatten_binary_scores(scores, labels, ignore=None): """ Flattens predictions in the batch (binary case) Remove labels equal to 'ignore' """ scores = tf.reshape(scores, (-1,)) labels = tf.reshape(labels, (-1,)) if ignore is None: return scores, labels valid = tf.not_equal(labels, ignore) vscores = tf.boolean_mask(scores, valid, name="valid_scores") vlabels = tf.boolean_mask(labels, valid, name="valid_labels") return vscores, vlabels # --------------------------- MULTICLASS LOSSES --------------------------- def lovasz_softmax( probas, labels, classes="all", per_image=False, ignore=None, order="BHWC" ): """ Multi-class Lovasz-Softmax loss probas: [B, H, W, C] or [B, C, H, W] Variable, class probabilities at each prediction (between 0 and 1) labels: [B, H, W] Tensor, ground truth labels (between 0 and C - 1) classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. per_image: compute the loss per image instead of per batch ignore: void class labels order: use BHWC or BCHW """ if per_image: def treat_image(prob_lab): prob, lab = prob_lab prob, lab = tf.expand_dims(prob, 0), tf.expand_dims(lab, 0) prob, lab = flatten_probas(prob, lab, ignore, order) return lovasz_softmax_flat(prob, lab, classes=classes) losses = tf.map_fn(treat_image, (probas, labels), dtype=tf.float32) loss = tf.reduce_mean(losses) else: loss = lovasz_softmax_flat( *flatten_probas(probas, labels, ignore, order), classes=classes ) return loss def lovasz_softmax_flat(probas, labels, classes="all"): """ Multi-class Lovasz-Softmax loss probas: [P, C] Variable, class probabilities at each prediction (between 0 and 1) labels: [P] Tensor, ground truth labels (between 0 and C - 1) classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. """ C = probas.shape[1] losses = [] present = [] class_to_sum = list(range(C)) if classes in ["all", "present"] else classes for c in class_to_sum: fg = tf.cast(tf.equal(labels, c), probas.dtype) # foreground for class c if classes == "present": present.append(tf.reduce_sum(fg) > 0) errors = tf.abs(fg - probas[:, c]) errors_sorted, perm = tf.nn.top_k( errors, k=tf.shape(errors)[0], name="descending_sort_{}".format(c) ) fg_sorted = tf.gather(fg, perm) grad = lovasz_grad(fg_sorted) losses.append( tf.tensordot( errors_sorted, tf.stop_gradient(grad), 1, name="loss_class_{}".format(c) ) ) if len(class_to_sum) == 1: # short-circuit mean when only one class return losses[0] losses_tensor = tf.stack(losses) if classes == "present": present = tf.stack(present) losses_tensor = tf.boolean_mask(losses_tensor, present) loss = tf.reduce_mean(losses_tensor) return loss def flatten_probas(probas, labels, ignore=None, order="BHWC"): """ Flattens predictions in the batch """ if order == "BCHW": probas = tf.transpose(probas, (0, 2, 3, 1), name="BCHW_to_BHWC") order = "BHWC" if order != "BHWC": raise NotImplementedError("Order {} unknown".format(order)) C = probas.shape[3] probas = tf.reshape(probas, (-1, C)) labels = tf.reshape(labels, (-1,)) if ignore is None: return probas, labels valid = tf.not_equal(labels, ignore) vprobas = tf.boolean_mask(probas, valid, name="valid_probas") vlabels = tf.boolean_mask(labels, valid, name="valid_labels") return vprobas, vlabels ================================================ FILE: DEEP LEARNING/segmentation/Kaggle TGS Salt Identification Challenge/vanilla unet/utils/zf_unet_224_model.py ================================================ # coding: utf-8 """ - "ZF_UNET_224" Model based on UNET code from following paper: https://arxiv.org/abs/1505.04597 - This model used to get 2nd place in DSTL competition: https://www.kaggle.com/c/dstl-satellite-imagery-feature-detection - For training used DICE coefficient: https://en.wikipedia.org/wiki/S%C3%B8rensen%E2%80%93Dice_coefficient - Input shape for model is 224x224 (the same as for other popular CNNs like VGG or ResNet) - It has 3 input channels (to process standard RGB (BGR) images). You can change it with variable "INPUT_CHANNELS" - It trained on random image generator with random light shapes (ellipses) on dark background with noise (< 10%). - In most cases model ZF_UNET_224 is ok to be used without pretrained weights. """ __author__ = "ZFTurbo: https://kaggle.com/zfturbo" from keras.models import Model from keras.layers import Input, Conv2D, MaxPooling2D, UpSampling2D from keras.layers.normalization import BatchNormalization from keras.layers.core import SpatialDropout2D, Activation from keras import backend as K from keras.layers.merge import concatenate from keras.utils.data_utils import get_file # Number of image channels (for example 3 in case of RGB, or 1 for grayscale images) INPUT_CHANNELS = 3 # Number of output masks (1 in case you predict only one type of objects) OUTPUT_MASK_CHANNELS = 1 # Pretrained weights ZF_UNET_224_WEIGHT_PATH = "https://github.com/ZFTurbo/ZF_UNET_224_Pretrained_Model/releases/download/v1.0/zf_unet_224.h5" def preprocess_input(x): x /= 256 x -= 0.5 return x def dice_coef(y_true, y_pred): y_true_f = K.flatten(y_true) y_pred_f = K.flatten(y_pred) intersection = K.sum(y_true_f * y_pred_f) return (2.0 * intersection + 1.0) / (K.sum(y_true_f) + K.sum(y_pred_f) + 1.0) def jacard_coef(y_true, y_pred): y_true_f = K.flatten(y_true) y_pred_f = K.flatten(y_pred) intersection = K.sum(y_true_f * y_pred_f) return (intersection + 1.0) / ( K.sum(y_true_f) + K.sum(y_pred_f) - intersection + 1.0 ) def jacard_coef_loss(y_true, y_pred): return -jacard_coef(y_true, y_pred) def dice_coef_loss(y_true, y_pred): return -dice_coef(y_true, y_pred) def double_conv_layer(x, size, dropout=0.0, batch_norm=True): if K.image_dim_ordering() == "th": axis = 1 else: axis = 3 conv = Conv2D(size, (3, 3), padding="same")(x) if batch_norm is True: conv = BatchNormalization(axis=axis)(conv) conv = Activation("relu")(conv) conv = Conv2D(size, (3, 3), padding="same")(conv) if batch_norm is True: conv = BatchNormalization(axis=axis)(conv) conv = Activation("relu")(conv) if dropout > 0: conv = SpatialDropout2D(dropout)(conv) return conv def ZF_UNET_224(dropout_val=0.2, weights=None): if K.image_dim_ordering() == "th": inputs = Input((INPUT_CHANNELS, 224, 224)) axis = 1 else: inputs = Input((224, 224, INPUT_CHANNELS)) axis = 3 filters = 32 conv_224 = double_conv_layer(inputs, filters) pool_112 = MaxPooling2D(pool_size=(2, 2))(conv_224) conv_112 = double_conv_layer(pool_112, 2 * filters) pool_56 = MaxPooling2D(pool_size=(2, 2))(conv_112) conv_56 = double_conv_layer(pool_56, 4 * filters) pool_28 = MaxPooling2D(pool_size=(2, 2))(conv_56) conv_28 = double_conv_layer(pool_28, 8 * filters) pool_14 = MaxPooling2D(pool_size=(2, 2))(conv_28) conv_14 = double_conv_layer(pool_14, 16 * filters) pool_7 = MaxPooling2D(pool_size=(2, 2))(conv_14) conv_7 = double_conv_layer(pool_7, 32 * filters) up_14 = concatenate([UpSampling2D(size=(2, 2))(conv_7), conv_14], axis=axis) up_conv_14 = double_conv_layer(up_14, 16 * filters) up_28 = concatenate([UpSampling2D(size=(2, 2))(up_conv_14), conv_28], axis=axis) up_conv_28 = double_conv_layer(up_28, 8 * filters) up_56 = concatenate([UpSampling2D(size=(2, 2))(up_conv_28), conv_56], axis=axis) up_conv_56 = double_conv_layer(up_56, 4 * filters) up_112 = concatenate([UpSampling2D(size=(2, 2))(up_conv_56), conv_112], axis=axis) up_conv_112 = double_conv_layer(up_112, 2 * filters) up_224 = concatenate([UpSampling2D(size=(2, 2))(up_conv_112), conv_224], axis=axis) up_conv_224 = double_conv_layer(up_224, filters, dropout_val) conv_final = Conv2D(OUTPUT_MASK_CHANNELS, (1, 1))(up_conv_224) conv_final = Activation("sigmoid")(conv_final) model = Model(inputs, conv_final, name="ZF_UNET_224") if ( weights == "generator" and axis == 3 and INPUT_CHANNELS == 3 and OUTPUT_MASK_CHANNELS == 1 ): weights_path = get_file( "zf_unet_224_weights_tf_dim_ordering_tf_generator.h5", ZF_UNET_224_WEIGHT_PATH, cache_subdir="models", file_hash="203146f209baf34ac0d793e1691f1ab7", ) model.load_weights(weights_path) return model ================================================ FILE: DEEP LEARNING/segmentation/Segmentation pipeline/README.MD ================================================ ### Segmentation model - Data Massachusetts Roads Dataset from https://www.cs.toronto.edu/~vmnih/data/ - **get dataset.py** - script to download dataset - segmentation pipeline.ipynb - pipeline itself Link to medium article https://medium.com/@insafashrapov/road-detection-using-segmentation-models-and-albumentations-libraries-on-keras-d5434eaf73a8 Link to dataset uploaded to kaggle https://www.kaggle.com/insaff/massachusetts-roads-dataset **Reference** MnihThesis, author = {Volodymyr Mnih}, title = {Machine Learning for Aerial Image Labeling}, school = {University of Toronto}, year = {2013} ================================================ FILE: DEEP LEARNING/segmentation/Segmentation pipeline/get dataset.py ================================================ # code from https://github.com/BBarbosa/tflearn-image-recognition-toolkit/blob/4a0528dcfb206b1e45997f2fbc097aafacfa0fa0/scripts/html_link_parser.py import re import argparse from PIL import Image from io import BytesIO from bs4 import BeautifulSoup from skimage import io as skio from urllib.request import urlopen import os def html_url_parser(url, save_dir, show=False, wait=False): """ HTML parser to download images from URL. Params:\n `url` - Image url\n `save_dir` - Directory to save extracted images\n `show` - Show downloaded image\n `wait` - Press key to continue executing """ website = urlopen(url) html = website.read() soup = BeautifulSoup(html, "html5lib") for image_id, link in enumerate(soup.find_all("a", href=True)): if image_id == 0: continue img_url = link["href"] try: if os.path.isfile(save_dir + "img-%d.png" % image_id) == False: print("[INFO] Downloading image from URL:", link["href"]) image = Image.open(urlopen(img_url)) image.save(save_dir + "img-%d.png" % image_id, "PNG") if show: image.show() else: print("skipped") except KeyboardInterrupt: print("[EXCEPTION] Pressed 'Ctrl+C'") break except Exception as image_exception: print("[EXCEPTION]", image_exception) continue if wait: key = input("[INFO] Press any key to continue ('q' to exit)... ") if key.lower() == "q": break # /////////////////////////////////////////////////// # Main method # /////////////////////////////////////////////////// if __name__ == "__main__": URL_TRAIN_IMG = ( "https://www.cs.toronto.edu/~vmnih/data/mass_roads/train/sat/index.html" ) URL_TRAIN_GT = ( "https://www.cs.toronto.edu/~vmnih/data/mass_roads/train/map/index.html" ) URL_TEST_IMG = ( "https://www.cs.toronto.edu/~vmnih/data/mass_roads/valid/sat/index.html" ) URL_TEST_GT = ( "https://www.cs.toronto.edu/~vmnih/data/mass_roads/valid/map/index.html" ) html_url_parser(url=URL_TRAIN_IMG, save_dir="./road_segmentation/training/input/") html_url_parser(url=URL_TRAIN_GT, save_dir="./road_segmentation/training/output/") html_url_parser(url=URL_TEST_IMG, save_dir="./road_segmentation/testing/input/") html_url_parser(url=URL_TEST_GT, save_dir="./road_segmentation/testing/output/") print("[INFO] All done!") ================================================ FILE: DEEP LEARNING/segmentation/Segmentation pipeline/segmentation pipeline.html ================================================ segmentation pipeline

Install libraries first

Be sure keras with tensorflow installed !conda install -c conda-forge keras

In [ ]:
!pip install git+https://github.com/qubvel/efficientnet
!pip install git+https://github.com/qubvel/classification_models.git
!pip install git+https://github.com/qubvel/segmentation_models
!pip install -U git+https://github.com/albu/albumentations
!pip install tta-wrapper

Defining data generator

In [1]:
from keras.utils import Sequence
from skimage.io import imread
import os
import matplotlib.pyplot as plt
from sklearn.utils import shuffle
import tensorflow as tf

tf.logging.set_verbosity(tf.logging.ERROR)
%load_ext autoreload
%autoreload 2
%matplotlib inline
from albumentations import (Blur, Compose, HorizontalFlip, HueSaturationValue,
                            IAAEmboss, IAASharpen, JpegCompression, OneOf,
                            RandomBrightness, RandomBrightnessContrast,
                            RandomContrast, RandomCrop, RandomGamma,
                            RandomRotate90, RGBShift, ShiftScaleRotate,
                            Transpose, VerticalFlip, ElasticTransform, GridDistortion, OpticalDistortion)
 
import albumentations as albu
from albumentations import Resize

class DataGeneratorFolder(Sequence):
    def __init__(self, root_dir=r'../data/val_test', image_folder='img/', mask_folder='masks/', 
                 batch_size=1, image_size=768, nb_y_features=1, 
                 augmentation=None,
                 suffle=True):
        self.image_filenames = listdir_fullpath(os.path.join(root_dir, image_folder))
        self.mask_names = listdir_fullpath(os.path.join(root_dir, mask_folder))
        self.batch_size = batch_size
        self.currentIndex = 0
        self.augmentation = augmentation
        self.image_size = image_size
        self.nb_y_features = nb_y_features
        self.indexes = None
        self.suffle = suffle
        
    def __len__(self):
        """
        Calculates size of batch
        """
        return int(np.ceil(len(self.image_filenames) / (self.batch_size)))

    def on_epoch_end(self):
        """Updates indexes after each epoch"""
        if self.suffle==True:
            self.image_filenames, self.mask_names = shuffle(self.image_filenames, self.mask_names)
        
    def read_image_mask(self, image_name, mask_name):
        return imread(image_name)/255, (imread(mask_name, as_gray=True) > 0).astype(np.int8)

    def __getitem__(self, index):
        """
        Generate one batch of data
        
        """
        # Generate indexes of the batch
        data_index_min = int(index*self.batch_size)
        data_index_max = int(min((index+1)*self.batch_size, len(self.image_filenames)))
        
        indexes = self.image_filenames[data_index_min:data_index_max]

        this_batch_size = len(indexes) # The last batch can be smaller than the others
        
        # Defining dataset
        X = np.empty((this_batch_size, self.image_size, self.image_size, 3), dtype=np.float32)
        y = np.empty((this_batch_size, self.image_size, self.image_size, self.nb_y_features), dtype=np.uint8)

        for i, sample_index in enumerate(indexes):

            X_sample, y_sample = self.read_image_mask(self.image_filenames[index * self.batch_size + i], 
                                                    self.mask_names[index * self.batch_size + i])
                 
            # if augmentation is defined, we assume its a train set
            if self.augmentation is not None:
                  
                # Augmentation code
                augmented = self.augmentation(self.image_size)(image=X_sample, mask=y_sample)
                image_augm = augmented['image']
                mask_augm = augmented['mask'].reshape(self.image_size, self.image_size, self.nb_y_features)
                X[i, ...] = np.clip(image_augm, a_min = 0, a_max=1)
                y[i, ...] = mask_augm
            
            # if augmentation isnt defined, we assume its a test set. 
            # Because test images can have different sizes we resize it to be divisable by 32
            elif self.augmentation is None and self.batch_size ==1:
                X_sample, y_sample = self.read_image_mask(self.image_filenames[index * 1 + i], 
                                                      self.mask_names[index * 1 + i])
                augmented = Resize(height=(X_sample.shape[0]//32)*32, width=(X_sample.shape[1]//32)*32)(image = X_sample, mask = y_sample)
                X_sample, y_sample = augmented['image'], augmented['mask']

                return X_sample.reshape(1, X_sample.shape[0], X_sample.shape[1], 3).astype(np.float32),\
                       y_sample.reshape(1, X_sample.shape[0], X_sample.shape[1], self.nb_y_features).astype(np.uint8)

        return X, y
Using TensorFlow backend.

Data augmentation - albumentations

In [14]:
def aug_with_crop(image_size = 256, crop_prob = 1):
    return Compose([
        RandomCrop(width = image_size, height = image_size, p=crop_prob),
        HorizontalFlip(p=0.5),
        VerticalFlip(p=0.5),
        RandomRotate90(p=0.5),
        Transpose(p=0.5),
        ShiftScaleRotate(shift_limit=0.01, scale_limit=0.04, rotate_limit=0, p=0.25),
        RandomBrightnessContrast(p=0.5),
        RandomGamma(p=0.25),
        IAAEmboss(p=0.25),
        Blur(p=0.01, blur_limit = 3),
        OneOf([
            ElasticTransform(p=0.5, alpha=120, sigma=120 * 0.05, alpha_affine=120 * 0.03),
            GridDistortion(p=0.5),
            OpticalDistortion(p=1, distort_limit=2, shift_limit=0.5)                  
        ], p=0.8)
    ], p = 1)

test_generator = DataGeneratorFolder(root_dir = './data/road_segmentation_ideal/training',
                                     image_folder = 'input/', 
                                     mask_folder = 'output/',
                                     batch_size = 1,
                                     nb_y_features = 1, augmentation = aug_with_crop)
Xtest, ytest = test_generator.__getitem__(0)
plt.imshow(Xtest[0])     
plt.show()
plt.imshow(ytest[0, :,:,0])
plt.show() 
In [15]:
# setting generators
test_generator = DataGeneratorFolder(root_dir = './data/road_segmentation_ideal/training', 
                           image_folder = 'input/', 
                           mask_folder = 'output/', 
                                   batch_size=1,
                                   nb_y_features = 1, augmentation = False)

train_generator = DataGeneratorFolder(root_dir = './data/road_segmentation_ideal/training', 
                                      image_folder = 'input/', 
                                      mask_folder = 'output/', 
                                      augmentation = aug_with_crop,
                                      batch_size=4,
                                      image_size=512,
                                      nb_y_features = 1, augmentation = True)

Callbacks

In [16]:
from keras.callbacks import ModelCheckpoint, ReduceLROnPlateau, EarlyStopping, TensorBoard

# reduces learning rate on plateau
lr_reducer = ReduceLROnPlateau(factor=0.1,
                               cooldown= 10,
                               patience=10,verbose =1,
                               min_lr=0.1e-5)
mode_autosave = ModelCheckpoint("./weights/road_crop.efficientnetb0imgsize.h5",monitor='val_iou_score', 
                                   mode = 'max', save_best_only=True, verbose=1, period =10)

# stop learining as metric on validatopn stop increasing
early_stopping = EarlyStopping(patience=10, verbose=1, mode = 'auto') 

# tensorboard for monitoring logs
tensorboard = TensorBoard(log_dir='./logs/tenboard', histogram_freq=0,
                          write_graph=True, write_images=False)

callbacks = [mode_autosave, lr_reducer, tensorboard, early_stopping]
In [18]:
from segmentation_models import Unet
from keras.optimizers import Adam
from segmentation_models.losses import bce_jaccard_loss, bce_dice_loss
from segmentation_models.metrics import iou_score

def plot_training_history(history):
    """
    Plots model training history 
    """
    fig, (ax_loss, ax_acc) = plt.subplots(1, 2, figsize=(15,5))
    ax_loss.plot(history.epoch, history.history["loss"], label="Train loss")
    ax_loss.plot(history.epoch, history.history["val_loss"], label="Validation loss")
    ax_loss.legend()
    ax_acc.plot(history.epoch, history.history["iou_score"], label="Train iou")
    ax_acc.plot(history.epoch, history.history["val_iou_score"], label="Validation iou")
    ax_acc.legend()
    
model = Unet(backbone_name = 'efficientnetb0', encoder_weights='imagenet', encoder_freeze = False)
model.compile(optimizer = Adam(),
                    loss=bce_jaccard_loss, metrics=[iou_score])

history = model.fit_generator(train_generator, shuffle =True,
                  epochs=50, workers=4, use_multiprocessing=True,
                  validation_data = test_generator, 
                  verbose = 1, callbacks=callbacks)
#plotting history
plot_training_history(history)
Epoch 1/50
201/201 [==============================] - 308s 2s/step - loss: 0.8607 - iou_score: 0.2964 - val_loss: 0.6873 - val_iou_score: 0.4477
Epoch 2/50
201/201 [==============================] - 291s 1s/step - loss: 0.7180 - iou_score: 0.4195 - val_loss: 0.6818 - val_iou_score: 0.4479
Epoch 3/50
201/201 [==============================] - 290s 1s/step - loss: 0.7066 - iou_score: 0.4270 - val_loss: 0.6136 - val_iou_score: 0.5049
Epoch 4/50
201/201 [==============================] - 291s 1s/step - loss: 0.6862 - iou_score: 0.4436 - val_loss: 0.6063 - val_iou_score: 0.5083
Epoch 5/50
201/201 [==============================] - 290s 1s/step - loss: 0.6709 - iou_score: 0.4589 - val_loss: 0.6209 - val_iou_score: 0.4912
Epoch 6/50
201/201 [==============================] - 290s 1s/step - loss: 0.6793 - iou_score: 0.4518 - val_loss: 0.6389 - val_iou_score: 0.4839
Epoch 7/50
201/201 [==============================] - 290s 1s/step - loss: 0.6702 - iou_score: 0.4567 - val_loss: 0.6070 - val_iou_score: 0.5002
Epoch 8/50
201/201 [==============================] - 291s 1s/step - loss: 0.6550 - iou_score: 0.4702 - val_loss: 0.5994 - val_iou_score: 0.5132
Epoch 9/50
201/201 [==============================] - 291s 1s/step - loss: 0.6570 - iou_score: 0.4658 - val_loss: 0.5856 - val_iou_score: 0.5263
Epoch 10/50
201/201 [==============================] - 291s 1s/step - loss: 0.6482 - iou_score: 0.4759 - val_loss: 0.5845 - val_iou_score: 0.5207

Epoch 00010: val_iou_score improved from -inf to 0.52067, saving model to ./weights/road_crop.efficientnetb0imgsize.h5
Epoch 11/50
201/201 [==============================] - 290s 1s/step - loss: 0.6404 - iou_score: 0.4818 - val_loss: 0.5923 - val_iou_score: 0.5205
Epoch 12/50
201/201 [==============================] - 290s 1s/step - loss: 0.6368 - iou_score: 0.4827 - val_loss: 0.5742 - val_iou_score: 0.5340
Epoch 13/50
201/201 [==============================] - 291s 1s/step - loss: 0.6245 - iou_score: 0.4945 - val_loss: 0.5822 - val_iou_score: 0.5259
Epoch 14/50
201/201 [==============================] - 291s 1s/step - loss: 0.6298 - iou_score: 0.4905 - val_loss: 0.5937 - val_iou_score: 0.5173
Epoch 15/50
201/201 [==============================] - 290s 1s/step - loss: 0.6282 - iou_score: 0.4919 - val_loss: 0.5850 - val_iou_score: 0.5257
Epoch 16/50
201/201 [==============================] - 290s 1s/step - loss: 0.6343 - iou_score: 0.4849 - val_loss: 0.5658 - val_iou_score: 0.5369
Epoch 17/50
201/201 [==============================] - 290s 1s/step - loss: 0.6282 - iou_score: 0.4909 - val_loss: 0.5731 - val_iou_score: 0.5397
Epoch 18/50
201/201 [==============================] - 290s 1s/step - loss: 0.6224 - iou_score: 0.4962 - val_loss: 0.5919 - val_iou_score: 0.5250
Epoch 19/50
201/201 [==============================] - 290s 1s/step - loss: 0.6118 - iou_score: 0.5031 - val_loss: 0.5711 - val_iou_score: 0.5338
Epoch 20/50
201/201 [==============================] - 291s 1s/step - loss: 0.6101 - iou_score: 0.5037 - val_loss: 0.5616 - val_iou_score: 0.5363

Epoch 00020: val_iou_score improved from 0.52067 to 0.53633, saving model to ./weights/road_crop.efficientnetb0imgsize.h5
Epoch 21/50
201/201 [==============================] - 290s 1s/step - loss: 0.6102 - iou_score: 0.5045 - val_loss: 0.5777 - val_iou_score: 0.5225
Epoch 22/50
201/201 [==============================] - 290s 1s/step - loss: 0.6102 - iou_score: 0.5046 - val_loss: 0.5790 - val_iou_score: 0.5381
Epoch 23/50
201/201 [==============================] - 290s 1s/step - loss: 0.6153 - iou_score: 0.4994 - val_loss: 0.5836 - val_iou_score: 0.5287
Epoch 24/50
201/201 [==============================] - 290s 1s/step - loss: 0.5969 - iou_score: 0.5160 - val_loss: 0.5593 - val_iou_score: 0.5472
Epoch 25/50
201/201 [==============================] - 290s 1s/step - loss: 0.6192 - iou_score: 0.4986 - val_loss: 0.5723 - val_iou_score: 0.5279
Epoch 26/50
201/201 [==============================] - 291s 1s/step - loss: 0.5950 - iou_score: 0.5181 - val_loss: 0.5639 - val_iou_score: 0.5463
Epoch 27/50
201/201 [==============================] - 290s 1s/step - loss: 0.6074 - iou_score: 0.5067 - val_loss: 0.5740 - val_iou_score: 0.5318
Epoch 28/50
201/201 [==============================] - 291s 1s/step - loss: 0.5991 - iou_score: 0.5132 - val_loss: 0.5667 - val_iou_score: 0.5434
Epoch 29/50
201/201 [==============================] - 290s 1s/step - loss: 0.5986 - iou_score: 0.5154 - val_loss: 0.5636 - val_iou_score: 0.5446
Epoch 30/50
201/201 [==============================] - 291s 1s/step - loss: 0.6024 - iou_score: 0.5131 - val_loss: 0.5771 - val_iou_score: 0.5296

Epoch 00030: val_iou_score did not improve from 0.53633
Epoch 31/50
201/201 [==============================] - 291s 1s/step - loss: 0.5939 - iou_score: 0.5175 - val_loss: 0.5554 - val_iou_score: 0.5507
Epoch 32/50
201/201 [==============================] - 290s 1s/step - loss: 0.5995 - iou_score: 0.5137 - val_loss: 0.5551 - val_iou_score: 0.5447
Epoch 33/50
201/201 [==============================] - 291s 1s/step - loss: 0.5952 - iou_score: 0.5158 - val_loss: 0.5561 - val_iou_score: 0.5488
Epoch 34/50
201/201 [==============================] - 291s 1s/step - loss: 0.5996 - iou_score: 0.5136 - val_loss: 0.6011 - val_iou_score: 0.5086
Epoch 35/50
201/201 [==============================] - 291s 1s/step - loss: 0.5967 - iou_score: 0.5150 - val_loss: 0.5804 - val_iou_score: 0.5313
Epoch 36/50
201/201 [==============================] - 290s 1s/step - loss: 0.5961 - iou_score: 0.5153 - val_loss: 0.5516 - val_iou_score: 0.5478
Epoch 37/50
201/201 [==============================] - 291s 1s/step - loss: 0.5880 - iou_score: 0.5220 - val_loss: 0.5590 - val_iou_score: 0.5374
Epoch 38/50
201/201 [==============================] - 290s 1s/step - loss: 0.5845 - iou_score: 0.5242 - val_loss: 0.5659 - val_iou_score: 0.5387
Epoch 39/50
201/201 [==============================] - 290s 1s/step - loss: 0.5946 - iou_score: 0.5197 - val_loss: 0.5705 - val_iou_score: 0.5396
Epoch 40/50
201/201 [==============================] - 291s 1s/step - loss: 0.5850 - iou_score: 0.5258 - val_loss: 0.5555 - val_iou_score: 0.5424

Epoch 00040: val_iou_score improved from 0.53633 to 0.54237, saving model to ./weights/road_crop.efficientnetb0imgsize.h5
Epoch 41/50
201/201 [==============================] - 289s 1s/step - loss: 0.5863 - iou_score: 0.5234 - val_loss: 0.5666 - val_iou_score: 0.5360
Epoch 42/50
201/201 [==============================] - 290s 1s/step - loss: 0.5917 - iou_score: 0.5190 - val_loss: 0.5684 - val_iou_score: 0.5423
Epoch 43/50
201/201 [==============================] - 291s 1s/step - loss: 0.5812 - iou_score: 0.5287 - val_loss: 0.5541 - val_iou_score: 0.5473
Epoch 44/50
201/201 [==============================] - 290s 1s/step - loss: 0.5773 - iou_score: 0.5318 - val_loss: 0.5534 - val_iou_score: 0.5502
Epoch 45/50
201/201 [==============================] - 291s 1s/step - loss: 0.5835 - iou_score: 0.5255 - val_loss: 0.5532 - val_iou_score: 0.5525
Epoch 46/50
201/201 [==============================] - 290s 1s/step - loss: 0.5808 - iou_score: 0.5281 - val_loss: 0.5639 - val_iou_score: 0.5435

Epoch 00046: ReduceLROnPlateau reducing learning rate to 0.00010000000474974513.
Epoch 47/50
201/201 [==============================] - 297s 1s/step - loss: 0.5734 - iou_score: 0.5337 - val_loss: 0.5472 - val_iou_score: 0.5533
Epoch 48/50
201/201 [==============================] - 303s 2s/step - loss: 0.5761 - iou_score: 0.5327 - val_loss: 0.5428 - val_iou_score: 0.5564
Epoch 49/50
201/201 [==============================] - 295s 1s/step - loss: 0.5681 - iou_score: 0.5385 - val_loss: 0.5387 - val_iou_score: 0.5614
Epoch 50/50
201/201 [==============================] - 293s 1s/step - loss: 0.5742 - iou_score: 0.5338 - val_loss: 0.5386 - val_iou_score: 0.5619

Epoch 00050: val_iou_score improved from 0.54237 to 0.56187, saving model to ./weights/road_crop.efficientnetb0imgsize.h5

Inference and model quality check

Single image

In [45]:
def iou_metric(y_true_in, y_pred_in):
    labels = y_true_in
    y_pred = y_pred_in

    temp1 = np.histogram2d(labels.flatten(), y_pred.flatten(), bins=([0,0.5,1], [0,0.5, 1]))

    intersection = temp1[0]

    area_true = np.histogram(labels,bins=[0,0.5,1])[0]
    area_pred = np.histogram(y_pred, bins=[0,0.5,1])[0]
    area_true = np.expand_dims(area_true, -1)
    area_pred = np.expand_dims(area_pred, 0)

    # Compute union
    union = area_true + area_pred - intersection
  
    # Exclude background from the analysis
    intersection = intersection[1:,1:]
    intersection[intersection == 0] = 1e-9
    
    union = union[1:,1:]
    union[union == 0] = 1e-9

    iou = intersection / union
    return iou

def plot_mask_gt_image(mask, groud_truth, img):
    fig, axs = plt.subplots(1,3, figsize=(20,10))
    axs[0].imshow(mask, cmap="Blues")
    axs[1].imshow(groud_truth, cmap="Blues")
    axs[2].imshow(img)
    plt.show()
    
def iou_metric_batch(y_true_in, y_pred_in):
    y_pred_in = y_pred_in
    batch_size = y_true_in.shape[0]
    metric = []
    for batch in range(batch_size):
        value = iou_metric(y_true_in[batch], y_pred_in[batch])
        metric.append(value)
    return np.mean(metric)

# to get single image and prediction quality
Xtest, y_test  = test_generator.__getitem__(1)
predicted = model.predict(np.expand_dims(Xtest[0], axis=0)).reshape(1472, 1472)
print('IOU', iou_metric(y_test[0].reshape(1472, 1472), predicted)) 
IOU [[0.63749895]]
In [39]:
plot_mask_gt_image(predicted, y_test.squeeze(0).squeeze(-1),\
           Xtest.squeeze(0))

Overall quality

In [20]:
scores = model.evaluate_generator(test_generator)
metrics=[iou_score]
print("Loss: {:.5}".format(scores[0]))
for metric, value in zip(metrics, scores[1:]):
    print("mean {}: {:.5}".format(metric.__name__, value))  
Loss: 0.53856
mean iou_score: 0.56187

Adding TTA (test time augmentation)

In [37]:
from tta_wrapper import tta_segmentation
from keras.models import load_model
model = load_model('./weights/road_crop.efficientnetb0imgsize.h5', 
                   custom_objects={'binary_crossentropy + jaccard_loss': bce_jaccard_loss,
                                   'iou_score': iou_score})
tta_model = tta_segmentation(model, h_flip=True, merge='mean')
.compile(optimizer = Adam(), loss=bce_jaccard_loss, metrics=[iou_score])
scores = tta_model.evaluate_generator(test_generator)
metrics=[iou_score]
print("Loss: {:.5}".format(scores[0]))
for metric, value in zip(metrics, scores[1:]):
    print("mean {}: {:.5}".format(metric.__name__, value)) 
Loss: 0.53727
mean iou_score: 0.56024

By adjusting threshold you can further improve your score

In [54]:
def draw_get_best_threshold(ious, thresholds):
    """
    Returns threshold_best, iou_best
    """
    threshold_best_index = np.argmax(ious) 
    iou_best = ious[threshold_best_index]
    threshold_best = thresholds[threshold_best_index]

    plt.plot(thresholds, ious)
    plt.plot(threshold_best, iou_best, "xr", label="Best threshold")
    plt.xlabel("Threshold")
    plt.ylabel("IoU")
    plt.title("Threshold vs IoU ({}, {})".format(threshold_best, iou_best))
    plt.legend()
    return threshold_best, iou_best

preds = []
y_val = []
for i in (range(0,test_generator.__len__())):
    Xtest, y_test  = test_generator.__getitem__(i)
    preds.append(tta_model.predict(Xtest).reshape(1472, 1472))
    y_val.append(y_test)
preds = np.stack(preds, axis=0)
y_val = np.stack(y_val, axis=0)

thresholds = list(np.linspace(0.1, 0.9, 10))
ious = np.array([iou_metric_batch(y_val, np.int32(preds > threshold)) for threshold in (thresholds)])

best_threshold, best_iou = draw_get_best_threshold(ious, thresholds)
================================================ FILE: DEEP LEARNING/segmentation/Segmentation pipeline/segmentation pipeline.py ================================================ #!/usr/bin/env python # coding: utf-8 # ## Install libraries first # # Be sure keras with tensorflow installed # `!conda install -c conda-forge keras` # get_ipython().system('pip install git+https://github.com/qubvel/efficientnet') get_ipython().system('pip install git+https://github.com/qubvel/classification_models.git') get_ipython().system('pip install git+https://github.com/qubvel/segmentation_models') get_ipython().system('pip install -U git+https://github.com/albu/albumentations') get_ipython().system('pip install tta-wrapper') # ## Defining data generator import matplotlib.pyplot as plt import os import tensorflow as tf from keras.utils import Sequence from skimage.io import imread from sklearn.utils import shuffle tf.logging.set_verbosity(tf.logging.ERROR) get_ipython().run_line_magic('load_ext', 'autoreload') get_ipython().run_line_magic('autoreload', '2') get_ipython().run_line_magic('matplotlib', 'inline') from albumentations import (Blur, Compose, HorizontalFlip, HueSaturationValue, IAAEmboss, IAASharpen, JpegCompression, OneOf, RandomBrightness, RandomBrightnessContrast, RandomContrast, RandomCrop, RandomGamma, RandomRotate90, RGBShift, ShiftScaleRotate, Transpose, VerticalFlip, ElasticTransform, GridDistortion, OpticalDistortion) import albumentations as albu from albumentations import Resize class DataGeneratorFolder(Sequence): def __init__(self, root_dir=r'../data/val_test', image_folder='img/', mask_folder='masks/', batch_size=1, image_size=768, nb_y_features=1, augmentation=None, suffle=True): self.image_filenames = os.listdir(os.path.join(root_dir, image_folder)) self.mask_names = os.listdir(os.path.join(root_dir, mask_folder)) self.batch_size = batch_size self.currentIndex = 0 self.augmentation = augmentation self.image_size = image_size self.nb_y_features = nb_y_features self.indexes = None self.suffle = suffle def __len__(self): """ Calculates size of batch """ return int(np.ceil(len(self.image_filenames) / (self.batch_size))) def on_epoch_end(self): """Updates indexes after each epoch""" if self.suffle == True: self.image_filenames, self.mask_names = shuffle(self.image_filenames, self.mask_names) def read_image_mask(self, image_name, mask_name): return imread(image_name) / 255, (imread(mask_name, as_gray=True) > 0).astype(np.int8) def __getitem__(self, index): """ Generate one batch of data """ # Generate indexes of the batch data_index_min = int(index * self.batch_size) data_index_max = int(min((index + 1) * self.batch_size, len(self.image_filenames))) indexes = self.image_filenames[data_index_min:data_index_max] this_batch_size = len(indexes) # The last batch can be smaller than the others # Defining dataset X = np.empty((this_batch_size, self.image_size, self.image_size, 3), dtype=np.float32) y = np.empty((this_batch_size, self.image_size, self.image_size, self.nb_y_features), dtype=np.uint8) for i, sample_index in enumerate(indexes): X_sample, y_sample = self.read_image_mask(self.image_filenames[index * self.batch_size + i], self.mask_names[index * self.batch_size + i]) # if augmentation is defined, we assume its a train set if self.augmentation is not None: # Augmentation code augmented = self.augmentation(self.image_size)(image=X_sample, mask=y_sample) image_augm = augmented['image'] mask_augm = augmented['mask'].reshape(self.image_size, self.image_size, self.nb_y_features) X[i, ...] = np.clip(image_augm, a_min=0, a_max=1) y[i, ...] = mask_augm # if augmentation isnt defined, we assume its a test set. # Because test images can have different sizes we resize it to be divisable by 32 elif self.augmentation is None and self.batch_size == 1: X_sample, y_sample = self.read_image_mask(self.image_filenames[index * 1 + i], self.mask_names[index * 1 + i]) augmented = Resize(height=(X_sample.shape[0] // 32) * 32, width=(X_sample.shape[1] // 32) * 32)( image=X_sample, mask=y_sample) X_sample, y_sample = augmented['image'], augmented['mask'] return X_sample.reshape(1, X_sample.shape[0], X_sample.shape[1], 3).astype( np.float32), y_sample.reshape(1, X_sample.shape[0], X_sample.shape[1], self.nb_y_features).astype( np.uint8) return X, y # ## Data augmentation - albumentations def aug_with_crop(image_size=256, crop_prob=1): return Compose([ RandomCrop(width=image_size, height=image_size, p=crop_prob), HorizontalFlip(p=0.5), VerticalFlip(p=0.5), RandomRotate90(p=0.5), Transpose(p=0.5), ShiftScaleRotate(shift_limit=0.01, scale_limit=0.04, rotate_limit=0, p=0.25), RandomBrightnessContrast(p=0.5), RandomGamma(p=0.25), IAAEmboss(p=0.25), Blur(p=0.01, blur_limit=3), OneOf([ ElasticTransform(p=0.5, alpha=120, sigma=120 * 0.05, alpha_affine=120 * 0.03), GridDistortion(p=0.5), OpticalDistortion(p=1, distort_limit=2, shift_limit=0.5) ], p=0.8) ], p=1) test_generator = DataGeneratorFolder(root_dir='./data/road_segmentation_ideal/training', image_folder='input/', mask_folder='output/', batch_size=1, nb_y_features=1, augmentation=aug_with_crop) Xtest, ytest = test_generator.__getitem__(0) plt.imshow(Xtest[0]) plt.show() plt.imshow(ytest[0, :, :, 0]) plt.show() # setting generators test_generator = DataGeneratorFolder(root_dir='./data/road_segmentation_ideal/training', image_folder='input/', mask_folder='output/', batch_size=1, augmentation=aug_with_crop, nb_y_features=1, augmentation=True) train_generator = DataGeneratorFolder(root_dir='./data/road_segmentation_ideal/training', image_folder='input/', mask_folder='output/', augmentation=aug_with_crop, batch_size=4, image_size=512, nb_y_features=1, augmentation=True) # ## Callbacks from keras.callbacks import ModelCheckpoint, ReduceLROnPlateau, EarlyStopping, TensorBoard # reduces learning rate on plateau lr_reducer = ReduceLROnPlateau(factor=0.1, cooldown=10, patience=10, verbose=1, min_lr=0.1e-5) mode_autosave = ModelCheckpoint("./weights/road_crop.efficientnetb0imgsize.h5", monitor='val_iou_score', mode='max', save_best_only=True, verbose=1, period=10) # stop learining as metric on validatopn stop increasing early_stopping = EarlyStopping(patience=10, verbose=1, mode='auto') # tensorboard for monitoring logs tensorboard = TensorBoard(log_dir='./logs/tenboard', histogram_freq=0, write_graph=True, write_images=False) callbacks = [mode_autosave, lr_reducer, tensorboard, early_stopping] from segmentation_models import Unet from keras.optimizers import Adam from segmentation_models.losses import bce_jaccard_loss, bce_dice_loss from segmentation_models.metrics import iou_score def plot_training_history(history): """ Plots model training history """ fig, (ax_loss, ax_acc) = plt.subplots(1, 2, figsize=(15, 5)) ax_loss.plot(history.epoch, history.history["loss"], label="Train loss") ax_loss.plot(history.epoch, history.history["val_loss"], label="Validation loss") ax_loss.legend() ax_acc.plot(history.epoch, history.history["iou_score"], label="Train iou") ax_acc.plot(history.epoch, history.history["val_iou_score"], label="Validation iou") ax_acc.legend() model = Unet(backbone_name='efficientnetb0', encoder_weights='imagenet', encoder_freeze=False) model.compile(optimizer=Adam(), loss=bce_jaccard_loss, metrics=[iou_score]) history = model.fit_generator(train_generator, shuffle=True, epochs=50, workers=4, use_multiprocessing=True, validation_data=test_generator, verbose=1, callbacks=callbacks) # plotting history plot_training_history(history) # ## Inference and model quality check # #### Single image def iou_metric(y_true_in, y_pred_in): labels = y_true_in y_pred = y_pred_in temp1 = np.histogram2d(labels.flatten(), y_pred.flatten(), bins=([0, 0.5, 1], [0, 0.5, 1])) intersection = temp1[0] area_true = np.histogram(labels, bins=[0, 0.5, 1])[0] area_pred = np.histogram(y_pred, bins=[0, 0.5, 1])[0] area_true = np.expand_dims(area_true, -1) area_pred = np.expand_dims(area_pred, 0) # Compute union union = area_true + area_pred - intersection # Exclude background from the analysis intersection = intersection[1:, 1:] intersection[intersection == 0] = 1e-9 union = union[1:, 1:] union[union == 0] = 1e-9 iou = intersection / union return iou def plot_mask_gt_image(mask, groud_truth, img): fig, axs = plt.subplots(1, 3, figsize=(20, 10)) axs[0].imshow(mask, cmap="Blues") axs[1].imshow(groud_truth, cmap="Blues") axs[2].imshow(img) plt.show() def iou_metric_batch(y_true_in, y_pred_in): y_pred_in = y_pred_in batch_size = y_true_in.shape[0] metric = [] for batch in range(batch_size): value = iou_metric(y_true_in[batch], y_pred_in[batch]) metric.append(value) return np.mean(metric) # to get single image and prediction quality Xtest, y_test = test_generator.__getitem__(1) predicted = model.predict(np.expand_dims(Xtest[0], axis=0)).reshape(1472, 1472) print('IOU', iou_metric(y_test[0].reshape(1472, 1472), predicted)) plot_mask_gt_image(predicted, y_test.squeeze(0).squeeze(-1), Xtest.squeeze(0)) # ## Overall quality scores = model.evaluate_generator(test_generator) metrics = [iou_score] print("Loss: {:.5}".format(scores[0])) for metric, value in zip(metrics, scores[1:]): print("mean {}: {:.5}".format(metric.__name__, value)) # ## Adding TTA (test time augmentation) from tta_wrapper import tta_segmentation from keras.models import load_model model = load_model('./weights/road_crop.efficientnetb0imgsize.h5', custom_objects={'binary_crossentropy + jaccard_loss': bce_jaccard_loss, 'iou_score': iou_score}) tta_model = tta_segmentation(model, h_flip=True, merge='mean').compile(optimizer=Adam(), loss=bce_jaccard_loss, metrics=[iou_score]) scores = tta_model.evaluate_generator(test_generator) metrics = [iou_score] print("Loss: {:.5}".format(scores[0])) for metric, value in zip(metrics, scores[1:]): print("mean {}: {:.5}".format(metric.__name__, value)) # ### By adjusting threshold you can further improve your score def draw_get_best_threshold(ious, thresholds): """ Returns threshold_best, iou_best """ threshold_best_index = np.argmax(ious) iou_best = ious[threshold_best_index] threshold_best = thresholds[threshold_best_index] plt.plot(thresholds, ious) plt.plot(threshold_best, iou_best, "xr", label="Best threshold") plt.xlabel("Threshold") plt.ylabel("IoU") plt.title("Threshold vs IoU ({}, {})".format(threshold_best, iou_best)) plt.legend() return threshold_best, iou_best preds = [] y_val = [] for i in (range(0, test_generator.__len__())): Xtest, y_test = test_generator.__getitem__(i) preds.append(tta_model.predict(Xtest).reshape(1472, 1472)) y_val.append(y_test) preds = np.stack(preds, axis=0) y_val = np.stack(y_val, axis=0) thresholds = list(np.linspace(0.1, 0.9, 10)) ious = np.array([iou_metric_batch(y_val, np.int32(preds > threshold)) for threshold in (thresholds)]) best_threshold, best_iou = draw_get_best_threshold(ious, thresholds) ================================================ FILE: DEEP LEARNING/segmentation/Segmentation pipeline/weights/.gitkeep ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/.gitignore ================================================ # internal and data folders input/ model_weights/ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so *.csv # Distribution / packaging .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg *.rar # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec *.swp *.pyc # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *,cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log # Sphinx documentation docs/_build/ # PyBuilder target/ #Ipython Notebook .ipynb_checkpoints *.h5 /hengs models/ /.idea/ ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/README.md ================================================ # Severstal-Steel-Defect-Detection Can you detect and classify defects in steel? Segmentation in Pytorch https://www.kaggle.com/c/severstal-steel-defect-detection/overview 31 place solution Project structure: * **common_blocks** - classes and functions for training - **dataloader.py** - dataloader of competition data - **metric.py** - function with metric functions - **training_helper.py** - main class for training with cross validation or train_test_split - **utils.py** - useful utils for logs, model loading, mask transformation - **losses.py** - different segmentation losses - **optimizers.py** - SOTA optimizers * **configs** - **train_params.py** (in development) 1. **isDebug - then is True, pipelines finishes to work in minutes (useful for code testing) 2. **unet_encoder** - you can specify unet encoder (resnet, resnext, se-resnext are available) 3. **crop_image_size** - if specified will train on crops, othwerwise on full image size 4. **attention_type** - will add scse blocks to decoder 5. **path, folder** - paths to competition data * **train.py** - main code for training * **inference.py** (TODO - currently in kaggle kernels) **SOLUTION** **Team - [ods.ai] stainless** - Insaf Ashrapov - Igor Krashenyi - Pavel Pleskov - Anton Zakharenkov - Nikolai Popov **Models** We tried almost every type of model from qubvel`s segmentation model library - unet, fpn, pspnet with different encoders from resnet to senet152. FPN with se-resnext50 outperformed other models. Lighter models like resnet34 performed aren't well enough but were useful in the final blend. Se-resnext101 possibly could perform much better with more time training, but we didn’t test that. **Augmentations and Preprocessing** From **Albumentations** library: Hflip, VFlip, RandomBrightnessContrast – training speed was not to fast so these basic augmentations performed well enough. In addition, we used big crops for training or/and finetuning on the full image size, because attention blocks in image tasks rely on the same input size for the training and inference phase. **Training** - We used both pure pytorch and Catalyst framework for training. - Losses: bce and bce with dice performed quite well, but lovasz loss dramatically outperformed them in terms of validation and public score. However, combining with classification model bce with dice gave a better result, that could be because Lovasz helped the model to filter out false-positive masks. Focal loss performed quite poor due to not very good labeling. - Optimizer: Adam with RAdam. LookAHead, Over900 didn’t work well to use. - Crops with a mask, BalanceClassSampler with upsampler mode from catalyst significantly increased training speed. - We tried own classification model (resnet34 with CBAM) by setting the goal to improve f1 for each class. The optimal threshold was disappointingly unstable but we reached averaged f1 95.1+. As a result, Cheng`s classification was used. - Validation: kfold with 10 folds. Despite the shake-up – local, public and private correlated surprisingly good. - Pseudolabing; We did two rounds of pseudo labeling by training on the best public submit and validating on the out of fold. It didn’t work for the third time but gave us a huge improvement. - Postprocessing: filling holes, removing the small mask by the threshold. We tried to remove small objects by connected components with no improvements. - Hardware: bunch of nvidia cards **Ensembling** Simple segmentation models averaging with different encoders, both FPN and Unet applied to images classified having a mask. One of the unchosen submit could give as 16th place. ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/classification_pytorch_dummy.py ================================================ # -*- coding: utf-8 -*- """classification pytorch.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/137kv2KGkMfqJf70XUlKDDlYraF_R26Ve """ from google.colab import files files.upload() #kaggle json upload !pip install -q kaggle !pip install -U git+https://github.com/albu/albumentations1 !mkdir -p ~/.kaggle !cp kaggle.json ~/.kaggle/ !kaggle competitions download -c severstal-steel-defect-detection !unzip train_images.zip -d train_images import numpy as np # linear algebra import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv) import warnings warnings.filterwarnings('ignore') # Input data files are available in the "../input/" directory. # For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory import os import cv2 import os.path as osp import time import torch import torch.nn as nn import torch.optim as optim from torch.optim import lr_scheduler from torch.utils.data import Dataset, DataLoader from torchvision import transforms, models from sklearn.model_selection import train_test_split from tqdm import tqdm_notebook as tqdm from PIL import Image from torch.optim.lr_scheduler import ReduceLROnPlateau import matplotlib.pyplot as plt # now we train a binary classifier to check whether one image is defective or not TRAINVAL_ANNOT = "train.csv.zip" TRAINVAL_IMAGE_ROOT = "train_images" from albumentations import (HorizontalFlip, ShiftScaleRotate, Normalize, CropNonEmptyMaskIfExists, Resize, Compose,RandomCrop, RandomBrightnessContrast, VerticalFlip, RandomBrightness, RandomContrast) from albumentations.pytorch import ToTensor # Commented out IPython magic to ensure Python compatibility. from sklearn.model_selection import StratifiedKFold, KFold def get_annot(annot_path): trainval_annot = pd.read_csv(TRAINVAL_ANNOT) trainval_annot['ImageId'] = trainval_annot['ImageId_ClassId'].apply(lambda x: x.split("_")[0]) trainval_annot['ClassId'] = trainval_annot['ImageId_ClassId'].apply(lambda x: x.split("_")[1]) trainval_annot['HasMask'] = trainval_annot['EncodedPixels'].notnull().astype('int') trainval_annot = trainval_annot[['ImageId', 'ClassId', 'HasMask']].groupby(['ImageId', 'ClassId']).max().unstack().sort_index(axis=1).reset_index() trainval_annot.columns = ['ImageId', '1', '2', '3', '4'] kfold = KFold(10, shuffle=True, random_state=69) # StratifiedKFold(total_folds, shuffle=True, random_state=69) train_idx, val_idx = list(kfold.split(trainval_annot))[0] # , df["defects"] train_annot, val_annot = trainval_annot.iloc[train_idx], trainval_annot.iloc[val_idx] #train_annot, val_annot = train_test_split(trainval_annot, test_size=0.10) print("{}/{} images for train/val.".format(len(train_annot), len(val_annot))) return {"train": train_annot, "val": val_annot} def prev_get_transform(phase): list_transforms = [] if phase == "train": list_transforms.extend( [RandomCrop(256, 1024, p=1), HorizontalFlip(p=0.5), VerticalFlip(p=0.5), RandomBrightnessContrast(p=0.1, brightness_limit=0.1, contrast_limit=0.1) ]) list_transforms.extend( [ Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225], p=1), ToTensor() ] ) list_trfms = Compose(list_transforms) return list_trfms def get_transform(phase): list_transform = [] if phase == 'train': list_transform.extend([ transforms.Resize((256, 256+128)), transforms.RandomHorizontalFlip(p=0.5), transforms.RandomVerticalFlip(p=0.5), transforms.ToTensor(), transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) ]) else: list_transform.extend([ transforms.Resize((256, 256+128)), # transforms.CenterCrop(224), transforms.ToTensor(), transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) ]) return transforms.Compose(list_transform) def criterion(logit, truth, weight=None): batch_size,num_class = logit.shape assert(logit.shape==truth.shape) loss = F.binary_cross_entropy_with_logits(logit, truth, reduction='none') if weight is None: loss = loss.mean() else: pos = (truth>0.5).float() neg = (truth<0.5).float() pos_sum = pos.sum().item() + 1e-12 neg_sum = neg.sum().item() + 1e-12 loss = (weight[1]*pos*loss/pos_sum + weight[0]*neg*loss/neg_sum).sum() #raise NotImplementedError return loss class SteelDataset(Dataset): def __init__(self, annot, image_folder, phase): self.annot = annot self.image_folder = image_folder self.phase = phase self.transform = get_transform(phase) def __getitem__(self, index): row = self.annot.iloc[index, :] image_path = osp.join(self.image_folder, row['ImageId']) target = torch.tensor([row['1'], row['2'], row['3'], row['4']], dtype=float) image = Image.open(image_path) image = self.transform(image) return image, target def __len__(self): return len(self.annot) def get_dataloader(annot, image_folder, phase, batch_size=16, num_workers=4): dataset = SteelDataset(annot, image_folder, phase) return DataLoader(dataset, batch_size=batch_size, num_workers=num_workers) def get_model(model_name): model = ResidualNet('ImageNet', 50, 4, 'cbam') # model = models.__dict__[model_name]() # if model_name.startswith("resnet"): # in_features = model.fc.in_features # model.fc = nn.Linear(in_features, 4) # else: # raise KeyError("Only support resnet!") return model class Trainer: def __init__(self, model_name="resnet34", pretrained=False, epochs=1): self.lr = 5e-4 self.threshold = 0.5 self.best_acc = 0.0 self.device = torch.device("cuda:0") self.model_path = "/content/drive/My Drive/weights/model_resne50.pth" self.pretrained = pretrained self.pretrained_model_path = osp.join("../input/severstal-binary-classifier/", self.model_path) self.num_epochs = epochs self.annot_path = TRAINVAL_ANNOT self.image_folder = TRAINVAL_IMAGE_ROOT self.phases = ['train', 'val'] self.batch_sizes = {'train': 16, 'val': 16}# self.model = get_model(model_name).to(self.device) # self.optimizer = optim.SGD(self.model.parameters(), lr=self.lr, momentum=0.9, weight_decay=5e-4) self.optimizer = optim.Adam(self.model.parameters(), lr=self.lr) self.scheduler = lr_scheduler.StepLR(self.optimizer, step_size=5, gamma=0.5) #ReduceLROnPlateau(self.optimizer, factor=0.9, mode="min", patience=3, verbose=True) self.criterion = criterion#nn.CrossEntropyLoss() self.annots = get_annot(self.annot_path) self.dataloaders = {phase: get_dataloader(self.annots[phase], self.image_folder, phase, self.batch_sizes[phase]) for phase in self.phases} self.losses = {phase: [] for phase in self.phases} self.accuracies = {phase: [] for phase in self.phases} def forward(self, inputs, targets): inputs = inputs.to(self.device, dtype=torch.float) targets = targets.to(self.device, dtype=torch.float) outputs = self.model(inputs) #targets = targets.unsqueeze(1).float() loss = self.criterion(outputs, targets) return loss, outputs def iterate(self, epoch, phase): start = time.time() print("Epoch: {} | Phase: {}".format(epoch, phase)) self.model.train(phase == 'train') dataloader = self.dataloaders[phase] running_loss = 0.0 running_corrects = 0 self.optimizer.zero_grad() tk = tqdm(dataloader, total=len(dataloader)) torch.set_grad_enabled(phase == 'train') for idx, batch in enumerate(tk): inputs, targets = batch loss, outputs = self.forward(inputs, targets) if phase == 'train': loss.backward() self.optimizer.step() self.optimizer.zero_grad() preds = (torch.sigmoid(outputs) > self.threshold).reshape_as(targets).int().cpu() running_corrects += (preds == targets.int()).sum().item() running_loss += loss.item() * inputs.size(0) tk.set_postfix(loss=running_loss / ((idx+1) * self.batch_sizes[phase]), running_corrects=running_corrects/(4*self.batch_sizes[phase]*(idx+1))) tk.update() torch.set_grad_enabled(phase == 'train') dataset_size = len(dataloader.dataset) running_loss /= dataset_size running_acc = running_corrects/ (dataset_size*4) self.losses[phase].append(running_loss) self.accuracies[phase].append(running_acc) end = time.time() time_elapsed = int(end - start) print("Finished in {} mins and {} secs, loss: {:.3f}, acc: {:.3f}%".format( time_elapsed // 60, time_elapsed % 60, running_loss, running_acc * 100)) return running_acc def save_model(self, epoch): state = { "epoch": epoch, "best_acc": self.best_acc, "state_dict": self.model.state_dict(), "optimizer_state_dict": self.optimizer.state_dict() } print("****** Find new optimal model, saving to disk ******") torch.save(state, self.model_path) return def summary(self): print("Training finished. Best val acc: {:.3f}%".format(self.best_acc)) fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 8)) len_x = len(self.losses['train']) ax1.plot(range(len_x), self.losses['train'], label="train loss") ax1.plot(range(len_x), self.losses['val'], label="val loss") #ax1.title("loss curve"); ax1.xlabel("epoch"); ax1.ylabel("loss") ax2.plot(range(len_x), self.accuracies['train'], label='train acc') ax2.plot(range(len_x), self.accuracies['val'], label='val acc') #ax2.title("accuracy curve"); ax2.xlabel("epoch"); ax2.ylabel("accuracy") plt.show() def start(self): resume_epoch = 0 if self.pretrained or osp.exists(self.model_path): state = torch.load(self.pretrained_model_path) if self.pretrained else torch.load(self.model_path) resume_epoch = state['epoch'] + 1 self.best_acc = state['best_acc'] self.optimizer.load_state_dict(state['optimizer_state_dict']) self.model.load_state_dict(state['state_dict']) print("Load checkpoint from {}, resume training from {} epoch with best acc {}%".format( self.model_path, resume_epoch, self.best_acc * 100)) for epoch in range(resume_epoch, self.num_epochs): train_acc = self.iterate(epoch, 'train') self.scheduler.step() val_acc = self.iterate(epoch, 'val') if val_acc > self.best_acc: self.best_acc = val_acc self.save_model(epoch) self.summary() # %matplotlib inline trainer = Trainer("resnet50", pretrained=False, epochs = 100) trainer.start() import os os.listdir('/content/drive/My Drive') import torch import math import torch.nn as nn import torch.nn.functional as F class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channel, reduction_ratio=16, num_layers=1): super(ChannelGate, self).__init__() self.gate_activation = gate_activation self.gate_c = nn.Sequential() self.gate_c.add_module( 'flatten', Flatten() ) gate_channels = [gate_channel] gate_channels += [gate_channel // reduction_ratio] * num_layers gate_channels += [gate_channel] for i in range( len(gate_channels) - 2 ): self.gate_c.add_module( 'gate_c_fc_%d'%i, nn.Linear(gate_channels[i], gate_channels[i+1]) ) self.gate_c.add_module( 'gate_c_bn_%d'%(i+1), nn.BatchNorm1d(gate_channels[i+1]) ) self.gate_c.add_module( 'gate_c_relu_%d'%(i+1), nn.ReLU() ) self.gate_c.add_module( 'gate_c_fc_final', nn.Linear(gate_channels[-2], gate_channels[-1]) ) def forward(self, in_tensor): avg_pool = F.avg_pool2d( in_tensor, in_tensor.size(2), stride=in_tensor.size(2) ) return self.gate_c( avg_pool ).unsqueeze(2).unsqueeze(3).expand_as(in_tensor) class SpatialGate(nn.Module): def __init__(self, gate_channel, reduction_ratio=16, dilation_conv_num=2, dilation_val=4): super(SpatialGate, self).__init__() self.gate_s = nn.Sequential() self.gate_s.add_module( 'gate_s_conv_reduce0', nn.Conv2d(gate_channel, gate_channel//reduction_ratio, kernel_size=1)) self.gate_s.add_module( 'gate_s_bn_reduce0', nn.BatchNorm2d(gate_channel//reduction_ratio) ) self.gate_s.add_module( 'gate_s_relu_reduce0',nn.ReLU() ) for i in range( dilation_conv_num ): self.gate_s.add_module( 'gate_s_conv_di_%d'%i, nn.Conv2d(gate_channel//reduction_ratio, gate_channel//reduction_ratio, kernel_size=3, \ padding=dilation_val, dilation=dilation_val) ) self.gate_s.add_module( 'gate_s_bn_di_%d'%i, nn.BatchNorm2d(gate_channel//reduction_ratio) ) self.gate_s.add_module( 'gate_s_relu_di_%d'%i, nn.ReLU() ) self.gate_s.add_module( 'gate_s_conv_final', nn.Conv2d(gate_channel//reduction_ratio, 1, kernel_size=1) ) def forward(self, in_tensor): return self.gate_s( in_tensor ).expand_as(in_tensor) class BAM(nn.Module): def __init__(self, gate_channel): super(BAM, self).__init__() self.channel_att = ChannelGate(gate_channel) self.spatial_att = SpatialGate(gate_channel) def forward(self,in_tensor): att = 1 + F.sigmoid( self.channel_att(in_tensor) * self.spatial_att(in_tensor) ) return att * in_tensor import torch import math import torch.nn as nn import torch.nn.functional as F class BasicConv(nn.Module): def __init__(self, in_planes, out_planes, kernel_size, stride=1, padding=0, dilation=1, groups=1, relu=True, bn=True, bias=False): super(BasicConv, self).__init__() self.out_channels = out_planes self.conv = nn.Conv2d(in_planes, out_planes, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, groups=groups, bias=bias) self.bn = nn.BatchNorm2d(out_planes,eps=1e-5, momentum=0.01, affine=True) if bn else None self.relu = nn.ReLU() if relu else None def forward(self, x): x = self.conv(x) if self.bn is not None: x = self.bn(x) if self.relu is not None: x = self.relu(x) return x class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max']): super(ChannelGate, self).__init__() self.gate_channels = gate_channels self.mlp = nn.Sequential( Flatten(), nn.Linear(gate_channels, gate_channels // reduction_ratio), nn.ReLU(), nn.Linear(gate_channels // reduction_ratio, gate_channels) ) self.pool_types = pool_types def forward(self, x): channel_att_sum = None for pool_type in self.pool_types: if pool_type=='avg': avg_pool = F.avg_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( avg_pool ) elif pool_type=='max': max_pool = F.max_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( max_pool ) elif pool_type=='lp': lp_pool = F.lp_pool2d( x, 2, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( lp_pool ) elif pool_type=='lse': # LSE pool only lse_pool = logsumexp_2d(x) channel_att_raw = self.mlp( lse_pool ) if channel_att_sum is None: channel_att_sum = channel_att_raw else: channel_att_sum = channel_att_sum + channel_att_raw scale = F.sigmoid( channel_att_sum ).unsqueeze(2).unsqueeze(3).expand_as(x) return x * scale def logsumexp_2d(tensor): tensor_flatten = tensor.view(tensor.size(0), tensor.size(1), -1) s, _ = torch.max(tensor_flatten, dim=2, keepdim=True) outputs = s + (tensor_flatten - s).exp().sum(dim=2, keepdim=True).log() return outputs class ChannelPool(nn.Module): def forward(self, x): return torch.cat( (torch.max(x,1)[0].unsqueeze(1), torch.mean(x,1).unsqueeze(1)), dim=1 ) class SpatialGate(nn.Module): def __init__(self): super(SpatialGate, self).__init__() kernel_size = 7 self.compress = ChannelPool() self.spatial = BasicConv(2, 1, kernel_size, stride=1, padding=(kernel_size-1) // 2, relu=False) def forward(self, x): x_compress = self.compress(x) x_out = self.spatial(x_compress) scale = F.sigmoid(x_out) # broadcasting return x * scale class CBAM(nn.Module): def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max'], no_spatial=False): super(CBAM, self).__init__() self.ChannelGate = ChannelGate(gate_channels, reduction_ratio, pool_types) self.no_spatial=no_spatial if not no_spatial: self.SpatialGate = SpatialGate() def forward(self, x): x_out = self.ChannelGate(x) if not self.no_spatial: x_out = self.SpatialGate(x_out) return x_out import torch import torch.nn as nn import torch.nn.functional as F import math from torch.nn import init def conv3x3(in_planes, out_planes, stride=1): "3x3 convolution with padding" return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride, padding=1, bias=False) class BasicBlock(nn.Module): expansion = 1 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(BasicBlock, self).__init__() self.conv1 = conv3x3(inplanes, planes, stride) self.bn1 = nn.BatchNorm2d(planes) self.relu = nn.ReLU(inplace=True) self.conv2 = conv3x3(planes, planes) self.bn2 = nn.BatchNorm2d(planes) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM( planes, 16 ) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(Bottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes) self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(planes) self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM( planes * 4, 16 ) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class ResNet(nn.Module): def __init__(self, block, layers, network_type, num_classes, att_type=None): self.inplanes = 64 super(ResNet, self).__init__() self.network_type = network_type # different model config between ImageNet and CIFAR if network_type == "ImageNet": self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3, bias=False) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.avgpool = nn.AvgPool2d(7) else: self.conv1 = nn.Conv2d(3, 64, kernel_size=3, stride=1, padding=1, bias=False) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) if att_type=='BAM': self.bam1 = BAM(64*block.expansion) self.bam2 = BAM(128*block.expansion) self.bam3 = BAM(256*block.expansion) else: self.bam1, self.bam2, self.bam3 = None, None, None self.layer1 = self._make_layer(block, 64, layers[0], att_type=att_type) self.layer2 = self._make_layer(block, 128, layers[1], stride=2, att_type=att_type) self.layer3 = self._make_layer(block, 256, layers[2], stride=2, att_type=att_type) self.layer4 = self._make_layer(block, 512, layers[3], stride=2, att_type=att_type) self.fc = nn.Linear(512 * block.expansion, num_classes) init.kaiming_normal(self.fc.weight) for key in self.state_dict(): if key.split('.')[-1]=="weight": if "conv" in key: init.kaiming_normal(self.state_dict()[key], mode='fan_out') if "bn" in key: if "SpatialGate" in key: self.state_dict()[key][...] = 0 else: self.state_dict()[key][...] = 1 elif key.split(".")[-1]=='bias': self.state_dict()[key][...] = 0 def _make_layer(self, block, planes, blocks, stride=1, att_type=None): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d(self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append(block(self.inplanes, planes, stride, downsample, use_cbam=att_type=='CBAM')) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes, use_cbam=att_type=='CBAM')) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) if self.network_type == "ImageNet": x = self.maxpool(x) x = self.layer1(x) if not self.bam1 is None: x = self.bam1(x) x = self.layer2(x) if not self.bam2 is None: x = self.bam2(x) x = self.layer3(x) if not self.bam3 is None: x = self.bam3(x) x = self.layer4(x) if self.network_type == "ImageNet": x = self.avgpool(x) else: x = F.avg_pool2d(x, 4) x = x.view(x.size(0), -1) x = self.fc(x) return x def ResidualNet(network_type, depth, num_classes, att_type): assert network_type in ["ImageNet", "CIFAR10", "CIFAR100"], "network type should be ImageNet or CIFAR10 / CIFAR100" assert depth in [18, 34, 50, 101], 'network depth should be 18, 34, 50 or 101' if depth == 18: model = ResNet(BasicBlock, [2, 2, 2, 2], network_type, num_classes, att_type) elif depth == 34: model = ResNet(BasicBlock, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 50: model = ResNet(Bottleneck, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 101: model = ResNet(Bottleneck, [3, 4, 23, 3], network_type, num_classes, att_type) return model from google.colab import drive drive.mount('/content/drive') os.listdir() import torch import math import torch.nn as nn import torch.nn.functional as F class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channel, reduction_ratio=16, num_layers=1): super(ChannelGate, self).__init__() self.gate_activation = gate_activation self.gate_c = nn.Sequential() self.gate_c.add_module( 'flatten', Flatten() ) gate_channels = [gate_channel] gate_channels += [gate_channel // reduction_ratio] * num_layers gate_channels += [gate_channel] for i in range( len(gate_channels) - 2 ): self.gate_c.add_module( 'gate_c_fc_%d'%i, nn.Linear(gate_channels[i], gate_channels[i+1]) ) self.gate_c.add_module( 'gate_c_bn_%d'%(i+1), nn.BatchNorm1d(gate_channels[i+1]) ) self.gate_c.add_module( 'gate_c_relu_%d'%(i+1), nn.ReLU() ) self.gate_c.add_module( 'gate_c_fc_final', nn.Linear(gate_channels[-2], gate_channels[-1]) ) def forward(self, in_tensor): avg_pool = F.avg_pool2d( in_tensor, in_tensor.size(2), stride=in_tensor.size(2) ) return self.gate_c( avg_pool ).unsqueeze(2).unsqueeze(3).expand_as(in_tensor) class SpatialGate(nn.Module): def __init__(self, gate_channel, reduction_ratio=16, dilation_conv_num=2, dilation_val=4): super(SpatialGate, self).__init__() self.gate_s = nn.Sequential() self.gate_s.add_module( 'gate_s_conv_reduce0', nn.Conv2d(gate_channel, gate_channel//reduction_ratio, kernel_size=1)) self.gate_s.add_module( 'gate_s_bn_reduce0', nn.BatchNorm2d(gate_channel//reduction_ratio) ) self.gate_s.add_module( 'gate_s_relu_reduce0',nn.ReLU() ) for i in range( dilation_conv_num ): self.gate_s.add_module( 'gate_s_conv_di_%d'%i, nn.Conv2d(gate_channel//reduction_ratio, gate_channel//reduction_ratio, kernel_size=3, \ padding=dilation_val, dilation=dilation_val) ) self.gate_s.add_module( 'gate_s_bn_di_%d'%i, nn.BatchNorm2d(gate_channel//reduction_ratio) ) self.gate_s.add_module( 'gate_s_relu_di_%d'%i, nn.ReLU() ) self.gate_s.add_module( 'gate_s_conv_final', nn.Conv2d(gate_channel//reduction_ratio, 1, kernel_size=1) ) def forward(self, in_tensor): return self.gate_s( in_tensor ).expand_as(in_tensor) class BAM(nn.Module): def __init__(self, gate_channel): super(BAM, self).__init__() self.channel_att = ChannelGate(gate_channel) self.spatial_att = SpatialGate(gate_channel) def forward(self,in_tensor): att = 1 + F.sigmoid( self.channel_att(in_tensor) * self.spatial_att(in_tensor) ) return att * in_tensor import torch import math import torch.nn as nn import torch.nn.functional as F class BasicConv(nn.Module): def __init__(self, in_planes, out_planes, kernel_size, stride=1, padding=0, dilation=1, groups=1, relu=True, bn=True, bias=False): super(BasicConv, self).__init__() self.out_channels = out_planes self.conv = nn.Conv2d(in_planes, out_planes, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, groups=groups, bias=bias) self.bn = nn.BatchNorm2d(out_planes,eps=1e-5, momentum=0.01, affine=True) if bn else None self.relu = nn.ReLU() if relu else None def forward(self, x): x = self.conv(x) if self.bn is not None: x = self.bn(x) if self.relu is not None: x = self.relu(x) return x class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max']): super(ChannelGate, self).__init__() self.gate_channels = gate_channels self.mlp = nn.Sequential( Flatten(), nn.Linear(gate_channels, gate_channels // reduction_ratio), nn.ReLU(), nn.Linear(gate_channels // reduction_ratio, gate_channels) ) self.pool_types = pool_types def forward(self, x): channel_att_sum = None for pool_type in self.pool_types: if pool_type=='avg': avg_pool = F.avg_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( avg_pool ) elif pool_type=='max': max_pool = F.max_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( max_pool ) elif pool_type=='lp': lp_pool = F.lp_pool2d( x, 2, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3))) channel_att_raw = self.mlp( lp_pool ) elif pool_type=='lse': # LSE pool only lse_pool = logsumexp_2d(x) channel_att_raw = self.mlp( lse_pool ) if channel_att_sum is None: channel_att_sum = channel_att_raw else: channel_att_sum = channel_att_sum + channel_att_raw scale = F.sigmoid( channel_att_sum ).unsqueeze(2).unsqueeze(3).expand_as(x) return x * scale def logsumexp_2d(tensor): tensor_flatten = tensor.view(tensor.size(0), tensor.size(1), -1) s, _ = torch.max(tensor_flatten, dim=2, keepdim=True) outputs = s + (tensor_flatten - s).exp().sum(dim=2, keepdim=True).log() return outputs class ChannelPool(nn.Module): def forward(self, x): return torch.cat( (torch.max(x,1)[0].unsqueeze(1), torch.mean(x,1).unsqueeze(1)), dim=1 ) class SpatialGate(nn.Module): def __init__(self): super(SpatialGate, self).__init__() kernel_size = 7 self.compress = ChannelPool() self.spatial = BasicConv(2, 1, kernel_size, stride=1, padding=(kernel_size-1) // 2, relu=False) def forward(self, x): x_compress = self.compress(x) x_out = self.spatial(x_compress) scale = F.sigmoid(x_out) # broadcasting return x * scale class CBAM(nn.Module): def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max'], no_spatial=False): super(CBAM, self).__init__() self.ChannelGate = ChannelGate(gate_channels, reduction_ratio, pool_types) self.no_spatial=no_spatial if not no_spatial: self.SpatialGate = SpatialGate() def forward(self, x): x_out = self.ChannelGate(x) if not self.no_spatial: x_out = self.SpatialGate(x_out) return x_out import torch import torch.nn as nn import torch.nn.functional as F import math from torch.nn import init def conv3x3(in_planes, out_planes, stride=1): "3x3 convolution with padding" return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride, padding=1, bias=False) class BasicBlock(nn.Module): expansion = 1 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(BasicBlock, self).__init__() self.conv1 = conv3x3(inplanes, planes, stride) self.bn1 = nn.BatchNorm2d(planes) self.relu = nn.ReLU(inplace=True) self.conv2 = conv3x3(planes, planes) self.bn2 = nn.BatchNorm2d(planes) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM( planes, 16 ) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(Bottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes) self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(planes) self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM( planes * 4, 16 ) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class ResNet(nn.Module): def __init__(self, block, layers, network_type, num_classes, att_type=None): self.inplanes = 64 super(ResNet, self).__init__() self.network_type = network_type # different model config between ImageNet and CIFAR if network_type == "ImageNet": self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3, bias=False) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.avgpool = nn.AvgPool2d(7) else: self.conv1 = nn.Conv2d(3, 64, kernel_size=3, stride=1, padding=1, bias=False) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) if att_type=='BAM': self.bam1 = BAM(64*block.expansion) self.bam2 = BAM(128*block.expansion) self.bam3 = BAM(256*block.expansion) else: self.bam1, self.bam2, self.bam3 = None, None, None self.layer1 = self._make_layer(block, 64, layers[0], att_type=att_type) self.layer2 = self._make_layer(block, 128, layers[1], stride=2, att_type=att_type) self.layer3 = self._make_layer(block, 256, layers[2], stride=2, att_type=att_type) self.layer4 = self._make_layer(block, 512, layers[3], stride=2, att_type=att_type) self.fc = nn.Linear(512 * block.expansion, num_classes) init.kaiming_normal(self.fc.weight) for key in self.state_dict(): if key.split('.')[-1]=="weight": if "conv" in key: init.kaiming_normal(self.state_dict()[key], mode='fan_out') if "bn" in key: if "SpatialGate" in key: self.state_dict()[key][...] = 0 else: self.state_dict()[key][...] = 1 elif key.split(".")[-1]=='bias': self.state_dict()[key][...] = 0 def _make_layer(self, block, planes, blocks, stride=1, att_type=None): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d(self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append(block(self.inplanes, planes, stride, downsample, use_cbam=att_type=='CBAM')) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes, use_cbam=att_type=='CBAM')) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) if self.network_type == "ImageNet": x = self.maxpool(x) x = self.layer1(x) if not self.bam1 is None: x = self.bam1(x) x = self.layer2(x) if not self.bam2 is None: x = self.bam2(x) x = self.layer3(x) if not self.bam3 is None: x = self.bam3(x) x = self.layer4(x) if self.network_type == "ImageNet": x = self.avgpool(x) else: x = F.avg_pool2d(x, 4) x = x.view(x.size(0), -1) x = self.fc(x) return x def ResidualNet(network_type, depth, num_classes, att_type): assert network_type in ["ImageNet", "CIFAR10", "CIFAR100"], "network type should be ImageNet or CIFAR10 / CIFAR100" assert depth in [18, 34, 50, 101], 'network depth should be 18, 34, 50 or 101' if depth == 18: model = ResNet(BasicBlock, [2, 2, 2, 2], network_type, num_classes, att_type) elif depth == 34: model = ResNet(BasicBlock, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 50: model = ResNet(Bottleneck, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 101: model = ResNet(Bottleneck, [3, 4, 23, 3], network_type, num_classes, att_type) return model ResidualNet('CIFAR100', 34, 4, 'cbam') # # Pre-trained weights: https://github.com/facebookresearch/WSL-Images # # Apex: https://github.com/NVIDIA/apex # # Borrowed a lot from abhishek, so give him an upvote: https://www.kaggle.com/abhishek/very-simple-pytorch-training-0-59 # # Parameters # lr = 2e-5 # img_size = 224 # batch_size = 32 # n_epochs = 10 # n_freeze = 1 # classes = (0, 1, 2, 3) # coef = [0.5, 1.5, 2.5, 3.5] # # Libraries # import torch # import os # import gc # import sys # import cv2 # import subprocess # import numpy as np # import pandas as pd # from tqdm import tqdm # from albumentations import Compose, RandomBrightnessContrast, ShiftScaleRotate # from albumentations.pytorch import ToTensor # from torch.utils.data import Dataset # from torchvision.models.resnet import ResNet, Bottleneck # import torch.optim as optim # # Install Apex for mixed precision # print('Starting Apex installation ...') # FNULL = open(os.devnull, 'w') # process = subprocess.Popen( # 'pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ../input/nvidia-apex/apex/apex', # shell=True, # stdout=FNULL, stderr=subprocess.STDOUT) # process.wait() # if process.returncode==0: # print('Apex successfully installed') # from apex import amp # # Functions # class RetinopathyDatasetTrain(Dataset): # def __init__(self, csv_file, transform=None): # self.data = pd.read_csv(csv_file) # self.transform = transform # def __len__(self): # return len(self.data) # def __getitem__(self, idx): # img_name = os.path.join('../input/aptospreprocessed224x/train_images_processed_224x/train_images_processed_224x/', self.data.loc[idx, 'id_code'] + '.png.png') # typo # im = cv2.imread(img_name) # label = torch.tensor(self.data.loc[idx, 'diagnosis']) # if self.transform: # augmented = self.transform(image=im) # im = augmented['image'] # return {'image': im, 'labels': label} # class RetinopathyDatasetTest(Dataset): # def __init__(self, csv_file, transform=None): # self.data = pd.read_csv(csv_file) # self.transform = transform # def __len__(self): # return len(self.data) # def __getitem__(self, idx): # img_name = os.path.join('../input/aptos2019-blindness-detection/test_images', self.data.loc[idx, 'id_code'] + '.png') # im = cv2.imread(img_name) # im = circle_crop(im) # im = cv2.resize(im, (img_size, img_size)) # if self.transform: # augmented = self.transform(image=im) # im = augmented['image'] # return {'image': im} # def _resnext(path, block, layers, pretrained, progress, **kwargs): # model = ResNet(block, layers, **kwargs) # model.load_state_dict(torch.load(path)) # return model # def resnext101_32x16d_wsl(path, progress=True, **kwargs): # """Constructs a ResNeXt-101 32x16 model pre-trained on weakly-supervised data # and finetuned on ImageNet from Figure 5 in # `"Exploring the Limits of Weakly Supervised Pretraining" `_ # Args: # progress (bool): If True, displays a progress bar of the download to stderr. # """ # kwargs['groups'] = 32 # kwargs['width_per_group'] = 16 # return _resnext(path, Bottleneck, [3, 4, 23, 3], True, progress, **kwargs) # def train_model(model, n_epochs, classification=True): # for epoch in range(n_epochs): # if epoch == n_freeze: # for param in model.parameters(): # param.requires_grad = True # tr_loss = 0 # counter = 0 # model.train() # print('Epoch {}/{}'.format(epoch, n_epochs - 1)) # print('-' * 10) # for step, batch in enumerate(train_data_loader): # if classification: # inputs = batch["image"] # labels = batch["labels"] # inputs = inputs.to(device, dtype=torch.float) # labels = labels.to(device, dtype=torch.long) # else: # inputs = batch["image"] # labels = batch["labels"].view(-1, 1) # inputs = inputs.to(device, dtype=torch.float) # labels = labels.to(device, dtype=torch.float) # outputs = model(inputs) # loss = criterion(outputs, labels) # with amp.scale_loss(loss, optimizer) as scaled_loss: # scaled_loss.backward() # tr_loss += loss.item() # optimizer.step() # optimizer.zero_grad() # epoch_loss = tr_loss / len(train_data_loader) # print('Training Loss: {:.4f}'.format(epoch_loss)) # return model # # processing # transform_train = Compose([ # ShiftScaleRotate( # shift_limit=0.1, # scale_limit=0.1, # rotate_limit=365, # p=1.0), # RandomBrightnessContrast(p=1.0), # ToTensor() # ]) # transform_test = Compose([ # ToTensor() # ]) # train_dataset = RetinopathyDatasetTrain(csv_file='../input/aptos2019-blindness-detection/train.csv', transform=transform_train) # train_data_loader = torch.utils.data.DataLoader(train_dataset, batch_size=batch_size, shuffle=True, num_workers=4) # test_dataset = RetinopathyDatasetTest(csv_file='../input/aptos2019-blindness-detection/test.csv', transform=transform_test) # test_data_loader = torch.utils.data.DataLoader(test_dataset, batch_size=batch_size, shuffle=False, num_workers=4) # device = torch.device("cuda:0") # # classification model # model = resnext101_32x16d_wsl(path='../input/ig-resnext101-32x16/ig_resnext101_32x16-c6f796b0.pth') # for param in model.parameters(): # param.requires_grad = False # model.fc = torch.nn.Linear(2048, len(classes)) # model.to(device) # criterion = torch.nn.CrossEntropyLoss() # plist = [{'params': model.parameters(), 'lr': lr}] # optimizer = optim.Adam(plist, lr=lr) # model, optimizer = amp.initialize(model, optimizer, opt_level="O1") # model = train_model(model=model,n_epochs=n_epochs,classification=True) # for param in model.parameters(): # param.requires_grad = False # model.eval() # test_preds1 = np.zeros((len(test_dataset), 5)) # for i, x_batch in enumerate(tqdm(test_data_loader)): # x_batch = x_batch["image"] # pred = model(x_batch.to(device)) # test_preds1[i * batch_size:(i + 1) * batch_size] = pred.detach().cpu() # test_preds1 = np.argmax(test_preds1, axis=1) # del(model, optimizer, criterion, plist) # gc.collect() # torch.cuda.empty_cache() # # regression model # model = resnext101_32x16d_wsl(path='../input/ig-resnext101-32x16/ig_resnext101_32x16-c6f796b0.pth') # for param in model.parameters(): # param.requires_grad = False # model.fc = torch.nn.Linear(2048, 1) # model.to(device) # criterion = torch.nn.MSELoss() # plist = [{'params': model.parameters(), 'lr': lr}] # optimizer = optim.Adam(plist, lr=lr) # model, optimizer = amp.initialize(model, optimizer, opt_level="O1") # model = train_model(model=model,n_epochs=n_epochs,classification=False) # for param in model.parameters(): # param.requires_grad = False # model.eval() # test_preds2 = np.zeros((len(test_dataset), 1)) # for i, x_batch in enumerate(tqdm(test_data_loader)): # x_batch = x_batch["image"] # pred = model(x_batch.to(device)) # test_preds2[i * batch_size:(i + 1) * batch_size] = pred.detach().cpu() # i = 0 # for pred in test_preds2: # if pred < coef[0]: # test_preds2[i] = 0 # i += 1 # elif pred >= coef[0] and pred < coef[1]: # test_preds2[i] = 1 # i += 1 # elif pred >= coef[1] and pred < coef[2]: # test_preds2[i] = 2 # i += 1 # elif pred >= coef[2] and pred < coef[3]: # test_preds2[i] = 3 # i += 1 # else: # test_preds2[i] = 4 # i += 1 # test_preds2 = test_preds2.reshape(-1,) # # combine # final_pred = np.round((test_preds1+test_preds2)/2) # # submit # sample = pd.read_csv("../input/aptos2019-blindness-detection/sample_submission.csv") # sample.diagnosis = final_pred.astype(int) # sample.to_csv("submission.csv", index=False) ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/__init__.py ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/bam.py ================================================ import torch import math import torch.nn as nn import torch.nn.functional as F class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channel, reduction_ratio=16, num_layers=1): super(ChannelGate, self).__init__() self.gate_activation = gate_activation self.gate_c = nn.Sequential() self.gate_c.add_module("flatten", Flatten()) gate_channels = [gate_channel] gate_channels += [gate_channel // reduction_ratio] * num_layers gate_channels += [gate_channel] for i in range(len(gate_channels) - 2): self.gate_c.add_module( "gate_c_fc_%d" % i, nn.Linear(gate_channels[i], gate_channels[i + 1]) ) self.gate_c.add_module( "gate_c_bn_%d" % (i + 1), nn.BatchNorm1d(gate_channels[i + 1]) ) self.gate_c.add_module("gate_c_relu_%d" % (i + 1), nn.ReLU()) self.gate_c.add_module( "gate_c_fc_final", nn.Linear(gate_channels[-2], gate_channels[-1]) ) def forward(self, in_tensor): avg_pool = F.avg_pool2d(in_tensor, in_tensor.size(2), stride=in_tensor.size(2)) return self.gate_c(avg_pool).unsqueeze(2).unsqueeze(3).expand_as(in_tensor) class SpatialGate(nn.Module): def __init__( self, gate_channel, reduction_ratio=16, dilation_conv_num=2, dilation_val=4 ): super(SpatialGate, self).__init__() self.gate_s = nn.Sequential() self.gate_s.add_module( "gate_s_conv_reduce0", nn.Conv2d(gate_channel, gate_channel // reduction_ratio, kernel_size=1), ) self.gate_s.add_module( "gate_s_bn_reduce0", nn.BatchNorm2d(gate_channel // reduction_ratio) ) self.gate_s.add_module("gate_s_relu_reduce0", nn.ReLU()) for i in range(dilation_conv_num): self.gate_s.add_module( "gate_s_conv_di_%d" % i, nn.Conv2d( gate_channel // reduction_ratio, gate_channel // reduction_ratio, kernel_size=3, padding=dilation_val, dilation=dilation_val, ), ) self.gate_s.add_module( "gate_s_bn_di_%d" % i, nn.BatchNorm2d(gate_channel // reduction_ratio) ) self.gate_s.add_module("gate_s_relu_di_%d" % i, nn.ReLU()) self.gate_s.add_module( "gate_s_conv_final", nn.Conv2d(gate_channel // reduction_ratio, 1, kernel_size=1), ) def forward(self, in_tensor): return self.gate_s(in_tensor).expand_as(in_tensor) class BAM(nn.Module): def __init__(self, gate_channel): super(BAM, self).__init__() self.channel_att = ChannelGate(gate_channel) self.spatial_att = SpatialGate(gate_channel) def forward(self, in_tensor): att = 1 + F.sigmoid(self.channel_att(in_tensor) * self.spatial_att(in_tensor)) return att * in_tensor ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/cbam.py ================================================ import torch import math import torch.nn as nn import torch.nn.functional as F class BasicConv(nn.Module): def __init__( self, in_planes, out_planes, kernel_size, stride=1, padding=0, dilation=1, groups=1, relu=True, bn=True, bias=False, ): super(BasicConv, self).__init__() self.out_channels = out_planes self.conv = nn.Conv2d( in_planes, out_planes, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, groups=groups, bias=bias, ) self.bn = ( nn.BatchNorm2d(out_planes, eps=1e-5, momentum=0.01, affine=True) if bn else None ) self.relu = nn.ReLU() if relu else None def forward(self, x): x = self.conv(x) if self.bn is not None: x = self.bn(x) if self.relu is not None: x = self.relu(x) return x class Flatten(nn.Module): def forward(self, x): return x.view(x.size(0), -1) class ChannelGate(nn.Module): def __init__(self, gate_channels, reduction_ratio=16, pool_types=["avg", "max"]): super(ChannelGate, self).__init__() self.gate_channels = gate_channels self.mlp = nn.Sequential( Flatten(), nn.Linear(gate_channels, gate_channels // reduction_ratio), nn.ReLU(), nn.Linear(gate_channels // reduction_ratio, gate_channels), ) self.pool_types = pool_types def forward(self, x): channel_att_sum = None for pool_type in self.pool_types: if pool_type == "avg": avg_pool = F.avg_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3)) ) channel_att_raw = self.mlp(avg_pool) elif pool_type == "max": max_pool = F.max_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3)) ) channel_att_raw = self.mlp(max_pool) elif pool_type == "lp": lp_pool = F.lp_pool2d( x, 2, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3)) ) channel_att_raw = self.mlp(lp_pool) elif pool_type == "lse": # LSE pool only lse_pool = logsumexp_2d(x) channel_att_raw = self.mlp(lse_pool) if channel_att_sum is None: channel_att_sum = channel_att_raw else: channel_att_sum = channel_att_sum + channel_att_raw scale = F.sigmoid(channel_att_sum).unsqueeze(2).unsqueeze(3).expand_as(x) return x * scale def logsumexp_2d(tensor): tensor_flatten = tensor.view(tensor.size(0), tensor.size(1), -1) s, _ = torch.max(tensor_flatten, dim=2, keepdim=True) outputs = s + (tensor_flatten - s).exp().sum(dim=2, keepdim=True).log() return outputs class ChannelPool(nn.Module): def forward(self, x): return torch.cat( (torch.max(x, 1)[0].unsqueeze(1), torch.mean(x, 1).unsqueeze(1)), dim=1 ) class SpatialGate(nn.Module): def __init__(self): super(SpatialGate, self).__init__() kernel_size = 7 self.compress = ChannelPool() self.spatial = BasicConv( 2, 1, kernel_size, stride=1, padding=(kernel_size - 1) // 2, relu=False ) def forward(self, x): x_compress = self.compress(x) x_out = self.spatial(x_compress) scale = F.sigmoid(x_out) # broadcasting return x * scale class CBAM(nn.Module): def __init__( self, gate_channels, reduction_ratio=16, pool_types=["avg", "max"], no_spatial=False, ): super(CBAM, self).__init__() self.ChannelGate = ChannelGate(gate_channels, reduction_ratio, pool_types) self.no_spatial = no_spatial if not no_spatial: self.SpatialGate = SpatialGate() def forward(self, x): x_out = self.ChannelGate(x) if not self.no_spatial: x_out = self.SpatialGate(x_out) return x_out ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/dataloader.py ================================================ import os from sklearn.model_selection import StratifiedKFold, KFold import cv2 import joblib import pdb import time import warnings import random import numpy as np import pandas as pd from torch.optim.lr_scheduler import ReduceLROnPlateau from sklearn.model_selection import train_test_split import torch import torch.backends.cudnn as cudnn from torch.utils.data import DataLoader, Dataset, sampler from .utils import make_mask from .metric import Meter, epoch_log from albumentations import ( HorizontalFlip, ShiftScaleRotate, Normalize, CropNonEmptyMaskIfExists, Resize, Compose, RandomBrightnessContrast, VerticalFlip, RandomBrightness, RandomContrast, ) from albumentations.pytorch import ToTensor import sys sys.path.append("..") from configs.train_params import * warnings.filterwarnings("ignore") seed = 69 random.seed(seed) os.environ["PYTHONHASHSEED"] = str(seed) np.random.seed(seed) torch.cuda.manual_seed(seed) torch.backends.cudnn.deterministic = True class SteelDataset(Dataset): def __init__(self, df, data_folder, mean, std, phase, df_full, data_folder_full): self.df = df self.root = data_folder self.mean = mean self.std = std self.phase = phase self.transforms = get_transforms(phase, mean, std) self.fnames = self.df.index.tolist() self.df_full = df_full self.data_folder_full = data_folder_full self.df_full_index = self.df_full.reset_index(drop=True).index.tolist() def __getitem__(self, idx): cur_item_type = np.random.choice(["pseudo", "full"], p=[0.3, 0.7]) if self.phase == "val" or cur_item_type == "pseudo": image_id, mask = make_mask(idx, self.df) image_path = os.path.join(self.root, image_id) else: idx = np.random.choice(self.df_full_index) image_id, mask = make_mask(idx, self.df_full) image_path = os.path.join(self.data_folder_full, image_id) img = cv2.imread(image_path) augmented = self.transforms(image=img, mask=mask) img = augmented["image"] mask = augmented["mask"] # 1x256x1600x4 mask = mask[0].permute(2, 0, 1) # 1x4x256x1600 return img, mask # {'features': img, 'masks': mask, 'mask': mask.argmax(axis=1)} def __len__(self): return len(self.fnames) def get_transforms(phase, mean, std): list_transforms = [] if phase == "train": if crop_image_size is not None: list_transforms.extend( [ CropNonEmptyMaskIfExists( crop_image_size[0], crop_image_size[1], p=0.85 ), HorizontalFlip(p=0.5), VerticalFlip(p=0.5), RandomBrightnessContrast( p=0.1, brightness_limit=0.1, contrast_limit=0.1 ), ] ) else: list_transforms.extend( [ HorizontalFlip(p=0.5), VerticalFlip(p=0.5), RandomBrightnessContrast( p=0.1, brightness_limit=0.1, contrast_limit=0.1 ), ] ) list_transforms.extend([Normalize(mean=mean, std=std, p=1), ToTensor()]) list_trfms = Compose(list_transforms) return list_trfms def provider_trai_test_split( data_folder, df_path, phase, mean=None, std=None, batch_size=8, num_workers=4 ): """ Returns dataloader for the model training """ df = pd.read_csv(df_path) # https://www.kaggle.com/amanooo/defect-detection-starter-u-net df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) train_df, val_df = train_test_split( df, test_size=0.2, stratify=df["defects"], random_state=69 ) df = train_df if phase == "train" else val_df data_folder_cur = lb_test if phase == "train" else data_folder image_dataset = SteelDataset(df, data_folder_cur, mean, std, phase) dataloader = DataLoader( image_dataset, batch_size=batch_size, num_workers=num_workers, pin_memory=True, shuffle=True, ) return dataloader def provider_cv( fold, total_folds, data_folder, df_path, phase, mean=None, std=None, batch_size=8, num_workers=4, ): if isDebug: df = pd.read_csv(df_path).head(200) df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) kfold = KFold( total_folds, shuffle=True, random_state=69 ) # StratifiedKFold(total_folds, shuffle=True, random_state=69) train_idx, val_idx = list(kfold.split(df))[fold] # , df["defects"] train_df, val_df = df.iloc[train_idx], df.iloc[val_idx] else: df = pd.read_csv(df_path) df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) folds_idx = joblib.load(FOLDS_ids) train_idx, val_idx = list(folds_idx)[fold] train_df, val_df = df.iloc[train_idx], df.iloc[val_idx] df = pd.read_csv(lb_test) df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) df_cur = df if phase == "train" else val_df folder_cur = test_data_folder if phase == "train" else data_folder print(df.shape) image_dataset = SteelDataset( df_cur, folder_cur, mean, std, phase, train_df, data_folder ) dataloader = DataLoader( image_dataset, batch_size=batch_size, num_workers=num_workers, pin_memory=True, shuffle=True, ) return dataloader def provider_cv___( fold, total_folds, data_folder, df_path, phase, mean=None, std=None, batch_size=8, num_workers=4, ): """ :param fold: :param total_folds: :param data_folder: :param df_path: :param phase: :param mean: :param std: :param batch_size: :param num_workers: :return: # example of usage dataloader = provider_cv( fold=0, total_folds=5, data_folder=data_folder, df_path=train_df_path, phase="train", mean = (0.485, 0.456, 0.406), std = (0.229, 0.224, 0.225), batch_size=16, num_workers=4, ) """ if isDebug: df = pd.read_csv(df_path).head(200) df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) kfold = KFold( total_folds, shuffle=True, random_state=69 ) # StratifiedKFold(total_folds, shuffle=True, random_state=69) train_idx, val_idx = list(kfold.split(df))[fold] # , df["defects"] train_df, val_df = df.iloc[train_idx], df.iloc[val_idx] else: df = pd.read_csv(df_path) df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) folds_idx = joblib.load(FOLDS_ids) train_idx, val_idx = list(folds_idx)[fold] train_df, val_df = df.iloc[train_idx], df.iloc[val_idx] df = train_df if phase == "train" else val_df print(df.shape) image_dataset = SteelDataset(df, data_folder, mean, std, phase) dataloader = DataLoader( image_dataset, batch_size=batch_size, num_workers=num_workers, pin_memory=True, shuffle=True, ) return dataloader ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/generate_folds.py ================================================ import pandas as pd from sklearn.model_selection import StratifiedKFold, KFold import joblib total_folds = 10 df = pd.read_csv("./input/severstal-steel-defect-detection/train.csv") df["ImageId"], df["ClassId"] = zip(*df["ImageId_ClassId"].str.split("_")) df["ClassId"] = df["ClassId"].astype(int) df = df.pivot(index="ImageId", columns="ClassId", values="EncodedPixels") df["defects"] = df.count(axis=1) # Dumbing FOLD ids FOLDS_PATH = "./input/folds.pkl" folds = KFold(n_splits=10, shuffle=True, random_state=69) folds_idx = [(train_idx, val_idx) for train_idx, val_idx in folds.split(df)] joblib.dump(folds_idx, FOLDS_PATH) # How to work work with FOLDS for cur_fold = 2 cur_fold = 2 folds_idx = joblib.load(FOLDS_PATH) train_idx, val_idx = list(folds_idx)[cur_fold] train_df, val_df = df.iloc[train_idx], df.iloc[val_idx] ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/logger.py ================================================ # This file defines a decorator '@log_to()' that logs every call to a # function, along with the arguments that function was called with. It # takes a logging function, which is any function that accepts a # string and does something with it. A good choice is the debug # function from the logging module. A second decorator '@logdebug' is # provided that uses 'logging.debug' as the logger. from functools import wraps from inspect import getcallargs, getargspec, getfullargspec from collections import OrderedDict, Iterable from itertools import * import logging import time # from logdecorator import log_on_start, log_on_end, log_on_error # from logging import DEBUG, ERROR, INFO def flatten(l): """Flatten a list (or other iterable) recursively""" for el in l: if isinstance(el, Iterable) and not isinstance(el, str): for sub in flatten(el): yield sub else: yield el def getargnames(func): """Return an iterator over all arg names, including nested arg names and varargs. Goes in the order of the functions argspec, with varargs and keyword args last if present.""" (argnames, varargname, kwargname, _, _, _, _) = getfullargspec(func) return chain(flatten(argnames), filter(None, [varargname, kwargname])) def getcallargs_ordered(func, *args, **kwargs): """Return an OrderedDict of all arguments to a function. Items are ordered by the function's argspec.""" argdict = getcallargs(func, *args, **kwargs) return OrderedDict((name, argdict[name]) for name in getargnames(func)) def describe_call(func, *args, **kwargs): try: yield "Calling %s with args:" % func.__name__ for argname, argvalue in getcallargs_ordered(func, *args, **kwargs).items(): yield "\t%s = %s" % (argname, repr(argvalue)) except: yield None def log_to(logger_func): """A decorator to log every call to function (function name and arg values). logger_func should be a function that accepts a string and logs it somewhere. The default is logging.debug. If logger_func is None, then the resulting decorator does nothing. This is much more efficient than providing a no-op logger function: @log_to(lambda x: None). """ if logger_func is not None: def decorator(func): @wraps(func) def wrapper(*args, **kwargs): for line in describe_call(func, *args, **kwargs): logger_func(line) return func(*args, **kwargs) return wrapper else: decorator = lambda x: x return decorator def timeit(method): def timed(*args, **kw): ts = time.time() result = method(*args, **kw) te = time.time() if "log_time" in kw: name = kw.get("log_name", method.__name__.upper()) kw["log_time"][name] = int((te - ts) * 1000) else: logging.info( "End of {}. Elapsed time: {:0.2f} sec.".format( method.__name__, (te - ts) ) ) return result return timed def debug(fn): def wrapper(*args, **kwargs): logger.debug("Entering {:s}...".format(fn.__name__)) result = fn(*args, **kwargs) logger.debug("Finished {:s}.".format(fn.__name__)) return result return wrapper logging_arg = log_to(logging.info) @logging_arg @timeit def myfunc(a, b, c, *args, **kwargs): pass if __name__ == "__main__": logging.basicConfig( level=logging.INFO, format="%(asctime)s %(name)-12s %(levelname)-8s %(message)s", filename="testing.log", filemode="w", ) myfunc(1, 2, 3, 4, 5, 6, x=7, y=8, z=9, g="blarg", f=lambda x: x + 2) ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/losses.py ================================================ import torch.nn as nn import numpy as np import torch import torch.nn as nn from torch.nn import functional as F class FocalLoss(nn.Module): def __init__(self, alpha=1, gamma=2, logits=False, reduce=True): super(FocalLoss, self).__init__() self.alpha = alpha self.gamma = gamma self.logits = logits self.reduce = reduce def forward(self, inputs, targets): if self.logits: BCE_loss = F.binary_cross_entropy_with_logits(inputs, targets, reduce=False) else: BCE_loss = F.binary_cross_entropy(inputs, targets, reduce=False) pt = torch.exp(-BCE_loss) F_loss = self.alpha * (1 - pt) ** self.gamma * BCE_loss if self.reduce: return torch.mean(F_loss) else: return F_loss class JaccardLoss(nn.Module): __name__ = "jaccard_loss" def __init__(self, eps=1e-7, activation="sigmoid"): super().__init__() self.activation = activation self.eps = eps def forward(self, y_pr, y_gt): return 1 - jaccard( y_pr, y_gt, eps=self.eps, threshold=None, activation=self.activation ) class DiceLoss(nn.Module): __name__ = "dice_loss" def __init__(self, eps=1e-7, activation="sigmoid"): super().__init__() self.activation = activation self.eps = eps def forward(self, y_pr, y_gt): return 1 - f_score( y_pr, y_gt, beta=1.0, eps=self.eps, threshold=None, activation=self.activation, ) class BCEJaccardLoss(JaccardLoss): __name__ = "bce_jaccard_loss" def __init__(self, eps=1e-7, activation="sigmoid"): super().__init__(eps, activation) self.bce = nn.BCEWithLogitsLoss(reduction="mean") def forward(self, y_pr, y_gt): jaccard = super().forward(y_pr, y_gt) bce = self.bce(y_pr, y_gt) return jaccard + bce class BCEDiceLoss(DiceLoss): __name__ = "bce_dice_loss" def __init__(self, eps=1e-7, activation="sigmoid"): super().__init__(eps, activation) self.bce = nn.BCEWithLogitsLoss(reduction="mean") def forward(self, y_pr, y_gt): dice = super().forward(y_pr, y_gt) bce = self.bce(y_pr, y_gt) return dice + bce def iou(pr, gt, eps=1e-7, threshold=None, activation="sigmoid"): """ Source: https://github.com/catalyst-team/catalyst/ Args: pr (torch.Tensor): A list of predicted elements gt (torch.Tensor): A list of elements that are to be predicted eps (float): epsilon to avoid zero division threshold: threshold for outputs binarization Returns: float: IoU (Jaccard) score """ if activation is None or activation == "none": activation_fn = lambda x: x elif activation == "sigmoid": activation_fn = torch.nn.Sigmoid() elif activation == "softmax2d": activation_fn = torch.nn.Softmax2d() else: raise NotImplementedError("Activation implemented for sigmoid and softmax2d") pr = activation_fn(pr) if threshold is not None: pr = (pr > threshold).float() intersection = torch.sum(gt * pr) union = torch.sum(gt) + torch.sum(pr) - intersection + eps return (intersection + eps) / union jaccard = iou def f_score(pr, gt, beta=1, eps=1e-7, threshold=None, activation="sigmoid"): """ Args: pr (torch.Tensor): A list of predicted elements gt (torch.Tensor): A list of elements that are to be predicted beta (float): positive constant eps (float): epsilon to avoid zero division threshold: threshold for outputs binarization Returns: float: F score """ if activation is None or activation == "none": activation_fn = lambda x: x elif activation == "sigmoid": activation_fn = torch.nn.Sigmoid() elif activation == "softmax2d": activation_fn = torch.nn.Softmax2d() else: raise NotImplementedError("Activation implemented for sigmoid and softmax2d") pr = activation_fn(pr) if threshold is not None: pr = (pr > threshold).float() tp = torch.sum(gt * pr) fp = torch.sum(pr) - tp fn = torch.sum(gt) - tp score = ((1 + beta ** 2) * tp + eps) / ( (1 + beta ** 2) * tp + beta ** 2 * fn + fp + eps ) return score ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/lovasz_losses.py ================================================ """ Lovasz-Softmax and Jaccard hinge loss in PyTorch Maxim Berman 2018 ESAT-PSI KU Leuven (MIT License) """ import torch import torch.nn.functional as F from torch.autograd import Variable from torch.nn.modules.loss import _Loss try: from itertools import ifilterfalse except ImportError: # py3k from itertools import filterfalse as ifilterfalse __all__ = ["BinaryLovaszLoss", "LovaszLoss"] def _lovasz_grad(gt_sorted): """Compute gradient of the Lovasz extension w.r.t sorted errors See Alg. 1 in paper """ p = len(gt_sorted) gts = gt_sorted.sum() intersection = gts - gt_sorted.float().cumsum(0) union = gts + (1 - gt_sorted).float().cumsum(0) jaccard = 1.0 - intersection / union if p > 1: # cover 1-pixel case jaccard[1:p] = jaccard[1:p] - jaccard[0:-1] return jaccard def _lovasz_hinge(logits, labels, per_image=True, ignore=None): """ Binary Lovasz hinge loss logits: [B, H, W] Variable, logits at each pixel (between -infinity and +infinity) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) per_image: compute the loss per image instead of per batch ignore: void class id """ if per_image: loss = mean( _lovasz_hinge_flat( *_flatten_binary_scores(log.unsqueeze(0), lab.unsqueeze(0), ignore) ) for log, lab in zip(logits, labels) ) else: loss = _lovasz_hinge_flat(*_flatten_binary_scores(logits, labels, ignore)) return loss def _lovasz_hinge_flat(logits, labels): """Binary Lovasz hinge loss Args: logits: [P] Variable, logits at each prediction (between -iinfinity and +iinfinity) labels: [P] Tensor, binary ground truth labels (0 or 1) ignore: label to ignore """ if len(labels) == 0: # only void pixels, the gradients should be 0 return logits.sum() * 0.0 signs = 2.0 * labels.float() - 1.0 errors = 1.0 - logits * Variable(signs) errors_sorted, perm = torch.sort(errors, dim=0, descending=True) perm = perm.data gt_sorted = labels[perm] grad = _lovasz_grad(gt_sorted) loss = torch.dot(F.relu(errors_sorted), Variable(grad)) return loss def _flatten_binary_scores(scores, labels, ignore=None): """Flattens predictions in the batch (binary case) Remove labels equal to 'ignore' """ scores = scores.view(-1) labels = labels.view(-1) if ignore is None: return scores, labels valid = labels != ignore vscores = scores[valid] vlabels = labels[valid] return vscores, vlabels # --------------------------- MULTICLASS LOSSES --------------------------- def _lovasz_softmax( probas, labels, classes="present", per_image=False, ignore=None, anti=False ): """Multi-class Lovasz-Softmax loss Args: @param probas: [B, C, H, W] Variable, class probabilities at each prediction (between 0 and 1). Interpreted as binary (sigmoid) output with outputs of size [B, H, W]. @param labels: [B, H, W] Tensor, ground truth labels (between 0 and C - 1) @param classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. @param per_image: compute the loss per image instead of per batch @param ignore: void class labels """ if per_image: loss = mean( _lovasz_softmax_flat( *_flatten_probas(prob.unsqueeze(0), lab.unsqueeze(0), ignore), classes=classes, anti=anti ) for prob, lab in zip(probas, labels) ) else: loss = _lovasz_softmax_flat( *_flatten_probas(probas, labels, ignore, anti), classes=classes, anti=anti ) return loss def _lovasz_softmax_flat(probas, labels, classes="present", anti=False): """Multi-class Lovasz-Softmax loss Args: @param probas: [P, C] Variable, class probabilities at each prediction (between 0 and 1) @param labels: [P] Tensor, ground truth labels (between 0 and C - 1) @param classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. """ if probas.numel() == 0: # only void pixels, the gradients should be 0 return probas * 0.0 C = probas.size(1) losses = [] class_to_sum = list(range(C)) if classes in ["all", "present"] else classes for c in class_to_sum: fg = (labels == c).float() # foreground for class c if anti: fg = 1.0 - fg # print(fg) if classes == "present" and fg.sum() == 0: continue if C == 1: if len(classes) > 1: raise ValueError("Sigmoid output possible only with 1 class") class_pred = probas[:, 0] else: class_pred = probas[:, c] errors = (Variable(fg) - class_pred).abs() errors_sorted, perm = torch.sort(errors, 0, descending=True) perm = perm.data fg_sorted = fg[perm] losses.append(torch.dot(errors_sorted, Variable(_lovasz_grad(fg_sorted)))) return mean(losses) def _flatten_probas(probas, labels, ignore=None, anti=False): """Flattens predictions in the batch """ if probas.dim() == 3: # assumes output of a sigmoid layer B, H, W = probas.size() probas = probas.view(B, 1, H, W) B, C, H, W = probas.size() probas = probas.permute(0, 2, 3, 1).contiguous().view(-1, C) # B * H * W, C = P, C labels = labels.view(-1) if ignore is None: return probas, labels valid = labels != ignore vprobas = probas[valid.nonzero().squeeze()] vlabels = labels[valid] return vprobas, vlabels # --------------------------- HELPER FUNCTIONS --------------------------- def isnan(x): return x != x def mean(values, ignore_nan=False, empty=0): """Nanmean compatible with generators. """ values = iter(values) if ignore_nan: values = ifilterfalse(isnan, values) try: n = 1 acc = next(values) except StopIteration: if empty == "raise": raise ValueError("Empty mean") return empty for n, v in enumerate(values, 2): acc += v if n == 1: return acc return acc / n class BinaryLovaszLoss(_Loss): def __init__(self, per_image=False, ignore=None): super().__init__() self.ignore = ignore self.per_image = per_image def forward(self, logits, target): return _lovasz_hinge( logits, target, per_image=self.per_image, ignore=self.ignore ) class LovaszLoss(_Loss): def __init__(self, per_image=False, ignore=None, anti=False, classes="all"): super().__init__() self.ignore = ignore self.per_image = per_image self.anti = anti self.classes = classes def forward(self, logits, target): logits = torch.sigmoid(logits) if self.anti: logits = 1.0 - logits return _lovasz_softmax( logits, target, classes=self.classes, per_image=self.per_image, ignore=self.ignore, anti=self.anti, ) class LovaszLossSymmetric(_Loss): def __init__(self, per_image=True, ignore=None, classes="all"): super().__init__() self.ignore = ignore self.per_image = per_image self.classes = classes def forward(self, logits, target): # print(target.shape, target.argmax(dim=0).shape) target = target.argmax(dim=1) logits = torch.sigmoid(logits) pos_loss = _lovasz_softmax( logits, target, classes=self.classes, per_image=self.per_image, ignore=self.ignore, anti=False, ) logits = 1.0 - logits anti_loss = _lovasz_softmax( logits, target, classes=self.classes, per_image=self.per_image, ignore=self.ignore, anti=True, ) print(pos_loss, anti_loss, pos_loss + anti_loss) return pos_loss + anti_loss ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/metric.py ================================================ import os import random import warnings import numpy as np import torch import torch.backends.cudnn as cudnn warnings.filterwarnings("ignore") seed = 69 random.seed(seed) os.environ["PYTHONHASHSEED"] = str(seed) np.random.seed(seed) torch.cuda.manual_seed(seed) torch.backends.cudnn.deterministic = True class Meter: """A meter to keep track of iou and dice scores throughout an epoch""" def __init__(self, phase, epoch): self.base_threshold = 0.5 self.base_dice_scores = [] self.dice_neg_scores = [] self.dice_pos_scores = [] # self.iou_scores = [] def update(self, targets, outputs): probs = torch.sigmoid(outputs) dice, dice_neg, dice_pos, num_negative, num_positive = dice_channel_torch( probs, targets, self.base_threshold ) self.base_dice_scores.append(dice) self.dice_pos_scores.append(dice_pos) self.dice_neg_scores.append(dice_neg) # preds = predict(probs, self.base_threshold) # iou = compute_iou_batch(preds, targets, classes=[1]) # self.iou_scores.append(iou) def get_metrics(self): dice = np.mean(self.base_dice_scores) dice_neg = np.mean(self.dice_neg_scores) dice_pos = np.mean(self.dice_pos_scores) dices = [dice, dice_neg, dice_pos] # iou = np.nanmean(self.iou_scores) return dices def predict(X, threshold): """X is sigmoid output of the model""" X_p = np.copy(X) preds = (X_p > threshold).astype("uint8") return preds def metric_old(probability, truth, threshold=0.5): """Calculates dice of positive and negative images seperately probability and truth must be torch tensors Seems to be this code averages per image not class """ batch_size = truth.shape[0] # len(truth) with torch.no_grad(): probability = probability.view(batch_size, -1) truth = truth.view(batch_size, -1) p = (probability > threshold).float() t = (truth > 0.5).float() t_sum = t.sum(-1) p_sum = p.sum(-1) neg_index = torch.nonzero(t_sum == 0) pos_index = torch.nonzero(t_sum >= 1) dice_neg = (p_sum == 0).float() dice_pos = 2 * (p * t).sum(-1) / ((p + t).sum(-1)) dice_neg = dice_neg[neg_index] dice_pos = dice_pos[pos_index] dice = torch.cat([dice_pos, dice_neg]) dice_neg = np.nan_to_num(dice_neg.mean().item(), 0) dice_pos = np.nan_to_num(dice_pos.mean().item(), 0) dice = dice.mean().item() num_neg = len(neg_index) num_pos = len(pos_index) return dice, dice_neg, dice_pos, num_neg, num_pos def dice_channel_torch(probability, truth, threshold): """ This competition is evaluated on the mean Dice coefficient. The Dice coefficient can be used to compare the pixel-wise agreement between a predicted segmentation and its corresponding ground truth. The formula is given by: Dice(X,Y)=2∗|X∩Y||X|+|Y| where X is the predicted set of pixels and Y is the ground truth. The Dice coefficient is defined to be 1 when both X and Y are empty. The leaderboard score is the mean of the Dice coefficients for each pair in the test set. Which means the seperate channel of each mask will be average to Dice score. :param probability: :param truth: :param threshold: :return: """ batch_size = truth.shape[0] channel_num = truth.shape[1] mean_dice_channel = 0.0 with torch.no_grad(): for j in range(channel_num): channel_dice = dice_single_channel( probability[:, j, :, :], truth[:, j, :, :], threshold, batch_size ) mean_dice_channel += channel_dice.sum(0) / (batch_size * channel_num) return mean_dice_channel, 1, 1, 1, 1 def dice_single_channel(probability, truth, threshold, batch_size, eps=1e-9): p = (probability.view(batch_size, -1) > threshold).float() t = (truth.view(batch_size, -1) > 0.5).float() dice = (2.0 * (p * t).sum(1) + eps) / (p.sum(1) + t.sum(1) + eps) return dice def epoch_log(phase, epoch, epoch_loss, meter, start): """logging the metrics at the end of an epoch""" dice, dice_neg, dice_pos = meter.get_metrics() print("Loss: %0.4f | dice: %0.4f" % (epoch_loss, dice)) return dice def compute_ious(pred, label, classes, ignore_index=255, only_present=True): """computes iou for one ground truth mask and predicted mask""" pred[label == ignore_index] = 0 ious = [] for c in classes: label_c = label == c if only_present and np.sum(label_c) == 0: ious.append(np.nan) continue pred_c = pred == c intersection = np.logical_and(pred_c, label_c).sum() union = np.logical_or(pred_c, label_c).sum() if union != 0: ious.append(intersection / union) return ious if ious else [1] def compute_iou_batch(outputs, labels, classes=None): """computes mean iou for a batch of ground truth masks and predicted masks""" ious = [] preds = np.copy(outputs) # copy is imp labels = np.array(labels) # tensor to np for pred, label in zip(preds, labels): ious.append(np.nanmean(compute_ious(pred, label, classes))) iou = np.nanmean(ious) return iou ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/new_metrics.py ================================================ from functools import partial import numpy as np import torch from catalyst.dl import Callback, RunnerState, MetricCallback, CallbackOrder from pytorch_toolbelt.utils.catalyst.visualization import get_tensorboard_logger from pytorch_toolbelt.utils.torch_utils import to_numpy from pytorch_toolbelt.utils.visualization import ( render_figure_to_tensor, plot_confusion_matrix, ) from sklearn.metrics import f1_score, multilabel_confusion_matrix __all__ = [ "pixel_accuracy", "binary_dice_iou_score", "multiclass_dice_iou_score", "multilabel_dice_iou_score", "PixelAccuracyCallback", "MacroF1Callback", "ConfusionMatrixCallback", "IoUMetricsCallback", ] BINARY_MODE = "binary" MULTICLASS_MODE = "multiclass" MULTILABEL_MODE = "multilabel" def pixel_accuracy(outputs: torch.Tensor, targets: torch.Tensor, ignore_index=None): """ Compute the pixel accuracy """ outputs = outputs.detach() targets = targets.detach() if ignore_index is not None: mask = targets != ignore_index outputs = outputs[mask] targets = targets[mask] outputs = (outputs > 0).float() correct = float(torch.sum(outputs == targets)) total = targets.numel() return correct / total class PixelAccuracyCallback(MetricCallback): """Pixel accuracy metric callback """ def __init__( self, input_key: str = "targets", output_key: str = "logits", prefix: str = "accuracy", ignore_index=None, ): """ :param input_key: input key to use for iou calculation; specifies our `y_true`. :param output_key: output key to use for iou calculation; specifies our `y_pred` :param ignore_index: same meaning as in nn.CrossEntropyLoss """ super().__init__( prefix=prefix, metric_fn=partial(pixel_accuracy, ignore_index=ignore_index), input_key=input_key, output_key=output_key, ) class ConfusionMatrixCallback(Callback): """ Compute and log confusion matrix to Tensorboard. For use with Multiclass classification/segmentation. """ def __init__( self, input_key: str = "targets", output_key: str = "logits", prefix: str = "confusion_matrix", class_names=None, ignore_index=None, ): """ :param input_key: input key to use for precision calculation; specifies our `y_true`. :param output_key: output key to use for precision calculation; specifies our `y_pred`. :param ignore_index: same meaning as in nn.CrossEntropyLoss """ super().__init__(CallbackOrder.Logger) self.prefix = prefix self.class_names = class_names self.output_key = output_key self.input_key = input_key self.outputs = [] self.targets = [] self.ignore_index = ignore_index def on_loader_start(self, state): self.outputs = [] self.targets = [] def on_batch_end(self, state: RunnerState): outputs = to_numpy(torch.sigmoid(state.output[self.output_key])) targets = to_numpy(state.input[self.input_key]) # outputs = 1*(outputs>0.5) # targets = np.argmax(targets, axis=1) if self.ignore_index is not None: mask = targets != self.ignore_index outputs = outputs[mask] targets = targets[mask] self.outputs.extend(outputs) self.targets.extend(targets) def on_loader_end(self, state): targets = np.array(self.targets) outputs = np.array(self.outputs) if self.class_names is None: class_names = [str(i) for i in range(targets.shape[1])] else: class_names = self.class_names num_classes = len(class_names) best_score = 0 best_th = 0 best_fsores = {c: 0 for c in range(num_classes)} best_fsores_th = {} for th in np.linspace(0, 1, 41): cm = multilabel_confusion_matrix( targets, outputs > th, labels=range(num_classes) ) for c in range(num_classes): tn, fp, fn, tp = cm[c].ravel() if (tp + fp) == 0: precision = 0 else: precision = tp / (tp + fp) if (tp + fn) == 0: recall = 0 else: recall = tp / (tp + fn) if precision == 0 or recall == 0: fscore = 0 else: fscore = 2 * (precision * recall / (precision + recall)) if best_fsores[c] < fscore: best_fsores_th[c] = th state.metrics.epoch_values[state.loader_name][ str(c) + "_precision_best" ] = precision state.metrics.epoch_values[state.loader_name][ str(c) + "_recall_best" ] = recall state.metrics.epoch_values[state.loader_name][ str(c) + "_fscore_best" ] = fscore state.metrics.epoch_values[state.loader_name][ str(c) + "_fscore_best_th" ] = th best_fsores[c] = fscore state.metrics.epoch_values[state.loader_name]["fscore_macro_best"] = np.mean( [best_fsores[i] for i in best_fsores] ) cm = multilabel_confusion_matrix( targets, outputs > 0.5, labels=range(num_classes) ) for c in range(num_classes): tn, fp, fn, tp = cm[c].ravel() if (tp + fp) == 0: precision = 0 else: precision = tp / (tp + fp) if (tp + fn) == 0: recall = 0 else: recall = tp / (tp + fn) if precision == 0 or recall == 0: fscore = 0 else: fscore = 2 * (precision * recall / (precision + recall)) state.metrics.epoch_values[state.loader_name][ str(c) + "_precision_05" ] = precision state.metrics.epoch_values[state.loader_name][ str(c) + "_recall_05" ] = recall state.metrics.epoch_values[state.loader_name][ str(c) + "_fscore_05" ] = fscore # logger = get_tensorboard_logger(state) # logger.add_image(f"{self.prefix}/epoch", fig, global_step=state.step) class MacroF1Callback(Callback): """ Compute F1-macro metric """ def __init__( self, input_key: str = "targets", output_key: str = "logits", prefix: str = "macro_f1", ignore_index=None, ): """ :param input_key: input key to use for precision calculation; specifies our `y_true`. :param output_key: output key to use for precision calculation; specifies our `y_pred`. """ super().__init__(CallbackOrder.Metric) self.metric_fn = lambda outputs, targets: f1_score( targets, outputs, average="macro" ) self.prefix = prefix self.output_key = output_key self.input_key = input_key self.outputs = [] self.targets = [] self.ignore_index = ignore_index def on_batch_end(self, state: RunnerState): outputs = to_numpy(torch.sigmoid(state.output[self.output_key])) targets = to_numpy(state.input[self.input_key]) num_classes = outputs.shape[1] outputs = 1 * (outputs > 0.5) # targets = np.argmax(targets, axis=1) if self.ignore_index is not None: mask = targets != self.ignore_index outputs = outputs[mask] targets = targets[mask] # outputs = [np.eye(num_classes)[y] for y in outputs] # targets = [np.eye(num_classes)[y] for y in targets] self.outputs.extend(outputs) self.targets.extend(targets) # metric = self.metric_fn(self.targets, self.outputs) # state.metrics.add_batch_value(name=self.prefix, value=metric) def on_loader_start(self, state): self.outputs = [] self.targets = [] def on_loader_end(self, state): metric_name = self.prefix targets = np.array(self.targets) outputs = np.array(self.outputs) metric = self.metric_fn(outputs, targets) state.metrics.epoch_values[state.loader_name][metric_name] = metric def binary_dice_iou_score( y_pred: torch.Tensor, y_true: torch.Tensor, mode="dice", threshold=None, nan_score_on_empty=False, eps=1e-7, ) -> float: """ Compute IoU score between two image tensors :param y_pred: Input image tensor of any shape :param y_true: Target image of any shape (must match size of y_pred) :param mode: Metric to compute (dice, iou) :param threshold: Optional binarization threshold to apply on @y_pred :param nan_score_on_empty: If true, return np.nan if target has no positive pixels; If false, return 1. if both target and input are empty, and 0 otherwise. :param eps: Small value to add to denominator for numerical stability :return: Float scalar """ assert mode in {"dice", "iou"} # Binarize predictions if threshold is not None: y_pred = (y_pred > threshold).to(y_true.dtype) intersection = torch.sum(y_pred * y_true).item() cardinality = (torch.sum(y_pred) + torch.sum(y_true)).item() if mode == "dice": score = (2.0 * intersection) / (cardinality + eps) else: score = intersection / (cardinality + eps) has_targets = torch.sum(y_true) > 0 has_predicted = torch.sum(y_pred) > 0 if not has_targets: if nan_score_on_empty: score = np.nan else: score = float(not has_predicted) return score def multiclass_dice_iou_score( y_pred: torch.Tensor, y_true: torch.Tensor, mode="dice", threshold=None, eps=1e-7, nan_score_on_empty=False, classes_of_interest=None, ): ious = [] num_classes = y_pred.size(0) y_pred = y_pred.argmax(dim=0) if classes_of_interest is None: classes_of_interest = range(num_classes) for class_index in classes_of_interest: iou = binary_dice_iou_score( y_pred=(y_pred == class_index).float(), y_true=(y_true == class_index).float(), mode=mode, nan_score_on_empty=nan_score_on_empty, threshold=threshold, eps=eps, ) ious.append(iou) return ious def multilabel_dice_iou_score( y_true: torch.Tensor, y_pred: torch.Tensor, mode="dice", threshold=None, eps=1e-7, nan_score_on_empty=False, classes_of_interest=None, ): ious = [] num_classes = y_pred.size(0) if classes_of_interest is None: classes_of_interest = range(num_classes) for class_index in classes_of_interest: iou = binary_dice_iou_score( y_pred=y_pred[class_index], y_true=y_true[class_index], mode=mode, threshold=threshold, nan_score_on_empty=nan_score_on_empty, eps=eps, ) ious.append(iou) return ious class IoUMetricsCallback(Callback): """ A metric callback for computing either Dice or Jaccard metric which is computed across whole epoch, not per-batch. """ def __init__( self, mode: str, metric="dice", class_names=None, classes_of_interest=None, input_key: str = "targets", output_key: str = "logits", nan_score_on_empty=True, prefix: str = None, ): """ :param mode: One of: 'binary', 'multiclass', 'multilabel'. :param input_key: input key to use for precision calculation; specifies our `y_true`. :param output_key: output key to use for precision calculation; specifies our `y_pred`. :param accuracy_for_empty: """ super().__init__(CallbackOrder.Metric) assert mode in {BINARY_MODE, MULTILABEL_MODE, MULTICLASS_MODE} if prefix is None: prefix = metric if classes_of_interest is not None: if classes_of_interest.dtype == np.bool: num_classes = len(classes_of_interest) classes_of_interest = np.arange(num_classes)[classes_of_interest] if class_names is not None: if len(class_names) != len(classes_of_interest): raise ValueError( "Length of 'classes_of_interest' must be equal to length of 'classes_of_interest'" ) self.mode = mode self.prefix = prefix self.output_key = output_key self.input_key = input_key self.class_names = class_names self.classes_of_interest = classes_of_interest self.scores = [] if self.mode == BINARY_MODE: self.score_fn = partial( binary_dice_iou_score, threshold=0.0, nan_score_on_empty=nan_score_on_empty, mode=metric, ) if self.mode == MULTICLASS_MODE: self.score_fn = partial( multiclass_dice_iou_score, mode=metric, threshold=0.0, nan_score_on_empty=nan_score_on_empty, classes_of_interest=self.classes_of_interest, ) if self.mode == MULTILABEL_MODE: self.score_fn = partial( multilabel_dice_iou_score, mode=metric, threshold=0.5, nan_score_on_empty=nan_score_on_empty, classes_of_interest=self.classes_of_interest, ) def on_loader_start(self, state): self.scores = [] @torch.no_grad() def on_batch_end(self, state: RunnerState): outputs = state.output[self.output_key].detach() targets = state.input[self.input_key].detach() batch_size = targets.size(0) score_per_image = [] for image_index in range(batch_size): score_per_class = self.score_fn( y_pred=outputs[image_index], y_true=targets[image_index] ) score_per_image.append(score_per_class) mean_score = np.nanmean(score_per_image) state.metrics.add_batch_value(self.prefix, float(mean_score)) self.scores.extend(score_per_image) def on_loader_end(self, state): scores = np.array(self.scores) mean_score = np.nanmean(scores) state.metrics.epoch_values[state.loader_name][self.prefix] = float(mean_score) # Log additional IoU scores per class if self.mode in {MULTICLASS_MODE, MULTILABEL_MODE}: num_classes = scores.shape[1] class_names = self.class_names if class_names is None: class_names = [f"class_{i}" for i in range(num_classes)] scores_per_class = np.nanmean(scores, axis=0) for class_name, score_per_class in zip(class_names, scores_per_class): state.metrics.epoch_values[state.loader_name][ self.prefix + "_" + class_name ] = float(score_per_class) ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/optimizers.py ================================================ import math import torch from torch.optim.optimizer import Optimizer class RAdam(Optimizer): def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) self.buffer = [[None, None, None] for ind in range(10)] super(RAdam, self).__init__(params, defaults) def __setstate__(self, state): super(RAdam, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError("RAdam does not support sparse gradients") p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) exp_avg.mul_(beta1).add_(1 - beta1, grad) state["step"] += 1 buffered = self.buffer[int(state["step"] % 10)] if state["step"] == buffered[0]: N_sma, step_size = buffered[1], buffered[2] else: buffered[0] = state["step"] beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) buffered[1] = N_sma # more conservative since it's an approximated value if N_sma >= 5: step_size = ( group["lr"] * math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) ) else: step_size = group["lr"] / (1 - beta1 ** state["step"]) buffered[2] = step_size if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) # more conservative since it's an approximated value if N_sma >= 5: denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-step_size, exp_avg, denom) else: p_data_fp32.add_(-step_size, exp_avg) p.data.copy_(p_data_fp32) return loss class PlainRAdam(Optimizer): def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) super(PlainRAdam, self).__init__(params, defaults) def __setstate__(self, state): super(PlainRAdam, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError("RAdam does not support sparse gradients") p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) exp_avg.mul_(beta1).add_(1 - beta1, grad) state["step"] += 1 beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) # more conservative since it's an approximated value if N_sma >= 5: step_size = ( group["lr"] * math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) ) denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-step_size, exp_avg, denom) else: step_size = group["lr"] / (1 - beta1 ** state["step"]) p_data_fp32.add_(-step_size, exp_avg) p.data.copy_(p_data_fp32) return loss class AdamW(Optimizer): def __init__( self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0, warmup=0 ): defaults = dict( lr=lr, betas=betas, eps=eps, weight_decay=weight_decay, warmup=warmup ) super(AdamW, self).__init__(params, defaults) def __setstate__(self, state): super(AdamW, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError( "Adam does not support sparse gradients, please consider SparseAdam instead" ) p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] state["step"] += 1 exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) exp_avg.mul_(beta1).add_(1 - beta1, grad) denom = exp_avg_sq.sqrt().add_(group["eps"]) bias_correction1 = 1 - beta1 ** state["step"] bias_correction2 = 1 - beta2 ** state["step"] if group["warmup"] > state["step"]: scheduled_lr = 1e-8 + state["step"] * group["lr"] / group["warmup"] else: scheduled_lr = group["lr"] step_size = group["lr"] * math.sqrt(bias_correction2) / bias_correction1 if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * scheduled_lr, p_data_fp32) p_data_fp32.addcdiv_(-step_size, exp_avg, denom) p.data.copy_(p_data_fp32) return loss # Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. class AdamW(Optimizer): """Implements AdamW algorithm. It has been proposed in `Adam: A Method for Stochastic Optimization`_. Arguments: params (iterable): iterable of parameters to optimize or dicts defining parameter groups lr (float, optional): learning rate (default: 1e-3) betas (Tuple[float, float], optional): coefficients used for computing running averages of gradient and its square (default: (0.9, 0.999)) eps (float, optional): term added to the denominator to improve numerical stability (default: 1e-8) weight_decay (float, optional): weight decay (L2 penalty) (default: 0) amsgrad (boolean, optional): whether to use the AMSGrad variant of this algorithm from the paper `On the Convergence of Adam and Beyond`_ Adam: A Method for Stochastic Optimization: https://arxiv.org/abs/1412.6980 On the Convergence of Adam and Beyond: https://openreview.net/forum?id=ryQu7f-RZ """ def __init__( self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0, amsgrad=False, ): if not 0.0 <= lr: raise ValueError("Invalid learning rate: {}".format(lr)) if not 0.0 <= eps: raise ValueError("Invalid epsilon value: {}".format(eps)) if not 0.0 <= betas[0] < 1.0: raise ValueError("Invalid beta parameter at index 0: {}".format(betas[0])) if not 0.0 <= betas[1] < 1.0: raise ValueError("Invalid beta parameter at index 1: {}".format(betas[1])) defaults = dict( lr=lr, betas=betas, eps=eps, weight_decay=weight_decay, amsgrad=amsgrad ) super(AdamW, self).__init__(params, defaults) def __setstate__(self, state): super(AdamW, self).__setstate__(state) for group in self.param_groups: group.setdefault("amsgrad", False) def step(self, closure=None): """Performs a single optimization step. Arguments: closure (callable, optional): A closure that reevaluates the model and returns the loss. """ loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data if grad.is_sparse: raise RuntimeError( "Adam does not support sparse gradients, please consider SparseAdam instead" ) amsgrad = group["amsgrad"] state = self.state[p] # State initialization if len(state) == 0: state["step"] = 0 # Exponential moving average of gradient values state["exp_avg"] = torch.zeros_like(p.data) # Exponential moving average of squared gradient values state["exp_avg_sq"] = torch.zeros_like(p.data) if amsgrad: # Maintains max of all exp. moving avg. of sq. grad. values state["max_exp_avg_sq"] = torch.zeros_like(p.data) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] if amsgrad: max_exp_avg_sq = state["max_exp_avg_sq"] beta1, beta2 = group["betas"] state["step"] += 1 # Decay the first and second moment running average coefficient exp_avg.mul_(beta1).add_(1 - beta1, grad) exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) if amsgrad: # Maintains the maximum of all 2nd moment running avg. till now torch.max(max_exp_avg_sq, exp_avg_sq, out=max_exp_avg_sq) # Use the max. for normalizing running avg. of gradient denom = max_exp_avg_sq.sqrt().add_(group["eps"]) else: denom = exp_avg_sq.sqrt().add_(group["eps"]) bias_correction1 = 1 - beta1 ** state["step"] bias_correction2 = 1 - beta2 ** state["step"] step_size = group["lr"] * math.sqrt(bias_correction2) / bias_correction1 p.data.add_( -step_size, torch.mul(p.data, group["weight_decay"]).addcdiv_( 1, exp_avg, denom ), ) return loss class Novograd(Optimizer): """ Implements Novograd algorithm. Args: params (iterable): iterable of parameters to optimize or dicts defining parameter groups lr (float, optional): learning rate (default: 1e-3) betas (Tuple[float, float], optional): coefficients used for computing running averages of gradient and its square (default: (0.95, 0)) eps (float, optional): term added to the denominator to improve numerical stability (default: 1e-8) weight_decay (float, optional): weight decay (L2 penalty) (default: 0) grad_averaging: gradient averaging amsgrad (boolean, optional): whether to use the AMSGrad variant of this algorithm from the paper `On the Convergence of Adam and Beyond`_ (default: False) """ def __init__( self, params, lr=1e-3, betas=(0.95, 0), eps=1e-8, weight_decay=0, grad_averaging=False, amsgrad=False, ): if not 0.0 <= lr: raise ValueError("Invalid learning rate: {}".format(lr)) if not 0.0 <= eps: raise ValueError("Invalid epsilon value: {}".format(eps)) if not 0.0 <= betas[0] < 1.0: raise ValueError("Invalid beta parameter at index 0: {}".format(betas[0])) if not 0.0 <= betas[1] < 1.0: raise ValueError("Invalid beta parameter at index 1: {}".format(betas[1])) defaults = dict( lr=lr, betas=betas, eps=eps, weight_decay=weight_decay, grad_averaging=grad_averaging, amsgrad=amsgrad, ) super(Novograd, self).__init__(params, defaults) def __setstate__(self, state): super(Novograd, self).__setstate__(state) for group in self.param_groups: group.setdefault("amsgrad", False) def step(self, closure=None): """Performs a single optimization step. Arguments: closure (callable, optional): A closure that reevaluates the model and returns the loss. """ loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data if grad.is_sparse: raise RuntimeError("Sparse gradients are not supported.") amsgrad = group["amsgrad"] state = self.state[p] # State initialization if len(state) == 0: state["step"] = 0 # Exponential moving average of gradient values state["exp_avg"] = torch.zeros_like(p.data) # Exponential moving average of squared gradient values state["exp_avg_sq"] = torch.zeros([]).to(state["exp_avg"].device) if amsgrad: # Maintains max of all exp. moving avg. of sq. grad. values state["max_exp_avg_sq"] = torch.zeros([]).to( state["exp_avg"].device ) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] if amsgrad: max_exp_avg_sq = state["max_exp_avg_sq"] beta1, beta2 = group["betas"] state["step"] += 1 norm = torch.sum(torch.pow(grad, 2)) if exp_avg_sq == 0: exp_avg_sq.copy_(norm) else: exp_avg_sq.mul_(beta2).add_(1 - beta2, norm) if amsgrad: # Maintains the maximum of all 2nd moment running avg. till now torch.max(max_exp_avg_sq, exp_avg_sq, out=max_exp_avg_sq) # Use the max. for normalizing running avg. of gradient denom = max_exp_avg_sq.sqrt().add_(group["eps"]) else: denom = exp_avg_sq.sqrt().add_(group["eps"]) grad.div_(denom) if group["weight_decay"] != 0: grad.add_(group["weight_decay"], p.data) if group["grad_averaging"]: grad.mul_(1 - beta1) exp_avg.mul_(beta1).add_(grad) p.data.add_(-group["lr"], exp_avg) return loss # Lookahead implementation from https://github.com/lonePatient/lookahead_pytorch/blob/master/optimizer.py import itertools as it from torch.optim import Adam class Lookahead(Optimizer): def __init__(self, base_optimizer, alpha=0.5, k=6): if not 0.0 <= alpha <= 1.0: raise ValueError(f"Invalid slow update rate: {alpha}") if not 1 <= k: raise ValueError(f"Invalid lookahead steps: {k}") self.optimizer = base_optimizer self.param_groups = self.optimizer.param_groups self.alpha = alpha self.k = k for group in self.param_groups: group["step_counter"] = 0 self.slow_weights = [ [p.clone().detach() for p in group["params"]] for group in self.param_groups ] for w in it.chain(*self.slow_weights): w.requires_grad = False def step(self, closure=None): loss = None if closure is not None: loss = closure() loss = self.optimizer.step() for group, slow_weights in zip(self.param_groups, self.slow_weights): group["step_counter"] += 1 if group["step_counter"] % self.k != 0: continue for p, q in zip(group["params"], slow_weights): if p.grad is None: continue q.data.add_(self.alpha, p.data - q.data) p.data.copy_(q.data) return loss def LookaheadAdam(params, alpha=0.5, k=6, *args, **kwargs): adam = Adam(params, *args, **kwargs) return Lookahead(adam, alpha, k) import torch, math from torch.optim.optimizer import Optimizer # RAdam + LARS class Ralamb(Optimizer): def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) self.buffer = [[None, None, None] for ind in range(10)] super(Ralamb, self).__init__(params, defaults) def __setstate__(self, state): super(Ralamb, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError("Ralamb does not support sparse gradients") p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] # Decay the first and second moment running average coefficient # m_t exp_avg.mul_(beta1).add_(1 - beta1, grad) # v_t exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) state["step"] += 1 buffered = self.buffer[int(state["step"] % 10)] if state["step"] == buffered[0]: N_sma, radam_step = buffered[1], buffered[2] else: buffered[0] = state["step"] beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) buffered[1] = N_sma # more conservative since it's an approximated value if N_sma >= 5: radam_step = ( group["lr"] * math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) ) else: radam_step = group["lr"] / (1 - beta1 ** state["step"]) buffered[2] = radam_step if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) weight_norm = p.data.pow(2).sum().sqrt().clamp(0, 10) radam_norm = p_data_fp32.pow(2).sum().sqrt() if weight_norm == 0 or radam_norm == 0: trust_ratio = 1 else: trust_ratio = weight_norm / radam_norm state["weight_norm"] = weight_norm state["adam_norm"] = radam_norm state["trust_ratio"] = trust_ratio # more conservative since it's an approximated value if N_sma >= 5: denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-radam_step * trust_ratio, exp_avg, denom) else: p_data_fp32.add_(-radam_step * trust_ratio, exp_avg) p.data.copy_(p_data_fp32) return loss # RAdam + LARS + LookAHead # Lookahead implementation from https://github.com/lonePatient/lookahead_pytorch/blob/master/optimizer.py # RAdam + LARS implementation from https://gist.github.com/redknightlois/c4023d393eb8f92bb44b2ab582d7ec20 def Over9000(params, alpha=0.5, k=6, *args, **kwargs): ralamb = Ralamb(params, *args, **kwargs) return Lookahead(ralamb, alpha, k) RangerLars = Over9000 ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/training_helper.py ================================================ import os from sklearn.model_selection import StratifiedKFold import cv2 import pdb import time import warnings import random import numpy as np import pandas as pd from tqdm import tqdm as tqdm from torch.optim.lr_scheduler import ReduceLROnPlateau from sklearn.model_selection import train_test_split import torch import torch.nn as nn from torch.nn import functional as F import torch.optim as optim import torch.backends.cudnn as cudnn from torch.utils.data import DataLoader, Dataset, sampler from matplotlib import pyplot as plt from .metric import Meter, epoch_log from .dataloader import provider_cv, provider_trai_test_split import sys from .losses import BCEDiceLoss, FocalLoss, JaccardLoss, DiceLoss from .lovasz_losses import LovaszLoss, LovaszLossSymmetric sys.path.append("..") from configs.train_params import * from .optimizers import RAdam, Over9000, Adam class Trainer_cv(object): """This class takes care of training and validation of our model""" def __init__( self, model, num_epochs, current_fold=0, batch_size={"train": 4, "val": 4}, optimizer_state=None, ): self.current_fold = current_fold self.total_folds = TOTAL_FOLDS self.num_workers = 4 self.batch_size = batch_size self.accumulation_steps = 32 // self.batch_size["train"] self.lr = LEARNING_RATE self.num_epochs = num_epochs self.best_metric = INITIAL_MINIMUM_DICE # float("inf") self.phases = ["train", "val"] self.device = torch.device("cuda:0") torch.set_default_tensor_type("torch.cuda.FloatTensor") self.net = model # torch.nn.BCEWithLogitsLoss() self.criterion = ( BCEDiceLoss() ) # JaccardLoss()#LovaszLossSymmetric(per_image=True, classes=[0,1,2,3]) # BCEDiceLoss() # BCEDiceLoss()#FocalLoss(num_class=4) # BCEDiceLoss() # torch.nn.BCEWithLogitsLoss() self.optimizer = RAdam( [ {"params": self.net.decoder.parameters(), "lr": self.lr}, {"params": self.net.encoder.parameters(), "lr": self.lr}, ] ) # optim.Adam(self.net.parameters(), lr=self.lr) if optimizer_state is not None: self.optimizer.load_state_dict(optimizer_state) self.scheduler = ReduceLROnPlateau( self.optimizer, factor=0.9, mode="min", patience=3, verbose=True ) self.net = self.net.to(self.device) cudnn.benchmark = True self.dataloaders = { phase: provider_cv( fold=self.current_fold, total_folds=self.total_folds, data_folder=data_folder, df_path=train_df_path, phase=phase, mean=(0.485, 0.456, 0.406), std=(0.229, 0.224, 0.225), batch_size=self.batch_size[phase], num_workers=self.num_workers, ) for phase in self.phases } self.losses = {phase: [] for phase in self.phases} # self.iou_scores = {phase: [] for phase in self.phases} self.dice_scores = {phase: [] for phase in self.phases} def forward(self, images, targets): images = images.to(self.device) masks = targets.to(self.device) outputs = self.net(images) loss = self.criterion(outputs, masks) return loss, outputs def iterate(self, epoch, phase): meter = Meter(phase, epoch) start = time.strftime("%H:%M:%S") print(f"Starting epoch: {epoch} | phase: {phase} | ⏰: {start}") batch_size = self.batch_size[phase] self.net.train(phase == "train") dataloader = self.dataloaders[phase] running_loss = 0.0 total_batches = len(dataloader) tk0 = tqdm(dataloader, total=total_batches) self.optimizer.zero_grad() for itr, batch in enumerate(dataloader): images, targets = batch loss, outputs = self.forward(images, targets) loss = loss / self.accumulation_steps if phase == "train": loss.backward() if (itr + 1) % self.accumulation_steps == 0: self.optimizer.step() self.optimizer.zero_grad() running_loss += loss.item() outputs = outputs.detach().cpu() meter.update(targets, outputs) tk0.update(1) tk0.set_postfix(loss=(running_loss / (itr + 1))) tk0.close() epoch_loss = (running_loss * self.accumulation_steps) / total_batches dice = epoch_log(phase, epoch, epoch_loss, meter, start) self.losses[phase].append(epoch_loss) self.dice_scores[phase].append(dice) # self.iou_scores[phase].append(iou) torch.cuda.empty_cache() return epoch_loss, dice def start(self): epoch_wo_improve_score = 0 for epoch in range(self.num_epochs): if EARLY_STOPING is not None and epoch_wo_improve_score >= EARLY_STOPING: print("Early stopping {}".format(EARLY_STOPING)) torch.save( state, "./model_weights/model_{}_fold_{}_last_epoch_{}_dice_{}.pth".format( unet_encoder, self.current_fold, epoch, val_dice ), ) break self.iterate(epoch, "train") state = { "epoch": epoch, "best_metric": self.best_metric, "state_dict": self.net.state_dict(), "optimizer": self.optimizer.state_dict(), } val_loss, val_dice = self.iterate(epoch, "val") self.scheduler.step(val_loss) if val_dice > self.best_metric: print("******** New optimal found, saving state ********") state["best_metric"] = self.best_metric = val_dice torch.save( state, "./model_weights/model_{}_fold_{}_epoch_{}_dice_{}.pth".format( unet_encoder, self.current_fold, epoch, val_dice ), ) epoch_wo_improve_score = 0 else: epoch_wo_improve_score += 1 print() if num_epochs > 1: torch.save( state, "./model_weights/model_{}_fold_{}_last_epoch_{}_dice_{}.pth".format( unet_encoder, self.current_fold, epoch, val_dice ), ) """ WARNING DEPRECATED class Trainer_split(object): '''This class takes care of training and validation of our model''' def __init__(self, model): self.num_workers = 6 self.batch_size = {"train": 4, "val": 4} self.accumulation_steps = 32 // self.batch_size['train'] self.lr = 5e-4 self.num_epochs = 20 self.best_loss = float("inf") self.phases = ["train", "val"] self.device = torch.device("cuda:0") torch.set_default_tensor_type("torch.cuda.FloatTensor") self.net = model self.criterion = torch.nn.BCEWithLogitsLoss() self.optimizer = optim.Adam(self.net.parameters(), lr=self.lr) self.scheduler = ReduceLROnPlateau(self.optimizer, mode="min", patience=3, verbose=True) self.net = self.net.to(self.device) cudnn.benchmark = True self.dataloaders = { phase: provider_trai_test_split( data_folder=data_folder, df_path=train_df_path, phase=phase, mean=(0.485, 0.456, 0.406), std=(0.229, 0.224, 0.225), batch_size=self.batch_size[phase], num_workers=self.num_workers, ) for phase in self.phases } self.losses = {phase: [] for phase in self.phases} # self.iou_scores = {phase: [] for phase in self.phases} self.dice_scores = {phase: [] for phase in self.phases} def forward(self, images, targets): images = images.to(self.device) masks = targets.to(self.device) outputs = self.net(images) loss = self.criterion(outputs, masks) return loss, outputs def iterate(self, epoch, phase): meter = Meter(phase, epoch) start = time.strftime("%H:%M:%S") print(f"Starting epoch: {epoch} | phase: {phase} | ⏰: {start}") batch_size = self.batch_size[phase] self.net.train(phase == "train") dataloader = self.dataloaders[phase] running_loss = 0.0 total_batches = len(dataloader) # tk0 = tqdm(dataloader, total=total_batches) self.optimizer.zero_grad() for itr, batch in enumerate(dataloader): # replace `dataloader` with `tk0` for tqdm images, targets = batch loss, outputs = self.forward(images, targets) loss = loss / self.accumulation_steps if phase == "train": loss.backward() if (itr + 1) % self.accumulation_steps == 0: self.optimizer.step() self.optimizer.zero_grad() running_loss += loss.item() outputs = outputs.detach().cpu() meter.update(targets, outputs) # tk0.set_postfix(loss=(running_loss / ((itr + 1)))) epoch_loss = (running_loss * self.accumulation_steps) / total_batches dice = epoch_log(phase, epoch, epoch_loss, meter, start) self.losses[phase].append(epoch_loss) self.dice_scores[phase].append(dice) # self.iou_scores[phase].append(iou) torch.cuda.empty_cache() return epoch_loss def start(self): for epoch in range(self.num_epochs): self.iterate(epoch, "train") state = { "epoch": epoch, "best_metric": self.best_loss, "state_dict": self.net.state_dict(), "optimizer": self.optimizer.state_dict(), } with torch.no_grad(): val_loss = self.iterate(epoch, "val") self.scheduler.step(val_loss) if val_loss < self.best_loss: # TODO save weights on last epoch too print("******** New optimal found, saving state ********") state["best_metric"] = self.best_loss = val_loss torch.save(state, "./model.pth") print() """ ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/common_blocks/utils.py ================================================ import numpy as np import matplotlib.pyplot as plt import torch import random import numpy as np import os from segmentation_models_pytorch import Unet, FPN import sys from collections import OrderedDict sys.path.append("..") from configs.train_params import * # https://www.kaggle.com/paulorzp/rle-functions-run-lenght-encode-decode def mask2rle(img): """ img: numpy array, 1 -> mask, 0 -> background Returns run length as string formated """ pixels = img.T.flatten() pixels = np.concatenate([[0], pixels, [0]]) runs = np.where(pixels[1:] != pixels[:-1])[0] + 1 runs[1::2] -= runs[::2] return " ".join(str(x) for x in runs) def make_mask(row_id, df): """Given a row index, return image_id and mask (256, 1600, 4) from the dataframe `df`""" fname = df.iloc[row_id].name labels = df.iloc[row_id][:4] masks = np.zeros((256, 1600, 4), dtype=np.float32) # float32 is V.Imp # 4:class 1~4 (ch:0~3) for idx, label in enumerate(labels.values): if label is not np.nan: label = label.split(" ") positions = map(int, label[0::2]) length = map(int, label[1::2]) mask = np.zeros(256 * 1600, dtype=np.uint8) for pos, le in zip(positions, length): mask[pos : (pos + le)] = 1 masks[:, :, idx] = mask.reshape(256, 1600, order="F") return fname, masks def plot(scores, name, fold=0, safe_pic=True): if not isDebug: plt.figure(figsize=(15, 5)) plt.plot(range(len(scores["train"])), scores["train"], label=f"train {name}") plt.plot(range(len(scores["train"])), scores["val"], label=f"val {name}") plt.title(f"{name} plot") plt.xlabel("Epoch") plt.ylabel(f"{name}") plt.legend() if safe_pic: plt.savefig("./logs/{}_fold_{}.png".format(name, fold)) else: plt.show() def set_seed(seed=42): random.seed(seed) os.environ["PYTHONHASHSEED"] = str(seed) np.random.seed(seed) torch.cuda.manual_seed(seed) torch.backends.cudnn.deterministic = True def load_model_unet(_model_weights, is_inference=False): print("Using weights {}".format(_model_weights)) if _model_weights == "imagenet": model = Unet( unet_encoder, encoder_weights="imagenet", classes=4, activation=None, attention_type=ATTENTION_TYPE, ) if is_inference: model.eval() return model else: model = Unet( unet_encoder, encoder_weights=None, # "imagenet", classes=4, activation=None, attention_type=ATTENTION_TYPE, ) if is_inference: model.eval() if _model_weights is not None: device = torch.device("cuda") model.to(device) state = torch.load( _model_weights ) # , map_location=lambda storage, loc: storage) model.load_state_dict(state["state_dict"]) optimizer_state = state["optimizer"] return model, optimizer_state # new_state_dict = OrderedDict() # # for k, v in state['state_dict'].items(): # if k in model.state_dict(): # new_state_dict[k] = v # model = model.load_state_dict(new_state_dict) return model def load_model_fpn(_model_weights, is_inference=False): print("Using weights {}".format(_model_weights)) if _model_weights == "imagenet": model = FPN( unet_encoder, encoder_weights="imagenet", classes=4, activation=None ) if is_inference: model.eval() return model else: model = FPN(unet_encoder, encoder_weights=None, classes=4, activation=None) if is_inference: model.eval() if _model_weights is not None: device = torch.device("cuda") model.to(device) state = torch.load( _model_weights ) # , map_location=lambda storage, loc: storage) model.load_state_dict(state["state_dict"]) # new_state_dict = OrderedDict() # # for k, v in state['state_dict'].items(): # if k in model.state_dict(): # new_state_dict[k] = v # model = model.load_state_dict(new_state_dict) return model ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/configs/__init__.py ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/configs/train_params.py ================================================ sample_submission_path = ( "./input/severstal-steel-defect-detection/sample_submission.csv" ) train_df_path = "./input/severstal-steel-defect-detection/train.csv" data_folder = "./input/severstal-steel-defect-detection/train_images" test_data_folder = "./input/severstal-steel-defect-detection/test_images" FOLDS_ids = "./input/folds.pkl" lb_test = "./input/severstal-steel-defect-detection/submission_0.91625.csv" isDebug = False unet_encoder = "se_resnext50_32x4d" ATTENTION_TYPE = None num_epochs = 100 LEARNING_RATE = 5e-4 / 100 BATCH_SIZE = {"train": 4, "val": 1} TOTAL_FOLDS = 10 model_weights = "imagenet" EARLY_STOPING = 30 crop_image_size = None # (256, 1600) INITIAL_MINIMUM_DICE = 0.9 if isDebug: num_epochs = 1 ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/inference.py ================================================ #!/usr/bin/env python # coding: utf-8 get_ipython().system(" python ../input/mlcomp/mlcomp/mlcomp/setup.py") get_ipython().system( "pip install ../input/../input/efficientnet-pytorch/efficientnet-pytorch/EfficientNet-PyTorch-master" ) get_ipython().system( "pip install ../input/pretrainedmodels/pretrainedmodels-0.7.4/pretrainedmodels-0.7.4/" ) get_ipython().system( "pip install --no-deps --no-dependencies ../input/segmentation-models-pytorch/ " ) import warnings warnings.filterwarnings("ignore") import os import matplotlib.pyplot as plt import numpy as np import cv2 import albumentations as A from tqdm import tqdm_notebook import pandas as pd import torch import torch.nn as nn from torch.utils.data import DataLoader from torch.jit import load from mlcomp.contrib.transform.albumentations import ChannelTranspose from mlcomp.contrib.dataset.classify import ImageDataset from mlcomp.contrib.transform.rle import rle2mask, mask2rle from mlcomp.contrib.transform.tta import TtaWrap unet_se_resnext50_32x4d = load( "/kaggle/input/severstalmodels/unet_se_resnext50_32x4d.pth" ).cuda() unet_mobilenet2 = load("/kaggle/input/severstalmodels/unet_mobilenet2.pth").cuda() # unet_resnet34 = load('/kaggle/input/severstalmodels/unet_resnet34.pth').cuda() import os from segmentation_models_pytorch import Unet, FPN ENCODER = "resnet34" ENCODER_WEIGHTS = "imagenet" DEVICE = "cuda" CLASSES = ["0", "1", "2", "3", "4"] ACTIVATION = "softmax" unet_resnet34 = Unet( encoder_name=ENCODER, encoder_weights=None, classes=4, activation="sigmoid" ) state = torch.load("../input/bce-clf/unet_res34_525.pth") unet_resnet34.load_state_dict(state["model_state_dict"]) unet_resnet34 = unet_resnet34.cuda() unet_resnet34 = unet_resnet34.eval() device = torch.device("cuda") model_senet = Unet( "se_resnext50_32x4d", encoder_weights=None, classes=4, activation=None ) model_senet.to(device) model_senet.eval() state = torch.load( "../input/senetmodels/senext50_30_epochs_high_threshold.pth", map_location=lambda storage, loc: storage, ) model_senet.load_state_dict(state["state_dict"]) model_fpn91lb = FPN( encoder_name="se_resnext50_32x4d", classes=4, activation=None, encoder_weights=None ) model_fpn91lb.to(device) model_fpn91lb.eval() # state = torch.load('../input/fpnseresnext/model_se_resnext50_32x4d_fold_0_epoch_7_dice_0.935771107673645.pth', map_location=lambda storage, loc: storage) state = torch.load( "../input/fpnse50dice944/model_se_resnext50_32x4d_fold_0_epoch_26_dice_0.94392.pth", map_location=lambda storage, loc: storage, ) model_fpn91lb.load_state_dict(state["state_dict"]) model_fpn91lb_pseudo = FPN( encoder_name="se_resnext50_32x4d", classes=4, activation=None, encoder_weights=None ) model_fpn91lb_pseudo.to(device) model_fpn91lb_pseudo.eval() # state = torch.load('../input/fpnseresnext/model_se_resnext50_32x4d_fold_0_epoch_7_dice_0.935771107673645.pth', map_location=lambda storage, loc: storage) state = torch.load( "../input/942-finetuned-on-pseudo-to9399/pseudo_fpn_se_resnext50_32x4d_fold_0_epoch_22_dice_0.944/pseudo_fpn_se_resnext50_32x4d_fold_0_epoch_22_dice_0.9446276426315308.pth", map_location=lambda storage, loc: storage, ) model_fpn91lb_pseudo.load_state_dict(state["state_dict"]) ENCODER = "se_resnext50_32x4d" ENCODER_WEIGHTS = "imagenet" CLASSES = ["0", "1", "2", "3", "4"] ACTIVATION = "softmax" fpn_se = FPN( encoder_name=ENCODER, encoder_weights=None, # encoder_weights=ENCODER_WEIGHTS, classes=len(CLASSES), activation=ACTIVATION, ) state = torch.load("../input/bce-clf/fpn_se13.pth") fpn_se.to(device) fpn_se.eval() fpn_se.load_state_dict(state["model_state_dict"]) ENCODER = "se_resnext50_32x4d" ENCODER_WEIGHTS = "imagenet" CLASSES = ["0", "1", "2", "3", "4"] ACTIVATION = "softmax" fpn_se2 = FPN( encoder_name=ENCODER, encoder_weights=None, # encoder_weights=ENCODER_WEIGHTS, classes=len(CLASSES), activation=ACTIVATION, ) state = torch.load("../input/bce-clf/fpn_lovash_9519.pth") fpn_se2.to(device) fpn_se2.eval() fpn_se2.load_state_dict(state["model_state_dict"]) # ### Models' mean aggregator class Model: def __init__(self, models): self.models = models def __call__(self, x): res = [] x = x.cuda() with torch.no_grad(): for m in self.models[:-2]: res.append(torch.sigmoid(m(x))) # last model with 5 classes (+background) res.append(torch.sigmoid(self.models[-2](x))[:, 1:, :, :]) res.append(torch.sigmoid(self.models[-1](x))[:, 1:, :, :]) res = torch.stack(res) res = torch.mean(res, dim=0) # print(res.shape) # print(pred_cls.shape) return res model = Model( [ unet_se_resnext50_32x4d, unet_mobilenet2, unet_resnet34, model_senet, model_fpn91lb, model_fpn91lb_pseudo, fpn_se, fpn_se2, ] ) # ### Create TTA transforms, datasets, loaders def create_transforms(additional): res = list(additional) # add necessary transformations res.extend( [ A.Normalize( mean=(0.485, 0.456, 0.406), std=(0.230, 0.225, 0.223) # mean=(0.485, 0.456, 0.406), std=(0.229, 0.224, 0.225) ), ChannelTranspose(), ] ) res = A.Compose(res) return res img_folder = "/kaggle/input/severstal-steel-defect-detection/test_images" batch_size = 2 num_workers = 0 # Different transforms for TTA wrapper transforms = [[], [A.HorizontalFlip(p=1)]] transforms = [create_transforms(t) for t in transforms] datasets = [ TtaWrap(ImageDataset(img_folder=img_folder, transforms=t), tfms=t) for t in transforms ] loaders = [ DataLoader(d, num_workers=num_workers, batch_size=batch_size, shuffle=False) for d in datasets ] # ### Loaders' mean aggregator thresholds = [0.5, 0.5, 0.5, 0.49] min_area = [500, 500, 1000, 2000] res = [] # Iterate over all TTA loaders total = len(datasets[0]) // batch_size for loaders_batch in tqdm_notebook(zip(*loaders), total=total): preds = [] image_file = [] for i, batch in enumerate(loaders_batch): features = batch["features"].cuda() # p = torch.sigmoid(model(features)) p = model(features) # inverse operations for TTA p = datasets[i].inverse(p) preds.append(p) image_file = batch["image_file"] # TTA mean preds = torch.stack(preds) preds = torch.mean(preds, dim=0) preds = preds.detach().cpu().numpy() # Batch post processing for p, file in zip(preds, image_file): file = os.path.basename(file) # Image postprocessing for i in range(4): p_channel = p[i] imageid_classid = file + "_" + str(i + 1) p_channel = (p_channel > thresholds[i]).astype(np.uint8) if p_channel.sum() < min_area[i]: p_channel = np.zeros(p_channel.shape, dtype=p_channel.dtype) res.append( { "ImageId_ClassId": imageid_classid, "EncodedPixels": mask2rle(p_channel), } ) df = pd.DataFrame(res) df.to_csv("submission.csv", index=False) df = pd.DataFrame(res) df = df.fillna("") df.to_csv("submission.csv", index=False) # In[22]: import pdb import os import cv2 import torch import pandas as pd import numpy as np from tqdm import tqdm import torch.backends.cudnn as cudnn from torch.utils.data import DataLoader, Dataset from albumentations import Normalize, Compose from albumentations.pytorch import ToTensor import torch.utils.data as data import torchvision.models as models import torch.nn as nn from torch.nn import functional as F BatchNorm2d = nn.BatchNorm2d IMAGE_RGB_MEAN = [0.485, 0.456, 0.406] IMAGE_RGB_STD = [0.229, 0.224, 0.225] ############################################################################### CONVERSION = [ "block0.0.weight", (64, 3, 7, 7), "conv1.weight", (64, 3, 7, 7), "block0.1.weight", (64,), "bn1.weight", (64,), "block0.1.bias", (64,), "bn1.bias", (64,), "block0.1.running_mean", (64,), "bn1.running_mean", (64,), "block0.1.running_var", (64,), "bn1.running_var", (64,), "block1.1.conv_bn1.conv.weight", (64, 64, 3, 3), "layer1.0.conv1.weight", (64, 64, 3, 3), "block1.1.conv_bn1.bn.weight", (64,), "layer1.0.bn1.weight", (64,), "block1.1.conv_bn1.bn.bias", (64,), "layer1.0.bn1.bias", (64,), "block1.1.conv_bn1.bn.running_mean", (64,), "layer1.0.bn1.running_mean", (64,), "block1.1.conv_bn1.bn.running_var", (64,), "layer1.0.bn1.running_var", (64,), "block1.1.conv_bn2.conv.weight", (64, 64, 3, 3), "layer1.0.conv2.weight", (64, 64, 3, 3), "block1.1.conv_bn2.bn.weight", (64,), "layer1.0.bn2.weight", (64,), "block1.1.conv_bn2.bn.bias", (64,), "layer1.0.bn2.bias", (64,), "block1.1.conv_bn2.bn.running_mean", (64,), "layer1.0.bn2.running_mean", (64,), "block1.1.conv_bn2.bn.running_var", (64,), "layer1.0.bn2.running_var", (64,), "block1.2.conv_bn1.conv.weight", (64, 64, 3, 3), "layer1.1.conv1.weight", (64, 64, 3, 3), "block1.2.conv_bn1.bn.weight", (64,), "layer1.1.bn1.weight", (64,), "block1.2.conv_bn1.bn.bias", (64,), "layer1.1.bn1.bias", (64,), "block1.2.conv_bn1.bn.running_mean", (64,), "layer1.1.bn1.running_mean", (64,), "block1.2.conv_bn1.bn.running_var", (64,), "layer1.1.bn1.running_var", (64,), "block1.2.conv_bn2.conv.weight", (64, 64, 3, 3), "layer1.1.conv2.weight", (64, 64, 3, 3), "block1.2.conv_bn2.bn.weight", (64,), "layer1.1.bn2.weight", (64,), "block1.2.conv_bn2.bn.bias", (64,), "layer1.1.bn2.bias", (64,), "block1.2.conv_bn2.bn.running_mean", (64,), "layer1.1.bn2.running_mean", (64,), "block1.2.conv_bn2.bn.running_var", (64,), "layer1.1.bn2.running_var", (64,), "block1.3.conv_bn1.conv.weight", (64, 64, 3, 3), "layer1.2.conv1.weight", (64, 64, 3, 3), "block1.3.conv_bn1.bn.weight", (64,), "layer1.2.bn1.weight", (64,), "block1.3.conv_bn1.bn.bias", (64,), "layer1.2.bn1.bias", (64,), "block1.3.conv_bn1.bn.running_mean", (64,), "layer1.2.bn1.running_mean", (64,), "block1.3.conv_bn1.bn.running_var", (64,), "layer1.2.bn1.running_var", (64,), "block1.3.conv_bn2.conv.weight", (64, 64, 3, 3), "layer1.2.conv2.weight", (64, 64, 3, 3), "block1.3.conv_bn2.bn.weight", (64,), "layer1.2.bn2.weight", (64,), "block1.3.conv_bn2.bn.bias", (64,), "layer1.2.bn2.bias", (64,), "block1.3.conv_bn2.bn.running_mean", (64,), "layer1.2.bn2.running_mean", (64,), "block1.3.conv_bn2.bn.running_var", (64,), "layer1.2.bn2.running_var", (64,), "block2.0.conv_bn1.conv.weight", (128, 64, 3, 3), "layer2.0.conv1.weight", (128, 64, 3, 3), "block2.0.conv_bn1.bn.weight", (128,), "layer2.0.bn1.weight", (128,), "block2.0.conv_bn1.bn.bias", (128,), "layer2.0.bn1.bias", (128,), "block2.0.conv_bn1.bn.running_mean", (128,), "layer2.0.bn1.running_mean", (128,), "block2.0.conv_bn1.bn.running_var", (128,), "layer2.0.bn1.running_var", (128,), "block2.0.conv_bn2.conv.weight", (128, 128, 3, 3), "layer2.0.conv2.weight", (128, 128, 3, 3), "block2.0.conv_bn2.bn.weight", (128,), "layer2.0.bn2.weight", (128,), "block2.0.conv_bn2.bn.bias", (128,), "layer2.0.bn2.bias", (128,), "block2.0.conv_bn2.bn.running_mean", (128,), "layer2.0.bn2.running_mean", (128,), "block2.0.conv_bn2.bn.running_var", (128,), "layer2.0.bn2.running_var", (128,), "block2.0.shortcut.conv.weight", (128, 64, 1, 1), "layer2.0.downsample.0.weight", (128, 64, 1, 1), "block2.0.shortcut.bn.weight", (128,), "layer2.0.downsample.1.weight", (128,), "block2.0.shortcut.bn.bias", (128,), "layer2.0.downsample.1.bias", (128,), "block2.0.shortcut.bn.running_mean", (128,), "layer2.0.downsample.1.running_mean", (128,), "block2.0.shortcut.bn.running_var", (128,), "layer2.0.downsample.1.running_var", (128,), "block2.1.conv_bn1.conv.weight", (128, 128, 3, 3), "layer2.1.conv1.weight", (128, 128, 3, 3), "block2.1.conv_bn1.bn.weight", (128,), "layer2.1.bn1.weight", (128,), "block2.1.conv_bn1.bn.bias", (128,), "layer2.1.bn1.bias", (128,), "block2.1.conv_bn1.bn.running_mean", (128,), "layer2.1.bn1.running_mean", (128,), "block2.1.conv_bn1.bn.running_var", (128,), "layer2.1.bn1.running_var", (128,), "block2.1.conv_bn2.conv.weight", (128, 128, 3, 3), "layer2.1.conv2.weight", (128, 128, 3, 3), "block2.1.conv_bn2.bn.weight", (128,), "layer2.1.bn2.weight", (128,), "block2.1.conv_bn2.bn.bias", (128,), "layer2.1.bn2.bias", (128,), "block2.1.conv_bn2.bn.running_mean", (128,), "layer2.1.bn2.running_mean", (128,), "block2.1.conv_bn2.bn.running_var", (128,), "layer2.1.bn2.running_var", (128,), "block2.2.conv_bn1.conv.weight", (128, 128, 3, 3), "layer2.2.conv1.weight", (128, 128, 3, 3), "block2.2.conv_bn1.bn.weight", (128,), "layer2.2.bn1.weight", (128,), "block2.2.conv_bn1.bn.bias", (128,), "layer2.2.bn1.bias", (128,), "block2.2.conv_bn1.bn.running_mean", (128,), "layer2.2.bn1.running_mean", (128,), "block2.2.conv_bn1.bn.running_var", (128,), "layer2.2.bn1.running_var", (128,), "block2.2.conv_bn2.conv.weight", (128, 128, 3, 3), "layer2.2.conv2.weight", (128, 128, 3, 3), "block2.2.conv_bn2.bn.weight", (128,), "layer2.2.bn2.weight", (128,), "block2.2.conv_bn2.bn.bias", (128,), "layer2.2.bn2.bias", (128,), "block2.2.conv_bn2.bn.running_mean", (128,), "layer2.2.bn2.running_mean", (128,), "block2.2.conv_bn2.bn.running_var", (128,), "layer2.2.bn2.running_var", (128,), "block2.3.conv_bn1.conv.weight", (128, 128, 3, 3), "layer2.3.conv1.weight", (128, 128, 3, 3), "block2.3.conv_bn1.bn.weight", (128,), "layer2.3.bn1.weight", (128,), "block2.3.conv_bn1.bn.bias", (128,), "layer2.3.bn1.bias", (128,), "block2.3.conv_bn1.bn.running_mean", (128,), "layer2.3.bn1.running_mean", (128,), "block2.3.conv_bn1.bn.running_var", (128,), "layer2.3.bn1.running_var", (128,), "block2.3.conv_bn2.conv.weight", (128, 128, 3, 3), "layer2.3.conv2.weight", (128, 128, 3, 3), "block2.3.conv_bn2.bn.weight", (128,), "layer2.3.bn2.weight", (128,), "block2.3.conv_bn2.bn.bias", (128,), "layer2.3.bn2.bias", (128,), "block2.3.conv_bn2.bn.running_mean", (128,), "layer2.3.bn2.running_mean", (128,), "block2.3.conv_bn2.bn.running_var", (128,), "layer2.3.bn2.running_var", (128,), "block3.0.conv_bn1.conv.weight", (256, 128, 3, 3), "layer3.0.conv1.weight", (256, 128, 3, 3), "block3.0.conv_bn1.bn.weight", (256,), "layer3.0.bn1.weight", (256,), "block3.0.conv_bn1.bn.bias", (256,), "layer3.0.bn1.bias", (256,), "block3.0.conv_bn1.bn.running_mean", (256,), "layer3.0.bn1.running_mean", (256,), "block3.0.conv_bn1.bn.running_var", (256,), "layer3.0.bn1.running_var", (256,), "block3.0.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.0.conv2.weight", (256, 256, 3, 3), "block3.0.conv_bn2.bn.weight", (256,), "layer3.0.bn2.weight", (256,), "block3.0.conv_bn2.bn.bias", (256,), "layer3.0.bn2.bias", (256,), "block3.0.conv_bn2.bn.running_mean", (256,), "layer3.0.bn2.running_mean", (256,), "block3.0.conv_bn2.bn.running_var", (256,), "layer3.0.bn2.running_var", (256,), "block3.0.shortcut.conv.weight", (256, 128, 1, 1), "layer3.0.downsample.0.weight", (256, 128, 1, 1), "block3.0.shortcut.bn.weight", (256,), "layer3.0.downsample.1.weight", (256,), "block3.0.shortcut.bn.bias", (256,), "layer3.0.downsample.1.bias", (256,), "block3.0.shortcut.bn.running_mean", (256,), "layer3.0.downsample.1.running_mean", (256,), "block3.0.shortcut.bn.running_var", (256,), "layer3.0.downsample.1.running_var", (256,), "block3.1.conv_bn1.conv.weight", (256, 256, 3, 3), "layer3.1.conv1.weight", (256, 256, 3, 3), "block3.1.conv_bn1.bn.weight", (256,), "layer3.1.bn1.weight", (256,), "block3.1.conv_bn1.bn.bias", (256,), "layer3.1.bn1.bias", (256,), "block3.1.conv_bn1.bn.running_mean", (256,), "layer3.1.bn1.running_mean", (256,), "block3.1.conv_bn1.bn.running_var", (256,), "layer3.1.bn1.running_var", (256,), "block3.1.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.1.conv2.weight", (256, 256, 3, 3), "block3.1.conv_bn2.bn.weight", (256,), "layer3.1.bn2.weight", (256,), "block3.1.conv_bn2.bn.bias", (256,), "layer3.1.bn2.bias", (256,), "block3.1.conv_bn2.bn.running_mean", (256,), "layer3.1.bn2.running_mean", (256,), "block3.1.conv_bn2.bn.running_var", (256,), "layer3.1.bn2.running_var", (256,), "block3.2.conv_bn1.conv.weight", (256, 256, 3, 3), "layer3.2.conv1.weight", (256, 256, 3, 3), "block3.2.conv_bn1.bn.weight", (256,), "layer3.2.bn1.weight", (256,), "block3.2.conv_bn1.bn.bias", (256,), "layer3.2.bn1.bias", (256,), "block3.2.conv_bn1.bn.running_mean", (256,), "layer3.2.bn1.running_mean", (256,), "block3.2.conv_bn1.bn.running_var", (256,), "layer3.2.bn1.running_var", (256,), "block3.2.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.2.conv2.weight", (256, 256, 3, 3), "block3.2.conv_bn2.bn.weight", (256,), "layer3.2.bn2.weight", (256,), "block3.2.conv_bn2.bn.bias", (256,), "layer3.2.bn2.bias", (256,), "block3.2.conv_bn2.bn.running_mean", (256,), "layer3.2.bn2.running_mean", (256,), "block3.2.conv_bn2.bn.running_var", (256,), "layer3.2.bn2.running_var", (256,), "block3.3.conv_bn1.conv.weight", (256, 256, 3, 3), "layer3.3.conv1.weight", (256, 256, 3, 3), "block3.3.conv_bn1.bn.weight", (256,), "layer3.3.bn1.weight", (256,), "block3.3.conv_bn1.bn.bias", (256,), "layer3.3.bn1.bias", (256,), "block3.3.conv_bn1.bn.running_mean", (256,), "layer3.3.bn1.running_mean", (256,), "block3.3.conv_bn1.bn.running_var", (256,), "layer3.3.bn1.running_var", (256,), "block3.3.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.3.conv2.weight", (256, 256, 3, 3), "block3.3.conv_bn2.bn.weight", (256,), "layer3.3.bn2.weight", (256,), "block3.3.conv_bn2.bn.bias", (256,), "layer3.3.bn2.bias", (256,), "block3.3.conv_bn2.bn.running_mean", (256,), "layer3.3.bn2.running_mean", (256,), "block3.3.conv_bn2.bn.running_var", (256,), "layer3.3.bn2.running_var", (256,), "block3.4.conv_bn1.conv.weight", (256, 256, 3, 3), "layer3.4.conv1.weight", (256, 256, 3, 3), "block3.4.conv_bn1.bn.weight", (256,), "layer3.4.bn1.weight", (256,), "block3.4.conv_bn1.bn.bias", (256,), "layer3.4.bn1.bias", (256,), "block3.4.conv_bn1.bn.running_mean", (256,), "layer3.4.bn1.running_mean", (256,), "block3.4.conv_bn1.bn.running_var", (256,), "layer3.4.bn1.running_var", (256,), "block3.4.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.4.conv2.weight", (256, 256, 3, 3), "block3.4.conv_bn2.bn.weight", (256,), "layer3.4.bn2.weight", (256,), "block3.4.conv_bn2.bn.bias", (256,), "layer3.4.bn2.bias", (256,), "block3.4.conv_bn2.bn.running_mean", (256,), "layer3.4.bn2.running_mean", (256,), "block3.4.conv_bn2.bn.running_var", (256,), "layer3.4.bn2.running_var", (256,), "block3.5.conv_bn1.conv.weight", (256, 256, 3, 3), "layer3.5.conv1.weight", (256, 256, 3, 3), "block3.5.conv_bn1.bn.weight", (256,), "layer3.5.bn1.weight", (256,), "block3.5.conv_bn1.bn.bias", (256,), "layer3.5.bn1.bias", (256,), "block3.5.conv_bn1.bn.running_mean", (256,), "layer3.5.bn1.running_mean", (256,), "block3.5.conv_bn1.bn.running_var", (256,), "layer3.5.bn1.running_var", (256,), "block3.5.conv_bn2.conv.weight", (256, 256, 3, 3), "layer3.5.conv2.weight", (256, 256, 3, 3), "block3.5.conv_bn2.bn.weight", (256,), "layer3.5.bn2.weight", (256,), "block3.5.conv_bn2.bn.bias", (256,), "layer3.5.bn2.bias", (256,), "block3.5.conv_bn2.bn.running_mean", (256,), "layer3.5.bn2.running_mean", (256,), "block3.5.conv_bn2.bn.running_var", (256,), "layer3.5.bn2.running_var", (256,), "block4.0.conv_bn1.conv.weight", (512, 256, 3, 3), "layer4.0.conv1.weight", (512, 256, 3, 3), "block4.0.conv_bn1.bn.weight", (512,), "layer4.0.bn1.weight", (512,), "block4.0.conv_bn1.bn.bias", (512,), "layer4.0.bn1.bias", (512,), "block4.0.conv_bn1.bn.running_mean", (512,), "layer4.0.bn1.running_mean", (512,), "block4.0.conv_bn1.bn.running_var", (512,), "layer4.0.bn1.running_var", (512,), "block4.0.conv_bn2.conv.weight", (512, 512, 3, 3), "layer4.0.conv2.weight", (512, 512, 3, 3), "block4.0.conv_bn2.bn.weight", (512,), "layer4.0.bn2.weight", (512,), "block4.0.conv_bn2.bn.bias", (512,), "layer4.0.bn2.bias", (512,), "block4.0.conv_bn2.bn.running_mean", (512,), "layer4.0.bn2.running_mean", (512,), "block4.0.conv_bn2.bn.running_var", (512,), "layer4.0.bn2.running_var", (512,), "block4.0.shortcut.conv.weight", (512, 256, 1, 1), "layer4.0.downsample.0.weight", (512, 256, 1, 1), "block4.0.shortcut.bn.weight", (512,), "layer4.0.downsample.1.weight", (512,), "block4.0.shortcut.bn.bias", (512,), "layer4.0.downsample.1.bias", (512,), "block4.0.shortcut.bn.running_mean", (512,), "layer4.0.downsample.1.running_mean", (512,), "block4.0.shortcut.bn.running_var", (512,), "layer4.0.downsample.1.running_var", (512,), "block4.1.conv_bn1.conv.weight", (512, 512, 3, 3), "layer4.1.conv1.weight", (512, 512, 3, 3), "block4.1.conv_bn1.bn.weight", (512,), "layer4.1.bn1.weight", (512,), "block4.1.conv_bn1.bn.bias", (512,), "layer4.1.bn1.bias", (512,), "block4.1.conv_bn1.bn.running_mean", (512,), "layer4.1.bn1.running_mean", (512,), "block4.1.conv_bn1.bn.running_var", (512,), "layer4.1.bn1.running_var", (512,), "block4.1.conv_bn2.conv.weight", (512, 512, 3, 3), "layer4.1.conv2.weight", (512, 512, 3, 3), "block4.1.conv_bn2.bn.weight", (512,), "layer4.1.bn2.weight", (512,), "block4.1.conv_bn2.bn.bias", (512,), "layer4.1.bn2.bias", (512,), "block4.1.conv_bn2.bn.running_mean", (512,), "layer4.1.bn2.running_mean", (512,), "block4.1.conv_bn2.bn.running_var", (512,), "layer4.1.bn2.running_var", (512,), "block4.2.conv_bn1.conv.weight", (512, 512, 3, 3), "layer4.2.conv1.weight", (512, 512, 3, 3), "block4.2.conv_bn1.bn.weight", (512,), "layer4.2.bn1.weight", (512,), "block4.2.conv_bn1.bn.bias", (512,), "layer4.2.bn1.bias", (512,), "block4.2.conv_bn1.bn.running_mean", (512,), "layer4.2.bn1.running_mean", (512,), "block4.2.conv_bn1.bn.running_var", (512,), "layer4.2.bn1.running_var", (512,), "block4.2.conv_bn2.conv.weight", (512, 512, 3, 3), "layer4.2.conv2.weight", (512, 512, 3, 3), "block4.2.conv_bn2.bn.weight", (512,), "layer4.2.bn2.weight", (512,), "block4.2.conv_bn2.bn.bias", (512,), "layer4.2.bn2.bias", (512,), "block4.2.conv_bn2.bn.running_mean", (512,), "layer4.2.bn2.running_mean", (512,), "block4.2.conv_bn2.bn.running_var", (512,), "layer4.2.bn2.running_var", (512,), "logit.weight", (1000, 512), "fc.weight", (1000, 512), "logit.bias", (1000,), "fc.bias", (1000,), ] ############################################################################### class ConvBn2d(nn.Module): def __init__(self, in_channel, out_channel, kernel_size=3, padding=1, stride=1): super(ConvBn2d, self).__init__() self.conv = nn.Conv2d( in_channel, out_channel, kernel_size=kernel_size, padding=padding, stride=stride, bias=False, ) self.bn = nn.BatchNorm2d(out_channel, eps=1e-5) def forward(self, x): x = self.conv(x) x = self.bn(x) return x ############# resnext50 pyramid feature net ####################################### # https://github.com/Hsuxu/ResNeXt/blob/master/models.py # https://github.com/D-X-Y/ResNeXt-DenseNet/blob/master/models/resnext.py # https://github.com/miraclewkf/ResNeXt-PyTorch/blob/master/resnext.py # bottleneck type C class BasicBlock(nn.Module): def __init__(self, in_channel, channel, out_channel, stride=1, is_shortcut=False): super(BasicBlock, self).__init__() self.is_shortcut = is_shortcut self.conv_bn1 = ConvBn2d( in_channel, channel, kernel_size=3, padding=1, stride=stride ) self.conv_bn2 = ConvBn2d( channel, out_channel, kernel_size=3, padding=1, stride=1 ) if is_shortcut: self.shortcut = ConvBn2d( in_channel, out_channel, kernel_size=1, padding=0, stride=stride ) def forward(self, x): z = F.relu(self.conv_bn1(x), inplace=True) z = self.conv_bn2(z) if self.is_shortcut: x = self.shortcut(x) z += x z = F.relu(z, inplace=True) return z class ResNet34(nn.Module): def __init__(self, num_class=1000): super(ResNet34, self).__init__() self.block0 = nn.Sequential( nn.Conv2d(3, 64, kernel_size=7, padding=3, stride=2, bias=False), BatchNorm2d(64), nn.ReLU(inplace=True), ) self.block1 = nn.Sequential( nn.MaxPool2d(kernel_size=3, padding=1, stride=2), BasicBlock(64, 64, 64, stride=1, is_shortcut=False), *[BasicBlock(64, 64, 64, stride=1, is_shortcut=False) for i in range(1, 3)], ) self.block2 = nn.Sequential( BasicBlock(64, 128, 128, stride=2, is_shortcut=True), *[ BasicBlock(128, 128, 128, stride=1, is_shortcut=False) for i in range(1, 4) ], ) self.block3 = nn.Sequential( BasicBlock(128, 256, 256, stride=2, is_shortcut=True), *[ BasicBlock(256, 256, 256, stride=1, is_shortcut=False) for i in range(1, 6) ], ) self.block4 = nn.Sequential( BasicBlock(256, 512, 512, stride=2, is_shortcut=True), *[ BasicBlock(512, 512, 512, stride=1, is_shortcut=False) for i in range(1, 3) ], ) self.logit = nn.Linear(512, num_class) def forward(self, x): batch_size = len(x) x = self.block0(x) x = self.block1(x) x = self.block2(x) x = self.block3(x) x = self.block4(x) x = F.adaptive_avg_pool2d(x, 1).reshape(batch_size, -1) logit = self.logit(x) return logit class Resnet34_classification(nn.Module): def __init__(self, num_class=4): super(Resnet34_classification, self).__init__() e = ResNet34() self.block = nn.ModuleList([e.block0, e.block1, e.block2, e.block3, e.block4]) e = None # dropped self.feature = nn.Conv2d(512, 32, kernel_size=1) # dummy conv for dim reduction self.logit = nn.Conv2d(32, num_class, kernel_size=1) def forward(self, x): batch_size, C, H, W = x.shape for i in range(len(self.block)): x = self.block[i](x) # print(i, x.shape) x = F.dropout(x, 0.5, training=self.training) x = F.adaptive_avg_pool2d(x, 1) x = self.feature(x) logit = self.logit(x) return logit model_classification = Resnet34_classification() model_classification.load_state_dict( torch.load( "../input/clsification/00007500_model.pth", map_location=lambda storage, loc: storage, ), strict=True, ) class TestDataset(Dataset): """Dataset for test prediction""" def __init__(self, root, df, mean, std): self.root = root df["ImageId"] = df["ImageId_ClassId"].apply(lambda x: x.split("_")[0]) self.fnames = df["ImageId"].unique().tolist() self.num_samples = len(self.fnames) self.transform = Compose([Normalize(mean=mean, std=std, p=1), ToTensor()]) def __getitem__(self, idx): fname = self.fnames[idx] path = os.path.join(self.root, fname) image = cv2.imread(path) images = self.transform(image=image)["image"] return fname, images def __len__(self): return self.num_samples def sharpen(p, t=0.5): if t != 0: return p ** t else: return p augment = ["null"] def get_classification_preds(net, test_loader): test_probability_label = [] test_id = [] net = net.cuda() for t, (fnames, images) in enumerate(tqdm(test_loader)): batch_size, C, H, W = images.shape images = images.cuda() with torch.no_grad(): net.eval() num_augment = 0 if 1: # null logit = net(images) probability = torch.sigmoid(logit) probability_label = sharpen(probability, 0) num_augment += 1 if "flip_lr" in augment: logit = net(torch.flip(images, dims=[3])) probability = torch.sigmoid(logit) probability_label += sharpen(probability) num_augment += 1 if "flip_ud" in augment: logit = net(torch.flip(images, dims=[2])) probability = torch.sigmoid(logit) probability_label += sharpen(probability) num_augment += 1 probability_label = probability_label / num_augment probability_label = probability_label.data.cpu().numpy() test_probability_label.append(probability_label) test_id.extend([i for i in fnames]) test_probability_label = np.concatenate(test_probability_label) return test_probability_label, test_id sample_submission_path = ( "../input/severstal-steel-defect-detection/sample_submission.csv" ) test_data_folder = "../input/severstal-steel-defect-detection/test_images" batch_size = 1 # mean and std mean = (0.485, 0.456, 0.406) std = (0.229, 0.224, 0.225) df = pd.read_csv(sample_submission_path) testset = DataLoader( TestDataset(test_data_folder, df, mean, std), batch_size=batch_size, shuffle=False, num_workers=0, pin_memory=True, ) threshold_label = [0.50, 0.50, 0.50, 0.50] probability_label, image_id = get_classification_preds(model_classification, testset) predict_label = probability_label > np.array(threshold_label).reshape(1, 4, 1, 1) image_id_class_id = [] encoded_pixel = [] for b in range(len(image_id)): for c in range(4): image_id_class_id.append(image_id[b] + "_%d" % (c + 1)) if predict_label[b, c] == 0: rle = "" else: rle = "1 1" encoded_pixel.append(rle) df_classification = pd.DataFrame( zip(image_id_class_id, encoded_pixel), columns=["ImageId_ClassId", "EncodedPixels"] ) df = pd.read_csv("submission.csv") df = df.fillna("") if 1: df["Class"] = df["ImageId_ClassId"].str[-1].astype(np.int32) df["Label"] = (df["EncodedPixels"] != "").astype(np.int32) pos1 = ((df["Class"] == 1) & (df["Label"] == 1)).sum() pos2 = ((df["Class"] == 2) & (df["Label"] == 1)).sum() pos3 = ((df["Class"] == 3) & (df["Label"] == 1)).sum() pos4 = ((df["Class"] == 4) & (df["Label"] == 1)).sum() num_image = len(df) // 4 num = len(df) pos = (df["Label"] == 1).sum() neg = num - pos print("") print("\t\tnum_image = %5d(1801)" % num_image) print("\t\tnum = %5d(7204)" % num) print("\t\tneg = %5d(6172) %0.3f" % (neg, neg / num)) print("\t\tpos = %5d(1032) %0.3f" % (pos, pos / num)) print("\t\tpos1 = %5d( 128) %0.3f %0.3f" % (pos1, pos1 / num_image, pos1 / pos)) print("\t\tpos2 = %5d( 43) %0.3f %0.3f" % (pos2, pos2 / num_image, pos2 / pos)) print("\t\tpos3 = %5d( 741) %0.3f %0.3f" % (pos3, pos3 / num_image, pos3 / pos)) print("\t\tpos4 = %5d( 120) %0.3f %0.3f" % (pos4, pos4 / num_image, pos4 / pos)) df_mask = df.copy() df_label = df_classification.copy() assert np.all(df_mask["ImageId_ClassId"].values == df_label["ImageId_ClassId"].values) print( (df_mask.loc[df_label["EncodedPixels"] == "", "EncodedPixels"] != "").sum() ) # 202 df_mask.loc[df_label["EncodedPixels"] == "", "EncodedPixels"] = "" # df_mask.to_csv("submission.csv", index=False) df_mask.to_csv( "submission.csv", columns=["ImageId_ClassId", "EncodedPixels"], index=False ) if 1: df_mask["Class"] = df_mask["ImageId_ClassId"].str[-1].astype(np.int32) df_mask["Label"] = (df_mask["EncodedPixels"] != "").astype(np.int32) pos1 = ((df_mask["Class"] == 1) & (df_mask["Label"] == 1)).sum() pos2 = ((df_mask["Class"] == 2) & (df_mask["Label"] == 1)).sum() pos3 = ((df_mask["Class"] == 3) & (df_mask["Label"] == 1)).sum() pos4 = ((df_mask["Class"] == 4) & (df_mask["Label"] == 1)).sum() num_image = len(df_mask) // 4 num = len(df_mask) pos = (df_mask["Label"] == 1).sum() neg = num - pos print("") print("\t\tnum_image = %5d(1801)" % num_image) print("\t\tnum = %5d(7204)" % num) print("\t\tneg = %5d(6172) %0.3f" % (neg, neg / num)) print("\t\tpos = %5d(1032) %0.3f" % (pos, pos / num)) print("\t\tpos1 = %5d( 128) %0.3f %0.3f" % (pos1, pos1 / num_image, pos1 / pos)) print("\t\tpos2 = %5d( 43) %0.3f %0.3f" % (pos2, pos2 / num_image, pos2 / pos)) print("\t\tpos3 = %5d( 741) %0.3f %0.3f" % (pos3, pos3 / num_image, pos3 / pos)) print("\t\tpos4 = %5d( 120) %0.3f %0.3f" % (pos4, pos4 / num_image, pos4 / pos)) # ### Visualization get_ipython().run_line_magic("matplotlib", "inline") df = pd.read_csv("submission.csv")[:40] df["Image"] = df["ImageId_ClassId"].map(lambda x: x.split("_")[0]) df["Class"] = df["ImageId_ClassId"].map(lambda x: x.split("_")[1]) for row in df.itertuples(): img_path = os.path.join(img_folder, row.Image) img = cv2.imread(img_path) mask = ( rle2mask(row.EncodedPixels, (1600, 256)) if isinstance(row.EncodedPixels, str) else np.zeros((256, 1600)) ) if mask.sum() == 0: continue fig, axes = plt.subplots(1, 2, figsize=(20, 60)) axes[0].imshow(img / 255) axes[1].imshow(mask * 60) axes[0].set_title(row.Image) axes[1].set_title(row.Class) plt.show() ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/model_resnet.py ================================================ import torch import torch.nn as nn import torch.nn.functional as F import math from torch.nn import init from cbam import * from bam import * def conv3x3(in_planes, out_planes, stride=1): "3x3 convolution with padding" return nn.Conv2d( in_planes, out_planes, kernel_size=3, stride=stride, padding=1, bias=False ) class BasicBlock(nn.Module): expansion = 1 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(BasicBlock, self).__init__() self.conv1 = conv3x3(inplanes, planes, stride) self.bn1 = nn.BatchNorm2d(planes) self.relu = nn.ReLU(inplace=True) self.conv2 = conv3x3(planes, planes) self.bn2 = nn.BatchNorm2d(planes) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM(planes, 16) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1, downsample=None, use_cbam=False): super(Bottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes) self.conv2 = nn.Conv2d( planes, planes, kernel_size=3, stride=stride, padding=1, bias=False ) self.bn2 = nn.BatchNorm2d(planes) self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample self.stride = stride if use_cbam: self.cbam = CBAM(planes * 4, 16) else: self.cbam = None def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) if not self.cbam is None: out = self.cbam(out) out += residual out = self.relu(out) return out class ResNet(nn.Module): def __init__(self, block, layers, network_type, num_classes, att_type=None): self.inplanes = 64 super(ResNet, self).__init__() self.network_type = network_type # different model config between ImageNet and CIFAR if network_type == "ImageNet": self.conv1 = nn.Conv2d( 3, 64, kernel_size=7, stride=2, padding=3, bias=False ) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.avgpool = nn.AvgPool2d(7) else: self.conv1 = nn.Conv2d( 3, 64, kernel_size=3, stride=1, padding=1, bias=False ) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) if att_type == "BAM": self.bam1 = BAM(64 * block.expansion) self.bam2 = BAM(128 * block.expansion) self.bam3 = BAM(256 * block.expansion) else: self.bam1, self.bam2, self.bam3 = None, None, None self.layer1 = self._make_layer(block, 64, layers[0], att_type=att_type) self.layer2 = self._make_layer( block, 128, layers[1], stride=2, att_type=att_type ) self.layer3 = self._make_layer( block, 256, layers[2], stride=2, att_type=att_type ) self.layer4 = self._make_layer( block, 512, layers[3], stride=2, att_type=att_type ) self.fc = nn.Linear(512 * block.expansion, num_classes) init.kaiming_normal(self.fc.weight) for key in self.state_dict(): if key.split(".")[-1] == "weight": if "conv" in key: init.kaiming_normal(self.state_dict()[key], mode="fan_out") if "bn" in key: if "SpatialGate" in key: self.state_dict()[key][...] = 0 else: self.state_dict()[key][...] = 1 elif key.split(".")[-1] == "bias": self.state_dict()[key][...] = 0 def _make_layer(self, block, planes, blocks, stride=1, att_type=None): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d( self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False, ), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append( block( self.inplanes, planes, stride, downsample, use_cbam=att_type == "CBAM" ) ) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes, use_cbam=att_type == "CBAM")) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) if self.network_type == "ImageNet": x = self.maxpool(x) x = self.layer1(x) if not self.bam1 is None: x = self.bam1(x) x = self.layer2(x) if not self.bam2 is None: x = self.bam2(x) x = self.layer3(x) if not self.bam3 is None: x = self.bam3(x) x = self.layer4(x) if self.network_type == "ImageNet": x = self.avgpool(x) else: x = F.avg_pool2d(x, 4) x = x.view(x.size(0), -1) x = self.fc(x) return x def ResidualNet(network_type, depth, num_classes, att_type): assert network_type in [ "ImageNet", "CIFAR10", "CIFAR100", ], "network type should be ImageNet or CIFAR10 / CIFAR100" assert depth in [18, 34, 50, 101], "network depth should be 18, 34, 50 or 101" if depth == 18: model = ResNet(BasicBlock, [2, 2, 2, 2], network_type, num_classes, att_type) elif depth == 34: model = ResNet(BasicBlock, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 50: model = ResNet(Bottleneck, [3, 4, 6, 3], network_type, num_classes, att_type) elif depth == 101: model = ResNet(Bottleneck, [3, 4, 23, 3], network_type, num_classes, att_type) return model ================================================ FILE: DEEP LEARNING/segmentation/Severstal-Steel-Defect-Detection-master/train.py ================================================ import gc from common_blocks.training_helper import Trainer_cv from common_blocks.utils import plot, set_seed from configs.train_params import * from common_blocks.utils import load_model_unet, load_model_fpn from segmentation_models_pytorch import Unet, FPN, PSPNet if __name__ == "__main__": set_seed() for cur_fold in range(0, TOTAL_FOLDS): print("Current FOLD {}".format(cur_fold)) model_trainer = Trainer_cv( load_model_fpn(model_weights), num_epochs, cur_fold, batch_size=BATCH_SIZE ) model_trainer.start() plot(model_trainer.losses, "BCE-DICE loss", cur_fold) plot(model_trainer.dice_scores, "Dice score", cur_fold) ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/.gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/.gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # project specific *.csv *.gz *.pth # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/README.md ================================================ # Understanding Clouds from Satellite Images Code for https://www.kaggle.com/c/understanding_cloud_organization competition Example of usage: >>> python train.py --encoder resnet50 --bs 20 --num_epochs 100 --train True --optimize_postprocess True --make_prediction True >>> python train.py --encoder densenet169 --bs 20 --num_epochs 100 --train True --task classification --loss BCE --height 224 --width 224 --lr 1e-4 Code mostly taken from https://github.com/Erlemar/Understanding-Clouds-from-Satellite-Images ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/augs.py ================================================ import albumentations as albu def to_tensor(x, **kwargs): """ Convert image or mask. Args: x: **kwargs: Returns: """ return x.transpose(2, 0, 1).astype("float32") def get_training_augmentation( augmentation: str = "default", image_size: tuple = (320, 640) ): """ Get augmentations There is a dictionary where values are different augmentation functions, so it easy to switch between augmentations; Args: augmentation: image_size: Returns: """ LEVELS = { "default": get_training_augmentation0, "1": get_training_augmentation1, "2": get_training_augmentation2, } assert augmentation in LEVELS.keys() return LEVELS[augmentation](image_size) def get_training_augmentation0(image_size: tuple = (320, 640)): """ Args: image_size: Returns: """ train_transform = [ albu.HorizontalFlip(p=0.5), albu.ShiftScaleRotate( scale_limit=0.5, rotate_limit=15, shift_limit=0.1, p=0.5, border_mode=0 ), albu.GridDistortion(p=0.3), albu.OpticalDistortion(p=0.3, distort_limit=0.1, shift_limit=0.5), albu.RandomBrightnessContrast(p=0.1, brightness_limit=0.1, contrast_limit=0.1), albu.Resize(*image_size), ] return albu.Compose(train_transform) def get_training_augmentation1(image_size: tuple = (320, 640)): """ Args: image_size: Returns: """ train_transform = [ albu.HorizontalFlip(p=0.5), albu.ShiftScaleRotate( scale_limit=0.3, rotate_limit=15, shift_limit=0.1, p=0.5, border_mode=0 ), albu.GridDistortion(p=0.5), albu.OpticalDistortion(p=0.5, distort_limit=0.1, shift_limit=0.2), albu.Resize(*image_size), ] return albu.Compose(train_transform) def get_training_augmentation2(image_size: tuple = (320, 640)): """ Args: image_size: Returns: """ train_transform = [ albu.Resize(*image_size), albu.HorizontalFlip(p=0.5), albu.ShiftScaleRotate( scale_limit=0.3, rotate_limit=15, shift_limit=0.1, p=0.5, border_mode=0 ), albu.GridDistortion(p=0.5), albu.OpticalDistortion(p=0.5, distort_limit=0.1, shift_limit=0.2), albu.Blur(), albu.RandomBrightnessContrast(), ] return albu.Compose(train_transform) def get_validation_augmentation(image_size: tuple = (320, 640)): """ Args: image_size: Returns: """ test_transform = [albu.Resize(*image_size)] return albu.Compose(test_transform) def get_preprocessing(preprocessing_fn): """Construct preprocessing transform Args: preprocessing_fn (callbale): data normalization function (can be specific for each pretrained neural network) Return: transform: albumentations.Compose """ _transform = [ albu.Lambda(image=preprocessing_fn), albu.Lambda(image=to_tensor, mask=to_tensor), ] return albu.Compose(_transform) ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/callbacks.py ================================================ from typing import Dict import torch import numpy as np from catalyst.dl.core import Callback, RunnerState, CallbackOrder import cv2 from collections import OrderedDict def calculate_confusion_matrix_from_arrays( prediction: np.array, ground_truth: np.array, num_classes: int ) -> np.array: """Calculate confusion matrix for a given set of classes. if GT value is outside of the [0, num_classes) it is excluded. Args: prediction: ground_truth: num_classes: Returns: """ # a long 2xn array with each column being a pixel pair replace_indices = np.vstack((ground_truth.flatten(), prediction.flatten())) valid_index = replace_indices[0, :] < num_classes replace_indices = replace_indices[:, valid_index].T # add up confusion matrix confusion_matrix, _ = np.histogramdd( replace_indices, bins=(num_classes, num_classes), range=[(0, num_classes), (0, num_classes)], ) return confusion_matrix.astype(np.uint64) def get_confusion_matrix(y_pred_logits: torch.Tensor, y_true: torch.Tensor): num_classes = y_pred_logits.shape[1] y_pred = torch.argmax(y_pred_logits, dim=1) ground_truth = y_true.cpu().numpy() prediction = y_pred.cpu().numpy() return calculate_confusion_matrix_from_arrays(ground_truth, prediction, num_classes) def calculate_tp_fp_fn(confusion_matrix): true_positives = {} false_positives = {} false_negatives = {} for index in range(confusion_matrix.shape[0]): true_positives[index] = confusion_matrix[index, index] false_positives[index] = ( confusion_matrix[:, index].sum() - true_positives[index] ) false_negatives[index] = ( confusion_matrix[index, :].sum() - true_positives[index] ) return { "true_positives": true_positives, "false_positives": false_positives, "false_negatives": false_negatives, } def calculate_dice(tp_fp_fn_dict): epsilon = 1e-7 dice = {} for i in range(len(tp_fp_fn_dict["true_positives"])): tp = tp_fp_fn_dict["true_positives"][i] fp = tp_fp_fn_dict["false_positives"][i] fn = tp_fp_fn_dict["true_positives"][i] dice[i] = (2 * tp + epsilon) / (2 * tp + fp + fn + epsilon) if not 0 <= dice[i] <= 1: raise ValueError() return dice class MulticlassDiceMetricCallback(Callback): def __init__( self, prefix: str = "dice", input_key: str = "targets", output_key: str = "logits", **metric_params, ): super().__init__(CallbackOrder.Metric) self.prefix = prefix self.input_key = input_key self.output_key = output_key self.metric_params = metric_params self.confusion_matrix = None self.class_names = metric_params[ "class_names" ] # dictionary {class_id: class_name} self.class_prefix = metric_params["class_prefix"] def _reset_stats(self): self.confusion_matrix = None def on_batch_end(self, state: RunnerState): outputs = state.output[self.output_key] targets = state.input[self.input_key] confusion_matrix = get_confusion_matrix(outputs, targets) if self.confusion_matrix is None: self.confusion_matrix = confusion_matrix else: self.confusion_matrix += confusion_matrix def on_loader_end(self, state: RunnerState): tp_fp_fn_dict = calculate_tp_fp_fn(self.confusion_matrix) batch_metrics: Dict = calculate_dice(tp_fp_fn_dict) for metric_id, dice_value in batch_metrics.items(): if metric_id not in self.class_names: continue metric_name = self.class_names[metric_id] state.metrics.epoch_values[state.loader_name][ f"{self.class_prefix}_{metric_name}" ] = dice_value state.metrics.epoch_values[state.loader_name]["mean"] = np.mean( [x for x in batch_metrics.values()] ) self._reset_stats() class CustomSegmentationInferCallback(Callback): def __init__(self, return_valid: bool = False): super().__init__(CallbackOrder.Internal) self.valid_masks = [] self.probabilities = np.zeros((2220, 350, 525)) self.return_valid = return_valid def on_batch_end(self, state: RunnerState): image, mask = state.input output = state.output["logits"] if self.return_valid: for m in mask: if m.shape != (350, 525): m = cv2.resize(m, dsize=(525, 350), interpolation=cv2.INTER_LINEAR) self.valid_masks.append(m) for j, probability in enumerate(output): if probability.shape != (350, 525): probability = cv2.resize( probability, dsize=(525, 350), interpolation=cv2.INTER_LINEAR ) self.probabilities[j, :, :] = probability ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/config.py ================================================ ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/dataset.py ================================================ import os import cv2 import numpy as np import pandas as pd from sklearn.model_selection import train_test_split from torch.utils.data import DataLoader, Dataset import albumentations as albu import warnings from augs import ( get_training_augmentation, get_validation_augmentation, get_preprocessing, ) warnings.filterwarnings("once") def get_img(x: str = "img_name", folder: str = "train_images"): """ Return image based on image name and folder. Args: x: image name folder: folder with images Returns: """ image_path = os.path.join(folder, x) img = cv2.imread(image_path) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) return img def rle_decode(mask_rle: str = "", shape: tuple = (1400, 2100)): """ Decode rle encoded mask. Args: mask_rle: encoded mask shape: final shape Returns: """ s = mask_rle.split() starts, lengths = [np.asarray(x, dtype=int) for x in (s[0:][::2], s[1:][::2])] starts -= 1 ends = starts + lengths img = np.zeros(shape[0] * shape[1], dtype=np.uint8) for lo, hi in zip(starts, ends): img[lo:hi] = 1 return img.reshape(shape, order="F") def make_mask( df: pd.DataFrame, image_name: str = "img.jpg", shape: tuple = (1400, 2100) ): """ Create mask based on df, image name and shape. Args: df: dataframe with cloud dataset image_name: image name shape: final shape Returns: """ encoded_masks = df.loc[df["im_id"] == image_name, "EncodedPixels"] masks = np.zeros((shape[0], shape[1], 4), dtype=np.float32) for idx, label in enumerate(encoded_masks.values): if label is not np.nan: mask = rle_decode(label) masks[:, :, idx] = mask return masks def mask2rle(img): """ Convert mask to rle. Args: img: Returns: """ pixels = img.T.flatten() pixels = np.concatenate([[0], pixels, [0]]) runs = np.where(pixels[1:] != pixels[:-1])[0] + 1 runs[1::2] -= runs[::2] return " ".join(str(x) for x in runs) class CloudDataset(Dataset): def __init__( self, path: str = "", df: pd.DataFrame = None, datatype: str = "train", img_ids: np.array = None, transforms=albu.Compose([albu.HorizontalFlip()]), preprocessing=None, preload: bool = False, image_size: tuple = (320, 640), augmentation: str = "default", filter_bad_images: bool = False, ): """ Args: path: path to data df: dataframe with data datatype: train|valid|test img_ids: list of imagee ids transforms: albumentation transforms preprocessing: preprocessing if necessary preload: whether to preload data image_size: image size for resizing augmentation: name of augmentation settings filter_bad_images: to filter out bad images """ self.df = df self.path = path self.datatype = datatype if datatype == "test" else "train" if self.datatype != "test": self.data_folder = f"{path}/train_images" else: self.data_folder = f"{path}/test_images" self.img_ids = img_ids # list of bad images from discussions self.bad_imgs = [ "046586a.jpg", "1588d4c.jpg", "1e40a05.jpg", "41f92e5.jpg", "449b792.jpg", "563fc48.jpg", "8bd81ce.jpg", "c0306e5.jpg", "c26c635.jpg", "e04fea3.jpg", "e5f2f24.jpg", "eda52f2.jpg", "fa645da.jpg", ] if filter_bad_images: self.img_ids = [i for i in self.img_ids if i not in self.bad_imgs] self.transforms = transforms self.preprocessing = preprocessing self.augmentation = augmentation self.dir_name = ( f"{self.path}/preload_{augmentation}_{image_size[0]}_{image_size[1]}" ) self.preload = preload self.preloaded = False if self.preload: self.save_processed_() self.preloaded = True def save_processed_(self): """ Saves train images with augmentations, to speed up training. Returns: """ os.makedirs(self.dir_name, exist_ok=True) self.dir_name += f"/{self.datatype}" if not os.path.exists(self.dir_name): os.makedirs(self.dir_name) for i, e in enumerate(self.img_ids): img, mask = self.__getitem__(i) np.save(f"{self.dir_name}/{e}_mask.npy", mask) np.save(f"{self.dir_name}/{e}_img.npy", img) def __getitem__(self, idx): image_name = self.img_ids[idx] if self.preloaded and self.datatype != "valid": img = np.load(f"{self.dir_name}/{image_name}_img.npy") mask = np.load(f"{self.dir_name}/{image_name}_mask.npy") else: mask = make_mask(self.df, image_name) image_path = os.path.join(self.data_folder, image_name) img = cv2.imread(image_path) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) augmented = self.transforms(image=img, mask=mask) img = augmented["image"] mask = augmented["mask"] if self.preprocessing: preprocessed = self.preprocessing(image=img, mask=mask) img = preprocessed["image"] mask = preprocessed["mask"] return img, mask def __len__(self): return len(self.img_ids) class CloudDatasetClassification(Dataset): def __init__( self, path: str = "", df: pd.DataFrame = None, datatype: str = "train", img_ids: np.array = None, transforms=albu.Compose([albu.HorizontalFlip()]), preprocessing=None, preload: bool = False, image_size: tuple = (320, 640), augmentation: str = "default", one_hot_labels: dict = None, filter_bad_images: bool = False, ): """ Args: path: path to data df: dataframe with data datatype: train|valid|test img_ids: list of imagee ids transforms: albumentation transforms preprocessing: preprocessing if necessary preload: whether to preload data image_size: image size for resizing augmentation: name of augmentation settings one_hot_labels: dictionary with labels for images filter_bad_images: to filter out bad images """ self.df = df self.path = path self.datatype = datatype if datatype == "test" else "train" if self.datatype != "test": self.data_folder = f"{path}/train_images" else: self.data_folder = f"{path}/test_images" self.img_ids = img_ids self.bad_imgs = [ "046586a.jpg", "1588d4c.jpg", "1e40a05.jpg", "41f92e5.jpg", "449b792.jpg", "563fc48.jpg", "8bd81ce.jpg", "c0306e5.jpg", "c26c635.jpg", "e04fea3.jpg", "e5f2f24.jpg", "eda52f2.jpg", "fa645da.jpg", ] if filter_bad_images: self.img_ids = [i for i in self.img_ids if i not in self.bad_imgs] self.transforms = transforms self.preprocessing = preprocessing self.augmentation = augmentation self.dir_name = ( f"{self.path}/preload_{augmentation}_{image_size[0]}_{image_size[1]}" ) self.one_hot_labels = one_hot_labels self.preload = preload self.preloaded = False if self.preload: self.save_processed_() self.preloaded = True def save_processed_(self): os.makedirs(self.dir_name, exist_ok=True) self.dir_name += f"/{self.datatype}" if not os.path.exists(self.dir_name): os.makedirs(self.dir_name) for i, e in enumerate(self.img_ids): img, mask = self.__getitem__(i) np.save(f"{self.dir_name}/{e}_img.npy", img) def __getitem__(self, idx): image_name = self.img_ids[idx] if self.preloaded and self.datatype != "valid": img = np.load(f"{self.dir_name}/{image_name}_img.npy") else: image_path = os.path.join(self.data_folder, image_name) img = cv2.imread(image_path) img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) augmented = self.transforms(image=img) img = augmented["image"] if self.preprocessing: preprocessed = self.preprocessing(image=img) img = preprocessed["image"] label = self.one_hot_labels[image_name] return img, label def __len__(self): return len(self.img_ids) def prepare_loaders( path: str = "", bs: int = 4, num_workers: int = 0, preprocessing_fn=None, preload: bool = False, image_size: tuple = (320, 640), augmentation: str = "default", task: str = "segmentation", ): """ Prepare dataloaders for catalyst. At first reads dataframe with the data and prepares it to be used in dataloaders. Creates dataloaders and returns them. Args: path: path to data bs: batch size num_workers: number of workers preprocessing_fn: preprocessing preload: whether to save augmented data on disk image_size: image size to resize augmentation: augmentation name task: segmentation or classification Returns: """ train = pd.read_csv(f"{path}/train.csv") train["label"] = train["Image_Label"].apply(lambda x: x.split("_")[1]) train["im_id"] = train["Image_Label"].apply(lambda x: x.split("_")[0]) id_mask_count = ( train.loc[~train["EncodedPixels"].isnull(), "Image_Label"] .apply(lambda x: x.split("_")[0]) .value_counts() .reset_index() .rename(columns={"index": "img_id", "Image_Label": "count"}) ) train_ids, valid_ids = train_test_split( id_mask_count["img_id"].values, random_state=42, shuffle=True, # stratify=id_mask_count['count'], test_size=0.1, ) if task == "classification": train_df = train[~train["EncodedPixels"].isnull()] classes = train_df["label"].unique() train_df = train_df.groupby("im_id")["label"].agg(set).reset_index() for class_name in classes: train_df[class_name] = train_df["label"].map( lambda x: 1 if class_name in x else 0 ) img_2_ohe_vector = { img: np.float32(vec) for img, vec in zip(train_df["im_id"], train_df.iloc[:, 2:].values) } sub = pd.read_csv(f"{path}/sample_submission.csv") sub["label"] = sub["Image_Label"].apply(lambda x: x.split("_")[1]) sub["im_id"] = sub["Image_Label"].apply(lambda x: x.split("_")[0]) test_ids = ( sub["Image_Label"].apply(lambda x: x.split("_")[0]).drop_duplicates().values ) if task == "segmentation": if preload: _ = CloudDataset( path=path, df=train, datatype="train", img_ids=id_mask_count["img_id"].values, transforms=get_training_augmentation( augmentation=augmentation, image_size=image_size ), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), ) train_dataset = CloudDataset( path=path, df=train, datatype="train", img_ids=train_ids, transforms=get_training_augmentation( augmentation=augmentation, image_size=image_size ), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), ) valid_dataset = CloudDataset( path=path, df=train, datatype="valid", img_ids=valid_ids, transforms=get_validation_augmentation(image_size=image_size), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), ) elif task == "classification": if preload: _ = CloudDatasetClassification( path=path, df=train, datatype="train", img_ids=id_mask_count["img_id"].values, transforms=get_training_augmentation( augmentation=augmentation, image_size=image_size ), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), one_hot_labels=img_2_ohe_vector, ) train_dataset = CloudDatasetClassification( path=path, df=train, datatype="train", img_ids=train_ids, transforms=get_training_augmentation( augmentation=augmentation, image_size=image_size ), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), one_hot_labels=img_2_ohe_vector, ) valid_dataset = CloudDatasetClassification( path=path, df=train, datatype="valid", img_ids=valid_ids, transforms=get_validation_augmentation(image_size=image_size), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), one_hot_labels=img_2_ohe_vector, ) train_loader = DataLoader( train_dataset, batch_size=bs, shuffle=True, num_workers=num_workers, pin_memory=True, ) valid_loader = DataLoader( valid_dataset, batch_size=bs, shuffle=False, num_workers=num_workers, pin_memory=True, ) test_dataset = CloudDataset( path=path, df=sub, datatype="test", img_ids=test_ids, transforms=get_validation_augmentation(image_size=image_size), preprocessing=get_preprocessing(preprocessing_fn), preload=preload, image_size=(320, 640), ) test_loader = DataLoader( test_dataset, batch_size=bs // 2, shuffle=False, num_workers=num_workers, pin_memory=True, ) loaders = {"train": train_loader, "valid": valid_loader, "test": test_loader} return loaders ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/inference_blend.py ================================================ import torch import torch.nn as nn from torch.optim.lr_scheduler import ReduceLROnPlateau from catalyst.dl.runner import SupervisedRunner from catalyst.dl.callbacks import ( DiceCallback, EarlyStoppingCallback, OptimizerCallback, CriterionCallback, AUCCallback, ) # from catalyst.contrib.criterion.lovasz import LovaszLossMultiClass, LovaszLossBinary import ttach as tta import segmentation_models_pytorch as smp import datetime import argparse import warnings import gc import json from dataset import prepare_loaders from models.models import get_model from optimizers import get_optimizer from utils import get_optimal_postprocess from predict import predict, predict_blend from losses.losses import FocalLoss, BCEMulticlassDiceLoss from losses.lovasz_losses import lovasz_softmax from catalyst import utils from callbacks import MulticlassDiceMetricCallback from catalyst.utils import set_global_seed, prepare_cudnn import os warnings.filterwarnings("once") class Model: def __init__(self, models): self.models = models def __call__(self, x): res = [] x = x.cuda() with torch.no_grad(): for m in self.models: res.append(torch.sigmoid(m(x))) res = torch.stack(res) res = torch.mean(res, dim=0) return res if __name__ == "__main__": """ Example of usage: >>> python train.py --chunk_size=10000 --n_jobs=10 """ parser = argparse.ArgumentParser( description="Train model for understanding_cloud_organization competition" ) parser.add_argument( "--path", help="path to files", type=str, default="/home/dex/Desktop/ml/cloud data", ) # https://github.com/qubvel/segmentation_models.pytorch parser.add_argument("--encoder", help="u-net encoder", type=str, default="resnet18") parser.add_argument( "--encoder_weights", help="pre-training dataset", type=str, default="imagenet" ) parser.add_argument("--DEVICE", help="device", type=str, default="CUDA") parser.add_argument( "--scheduler", help="scheduler", type=str, default="ReduceLROnPlateau" ) parser.add_argument("--loss", help="loss", type=str, default="BCEDiceLoss") parser.add_argument("--logdir", help="logdir", type=str, default="./logs/") parser.add_argument("--optimizer", help="optimizer", type=str, default="Adam") parser.add_argument( "--augmentation", help="augmentation", type=str, default="default" ) parser.add_argument("--model_type", help="model_type", type=str, default="segm") parser.add_argument("--segm_type", help="model_type", type=str, default="Unet") parser.add_argument( "--task", help="class or segm", type=str, default="segmentation" ) parser.add_argument("--num_workers", help="num_workers", type=int, default=4) parser.add_argument("--bs", help="batch size", type=int, default=2) parser.add_argument("--lr", help="learning rate", type=float, default=1e-3) parser.add_argument( "--lr_e", help="learning rate for decoder", type=float, default=1e-3 ) parser.add_argument("--num_epochs", help="number of epochs", type=int, default=100) parser.add_argument( "--gradient_accumulation", help="gradient_accumulation steps", type=int, default=None, ) parser.add_argument("--height", help="height", type=int, default=320) parser.add_argument("--width", help="width", type=int, default=640) parser.add_argument("--seed", help="random seed", type=int, default=42) parser.add_argument( "--optimize_postprocess", help="to optimize postprocess", type=bool, default=False, ) parser.add_argument("--train", help="train", type=bool, default=False) parser.add_argument( "--make_prediction", help="to make prediction", type=bool, default=False ) parser.add_argument( "--preload", help="save processed data", type=bool, default=False ) parser.add_argument( "--separate_decoder", help="number of epochs", type=bool, default=False ) parser.add_argument("--multigpu", help="use multi-gpu", type=bool, default=False) parser.add_argument("--lookahead", help="use lookahead", type=bool, default=False) args, unknown = parser.parse_known_args() # args.train = False args.optimize_postprocess = False print(args) if args.task == "classification": os.environ["CUDA_VISIBLE_DEVICES"] = "0" set_global_seed(args.seed) prepare_cudnn(deterministic=True) sub_name = f"Model_{args.task}_{args.model_type}_{args.encoder}_bs_{args.bs}_{str(datetime.datetime.now().date())}" logdir = f"./logs/{sub_name}" if args.logdir is None else args.logdir preprocessing_fn = smp.encoders.get_preprocessing_fn( args.encoder, args.encoder_weights ) loaders = prepare_loaders( path=args.path, bs=args.bs, num_workers=args.num_workers, preprocessing_fn=preprocessing_fn, preload=args.preload, image_size=(args.height, args.width), augmentation=args.augmentation, task=args.task, ) test_loader = loaders["test"] del loaders["test"] model = get_model( model_type=args.segm_type, encoder=args.encoder, encoder_weights=args.encoder_weights, activation=None, task=args.task, ) optimizer = get_optimizer( optimizer=args.optimizer, lookahead=args.lookahead, model=model, separate_decoder=args.separate_decoder, lr=args.lr, lr_e=args.lr_e, ) if args.scheduler == "ReduceLROnPlateau": scheduler = ReduceLROnPlateau(optimizer, factor=0.6, patience=3) else: scheduler = ReduceLROnPlateau(optimizer, factor=0.3, patience=3) if args.loss == "BCEDiceLoss": criterion = smp.utils.losses.BCEDiceLoss(eps=1.0) elif args.loss == "BCEJaccardLoss": criterion = smp.utils.losses.BCEJaccardLoss(eps=1.0) elif args.loss == "FocalLoss": criterion = FocalLoss() # elif args.loss == 'lovasz_softmax': # criterion = lovasz_softmax() elif args.loss == "BCEMulticlassDiceLoss": criterion = BCEMulticlassDiceLoss() elif args.loss == "MulticlassDiceMetricCallback": criterion = MulticlassDiceMetricCallback() elif args.loss == "BCE": criterion = nn.BCEWithLogitsLoss() else: criterion = smp.utils.losses.BCEDiceLoss(eps=1.0) if args.make_prediction: print("MAKING PREDICTIONS") model1 = get_model( model_type=args.segm_type, encoder=args.encoder, encoder_weights=args.encoder_weights, activation=None, task=args.task, ) loaders["test"] = test_loader checkpoint = utils.load_checkpoint( "/home/dex/Desktop/ml/cloud artgor/logs/weights/lb 6582/best.pth" ) model1.cuda() utils.unpack_checkpoint(checkpoint, model=model1) model2 = get_model( model_type=args.segm_type, encoder=args.encoder, encoder_weights=args.encoder_weights, activation=None, task=args.task, ) checkpoint = utils.load_checkpoint( "/home/dex/Desktop/ml/cloud artgor/logs/weights/lb 6582/cont fitted/best.pth" ) model2.cuda() utils.unpack_checkpoint(checkpoint, model=model2) model = Model([model1, model2]) runner = SupervisedRunner(model=model) with open(f"{logdir}/class_params.json", "r") as f: class_params = json.load(f) print("prediction postprocess params", class_params) predict_blend( loaders=loaders, runner=runner, class_params=class_params, path=args.path, sub_name=sub_name, ) ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/losses/losses.py ================================================ import torch from typing import List from pytorch_toolbelt.losses.functional import sigmoid_focal_loss from torch.nn.modules.loss import _Loss from pytorch_toolbelt.losses.functional import soft_dice_score import torch.nn as nn class FocalLoss(_Loss): def __init__(self, alpha=0.5, gamma=2, ignore_index=None): """ Focal loss for multi-class problem. https://github.com/BloodAxe/pytorch-toolbelt/blob/develop/pytorch_toolbelt/losses/focal.py :param alpha: :param gamma: :param ignore_index: If not None, targets with given index are ignored """ super().__init__() self.alpha = alpha self.gamma = gamma self.ignore_index = ignore_index def forward(self, label_input, label_target): num_classes = label_input.size(1) loss = 0 # Filter anchors with -1 label from loss computation if self.ignore_index is not None: not_ignored = label_target != self.ignore_index for cls in range(num_classes): cls_label_target = (label_target == cls).long() cls_label_input = label_input[:, cls, ...] if self.ignore_index is not None: cls_label_target = cls_label_target[not_ignored] cls_label_input = cls_label_input[not_ignored] loss += sigmoid_focal_loss( cls_label_input, cls_label_target, gamma=self.gamma, alpha=self.alpha ) return loss class MulticlassDiceLoss(_Loss): """Implementation of Dice loss for multiclass (semantic) image segmentation task """ def __init__( self, classes: List[int] = None, from_logits=True, weight=None, reduction="elementwise_mean", ): super(MulticlassDiceLoss, self).__init__(reduction=reduction) self.classes = classes self.from_logits = from_logits self.weight = weight def forward(self, y_pred: torch.Tensor, y_true: torch.Tensor) -> torch.Tensor: """ :param y_pred: NxCxHxW :param y_true: NxHxW :return: scalar """ if self.from_logits: y_pred = y_pred.softmax(dim=1) n_classes = y_pred.size(1) smooth = 1e-3 loss = torch.zeros(n_classes, dtype=torch.float, device=y_pred.device) if self.classes is None: classes = range(n_classes) else: classes = self.classes if self.weight is None: weights = [1] * n_classes else: weights = self.weight for class_index, weight in zip(classes, weights): dice_target = (y_true == class_index).float() dice_output = y_pred[:, class_index, ...] num_preds = dice_target.long().sum() if num_preds == 0: loss[class_index] = 0 else: dice = soft_dice_score( dice_output, dice_target, from_logits=False, smooth=smooth ) loss[class_index] = (1.0 - dice) * weight if self.reduction == "elementwise_mean": return loss.mean() if self.reduction == "sum": return loss.sum() return loss class BCEMulticlassDiceLoss(MulticlassDiceLoss): __name__ = "bce_multiclass_dice_loss" def __init__(self, eps=1e-7, activation="sigmoid"): super().__init__(eps, activation) self.bce = nn.BCEWithLogitsLoss(reduction="mean") def forward(self, y_pr, y_gt): dice = super().forward(y_pr, y_gt) bce = self.bce(y_pr, y_gt) return dice + bce ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/losses/lovasz_losses.py ================================================ """ Lovasz-Softmax and Jaccard hinge loss in PyTorch Maxim Berman 2018 ESAT-PSI KU Leuven (MIT License) """ # from __future__ import print_function, division import torch from torch.autograd import Variable import torch.nn.functional as F import numpy as np try: from itertools import ifilterfalse except ImportError: # py3k from itertools import filterfalse as ifilterfalse def lovasz_grad(gt_sorted): """ Computes gradient of the Lovasz extension w.r.t sorted errors See Alg. 1 in paper """ p = len(gt_sorted) gts = gt_sorted.sum() intersection = gts - gt_sorted.float().cumsum(0) union = gts + (1 - gt_sorted).float().cumsum(0) jaccard = 1.0 - intersection / union if p > 1: # cover 1-pixel case jaccard[1:p] = jaccard[1:p] - jaccard[0:-1] return jaccard def iou_binary(preds, labels, EMPTY=1.0, ignore=None, per_image=True): """ IoU for foreground class binary: 1 foreground, 0 background """ if not per_image: preds, labels = (preds,), (labels,) ious = [] for pred, label in zip(preds, labels): intersection = ((label == 1) & (pred == 1)).sum() union = ((label == 1) | ((pred == 1) & (label != ignore))).sum() if not union: iou = EMPTY else: iou = float(intersection) / float(union) ious.append(iou) iou = mean(ious) # mean accross images if per_image return 100 * iou def iou(preds, labels, C, EMPTY=1.0, ignore=None, per_image=False): """ Array of IoU for each (non ignored) class """ if not per_image: preds, labels = (preds,), (labels,) ious = [] for pred, label in zip(preds, labels): iou = [] for i in range(C): if ( i != ignore ): # The ignored label is sometimes among predicted classes (ENet - CityScapes) intersection = ((label == i) & (pred == i)).sum() union = ((label == i) | ((pred == i) & (label != ignore))).sum() if not union: iou.append(EMPTY) else: iou.append(float(intersection) / float(union)) ious.append(iou) ious = [mean(iou) for iou in zip(*ious)] # mean accross images if per_image return 100 * np.array(ious) # --------------------------- BINARY LOSSES --------------------------- def lovasz_hinge(logits, labels, per_image=True, ignore=None): """ Binary Lovasz hinge loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) per_image: compute the loss per image instead of per batch ignore: void class id """ if per_image: loss = mean( lovasz_hinge_flat( *flatten_binary_scores(log.unsqueeze(0), lab.unsqueeze(0), ignore) ) for log, lab in zip(logits, labels) ) else: loss = lovasz_hinge_flat(*flatten_binary_scores(logits, labels, ignore)) return loss def lovasz_hinge_flat(logits, labels): """ Binary Lovasz hinge loss logits: [P] Variable, logits at each prediction (between -\infty and +\infty) labels: [P] Tensor, binary ground truth labels (0 or 1) ignore: label to ignore """ if len(labels) == 0: # only void pixels, the gradients should be 0 return logits.sum() * 0.0 signs = 2.0 * labels.float() - 1.0 errors = 1.0 - logits * Variable(signs) errors_sorted, perm = torch.sort(errors, dim=0, descending=True) perm = perm.data gt_sorted = labels[perm] grad = lovasz_grad(gt_sorted) loss = torch.dot(F.relu(errors_sorted), Variable(grad)) return loss def flatten_binary_scores(scores, labels, ignore=None): """ Flattens predictions in the batch (binary case) Remove labels equal to 'ignore' """ scores = scores.view(-1) labels = labels.view(-1) if ignore is None: return scores, labels valid = labels != ignore vscores = scores[valid] vlabels = labels[valid] return vscores, vlabels class StableBCELoss(torch.nn.modules.Module): def __init__(self): super(StableBCELoss, self).__init__() def forward(self, input, target): neg_abs = -input.abs() loss = input.clamp(min=0) - input * target + (1 + neg_abs.exp()).log() return loss.mean() def binary_xloss(logits, labels, ignore=None): """ Binary Cross entropy loss logits: [B, H, W] Variable, logits at each pixel (between -\infty and +\infty) labels: [B, H, W] Tensor, binary ground truth masks (0 or 1) ignore: void class id """ logits, labels = flatten_binary_scores(logits, labels, ignore) loss = StableBCELoss()(logits, Variable(labels.float())) return loss # --------------------------- MULTICLASS LOSSES --------------------------- def lovasz_softmax(probas, labels, classes="present", per_image=False, ignore=None): """ Multi-class Lovasz-Softmax loss probas: [B, C, H, W] Variable, class probabilities at each prediction (between 0 and 1). Interpreted as binary (sigmoid) output with outputs of size [B, H, W]. labels: [B, H, W] Tensor, ground truth labels (between 0 and C - 1) classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. per_image: compute the loss per image instead of per batch ignore: void class labels """ if per_image: loss = mean( lovasz_softmax_flat( *flatten_probas(prob.unsqueeze(0), lab.unsqueeze(0), ignore), classes=classes ) for prob, lab in zip(probas, labels) ) else: loss = lovasz_softmax_flat( *flatten_probas(probas, labels, ignore), classes=classes ) return loss def lovasz_softmax_flat(probas, labels, classes="present"): """ Multi-class Lovasz-Softmax loss probas: [P, C] Variable, class probabilities at each prediction (between 0 and 1) labels: [P] Tensor, ground truth labels (between 0 and C - 1) classes: 'all' for all, 'present' for classes present in labels, or a list of classes to average. """ if probas.numel() == 0: # only void pixels, the gradients should be 0 return probas * 0.0 C = probas.size(1) losses = [] class_to_sum = list(range(C)) if classes in ["all", "present"] else classes for c in class_to_sum: fg = (labels == c).float() # foreground for class c if classes is "present" and fg.sum() == 0: continue if C == 1: if len(classes) > 1: raise ValueError("Sigmoid output possible only with 1 class") class_pred = probas[:, 0] else: class_pred = probas[:, c] errors = (Variable(fg) - class_pred).abs() errors_sorted, perm = torch.sort(errors, 0, descending=True) perm = perm.data fg_sorted = fg[perm] losses.append(torch.dot(errors_sorted, Variable(lovasz_grad(fg_sorted)))) return mean(losses) def flatten_probas(probas, labels, ignore=None): """ Flattens predictions in the batch """ if probas.dim() == 3: # assumes output of a sigmoid layer B, H, W = probas.size() probas = probas.view(B, 1, H, W) B, C, H, W = probas.size() probas = probas.permute(0, 2, 3, 1).contiguous().view(-1, C) # B * H * W, C = P, C labels = labels.view(-1) if ignore is None: return probas, labels valid = labels != ignore vprobas = probas[valid.nonzero().squeeze()] vlabels = labels[valid] return vprobas, vlabels def xloss(logits, labels, ignore=None): """ Cross entropy loss """ return F.cross_entropy(logits, Variable(labels), ignore_index=255) # --------------------------- HELPER FUNCTIONS --------------------------- def isnan(x): return x != x def mean(l, ignore_nan=False, empty=0): """ nanmean compatible with generators. """ l = iter(l) if ignore_nan: l = ifilterfalse(isnan, l) try: n = 1 acc = next(l) except StopIteration: if empty == "raise": raise ValueError("Empty mean") return empty for n, v in enumerate(l, 2): acc += v if n == 1: return acc return acc / n ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/optimizers.py ================================================ import torch import warnings from torch.optim.optimizer import Optimizer import math import itertools as it import torch.optim as optim warnings.filterwarnings("once") class Ranger(Optimizer): # https://github.com/lessw2020/Ranger-Deep-Learning-Optimizer/blob/master/ranger.py def __init__( self, params, lr=1e-3, alpha=0.5, k=6, N_sma_threshhold=5, betas=(0.95, 0.999), eps=1e-5, weight_decay=0, ): # parameter checks if not 0.0 <= alpha <= 1.0: raise ValueError(f"Invalid slow update rate: {alpha}") if not 1 <= k: raise ValueError(f"Invalid lookahead steps: {k}") if not lr > 0: raise ValueError(f"Invalid Learning Rate: {lr}") if not eps > 0: raise ValueError(f"Invalid eps: {eps}") # parameter comments: # beta1 (momentum) of .95 seems to work better than .90... # N_sma_threshold of 5 seems better in testing than 4. # In both cases, worth testing on your dataset (.90 vs .95, 4 vs 5) to make sure which works best for you. # prep defaults and init torch.optim base defaults = dict( lr=lr, alpha=alpha, k=k, step_counter=0, betas=betas, N_sma_threshhold=N_sma_threshhold, eps=eps, weight_decay=weight_decay, ) super().__init__(params, defaults) # adjustable threshold self.N_sma_threshhold = N_sma_threshhold # look ahead params self.alpha = alpha self.k = k # radam buffer for state self.radam_buffer = [[None, None, None] for ind in range(10)] def __setstate__(self, state): print("set state called") super(Ranger, self).__setstate__(state) def step(self, closure=None): loss = None # Evaluate averages and grad, update param tensors for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError( "Ranger optimizer does not support sparse gradients" ) p_data_fp32 = p.data.float() state = self.state[p] # get state dict for this param if ( len(state) == 0 ): # if first time to run...init dictionary with our desired entries # if self.first_run_check==0: # self.first_run_check=1 # print("Initializing slow buffer...should not see this at load from saved model!") state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) # look ahead weight storage now in state dict state["slow_buffer"] = torch.empty_like(p.data) state["slow_buffer"].copy_(p.data) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) # begin computations exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] # compute variance mov avg exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) # compute mean moving avg exp_avg.mul_(beta1).add_(1 - beta1, grad) state["step"] += 1 buffered = self.radam_buffer[int(state["step"] % 10)] if state["step"] == buffered[0]: N_sma, step_size = buffered[1], buffered[2] else: buffered[0] = state["step"] beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) buffered[1] = N_sma if N_sma > self.N_sma_threshhold: step_size = math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) else: step_size = 1.0 / (1 - beta1 ** state["step"]) buffered[2] = step_size if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) if N_sma > self.N_sma_threshhold: denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-step_size * group["lr"], exp_avg, denom) else: p_data_fp32.add_(-step_size * group["lr"], exp_avg) p.data.copy_(p_data_fp32) # integrated look ahead... # we do it at the param level instead of group level if state["step"] % group["k"] == 0: slow_p = state["slow_buffer"] # get access to slow param tensor slow_p.add_( self.alpha, p.data - slow_p ) # (fast weights - slow weights) * alpha p.data.copy_( slow_p ) # copy interpolated weights to RAdam param tensor return loss class RAdam(Optimizer): def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) self.buffer = [[None, None, None] for ind in range(10)] super(RAdam, self).__init__(params, defaults) def __setstate__(self, state): super(RAdam, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError("RAdam does not support sparse gradients") p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) exp_avg.mul_(beta1).add_(1 - beta1, grad) state["step"] += 1 buffered = self.buffer[int(state["step"] % 10)] if state["step"] == buffered[0]: N_sma, step_size = buffered[1], buffered[2] else: buffered[0] = state["step"] beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) buffered[1] = N_sma if N_sma >= 5: step_size = math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) else: step_size = 1.0 / (1 - beta1 ** state["step"]) buffered[2] = step_size if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) # more conservative since it's an approximated value if N_sma >= 5: denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-step_size * group["lr"], exp_avg, denom) else: p_data_fp32.add_(-step_size * group["lr"], exp_avg) p.data.copy_(p_data_fp32) return loss # https://github.com/lonePatient/lookahead_pytorch/blob/master/optimizer.py class Lookahead(Optimizer): def __init__(self, base_optimizer, alpha=0.5, k=6): if not 0.0 <= alpha <= 1.0: raise ValueError(f"Invalid slow update rate: {alpha}") if not 1 <= k: raise ValueError(f"Invalid lookahead steps: {k}") self.optimizer = base_optimizer self.param_groups = self.optimizer.param_groups self.alpha = alpha self.k = k for group in self.param_groups: group["step_counter"] = 0 self.slow_weights = [ [p.clone().detach() for p in group["params"]] for group in self.param_groups ] for w in it.chain(*self.slow_weights): w.requires_grad = False def step(self, closure=None): loss = None if closure is not None: loss = closure() loss = self.optimizer.step() for group, slow_weights in zip(self.param_groups, self.slow_weights): group["step_counter"] += 1 if group["step_counter"] % self.k != 0: continue for p, q in zip(group["params"], slow_weights): if p.grad is None: continue q.data.add_(self.alpha, p.data - q.data) p.data.copy_(q.data) return loss class Ralamb(Optimizer): """ Ralamb optimizer (RAdam + LARS trick) """ def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) self.buffer = [[None, None, None] for ind in range(10)] super(Ralamb, self).__init__(params, defaults) def __setstate__(self, state): super(Ralamb, self).__setstate__(state) def step(self, closure=None): loss = None if closure is not None: loss = closure() for group in self.param_groups: for p in group["params"]: if p.grad is None: continue grad = p.grad.data.float() if grad.is_sparse: raise RuntimeError("Ralamb does not support sparse gradients") p_data_fp32 = p.data.float() state = self.state[p] if len(state) == 0: state["step"] = 0 state["exp_avg"] = torch.zeros_like(p_data_fp32) state["exp_avg_sq"] = torch.zeros_like(p_data_fp32) else: state["exp_avg"] = state["exp_avg"].type_as(p_data_fp32) state["exp_avg_sq"] = state["exp_avg_sq"].type_as(p_data_fp32) exp_avg, exp_avg_sq = state["exp_avg"], state["exp_avg_sq"] beta1, beta2 = group["betas"] # Decay the first and second moment running average coefficient # m_t exp_avg.mul_(beta1).add_(1 - beta1, grad) # v_t exp_avg_sq.mul_(beta2).addcmul_(1 - beta2, grad, grad) state["step"] += 1 buffered = self.buffer[int(state["step"] % 10)] if state["step"] == buffered[0]: N_sma, radam_step = buffered[1], buffered[2] else: buffered[0] = state["step"] beta2_t = beta2 ** state["step"] N_sma_max = 2 / (1 - beta2) - 1 N_sma = N_sma_max - 2 * state["step"] * beta2_t / (1 - beta2_t) buffered[1] = N_sma # more conservative since it's an approximated value if N_sma >= 5: radam_step = ( group["lr"] * math.sqrt( (1 - beta2_t) * (N_sma - 4) / (N_sma_max - 4) * (N_sma - 2) / N_sma * N_sma_max / (N_sma_max - 2) ) / (1 - beta1 ** state["step"]) ) else: radam_step = group["lr"] / (1 - beta1 ** state["step"]) buffered[2] = radam_step if group["weight_decay"] != 0: p_data_fp32.add_(-group["weight_decay"] * group["lr"], p_data_fp32) weight_norm = p.data.pow(2).sum().sqrt().clamp(0, 10) radam_norm = p_data_fp32.pow(2).sum().sqrt() if weight_norm == 0 or radam_norm == 0: trust_ratio = 1 else: trust_ratio = weight_norm / radam_norm state["weight_norm"] = weight_norm state["adam_norm"] = radam_norm state["trust_ratio"] = trust_ratio # more conservative since it's an approximated value if N_sma >= 5: denom = exp_avg_sq.sqrt().add_(group["eps"]) p_data_fp32.addcdiv_(-radam_step * trust_ratio, exp_avg, denom) else: p_data_fp32.add_(-radam_step * trust_ratio, exp_avg) p.data.copy_(p_data_fp32) return loss def get_optimizer( optimizer: str = "Adam", lookahead: bool = False, model=None, separate_decoder: bool = True, lr: float = 1e-3, lr_e: float = 1e-3, ): """ # https://github.com/lonePatient/lookahead_pytorch/blob/master/run.py :param optimizer: :param lookahead: :param model: :param separate_decoder: :param lr: :param lr_e: :return: """ if separate_decoder: params = [ {"params": model.decoder.parameters(), "lr": lr}, {"params": model.encoder.parameters(), "lr": lr_e}, ] else: params = [{"params": model.parameters(), "lr": lr}] if optimizer == "Adam": optimizer = optim.Adam(params, lr=lr) elif optimizer == "RAdam": optimizer = RAdam(params, lr=lr) elif optimizer == "Ralamb": optimizer = Ralamb(params, lr=lr) else: raise ValueError("unknown base optimizer type") if lookahead: optimizer = Lookahead(base_optimizer=optimizer, k=5, alpha=0.5) return optimizer ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/predict.py ================================================ import cv2 import numpy as np import pandas as pd from utils import post_process from dataset import mask2rle from tqdm import tqdm def sigmoid(x): return 1 / (1 + np.exp(-x)) def predict( loaders=None, runner=None, class_params: dict = None, path: str = "", sub_name: str = "", ): """ Args: loaders: runner: class_params: path: sub_name: Returns: """ encoded_pixels = [] image_id = 0 for _, test_batch in tqdm(enumerate(loaders["test"])): runner_out = runner.predict_batch({"features": test_batch[0].cuda()})["logits"] for _, batch in enumerate(runner_out): for probability in batch: probability = probability.cpu().detach().numpy() if probability.shape != (350, 525): probability = cv2.resize( probability, dsize=(525, 350), interpolation=cv2.INTER_LINEAR ) prediction, num_predict = post_process( sigmoid(probability), class_params[str(image_id % 4)][0], class_params[str(image_id % 4)][1], ) if num_predict == 0: encoded_pixels.append("") else: r = mask2rle(prediction) encoded_pixels.append(r) image_id += 1 sub = pd.read_csv(f"{path}/sample_submission.csv") sub["EncodedPixels"] = encoded_pixels sub.to_csv( f"submissions/submission_{sub_name}.csv", columns=["Image_Label", "EncodedPixels"], index=False, ) def predict_blend( loaders=None, runner=None, class_params: dict = None, path: str = "", sub_name: str = "", ): """ Args: loaders: runner: class_params: path: sub_name: Returns: """ encoded_pixels = [] image_id = 0 for _, test_batch in tqdm(enumerate(loaders["test"])): runner_out = runner.predict_batch({"features": test_batch[0].cuda()})["logits"] for _, batch in enumerate(runner_out): for probability in batch: probability = probability.cpu().detach().numpy() if probability.shape != (350, 525): probability = cv2.resize( probability, dsize=(525, 350), interpolation=cv2.INTER_LINEAR ) prediction, num_predict = post_process( (probability), class_params[str(image_id % 4)][0], class_params[str(image_id % 4)][1], ) if num_predict == 0: encoded_pixels.append("") else: r = mask2rle(prediction) encoded_pixels.append(r) image_id += 1 sub = pd.read_csv(f"{path}/sample_submission.csv") sub["EncodedPixels"] = encoded_pixels sub.to_csv( f"submissions/submission_{sub_name}.csv", columns=["Image_Label", "EncodedPixels"], index=False, ) ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/schedulers.py ================================================ # import torch # import warnings # warnings.filterwarnings("once") # # from torch.optim.optimizer import Optimizer # import math # import itertools as it # import torch.optim as optim # # # def get_scheduler(scheduler: str = 'ReduceLROnPlateau'): # # https://github.com/lonePatient/lookahead_pytorch/blob/master/run.py # # if scheduler == 'ReduceLROnPlateau': # scheduler = ReduceLROnPlateau(optimizer, factor=0.8, patience=3) # # # return scheduler ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/train.py ================================================ import torch import torch.nn as nn from torch.optim.lr_scheduler import ReduceLROnPlateau from catalyst.dl.runner import SupervisedRunner from catalyst.dl.callbacks import ( DiceCallback, EarlyStoppingCallback, OptimizerCallback, CriterionCallback, AUCCallback, ) # from catalyst.contrib.criterion.lovasz import LovaszLossMultiClass, LovaszLossBinary import ttach as tta import segmentation_models_pytorch as smp import datetime import argparse import warnings import gc import json from dataset import prepare_loaders from models.models import get_model from optimizers import get_optimizer from utils import get_optimal_postprocess from predict import predict, predict_blend from losses.losses import FocalLoss, BCEMulticlassDiceLoss from losses.lovasz_losses import lovasz_softmax from catalyst import utils from callbacks import MulticlassDiceMetricCallback from catalyst.utils import set_global_seed, prepare_cudnn import os warnings.filterwarnings("once") if __name__ == "__main__": """ Example of usage: >>> python train.py --chunk_size=10000 --n_jobs=10 """ parser = argparse.ArgumentParser( description="Train model for understanding_cloud_organization competition" ) parser.add_argument( "--path", help="path to files", type=str, default="/home/dex/Desktop/ml/cloud data", ) # https://github.com/qubvel/segmentation_models.pytorch parser.add_argument("--encoder", help="u-net encoder", type=str, default="resnet18") parser.add_argument( "--encoder_weights", help="pre-training dataset", type=str, default="imagenet" ) parser.add_argument("--DEVICE", help="device", type=str, default="CUDA") parser.add_argument( "--scheduler", help="scheduler", type=str, default="ReduceLROnPlateau" ) parser.add_argument("--loss", help="loss", type=str, default="BCEDiceLoss") parser.add_argument("--logdir", help="logdir", type=str, default="./logs/") parser.add_argument("--optimizer", help="optimizer", type=str, default="Adam") parser.add_argument( "--augmentation", help="augmentation", type=str, default="default" ) parser.add_argument("--model_type", help="model_type", type=str, default="segm") parser.add_argument("--segm_type", help="model_type", type=str, default="Unet") parser.add_argument( "--task", help="class or segm", type=str, default="segmentation" ) parser.add_argument("--num_workers", help="num_workers", type=int, default=4) parser.add_argument("--bs", help="batch size", type=int, default=2) parser.add_argument("--lr", help="learning rate", type=float, default=1e-3) parser.add_argument( "--lr_e", help="learning rate for decoder", type=float, default=1e-3 ) parser.add_argument("--num_epochs", help="number of epochs", type=int, default=100) parser.add_argument( "--gradient_accumulation", help="gradient_accumulation steps", type=int, default=None, ) parser.add_argument("--height", help="height", type=int, default=320) parser.add_argument("--width", help="width", type=int, default=640) parser.add_argument("--seed", help="random seed", type=int, default=42) parser.add_argument( "--optimize_postprocess", help="to optimize postprocess", type=bool, default=False, ) parser.add_argument("--train", help="train", type=bool, default=False) parser.add_argument( "--make_prediction", help="to make prediction", type=bool, default=False ) parser.add_argument( "--preload", help="save processed data", type=bool, default=False ) parser.add_argument( "--separate_decoder", help="number of epochs", type=bool, default=False ) parser.add_argument("--multigpu", help="use multi-gpu", type=bool, default=False) parser.add_argument("--lookahead", help="use lookahead", type=bool, default=False) args, unknown = parser.parse_known_args() # args.train = False args.optimize_postprocess = False print(args) if args.task == "classification": os.environ["CUDA_VISIBLE_DEVICES"] = "0" set_global_seed(args.seed) prepare_cudnn(deterministic=True) sub_name = f"Model_{args.task}_{args.model_type}_{args.encoder}_bs_{args.bs}_{str(datetime.datetime.now().date())}" logdir = f"./logs/{sub_name}" if args.logdir is None else args.logdir preprocessing_fn = smp.encoders.get_preprocessing_fn( args.encoder, args.encoder_weights ) loaders = prepare_loaders( path=args.path, bs=args.bs, num_workers=args.num_workers, preprocessing_fn=preprocessing_fn, preload=args.preload, image_size=(args.height, args.width), augmentation=args.augmentation, task=args.task, ) test_loader = loaders["test"] del loaders["test"] model = get_model( model_type=args.segm_type, encoder=args.encoder, encoder_weights=args.encoder_weights, activation=None, task=args.task, ) optimizer = get_optimizer( optimizer=args.optimizer, lookahead=args.lookahead, model=model, separate_decoder=args.separate_decoder, lr=args.lr, lr_e=args.lr_e, ) if args.scheduler == "ReduceLROnPlateau": scheduler = ReduceLROnPlateau(optimizer, factor=0.6, patience=3) else: scheduler = ReduceLROnPlateau(optimizer, factor=0.3, patience=3) if args.loss == "BCEDiceLoss": criterion = smp.utils.losses.BCEDiceLoss(eps=1.0) elif args.loss == "BCEJaccardLoss": criterion = smp.utils.losses.BCEJaccardLoss(eps=1.0) elif args.loss == "FocalLoss": criterion = FocalLoss() # elif args.loss == 'lovasz_softmax': # criterion = lovasz_softmax() elif args.loss == "BCEMulticlassDiceLoss": criterion = BCEMulticlassDiceLoss() elif args.loss == "MulticlassDiceMetricCallback": criterion = MulticlassDiceMetricCallback() elif args.loss == "BCE": criterion = nn.BCEWithLogitsLoss() else: criterion = smp.utils.losses.BCEDiceLoss(eps=1.0) if args.multigpu: model = nn.DataParallel(model) if args.task == "segmentation": callbacks = [ DiceCallback(), EarlyStoppingCallback(patience=10, min_delta=0.001), CriterionCallback(), ] elif args.task == "classification": callbacks = [ AUCCallback( class_names=["Fish", "Flower", "Gravel", "Sugar"], num_classes=4 ), EarlyStoppingCallback(patience=10, min_delta=0.001), CriterionCallback(), ] if args.gradient_accumulation: callbacks.append( OptimizerCallback(accumulation_steps=args.gradient_accumulation) ) checkpoint = utils.load_checkpoint(f"{logdir}/checkpoints/best.pth") model.cuda() utils.unpack_checkpoint(checkpoint, model=model) # # runner = SupervisedRunner() if args.train: print("Training") runner.train( model=model, criterion=criterion, optimizer=optimizer, main_metric="dice", minimize_metric=False, scheduler=scheduler, loaders=loaders, callbacks=callbacks, logdir=logdir, num_epochs=args.num_epochs, verbose=True, ) with open(f"{logdir}/args.txt", "w") as f: for k, v in args.__dict__.items(): f.write(f"{k}: {v}" + "\n") torch.cuda.empty_cache() gc.collect() class_params = None if args.optimize_postprocess: print("POSTPROCESS") del loaders["train"] checkpoint = utils.load_checkpoint(f"{logdir}/checkpoints/best.pth") model.cuda() utils.unpack_checkpoint(checkpoint, model=model) runner = SupervisedRunner(model=model) class_params = get_optimal_postprocess( loaders=loaders, runner=runner, logdir=logdir ) with open(f"{logdir}/class_params.json", "w") as f: json.dump(class_params, f) if args.make_prediction: print("MAKING PREDICTIONS") loaders["test"] = test_loader checkpoint = utils.load_checkpoint(f"{logdir}/checkpoints/best.pth") # transforms = tta.Compose( # [ # tta.HorizontalFlip(), # # tta.Rotate90(angles=[0, 180]), # # tta.Scale(scales=[1, 2, 4]), # #tta.Multiply(factors=[0.9, 1, 1.1]), # ] # ) model.cuda() utils.unpack_checkpoint(checkpoint, model=model) # tta_model = tta.SegmentationTTAWrapper(model, transforms, merge_mode='mean') # runner = SupervisedRunner(model=tta_model) runner = SupervisedRunner(model=model) if not class_params: with open(f"{logdir}/class_params.json", "r") as f: class_params = json.load(f) print("prediction postprocess params", class_params) predict( loaders=loaders, runner=runner, class_params=class_params, path=args.path, sub_name=sub_name, ) ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/train.sh ================================================ python train.py --encoder resnet50 --bs 8 --gradient_accumulation 4 --lr 1e-5 --num_epochs 2 --lr_e 10e-5 --separate_decoder True --optimize_postprocess False --train False --make_prediction True ================================================ FILE: DEEP LEARNING/segmentation/Understanding-Clouds-from-Satellite-Images-master/utils.py ================================================ import matplotlib.pyplot as plt import cv2 import numpy as np from catalyst.dl.callbacks import InferCallback, CheckpointCallback import pandas as pd def sigmoid(x): return 1 / (1 + np.exp(-x)) def visualize(image, mask, original_image=None, original_mask=None, fontsize: int = 14): """ Plot image and masks. If two pairs of images and masks are passes, show both. Args: image: transformed image mask: transformed mask original_image: original_mask: fontsize: Returns: """ class_dict = {0: "Fish", 1: "Flower", 2: "Gravel", 3: "Sugar"} if original_image is None and original_mask is None: f, ax = plt.subplots(1, 5, figsize=(24, 24)) ax[0].imshow(image) for i in range(4): ax[i + 1].imshow(mask[:, :, i]) ax[i + 1].set_title(f"Mask {class_dict[i]}", fontsize=fontsize) else: f, ax = plt.subplots(2, 5, figsize=(24, 12)) ax[0, 0].imshow(original_image) ax[0, 0].set_title("Original image", fontsize=fontsize) for i in range(4): ax[0, i + 1].imshow(original_mask[:, :, i]) ax[0, i + 1].set_title(f"Original mask {class_dict[i]}", fontsize=fontsize) ax[1, 0].imshow(image) ax[1, 0].set_title("Transformed image", fontsize=fontsize) for i in range(4): ax[1, i + 1].imshow(mask[:, :, i]) ax[1, i + 1].set_title( f"Transformed mask {class_dict[i]}", fontsize=fontsize ) def visualize_with_raw( image, mask, original_image=None, original_mask=None, raw_image=None, raw_mask=None ): """ Similar to visualize function, but with post-processed image, mask. Args: image: mask: original_image: original_mask: raw_image: raw_mask: Returns: """ fontsize = 14 class_dict = {0: "Fish", 1: "Flower", 2: "Gravel", 3: "Sugar"} f, ax = plt.subplots(3, 5, figsize=(24, 12)) ax[0, 0].imshow(original_image) ax[0, 0].set_title("Original image", fontsize=fontsize) for i in range(4): ax[0, i + 1].imshow(original_mask[:, :, i]) ax[0, i + 1].set_title(f"Original mask {class_dict[i]}", fontsize=fontsize) ax[1, 0].imshow(raw_image) ax[1, 0].set_title("Original image", fontsize=fontsize) for i in range(4): ax[1, i + 1].imshow(raw_mask[:, :, i]) ax[1, i + 1].set_title(f"Raw predicted mask {class_dict[i]}", fontsize=fontsize) ax[2, 0].imshow(image) ax[2, 0].set_title("Transformed image", fontsize=fontsize) for i in range(4): ax[2, i + 1].imshow(mask[:, :, i]) ax[2, i + 1].set_title( f"Predicted mask with processing {class_dict[i]}", fontsize=fontsize ) def plot_with_augmentation(image, mask, augment): """ Wrapper for `visualize` function. Args: image: mask: augment: Returns: """ augmented = augment(image=image, mask=mask) image_flipped = augmented["image"] mask_flipped = augmented["mask"] visualize(image_flipped, mask_flipped, original_image=image, original_mask=mask) from scipy.ndimage.morphology import binary_fill_holes def post_process( probability: np.array = None, threshold: float = 0.5, min_size: int = 10 ): """ Post processing of each predicted mask, components with lesser number of pixels than `min_size` are ignored Args: probability: mask threshold: threshold for processing min_size: min_size for processing Returns: """ # don't remember where I saw it mask = cv2.threshold(probability, threshold, 1, cv2.THRESH_BINARY)[1] num_component, component = cv2.connectedComponents(mask.astype(np.uint8)) predictions = np.zeros((350, 525), np.float32) num = 0 for c in range(1, num_component): p = component == c if p.sum() > min_size: predictions[p] = 1 num += 1 return (predictions), num def dice(img1: np.array, img2: np.array) -> float: """ Calculate dice of two images Args: img1: img2: Returns: """ img1 = np.asarray(img1).astype(np.bool) img2 = np.asarray(img2).astype(np.bool) intersection = np.logical_and(img1, img2) return 2.0 * intersection.sum() / (img1.sum() + img2.sum()) def get_optimal_postprocess(loaders=None, runner=None, logdir: str = ""): """ Calculate optimal thresholds for validation data. Args: loaders: loaders with necessary datasets runner: runner logdir: directory with model checkpoints Returns: """ loaders["infer"] = loaders["valid"] runner.infer( model=runner.model, loaders=loaders, callbacks=[ CheckpointCallback(resume=f"{logdir}/checkpoints/best.pth"), InferCallback(), ], ) valid_masks = [] probabilities = np.zeros((2220, 350, 525)) for i, (batch, output) in enumerate( zip(loaders["infer"].dataset, runner.callbacks[0].predictions["logits"]) ): image, mask = batch for m in mask: if m.shape != (350, 525): m = cv2.resize(m, dsize=(525, 350), interpolation=cv2.INTER_LINEAR) valid_masks.append(m) for j, probability in enumerate(output): if probability.shape != (350, 525): probability = cv2.resize( probability, dsize=(525, 350), interpolation=cv2.INTER_LINEAR ) probabilities[i * 4 + j, :, :] = probability class_params = {} for class_id in range(4): print(class_id) attempts = [] for t in range(0, 100, 10): t /= 100 for ms in [ 0, 100, 1000, 5000, 10000, 11000, 14000, 15000, 16000, 18000, 19000, 20000, 21000, 23000, 25000, 27000, 30000, 50000, ]: masks = [] for i in range(class_id, len(probabilities), 4): probability = probabilities[i] predict, num_predict = post_process(sigmoid(probability), t, ms) masks.append(predict) d = [] for i, j in zip(masks, valid_masks[class_id::4]): if (i.sum() == 0) & (j.sum() == 0): d.append(1) else: d.append(dice(i, j)) attempts.append((t, ms, np.mean(d))) attempts_df = pd.DataFrame(attempts, columns=["threshold", "size", "dice"]) attempts_df = attempts_df.sort_values("dice", ascending=False) print(attempts_df.head()) best_threshold = attempts_df["threshold"].values[0] best_size = attempts_df["size"].values[0] class_params[class_id] = (best_threshold, int(best_size)) print(class_params) return class_params ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # Machine Learning and Deep Learning Scripts [![Made with Python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) ![Insaf Ashrapov's GitHub stats](https://github-readme-stats.vercel.app/api?username=diyago&show_icons=true&theme=dark) Collection of useful Python scripts for Machine Learning and Deep Learning tasks, including Kaggle solutions, MOOC exercises, and practical implementations. ## Table of Contents - [Classification](#classification) - [Regression](#regression) - [Statistics](#statistics) - [Clustering](#clustering) - [Time Series](#time-series) - [Deep Learning](#deep-learning) - [Natural Language Processing (NLP)](#natural-language-processing-nlp) - [Recommendations](#recommendations) - [Deployment](#deployment) - [Contributing](#contributing) - [License](#license) ## Classification Machine learning classification algorithms and solutions. Location: [`classification/`](./classification) ## Regression Regression models and Kaggle competition solutions. Location: [`regression/`](./regression) ## Statistics Essential tools for statistical analysis: comparing medians, means, and data distributions for statistical significance. Location: [`statistics/`](./statistics) ## Clustering Useful cases and implementations for clustering tasks. Location: [`clustering/`](./clustering) ## Time Series Time series analysis and forecasting implementations. Location: [`time series regression/`](./time%20series%20regression) - **[Anomaly Detection](./time%20series%20regression/anomaly%20detection)** – Detection algorithms with [Medium article](https://medium.com/p/4c661f6f165f/) ![Anomaly detection](./images/anomaly-detection.png) - **[Deep Learning Approach](./time%20series%20regression/DL%20aproach%20for%20timeseries)** – Neural network models for time series - **[ARIMA](./time%20series%20regression/ARIMA)** – Classical statistical methods ## Deep Learning PyTorch, FastAI, and Keras implementations. Location: [`DEEP LEARNING/`](./DEEP%20LEARNING) ### Images - **Autoencoders & GANs** - [Tabular GANs](./DEEP%20LEARNING/Autoencoders%20GANS/GAN-for-tabular-data) - [Style Transfer](./DEEP%20LEARNING/Autoencoders%20GANS/Style%20transfer) - **Image Classification** - [FastAI](./DEEP%20LEARNING/image%20classification/fastai) - [Keras](./DEEP%20LEARNING/image%20classification/keras) - [PyTorch](./DEEP%20LEARNING/image%20classification) ![Image classification](./images/img_class.png) - **[Object Detection](./DEEP%20LEARNING/Object%20detection)** ![Object detection](./images/object_detections.jpg) - **[Segmentation](./DEEP%20LEARNING/segmentation)** - Kaggle solutions - [Segmentation Pipeline](./DEEP%20LEARNING/segmentation/Segmentation%20pipeline) with [Medium article](https://towardsdatascience.com/road-detection-using-segmentation-models-and-albumentations-libraries-on-keras-d5434eaf73a8) ![Road Detection](./images/road-detection) - **[PyTorch Tutorials](./DEEP%20LEARNING/Pytorch%20from%20scratch)** – From scratch implementations ### Other DL Resources - [Kaggle Avito Demand Prediction Challenge](./DEEP%20LEARNING/Kaggle%20Avito%20Demand%20Prediction%20Challenge) - [Google Landmark Retrieval](./DEEP%20LEARNING/Google%20Landmark%20Retrieval%20Challenge.py) ## Natural Language Processing (NLP) Text processing and NLP models. Location: [`DEEP LEARNING/NLP/`](./DEEP%20LEARNING/NLP) ## Recommendations Recommendation systems and collaborative filtering. Location: [`recommendations/`](./recommendations) - [ODS Course materials](./recommendations/ods_course/) ## Deployment Production deployment examples using Docker. Location: [`deployment/`](./deployment) ## Books & Articles Curated collection of learning resources. Location: [`books, articles/`](./books%2C%20articles/) ## Contributing Contributions are welcome! Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines. ## Contact - Telegram: [@ai_tablet](https://t.me/ai_tablet) - GitHub: [@diyago](https://github.com/diyago) ## License This project is licensed under the Apache License 2.0 - see the [LICENSE](./LICENSE) file for details. ================================================ FILE: _config.yml ================================================ theme: jekyll-theme-cayman ================================================ FILE: classification/Kaggle Home Credit Default Risk/README.MD ================================================ ## Solution to Home Credit Default Risk 2018 - silver 64th place Link: https://www.kaggle.com/c/home-credit-default-risk Many people struggle to get loans due to insufficient or non-existent credit histories. And, unfortunately, this population is often taken advantage of by untrustworthy lenders. Home Credit Group Home Credit strives to broaden financial inclusion for the unbanked population by providing a positive and safe borrowing experience. In order to make sure this underserved population has a positive loan experience, Home Credit makes use of a variety of alternative data--including telco and transactional information--to predict their clients' repayment abilities. While Home Credit is currently using various statistical and machine learning methods to make these predictions, they're challenging Kagglers to help them unlock the full potential of their data. Doing so will ensure that clients capable of repayment are not rejected and that loans are given with a principal, maturity, and repayment calendar that will empower their clients to be successful. ================================================ FILE: classification/Kaggle Malware Prediction/README.MD ================================================ ## Solution to Microsoft Malware Prediction Challenge Link: https://www.kaggle.com/c/microsoft-malware-prediction The malware industry continues to be a well-organized, well-funded market dedicated to evading traditional security measures. Once a computer is infected by malware, criminals can hurt consumers and enterprises in many ways. With more than one billion enterprise and consumer customers, Microsoft takes this problem very seriously and is deeply invested in improving security. As one part of their overall strategy for doing so, Microsoft is challenging the data science community to develop techniques to predict if a machine will soon be hit with malware. As with their previous, Malware Challenge (2015), Microsoft is providing Kagglers with an unprecedented malware dataset to encourage open-source progress on effective techniques for predicting malware occurrences. Can you help protect more than one billion machines from damage BEFORE it happens? ================================================ FILE: classification/Kaggle Malware Prediction/kaggle.py ================================================ import pandas as pd import numpy as np import os from sklearn.model_selection import KFold, StratifiedKFold from sklearn.linear_model import LogisticRegression from sklearn.preprocessing import LabelEncoder, OneHotEncoder import sklearn.metrics as metrics from models_zoo import BesXGboost, BesLightGBM, BesCatBoost from target_encoding import TargetEncoding import gc import time import matplotlib as plt import joblib import seaborn as sns import lightgbm as lgb from numba import jit from pathlib import Path # fast roc_auc computation: https://www.kaggle.com/c/microsoft-malware-prediction/discussion/76013 @jit def fast_auc(y_true, y_prob): y_true = np.asarray(y_true) y_true = y_true[np.argsort(y_prob)] nfalse = 0 auc = 0 n = len(y_true) for i in range(n): y_i = y_true[i] nfalse += 1 - y_i auc += y_i * nfalse auc /= nfalse * (n - nfalse) return auc def eval_auc(preds, dtrain): labels = dtrain.get_label() return "auc", fast_auc(labels, preds), True class Kaggle: """ Class skeleton for classification * Data Preparation * Feature Engineering * Models Stacking """ def __init__(self, data_path, metric="auc", mode=0): self.data_path = data_path self.mode = mode self.df_train = None self.df_test = None self.target_colname = None self.id_colname = None self.folds = None self.sep = None self.metric = metric self.compute_metric, self.maximize = self.get_metric(metric) # TODO store big list of params on separate file self.dtypes = { "MachineIdentifier": "category", "ProductName": "category", "EngineVersion": "category", "AppVersion": "category", "AvSigVersion": "category", "IsBeta": "int8", "RtpStateBitfield": "float16", "IsSxsPassiveMode": "int8", "DefaultBrowsersIdentifier": "float16", "AVProductStatesIdentifier": "float32", "AVProductsInstalled": "float16", "AVProductsEnabled": "float16", "HasTpm": "int8", "CountryIdentifier": "int16", "CityIdentifier": "float32", "OrganizationIdentifier": "float16", "GeoNameIdentifier": "float16", "LocaleEnglishNameIdentifier": "int8", "Platform": "category", "Processor": "category", "OsVer": "category", "OsBuild": "int16", "OsSuite": "int16", "OsPlatformSubRelease": "category", "OsBuildLab": "category", "SkuEdition": "category", "IsProtected": "float16", "AutoSampleOptIn": "int8", "PuaMode": "category", "SMode": "float16", "IeVerIdentifier": "float16", "SmartScreen": "category", "Firewall": "float16", "UacLuaenable": "float32", "Census_MDC2FormFactor": "category", "Census_DeviceFamily": "category", "Census_OEMNameIdentifier": "float16", "Census_OEMModelIdentifier": "float32", "Census_ProcessorCoreCount": "float16", "Census_ProcessorManufacturerIdentifier": "float16", "Census_ProcessorModelIdentifier": "float16", "Census_ProcessorClass": "category", "Census_PrimaryDiskTotalCapacity": "float32", "Census_PrimaryDiskTypeName": "category", "Census_SystemVolumeTotalCapacity": "float32", "Census_HasOpticalDiskDrive": "int8", "Census_TotalPhysicalRAM": "float32", "Census_ChassisTypeName": "category", "Census_InternalPrimaryDiagonalDisplaySizeInInches": "float16", "Census_InternalPrimaryDisplayResolutionHorizontal": "float16", "Census_InternalPrimaryDisplayResolutionVertical": "float16", "Census_PowerPlatformRoleName": "category", "Census_InternalBatteryType": "category", "Census_InternalBatteryNumberOfCharges": "float32", "Census_OSVersion": "category", "Census_OSArchitecture": "category", "Census_OSBranch": "category", "Census_OSBuildNumber": "int16", "Census_OSBuildRevision": "int32", "Census_OSEdition": "category", "Census_OSSkuName": "category", "Census_OSInstallTypeName": "category", "Census_OSInstallLanguageIdentifier": "float16", "Census_OSUILocaleIdentifier": "int16", "Census_OSWUAutoUpdateOptionsName": "category", "Census_IsPortableOperatingSystem": "int8", "Census_GenuineStateName": "category", "Census_ActivationChannel": "category", "Census_IsFlightingInternal": "float16", "Census_IsFlightsDisabled": "float16", "Census_FlightRing": "category", "Census_ThresholdOptIn": "float16", "Census_FirmwareManufacturerIdentifier": "float16", "Census_FirmwareVersionIdentifier": "float32", "Census_IsSecureBootEnabled": "int8", "Census_IsWIMBootEnabled": "float16", "Census_IsVirtualDevice": "float16", "Census_IsTouchEnabled": "int8", "Census_IsPenCapable": "int8", "Census_IsAlwaysOnAlwaysConnectedCapable": "float16", "Wdft_IsGamer": "float16", "Wdft_RegionIdentifier": "float16", "HasDetections": "int8", } @staticmethod def get_metric(metric): """Returns metric evaluation""" if metric == "auc": return metrics.roc_auc_score, True if metric == "mae": return metrics.mean_absolute_error, False def read_train_data( self, train_name="train.csv", sep=",", target_colname=None, id_colname=None, num_rows=None, ): self.sep = sep self.df_train = pd.read_csv( os.path.join(self.data_path, train_name), sep=self.sep, dtype=self.dtypes, nrows=num_rows, ) if 5244810 in self.df_train.index: self.df_train.loc[5244810, "AvSigVersion"] = "1.273.1144.0" self.df_train["AvSigVersion"].cat.remove_categories( "1.23.1144.0", inplace=True ) self.df_train["AvSigVersion_1"] = self.df_train["AvSigVersion"].map( lambda x: np.int(x.split(".")[1]) ) # datedictAS = np.load(os.path.join(self.data_path, 'AvSigVersionTimestamps.npy'))[()] # df_train['DateAS'] = df_train['AvSigVersion'].map(datedictAS) self.df_train = self.df_train[self.df_train["AvSigVersion_1"] >= 250] if target_colname: self.target_colname = target_colname if id_colname: self.id_colname = id_colname def read_test_data(self, test_name="test.csv"): self.df_test = pd.read_csv( os.path.join(self.data_path, test_name), sep=self.sep, dtype=self.dtypes ) @staticmethod def reduce_mem_usage(data, verbose=True): numerics = ["int8", "int16", "int32", "int64", "float16", "float32", "float64"] start_mem = data.memory_usage().sum() / 1024 ** 2 if verbose: print("Memory usage of dataframe: {:.2f} MB".format(start_mem)) for col in data.columns: col_type = data[col].dtype if col_type in numerics: c_min = data[col].min() c_max = data[col].max() if str(col_type)[:3] == "int": if c_min > np.iinfo(np.int8).min and c_max < np.iinfo(np.int8).max: data[col] = data[col].astype(np.int8) elif ( c_min > np.iinfo(np.int16).min and c_max < np.iinfo(np.int16).max ): data[col] = data[col].astype(np.int16) elif ( c_min > np.iinfo(np.int32).min and c_max < np.iinfo(np.int32).max ): data[col] = data[col].astype(np.int32) elif ( c_min > np.iinfo(np.int64).min and c_max < np.iinfo(np.int64).max ): data[col] = data[col].astype(np.int64) else: if ( c_min > np.finfo(np.float16).min and c_max < np.finfo(np.float16).max ): data[col] = data[col].astype(np.float16) elif ( c_min > np.finfo(np.float32).min and c_max < np.finfo(np.float32).max ): data[col] = data[col].astype(np.float32) else: data[col] = data[col].astype(np.float64) end_mem = data.memory_usage().sum() / 1024 ** 2 if verbose: print("Memory usage after optimization: {:.2f} MB".format(end_mem)) print( "Decreased by {:.1f}%".format(100 * (start_mem - end_mem) / start_mem) ) return data def create_validation_split(self, n_folds=5, stratified=False): self.folds = n_folds if Path("cv_splits/train_cv_fold_0").is_file() is False: if stratified: skf = StratifiedKFold(n_splits=n_folds, random_state=42, shuffle=True) idx = 0 for train_index, test_index in skf.split( self.df_train[[self.id_colname]], self.df_train[[self.target_colname]], ): self.df_train[[self.id_colname]].loc[train_index, :].to_csv( "cv_splits/train_cv_fold_{}".format(idx), index=False ) self.df_train[[self.id_colname]].loc[test_index, :].to_csv( "cv_splits/test_cv_fold_{}".format(idx), index=False ) idx += 1 else: skf = KFold(n_splits=n_folds, random_state=42, shuffle=True) idx = 0 for train_index, test_index in skf.split( self.df_train[[self.id_colname]] ): self.df_train[[self.id_colname]].loc[train_index, :].to_csv( "cv_splits/train_cv_fold_{}".format(idx), index=False ) self.df_train[[self.id_colname]].loc[test_index, :].to_csv( "cv_splits/test_cv_fold_{}".format(idx), index=False ) idx += 1 gc.collect() def general_feature_engineering(self, train_only=True): """Feature engineering, which does NOT depend on train/test split""" if train_only: df = self.df_train else: print("Total Feature Eng", time.ctime()) # df = pd.concat([self.df_train, self.df_test]) if self.mode == 0: def basic_fe(df): df["EngineVersion_2"] = ( df["EngineVersion"] .apply(lambda x: x.split(".")[2]) .astype("category") ) df["EngineVersion_3"] = ( df["EngineVersion"] .apply(lambda x: x.split(".")[3]) .astype("category") ) df["AppVersion_1"] = ( df["AppVersion"].apply(lambda x: x.split(".")[1]).astype("category") ) df["AppVersion_2"] = ( df["AppVersion"].apply(lambda x: x.split(".")[2]).astype("category") ) df["AppVersion_3"] = ( df["AppVersion"].apply(lambda x: x.split(".")[3]).astype("category") ) df["AvSigVersion_0"] = ( df["AvSigVersion"] .apply(lambda x: x.split(".")[0]) .astype("category") ) df["AvSigVersion_1"] = ( df["AvSigVersion"] .apply(lambda x: x.split(".")[1]) .astype("category") ) df["AvSigVersion_2"] = ( df["AvSigVersion"] .apply(lambda x: x.split(".")[2]) .astype("category") ) df["OsBuildLab_0"] = ( df["OsBuildLab"].apply(lambda x: x.split(".")[0]).astype("category") ) df["OsBuildLab_1"] = ( df["OsBuildLab"].apply(lambda x: x.split(".")[1]).astype("category") ) df["OsBuildLab_2"] = ( df["OsBuildLab"].apply(lambda x: x.split(".")[2]).astype("category") ) df["OsBuildLab_3"] = ( df["OsBuildLab"].apply(lambda x: x.split(".")[3]).astype("category") ) df["Census_OSVersion_0"] = ( df["Census_OSVersion"] .apply(lambda x: x.split(".")[0]) .astype("category") ) df["Census_OSVersion_1"] = ( df["Census_OSVersion"] .apply(lambda x: x.split(".")[1]) .astype("category") ) df["Census_OSVersion_2"] = ( df["Census_OSVersion"] .apply(lambda x: x.split(".")[2]) .astype("category") ) df["Census_OSVersion_3"] = ( df["Census_OSVersion"] .apply(lambda x: x.split(".")[3]) .astype("category") ) df["primary_drive_c_ratio"] = ( df["Census_SystemVolumeTotalCapacity"] / df["Census_PrimaryDiskTotalCapacity"] ) df["non_primary_drive_MB"] = ( df["Census_PrimaryDiskTotalCapacity"] - df["Census_SystemVolumeTotalCapacity"] ) df["aspect_ratio"] = ( df["Census_InternalPrimaryDisplayResolutionVertical"] / df["Census_InternalPrimaryDisplayResolutionHorizontal"] ) df["monitor_dims"] = ( df["Census_InternalPrimaryDisplayResolutionHorizontal"].astype(str) + "*" + df["Census_InternalPrimaryDisplayResolutionVertical"].astype( "str" ) ) df["monitor_dims"] = df["monitor_dims"].astype("category") df["dpi"] = ( ( df["Census_InternalPrimaryDisplayResolutionHorizontal"] ** 2 + df["Census_InternalPrimaryDisplayResolutionVertical"] ** 2 ) ** 0.5 ) / (df["Census_InternalPrimaryDiagonalDisplaySizeInInches"]) df["dpi_square"] = df["dpi"] ** 2 df["MegaPixels"] = ( df["Census_InternalPrimaryDisplayResolutionHorizontal"] * df["Census_InternalPrimaryDisplayResolutionVertical"] ) / 1e6 df["Screen_Area"] = ( df["aspect_ratio"] * (df["Census_InternalPrimaryDiagonalDisplaySizeInInches"] ** 2) ) / (df["aspect_ratio"] ** 2 + 1) df["ram_per_processor"] = ( df["Census_TotalPhysicalRAM"] / df["Census_ProcessorCoreCount"] ) df["new_num_0"] = ( df["Census_InternalPrimaryDiagonalDisplaySizeInInches"] / df["Census_ProcessorCoreCount"] ) df["new_num_1"] = ( df["Census_ProcessorCoreCount"] * df["Census_InternalPrimaryDiagonalDisplaySizeInInches"] ) df["Census_IsFlightingInternal"] = df[ "Census_IsFlightingInternal" ].fillna(1) df["Census_ThresholdOptIn"] = df["Census_ThresholdOptIn"].fillna(1) df["Census_IsWIMBootEnabled"] = df["Census_IsWIMBootEnabled"].fillna(1) df["Wdft_IsGamer"] = df["Wdft_IsGamer"].fillna(0) df.SmartScreen = df.SmartScreen.str.lower() df.SmartScreen.replace( { "promt": "prompt", "promprt": "prompt", "00000000": "0", "enabled": "on", "of": "off", "deny": "0", # just one "requiredadmin": "requireadmin", }, inplace=True, ) df.SmartScreen = df.SmartScreen.astype("category") def group_battery(x): x = x.lower() if "li" in x: return 1 else: return 0 df["isLithium_InternalBatteryType"] = df[ "Census_InternalBatteryType" ].apply(group_battery) add_cat_feats = [ "Census_OSBuildRevision", "OsBuildLab", "SmartScreen", "AVProductsInstalled", ] for col1 in add_cat_feats: for col2 in add_cat_feats: if col1 != col2: df[col1 + "__" + col2] = df[col1].astype(str) + df[ col2 ].astype(str) df[col1 + "__" + col2] = df[col1 + "__" + col2].astype( "category" ) # 0 feature importance - TODO: further feature selection df = df.drop( [ "Census_PrimaryDiskTypeName", #'GeoNameIdentifier', "OsBuildLab_0", #'CityIdentifier', "OrganizationIdentifier", "AvSigVersion_0", "LocaleEnglishNameIdentifier", "OsBuildLab_2", "Platform", "EngineVersion_3", "OsVer", "OsBuild", #'OsSuite', #'CountryIdentifier', "Census_OSVersion_0", "OsBuildLab_3", "Census_IsTouchEnabled", "Census_OSVersion_1", "Census_OSVersion_2", "HasTpm", "DefaultBrowsersIdentifier", #'aspect_ratio', "IsSxsPassiveMode", "dpi", "dpi_square", "MegaPixels", "IsBeta", "ram_per_processor", "new_num_0", "Census_IsPenCapable", "OsPlatformSubRelease", #'Census_SystemVolumeTotalCapacity', "UacLuaenable", "Census_HasOpticalDiskDrive", "Census_ProcessorClass", "Census_ProcessorManufacturerIdentifier", "Census_InternalPrimaryDisplayResolutionHorizontal", "Census_InternalPrimaryDisplayResolutionVertical", "Census_ProcessorCoreCount", "Census_InternalBatteryType", #'Census_InternalBatteryNumberOfCharges', #'Census_OEMModelIdentifier', "Census_OSBranch", "Census_OSBuildNumber", "Census_OSBuildRevision", "Census_DeviceFamily", "Firewall", "Census_IsWIMBootEnabled", #'IeVerIdentifier', "PuaMode", "Census_OSWUAutoUpdateOptionsName", "Census_IsPortableOperatingSystem", "Census_GenuineStateName", "AutoSampleOptIn", "Census_IsFlightingInternal", "Census_IsFlightsDisabled", "Census_FlightRing", "Census_ThresholdOptIn", "SkuEdition", #'Census_FirmwareVersionIdentifier', "Census_IsSecureBootEnabled", "SmartScreen__OsBuildLab", "AVProductsInstalled__Census_OSBuildRevision", "AVProductsInstalled__SmartScreen", "SmartScreen__Census_OSBuildRevision", "AVProductsInstalled__OsBuildLab", "ProductName", ], axis=1, ) return df self.df_train, self.df_test = ( basic_fe(self.df_train), basic_fe(self.df_test), ) gc.collect() print("making bins", time.ctime()) """ # making bins https://www.kaggle.com/guoday/nffm-baseline-0-690-on-lb def make_bucket(data,num=10): data.sort() bins=[] for i in range(num): bins.append(data[int(len(data)*(i+1)//num)-1]) return bins float_features=['Census_SystemVolumeTotalCapacity','Census_PrimaryDiskTotalCapacity'] for f in float_features: self.df_train[f]=self.df_train[f].fillna(1e10) self.df_test[f]=self.df_test[f].fillna(1e10) data=list(self.df_train[f])+list(self.df_test[f]) bins=make_bucket(data,num=50) self.df_train[f]=np.digitize(self.df_train[f],bins=bins) self.df_test[f]=np.digitize(self.df_test[f],bins=bins) del bins gc.collect() print('deleteting skewed vals', time.ctime()) for usecol in self.df_train.columns: if usecol in ['HasDetections', 'MachineIdentifier']: continue self.df_train[usecol] = self.df_train[usecol].astype('str') self.df_test[usecol] = self.df_test[usecol].astype('str') #Fit LabelEncoder le = LabelEncoder().fit( np.unique(self.df_train[usecol].unique().tolist()+ self.df_test[usecol].unique().tolist())) #At the end 0 will be used for dropped values self.df_train[usecol] = le.transform(self.df_train[usecol])+1 self.df_test[usecol] = le.transform(self.df_test[usecol])+1 agg_tr = (self.df_train .groupby([usecol]) .aggregate({'MachineIdentifier':'count'}) .reset_index() .rename({'MachineIdentifier':'Train'}, axis=1)) agg_te = (self.df_test .groupby([usecol]) .aggregate({'MachineIdentifier':'count'}) .reset_index() .rename({'MachineIdentifier':'Test'}, axis=1)) agg = pd.merge(agg_tr, agg_te, on=usecol, how='outer').replace(np.nan, 0) #Select values with more than 1000 observations agg = agg[(agg['Train'] > 1000)].reset_index(drop=True) agg['Total'] = agg['Train'] + agg['Test'] #Drop unbalanced values agg = agg[(agg['Train'] / agg['Total'] > 0.2) & (agg['Train'] / agg['Total'] < 0.8)] agg[usecol+'Copy'] = agg[usecol] self.df_train[usecol] = (pd.merge(self.df_train[[usecol]], agg[[usecol, usecol+'Copy']], on=usecol, how='left')[usecol+'Copy'] .replace(np.nan, 0).astype('int').astype('category')) self.df_test[usecol] = (pd.merge(self.df_test[[usecol]], agg[[usecol, usecol+'Copy']], on=usecol, how='left')[usecol+'Copy'] .replace(np.nan, 0).astype('int').astype('category')) del le, agg_tr, agg_te, agg, usecol gc.collect() ## apply one hot encoding print('one hot encoding', time.ctime()) cols_to_ohe = list(self.df_train.columns) cols_to_ohe.remove('HasDetections'); cols_to_ohe.remove('MachineIdentifier'); ohe = OneHotEncoder(categories='auto', sparse=False, dtype='uint8').fit(self.df_train[cols_to_ohe]) self.df_train[cols_to_ohe] = ohe.transform(self.df_train[cols_to_ohe] ) self.df_test [cols_to_ohe] = ohe.transform(self.df_test[cols_to_ohe]) """ gc.collect() elif self.mode == 1: pass else: raise ValueError("There is No Such Feature Engineering Mode") def _categorical_preprocess(self, df, cat_feature, how="ohe"): """Categorical variables preprocess""" assert how in ["ohe_encoder", "label_encoder", "target_encoder"] if how == "ohe_encoder": df.drop(cat_feature, 1, inplace=True) df = df.join(pd.get_dummies(df[cat_feature], prefix=cat_feature)) # from sklearn.preprocessing import OneHotEncoder # ohe = OneHotEncoder(sparse=False) # y_ohe = ohe.fit_transform(y.values.reshape(-1, 1)) elif how == "label_encoder": le = LabelEncoder() df[cat_feature] = le.fit_transform(df[cat_feature]) elif how == "target_encoder": pass else: raise ValueError("There is no such categorical preprocessing") return df def fold_feature_engineering(self, train, test, total_test): """Feature engineering, which DOES depend on train/test split""" if self.mode == 0: print("Target en coding") to_encode = [ "AppVersion_1", "AppVersion_2", "AppVersion_3", "AppVersion", "SMode", "Census_OSVersion", "Census_OSVersion_3", "OsBuildLab", "EngineVersion", "EngineVersion_2", "EngineVersion_3", "GeoNameIdentifier", "OsSuite", "AvSigVersion", "OsPlatformSubRelease", "OsPlatformSubRelease", "SkuEdition", "IeVerIdentifier", "AVProductStatesIdentifier", "CityIdentifier", "CountryIdentifier", "Census_OEMNameIdentifier", "Census_OEMModelIdentifier", "Census_ProcessorModelIdentifier", "Census_InternalBatteryNumberOfCharges", "Census_FirmwareVersionIdentifier", "AvSigVersion_2", "monitor_dims", "Census_OSBuildRevision_OsBuildLab", "Census_OSBuildRevision__SmartScreen", "Census_OSBuildRevision__AVProductsInstalled", "OsBuildLab__Census_OSBuildRevision", "OsBuildLab__SmartScreen", "OsBuildLab__AVProductsInstalled", "SmartScreen__Census_OSBuildRevision", "SmartScreen__OsBuildLab", "AVProductsInstalled__Census_OSBuildRevision", "AVProductsInstalled__OsBuildLab", ] for encoding_variable in to_encode: if encoding_variable in train.columns: print(encoding_variable, end="; ") te = TargetEncoding(10) train, test, total_test = te.fit( train, test, total_test, encoding_variable, self.target_colname ) else: print("skipped", encoding_variable, end="; ") gc.collect() print("Finished encoding") train = train[ [ col for col in train.columns if col not in [self.target_colname, self.id_colname] ] ] test = test[ [ col for col in test.columns if col not in [self.target_colname, self.id_colname] ] ] total_test = total_test[ [ col for col in test.columns if col not in [self.target_colname, self.id_colname] ] ] # test = test.astype(train.dtypes.to_dict()) # total_test = total_test.astype(train.dtypes.to_dict()) elif self.mode == 1: pass else: raise ValueError("There is No Such Feature Engineering Mode") return train, test, total_test def get_predictions(self, model_name, params, X_train, y_train, X_test, y_test): """Function to return predictions given data and model name""" cat_cols = [ col for col in X_train.columns if col not in [ "MachineIdentifier", "Census_SystemVolumeTotalCapacity", "HasDetections", ] and str(X_train[col].dtype) == "category" ] if model_name == "xgboost": model = BesXGboost( params=params, metric=self.metric, maximize=self.maximize ) model.fit(X_train, y_train) pred = model.predict(X_test) # feat_imp = xgb.feature_importance() # print(feat_imp.head()) elif model_name == "lightgbm": train_data = lgb.Dataset( X_train, label=y_train, categorical_feature=cat_cols ) valid_data = lgb.Dataset(X_test, label=y_test, categorical_feature=cat_cols) model = lgb.train( params, train_data, valid_sets=[train_data, valid_data], verbose_eval=100, feval=eval_auc, ) del train_data, valid_data gc.collect() pred = model.predict(X_test, num_iteration=model.best_iteration) elif model_name == "catboost": model = BesCatBoost( params=params, metric=self.metric.upper(), maximize=self.maximize ) model.fit(X_train, y_train) pred = model.predict(X_test) elif model_name == "logistic_regression": model = LogisticRegression() model.fit(X_train, y_train) pred = model.predict_proba(X_test)[:, 1] else: raise ValueError("There is No Such Model") return model, pred def plot_feature_importance(self, feature_importance): feature_importance["importance"] /= self.folds cols = ( feature_importance[["feature", "importance"]] .groupby("feature") .mean() .sort_values(by="importance", ascending=False)[:10] .index ) best_features = feature_importance.loc[feature_importance.feature.isin(cols)] # plt.figure(figsize=(16, 12)) sns.barplot( x="importance", y="feature", data=best_features.sort_values(by="importance", ascending=False), ) # plt.title('LGB Features (avg over folds)') def run_single_model_validation_test_pred( self, model_name="lightgbm", params=None, oof_preds_path="", is_make_test_preds=True, averaging="usual", is_plot_feature_importance=False, ): if oof_preds_path != "": oof_preds = pd.DataFrame() cv_metrics = [] feature_importance = pd.DataFrame() prediction = np.zeros(len(self.df_test)) test_preds = [] for fold in range(self.folds): print( "************************** FOLD {} **************************".format( fold + 1 ), "\n\t", time.ctime(), ) gc.collect() ids_train = pd.read_csv("cv_splits/train_cv_fold_{}".format(fold)) ids_test = pd.read_csv("cv_splits/test_cv_fold_{}".format(fold)) df_cv_train, df_cv_test = ( self.df_train.merge(ids_train), self.df_train.merge(ids_test), ) y_train, y_test = ( df_cv_train[self.target_colname], df_cv_test[self.target_colname], ) df_cv_train, df_cv_test, df_test = self.fold_feature_engineering( df_cv_train, df_cv_test, self.df_test ) model, pred = self.get_predictions( model_name, params, df_cv_train, y_train, df_cv_test, y_test ) if oof_preds_path != "": ids_test[os.path.split(oof_preds_path)[-1].split(".")[0]] = pred ids_test[self.target_colname] = y_test oof_preds = pd.concat([oof_preds, ids_test]) met = self.compute_metric(y_test, pred) cv_metrics.append(met) print(met) if is_make_test_preds: y_pred = model.predict(df_test, num_iteration=model.best_iteration) test_preds.append(y_pred) del df_test gc.collect() if averaging == "usual": prediction += y_pred elif averaging == "rank": prediction += ( pd.Series(y_pred).rank().values ) # prediction /= prediction.max() # else: prediction += (y_pred + pd.Series(y_pred).rank().values)/2 # if model_name == "lightgbm": # feature importance fold_importance = pd.DataFrame() fold_importance["feature"] = df_cv_train.columns fold_importance["importance"] = model.feature_importance() fold_importance["fold"] = fold + 1 feature_importance = pd.concat( [feature_importance, fold_importance], axis=0 ) # if oof_preds_path != '': # oof_preds.to_csv(oof_preds_path, index=False) prediction /= self.folds del df_cv_train, df_cv_test, pred gc.collect() if model_name == "lightgbm": if is_plot_feature_importance: self.plot_feature_importance(feature_importance) metric_mean = round(np.mean(cv_metrics), self.folds) metric_std = round(np.std(cv_metrics), self.folds) metric_overall = ( round(np.mean(cv_metrics) - np.std(cv_metrics), self.folds) if self.maximize else round(np.mean(cv_metrics) + np.std(cv_metrics), self.folds) ) print( "{metric} mean: {mean}, {metric} std: {std}, {metric} overall: {ov}".format( metric=self.metric, mean=metric_mean, std=metric_std, ov=metric_overall ) ) print("ALL FOLDS:", [round(x, self.folds) for x in cv_metrics]) # if is_make_test_preds: # for_blending = {'train': oof_preds, 'test': test_preds} # joblib.dump(for_blending, oof_preds_path + model_name + '_auc_' + str(metric_mean) + '_std_' + str(metric_std) + '.pkl') gc.collect() return prediction, feature_importance def run_single_model_validation( self, model_name="xgboost", params=None, oof_preds_path="" ): if oof_preds_path != "": oof_preds = pd.DataFrame() cv_metrics = [] for fold in range(self.folds): print( "************************** FOLD {} **************************".format( fold + 1 ) ) gc.collect() ids_train = pd.read_csv("cv_splits/train_cv_fold_{}".format(fold)) ids_test = pd.read_csv("cv_splits/test_cv_fold_{}".format(fold)) df_cv_train, df_cv_test = ( self.df_train.merge(ids_train), self.df_train.merge(ids_test), ) y_train, y_test = ( df_cv_train[self.target_colname], df_cv_test[self.target_colname], ) df_cv_train, df_cv_test = self.fold_feature_engineering( df_cv_train, df_cv_test ) model, pred = self.get_predictions( model_name, params, df_cv_train, y_train, df_cv_test ) if oof_preds_path != "": ids_test[os.path.split(oof_preds_path)[-1].split(".")[0]] = pred ids_test[self.target_colname] = y_test oof_preds = pd.concat([oof_preds, ids_test]) met = self.compute_metric(y_test, pred) cv_metrics.append(met) print(met) if oof_preds_path != "": oof_preds.to_csv(oof_preds_path, index=False) metric_mean = round(np.mean(cv_metrics), self.folds) metric_std = round(np.std(cv_metrics), self.folds) metric_overall = ( round(np.mean(cv_metrics) - np.std(cv_metrics), self.folds) if self.maximize else round(np.mean(cv_metrics) + np.std(cv_metrics), self.folds) ) print( "{metric} mean: {mean}, {metric} std: {std}, {metric} overall: {ov}".format( metric=self.metric, mean=metric_mean, std=metric_std, ov=metric_overall ) ) print("ALL FOLDS:", [round(x, self.folds) for x in cv_metrics]) return metric_mean, metric_std, metric_overall def run_stacked_model_validation( self, model_name="logistic_regression", params=None, prev_level_fold="oof_preds_level_1/", oof_preds_path="", ): if oof_preds_path != "": oof_preds = pd.DataFrame() cv_metrics = [] for fold in range(self.folds): print( "************************** FOLD {} **************************".format( fold + 1 ) ) ids_train = pd.read_csv("cv_splits/train_cv_fold_{}".format(fold)) ids_test = pd.read_csv("cv_splits/test_cv_fold_{}".format(fold)) df_train = pd.DataFrame() for f in os.listdir(prev_level_fold): path = os.path.join(prev_level_fold, f) if df_train.shape[0] == 0: df_train = pd.read_csv(path) else: df_train = df_train.merge(pd.read_csv(path)) df_cv_train, df_cv_test = ( df_train.merge(ids_train), df_train.merge(ids_test), ) y_train, y_test = ( df_cv_train[self.target_colname], df_cv_test[self.target_colname], ) df_cv_train = df_cv_train[ [ col for col in df_cv_train.columns if col not in [self.target_colname, self.id_colname] ] ] df_cv_test = df_cv_test[ [ col for col in df_cv_test.columns if col not in [self.target_colname, self.id_colname] ] ] model, pred = self.get_predictions( model_name, params, df_cv_train, y_train, df_cv_test ) if oof_preds_path != "": ids_test[os.path.split(oof_preds_path)[-1].split(".")[0]] = pred ids_test[self.target_colname] = y_test oof_preds = pd.concat([oof_preds, ids_test]) met = self.compute_metric(y_test, pred) cv_metrics.append(met) print(met) if oof_preds_path != "": oof_preds.to_csv(oof_preds_path, index=False) metric_mean = round(np.mean(cv_metrics), self.folds) metric_std = round(np.std(cv_metrics), self.folds) metric_overall = ( round(np.mean(cv_metrics) - np.std(cv_metrics), self.folds) if self.maximize else round(np.mean(cv_metrics) + np.std(cv_metrics), self.folds) ) print( "{metric} mean: {mean}, {metric} std: {std}, {metric} overall: {ov}".format( metric=self.metric, mean=metric_mean, std=metric_std, ov=metric_overall ) ) print("ALL FOLDS:", [round(x, self.folds) for x in cv_metrics]) return metric_mean, metric_std, metric_overall def find_optimal_params(self, model_name="xgboost"): if model_name == "xgboost": opt_params = BesXGboost.find_best_params(self) elif model_name == "lightgbm": pass elif model_name == "catboost": pass elif model_name == "logistic_regression": pass else: raise ValueError("There is No Such Model") return opt_params def get_single_model_test_prediction( self, model_name="xgboost", params=None, preds_path="" ): if preds_path == "": raise ValueError("Specify Path for Test Predictions") ids_test = ( self.df_test[[self.id_colname]] if self.id_colname is self.df_test.columns else self.df_test.reset_index()[["index"]] ) y_train = self.df_train[self.target_colname] df_train, df_test = self.fold_feature_engineering(self.df_train, self.df_test) model, pred = self.get_predictions( model_name, params, df_train, y_train, df_test ) ids_test[os.path.split(preds_path)[-1].split(".")[0]] = pred ids_test.to_csv(preds_path, index=False) return ids_test, model def get_stacked_model_test_prediction( self, model_name="logistic_regression", params=None, prev_level_test_fold="test_preds_level_1/", preds_path="", ): prev_level_train_fold = "oof" + prev_level_test_fold[4:] df_train = pd.DataFrame() for f in os.listdir(prev_level_train_fold): path = os.path.join(prev_level_train_fold, f) if df_train.shape[0] == 0: df_train = pd.read_csv(path) else: df_train = df_train.merge(pd.read_csv(path)) df_test = pd.DataFrame() for f in os.listdir(prev_level_test_fold): path = os.path.join(prev_level_test_fold, f) if df_test.shape[0] == 0: df_test = pd.read_csv(path) else: df_test = df_test.merge(pd.read_csv(path)) ids_test = ( self.df_test[[self.id_colname]] if self.id_colname is self.df_test.columns else self.df_test.reset_index()[["index"]] ) y_train = df_train[self.target_colname] df_train = df_train[ [ col for col in df_train.columns if col not in [self.target_colname, self.id_colname] ] ] df_test = df_test[ [ col for col in df_test.columns if col not in [self.target_colname, self.id_colname, "index"] ] ] model, pred = self.get_predictions( model_name, params, df_train, y_train, df_test ) if preds_path == "": raise ValueError("Specify Path for Test Predictions") ids_test[os.path.split(preds_path)[-1].split(".")[0]] = pred ids_test.to_csv(preds_path, index=False) return ids_test, model ================================================ FILE: classification/Kaggle Malware Prediction/models.py ================================================ from numba import jit # fast roc_auc computation: https://www.kaggle.com/c/microsoft-malware-prediction/discussion/76013 @jit def fast_auc(y_true, y_prob): y_true = np.asarray(y_true) y_true = y_true[np.argsort(y_prob)] nfalse = 0 auc = 0 n = len(y_true) for i in range(n): y_i = y_true[i] nfalse += 1 - y_i auc += y_i * nfalse auc /= nfalse * (n - nfalse) return auc def eval_auc(preds, dtrain): labels = dtrain.get_label() return "auc", fast_auc(labels, preds), True # idea from this kernel: https://www.kaggle.com/fabiendaniel/detecting-malwares-with-lgbm def predict_chunk(model, test): initial_idx = 0 chunk_size = 1000000 current_pred = np.zeros(len(test)) while initial_idx < test.shape[0]: final_idx = min(initial_idx + chunk_size, test.shape[0]) idx = range(initial_idx, final_idx) current_pred[idx] = model.predict( test.iloc[idx], num_iteration=model.best_iteration ) initial_idx = final_idx # predictions += current_pred / min(folds.n_splits, max_iter) return current_pred def train_model( X=train, X_test=test, y=y, params=None, folds=folds, model_type="lgb", plot_feature_importance=False, averaging="usual", make_oof=False, ): result_dict = {} if make_oof: oof = np.zeros(len(X)) prediction = np.zeros(len(X_test)) scores = [] feature_importance = pd.DataFrame() for fold_n, (train_index, valid_index) in enumerate(folds.split(X, y)): gc.collect() print("Fold", fold_n + 1, "started at", time.ctime()) X_train, X_valid = X.iloc[train_index], X.iloc[valid_index] y_train, y_valid = y.iloc[train_index], y.iloc[valid_index] if model_type == "lgb": train_data = lgb.Dataset( X_train, label=y_train, categorical_feature=cat_cols ) valid_data = lgb.Dataset( X_valid, label=y_valid, categorical_feature=cat_cols ) model = lgb.train( params, train_data, num_boost_round=1, valid_sets=[train_data, valid_data], verbose_eval=500, early_stopping_rounds=50, feval=eval_auc, ) del train_data, valid_data y_pred_valid = model.predict(X_valid, num_iteration=model.best_iteration) del X_valid gc.collect() # print('predicting on test') # y_pred = model.predict(X_test, num_iteration=model.best_iteration) y_pred = predict_chunk(model, X_test) # print('predicted') if model_type == "xgb": train_data = xgb.DMatrix(data=X_train, label=y_train) valid_data = xgb.DMatrix(data=X_valid, label=y_valid) watchlist = [(train_data, "train"), (valid_data, "valid_data")] model = xgb.train( dtrain=train_data, num_boost_round=20000, evals=watchlist, early_stopping_rounds=200, verbose_eval=500, params=params, ) y_pred_valid = model.predict( xgb.DMatrix(X_valid), ntree_limit=model.best_ntree_limit ) # y_pred = model.predict(xgb.DMatrix(X_test), ntree_limit=model.best_ntree_limit) y_pred = predict_chunk(model, xgb.DMatrix(X_test)) if model_type == "lcv": model = LogisticRegressionCV(scoring="roc_auc", cv=3) model.fit(X_train, y_train) y_pred_valid = model.predict(X_valid) # y_pred = model.predict(X_test) y_pred = predict_chunk(model, X_test) if model_type == "cat": model = CatBoostRegressor(iterations=20000, eval_metric="AUC", **params) model.fit( X_train, y_train, eval_set=(X_valid, y_valid), cat_features=[], use_best_model=True, verbose=False, ) y_pred_valid = model.predict(X_valid) # y_pred = model.predict(X_test) y_pred = predict_chunk(model, X_test) if make_oof: oof[valid_index] = y_pred_valid.reshape(-1) scores.append(fast_auc(y_valid, y_pred_valid)) print("Fold roc_auc:", roc_auc_score(y_valid, y_pred_valid)) print("") if averaging == "usual": prediction += y_pred elif averaging == "rank": prediction += pd.Series(y_pred).rank().values if model_type == "lgb": # feature importance fold_importance = pd.DataFrame() fold_importance["feature"] = X.columns fold_importance["importance"] = model.feature_importance() fold_importance["fold"] = fold_n + 1 feature_importance = pd.concat( [feature_importance, fold_importance], axis=0 ) prediction /= n_fold print( "CV mean score: {0:.4f}, std: {1:.4f}.".format(np.mean(scores), np.std(scores)) ) if model_type == "lgb": if plot_feature_importance: feature_importance["importance"] /= n_fold cols = ( feature_importance[["feature", "importance"]] .groupby("feature") .mean() .sort_values(by="importance", ascending=False)[:50] .index ) best_features = feature_importance.loc[ feature_importance.feature.isin(cols) ] logging.info("Top features") for f in best_features.sort_values(by="importance", ascending=False)[ "feature" ].values: logging.info(f) plt.figure(figsize=(16, 12)) sns.barplot( x="importance", y="feature", data=best_features.sort_values(by="importance", ascending=False), ) plt.title("LGB Features (avg over folds)") result_dict["feature_importance"] = feature_importance result_dict["prediction"] = prediction if make_oof: result_dict["oof"] = oof return result_dict ================================================ FILE: classification/Kaggle Malware Prediction/models_zoo.py ================================================ import pandas as pd import numpy as np import operator import xgboost as xgb import lightgbm as lgb from catboost import CatBoostClassifier, cv, Pool import seaborn as sns import matplotlib.pyplot as plt import math color = sns.color_palette() class BesXGboost: """ XGBoost model. https://github.com/dmlc/xgboost/blob/master/doc/parameter.md params = { 'silent': 1 if self.silent else 0, 'use_buffer': int(self.use_buffer), 'num_round': self.num_round, 'ntree_limit': self.ntree_limit, 'nthread': self.nthread, 'booster': self.booster, 'eta': self.eta, 'gamma': self.gamma, 'max_depth': self.max_depth, 'min_child_weight': self.min_child_weight, 'subsample': self.subsample, 'colsample_bytree': self.colsample_bytree, 'max_delta_step': self.max_delta_step, 'l': self.l, 'alpha': self.alpha, 'lambda_bias': self.lambda_bias, 'objective': self.objective, 'eval_metric': self.eval_metric, 'seed': self.seed, 'num_class': self.num_class, } xgb_params = { 'booster': 'gbtree', 'eta': .1, 'colsample_bytree': 0.8, 'subsample': 0.8, 'seed': 123, 'nthread': 3, 'max_depth': 6, 'min_child_weight': .1, 'objective': 'binary:logistic', 'eval_metric': 'auc', 'silent': 1 } """ def __init__( self, params, metric="auc", maximize=True, verbose=True, features=None, model=None, ): assert params["booster"] in ["gbtree", "gblinear"] assert params["objective"] in [ "reg:linear", "reg:logistic", "binary:logistic", "binary:logitraw", "multi:softmax", "multi:softprob", "rank:pairwise", ] assert params["eval_metric"] in [ None, "rmse", "mlogloss", "logloss", "error", "merror", "auc", "ndcg", "map", "ndcg@n", "map@n", ] self.params = params self.metric = metric self.maximize = maximize self.verbose = verbose self.features = features self.model = model def fit(self, X_train, y_train): self.features = X_train.columns dtrain = xgb.DMatrix(data=X_train, label=y_train) if self.verbose: bst = xgb.cv( self.params, dtrain, num_boost_round=1000, nfold=3, early_stopping_rounds=100, verbose_eval=50, ) else: bst = xgb.cv( self.params, dtrain, num_boost_round=1000, nfold=3, early_stopping_rounds=100, ) if self.maximize: best_rounds = int( np.argmax( bst["test-" + self.metric + "-mean"] - bst["test-" + self.metric + "-std"] ) * 1.5 ) else: best_rounds = int( np.argmin( bst["test-" + self.metric + "-mean"] + bst["test-" + self.metric + "-std"] ) * 1.5 ) if self.verbose: print("Best Iteration: {}".format(best_rounds)) self.model = xgb.train(self.params, dtrain, best_rounds) def predict(self, X_test): dtest = xgb.DMatrix(data=X_test) pred_prob = self.model.predict(dtest) return pred_prob def feature_importance(self): outfile = open("xgb.fmap", "w") i = 0 for feat in self.features: outfile.write("{0}\t{1}\tq\n".format(i, feat)) i = i + 1 outfile.close() importance = self.model.get_fscore(fmap="xgb.fmap") importance = sorted(importance.items(), key=operator.itemgetter(1)) imp = pd.DataFrame(importance, columns=["feature", "fscore"]) imp = imp.sort_values(["fscore"], ascending=False) # import xgbfir # xgbfir.saveXgbFI(model, feature_names=X_train.columns, OutputXlsxFile='irisFI.xlsx',TopK=300) return imp def _optimize_single_param(self): pass @staticmethod def find_best_params(kag): """ lambda [default=1] L2 regularization term on weights (analogous to Ridge regression) This used to handle the regularization part of XGBoost. Though many data scientists don’t use it often, it should be explored to reduce overfitting. alpha [default=0] L1 regularization term on weight (analogous to Lasso regression) Can be used in case of very high dimensionality so that the algorithm runs faster when implemented scale_pos_weight [default=1] A value greater than 0 should be used in case of high class imbalance as it helps in faster convergence. """ nthread = 3 lr = 0.3 bst = -math.inf if kag.maximize else math.inf seed = 123 params = { "booster": "gbtree", "eta": lr, "colsample_bytree": 0.8, "subsample": 0.8, "seed": seed, "nthread": nthread, "max_depth": 6, "min_child_weight": 1, "objective": "binary:logistic", "eval_metric": kag.metric, "lambda": 1, "alpha": 0, "gamma": 0, } for depth in [2, 4, 6, 8, 10]: for mcw in [1, 3, 5, 7, 9]: print(depth, mcw) params["max_depth"] = depth params["min_child_weight"] = mcw met = kag.run_single_model_validation( model_name="xgboost", params=params )[0] cond = met > bst if kag.maximize else met < bst if cond: bst = met depth_bst = depth mcw_bst = mcw print("Best Depth: {}. Best MCW: {}".format(depth_bst, mcw_bst)) print("Score:", bst) depth_bst_prev = depth_bst mcw_bst_prev = mcw_bst for depth in [depth_bst_prev - 1, depth_bst_prev, depth_bst_prev + 1]: for mcw in [mcw_bst_prev - 1, mcw_bst_prev, mcw_bst_prev + 1]: print(depth, mcw) params["max_depth"] = depth params["min_child_weight"] = mcw met = kag.run_single_model_validation( model_name="xgboost", params=params )[0] cond = met > bst if kag.maximize else met < bst if cond: bst = met depth_bst = depth mcw_bst = mcw print("Best Depth: {}. Best MCW: {}".format(depth_bst, mcw_bst)) print("Score:", bst) params["max_depth"] = depth_bst params["min_child_weight"] = mcw_bst colsample_bytree_bst = 0.8 subsample_bst = 0.8 for colsample_bytree in [0.4, 0.6, 0.8]: for subsample in [0.4, 0.6, 0.8]: print(colsample_bytree, subsample) params["colsample_bytree"] = colsample_bytree params["subsample"] = subsample met = kag.run_single_model_validation( model_name="xgboost", params=params )[0] cond = met > bst if kag.maximize else met < bst if cond: bst = met colsample_bytree_bst = colsample_bytree subsample_bst = subsample print( "Best Colsample: {}. Best Subsample: {}".format( colsample_bytree_bst, subsample_bst ) ) print("Score:", bst) colsample_bytree_bst_prev = colsample_bytree_bst subsample_bst_prev = subsample_bst for colsample_bytree in [ colsample_bytree_bst_prev - 0.1, colsample_bytree_bst_prev, colsample_bytree_bst_prev + 0.1, ]: for subsample in [ subsample_bst_prev - 0.1, subsample_bst_prev, subsample_bst_prev + 0.1, ]: print(colsample_bytree, subsample) params["colsample_bytree"] = colsample_bytree params["subsample"] = subsample met = kag.run_single_model_validation( model_name="xgboost", params=params )[0] cond = met > bst if kag.maximize else met < bst if cond: bst = met colsample_bytree_bst = colsample_bytree subsample_bst = subsample print( "Best Colsample: {}. Best Subsample: {}".format( colsample_bytree_bst, subsample_bst ) ) print("Score:", bst) params["colsample_bytree"] = colsample_bytree_bst params["subsample"] = subsample_bst # alpha_bst = 0 # lamb_bst = 1 # for alpha in [0, 0.1, 0.5, 1]: # for lamb in [0, 0.1, 0.5, 1]: # print(alpha, lamb) # params['alpha'] = alpha # params['lambda'] = lamb # # met = kag.run_single_model_validation(model_name='xgboost', params=params)[2] # cond = met > bst if kag.maximize else met < bst # # if cond: # bst = met # alpha_bst = alpha # lamb_bst = lamb # print('Best Alpha: {}. Best Lambda: {}'.format(alpha_bst, lamb_bst)) # print('Score:', bst) # params['alpha'] = alpha_bst # params['lambda'] = lamb_bst lamb_bst = 1 for lamb in [0, 0.1, 0.5, 1, 5, 10]: print(lamb) params["lambda"] = lamb met = kag.run_single_model_validation(model_name="xgboost", params=params)[ 0 ] cond = met > bst if kag.maximize else met < bst if cond: bst = met lamb_bst = lamb print("Best Lambda: {}".format(lamb_bst)) print("Score:", bst) params["lambda"] = lamb_bst gamma_bst = 0 for gamma in [0, 0.1, 0.5, 1, 10]: print(gamma) params["gamma"] = gamma met = kag.run_single_model_validation(model_name="xgboost", params=params)[ 0 ] cond = met > bst if kag.maximize else met < bst if cond: bst = met gamma_bst = gamma print("Best Gamma: {}".format(gamma_bst)) print("Score:", bst) params["gamma"] = gamma_bst print(params) print("Score:", bst) return params class BesLightGBM: """ lgb_params = { 'boosting_type': 'gbdt', 'objective': 'binary', 'metric': 'auc', 'num_leaves': 31, 'learning_rate': 0.05, 'feature_fraction': 0.9, 'bagging_fraction': 0.8, 'bagging_freq': 5, 'verbose': 0 } """ def __init__(self, params, metric="auc", maximize=True, verbose=True, model=None): self.params = params self.metric = metric self.maximize = maximize self.verbose = verbose self.model = model def fit(self, X_train, y_train): dtrain = lgb.Dataset(data=X_train, label=y_train) if self.verbose: bst = lgb.cv( self.params, dtrain, num_boost_round=10000, nfold=3, early_stopping_rounds=50, verbose_eval=50, ) else: bst = lgb.cv( self.params, dtrain, num_boost_round=10000, nfold=3, early_stopping_rounds=50, ) if self.maximize: best_rounds = int( np.argmax( np.array(bst[self.metric + "-mean"]) - np.array(bst[self.metric + "-stdv"]) ) * 1.5 ) else: best_rounds = int( np.argmin( np.array(bst[self.metric + "-mean"]) + np.array(bst[self.metric + "-stdv"]) ) * 1.5 ) if self.verbose: print("Best Iteration: {}".format(best_rounds)) self.model = lgb.train(self.params, dtrain, best_rounds) def predict(self, X_test): pred_prob = self.model.predict(X_test) return pred_prob def feature_importance(self): lgb.plot_importance(self.model, max_num_features=10) plt.show() return self.model.feature_importance() @staticmethod def find_best_params(kag): pass class BesCatBoost: """ catboost_params = { 'iterations': 500, 'depth': 3, 'learning_rate': 0.1, 'eval_metric': 'AUC', 'random_seed': 42, 'logging_level': 'Verbose', 'l2_leaf_reg': 15.0, 'bagging_temperature': 0.75, 'allow_writing_files': False, 'metric_period': 50 } """ def __init__(self, params, metric="AUC", maximize=True, verbose=True, model=None): self.params = params self.metric = metric self.maximize = maximize self.verbose = verbose self.model = model def fit(self, X_train, y_train): bst = cv(Pool(X_train, y_train), self.params) best_rounds = int(bst["test-{}-mean".format(self.metric)].idxmax() * 1.5) + 1 print("Best Iteration: {}".format(best_rounds)) self.params["iterations"] = best_rounds self.model = CatBoostClassifier(**self.params) self.model.fit(X_train, y_train) def predict(self, X_test): pred_prob = self.model.predict_proba(X_test)[:, -1] return pred_prob def feature_importance(self): pass @staticmethod def find_best_params(kag): pass ================================================ FILE: classification/Kaggle Malware Prediction/oof_preds_level_1/readme.md ================================================ ================================================ FILE: classification/Kaggle Malware Prediction/target_encoding.py ================================================ import pandas as pd import numpy as np from sklearn.model_selection import KFold class TargetEncoding(object): """ Mean Target Encoding. One of the best ways to encode high-cardinality categorical features """ def __init__(self, C=10): self.C = C def fit(self, data_train, data_test, total_test, feature, target): skf = KFold(n_splits=5, random_state=13, shuffle=True) if feature not in data_train.columns: print("Warning:", feature, " not in the train") return data_train, data_test, total_test data_list = [] for train_index, test_index in skf.split(data_train): enc_train = data_train.loc[train_index, [feature, target]].copy() enc_test = data_train.loc[test_index, [feature, target]].copy() global_mean = np.mean(enc_train[target]) groupby_feature = enc_train.groupby(feature) current_mean = groupby_feature[target].mean() current_size = groupby_feature.size() feat_df = ( (current_mean * current_size + global_mean * self.C) / (current_size + self.C) ).fillna(global_mean) values = pd.DataFrame( feat_df, columns=["target_encoding_{}".format(feature)], dtype=np.float64, ) data_list.append( enc_test.merge(values, how="left", left_on=feature, right_index=True)[ ["target_encoding_{}".format(feature)] ].fillna(global_mean) ) global_mean = np.mean(data_train[target]) groupby_feature = data_train.groupby([feature]) current_mean = groupby_feature[target].mean() current_size = groupby_feature.size() feat_df = ( (current_mean * current_size + global_mean * self.C) / (current_size + self.C) ).fillna(global_mean) values = pd.DataFrame( feat_df, columns=["target_encoding_{}".format(feature)], dtype=np.float64 ) data_train = data_train.join(pd.concat(data_list)) data_train.drop(feature, 1, inplace=True) data_test = data_test.merge( values, how="left", left_on=feature, right_index=True ) data_test["target_encoding_{}".format(feature)] = data_test[ "target_encoding_{}".format(feature) ].fillna(global_mean) data_test.drop(feature, 1, inplace=True) total_test = total_test.merge( values, how="left", left_on=feature, right_index=True ) total_test["target_encoding_{}".format(feature)] = total_test[ "target_encoding_{}".format(feature) ].fillna(global_mean) total_test.drop(feature, 1, inplace=True) return data_train, data_test, total_test ================================================ FILE: classification/Kaggle Malware Prediction/test_preds_level_1/readme.md ================================================ ================================================ FILE: classification/Kaggle Malware Prediction/test_preds_level_2/readme.md ================================================ ================================================ FILE: classification/Kaggle Petfinder/8th-place-solution-code.py ================================================ import cv2 import os import time import gc import glob import json import pprint import joblib import warnings import random import pandas as pd import numpy as np import seaborn as sns import scipy as sp import matplotlib.pyplot as plt import lightgbm as lgb import xgboost as xgb import tensorflow as tf from collections import Counter from functools import partial from math import sqrt from sklearn.metrics import cohen_kappa_score, mean_squared_error from sklearn.metrics import confusion_matrix as sk_cmatrix from sklearn.model_selection import StratifiedKFold from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.decomposition import ( SparsePCA, TruncatedSVD, LatentDirichletAllocation, NMF, ) from PIL import Image from joblib import Parallel, delayed from tqdm import tqdm from contextlib import contextmanager from pandas.io.json import json_normalize from keras.preprocessing.text import Tokenizer from keras.models import Model from keras.layers import ( GlobalAveragePooling2D, Input, Lambda, AveragePooling1D, CuDNNLSTM, CuDNNGRU, ) from keras.preprocessing.sequence import pad_sequences from keras.layers import ( Dense, Input, CuDNNLSTM, Embedding, Dropout, Activation, CuDNNGRU, Conv1D, ) from keras.layers import ( Bidirectional, GlobalMaxPool1D, GlobalMaxPooling2D, GlobalAveragePooling1D, GlobalAvgPool2D, GlobalMaxPool2D, ) from keras.layers import Input, Embedding, Dense, Conv2D, MaxPool2D, concatenate from keras.layers import ( Reshape, Flatten, Concatenate, Dropout, SpatialDropout1D, SpatialDropout2D, ) from keras.applications.densenet import preprocess_input, DenseNet121 from keras.optimizers import Adam from keras.models import Model from keras import backend as K from keras.engine.topology import Layer from keras import initializers, regularizers, constraints, optimizers, layers preload = False class PetFinderParser(object): def __init__(self, debug=False): self.debug = debug self.sentence_sep = " " # Does not have to be extracted because main DF already contains description self.extract_sentiment_text = False def open_metadata_file(self, filename): """ Load metadata file. """ with open(filename, "r") as f: metadata_file = json.load(f) return metadata_file def open_sentiment_file(self, filename): """ Load sentiment file. """ with open(filename, "r") as f: sentiment_file = json.load(f) return sentiment_file def open_image_file(self, filename): """ Load image file. """ image = np.asarray(Image.open(filename)) return image def parse_sentiment_file(self, file): """ Parse sentiment file. Output DF with sentiment features. """ file_sentiment = file["documentSentiment"] file_entities = [x["name"] for x in file["entities"]] file_entities = self.sentence_sep.join(file_entities) # file_entities_new =[x['type'] for x in file['entities']] # file_entities_new = self.sentence_sep.join(file_entities_new) if self.extract_sentiment_text: file_sentences_text = [x["text"]["content"] for x in file["sentences"]] file_sentences_text = self.sentence_sep.join(file_sentences_text) file_sentences_sentiment = [x["sentiment"] for x in file["sentences"]] file_sentences_sentiment = pd.DataFrame.from_dict( file_sentences_sentiment, orient="columns" ).sum() file_sentences_sentiment = file_sentences_sentiment.add_prefix( "document_" ).to_dict() file_sentiment.update(file_sentences_sentiment) df_sentiment = pd.DataFrame.from_dict(file_sentiment, orient="index").T if self.extract_sentiment_text: df_sentiment["text"] = file_sentences_text df_sentiment["entities"] = file_entities # df_sentiment['entities_type'] = file_entities_new df_sentiment = df_sentiment.add_prefix("sentiment_") return df_sentiment def parse_metadata_file(self, file): """ Parse metadata file. Output DF with metadata features. """ file_keys = list(file.keys()) if "labelAnnotations" in file_keys: file_annots = file["labelAnnotations"][: int(len(file["labelAnnotations"]))] file_top_score = np.asarray([x["score"] for x in file_annots]).mean() file_top_desc = [x["description"] for x in file_annots] else: file_top_score = np.nan file_top_desc = [""] file_colors = file["imagePropertiesAnnotation"]["dominantColors"]["colors"] file_crops = file["cropHintsAnnotation"]["cropHints"] file_color_score = np.asarray([x["score"] for x in file_colors]).mean() file_color_pixelfrac = np.asarray( [x["pixelFraction"] for x in file_colors] ).mean() file_crop_conf = np.asarray([x["confidence"] for x in file_crops]).mean() if "importanceFraction" in file_crops[0].keys(): file_crop_importance = np.asarray( [x["importanceFraction"] for x in file_crops] ).mean() else: file_crop_importance = np.nan df_metadata = { "annots_score": file_top_score, "color_score": file_color_score, "color_pixelfrac": file_color_pixelfrac, "crop_conf": file_crop_conf, "crop_importance": file_crop_importance, "annots_top_desc": self.sentence_sep.join(file_top_desc), } df_metadata = pd.DataFrame.from_dict(df_metadata, orient="index").T df_metadata = df_metadata.add_prefix("metadata_") return df_metadata def confusion_matrix(rater_a, rater_b, min_rating=None, max_rating=None): """ Returns the confusion matrix between rater's ratings """ assert len(rater_a) == len(rater_b) if min_rating is None: min_rating = min(rater_a + rater_b) if max_rating is None: max_rating = max(rater_a + rater_b) num_ratings = int(max_rating - min_rating + 1) conf_mat = [[0 for i in range(num_ratings)] for j in range(num_ratings)] for a, b in zip(rater_a, rater_b): conf_mat[a - min_rating][b - min_rating] += 1 return conf_mat def histogram(ratings, min_rating=None, max_rating=None): """ Returns the counts of each type of rating that a rater made """ if min_rating is None: min_rating = min(ratings) if max_rating is None: max_rating = max(ratings) num_ratings = int(max_rating - min_rating + 1) hist_ratings = [0 for x in range(num_ratings)] for r in ratings: hist_ratings[r - min_rating] += 1 return hist_ratings def quadratic_weighted_kappa(y, y_pred): rater_a = y rater_b = y_pred min_rating = None max_rating = None rater_a = np.array(rater_a, dtype=int) rater_b = np.array(rater_b, dtype=int) assert len(rater_a) == len(rater_b) if min_rating is None: min_rating = min(min(rater_a), min(rater_b)) if max_rating is None: max_rating = max(max(rater_a), max(rater_b)) conf_mat = confusion_matrix(rater_a, rater_b, min_rating, max_rating) num_ratings = len(conf_mat) num_scored_items = float(len(rater_a)) hist_rater_a = histogram(rater_a, min_rating, max_rating) hist_rater_b = histogram(rater_b, min_rating, max_rating) numerator = 0.0 denominator = 0.0 for i in range(num_ratings): for j in range(num_ratings): expected_count = hist_rater_a[i] * hist_rater_b[j] / num_scored_items d = pow(i - j, 2.0) / pow(num_ratings - 1, 2.0) numerator += d * conf_mat[i][j] / num_scored_items denominator += d * expected_count / num_scored_items return 1.0 - numerator / denominator class OptimizedRounder(object): def __init__(self): self.coef_ = 0 def _kappa_loss(self, coef, X, y): X_p = np.copy(X) for i, pred in enumerate(X_p): if pred < coef[0]: X_p[i] = 0 elif pred >= coef[0] and pred < coef[1]: X_p[i] = 1 elif pred >= coef[1] and pred < coef[2]: X_p[i] = 2 elif pred >= coef[2] and pred < coef[3]: X_p[i] = 3 else: X_p[i] = 4 ll = quadratic_weighted_kappa(y, X_p) return -ll def fit(self, X, y): loss_partial = partial(self._kappa_loss, X=X, y=y) initial_coef = [0.5, 1.5, 2.5, 3.5] self.coef_ = sp.optimize.minimize( loss_partial, initial_coef, method="nelder-mead" ) def predict(self, X, coef): X_p = np.copy(X) for i, pred in enumerate(X_p): if pred < coef[0]: X_p[i] = 0 elif pred >= coef[0] and pred < coef[1]: X_p[i] = 1 elif pred >= coef[1] and pred < coef[2]: X_p[i] = 2 elif pred >= coef[2] and pred < coef[3]: X_p[i] = 3 else: X_p[i] = 4 return X_p def coefficients(self): return self.coef_["x"] def rmse(actual, predicted): return sqrt(mean_squared_error(actual, predicted)) # Helper function for parallel data processing: def extract_additional_features(pet_id, mode="train"): pet_parser = PetFinderParser() sentiment_filename = "../input/petfinder-adoption-prediction/{}_sentiment/{}.json".format( mode, pet_id ) try: sentiment_file = pet_parser.open_sentiment_file(sentiment_filename) df_sentiment = pet_parser.parse_sentiment_file(sentiment_file) df_sentiment["PetID"] = pet_id except FileNotFoundError: df_sentiment = [] dfs_metadata = [] metadata_filenames = sorted( glob.glob( "../input/petfinder-adoption-prediction/{}_metadata/{}*.json".format( mode, pet_id ) ) ) if len(metadata_filenames) > 0: for f in metadata_filenames: metadata_file = pet_parser.open_metadata_file(f) df_metadata = pet_parser.parse_metadata_file(metadata_file) df_metadata["PetID"] = pet_id dfs_metadata.append(df_metadata) dfs_metadata = pd.concat(dfs_metadata, ignore_index=True, sort=False) dfs = [df_sentiment, dfs_metadata] return dfs def set_seed(seed=0): random.seed(seed) os.environ["PYTHONHASHSEED"] = str(seed) np.random.seed(seed) tf.set_random_seed(seed) # Helper Functions # --------------------- @contextmanager def faith(title): start_time = time.time() yield print(">> {} - done in {:.0f}s".format(title, time.time() - start_time)) def reduce_mem_usage(df, verbose=True): numerics = ["uint8", "int16", "int32", "int64", "float16", "float32", "float64"] start_mem = df.memory_usage(deep=True).sum() / 1024 ** 2 for col in df.columns: col_type = df[col].dtypes if col_type in numerics: c_min = df[col].min() c_max = df[col].max() if str(col_type)[:3] == "int": if c_min > np.iinfo(np.int8).min and c_max < np.iinfo(np.int8).max: df[col] = df[col].astype(np.int8) elif c_min > np.iinfo(np.int16).min and c_max < np.iinfo(np.int16).max: df[col] = df[col].astype(np.int16) elif c_min > np.iinfo(np.int32).min and c_max < np.iinfo(np.int32).max: df[col] = df[col].astype(np.int32) elif c_min > np.iinfo(np.int64).min and c_max < np.iinfo(np.int64).max: df[col] = df[col].astype(np.int64) else: if ( c_min > np.finfo(np.float16).min and c_max < np.finfo(np.float16).max ): df[col] = df[col].astype(np.float16) elif ( c_min > np.finfo(np.float32).min and c_max < np.finfo(np.float32).max ): df[col] = df[col].astype(np.float32) else: df[col] = df[col].astype(np.float64) end_mem = df.memory_usage(deep=True).sum() / 1024 ** 2 if verbose: print( "Mem. usage decreased to {:5.2f} Mb ({:.1f}% reduction)".format( end_mem, 100 * (start_mem - end_mem) / start_mem ) ) return df def clean_name(x): x = str(x) no_names = [ "No Name Yet", "Nameless", "no_Name_Yet", "No Name Yet God Bless", "-no Name-", "[No Name]", "(No Name)", "No Names", "Not Yet Named", ] for n in no_names: x.replace(n, "No Name") return x def relative_age(cols): pet_type = cols[0] age = cols[1] if pet_type == 1: relage = age / 144 # Dog Avergae Life Span - 12 years else: relage = age / 180 # Cat Average Span - 15 years return relage def VerifibalePhotoAmy(number): if number > 1: vfp = 1 else: vfp = 0 return vfp def seo_value(cols): photos = cols[0] videos = cols[1] seo = 0.7 * videos + 0.3 * photos return seo def genuine_name(cols): name = cols[0] quantity = cols[1] try: is_gen = int(len(name.split()) == 1) except: is_gen = np.nan if int(quantity) > 1: is_gen = 1 return is_gen def rankbyG(alldata, group): rank_telemetry = pd.DataFrame() for unit in alldata[group].unique(): tf = alldata[alldata[group] == unit][["PetID", "InstaFeature", group]] col_name = "Insta" + str(group).title() + "Rank" tf[col_name] = tf["InstaFeature"].rank(method="max") rank_telemetry = pd.concat([rank_telemetry, tf[["PetID", col_name]]]) del tf alldata = pd.merge(alldata, rank_telemetry, on=["PetID"], how="left") return alldata def get_new_columns(name, aggs): return [name + "_" + k + "_" + agg for k in aggs.keys() for agg in aggs[k]] def agg_features(df, groupby, agg, prefix): agg_df = df.groupby(groupby).agg(agg) agg_df.columns = get_new_columns(prefix, agg) return agg_df def bounding_features( df, meta_path="../input/petfinder-adoption-prediction/train_metadata/" ): df_id = df["PetID"] vertex_xs = [] vertex_ys = [] bounding_confidences = [] bounding_importance_fracs = [] dominant_blues = [] dominant_greens = [] dominant_reds = [] dominant_pixel_fracs = [] dominant_scores = [] label_descriptions = [] label_scores = [] nf_count = 0 nl_count = 0 for pet in df_id: try: with open(str(meta_path) + pet + "-1.json", "r") as f: data = json.load(f) vertex_x = data["cropHintsAnnotation"]["cropHints"][0]["boundingPoly"][ "vertices" ][2]["x"] vertex_xs.append(vertex_x) vertex_y = data["cropHintsAnnotation"]["cropHints"][0]["boundingPoly"][ "vertices" ][2]["y"] vertex_ys.append(vertex_y) bounding_confidence = data["cropHintsAnnotation"]["cropHints"][0][ "confidence" ] bounding_confidences.append(bounding_confidence) bounding_importance_frac = data["cropHintsAnnotation"]["cropHints"][0].get( "importanceFraction", -1 ) bounding_importance_fracs.append(bounding_importance_frac) dominant_blue = data["imagePropertiesAnnotation"]["dominantColors"][ "colors" ][0]["color"]["blue"] dominant_blues.append(dominant_blue) dominant_green = data["imagePropertiesAnnotation"]["dominantColors"][ "colors" ][0]["color"]["green"] dominant_greens.append(dominant_green) dominant_red = data["imagePropertiesAnnotation"]["dominantColors"][ "colors" ][0]["color"]["red"] dominant_reds.append(dominant_red) dominant_pixel_frac = data["imagePropertiesAnnotation"]["dominantColors"][ "colors" ][0]["pixelFraction"] dominant_pixel_fracs.append(dominant_pixel_frac) dominant_score = data["imagePropertiesAnnotation"]["dominantColors"][ "colors" ][0]["score"] dominant_scores.append(dominant_score) if data.get("labelAnnotations"): label_description = data["labelAnnotations"][0]["description"] label_descriptions.append(label_description) label_score = data["labelAnnotations"][0]["score"] label_scores.append(label_score) else: nl_count += 1 label_descriptions.append("nothing") label_scores.append(-1) except FileNotFoundError: nf_count += 1 vertex_xs.append(-1) vertex_ys.append(-1) bounding_confidences.append(-1) bounding_importance_fracs.append(-1) dominant_blues.append(-1) dominant_greens.append(-1) dominant_reds.append(-1) dominant_pixel_fracs.append(-1) dominant_scores.append(-1) label_descriptions.append("nothing") label_scores.append(-1) df.loc[:, "vertex_x"] = vertex_xs df.loc[:, "vertex_y"] = vertex_ys df.loc[:, "bounding_confidence"] = bounding_confidences df.loc[:, "bounding_importance"] = bounding_importance_fracs df.loc[:, "dominant_blue"] = dominant_blues df.loc[:, "dominant_green"] = dominant_greens df.loc[:, "dominant_red"] = dominant_reds df.loc[:, "dominant_pixel_frac"] = dominant_pixel_fracs df.loc[:, "dominant_score"] = dominant_scores # df.loc[:, 'label_description'] = label_descriptions df.loc[:, "label_score"] = label_scores return df def open_breeds_info_file(filename): with open(filename, "r") as f: breedsdata_file = json.load(f) return breedsdata_file def parse_sentiment_file(file): df = pd.DataFrame() breeds_file = open_breeds_info_file(file) cat_data, dog_data = breeds_file["cat_breeds"], breeds_file["dog_breeds"] ### Cats for idx, cat_breed in enumerate((cat_data.keys())): temp = pd.DataFrame.from_dict( json_normalize(cat_data[cat_breed]), orient="columns" ) temp.insert(0, "Breed", cat_breed) for col in temp.columns: if col not in ["Breed"]: df.loc[idx, f"cat_{col}"] = temp[col].values[0] else: df.loc[idx, f"{col}"] = temp[col].values[0] return df def resize_to_square(im, img_size): old_size = im.shape[:2] # old_size is in (height, width) format ratio = float(img_size) / max(old_size) new_size = tuple([int(x * ratio) for x in old_size]) # new_size should be in (width, height) format im = cv2.resize(im, (new_size[1], new_size[0])) delta_w = img_size - new_size[1] delta_h = img_size - new_size[0] top, bottom = delta_h // 2, delta_h - (delta_h // 2) left, right = delta_w // 2, delta_w - (delta_w // 2) color = [0, 0, 0] new_im = cv2.copyMakeBorder( im, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color ) return new_im def load_image(path): image = cv2.imread(path).astype(np.float32) new_image = resize_to_square(image) new_image = preprocess_input(new_image) return new_image def load_image2(path, image_size): image = cv2.imread(path).astype(np.float32) new_image = resize_to_square(image, image_size) new_image = preprocess_input(new_image) return new_image def getSize(filename): st = os.stat(filename) return st.st_size def getDimensions(filename): img_size = Image.open(filename).size return img_size def meta_nlp_feats(df, col): df[col] = df[col].fillna("None") df["length"] = df[col].apply(lambda x: len(x)) df["capitals"] = df[col].apply( lambda comment: sum(1 for c in comment if c.isupper()) ) df["caps_vs_length"] = df.apply( lambda row: float(row["capitals"]) / float(row["length"]), axis=1 ) df["num_exclamation_marks"] = df[col].apply(lambda comment: comment.count("!")) df["num_question_marks"] = df[col].apply(lambda comment: comment.count("?")) df["num_punctuation"] = df[col].apply( lambda comment: sum(comment.count(w) for w in ".,;:") ) df["num_symbols"] = df[col].apply( lambda comment: sum(comment.count(w) for w in "*&$%") ) df["num_words"] = df[col].apply(lambda comment: len(comment.split())) df["num_unique_words"] = df[col].apply( lambda comment: len(set(w for w in comment.split())) ) df["words_vs_unique"] = df["num_unique_words"] / df["num_words"] df["num_smilies"] = df[col].apply( lambda comment: sum(comment.count(w) for w in (":-)", ":)", ";-)", ";)")) ) df["num_sad"] = df[col].apply( lambda comment: sum(comment.count(w) for w in (":-<", ":()", ";-()", ";(")) ) return df # ============================== PROCESS IN ORDER =========================== def load_tabular_data(): train = pd.read_csv("../input/petfinder-adoption-prediction/train/train.csv") test = pd.read_csv("../input/petfinder-adoption-prediction/test/test.csv") label_metadata = {} labels_breed = pd.read_csv( "../input/petfinder-adoption-prediction/breed_labels.csv" ) labels_color = pd.read_csv( "../input/petfinder-adoption-prediction/color_labels.csv" ) labels_state = pd.read_csv( "../input/petfinder-adoption-prediction/state_labels.csv" ) # print("Mapping Breed Labels...") # breed_label_map = {} # for idx, row in (enumerate(labels_breed[['BreedID', 'BreedName']].values)): # breed_label_map[row[1]] = int(row[0]) # temp = parse_sentiment_file('../input/cat-and-dog-breeds-parameters/rating.json') # temp['Breed'] = temp['Breed'].map(breed_label_map) # train = train.merge(temp, how='left', left_on='Breed1', right_on='Breed') # train[temp.columns.tolist()[1:]] = train[temp.columns.tolist()[1:]].fillna(2) # train.drop('Breed', axis=1, inplace=True) # test = test.merge(temp, how='left', left_on='Breed1', right_on='Breed') # test[temp.columns.tolist()[1:]] = test[temp.columns.tolist()[1:]].fillna(2) # test.drop('Breed', axis=1, inplace=True) return train, test, labels_state, labels_breed, labels_color def load_image_data(): train_image_files = sorted( glob.glob("../input/petfinder-adoption-prediction/train_images/*.jpg") ) test_image_files = sorted( glob.glob("../input/petfinder-adoption-prediction/test_images/*.jpg") ) train_df_imgs = pd.DataFrame(train_image_files) train_df_imgs.columns = ["image_filename"] train_imgs_pets = train_df_imgs["image_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) train_df_imgs = train_df_imgs.assign(PetID=train_imgs_pets) test_df_imgs = pd.DataFrame(test_image_files) test_df_imgs.columns = ["image_filename"] test_imgs_pets = test_df_imgs["image_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) test_df_imgs = test_df_imgs.assign(PetID=test_imgs_pets) return train_df_imgs, test_df_imgs def load_metadata(): train_metadata_files = sorted( glob.glob("../input/petfinder-adoption-prediction/train_metadata/*.json") ) test_metadata_files = sorted( glob.glob("../input/petfinder-adoption-prediction/test_metadata/*.json") ) train_df_metadata = pd.DataFrame(train_metadata_files) train_df_metadata.columns = ["metadata_filename"] train_metadata_pets = train_df_metadata["metadata_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) train_df_metadata = train_df_metadata.assign(PetID=train_metadata_pets) test_df_metadata = pd.DataFrame(test_metadata_files) test_df_metadata.columns = ["metadata_filename"] test_metadata_pets = test_df_metadata["metadata_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) test_df_metadata = test_df_metadata.assign(PetID=test_metadata_pets) return train_df_metadata, test_df_metadata def load_sentiment_data(): train_sentiment_files = sorted( glob.glob("../input/petfinder-adoption-prediction/train_sentiment/*.json") ) test_sentiment_files = sorted( glob.glob("../input/petfinder-adoption-prediction/test_sentiment/*.json") ) train_df_sentiment = pd.DataFrame(train_sentiment_files) train_df_sentiment.columns = ["sentiment_filename"] train_sentiment_pets = train_df_sentiment["sentiment_filename"].apply( lambda x: x.split("/")[-1].split(".")[0] ) train_df_sentiment = train_df_sentiment.assign(PetID=train_sentiment_pets) test_df_sentiment = pd.DataFrame(test_sentiment_files) test_df_sentiment.columns = ["sentiment_filename"] test_sentiment_pets = test_df_sentiment["sentiment_filename"].apply( lambda x: x.split("/")[-1].split(".")[0] ) test_df_sentiment = test_df_sentiment.assign(PetID=test_sentiment_pets) return train_df_sentiment, test_df_sentiment def build_model( shape=(256, 256, 3), weights_path="../input/densenet-keras/DenseNet-BC-121-32-no-top.h5", ): inp = Input(shape) backbone = DenseNet121(input_tensor=inp, weights=weights_path, include_top=False) x = backbone.output x = GlobalAveragePooling2D()(x) x = Lambda(lambda x: K.expand_dims(x, axis=-1))(x) x = AveragePooling1D(4)(x) out = Lambda(lambda x: x[:, :, 0])(x) model = Model(inp, out) return model def train_model(model, train, test, nn_params={"batch_size": 64, "img_size": 256}): batch_size = nn_params["batch_size"] img_size = nn_params["img_size"] pet_ids = train["PetID"].values train_df_ids = train[["PetID"]] # Train images features = {} train_image = glob.glob("../input/petfinder-adoption-prediction/train_images/*.jpg") n_batches = len(train_image) // batch_size + (len(train_image) % batch_size != 0) for b in range(n_batches): start = b * batch_size end = (b + 1) * batch_size batch_pets = train_image[start:end] batch_images = np.zeros((len(batch_pets), img_size, img_size, 3)) for i, pet_id in enumerate(batch_pets): try: batch_images[i] = load_image(pet_id) except: pass batch_preds = model.predict(batch_images) for i, pet_id in enumerate(batch_pets): features[pet_id] = batch_preds[i] train_feats = pd.DataFrame.from_dict(features, orient="index") train_feats.columns = ["pic_" + str(i) for i in range(train_feats.shape[1])] train_feats = train_feats.reset_index() train_feats["PetID"] = train_feats["index"].apply( lambda x: x.split("/")[-1].split("-")[0] ) train_feats = train_feats.drop("index", axis=1) train_feats = train_feats.groupby("PetID").agg("mean") train_feats = train_feats.reset_index() # Test images features = {} test_image = glob.glob("../input/petfinder-adoption-prediction/test_images/*.jpg") n_batches = len(test_image) // batch_size + (len(test_image) % batch_size != 0) for b in range(n_batches): start = b * batch_size end = (b + 1) * batch_size batch_pets = test_image[start:end] batch_images = np.zeros((len(batch_pets), img_size, img_size, 3)) for i, pet_id in enumerate(batch_pets): try: batch_images[i] = load_image(pet_id) except: pass batch_preds = model.predict(batch_images) for i, pet_id in enumerate(batch_pets): features[pet_id] = batch_preds[i] test_feats = pd.DataFrame.from_dict(features, orient="index") test_feats.columns = ["pic_" + str(i) for i in range(test_feats.shape[1])] test_feats = test_feats.reset_index() test_feats["PetID"] = test_feats["index"].apply( lambda x: x.split("/")[-1].split("-")[0] ) test_feats = test_feats.drop("index", axis=1) test_feats = test_feats.groupby("PetID").agg("mean") test_feats = test_feats.reset_index() pretrained_feats = pd.concat([train_feats, test_feats], axis=0) return pretrained_feats def image_feature(model, train, test, nn_params={"batch_size": 64, "img_size": 256}): if not preload: batch_size = nn_params["batch_size"] img_size = nn_params["img_size"] train_df_ids = train[["PetID"]] # Train images features = {} train_image = glob.glob( "../input/petfinder-adoption-prediction/train_images/*.jpg" ) n_batches = len(train_image) // batch_size + 1 for b in range(n_batches): start = b * batch_size end = (b + 1) * batch_size batch_pets = train_image[start:end] batch_images = np.zeros((len(batch_pets), img_size, img_size, 3)) for i, pet_id in enumerate(batch_pets): try: batch_images[i] = load_image2(pet_id, img_size) except: print(pet_id) pass batch_preds = model.predict(batch_images) for i, pet_id in enumerate(batch_pets): features[pet_id] = batch_preds[i] train_feats = pd.DataFrame.from_dict(features, orient="index") train_feats.columns = ["pic_" + str(i) for i in range(train_feats.shape[1])] train_feats = train_feats.reset_index() train_feats["PetID"] = train_feats["index"].apply( lambda x: x.split("/")[-1].split("-")[0] ) train_feats = train_feats.drop("index", axis=1) train_feats = train_feats.groupby("PetID").agg("mean") train_feats = train_feats.reset_index() # Test images features = {} test_image = glob.glob( "../input/petfinder-adoption-prediction/test_images/*.jpg" ) n_batches = len(test_image) // batch_size + 1 for b in range(n_batches): start = b * batch_size end = (b + 1) * batch_size batch_pets = test_image[start:end] batch_images = np.zeros((len(batch_pets), img_size, img_size, 3)) for i, pet_id in enumerate(batch_pets): try: batch_images[i] = load_image2(pet_id, img_size) except: print(pet_id) pass batch_preds = model.predict(batch_images) for i, pet_id in enumerate(batch_pets): features[pet_id] = batch_preds[i] test_feats = pd.DataFrame.from_dict(features, orient="index") test_feats.columns = ["pic_" + str(i) for i in range(test_feats.shape[1])] test_feats = test_feats.reset_index() test_feats["PetID"] = test_feats["index"].apply( lambda x: x.split("/")[-1].split("-")[0] ) test_feats = test_feats.drop("index", axis=1) test_feats = test_feats.groupby("PetID").agg("mean") test_feats = test_feats.reset_index() pretrained_feats = pd.concat([train_feats, test_feats], axis=0) else: train_feats = pd.read_csv("./processed_data/train_img.csv") test_feats = pd.read_csv("./processed_data/test_img.csv") pretrained_feats = pd.concat([train_feats, test_feats], axis=0) return pretrained_feats def basic_features(train, test): alldata = pd.concat([train, test], sort=False) print(train.shape, test.shape, alldata.shape) ######################################################################################################### # Breed create columns alldata["weeks"] = alldata["Age"] * 31 // 7 alldata["L_Breed1_Siamese"] = (alldata["Breed1"] == 292).astype(int) alldata["L_Breed1_Persian"] = (alldata["Breed1"] == 285).astype(int) alldata["L_Breed1_Labrador_Retriever"] = (alldata["Breed1"] == 141).astype(int) alldata["L_Breed1_Terrier"] = (alldata["Breed1"] == 218).astype(int) alldata["L_Breed1_Golden_Retriever "] = (alldata["Breed1"] == 109).astype(int) alldata["shorthair_hairless_domestic_hair"] = 0 alldata.loc[ alldata["Breed1"].isin( [ 9, 104, 106, 236, 237, 238, 243, 244, 251, 255, 264, 265, 266, 268, 282, 283, 298, ] ) == True, "shorthair_hairless_domestic_hair", ] = 1 alldata["#Feature_avg_age_breed1_fee"] = ( alldata[["Age", "Breed1", "Fee"]] .groupby(["Age", "Breed1"])["Fee"] .transform("mean") ) alldata["#Feature_avg_age_breed2_fee"] = ( alldata[["Age", "Breed2", "Fee"]] .groupby(["Age", "Breed2"])["Fee"] .transform("mean") ) alldata["#Feature_age_breed1_maturity_sz"] = ( alldata[["Age", "Breed1", "MaturitySize"]] .groupby(["Age", "Breed1"])["MaturitySize"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_breed2_maturity_sz"] = ( alldata[["Age", "Breed2", "MaturitySize"]] .groupby(["Age", "Breed2"])["MaturitySize"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_breed1_fur"] = ( alldata[["Age", "Breed1", "FurLength"]] .groupby(["Age", "Breed1"])["FurLength"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_breed2_fur"] = ( alldata[["Age", "Breed2", "FurLength"]] .groupby(["Age", "Breed2"])["FurLength"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_breed1_fee"] = ( alldata[["Age", "Breed1", "Fee"]] .groupby(["Age", "Breed1"])["Fee"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_breed2_fee"] = ( alldata[["Age", "Breed2", "Fee"]] .groupby(["Age", "Breed2"])["Fee"] .transform("count") / alldata.shape[0] ) alldata["#Feature_state_breed1_age_freq"] = ( alldata[["State", "Breed1", "Age"]] .groupby(["State", "Breed1"])["Age"] .transform("mean") ) alldata["#Feature_state_breed1_age_fee_freq"] = ( alldata[["State", "Breed1", "Age", "Fee"]] .groupby(["State", "Breed1", "Age"])["Fee"] .transform("mean") ) alldata["#Feature_state_breed2_age_freq"] = ( alldata[["State", "Breed2", "Age"]] .groupby(["State", "Breed2"])["Age"] .transform("mean") ) alldata["#Feature_state_breed2_age_fee_freq"] = ( alldata[["State", "Breed2", "Age", "Fee"]] .groupby(["State", "Breed2", "Age"])["Fee"] .transform("mean") ) alldata["#Feature_avg_type_age_breed1_fee"] = ( alldata[["Type", "Age", "Breed1", "Fee"]] .groupby(["Type", "Age", "Breed1"])["Fee"] .transform("mean") ) alldata["#Feature_avg_type_age_breed2_fee"] = ( alldata[["Type", "Age", "Breed2", "Fee"]] .groupby(["Type", "Age", "Breed2"])["Fee"] .transform("mean") ) alldata["#Feature_age_type_breed1_maturity_sz"] = ( alldata[["Type", "Age", "Breed1", "MaturitySize"]] .groupby(["Type", "Age", "Breed1"])["MaturitySize"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_type_breed2_maturity_sz"] = ( alldata[["Type", "Age", "Breed2", "MaturitySize"]] .groupby(["Type", "Age", "Breed2"])["MaturitySize"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_type_breed1_fur"] = ( alldata[["Type", "Age", "Breed1", "FurLength"]] .groupby(["Type", "Age", "Breed1"])["FurLength"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_type_breed2_fur"] = ( alldata[["Type", "Age", "Breed2", "FurLength"]] .groupby(["Type", "Age", "Breed2"])["FurLength"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_type_breed1_fee"] = ( alldata[["Type", "Age", "Breed1", "Fee"]] .groupby(["Type", "Age", "Breed1"])["Fee"] .transform("count") / alldata.shape[0] ) alldata["#Feature_age_type_breed2_fee"] = ( alldata[["Type", "Age", "Breed2", "Fee"]] .groupby(["Type", "Age", "Breed2"])["Fee"] .transform("count") / alldata.shape[0] ) alldata["#Feature_state_type_breed1_age_freq"] = ( alldata[["Type", "State", "Breed1", "Age"]] .groupby(["Type", "State", "Breed1"])["Age"] .transform("mean") ) alldata["#Feature_state_type_breed1_age_fee_freq"] = ( alldata[["Type", "State", "Breed1", "Age", "Fee"]] .groupby(["Type", "State", "Breed1", "Age"])["Fee"] .transform("mean") ) alldata["#Feature_state_type_breed2_age_freq"] = ( alldata[["Type", "State", "Breed2", "Age"]] .groupby(["Type", "State", "Breed2"])["Age"] .transform("mean") ) alldata["#Feature_state_type_breed2_age_fee_freq"] = ( alldata[["Type", "State", "Breed2", "Age", "Fee"]] .groupby(["Type", "State", "Breed2", "Age"])["Fee"] .transform("mean") ) ########################################################################################################### alldata["RelAge"] = alldata[["Type", "Age"]].apply(relative_age, axis=1) alldata["IsNameGenuine"] = alldata[["Name", "Quantity"]].apply(genuine_name, axis=1) alldata["InstaFeature"] = alldata[["PhotoAmt", "VideoAmt"]].apply(seo_value, axis=1) alldata["ShowsMore"] = alldata["PhotoAmt"].apply(VerifibalePhotoAmy) alldata["Vaccinated_Deworked_Mutation"] = ( alldata["Vaccinated"].apply(str) + "_" + alldata["Dewormed"].apply(str) ) alldata["Vaccinated_Deworked_Mutation"] = ( alldata["Vaccinated"].apply(str) + "_" + alldata["Dewormed"].apply(str) ) alldata = pd.get_dummies( alldata, columns=["Vaccinated_Deworked_Mutation"], prefix="Vaccinated_Dewormed" ) alldata["GlobalInstaRank"] = alldata["InstaFeature"].rank(method="max") print(">> Ranking Features By State") alldata = rankbyG(alldata, "State") print(">> Ranking Features By Animal") alldata = rankbyG(alldata, "Type") print(">> Ranking Features By Breed1") alldata = rankbyG(alldata, "Breed1") print(">> Ranking Features By Gender") alldata = rankbyG(alldata, "Gender") top_dogs = [179, 205, 195, 178, 206, 109, 189, 103] top_cats = [276, 268, 285, 252, 243, 251, 288, 247, 280, 290] alldata["#Feature_SecondaryColors"] = alldata["Color2"] + alldata["Color3"] alldata["#Feature_MonoColor"] = np.where(alldata["#Feature_SecondaryColors"], 1, 0) alldata["top_breeds"] = 0 alldata.loc[alldata["Breed1"].isin(top_dogs + top_cats) == True, "top_breeds"] = 1 alldata["top_breed_free"] = 0 alldata.loc[ alldata[(alldata["Fee"] == 0) & (alldata["top_breeds"] == 1)].index, "top_breed_free", ] = 1 alldata["free_pet"] = 0 alldata.loc[alldata[alldata["Fee"] == 0].index, "free_pet"] = 1 alldata["free_pet_age_1"] = 0 alldata.loc[ alldata[(alldata["Fee"] == 0) & (alldata["Age"] == 1)].index, "free_pet_age_1" ] = 1 alldata["year"] = alldata["Age"] / 12.0 alldata["#Feature_less_a_year"] = np.where(alldata["Age"] < 12, 1, 0) alldata["#Feature_top_2_states"] = 0 alldata.loc[ alldata["State"].isin([41326, 41401]) == True, "#Feature_top_2_states" ] = 1 alldata["#Feature_age_exact"] = 0 alldata.loc[ alldata["Age"].isin([12, 24, 36, 48, 60, 72, 84, 96, 108]) == True, "#Feature_age_exact", ] = 1 alldata["#Feature_isLonely"] = np.where(alldata["Quantity"] > 1, 1, 0) alldata["total_img_video"] = alldata["PhotoAmt"] + alldata["VideoAmt"] # alldata['#Feature_avg_age_breed1_fee'] = alldata[['Age', 'Breed1', 'Fee']].groupby(['Age', 'Breed1'])[ # 'Fee'].transform('mean') # alldata['#Feature_avg_age_breed2_fee'] = alldata[['Age', 'Breed2', 'Fee']].groupby(['Age', 'Breed2'])[ # 'Fee'].transform('mean') # alldata['#Feature_age_breed1_maturity_sz'] = alldata[['Age', 'Breed1', 'MaturitySize']].groupby(['Age', 'Breed1'])[ # 'MaturitySize'].transform('count') / alldata.shape[0] # alldata['#Feature_age_breed2_maturity_sz'] = alldata[['Age', 'Breed2', 'MaturitySize']].groupby(['Age', 'Breed2'])[ # 'MaturitySize'].transform('count') / alldata.shape[0] # alldata['#Feature_age_breed1_fur'] = alldata[['Age', 'Breed1', 'FurLength']].groupby(['Age', 'Breed1'])[ # 'FurLength'].transform('count') / alldata.shape[0] # alldata['#Feature_age_breed2_fur'] = alldata[['Age', 'Breed2', 'FurLength']].groupby(['Age', 'Breed2'])[ # 'FurLength'].transform('count') / alldata.shape[0] # alldata['#Feature_age_breed1_fee'] = alldata[['Age', 'Breed1', 'Fee']].groupby(['Age', 'Breed1'])['Fee'].transform( # 'count') / alldata.shape[0] # alldata['#Feature_age_breed2_fee'] = alldata[['Age', 'Breed2', 'Fee']].groupby(['Age', 'Breed2'])['Fee'].transform( # 'count') / alldata.shape[0] # alldata['#Feature_state_breed1_age_freq'] = alldata[['State', 'Breed1', 'Age']].groupby(['State', 'Breed1'])[ # 'Age'].transform('mean') # alldata['#Feature_state_breed1_age_fee_freq'] = \ # alldata[['State', 'Breed1', 'Age', 'Fee']].groupby(['State', 'Breed1', 'Age'])['Fee'].transform('mean') # alldata['#Feature_state_breed2_age_freq'] = alldata[['State', 'Breed2', 'Age']].groupby(['State', 'Breed2'])[ # 'Age'].transform('mean') # alldata['#Feature_state_breed2_age_fee_freq'] = \ # alldata[['State', 'Breed2', 'Age', 'Fee']].groupby(['State', 'Breed2', 'Age'])['Fee'].transform('mean') # Clean the name # alldata['Name'] = alldata['Name'].apply(lambda x: clean_name(x)) # alldata['Name'] = alldata['Name'].fillna("No Name") rescuer_count = alldata.groupby(["RescuerID"])["PetID"].count().reset_index() rescuer_count.columns = ["RescuerID", "RescuerID_COUNT"] alldata = alldata.merge(rescuer_count, how="left", on="RescuerID") Description_count = alldata.groupby(["Description"])["PetID"].count().reset_index() Description_count.columns = ["Description", "Description_COUNT"] alldata = alldata.merge(Description_count, how="left", on="Description") Name_count = alldata.groupby(["Name"])["PetID"].count().reset_index() Name_count.columns = ["Name", "Name_COUNT"] alldata = alldata.merge(Name_count, how="left", on="Name") agg = {} agg["Quantity"] = ["mean", "var", "max", "min", "skew", "median"] agg["Fee"] = ["mean", "var", "max", "min", "skew", "median"] agg["Age"] = ["mean", "sum", "var", "max", "min", "skew", "median"] agg["Breed1"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Breed2"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Type"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Gender"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Color1"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Color2"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Color3"] = ["nunique", "var", "max", "min", "skew", "median"] agg["MaturitySize"] = ["nunique", "var", "max", "min", "skew", "median"] agg["FurLength"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Vaccinated"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Sterilized"] = ["nunique", "var", "max", "min", "skew", "median"] agg["Health"] = ["nunique", "var", "max", "min", "skew", "median"] agg["PhotoAmt"] = ["nunique", "var", "max", "min", "skew", "median"] agg["RelAge"] = ["nunique", "var", "max", "min", "skew", "median"] # RescuerID grouby = "RescuerID" agg_df = agg_features(alldata, grouby, agg, grouby) alldata = alldata.merge(agg_df, on=grouby, how="left") agg_kurt_df = alldata.groupby(grouby)[list(agg.keys())].apply(pd.DataFrame.kurt) agg_kurt_df.columns = [f"{key}_kurt" for key in list(agg.keys())] alldata = alldata.merge(agg_kurt_df, on=grouby, how="left") agg_perc_df = alldata.groupby(grouby)[list(agg.keys())].quantile(0.25) agg_perc_df.columns = [f"{key}_perc_25" for key in list(agg.keys())] alldata = alldata.merge(agg_perc_df, on=grouby, how="left") agg_perc_df = alldata.groupby(grouby)[list(agg.keys())].quantile(0.75) agg_perc_df.columns = [f"{key}_perc_75" for key in list(agg.keys())] alldata = alldata.merge(agg_perc_df, on=grouby, how="left") # State ################################################CREATING MULTIPLE COLUMNS WITH_X NEED TO BE FIXED grouby = "State" agg_df = agg_features(alldata, grouby, agg, grouby) alldata = alldata.merge(agg_df, on=grouby, how="left") agg_kurt_df = alldata.groupby(grouby)[list(agg.keys())].apply(pd.DataFrame.kurt) agg_kurt_df.columns = [f"{key}_kurt" for key in list(agg.keys())] alldata = alldata.merge(agg_kurt_df, on=grouby, how="left") agg_perc_df = alldata.groupby(grouby)[list(agg.keys())].quantile(0.25) agg_perc_df.columns = [f"{key}_perc_25" for key in list(agg.keys())] alldata = alldata.merge(agg_perc_df, on=grouby, how="left") agg_perc_df = alldata.groupby(grouby)[list(agg.keys())].quantile(0.75) agg_perc_df.columns = [f"{key}_perc_75" for key in list(agg.keys())] alldata = alldata.merge(agg_perc_df, on=grouby, how="left") train = alldata[: len(train)] test = alldata[len(train) :] return train, test def image_dim_features(train, test): # Load IDs and Image data # =========================================== split_char = "/" train_df_ids = train[["PetID"]] test_df_ids = test[["PetID"]] train_image_files = sorted( glob.glob("../input/petfinder-adoption-prediction/train_images/*.jpg") ) test_image_files = sorted( glob.glob("../input/petfinder-adoption-prediction/test_images/*.jpg") ) train_df_imgs = pd.DataFrame(train_image_files) train_df_imgs.columns = ["image_filename"] train_imgs_pets = train_df_imgs["image_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) train_df_imgs = train_df_imgs.assign(PetID=train_imgs_pets) test_df_imgs = pd.DataFrame(test_image_files) test_df_imgs.columns = ["image_filename"] test_imgs_pets = test_df_imgs["image_filename"].apply( lambda x: x.split("/")[-1].split("-")[0] ) test_df_imgs = test_df_imgs.assign(PetID=test_imgs_pets) # =========================================== train_df_imgs["image_size"] = train_df_imgs["image_filename"].apply(getSize) train_df_imgs["temp_size"] = train_df_imgs["image_filename"].apply(getDimensions) train_df_imgs["width"] = train_df_imgs["temp_size"].apply(lambda x: x[0]) train_df_imgs["height"] = train_df_imgs["temp_size"].apply(lambda x: x[1]) train_df_imgs = train_df_imgs.drop(["temp_size"], axis=1) test_df_imgs["image_size"] = test_df_imgs["image_filename"].apply(getSize) test_df_imgs["temp_size"] = test_df_imgs["image_filename"].apply(getDimensions) test_df_imgs["width"] = test_df_imgs["temp_size"].apply(lambda x: x[0]) test_df_imgs["height"] = test_df_imgs["temp_size"].apply(lambda x: x[1]) test_df_imgs = test_df_imgs.drop(["temp_size"], axis=1) aggs = { "image_size": ["sum", "mean", "var"], "width": ["sum", "mean", "var"], "height": ["sum", "mean", "var"], } agg_train_imgs = train_df_imgs.groupby("PetID").agg(aggs) new_columns = [k + "_" + agg for k in aggs.keys() for agg in aggs[k]] agg_train_imgs.columns = new_columns agg_train_imgs = agg_train_imgs.reset_index() agg_test_imgs = test_df_imgs.groupby("PetID").agg(aggs) new_columns = [k + "_" + agg for k in aggs.keys() for agg in aggs[k]] agg_test_imgs.columns = new_columns agg_test_imgs = agg_test_imgs.reset_index() agg_imgs = pd.concat([agg_train_imgs, agg_test_imgs], axis=0).reset_index(drop=True) return agg_imgs def metadata_features(train, test): if not preload: train_pet_ids = train.PetID.unique() test_pet_ids = test.PetID.unique() # Train Feature Extractions # =============================== dfs_train = Parallel(n_jobs=12, verbose=1)( delayed(extract_additional_features)(i, mode="train") for i in train_pet_ids ) train_dfs_sentiment = [ x[0] for x in dfs_train if isinstance(x[0], pd.DataFrame) ] train_dfs_metadata = [x[1] for x in dfs_train if isinstance(x[1], pd.DataFrame)] train_dfs_sentiment = pd.concat( train_dfs_sentiment, ignore_index=True, sort=False ) train_dfs_metadata = pd.concat( train_dfs_metadata, ignore_index=True, sort=False ) # Test Feature Extractions # =============================== dfs_test = Parallel(n_jobs=6, verbose=1)( delayed(extract_additional_features)(i, mode="test") for i in test_pet_ids ) test_dfs_sentiment = [x[0] for x in dfs_test if isinstance(x[0], pd.DataFrame)] test_dfs_metadata = [x[1] for x in dfs_test if isinstance(x[1], pd.DataFrame)] test_dfs_sentiment = pd.concat( test_dfs_sentiment, ignore_index=True, sort=False ) test_dfs_metadata = pd.concat(test_dfs_metadata, ignore_index=True, sort=False) else: train_dfs_sentiment = pd.read_csv("./processed_data/train_dfs_sentiment.csv") train_dfs_metadata = pd.read_csv("./processed_data/train_dfs_metadata.csv") test_dfs_sentiment = pd.read_csv("./processed_data/test_dfs_sentiment.csv") test_dfs_metadata = pd.read_csv("./processed_data/test_dfs_metadata.csv") train_dfs_sentiment["sentiment_entities"].fillna("", inplace=True) train_dfs_metadata["metadata_annots_top_desc"].fillna("", inplace=True) test_dfs_sentiment["sentiment_entities"].fillna("", inplace=True) test_dfs_metadata["metadata_annots_top_desc"].fillna("", inplace=True) # Meta data Aggregates # =============================== aggregates = ["mean", "sum", "var"] # Train Aggregates # --------------------------- train_metadata_desc = train_dfs_metadata.groupby(["PetID"])[ "metadata_annots_top_desc" ].unique() train_metadata_desc = train_metadata_desc.reset_index() train_metadata_desc["metadata_annots_top_desc"] = train_metadata_desc[ "metadata_annots_top_desc" ].apply(lambda x: " ".join(x.tolist())) prefix = "metadata" train_metadata_gr = train_dfs_metadata.drop(["metadata_annots_top_desc"], axis=1) for i in train_metadata_gr.columns: if "PetID" not in i: train_metadata_gr[i] = train_metadata_gr[i].astype(float) train_metadata_gr = train_metadata_gr.groupby(["PetID"]).agg(aggregates) train_metadata_gr.columns = pd.Index( [ "{}_{}_{}".format(prefix, c[0], c[1].upper()) for c in train_metadata_gr.columns.tolist() ] ) train_metadata_gr = train_metadata_gr.reset_index() train_sentiment_desc = train_dfs_sentiment.groupby(["PetID"])[ "sentiment_entities" ].unique() train_sentiment_desc = train_sentiment_desc.reset_index() train_sentiment_desc["sentiment_entities"] = train_sentiment_desc[ "sentiment_entities" ].apply(lambda x: " ".join(x.tolist())) prefix = "sentiment" train_sentiment_gr = train_dfs_sentiment.drop(["sentiment_entities"], axis=1) for i in train_sentiment_gr.columns: if "PetID" not in i: train_sentiment_gr[i] = train_sentiment_gr[i].astype(float) train_sentiment_gr = train_sentiment_gr.groupby(["PetID"]).agg(aggregates) train_sentiment_gr.columns = pd.Index( [ "{}_{}_{}".format(prefix, c[0], c[1].upper()) for c in train_sentiment_gr.columns.tolist() ] ) train_sentiment_gr = train_sentiment_gr.reset_index() # Test data Aggregates # --------------------------- test_metadata_desc = test_dfs_metadata.groupby(["PetID"])[ "metadata_annots_top_desc" ].unique() test_metadata_desc = test_metadata_desc.reset_index() test_metadata_desc["metadata_annots_top_desc"] = test_metadata_desc[ "metadata_annots_top_desc" ].apply(lambda x: " ".join(x.tolist())) prefix = "metadata" test_metadata_gr = test_dfs_metadata.drop(["metadata_annots_top_desc"], axis=1) for i in test_metadata_gr.columns: if "PetID" not in i: test_metadata_gr[i] = test_metadata_gr[i].astype(float) test_metadata_gr = test_metadata_gr.groupby(["PetID"]).agg(aggregates) test_metadata_gr.columns = pd.Index( [ "{}_{}_{}".format(prefix, c[0], c[1].upper()) for c in test_metadata_gr.columns.tolist() ] ) test_metadata_gr = test_metadata_gr.reset_index() test_sentiment_desc = test_dfs_sentiment.groupby(["PetID"])[ "sentiment_entities" ].unique() test_sentiment_desc = test_sentiment_desc.reset_index() test_sentiment_desc["sentiment_entities"] = test_sentiment_desc[ "sentiment_entities" ].apply(lambda x: " ".join(x.tolist())) prefix = "sentiment" test_sentiment_gr = test_dfs_sentiment.drop(["sentiment_entities"], axis=1) for i in test_sentiment_gr.columns: if "PetID" not in i: test_sentiment_gr[i] = test_sentiment_gr[i].astype(float) test_sentiment_gr = test_sentiment_gr.groupby(["PetID"]).agg(aggregates) test_sentiment_gr.columns = pd.Index( [ "{}_{}_{}".format(prefix, c[0], c[1].upper()) for c in test_sentiment_gr.columns.tolist() ] ) test_sentiment_gr = test_sentiment_gr.reset_index() # Mergining Features with Train/Test # ======================================= train_proc = train.copy() train_proc = train_proc.merge(train_sentiment_gr, how="left", on="PetID") train_proc = train_proc.merge(train_metadata_gr, how="left", on="PetID") train_proc = train_proc.merge(train_metadata_desc, how="left", on="PetID") train_proc = train_proc.merge(train_sentiment_desc, how="left", on="PetID") test_proc = test.copy() test_proc = test_proc.merge(test_sentiment_gr, how="left", on="PetID") test_proc = test_proc.merge(test_metadata_gr, how="left", on="PetID") test_proc = test_proc.merge(test_metadata_desc, how="left", on="PetID") test_proc = test_proc.merge(test_sentiment_desc, how="left", on="PetID") return train_proc, test_proc def breed_maps(train_proc, test_proc, labels_breed): train_breed_main = train_proc[["Breed1"]].merge( labels_breed, how="left", left_on="Breed1", right_on="BreedID", suffixes=("", "_main_breed"), ) train_breed_main = train_breed_main.iloc[:, 2:] train_breed_main = train_breed_main.add_prefix("main_breed_") train_breed_second = train_proc[["Breed2"]].merge( labels_breed, how="left", left_on="Breed2", right_on="BreedID", suffixes=("", "_second_breed"), ) train_breed_second = train_breed_second.iloc[:, 2:] train_breed_second = train_breed_second.add_prefix("second_breed_") train_proc = pd.concat([train_proc, train_breed_main, train_breed_second], axis=1) test_breed_main = test_proc[["Breed1"]].merge( labels_breed, how="left", left_on="Breed1", right_on="BreedID", suffixes=("", "_main_breed"), ) test_breed_main = test_breed_main.iloc[:, 2:] test_breed_main = test_breed_main.add_prefix("main_breed_") test_breed_second = test_proc[["Breed2"]].merge( labels_breed, how="left", left_on="Breed2", right_on="BreedID", suffixes=("", "_second_breed"), ) test_breed_second = test_breed_second.iloc[:, 2:] test_breed_second = test_breed_second.add_prefix("second_breed_") test_proc = pd.concat([test_proc, test_breed_main, test_breed_second], axis=1) X = pd.concat([train_proc, test_proc], ignore_index=True, sort=False) categorical_columns = ["main_breed_BreedName", "second_breed_BreedName"] for i in categorical_columns: X.loc[:, i] = pd.factorize(X.loc[:, i])[0] return X def nlp_features(X_temp): text_columns = ["Description", "metadata_annots_top_desc", "sentiment_entities"] X_text = X_temp[text_columns] for i in X_text.columns: X_text.loc[:, i] = X_text.loc[:, i].fillna("") n_components = 50 text_features = [] # Generate text features: for i in X_text.columns: # Initialize decomposition methods: print("Generating features from: {}".format(i)) svd_ = TruncatedSVD(n_components=n_components, random_state=1337) nmf_ = NMF(n_components=n_components, random_state=1337) tfidf_col = TfidfVectorizer().fit_transform(X_text.loc[:, i].values) svd_col = svd_.fit_transform(tfidf_col) svd_col = pd.DataFrame(svd_col) svd_col = svd_col.add_prefix("SVD_{}_".format(i)) nmf_col = nmf_.fit_transform(tfidf_col) nmf_col = pd.DataFrame(nmf_col) nmf_col = nmf_col.add_prefix("NMF_{}_".format(i)) text_features.append(svd_col) text_features.append(nmf_col) # Combine all extracted features: text_features = pd.concat(text_features, axis=1) # Concatenate with main DF: X_temp = pd.concat([X_temp, text_features], axis=1) # Remove raw text columns: for i in X_text.columns: X_temp = X_temp.drop(i, axis=1) # Remove unnecessary columns: to_drop_columns = ["PetID", "Name"] X_temp = X_temp.drop(to_drop_columns, axis=1) return X_temp def run_lgbm(X_temp, test): params = { "application": "regression", "boosting": "gbdt", "metric": "rmse", "num_leaves": 70, "max_depth": 9, "learning_rate": 0.01, "bagging_fraction": 0.6, # .85 previously "feature_fraction": 0.6, # .8 previously "min_split_gain": 0.02, "min_child_samples": 150, "min_child_weight": 0.02, "lambda_l2": 0.0475, "verbosity": -1, "data_random_seed": 17, } # Additional parameters: early_stop = 500 verbose_eval = 500 num_rounds = 10000 n_splits = 10 # Split into train and test again: X_train = X_temp.loc[np.isfinite(X_temp.AdoptionSpeed), :] X_test = X_temp.loc[~np.isfinite(X_temp.AdoptionSpeed), :] # Remove missing target column from test: X_test = X_test.drop(["AdoptionSpeed"], axis=1) print("X_train shape: {}".format(X_train.shape)) print("X_test shape: {}".format(X_test.shape)) # Check if columns between the two DFs are the same: train_cols = X_train.columns.tolist() train_cols.remove("AdoptionSpeed") train_cols.remove("RescuerID") test_cols = X_test.columns.tolist() kfold = StratifiedKFold(n_splits=n_splits, random_state=1337) oof_train = np.zeros((X_train.shape[0])) oof_test = np.zeros((X_test.shape[0], n_splits)) rescuer_gb_mean = ( X_train.groupby("RescuerID")["AdoptionSpeed"].agg("mean").reset_index() ) rescuer_gb_mean.columns = ["RescuerID", "AdoptionSpeed_mean"] rescuer_ids = rescuer_gb_mean["RescuerID"].values rescuer_as_mean = rescuer_gb_mean["AdoptionSpeed_mean"].values i = 0 for train_index, valid_index in kfold.split( rescuer_ids, rescuer_as_mean.astype(np.int) ): rescuser_train_ids = rescuer_ids[train_index] rescuser_valid_ids = rescuer_ids[valid_index] X_tr = X_train[X_train["RescuerID"].isin(rescuser_train_ids)] X_val = X_train[X_train["RescuerID"].isin(rescuser_valid_ids)] y_tr = X_tr["AdoptionSpeed"].values X_tr = X_tr.drop(["AdoptionSpeed", "RescuerID"], axis=1) y_val = X_val["AdoptionSpeed"].values X_val = X_val.drop(["AdoptionSpeed", "RescuerID"], axis=1) print("\ny_tr distribution: {}".format(Counter(y_tr))) d_train = lgb.Dataset(X_tr, label=y_tr) d_valid = lgb.Dataset(X_val, label=y_val) watchlist = [d_train, d_valid] print("training LGB:") model = lgb.train( params, train_set=d_train, num_boost_round=num_rounds, valid_sets=watchlist, verbose_eval=verbose_eval, early_stopping_rounds=early_stop, ) val_pred = model.predict(X_val, num_iteration=model.best_iteration) test_pred = model.predict( X_test.drop(["RescuerID"], axis=1), num_iteration=model.best_iteration ) oof_train[X_val.index] = val_pred oof_test[:, i] = test_pred i += 1 imp_df = pd.DataFrame() imp_df["feature"] = list(train_cols) imp_df["importance_gain"] = model.feature_importance(importance_type="gain") imp_df["importance_split"] = model.feature_importance(importance_type="split") imp_df.to_csv("imps.csv", index=False) # Compute QWK based on OOF train predictions: optR = OptimizedRounder() optR.fit(oof_train, X_train["AdoptionSpeed"].values) coefficients = optR.coefficients() pred_test_y_k = optR.predict(oof_train, coefficients) print("\nValid Counts = ", Counter(X_train["AdoptionSpeed"].values)) print("Predicted Counts = ", Counter(pred_test_y_k)) print("Coefficients = ", coefficients) qwk = quadratic_weighted_kappa(X_train["AdoptionSpeed"].values, pred_test_y_k) print("QWK = ", qwk) coefficients_ = coefficients.copy() print(f"coefficients returned From optim for LGBM are {coefficients_}") coefficients_[0] = 1.645 # coefficients_[1] = 2.115 # coefficients_[3] = 2.84 print(f"coefficients actually used are {coefficients_}") train_predictions = optR.predict(oof_train, coefficients_).astype(int) print("train pred distribution: {}".format(Counter(train_predictions))) test_predictions = optR.predict(oof_test.mean(axis=1), coefficients_) print("test pred distribution: {}".format(Counter(test_predictions))) # Distribution inspection of original target and predicted train and test: print("True Distribution:") print(pd.value_counts(X_train["AdoptionSpeed"], normalize=True).sort_index()) print("\nTrain Predicted Distribution:") print(pd.value_counts(train_predictions, normalize=True).sort_index()) print("\nTest Predicted Distribution:") print(pd.value_counts(test_predictions, normalize=True).sort_index()) submission = pd.DataFrame( { "PetID": test["PetID"].values, "AdoptionSpeed": test_predictions.astype(np.uint16), } ) return submission, oof_train, oof_test def run_xgb(X_temp, test): params = { "eval_metric": "rmse", "seed": 1337, "eta": 0.0123, "subsample": 0.7, "colsample_bytree": 0.75, "tree_method": "gpu_hist", "device": "gpu", "silent": 1, "gamma": 8, "max_depth": 7, } n_splits = 10 verbose_eval = 1000 num_rounds = 10000 early_stop = 500 # Split into train and test again: X_train = X_temp.loc[np.isfinite(X_temp.AdoptionSpeed), :] X_test = X_temp.loc[~np.isfinite(X_temp.AdoptionSpeed), :] # Remove missing target column from test: X_test = X_test.drop(["AdoptionSpeed", "RescuerID"], axis=1) print("X_train shape: {}".format(X_train.shape)) print("X_test shape: {}".format(X_test.shape)) # Check if columns between the two DFs are the same: train_cols = X_train.columns.tolist() train_cols.remove("AdoptionSpeed") train_cols.remove("RescuerID") test_cols = X_test.columns.tolist() kfold = StratifiedKFold(n_splits=n_splits, random_state=1337) oof_train = np.zeros((X_train.shape[0])) oof_test = np.zeros((X_test.shape[0], n_splits)) rescuer_gb_mean = ( X_train.groupby("RescuerID")["AdoptionSpeed"].agg("mean").reset_index() ) rescuer_gb_mean.columns = ["RescuerID", "AdoptionSpeed_mean"] rescuer_ids = rescuer_gb_mean["RescuerID"].values rescuer_as_mean = rescuer_gb_mean["AdoptionSpeed_mean"].values i = 0 for train_index, valid_index in kfold.split( X_train, X_train["AdoptionSpeed"].astype(np.int) ): print(f"Fold {i+1}") X_tr = X_train.iloc[train_index] X_val = X_train.iloc[valid_index] y_tr = X_tr["AdoptionSpeed"].values X_tr = X_tr.drop(["AdoptionSpeed", "RescuerID"], axis=1) y_val = X_val["AdoptionSpeed"].values X_val = X_val.drop(["AdoptionSpeed", "RescuerID"], axis=1) d_train = xgb.DMatrix(data=X_tr, label=y_tr, feature_names=X_tr.columns) d_valid = xgb.DMatrix(data=X_val, label=y_val, feature_names=X_val.columns) watchlist = [(d_train, "train"), (d_valid, "valid")] model = xgb.train( dtrain=d_train, num_boost_round=num_rounds, evals=watchlist, early_stopping_rounds=early_stop, verbose_eval=verbose_eval, params=params, ) valid_pred = model.predict( xgb.DMatrix(X_val, feature_names=X_val.columns), ntree_limit=model.best_ntree_limit, ) test_pred = model.predict( xgb.DMatrix(X_test, feature_names=X_test.columns), ntree_limit=model.best_ntree_limit, ) oof_train[X_val.index] = valid_pred oof_test[:, i] = test_pred i += 1 optR = OptimizedRounder() optR.fit(oof_train, X_train["AdoptionSpeed"].values) coefficients = optR.coefficients() valid_pred = optR.predict(oof_train, coefficients) qwk = quadratic_weighted_kappa(X_train["AdoptionSpeed"].values, valid_pred) print("QWK = ", qwk) coefficients_ = coefficients.copy() print(f"coefficients returned From optim for XGB are {coefficients_}") coefficients_[0] = 1.645 # coefficients_[1] = 2.115 # coefficients_[3] = 2.84 print(f"coefficients used for XGB are {coefficients_}") train_predictions = optR.predict(oof_train, coefficients_).astype(np.int8) print(f"train pred distribution: {Counter(train_predictions)}") test_predictions = optR.predict(oof_test.mean(axis=1), coefficients_).astype( np.int8 ) print(f"test pred distribution: {Counter(test_predictions)}") submission = pd.DataFrame( {"PetID": test["PetID"].values, "AdoptionSpeed": test_predictions} ) return submission, oof_train, oof_test set_seed(2411) train, test, labels_state, labels_breed, labels_color = load_tabular_data() train, test = basic_features(train, test) train = meta_nlp_feats(train, "Description") test = meta_nlp_feats(test, "Description") train = bounding_features( train, meta_path="../input/petfinder-adoption-prediction/train_metadata/" ) test = bounding_features( test, meta_path="../input/petfinder-adoption-prediction/test_metadata/" ) train, test = metadata_features(train, test) ########################################################################### ###### https://www.kaggle.com/ogrellier/python-target-encoding-for-categorical-features def add_noise(series, noise_level): return series * (1 + noise_level * np.random.randn(len(series))) def target_encode( trn_series=None, tst_series=None, target=None, min_samples_leaf=1, smoothing=1, noise_level=0, ): """ Smoothing is computed like in the following paper by Daniele Micci-Barreca https://kaggle2.blob.core.windows.net/forum-message-attachments/225952/7441/high%20cardinality%20categoricals.pdf trn_series : training categorical feature as a pd.Series tst_series : test categorical feature as a pd.Series target : target data as a pd.Series min_samples_leaf (int) : minimum samples to take category average into account smoothing (int) : smoothing effect to balance categorical average vs prior """ assert len(trn_series) == len(target) assert trn_series.name == tst_series.name temp = pd.concat([trn_series, target], axis=1) # Compute target mean averages = temp.groupby(by=trn_series.name)[target.name].agg(["mean", "count"]) # Compute smoothing smoothing = 1 / (1 + np.exp(-(averages["count"] - min_samples_leaf) / smoothing)) # Apply average function to all target data prior = target.mean() # The bigger the count the less full_avg is taken into account averages[target.name] = prior * (1 - smoothing) + averages["mean"] * smoothing averages.drop(["mean", "count"], axis=1, inplace=True) # Apply averages to trn and tst series ft_trn_series = ( pd.merge( trn_series.to_frame(trn_series.name), averages.reset_index().rename( columns={"index": target.name, target.name: "average"} ), on=trn_series.name, how="left", )["average"] .rename(trn_series.name + "_mean") .fillna(prior) ) # pd.merge does not keep the index so restore it ft_trn_series.index = trn_series.index ft_tst_series = ( pd.merge( tst_series.to_frame(tst_series.name), averages.reset_index().rename( columns={"index": target.name, target.name: "average"} ), on=tst_series.name, how="left", )["average"] .rename(trn_series.name + "_mean") .fillna(prior) ) # pd.merge does not keep the index so restore it ft_tst_series.index = tst_series.index return add_noise(ft_trn_series, noise_level), add_noise(ft_tst_series, noise_level) ########################################################################### ####################################################################### trn, sub = target_encode( train["Breed1"], test["Breed1"], target=train.AdoptionSpeed, min_samples_leaf=100, smoothing=10, noise_level=0.01, ) train["tencode_breed1"] = trn test["tencode_breed1"] = sub trn, sub = target_encode( train["Breed2"], test["Breed2"], target=train.AdoptionSpeed, min_samples_leaf=100, smoothing=10, noise_level=0.01, ) train["tencode_breed2"] = trn test["tencode_breed2"] = sub trn, sub = target_encode( train["Age"], test["Age"], target=train.AdoptionSpeed, min_samples_leaf=100, smoothing=10, noise_level=0.01, ) train["tencode_Age"] = trn test["tencode_Age"] = sub del trn, sub gc.collect() ###################################################### ################################################################################################################ sentimental_analysis = sorted( glob.glob("../input/petfinder-adoption-prediction/train_sentiment/*.json") ) # Define Empty lists score = [] magnitude = [] petid = [] for filename in sentimental_analysis: with open(filename, "r") as f: sentiment_file = json.load(f) file_sentiment = sentiment_file["documentSentiment"] file_score = np.asarray(sentiment_file["documentSentiment"]["score"]) file_magnitude = np.asarray(sentiment_file["documentSentiment"]["magnitude"]) score.append(file_score) magnitude.append(file_magnitude) petid.append( filename.replace(".json", "").replace( "../input/petfinder-adoption-prediction/train_sentiment/", "" ) ) # Output with sentiment data for each pet # Output with sentiment data for each pet sentimental_analysis = pd.concat( [ pd.DataFrame(petid, columns=["PetID"]), pd.DataFrame(score, columns=["sentiment_document_score"]), pd.DataFrame(magnitude, columns=["sentiment_document_magnitude"]), ], axis=1, ) train = pd.merge(train, sentimental_analysis, how="left", on="PetID") sentimental_analysis = sorted( glob.glob("../input/petfinder-adoption-prediction/test_sentiment/*.json") ) # Define Empty lists score = [] magnitude = [] petid = [] for filename in sentimental_analysis: with open(filename, "r") as f: sentiment_file = json.load(f) file_sentiment = sentiment_file["documentSentiment"] file_score = np.asarray(sentiment_file["documentSentiment"]["score"]) file_magnitude = np.asarray(sentiment_file["documentSentiment"]["magnitude"]) score.append(file_score) magnitude.append(file_magnitude) petid.append( filename.replace(".json", "").replace( "../input/petfinder-adoption-prediction/test_sentiment/", "" ) ) # Output with sentiment data for each pet # Output with sentiment data for each pet sentimental_analysis = pd.concat( [ pd.DataFrame(petid, columns=["PetID"]), pd.DataFrame(score, columns=["sentiment_document_score"]), pd.DataFrame(magnitude, columns=["sentiment_document_magnitude"]), ], axis=1, ) test = pd.merge(test, sentimental_analysis, how="left", on="PetID") del sentimental_analysis, score, magnitude, petid gc.collect() train["neg_sentiment"] = 0 train.loc[train[(train["sentiment_document_score"] < 0)].index, "neg_sentiment"] = 1 test["neg_sentiment"] = 0 test.loc[test[(test["sentiment_document_score"] < 0)].index, "neg_sentiment"] = 1 ########################################################################################### X_temp = breed_maps(train, test, labels_breed) keywords = [ "urgent", "lost", "fast", "left", "immediate", "critical", "rescued", "free", "trained", ] val = [] for idx in range(X_temp.shape[0]): i = "" i = X_temp.loc[idx, "Description"] if not isinstance(i, float): if "trained" in i: val.append(1) elif "urgent" in i: val.append(1) elif "lost" in i: val.append(1) elif "fast" in i: val.append(1) elif "left" in i: val.append(1) elif "immediate" in i: val.append(1) elif "rescued" in i: val.append(1) else: val.append(0) else: # print(i) val.append(0) print(len(val), X_temp.shape) X_temp["keywords"] = val del val gc.collect() denseNet121 = build_model() pretrained_feats = image_feature(denseNet121, train, test) X_temp = X_temp.merge(pretrained_feats, how="left", on="PetID") X_feat = nlp_features(X_temp) lgb_submission, lgb_oof_train, lgb_oof_test = run_lgbm(X_feat, test) lgb_submission.to_csv("submission_lgb.csv", index=None) from numba import cuda cuda.close() xgb_submission, xgb_oof_train, xgb_oof_test = run_xgb(X_feat, test) xgb_submission.to_csv("submission_xgb.csv", index=None) # Blend submission = lgb_submission[["PetID"]] submission["AdoptionSpeed"] = ( lgb_submission.AdoptionSpeed + xgb_submission.AdoptionSpeed ) / 2 submission["AdoptionSpeed"] = submission.AdoptionSpeed.astype(int) submission.to_csv("submission.csv", index=False) ================================================ FILE: classification/Kaggle Petfinder/README.MD ================================================ ## Solution to PetFinder.my Adoption Prediction Challenge Link: https://www.kaggle.com/c/microsoft-malware-prediction Millions of stray animals suffer on the streets or are euthanized in shelters every day around the world. If homes can be found for them, many precious lives can be saved — and more happy families created. PetFinder.my has been Malaysia’s leading animal welfare platform since 2008, with a database of more than 150,000 animals. PetFinder collaborates closely with animal lovers, media, corporations, and global organizations to improve animal welfare. Animal adoption rates are strongly correlated to the metadata associated with their online profiles, such as descriptive text and photo characteristics. As one example, PetFinder is currently experimenting with a simple AI tool called the Cuteness Meter, which ranks how cute a pet is based on qualities present in their photos. In this competition you will be developing algorithms to predict the adoptability of pets - specifically, how quickly is a pet adopted? If successful, they will be adapted into AI tools that will guide shelters and rescuers around the world on improving their pet profiles' appeal, reducing animal suffering and euthanization. Top participants may be invited to collaborate on implementing their solutions into AI tools for assessing and improving pet adoption performance, which will benefit global animal welfare. ================================================ FILE: classification/Kaggle red hat user/README.MD ================================================ ## Solution to Predicting Red Hat Business Value 2016 Link: https://www.kaggle.com/c/predicting-red-hat-business-value Like most companies, Red Hat is able to gather a great deal of information over time about the behavior of individuals who interact with them. They’re in search of better methods of using this behavioral data to predict which individuals they should approach—and even when and how to approach them. In this competition, Kagglers are challenged to create a classification algorithm that accurately identifies which customers have the most potential business value for Red Hat based on their characteristics and activities. With an improved prediction model in place, Red Hat will be able to more efficiently prioritize resources to generate more business and better serve their customers. ================================================ FILE: deployment/docker flask fit predict/Dockerfile ================================================ FROM python:3.7-slim COPY . /root WORKDIR /root RUN pip install flask gunicorn numpy sklearn scipy flask_wtf WTForms pandas ================================================ FILE: deployment/docker flask fit predict/README.MD ================================================ This is baseline for model deployment via docker and flask. 1. Install ``` sudo docker-compose up ``` 2. Build ``` sudo docker-compose build ``` 3. Run ``` sudo docker-compose up ``` 4. Get to the docker ``` sudo docker exec -it flaskhello_webapp_1 bash ``` 5. Get active dockers ``` sudo docker ps ``` 6. To run python file inside the docker ``` sudo docker exec -it flaskhello_webapp_1 python train_model.py ``` 7. POST JSON data with Curl from a terminal/commandline to test spring REST ``` curl --header "Content-Type: application/json" \ --request POST \ --data '{"flower":"1,2,3,7"}' \ http://localhost:5000/iris_post ``` 7. POST curl to upload file ``` curl -X POST -F file=@"/home/dex/Desktop/ml/flask-hello/static/setosa.jpg" http://localhost:5000/upload ``` ================================================ FILE: deployment/docker flask fit predict/docker-compose.yml ================================================ version: "3.3" services: webapp: build: . command: gunicorn -w 4 -b 0.0.0.0:5000 hello:app --reload #command: flask run --host=0.0.0.0 environment: - FLASK_APP=hello.py - FLASK_DEBUG=1 - PYTHONUNBUFFERED=TRUE ports: - "5000:5000" volumes: - ./:/root ================================================ FILE: deployment/docker flask fit predict/hello.py ================================================ from flask import ( Flask, escape, flash, request, jsonify, redirect, url_for, render_template, send_file, ) import numpy as np import os from sklearn.externals import joblib knn = joblib.load("knn.pkl") app = Flask(__name__) @app.route("/") def hello(): print("Started hello") name = request.args.get("name", "my friend") return f"

Hello, {escape(name)}!

" @app.route("/square/") def squar_val(username): username = float(username) * float(username) return str(username) def average(lst): return sum(lst) / len(lst) @app.route("/avg/") def avg(nums): nums = nums.split(",") nums = [float(num) for num in nums] return str(average(nums)) @app.route("/iris/") def fit_predict_iris(params): params = params.split(",") params = np.array([float(num) for num in params]).reshape(1, -1) print("Input params:", params) predict = knn.predict(params) img_path = '
Setoca iris flower' return str(predict) + img_path @app.route("/show_image") def show_image(): print("image loaded") return 'Setoca iris flower' @app.route("/iris_post", methods=["POST"]) def add_message(): try: content = request.get_json() params = content["flower"].split(",") params = np.array([float(num) for num in params]).reshape(1, -1) print("Input params:", params) predict = {"class": str(knn.predict(params)[0])} except: return redirect(url_for("bad_request")) return jsonify(predict) from flask import abort @app.route("/badrequest400") def bad_request(): abort(400) from flask_wtf import FlaskForm from wtforms import StringField, FileField from werkzeug.utils import secure_filename from wtforms.validators import DataRequired import pandas as pd UPLOAD_FOLDER = "" ALLOWED_EXTENSIONS = set(["txt", "pdf", "png", "jpg", "jpeg", "gif"]) app.config.update( dict(SECRET_KEY="powerful secretkey", WTF_CSRF_SECRET_KEY="a csrf secret key") ) app.config["UPLOAD_FOLDER"] = UPLOAD_FOLDER class MyForm(FlaskForm): name = StringField("name", validators=[DataRequired()]) file = FileField() @app.route("/submit", methods=("GET", "POST")) def submit(): form = MyForm() if form.validate_on_submit(): f = form.file.data filename = form.name.data + ".csv" # f.save(os.path.join( # filename # )) df = pd.read_csv(f, header=None) print(df.head()) predict = knn.predict(df) result = pd.DataFrame(predict) result.to_csv(filename, index=False) return send_file( filename, mimetype="text/csv", attachment_filename=filename, as_attachment=True, ) return render_template("submit.html", form=form) def allowed_file(filename): return "." in filename and filename.rsplit(".", 1)[1].lower() in ALLOWED_EXTENSIONS @app.route("/upload", methods=["GET", "POST"]) def upload_file(): if request.method == "POST": # check if the post request has the file part if "file" not in request.files: flash("No file part") return redirect(request.url) file = request.files["file"] # if user does not select file, browser also # submit an empty part without filename if file.filename == "": flash("No selected file") return redirect(request.url) if file and allowed_file(file.filename): filename = secure_filename(file.filename) file.save(os.path.join(app.config["UPLOAD_FOLDER"], filename)) return "file uploaded" return """ Upload new File

Upload new File

""" ================================================ FILE: deployment/docker flask fit predict/templates/submit.html ================================================
{{ form.hidden_tag() }} {{ form.name.label }} {{ form.name(size=20) }} {{ form.file.label }} {{ form.file(size=20) }}
================================================ FILE: deployment/docker flask fit predict/train_model.py ================================================ import numpy as np from sklearn import datasets from sklearn.decomposition import PCA np.random.seed(0) # import some data to play with iris_X, iris_y = datasets.load_iris(return_X_y=True) indices = np.random.permutation(len(iris_X)) iris_X_train = iris_X[indices[:-10]] iris_y_train = iris_y[indices[:-10]] # Create and fit a nearest-neighbor classifier from sklearn.neighbors import KNeighborsClassifier knn = KNeighborsClassifier() knn.fit(iris_X_train, iris_y_train) from sklearn.externals import joblib joblib.dump(knn, "knn.pkl") ================================================ FILE: deployment/ds docker db template/README.md ================================================ Taken from here: https://github.com/glebmikha/data-science-project-template # Data Science Project Template Youtube instructions: ENG: https://youtu.be/pTk82vkhsMc RUS: https://youtu.be/xf58pNYhRss This repo is inspired by the Docker for Datascience book. It's a Docker image with a data science environment based on the jupyter/datascience-notebook with pandas, matplotlib, scipy, seaborn and scikit-learn pre-installed. ## To start new Data Science project: 1. Copy this repo Create a new directory, cd into it, and then run ``` git init git pull https://github.com/glebmikha/data-science-project-template.git ``` Or you can just download it as a zip and use it without git. 2. Add your favorite Python modules to ./docker/jupyter/requirements.txt. For example: ``` xgboost tensorflow==1.6.0 ``` Or use pip install right in jupyter (don't forget ! in front of the command) ``` !pip install your_package ``` 3. Start containers ``` docker-compose up ``` 4. Copy a jupyter url from terminal and open it in your browser. 5. Find an examples.ipynb notebook in ipynb folder. Create your notebooks. 6. Copy your data into ./data and read it in Jupyter. You can also upload data into PostgreSQL, which is running in it's own container along with Jupyter (see examples notebook for details) 7. Stop containers ``` docker-compose down ``` 8. Update images ``` docker-compose build --pull ``` 9. Clean Docker's mess ``` docker rmi -f $(docker images -qf dangling=true) ``` Sometimes it is useful to remove all docker's data. ``` docker system prune ``` ================================================ FILE: deployment/ds docker db template/docker/jupyter/Dockerfile ================================================ FROM jupyter/datascience-notebook:latest COPY requirements.txt requirements.txt RUN pip install -r requirements.txt WORKDIR /home/jovyan/work ================================================ FILE: deployment/ds docker db template/docker/jupyter/requirements.txt ================================================ psycopg2-binary catboost ================================================ FILE: deployment/ds docker db template/docker/postgres/Dockerfile ================================================ FROM postgres:10-alpine COPY initdb.sql /docker-entrypoint-initdb.d/initdb.sql ================================================ FILE: deployment/ds docker db template/docker/postgres/initdb.sql ================================================ DROP TABLE if exists d_date; CREATE TABLE d_date ( date_dim_id INT NOT NULL, date_actual DATE NOT NULL, epoch BIGINT NOT NULL, day_suffix VARCHAR(4) NOT NULL, day_name VARCHAR(9) NOT NULL, day_of_week INT NOT NULL, day_of_month INT NOT NULL, day_of_quarter INT NOT NULL, day_of_year INT NOT NULL, week_of_month INT NOT NULL, week_of_year INT NOT NULL, week_of_year_iso CHAR(10) NOT NULL, month_actual INT NOT NULL, month_name VARCHAR(9) NOT NULL, month_name_abbreviated CHAR(3) NOT NULL, quarter_actual INT NOT NULL, quarter_name VARCHAR(9) NOT NULL, year_actual INT NOT NULL, first_day_of_week DATE NOT NULL, last_day_of_week DATE NOT NULL, first_day_of_month DATE NOT NULL, last_day_of_month DATE NOT NULL, first_day_of_quarter DATE NOT NULL, last_day_of_quarter DATE NOT NULL, first_day_of_year DATE NOT NULL, last_day_of_year DATE NOT NULL, mmyyyy CHAR(6) NOT NULL, mmddyyyy CHAR(10) NOT NULL, weekend_indr BOOLEAN NOT NULL ); ALTER TABLE public.d_date ADD CONSTRAINT d_date_date_dim_id_pk PRIMARY KEY (date_dim_id); CREATE INDEX d_date_date_actual_idx ON d_date(date_actual); COMMIT; INSERT INTO d_date SELECT TO_CHAR(datum,'yyyymmdd')::INT AS date_dim_id, datum AS date_actual, EXTRACT(epoch FROM datum) AS epoch, TO_CHAR(datum,'fmDDth') AS day_suffix, TO_CHAR(datum,'Day') AS day_name, EXTRACT(isodow FROM datum) AS day_of_week, EXTRACT(DAY FROM datum) AS day_of_month, datum - DATE_TRUNC('quarter',datum)::DATE +1 AS day_of_quarter, EXTRACT(doy FROM datum) AS day_of_year, TO_CHAR(datum,'W')::INT AS week_of_month, EXTRACT(week FROM datum) AS week_of_year, TO_CHAR(datum,'YYYY"-W"IW-') || EXTRACT(isodow FROM datum) AS week_of_year_iso, EXTRACT(MONTH FROM datum) AS month_actual, TO_CHAR(datum,'Month') AS month_name, TO_CHAR(datum,'Mon') AS month_name_abbreviated, EXTRACT(quarter FROM datum) AS quarter_actual, CASE WHEN EXTRACT(quarter FROM datum) = 1 THEN 'First' WHEN EXTRACT(quarter FROM datum) = 2 THEN 'Second' WHEN EXTRACT(quarter FROM datum) = 3 THEN 'Third' WHEN EXTRACT(quarter FROM datum) = 4 THEN 'Fourth' END AS quarter_name, EXTRACT(isoyear FROM datum) AS year_actual, datum +(1 -EXTRACT(isodow FROM datum))::INT AS first_day_of_week, datum +(7 -EXTRACT(isodow FROM datum))::INT AS last_day_of_week, datum +(1 -EXTRACT(DAY FROM datum))::INT AS first_day_of_month, (DATE_TRUNC('MONTH',datum) +INTERVAL '1 MONTH - 1 day')::DATE AS last_day_of_month, DATE_TRUNC('quarter',datum)::DATE AS first_day_of_quarter, (DATE_TRUNC('quarter',datum) +INTERVAL '3 MONTH - 1 day')::DATE AS last_day_of_quarter, TO_DATE(EXTRACT(isoyear FROM datum) || '-01-01','YYYY-MM-DD') AS first_day_of_year, TO_DATE(EXTRACT(isoyear FROM datum) || '-12-31','YYYY-MM-DD') AS last_day_of_year, TO_CHAR(datum,'mmyyyy') AS mmyyyy, TO_CHAR(datum,'mmddyyyy') AS mmddyyyy, CASE WHEN EXTRACT(isodow FROM datum) IN (6,7) THEN TRUE ELSE FALSE END AS weekend_indr FROM (SELECT '1970-01-01'::DATE+ SEQUENCE.DAY AS datum FROM GENERATE_SERIES (0,29219) AS SEQUENCE (DAY) GROUP BY SEQUENCE.DAY) DQ ORDER BY 1; COMMIT; ================================================ FILE: deployment/ds docker db template/docker-compose.yml ================================================ version: "3" services: this_jupyter: build: ./docker/jupyter/ volumes: - .:/home/jovyan/work ports: - 8888:8888 this_postgres: build: ./docker/postgres volumes: - postgres_data:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=password ports: - 5432:5432 volumes: postgres_data: ================================================ FILE: general studies/finetune gbm.md ================================================ ### Tune Parameters for the Leaf-wise (Best-first) Tree **num_leaves**. This is the main parameter to control the complexity of the tree model. Theoretically, we can set num_leaves = 2^(max_depth) to obtain the same number of leaves as depth-wise tree. However, this simple conversion is not good in practice. The reason is that a leaf-wise tree is typically much deeper than a depth-wise tree for a fixed number of leaves. Unconstrained depth can induce over-fitting. Thus, when trying to tune the num_leaves, we should let it be smaller than 2^(max_depth). For example, when the max_depth=7 the depth-wise tree can get good accuracy, but setting num_leaves to 127 may cause over-fitting, and setting it to 70 or 80 may get better accuracy than depth-wise. **min_data_in_leaf**. This is a very important parameter to prevent over-fitting in a leaf-wise tree. Its optimal value depends on the number of training samples and num_leaves. Setting it to a large value can avoid growing too deep a tree, but may cause under-fitting. In practice, setting it to hundreds or thousands is enough for a large dataset. **max_depth**. You also can use max_depth to limit the tree depth explicitly. ### For Faster Speed Use bagging by setting **bagging_fraction** and **bagging_freq** Use feature sub-sampling by setting **feature_fraction** Use small **max_bin** Use save_binary to speed up data loading in future learning Use parallel learning, refer to Parallel Learning Guide ### For Better Accuracy Use large **max_bin** (may be slower) Use small **learning_rate** with large **num_iterations** Use large **num_leaves** (may cause over-fitting) Use bigger training data Try **dart** ### Deal with Over-fitting Use small **max_bin** Use small **num_leaves** Use **min_data_in_leaf** and **min_sum_hessian_in_leaf** Use bagging by set bagging_fraction and **bagging_freq** Use feature sub-sampling by set **feature_fraction** Use bigger training data Try **lambda_l1**, **lambda_l2** and **min_gain_to_split** for regularization Try **max_depth** to avoid growing deep tree ### Other params to tune **max_cat_group**: When the number of category is large, finding the split point on it is easily over-fitting. So LightGBM merges them into ‘max_cat_group’ groups, and finds the split points on the group boundaries, default:64 **min_gain_to_split**: This parameter will describe the minimum gain to make a split. It can used to control number of useful splits in tree ================================================ FILE: general studies/finetune xgb.md ================================================ Fill reasonable values for key inputs: **learning_rate**: 0.01; **n_estimators**: 100 if the size of your data is high, 1000 is if it is medium-low; **max_depth**: 3; **subsample**: 0.8; **colsample_bytree**: 1; **gamma**: 1 Run **model.fit(eval_set, eval_metric)** and diagnose your first run, specifically the n_estimators parameter Optimize **max_depth** parameter. Recommended going from a low **max_depth** (3 for instance) and then increasing it incrementally by 1, and stopping when there’s no performance gain of increasing it. This will help simplify your model and avoid overfitting Now play around with the learning rate and the features that avoids overfitting: **learning_rate**: usually between 0.1 and 0.01. If you’re focused on performance and have time in front of you, decrease incrementally the learning rate while increasing the number of trees. **subsample**, which is for each tree the % of rows taken to build the tree. I recommend not taking out too many rows, as performance will drop a lot. Take values from 0.8 to 1. Typical values: 0.5-1 **colsample_bytree**: number of columns used by each tree. In order to avoid some columns to take too much credit for the prediction (think of it like in recommender systems when you recommend the most purchased products and forget about the long tail), take out a good proportion of columns. Values from 0.3 to 0.8 if you have many columns (especially if you did one-hot encoding), or 0.8 to 1 if you only have a few columns. **gamma**: usually misunderstood parameter, it acts as a regularization parameter. Either 0, 1 or 5. **eta** [default=0.3] Analogous to learning rate in GBM Makes the model more robust by shrinking the weights on each step Typical final values to be used: 0.01-0.2 **min_child_weight** [default=1] Defines the minimum sum of weights of all observations required in a child. This is similar to min_child_leaf in GBM but not exactly. This refers to min “sum of weights” of observations while GBM has min “number of observations”. Used to control over-fitting. Higher values prevent a model from learning relations which might be highly specific to the particular sample selected for a tree. Too high values can lead to under-fitting hence, it should be tuned using CV. Link https://xgboost.readthedocs.io/en/latest/parameter.html ================================================ FILE: general studies/get feature importance.py ================================================ from __future__ import division import numpy as np from scipy import linalg from sklearn.linear_model import (RandomizedLasso, lasso_stability_path, LassoLarsCV) from sklearn.feature_selection import f_regression from sklearn.preprocessing import StandardScaler from sklearn.metrics import auc, precision_recall_curve from sklearn.ensemble import ExtraTreesRegressor from sklearn.utils.extmath import pinvh from sklearn.utils import ConvergenceWarning import matplotlib.pyplot as plt import numpy as np import pandas as pd from sklearn.cross_validation import train_test_split from sklearn.ensemble import RandomForestClassifier from sklearn.metrics import roc_auc_score from sklearn.pipeline import Pipeline from sklearn.svm import OneClassSVM from sklearn.feature_selection import chi2 from sklearn.datasets import load_iris from sklearn.feature_selection import SelectKBest from sklearn.svm import LinearSVC from sklearn.datasets import load_iris from sklearn.feature_selection import SelectFromModel import matplotlib.pyplot as plt import random from sklearn.datasets import make_classification from sklearn.ensemble import ExtraTreesClassifier from sklearn import preprocessing # Input data files are available in the "../input/" directory. # For example, running this (by clicking run or pressing Shift+Enter) will list the files in the input directory from subprocess import check_output def mutual_incoherence(X_relevant, X_irelevant): """Mutual incoherence, as defined by formula (26a) of [Wainwright2006]. """ projector = np.dot(np.dot(X_irelevant.T, X_relevant), pinvh(np.dot(X_relevant.T, X_relevant))) return np.max(np.abs(projector).sum(axis=1)) # The iris dataset df_train = pd.read_csv("C:\\Users\\SBT-Ashrapov-IR\\Desktop\\docs\\apps\\CustomerSatisfaction\\data\\train.csv") df_test = pd.read_csv('C:\\Users\\SBT-Ashrapov-IR\\Desktop\\docs\\apps\\CustomerSatisfaction\\data\\test.csv') remove = [] # deletening duplicates cols for col in df_train.columns: if df_train[col].std() == 0: remove.append(col) df_train.drop(remove, axis=1, inplace=True) df_test.drop(remove, axis=1, inplace=True) # normalize the data attributes df_train.apply(lambda x: (x - np.mean(x)) / (np.max(x) - np.min(x))) df_test.apply(lambda x: (x - np.mean(x)) / (np.max(x) - np.min(x))) size = len(df_train.columns) -1 # remove duplicated columns remove = [] listZeroes = [] remove3 = [] c = df_train.columns k = 1 for i in range(len(c)-1): v = df_train[c[i]].values for j in range(i+1,len(c)): if np.array_equal(v,df_train[c[j]].values): remove.append(c[j]) df_train.drop(remove, axis=1, inplace=True) df_test.drop(remove, axis=1, inplace=True) for i in range(len(df_train)): if df_train["TARGET"][i] == 0: listZeroes.append(i) if df_train["TARGET"][i] == 1: remove3.append(i) #print listZeroes print len(df_train) #print df_train.index listZeroes = random.sample(listZeroes, len(df_train) - 3007- len(remove3)) remove3 = random.sample(remove3, len(remove3) - 3007) listZeroes = listZeroes +remove3 df_ones = df_train.iloc[remove3] for i in xrange(1, 24,1): df_train = df_train.append(df_ones) # df_train.drop(df_train.index[listZeroes],inplace=True) X = df_train[df_train.columns[0:size]] y = df_train[[len(df_train.columns)-1]] test_frac = 0.10 count = len(X_full) X = X_full.iloc[-int(count*test_frac):] y = y_full.iloc[-int(count*test_frac):] print "X", X.shape , "y", y.shape lsvc = LinearSVC(C=0.01, penalty="l1", dual=False).fit(X, y) model = SelectFromModel(lsvc, prefit=True) X_new = model.transform(X) forest = ExtraTreesClassifier(n_estimators=250, random_state=0) forest.fit(X, y) importances = forest.feature_importances_ std = np.std([tree.feature_importances_ for tree in forest.estimators_], axis=0) indices = np.argsort(importances)[::-1] # Print the feature ranking print("Feature ranking:") for f in range(X.shape[1]): print("%d. feature %d (%f)" % (f + 1, indices[f], importances[indices[f]])) # Plot the feature importances of the forest plt.figure() plt.title("Feature importances") plt.bar(range(X.shape[1]), importances[indices], color="r", yerr=std[indices], align="center") plt.xticks(range(X.shape[1]), indices) plt.xlim([-1, X.shape[1]]) plt.show() # print "X_new.shape", X_new.shape # print X_new ================================================ FILE: recommendations/ods_course/README.md ================================================ ================================================ FILE: recommendations/ods_course/competition/requirements.txt ================================================ ================================================ FILE: recommendations/ods_course/competition/tools.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_2/requirements.txt ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/Dockerfile ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/Readme.md ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/ann/__init__.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/ann/recommender.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/config/__init__.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/config/config.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/config/config.yaml ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/main.py ================================================ ================================================ FILE: recommendations/ods_course/lecture_4/pyproject.toml ================================================ ================================================ FILE: recommendations/ods_course/lecture_5/README.md ================================================ ================================================ FILE: recommendations/ods_course/lecture_5/requirements.txt ================================================ ================================================ FILE: recommendations/ods_course/lecture_5/tools.py ================================================ ================================================ FILE: regression/kaggle santander value prediction/README.md ================================================ # Kaggle Santander Value Prediction Challenge (108th place - silver) https://www.kaggle.com/c/santander-value-prediction-challenge According to Epsilon research, 80% of customers are more likely to do business with you if you provide personalized service. Banking is no exception. The digitalization of everyday lives means that customers expect services to be delivered in a personalized and timely manner… and often before they´ve even realized they need the service. In their 3rd Kaggle competition, Santander Group aims to go a step beyond recognizing that there is a need to provide a customer a financial service and intends to determine the amount or value of the customer's transaction. This means anticipating customer needs in a more concrete, but also simple and personal way. With so many choices for financial services, this need is greater now than ever before. In this competition, Santander Group is asking Kagglers to help them identify the value of transactions for each potential customer. This is a first step that Santander needs to nail in order to personalize their services at scale. #### This repository provides basic solution, which were enough to get silver solution ================================================ FILE: time series regression/ARIMA/AR.py ================================================ # Load modules from __future__ import print_function import pandas as pd import numpy as np from matplotlib import pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf import statsmodels.tsa.api as smtsa # Function to plot signal, ACF and PACF def plotds(xt, nlag=30, fig_size=(12, 10)): if not isinstance(xt, pd.Series): xt = pd.Series(xt) plt.figure(figsize=fig_size) layout = (2, 2) # Assign axes ax_xt = plt.subplot2grid(layout, (0, 0), colspan=2) ax_acf = plt.subplot2grid(layout, (1, 0)) ax_pacf = plt.subplot2grid(layout, (1, 1)) # Plot graphs xt.plot(ax=ax_xt) ax_xt.set_title("Time Series") plot_acf(xt, lags=50, ax=ax_acf) plot_pacf(xt, lags=50, ax=ax_pacf) plt.tight_layout() return None # Number of samples n = 600 # Generate AR(1) dataset ar = np.r_[1, -0.6] ma = np.r_[1, 0] ar1_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ar1_data) # Generate AR(2) dataset ar = np.r_[1, 0.6, 0.7] ma = np.r_[1, 0] ar2_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ar2_data) # Generate AR(3) dataset ar = np.r_[1, 0.6, 0.7, 0.5] ma = np.r_[1, 0] ar3_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ar3_data) # Build AR(1) model ar1model = smtsa.ARMA(ar1_data.tolist(), order=(1, 0)) ar1 = ar1model.fit(maxlag=30, method="mle", trend="nc") ar1.summary() # Build MA(3) model ar3 = smtsa.ARMA(ar3_data.tolist(), order=(3, 0)).fit( maxlag=30, method="mle", trend="nc" ) ar3.summary() ================================================ FILE: time series regression/ARIMA/ARIMA.py ================================================ # Load Modules from __future__ import print_function import os import pandas as pd import numpy as np from matplotlib import pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf from statsmodels.tsa.arima_model import ARIMA import statsmodels.api as sm import statsmodels.tsa.api as smtsa # Function to plot signal, ACF and PACF def plotds(xt, nlag=30, fig_size=(12, 10)): if not isinstance(xt, pd.Series): xt = pd.Series(xt) plt.figure(figsize=fig_size) layout = (2, 2) # Assign axes ax_xt = plt.subplot2grid(layout, (0, 0), colspan=2) ax_acf = plt.subplot2grid(layout, (1, 0)) ax_pacf = plt.subplot2grid(layout, (1, 1)) # Plot graphs xt.plot(ax=ax_xt) ax_xt.set_title("Time Series") plot_acf(xt, lags=50, ax=ax_acf) plot_pacf(xt, lags=50, ax=ax_pacf) plt.tight_layout() return None # Read data from Excel file djia_df = pd.read_excel("datasets/DJIA_Jan2016_Dec2016.xlsx") # Rename the second column djia_df.head(10) # Let us parse the Date column and use as row index for the DataFrame and drop it as a column djia_df["Date"] = pd.to_datetime(djia_df["Date"], "%Y-%m-%d") djia_df.index = djia_df["Date"] djia_df.drop("Date", axis=1, inplace=True) # Let us see first few rows of the modified DataFrame djia_df.head(10) # Plot ACF and PACF djia_df = djia_df.dropna() plotds(djia_df["Close"], nlag=50) # Evaluate mean and variance at mid values mean1, mean2 = djia_df.iloc[:125].Close.mean(), djia_df.iloc[125:].Close.mean() var1, var2 = djia_df.iloc[:125].Close.var(), djia_df.iloc[125:].Close.var() print("mean1=%f, mean2=%f" % (mean1, mean2)) print("variance1=%f, variance2=%f" % (var1, var2)) # ADF Test from statsmodels.tsa.stattools import adfuller adf_result = adfuller(djia_df.Close.tolist()) print("ADF Statistic: %f" % adf_result[0]) print("p-value: %f" % adf_result[1]) # QQ plot and probability plot sm.qqplot(djia_df["Close"], line="s") # Optimize ARMA parameters (Will return a non-stationary error) arma_obj = smtsa.ARMA(djia_df["Close"].tolist(), order=(1, 1)).fit( maxlag=30, method="mle", trend="nc" ) # Let us plot the original time series and first-differences first_order_diff = djia_df["Close"].diff(1).dropna() fig, ax = plt.subplots(2, sharex=True) fig.set_size_inches(5.5, 5.5) djia_df["Close"].plot(ax=ax[0], color="b") ax[0].set_title("Close values of DJIA during Jan 2016-Dec 2016") first_order_diff.plot(ax=ax[1], color="r") ax[1].set_title("First-order differences of DJIA during Jan 2016-Dec 2016") # plot signal plotds(first_order_diff, nlag=50) adf_result = adfuller(first_order_diff) print("ADF Statistic: %f" % adf_result[0]) print("p-value: %f" % adf_result[1]) # Optimize ARMA parameters aicVal = [] for d in range(1, 3): for ari in range(0, 3): for maj in range(0, 3): try: arima_obj = ARIMA(djia_df["Close"].tolist(), order=(ari, d, maj)) arima_obj_fit = arima_obj.fit() aicVal.append([ari, d, maj, arima_obj_fit.aic]) except ValueError: pass # Optimal ARIMA model arima_obj = ARIMA(djia_df["Close"].tolist(), order=(0, 2, 1)) arima_obj_fit = arima_obj.fit(disp=0) arima_obj_fit.summary() # Evaluate prediction pred = np.append([0, 0], arima_obj_fit.fittedvalues.tolist()) djia_df["ARIMA"] = pred diffval = np.append([0, 0], arima_obj_fit.resid + arima_obj_fit.fittedvalues) djia_df["diffval"] = diffval # QQ plot and probability plot sm.qqplot(arima_obj_fit.resid, line="s") # Plot output f, axarr = plt.subplots(1, sharex=True) f.set_size_inches(5.5, 5.5) djia_df["diffval"].iloc[2:].plot(color="b", linestyle="-", ax=axarr) djia_df["ARIMA"].iloc[2:].plot(color="r", linestyle="--", ax=axarr) axarr.set_title("ARIMA(0,2,1)") plt.xlabel("Index") plt.ylabel("Closing") # Forecasting f, err, ci = arima_obj_fit.forecast(40) djia_df["forecast"] = arima_obj_fit.forecast(10) djia_df[["Close", "forecast"]].plot(figsize=(12, 8)) ############## # SARIMAX ############## # Seasonality (based on first difference ACF shows significance at 42 lag) x = djia_df["Close"] - djia_df["Close"].shift(42) mod = sm.tsa.statespace.SARIMAX( djia_df["Close"], trend="n", order=(0, 2, 1), seasonal_order=(1, 1, 1, 42) ) sarimax = mod.fit() sarimax.summary() ================================================ FILE: time series regression/ARIMA/ARMA.py ================================================ # Load modules from __future__ import print_function import pandas as pd import numpy as np from matplotlib import pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf import statsmodels.tsa.api as smtsa from statsmodels.tsa import arima_process # Function to plot signal, ACF and PACF def plotds(xt, nlag=30, fig_size=(12, 10)): if not isinstance(xt, pd.Series): xt = pd.Series(xt) plt.figure(figsize=fig_size) layout = (2, 2) # Assign axes ax_xt = plt.subplot2grid(layout, (0, 0), colspan=2) ax_acf = plt.subplot2grid(layout, (1, 0)) ax_pacf = plt.subplot2grid(layout, (1, 1)) # Plot graphs xt.plot(ax=ax_xt) ax_xt.set_title("Time Series") plot_acf(xt, lags=50, ax=ax_acf) plot_pacf(xt, lags=50, ax=ax_pacf) plt.tight_layout() return None # Number of samples n = 600 # Generate AR(1) dataset ar = np.r_[1, 0.6] ma = np.r_[1, 0.3] ar1ma1_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ar1ma1_data) # Impluse response curve plt.plot(arima_process.arma_impulse_response(ar, ma, nobs=20)) plt.ylabel("Impact") plt.xlabel("Lag") # Build AR(1) model ar1ma1 = smtsa.ARMA(ar1ma1_data.tolist(), order=(1, 1)).fit( maxlag=30, method="mle", trend="nc" ) ar1ma1.summary() # Optimize ARMA parameters aicVal = [] for ari in range(1, 3): for maj in range(1, 3): arma_obj = smtsa.ARMA(ar1ma1_data.tolist(), order=(ari, maj)).fit( maxlag=30, method="mle", trend="nc" ) aicVal.append([ari, maj, arma_obj.aic]) ================================================ FILE: time series regression/ARIMA/ARMA_IBMstock.py ================================================ # Load modules from __future__ import print_function import pandas as pd from matplotlib import pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf import statsmodels.tsa.api as smtsa import statsmodels.api as sm import os ############# # IBM EXAMPLE for ARMA modelling ############# # Load Dataset ibm_df = pd.read_csv("datasets/ibm-common-stock-closing-prices.csv") ibm_df.head() # Rename the second column ibm_df.rename(columns={"IBM common stock closing prices": "Close_Price"}, inplace=True) ibm_df.head() ibm_df.Close_Price.plot() # Plot ACF and PACF ibm_df = ibm_df.dropna() plot_acf(ibm_df.Close_Price, lags=50) plot_pacf(ibm_df.Close_Price, lags=50) # QQ plot and probability plot sm.qqplot(ibm_df["Close_Price"], line="s") # Optimize ARMA parameters aicVal = [] for ari in range(1, 3): for maj in range(0, 3): arma_obj = smtsa.ARMA(ibm_df.Close_Price.tolist(), order=(ari, maj)).fit( maxlag=30, method="mle", trend="nc" ) aicVal.append([ari, maj, arma_obj.aic]) arma_obj_fin = smtsa.ARMA(ibm_df.Close_Price.tolist(), order=(1, 0)).fit( maxlag=30, method="mle", trend="nc" ) ibm_df["ARMA"] = arma_obj_fin.predict() arma_obj_fin.summary() # Plot the curves f, axarr = plt.subplots(1, sharex=True) f.set_size_inches(5.5, 5.5) ibm_df["Close_Price"].iloc[1:].plot(color="b", linestyle="-", ax=axarr) ibm_df["ARMA"].iloc[1:].plot(color="r", linestyle="--", ax=axarr) axarr.set_title("ARMA(1,0)") plt.xlabel("Index") plt.ylabel("Closing price") ================================================ FILE: time series regression/ARIMA/MA.py ================================================ # Load modules from __future__ import print_function import pandas as pd import numpy as np from matplotlib import pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf import statsmodels.tsa.api as smtsa # Function to plot signal, ACF and PACF def plotds(xt, nlag=30, fig_size=(12, 10)): if not isinstance(xt, pd.Series): xt = pd.Series(xt) plt.figure(figsize=fig_size) layout = (2, 2) # Assign axes ax_xt = plt.subplot2grid(layout, (0, 0), colspan=2) ax_acf = plt.subplot2grid(layout, (1, 0)) ax_pacf = plt.subplot2grid(layout, (1, 1)) # Plot graphs xt.plot(ax=ax_xt) ax_xt.set_title("Time Series") plot_acf(xt, lags=50, ax=ax_acf) plot_pacf(xt, lags=50, ax=ax_pacf) plt.tight_layout() return None # Number of samples n = 600 # Generate MA(1) dataset ar = np.r_[1, -0] ma = np.r_[1, 0.7] ma1_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ma1_data) # Generate MA(2) dataset ar = np.r_[1, -0] ma = np.r_[1, 0.6, 0.7] ma2_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ma2_data) # Generate MA(3) dataset ar = np.r_[1, -0] ma = np.r_[1, 0.6, 0.7, 0.5] ma3_data = smtsa.arma_generate_sample(ar=ar, ma=ma, nsample=n) plotds(ma3_data) # Build MA(1) model ma1 = smtsa.ARMA(ma1_data.tolist(), order=(0, 1)).fit( maxlag=30, method="mle", trend="nc" ) ma1.summary() # Build MA(3) model ma3 = smtsa.ARMA(ma3_data.tolist(), order=(0, 3)).fit( maxlag=30, method="mle", trend="nc" ) ma3.summary() ================================================ FILE: time series regression/Data Files/Data Files ================================================ Here are all the data files used in the book ================================================ FILE: time series regression/anomaly detection/README.md ================================================ # Anomaly detection in time series with Prophet library * For the full article read medium article - https://medium.com/p/4c661f6f165f/edit * Kaggle code with data by Vinay Jaju - https://www.kaggle.com/vinayjaju/anomaly-detection-using-facebook-s-prophet ================================================ FILE: time series regression/anomaly detection/anomaly-detection-using-facebook-s-prophet.py ================================================ #!/usr/bin/env python # coding: utf-8 # In[1]: # This Python 3 environment comes with many helpful analytics libraries installed # It is defined by the kaggle/python docker image: https://github.com/kaggle/docker-python # For example, here's several helpful packages to load in import numpy as np # linear algebra import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv) # Input data files are available in the "../input/" directory. # For example, running this (by clicking run or pressing Shift+Enter) will list the files in the input directory import os import altair as alt alt.renderers.enable("notebook") print(os.listdir("../input")) from IPython.display import HTML # The below is great for working but if you publish it, no charts show up. # The workaround in the next cell deals with this. # alt.renderers.enable('notebook') HTML("This code block contains import statements and setup.") # Any results you write to the current directory are saved as output. # In[2]: ## Dont worry about the code in this block. This is just the setup for showing Altair graphs in Kaggle Notebooks from altair.vega import v3 import json from IPython.display import HTML vega_url = "https://cdn.jsdelivr.net/npm/vega@" + v3.SCHEMA_VERSION vega_lib_url = "https://cdn.jsdelivr.net/npm/vega-lib" vega_lite_url = "https://cdn.jsdelivr.net/npm/vega-lite@" + alt.SCHEMA_VERSION vega_embed_url = "https://cdn.jsdelivr.net/npm/vega-embed@3" noext = "?noext" paths = { "vega": vega_url + noext, "vega-lib": vega_lib_url + noext, "vega-lite": vega_lite_url + noext, "vega-embed": vega_embed_url + noext, } workaround = """ requirejs.config({{ baseUrl: 'https://cdn.jsdelivr.net/npm/', paths: {} }}); """ def add_autoincrement(render_func): # Keep track of unique
IDs cache = {} def wrapped(chart, id="vega-chart", autoincrement=True): if autoincrement: if id in cache: counter = 1 + cache[id] cache[id] = counter else: cache[id] = 0 actual_id = id if cache[id] == 0 else id + "-" + str(cache[id]) else: if id not in cache: cache[id] = 0 actual_id = id return render_func(chart, id=actual_id) # Cache will stay outside and return wrapped @add_autoincrement def render(chart, id="vega-chart"): chart_str = """
""" return HTML( chart_str.format( id=id, chart=json.dumps(chart) if isinstance(chart, dict) else chart.to_json(indent=None), ) ) HTML( "".join( ( "", "This code block sets up embedded rendering in HTML output and
", "provides the function `render(chart, id='vega-chart')` for use below.", ) ) ) # In[3]: #!pip install fbprophet # # Getting the data # In[4]: from fbprophet import Prophet get_ipython().system("mkdir -p dataset") get_ipython().system( "wget -c -b http://www-personal.umich.edu/~mejn/cp/data/sunspots.txt -P dataset" ) data = np.loadtxt("dataset/sunspots.txt", float) # In[5]: get_ipython().system("ls dataset/") # ### Converting data to Pandas dataframe # In[6]: # View the data as a table data_as_frame = pd.DataFrame(data, columns=["Months", "SunSpots"]) data_as_frame.tail(10) # In[7]: data_as_frame["ds"] = data_as_frame["Months"].astype(int) # In[8]: data_as_frame.head() # ### Converting the months column in format acceptable for Prophet, starting from 1749 # In[9]: data_as_frame["time_stamp"] = data_as_frame.apply( lambda x: (pd.Timestamp("1749-01-01") + pd.DateOffset(months=int(x["ds"]))), axis=1 ) # In[10]: # Cleaning the df, we only need two columns date time and the data clean_df = data_as_frame.drop(["Months", "ds"], axis=1) # In[11]: clean_df.head() # ## Lets view the data in graphical format # In[12]: render( alt.Chart(clean_df) .mark_line(size=15, opacity=0.8, color="Orange") .encode( x="yearmonthdate(time_stamp):T", y=alt.Y("SunSpots", title="Sunspots"), tooltip=["yearmonthdate(time_stamp)", "SunSpots"], ) .interactive() .properties(width=900, height=450, title="Sunspots based on Months") .configure_title(fontSize=20) ) # # Preparing data for modelling in Prophet # In[13]: ## Prophet requires two columns, one is ds (the date time) and y (variable to be forecasted) clean_df.columns = ["y", "ds"] # ## Lets Predict # In[14]: def fit_predict_model(dataframe, interval_width=0.99, changepoint_range=0.8): m = Prophet( daily_seasonality=False, yearly_seasonality=False, weekly_seasonality=False, seasonality_mode="multiplicative", interval_width=interval_width, changepoint_range=changepoint_range, ) m = m.fit(dataframe) forecast = m.predict(dataframe) forecast["fact"] = dataframe["y"].reset_index(drop=True) print("Displaying Prophet plot") fig1 = m.plot(forecast) return forecast pred = fit_predict_model(clean_df) # # Detecting Anomalies: # * The light blue boundaries in the above graph are yhat_upper and yhat_lower. # * If y value is greater than yhat_upper and less than yhat lower then it is an anomaly. # * Also getting the importance of that anomaly based on its distance from yhat_upper and yhat_lower. # In[15]: def detect_anomalies(forecast): forecasted = forecast[ ["ds", "trend", "yhat", "yhat_lower", "yhat_upper", "fact"] ].copy() # forecast['fact'] = df['y'] forecasted["anomaly"] = 0 forecasted.loc[forecasted["fact"] > forecasted["yhat_upper"], "anomaly"] = 1 forecasted.loc[forecasted["fact"] < forecasted["yhat_lower"], "anomaly"] = -1 # anomaly importances forecasted["importance"] = 0 forecasted.loc[forecasted["anomaly"] == 1, "importance"] = ( forecasted["fact"] - forecasted["yhat_upper"] ) / forecast["fact"] forecasted.loc[forecasted["anomaly"] == -1, "importance"] = ( forecasted["yhat_lower"] - forecasted["fact"] ) / forecast["fact"] return forecasted pred = detect_anomalies(pred) # In[16]: pred.head() # # Plotting the anomalies for a better view # In[17]: def plot_anomalies(forecasted): interval = ( alt.Chart(forecasted) .mark_area(interpolate="basis", color="#7FC97F") .encode( x=alt.X("ds:T", title="date"), y="yhat_upper", y2="yhat_lower", tooltip=["yearmonthdate(ds)", "fact", "yhat_lower", "yhat_upper"], ) .interactive() .properties(title="Anomaly Detection") ) fact = ( alt.Chart(forecasted[forecasted.anomaly == 0]) .mark_circle(size=15, opacity=0.7, color="Black") .encode( x="ds:T", y=alt.Y("fact", title="Sunspots"), tooltip=["yearmonthdate(ds)", "fact", "yhat_lower", "yhat_upper"], ) .interactive() ) anomalies = ( alt.Chart(forecasted[forecasted.anomaly != 0]) .mark_circle(size=30, color="Red") .encode( x="ds:T", y=alt.Y("fact", title="Sunspots"), tooltip=["yearmonthdate(ds)", "fact", "yhat_lower", "yhat_upper"], size=alt.Size("importance", legend=None), ) .interactive() ) return render( alt.layer(interval, fact, anomalies) .properties(width=870, height=450) .configure_title(fontSize=20) ) plot_anomalies(pred) # References: # * http://www-personal.umich.edu/~mejn/cp/programs.html # * https://towardsdatascience.com/anomaly-detection-time-series-4c661f6f165f # * https://github.com/altair-viz/altair/issues/1270 # # In[18]: ================================================ FILE: time series regression/anomaly detection/sunspots.txt ================================================ 0 58.0 1 62.6 2 70.0 3 55.7 4 85.0 5 83.5 6 94.8 7 66.3 8 75.9 9 75.5 10 158.6 11 85.2 12 73.3 13 75.9 14 89.2 15 88.3 16 90.0 17 100.0 18 85.4 19 103.0 20 91.2 21 65.7 22 63.3 23 75.4 24 70.0 25 43.5 26 45.3 27 56.4 28 60.7 29 50.7 30 66.3 31 59.8 32 23.5 33 23.2 34 28.5 35 44.0 36 35.0 37 50.0 38 71.0 39 59.3 40 59.7 41 39.6 42 78.4 43 29.3 44 27.1 45 46.6 46 37.6 47 40.0 48 44.0 49 32.0 50 45.7 51 38.0 52 36.0 53 31.7 54 22.0 55 39.0 56 28.0 57 25.0 58 20.0 59 6.7 60 0.0 61 3.0 62 1.7 63 13.7 64 20.7 65 26.7 66 18.8 67 12.3 68 8.2 69 24.1 70 13.2 71 4.2 72 10.2 73 11.2 74 6.8 75 6.5 76 0.0 77 0.0 78 8.6 79 3.2 80 17.8 81 23.7 82 6.8 83 20.0 84 12.5 85 7.1 86 5.4 87 9.4 88 12.5 89 12.9 90 3.6 91 6.4 92 11.8 93 14.3 94 17.0 95 9.4 96 14.1 97 21.2 98 26.2 99 30.0 100 38.1 101 12.8 102 25.0 103 51.3 104 39.7 105 32.5 106 64.7 107 33.5 108 37.6 109 52.0 110 49.0 111 72.3 112 46.4 113 45.0 114 44.0 115 38.7 116 62.5 117 37.7 118 43.0 119 43.0 120 48.3 121 44.0 122 46.8 123 47.0 124 49.0 125 50.0 126 51.0 127 71.3 128 77.2 129 59.7 130 46.3 131 57.0 132 67.3 133 59.5 134 74.7 135 58.3 136 72.0 137 48.3 138 66.0 139 75.6 140 61.3 141 50.6 142 59.7 143 61.0 144 70.0 145 91.0 146 80.7 147 71.7 148 107.2 149 99.3 150 94.1 151 91.1 152 100.7 153 88.7 154 89.7 155 46.0 156 43.8 157 72.8 158 45.7 159 60.2 160 39.9 161 77.1 162 33.8 163 67.7 164 68.5 165 69.3 166 77.8 167 77.2 168 56.5 169 31.9 170 34.2 171 32.9 172 32.7 173 35.8 174 54.2 175 26.5 176 68.1 177 46.3 178 60.9 179 61.4 180 59.7 181 59.7 182 40.2 183 34.4 184 44.3 185 30.0 186 30.0 187 30.0 188 28.2 189 28.0 190 26.0 191 25.7 192 24.0 193 26.0 194 25.0 195 22.0 196 20.2 197 20.0 198 27.0 199 29.7 200 16.0 201 14.0 202 14.0 203 13.0 204 12.0 205 11.0 206 36.6 207 6.0 208 26.8 209 3.0 210 3.3 211 4.0 212 4.3 213 5.0 214 5.7 215 19.2 216 27.4 217 30.0 218 43.0 219 32.9 220 29.8 221 33.3 222 21.9 223 40.8 224 42.7 225 44.1 226 54.7 227 53.3 228 53.5 229 66.1 230 46.3 231 42.7 232 77.7 233 77.4 234 52.6 235 66.8 236 74.8 237 77.8 238 90.6 239 111.8 240 73.9 241 64.2 242 64.3 243 96.7 244 73.6 245 94.4 246 118.6 247 120.3 248 148.8 249 158.2 250 148.1 251 112.0 252 104.0 253 142.5 254 80.1 255 51.0 256 70.1 257 83.3 258 109.8 259 126.3 260 104.4 261 103.6 262 132.2 263 102.3 264 36.0 265 46.2 266 46.7 267 64.9 268 152.7 269 119.5 270 67.7 271 58.5 272 101.4 273 90.0 274 99.7 275 95.7 276 100.9 277 90.8 278 31.1 279 92.2 280 38.0 281 57.0 282 77.3 283 56.2 284 50.5 285 78.6 286 61.3 287 64.0 288 54.6 289 29.0 290 51.2 291 32.9 292 41.1 293 28.4 294 27.7 295 12.7 296 29.3 297 26.3 298 40.9 299 43.2 300 46.8 301 65.4 302 55.7 303 43.8 304 51.3 305 28.5 306 17.5 307 6.6 308 7.9 309 14.0 310 17.7 311 12.2 312 4.4 313 0.0 314 11.6 315 11.2 316 3.9 317 12.3 318 1.0 319 7.9 320 3.2 321 5.6 322 15.1 323 7.9 324 21.7 325 11.6 326 6.3 327 21.8 328 11.2 329 19.0 330 1.0 331 24.2 332 16.0 333 30.0 334 35.0 335 40.0 336 45.0 337 36.5 338 39.0 339 95.5 340 80.3 341 80.7 342 95.0 343 112.0 344 116.2 345 106.5 346 146.0 347 157.3 348 177.3 349 109.3 350 134.0 351 145.0 352 238.9 353 171.6 354 153.0 355 140.0 356 171.7 357 156.3 358 150.3 359 105.0 360 114.7 361 165.7 362 118.0 363 145.0 364 140.0 365 113.7 366 143.0 367 112.0 368 111.0 369 124.0 370 114.0 371 110.0 372 70.0 373 98.0 374 98.0 375 95.0 376 107.2 377 88.0 378 86.0 379 86.0 380 93.7 381 77.0 382 60.0 383 58.7 384 98.7 385 74.7 386 53.0 387 68.3 388 104.7 389 97.7 390 73.5 391 66.0 392 51.0 393 27.3 394 67.0 395 35.2 396 54.0 397 37.5 398 37.0 399 41.0 400 54.3 401 38.0 402 37.0 403 44.0 404 34.0 405 23.2 406 31.5 407 30.0 408 28.0 409 38.7 410 26.7 411 28.3 412 23.0 413 25.2 414 32.2 415 20.0 416 18.0 417 8.0 418 15.0 419 10.5 420 13.0 421 8.0 422 11.0 423 10.0 424 6.0 425 9.0 426 6.0 427 10.0 428 10.0 429 8.0 430 17.0 431 14.0 432 6.5 433 8.0 434 9.0 435 15.7 436 20.7 437 26.3 438 36.3 439 20.0 440 32.0 441 47.2 442 40.2 443 27.3 444 37.2 445 47.6 446 47.7 447 85.4 448 92.3 449 59.0 450 83.0 451 89.7 452 111.5 453 112.3 454 116.0 455 112.7 456 134.7 457 106.0 458 87.4 459 127.2 460 134.8 461 99.2 462 128.0 463 137.2 464 157.3 465 157.0 466 141.5 467 174.0 468 138.0 469 129.2 470 143.3 471 108.5 472 113.0 473 154.2 474 141.5 475 136.0 476 141.0 477 142.0 478 94.7 479 129.5 480 114.0 481 125.3 482 120.0 483 123.3 484 123.5 485 120.0 486 117.0 487 103.0 488 112.0 489 89.7 490 134.0 491 135.5 492 103.0 493 127.5 494 96.3 495 94.0 496 93.0 497 91.0 498 69.3 499 87.0 500 77.3 501 84.3 502 82.0 503 74.0 504 72.7 505 62.0 506 74.0 507 77.2 508 73.7 509 64.2 510 71.0 511 43.0 512 66.5 513 61.7 514 67.0 515 66.0 516 58.0 517 64.0 518 63.0 519 75.7 520 62.0 521 61.0 522 45.8 523 60.0 524 59.0 525 59.0 526 57.0 527 56.0 528 56.0 529 55.0 530 55.5 531 53.0 532 52.3 533 51.0 534 50.0 535 29.3 536 24.0 537 47.0 538 44.0 539 45.7 540 45.0 541 44.0 542 38.0 543 28.4 544 55.7 545 41.5 546 41.0 547 40.0 548 11.1 549 28.5 550 67.4 551 51.4 552 21.4 553 39.9 554 12.6 555 18.6 556 31.0 557 17.1 558 12.9 559 25.7 560 13.5 561 19.5 562 25.0 563 18.0 564 22.0 565 23.8 566 15.7 567 31.7 568 21.0 569 6.7 570 26.9 571 1.5 572 18.4 573 11.0 574 8.4 575 5.1 576 14.4 577 4.2 578 4.0 579 4.0 580 7.3 581 11.1 582 4.3 583 6.0 584 5.7 585 6.9 586 5.8 587 3.0 588 2.0 589 4.0 590 12.4 591 1.1 592 0.0 593 0.0 594 0.0 595 3.0 596 2.4 597 1.5 598 12.5 599 9.9 600 1.6 601 12.6 602 21.7 603 8.4 604 8.2 605 10.6 606 2.1 607 0.0 608 0.0 609 4.6 610 2.7 611 8.6 612 6.9 613 9.3 614 13.9 615 0.0 616 5.0 617 23.7 618 21.0 619 19.5 620 11.5 621 12.3 622 10.5 623 40.1 624 27.0 625 29.0 626 30.0 627 31.0 628 32.0 629 31.2 630 35.0 631 38.7 632 33.5 633 32.6 634 39.8 635 48.2 636 47.8 637 47.0 638 40.8 639 42.0 640 44.0 641 46.0 642 48.0 643 50.0 644 51.8 645 38.5 646 34.5 647 50.0 648 50.0 649 50.8 650 29.5 651 25.0 652 44.3 653 36.0 654 48.3 655 34.1 656 45.3 657 54.3 658 51.0 659 48.0 660 45.3 661 48.3 662 48.0 663 50.6 664 33.4 665 34.8 666 29.8 667 43.1 668 53.0 669 62.3 670 61.0 671 60.0 672 61.0 673 44.1 674 51.4 675 37.5 676 39.0 677 40.5 678 37.6 679 42.7 680 44.4 681 29.4 682 41.0 683 38.3 684 39.0 685 29.6 686 32.7 687 27.7 688 26.4 689 25.6 690 30.0 691 26.3 692 24.0 693 27.0 694 25.0 695 24.0 696 12.0 697 12.2 698 9.6 699 23.8 700 10.0 701 12.0 702 12.7 703 12.0 704 5.7 705 8.0 706 2.6 707 0.0 708 0.0 709 4.5 710 0.0 711 12.3 712 13.5 713 13.5 714 6.7 715 8.0 716 11.7 717 4.7 718 10.5 719 12.3 720 7.2 721 9.2 722 0.9 723 2.5 724 2.0 725 7.7 726 0.3 727 0.2 728 0.4 729 0.0 730 0.0 731 0.0 732 0.0 733 0.0 734 0.0 735 0.0 736 0.0 737 0.0 738 0.0 739 0.0 740 0.0 741 0.0 742 0.0 743 0.0 744 0.0 745 0.0 746 0.0 747 0.0 748 0.0 749 0.0 750 6.6 751 0.0 752 2.4 753 6.1 754 0.8 755 1.1 756 11.3 757 1.9 758 0.7 759 0.0 760 1.0 761 1.3 762 0.5 763 15.6 764 5.2 765 3.9 766 7.9 767 10.1 768 0.0 769 10.3 770 1.9 771 16.6 772 5.5 773 11.2 774 18.3 775 8.4 776 15.3 777 27.8 778 16.7 779 14.3 780 22.2 781 12.0 782 5.7 783 23.8 784 5.8 785 14.9 786 18.5 787 2.3 788 8.1 789 19.3 790 14.5 791 20.1 792 19.2 793 32.2 794 26.2 795 31.6 796 9.8 797 55.9 798 35.5 799 47.2 800 31.5 801 33.5 802 37.2 803 65.0 804 26.3 805 68.8 806 73.7 807 58.8 808 44.3 809 43.6 810 38.8 811 23.2 812 47.8 813 56.4 814 38.1 815 29.9 816 36.4 817 57.9 818 96.2 819 26.4 820 21.2 821 40.0 822 50.0 823 45.0 824 36.7 825 25.6 826 28.9 827 28.4 828 34.9 829 22.4 830 25.4 831 34.5 832 53.1 833 36.4 834 28.0 835 31.5 836 26.1 837 31.6 838 10.9 839 25.8 840 32.8 841 20.7 842 3.7 843 20.2 844 19.6 845 35.0 846 31.4 847 26.1 848 14.9 849 27.5 850 25.1 851 30.6 852 19.2 853 26.6 854 4.5 855 19.4 856 29.4 857 10.8 858 20.6 859 25.9 860 5.2 861 8.9 862 7.9 863 9.1 864 21.5 865 4.2 866 5.7 867 9.2 868 1.7 869 1.8 870 2.5 871 4.8 872 4.4 873 18.9 874 4.4 875 0.3 876 0.0 877 0.9 878 16.1 879 13.0 880 1.5 881 5.6 882 8.0 883 2.1 884 0.0 885 0.4 886 0.0 887 0.0 888 0.0 889 0.0 890 0.6 891 0.0 892 0.0 893 0.0 894 0.5 895 0.0 896 0.0 897 0.0 898 0.0 899 20.4 900 21.7 901 10.8 902 0.0 903 19.4 904 2.8 905 0.0 906 0.0 907 1.4 908 20.5 909 25.2 910 0.0 911 0.9 912 5.0 913 15.5 914 22.4 915 3.8 916 15.5 917 15.4 918 30.9 919 25.7 920 15.7 921 15.6 922 11.7 923 22.0 924 17.7 925 18.2 926 36.7 927 24.0 928 32.4 929 37.1 930 52.5 931 39.6 932 18.9 933 50.6 934 39.5 935 68.1 936 34.6 937 47.4 938 57.8 939 46.0 940 56.3 941 56.7 942 42.3 943 53.7 944 49.6 945 56.1 946 48.3 947 46.1 948 52.8 949 64.4 950 65.0 951 61.1 952 89.1 953 98.0 954 54.2 955 76.5 956 50.4 957 54.7 958 57.0 959 46.9 960 43.0 961 49.4 962 72.3 963 95.0 964 67.4 965 73.9 966 90.9 967 77.6 968 52.8 969 57.2 970 67.6 971 56.5 972 52.2 973 72.1 974 84.7 975 106.3 976 66.3 977 65.1 978 43.9 979 50.7 980 62.1 981 84.4 982 81.3 983 82.2 984 47.5 985 50.1 986 93.4 987 54.5 988 38.1 989 33.4 990 45.2 991 55.0 992 37.9 993 46.3 994 43.5 995 28.9 996 30.9 997 55.6 998 55.1 999 26.9 1000 41.3 1001 26.7 1002 14.0 1003 8.9 1004 8.2 1005 21.1 1006 14.3 1007 27.5 1008 11.3 1009 15.0 1010 11.8 1011 2.8 1012 12.9 1013 1.0 1014 7.0 1015 5.7 1016 11.6 1017 7.5 1018 5.9 1019 9.9 1020 4.9 1021 18.1 1022 3.9 1023 1.4 1024 8.8 1025 7.8 1026 8.7 1027 4.0 1028 11.5 1029 24.8 1030 30.5 1031 34.5 1032 7.5 1033 24.5 1034 19.7 1035 61.5 1036 43.6 1037 33.2 1038 59.8 1039 59.0 1040 100.8 1041 95.2 1042 100.0 1043 77.5 1044 88.6 1045 107.6 1046 98.2 1047 142.9 1048 111.4 1049 124.7 1050 116.7 1051 107.8 1052 95.1 1053 137.4 1054 120.9 1055 206.3 1056 188.0 1057 175.6 1058 134.6 1059 138.2 1060 111.7 1061 158.0 1062 162.8 1063 134.0 1064 96.3 1065 123.7 1066 107.0 1067 129.8 1068 144.9 1069 84.8 1070 140.8 1071 126.6 1072 137.6 1073 94.5 1074 108.2 1075 78.8 1076 73.6 1077 90.8 1078 77.4 1079 79.8 1080 105.6 1081 102.5 1082 77.7 1083 61.8 1084 53.8 1085 54.7 1086 84.8 1087 131.2 1088 132.7 1089 90.9 1090 68.8 1091 63.7 1092 81.2 1093 87.7 1094 67.8 1095 65.9 1096 69.2 1097 48.5 1098 60.7 1099 57.8 1100 74.0 1101 55.1 1102 54.3 1103 53.7 1104 24.1 1105 29.9 1106 29.7 1107 40.2 1108 67.5 1109 55.7 1110 30.9 1111 39.3 1112 36.5 1113 28.5 1114 19.8 1115 38.8 1116 20.4 1117 22.1 1118 21.7 1119 26.9 1120 24.9 1121 20.5 1122 12.6 1123 26.6 1124 18.4 1125 38.1 1126 40.5 1127 17.6 1128 13.3 1129 3.5 1130 8.3 1131 9.5 1132 21.1 1133 10.5 1134 9.5 1135 11.8 1136 4.2 1137 5.3 1138 19.1 1139 12.7 1140 9.5 1141 14.7 1142 13.6 1143 20.8 1144 11.6 1145 3.7 1146 21.2 1147 23.9 1148 7.0 1149 21.5 1150 10.8 1151 21.6 1152 25.7 1153 43.6 1154 43.3 1155 57.0 1156 47.8 1157 31.1 1158 30.6 1159 32.3 1160 29.6 1161 40.7 1162 39.4 1163 59.7 1164 38.7 1165 51.0 1166 63.9 1167 69.3 1168 60.0 1169 65.1 1170 46.5 1171 54.8 1172 107.1 1173 55.9 1174 60.4 1175 65.5 1176 62.6 1177 44.9 1178 85.7 1179 44.8 1180 75.5 1181 85.3 1182 52.2 1183 140.6 1184 160.9 1185 180.4 1186 138.9 1187 109.6 1188 159.1 1189 111.8 1190 108.6 1191 107.1 1192 102.2 1193 129.0 1194 139.2 1195 132.6 1196 100.3 1197 132.4 1198 114.6 1199 159.5 1200 157.0 1201 131.8 1202 96.2 1203 102.5 1204 80.6 1205 81.1 1206 78.0 1207 67.7 1208 93.7 1209 71.5 1210 99.0 1211 97.0 1212 78.0 1213 89.4 1214 82.6 1215 44.1 1216 61.6 1217 70.0 1218 39.1 1219 61.6 1220 86.2 1221 71.0 1222 54.8 1223 61.0 1224 75.5 1225 105.4 1226 64.6 1227 56.5 1228 62.6 1229 63.2 1230 36.1 1231 57.4 1232 67.9 1233 62.5 1234 51.0 1235 71.4 1236 68.4 1237 66.4 1238 61.2 1239 65.4 1240 54.9 1241 46.9 1242 42.1 1243 39.7 1244 37.5 1245 67.3 1246 54.3 1247 45.4 1248 41.1 1249 42.9 1250 37.7 1251 47.6 1252 34.7 1253 40.0 1254 45.9 1255 50.5 1256 33.5 1257 42.4 1258 28.8 1259 23.4 1260 15.4 1261 20.0 1262 20.7 1263 26.5 1264 24.0 1265 21.1 1266 18.7 1267 15.8 1268 22.4 1269 12.6 1270 28.2 1271 21.6 1272 12.3 1273 11.4 1274 17.4 1275 4.4 1276 9.1 1277 5.3 1278 0.4 1279 3.1 1280 0.0 1281 9.6 1282 4.2 1283 3.1 1284 0.5 1285 4.9 1286 0.4 1287 6.5 1288 0.0 1289 5.2 1290 4.6 1291 5.9 1292 4.4 1293 4.5 1294 7.7 1295 7.2 1296 13.7 1297 7.4 1298 5.2 1299 11.1 1300 28.5 1301 16.0 1302 22.2 1303 16.9 1304 42.4 1305 40.6 1306 31.4 1307 37.2 1308 39.0 1309 34.9 1310 57.5 1311 38.3 1312 41.4 1313 44.5 1314 56.7 1315 55.3 1316 80.1 1317 91.2 1318 51.9 1319 66.9 1320 83.7 1321 87.6 1322 90.3 1323 85.7 1324 91.0 1325 87.1 1326 95.2 1327 106.8 1328 105.8 1329 114.6 1330 97.2 1331 81.0 1332 82.4 1333 88.3 1334 98.9 1335 71.4 1336 107.1 1337 108.6 1338 116.7 1339 100.3 1340 92.2 1341 90.1 1342 97.9 1343 95.6 1344 62.3 1345 77.7 1346 101.0 1347 98.5 1348 56.8 1349 88.1 1350 78.0 1351 82.5 1352 79.9 1353 67.2 1354 53.7 1355 80.5 1356 63.1 1357 64.5 1358 43.6 1359 53.7 1360 64.4 1361 84.0 1362 73.4 1363 62.5 1364 66.6 1365 41.9 1366 50.6 1367 40.9 1368 48.3 1369 56.7 1370 66.4 1371 40.6 1372 53.8 1373 40.8 1374 32.7 1375 48.1 1376 22.0 1377 39.9 1378 37.7 1379 41.2 1380 57.7 1381 47.1 1382 66.3 1383 35.8 1384 40.6 1385 57.8 1386 54.7 1387 54.8 1388 28.5 1389 33.9 1390 57.6 1391 28.6 1392 48.7 1393 39.3 1394 39.5 1395 29.4 1396 34.5 1397 33.6 1398 26.8 1399 37.8 1400 21.6 1401 17.1 1402 24.6 1403 12.8 1404 31.6 1405 38.4 1406 24.5 1407 17.6 1408 12.9 1409 16.5 1410 9.3 1411 12.7 1412 7.3 1413 14.1 1414 9.0 1415 1.5 1416 0.0 1417 0.7 1418 9.2 1419 5.1 1420 2.9 1421 1.5 1422 5.0 1423 4.8 1424 9.8 1425 13.5 1426 9.6 1427 25.2 1428 15.5 1429 15.7 1430 26.5 1431 36.6 1432 26.7 1433 31.1 1434 29.0 1435 34.4 1436 47.2 1437 61.6 1438 59.1 1439 67.6 1440 60.9 1441 59.9 1442 52.7 1443 41.0 1444 103.9 1445 108.4 1446 59.2 1447 79.6 1448 80.6 1449 59.3 1450 78.1 1451 104.4 1452 77.3 1453 114.9 1454 157.5 1455 160.0 1456 176.0 1457 135.6 1458 132.4 1459 153.8 1460 136.0 1461 146.4 1462 147.5 1463 130.0 1464 88.3 1465 125.3 1466 143.2 1467 162.4 1468 145.5 1469 91.7 1470 103.0 1471 110.1 1472 80.3 1473 89.0 1474 105.4 1475 90.4 1476 79.5 1477 120.1 1478 88.4 1479 102.1 1480 107.6 1481 109.9 1482 105.5 1483 92.9 1484 114.6 1485 102.6 1486 112.0 1487 83.9 1488 86.7 1489 107.0 1490 98.3 1491 76.2 1492 47.9 1493 44.8 1494 66.9 1495 68.2 1496 47.1 1497 47.1 1498 55.4 1499 49.2 1500 60.8 1501 64.2 1502 46.4 1503 32.0 1504 44.6 1505 38.2 1506 67.8 1507 61.3 1508 28.0 1509 34.3 1510 28.9 1511 29.3 1512 14.6 1513 21.5 1514 33.8 1515 29.1 1516 11.5 1517 23.9 1518 12.5 1519 14.6 1520 2.4 1521 12.7 1522 17.7 1523 9.9 1524 14.3 1525 15.0 1526 30.6 1527 2.3 1528 5.1 1529 1.6 1530 15.2 1531 8.8 1532 9.9 1533 14.3 1534 9.9 1535 8.2 1536 24.4 1537 8.7 1538 11.9 1539 15.8 1540 21.6 1541 14.2 1542 6.0 1543 6.3 1544 16.9 1545 6.7 1546 14.2 1547 2.2 1548 3.3 1549 6.6 1550 7.8 1551 0.1 1552 5.9 1553 6.4 1554 0.1 1555 0.0 1556 5.3 1557 1.1 1558 4.1 1559 0.5 1560 1.0 1561 0.6 1562 0.0 1563 6.2 1564 2.4 1565 4.8 1566 7.5 1567 10.7 1568 6.1 1569 12.3 1570 13.1 1571 7.3 1572 24.0 1573 27.2 1574 19.3 1575 19.5 1576 23.5 1577 34.1 1578 21.9 1579 48.1 1580 66.0 1581 43.0 1582 30.7 1583 29.6 1584 36.4 1585 53.2 1586 51.5 1587 51.6 1588 43.5 1589 60.5 1590 76.9 1591 58.4 1592 53.2 1593 64.4 1594 54.8 1595 47.3 1596 45.0 1597 69.5 1598 66.8 1599 95.8 1600 64.1 1601 45.2 1602 45.4 1603 40.4 1604 57.7 1605 59.2 1606 84.4 1607 41.8 1608 60.6 1609 46.9 1610 42.8 1611 82.1 1612 31.5 1613 76.3 1614 80.6 1615 46.0 1616 52.6 1617 83.8 1618 84.5 1619 75.9 1620 91.5 1621 86.9 1622 87.5 1623 76.1 1624 66.5 1625 51.2 1626 53.1 1627 55.8 1628 61.9 1629 47.8 1630 36.6 1631 47.2 1632 42.8 1633 71.8 1634 49.8 1635 55.0 1636 73.0 1637 83.7 1638 66.5 1639 50.0 1640 39.6 1641 38.7 1642 30.9 1643 21.7 1644 29.9 1645 25.9 1646 57.3 1647 43.7 1648 30.7 1649 27.1 1650 30.3 1651 16.9 1652 21.4 1653 8.6 1654 0.3 1655 13.0 1656 10.3 1657 13.2 1658 4.2 1659 6.9 1660 20.0 1661 15.7 1662 23.4 1663 21.4 1664 7.4 1665 6.6 1666 6.9 1667 20.7 1668 12.7 1669 7.1 1670 7.8 1671 5.1 1672 7.0 1673 7.1 1674 3.1 1675 2.8 1676 8.8 1677 2.1 1678 10.7 1679 6.7 1680 0.8 1681 8.5 1682 6.7 1683 4.3 1684 2.4 1685 6.4 1686 9.4 1687 20.6 1688 6.5 1689 2.1 1690 0.2 1691 6.7 1692 5.3 1693 0.6 1694 5.1 1695 1.6 1696 4.8 1697 1.3 1698 11.6 1699 8.5 1700 17.2 1701 11.2 1702 9.6 1703 7.8 1704 13.5 1705 22.2 1706 10.4 1707 20.5 1708 41.1 1709 48.3 1710 58.8 1711 33.0 1712 53.8 1713 51.5 1714 41.9 1715 32.5 1716 69.1 1717 75.6 1718 49.9 1719 69.6 1720 79.6 1721 76.3 1722 76.5 1723 101.4 1724 62.8 1725 70.5 1726 65.4 1727 78.6 1728 75.0 1729 73.0 1730 65.7 1731 88.1 1732 84.7 1733 89.9 1734 88.6 1735 129.2 1736 77.9 1737 80.0 1738 75.1 1739 93.8 1740 83.2 1741 84.6 1742 52.3 1743 81.6 1744 101.2 1745 98.9 1746 106.0 1747 70.3 1748 65.9 1749 75.5 1750 56.6 1751 60.0 1752 63.3 1753 67.2 1754 61.0 1755 76.9 1756 67.5 1757 71.5 1758 47.8 1759 68.9 1760 57.7 1761 67.9 1762 47.2 1763 70.7 1764 29.0 1765 57.4 1766 52.0 1767 43.8 1768 27.7 1769 49.0 1770 45.0 1771 27.2 1772 61.3 1773 28.7 1774 38.0 1775 42.6 1776 40.6 1777 29.4 1778 29.1 1779 31.0 1780 20.0 1781 11.3 1782 27.6 1783 21.8 1784 48.1 1785 14.3 1786 8.4 1787 33.3 1788 30.2 1789 36.4 1790 38.3 1791 14.5 1792 25.8 1793 22.3 1794 9.0 1795 31.4 1796 34.8 1797 34.4 1798 30.9 1799 12.6 1800 19.5 1801 9.2 1802 18.1 1803 14.2 1804 7.7 1805 20.5 1806 13.5 1807 2.9 1808 8.4 1809 13.0 1810 7.8 1811 10.5 1812 9.4 1813 13.6 1814 8.6 1815 16.0 1816 15.2 1817 12.1 1818 8.3 1819 4.3 1820 8.3 1821 12.9 1822 4.5 1823 0.3 1824 0.2 1825 2.4 1826 4.5 1827 0.0 1828 10.2 1829 5.8 1830 0.7 1831 1.0 1832 0.6 1833 3.7 1834 3.8 1835 0.0 1836 5.5 1837 0.0 1838 12.4 1839 0.0 1840 2.8 1841 1.4 1842 0.9 1843 2.3 1844 7.6 1845 16.3 1846 10.3 1847 1.1 1848 8.3 1849 17.0 1850 13.5 1851 26.1 1852 14.6 1853 16.3 1854 27.9 1855 28.8 1856 11.1 1857 38.9 1858 44.5 1859 45.6 1860 31.6 1861 24.5 1862 37.2 1863 43.0 1864 39.5 1865 41.9 1866 50.6 1867 58.2 1868 30.1 1869 54.2 1870 38.0 1871 54.6 1872 54.8 1873 85.8 1874 56.5 1875 39.3 1876 48.0 1877 49.0 1878 73.0 1879 58.8 1880 55.0 1881 78.7 1882 107.2 1883 55.5 1884 45.5 1885 31.3 1886 64.5 1887 55.3 1888 57.7 1889 63.2 1890 103.6 1891 47.7 1892 56.1 1893 17.8 1894 38.9 1895 64.7 1896 76.4 1897 108.2 1898 60.7 1899 52.6 1900 42.9 1901 40.4 1902 49.7 1903 54.3 1904 85.0 1905 65.4 1906 61.5 1907 47.3 1908 39.2 1909 33.9 1910 28.7 1911 57.6 1912 40.8 1913 48.1 1914 39.5 1915 90.5 1916 86.9 1917 32.3 1918 45.5 1919 39.5 1920 56.7 1921 46.6 1922 66.3 1923 32.3 1924 36.0 1925 22.6 1926 35.8 1927 23.1 1928 38.8 1929 58.4 1930 55.8 1931 54.2 1932 26.4 1933 31.5 1934 21.4 1935 8.4 1936 22.2 1937 12.3 1938 14.1 1939 11.5 1940 26.2 1941 38.3 1942 4.9 1943 5.8 1944 3.4 1945 9.0 1946 7.8 1947 16.5 1948 9.0 1949 2.2 1950 3.5 1951 4.0 1952 4.0 1953 2.6 1954 4.2 1955 2.2 1956 0.3 1957 0.0 1958 4.9 1959 4.5 1960 4.4 1961 4.1 1962 3.0 1963 0.3 1964 9.5 1965 4.6 1966 1.1 1967 6.4 1968 2.3 1969 2.9 1970 0.5 1971 0.9 1972 0.0 1973 0.0 1974 1.7 1975 0.2 1976 1.2 1977 3.1 1978 0.7 1979 3.8 1980 2.8 1981 2.6 1982 3.1 1983 17.3 1984 5.2 1985 11.4 1986 5.4 1987 7.7 1988 12.7 1989 8.2 1990 16.4 1991 22.3 1992 23.0 1993 42.3 1994 38.8 1995 41.3 1996 33.0 1997 68.8 1998 71.6 1999 69.6 2000 49.5 2001 53.5 2002 42.5 2003 34.5 2004 45.3 2005 55.4 2006 67.0 2007 71.8 2008 74.5 2009 67.7 2010 53.5 2011 35.2 2012 45.1 2013 50.7 2014 65.6 2015 53.0 2016 74.7 2017 71.9 2018 94.8 2019 74.7 2020 114.1 2021 114.9 2022 119.8 2023 154.5 2024 129.4 2025 72.2 2026 96.4 2027 129.3 2028 96.0 2029 65.3 2030 72.2 2031 80.5 2032 76.7 2033 59.4 2034 107.6 2035 101.7 2036 79.9 2037 85.0 2038 83.4 2039 59.2 2040 48.1 2041 79.5 2042 66.5 2043 51.8 2044 88.1 2045 111.2 2046 64.7 2047 69.0 2048 54.7 2049 52.8 2050 42.0 2051 34.9 2052 51.1 2053 53.9 2054 70.2 2055 14.8 2056 33.3 2057 38.7 2058 27.5 2059 19.2 2060 36.3 2061 49.6 2062 27.2 2063 29.9 2064 31.5 2065 28.3 2066 26.7 2067 32.4 2068 22.2 2069 33.7 2070 41.9 2071 22.8 2072 17.8 2073 18.2 2074 17.8 2075 20.3 2076 11.8 2077 26.4 2078 54.7 2079 11.0 2080 8.0 2081 5.8 2082 10.9 2083 6.5 2084 4.7 2085 6.2 2086 7.4 2087 17.5 2088 4.5 2089 1.5 2090 3.3 2091 6.1 2092 3.2 2093 9.1 2094 3.5 2095 0.5 2096 13.2 2097 11.6 2098 10.0 2099 2.8 2100 0.5 2101 5.1 2102 1.8 2103 11.3 2104 20.8 2105 24.0 2106 28.1 2107 19.3 2108 25.1 2109 25.6 2110 22.5 2111 16.5 2112 5.5 2113 23.2 2114 18.0 2115 31.7 2116 42.8 2117 47.5 2118 38.5 2119 37.9 2120 60.2 2121 69.2 2122 58.6 2123 98.6 2124 71.8 2125 69.9 2126 62.5 2127 38.5 2128 64.3 2129 73.5 2130 52.3 2131 61.6 2132 60.8 2133 71.5 2134 60.5 2135 79.4 2136 81.6 2137 93.0 2138 69.6 2139 93.5 2140 79.1 2141 59.1 2142 54.9 2143 53.8 2144 68.4 2145 63.1 2146 67.2 2147 45.2 2148 83.5 2149 73.5 2150 85.5 2151 80.6 2152 77.0 2153 91.4 2154 98.0 2155 83.8 2156 89.7 2157 61.4 2158 50.3 2159 59.0 2160 68.9 2161 62.8 2162 50.2 2163 52.8 2164 58.2 2165 71.9 2166 70.2 2167 65.8 2168 34.4 2169 54.0 2170 81.1 2171 108.0 2172 65.3 2173 49.9 2174 35.0 2175 38.2 2176 36.8 2177 28.8 2178 21.9 2179 24.9 2180 32.1 2181 34.4 2182 35.6 2183 25.8 2184 14.6 2185 43.1 2186 30.0 2187 31.2 2188 24.6 2189 15.3 2190 17.4 2191 13.0 2192 19.0 2193 10.0 2194 18.7 2195 17.8 2196 12.1 2197 10.6 2198 11.2 2199 11.2 2200 17.9 2201 22.2 2202 9.6 2203 6.8 2204 4.0 2205 8.9 2206 8.2 2207 11.0 2208 12.3 2209 22.2 2210 10.1 2211 2.9 2212 3.2 2213 5.2 2214 2.8 2215 0.2 2216 5.1 2217 3.0 2218 0.6 2219 0.3 2220 3.4 2221 7.8 2222 4.3 2223 11.3 2224 19.7 2225 6.7 2226 9.3 2227 8.3 2228 4.0 2229 5.7 2230 8.7 2231 15.4 2232 18.6 2233 20.5 2234 23.1 2235 12.2 2236 27.3 2237 45.7 2238 33.9 2239 30.1 2240 42.1 2241 53.2 2242 64.2 2243 61.5 2244 62.8 2245 74.3 2246 77.1 2247 74.9 2248 54.6 2249 70.0 2250 52.3 2251 87.0 2252 76.0 2253 89.0 2254 115.4 2255 123.4 2256 132.5 2257 128.5 2258 83.9 2259 109.3 2260 116.7 2261 130.3 2262 145.1 2263 137.7 2264 100.7 2265 124.9 2266 74.4 2267 88.8 2268 98.4 2269 119.2 2270 86.5 2271 101.0 2272 127.4 2273 97.5 2274 165.3 2275 115.7 2276 89.6 2277 99.1 2278 122.2 2279 92.7 2280 80.3 2281 77.4 2282 64.6 2283 109.1 2284 118.3 2285 101.0 2286 97.6 2287 105.8 2288 112.6 2289 88.1 2290 68.1 2291 42.1 2292 50.5 2293 59.4 2294 83.3 2295 60.7 2296 54.4 2297 83.9 2298 67.5 2299 105.5 2300 66.5 2301 55.0 2302 58.4 2303 68.3 2304 45.6 2305 44.5 2306 46.4 2307 32.8 2308 29.5 2309 59.8 2310 66.9 2311 60.0 2312 65.9 2313 46.3 2314 38.4 2315 33.7 2316 35.6 2317 52.8 2318 54.2 2319 60.7 2320 25.0 2321 11.4 2322 17.7 2323 20.2 2324 17.2 2325 19.2 2326 30.7 2327 22.5 2328 12.5 2329 28.9 2330 27.4 2331 26.1 2332 14.1 2333 7.6 2334 13.2 2335 19.4 2336 10.0 2337 7.8 2338 10.2 2339 18.8 2340 3.7 2341 0.5 2342 11.0 2343 0.3 2344 2.5 2345 5.0 2346 5.0 2347 16.7 2348 14.3 2349 16.9 2350 10.8 2351 28.4 2352 18.5 2353 12.7 2354 21.5 2355 32.0 2356 30.6 2357 36.2 2358 42.6 2359 25.9 2360 34.9 2361 68.8 2362 46.0 2363 27.4 2364 47.6 2365 86.2 2366 76.6 2367 75.7 2368 84.9 2369 73.5 2370 116.2 2371 107.2 2372 94.4 2373 102.3 2374 123.8 2375 121.7 2376 115.7 2377 133.4 2378 129.8 2379 149.8 2380 201.3 2381 163.9 2382 157.9 2383 188.8 2384 169.4 2385 163.6 2386 128.0 2387 116.5 2388 108.5 2389 86.1 2390 94.8 2391 189.7 2392 174.0 2393 167.8 2394 142.2 2395 157.9 2396 143.3 2397 136.3 2398 95.8 2399 138.0 2400 119.1 2401 182.3 2402 157.5 2403 147.0 2404 106.2 2405 121.7 2406 125.8 2407 123.8 2408 145.3 2409 131.6 2410 143.5 2411 117.6 2412 101.6 2413 94.8 2414 109.7 2415 113.4 2416 106.2 2417 83.6 2418 91.0 2419 85.2 2420 51.3 2421 61.4 2422 54.8 2423 54.1 2424 59.9 2425 59.9 2426 55.9 2427 92.9 2428 108.5 2429 100.6 2430 61.5 2431 61.0 2432 83.1 2433 51.6 2434 52.4 2435 45.8 2436 40.7 2437 22.7 2438 22.0 2439 29.1 2440 23.4 2441 36.4 2442 39.3 2443 54.9 2444 28.2 2445 23.8 2446 22.1 2447 34.3 2448 26.5 2449 3.9 2450 10.0 2451 27.8 2452 12.5 2453 21.8 2454 8.6 2455 23.5 2456 19.3 2457 8.2 2458 1.6 2459 2.5 2460 0.2 2461 0.5 2462 10.9 2463 1.8 2464 0.8 2465 0.2 2466 4.8 2467 8.4 2468 1.5 2469 7.0 2470 9.2 2471 7.6 2472 23.1 2473 20.8 2474 4.9 2475 11.3 2476 28.9 2477 31.7 2478 26.7 2479 40.7 2480 42.7 2481 58.5 2482 89.2 2483 76.9 2484 73.6 2485 124.0 2486 118.4 2487 110.7 2488 136.6 2489 116.6 2490 129.1 2491 169.6 2492 173.2 2493 155.3 2494 201.3 2495 192.1 2496 165.0 2497 130.3 2498 157.4 2499 175.2 2500 164.6 2501 200.7 2502 187.2 2503 158.0 2504 235.8 2505 253.8 2506 210.9 2507 239.4 2508 202.5 2509 164.9 2510 190.7 2511 196.0 2512 175.3 2513 171.5 2514 191.4 2515 200.2 2516 201.2 2517 181.5 2518 152.3 2519 187.6 2520 217.4 2521 143.1 2522 185.7 2523 163.3 2524 172.0 2525 168.7 2526 149.6 2527 199.6 2528 145.2 2529 111.4 2530 124.0 2531 125.0 2532 146.3 2533 106.0 2534 102.2 2535 122.0 2536 119.6 2537 110.2 2538 121.7 2539 134.1 2540 127.2 2541 82.8 2542 89.6 2543 85.6 2544 57.9 2545 46.1 2546 53.0 2547 61.4 2548 51.0 2549 77.4 2550 70.2 2551 55.8 2552 63.6 2553 37.7 2554 32.6 2555 39.9 2556 38.7 2557 50.3 2558 45.6 2559 46.4 2560 43.7 2561 42.0 2562 21.8 2563 21.8 2564 51.3 2565 39.5 2566 26.9 2567 23.2 2568 19.8 2569 24.4 2570 17.1 2571 29.3 2572 43.0 2573 35.9 2574 19.6 2575 33.2 2576 38.8 2577 35.3 2578 23.4 2579 14.9 2580 15.3 2581 17.7 2582 16.5 2583 8.6 2584 9.5 2585 9.1 2586 3.1 2587 9.3 2588 4.7 2589 6.1 2590 7.4 2591 15.1 2592 17.5 2593 14.3 2594 11.7 2595 6.8 2596 24.1 2597 15.9 2598 11.9 2599 8.9 2600 16.8 2601 20.1 2602 15.8 2603 17.0 2604 28.2 2605 24.4 2606 25.3 2607 48.7 2608 45.3 2609 47.7 2610 56.7 2611 51.2 2612 50.2 2613 57.2 2614 57.2 2615 70.4 2616 110.9 2617 93.6 2618 111.8 2619 69.5 2620 86.5 2621 67.3 2622 91.5 2623 107.2 2624 76.8 2625 88.2 2626 94.3 2627 126.4 2628 121.8 2629 111.9 2630 92.2 2631 81.2 2632 127.2 2633 110.3 2634 96.1 2635 109.3 2636 117.2 2637 107.7 2638 86.0 2639 109.8 2640 104.4 2641 120.5 2642 135.8 2643 106.8 2644 120.0 2645 106.0 2646 96.8 2647 98.0 2648 91.3 2649 95.7 2650 93.5 2651 97.9 2652 111.5 2653 127.8 2654 102.9 2655 109.5 2656 127.5 2657 106.8 2658 112.5 2659 93.0 2660 99.5 2661 86.6 2662 95.2 2663 83.5 2664 91.3 2665 79.0 2666 60.7 2667 71.8 2668 57.5 2669 49.8 2670 81.0 2671 61.4 2672 50.2 2673 51.7 2674 63.2 2675 82.2 2676 61.5 2677 88.4 2678 80.1 2679 63.2 2680 80.5 2681 88.0 2682 76.5 2683 76.8 2684 64.0 2685 61.3 2686 41.6 2687 45.3 2688 43.4 2689 42.9 2690 46.0 2691 57.7 2692 42.4 2693 39.5 2694 23.1 2695 25.6 2696 59.3 2697 30.7 2698 23.9 2699 23.3 2700 27.6 2701 26.0 2702 21.3 2703 40.3 2704 39.5 2705 36.0 2706 55.8 2707 33.6 2708 40.2 2709 47.1 2710 25.0 2711 20.5 2712 18.9 2713 11.5 2714 11.5 2715 5.1 2716 9.0 2717 11.4 2718 28.2 2719 39.7 2720 13.9 2721 9.1 2722 19.4 2723 7.8 2724 8.1 2725 4.3 2726 21.9 2727 18.8 2728 12.4 2729 12.2 2730 1.9 2731 16.4 2732 13.5 2733 20.6 2734 5.2 2735 15.3 2736 16.4 2737 23.1 2738 8.7 2739 12.9 2740 18.6 2741 38.5 2742 21.4 2743 30.1 2744 44.0 2745 43.8 2746 29.1 2747 43.2 2748 51.9 2749 93.6 2750 76.5 2751 99.7 2752 82.7 2753 95.1 2754 70.4 2755 58.1 2756 138.2 2757 125.1 2758 97.9 2759 122.7 2760 166.6 2761 137.5 2762 138.0 2763 101.5 2764 134.4 2765 149.5 2766 159.4 2767 142.2 2768 188.4 2769 186.2 2770 183.3 2771 176.3 2772 159.6 2773 155.0 2774 126.2 2775 164.1 2776 179.9 2777 157.3 2778 136.3 2779 135.4 2780 155.0 2781 164.7 2782 147.9 2783 174.4 2784 114.0 2785 141.3 2786 135.5 2787 156.4 2788 127.5 2789 90.9 2790 143.8 2791 158.7 2792 167.3 2793 162.4 2794 137.5 2795 150.1 2796 111.2 2797 163.6 2798 153.8 2799 122.0 2800 82.2 2801 110.4 2802 106.1 2803 107.6 2804 118.8 2805 94.7 2806 98.1 2807 127.0 2808 84.3 2809 51.0 2810 66.5 2811 80.7 2812 99.2 2813 91.1 2814 82.2 2815 71.8 2816 50.3 2817 55.8 2818 33.4 2819 33.4 2820 57.0 2821 85.4 2822 83.5 2823 69.7 2824 76.4 2825 46.1 2826 37.4 2827 25.5 2828 15.7 2829 12.0 2830 22.8 2831 18.7 2832 16.5 2833 15.9 2834 17.2 2835 16.2 2836 27.5 2837 24.2 2838 30.7 2839 11.1 2840 3.9 2841 18.6 2842 16.2 2843 17.3 2844 2.5 2845 23.2 2846 15.1 2847 18.5 2848 13.7 2849 1.1 2850 18.1 2851 7.4 2852 3.8 2853 35.4 2854 15.2 2855 6.8 2856 10.4 2857 2.4 2858 14.7 2859 39.6 2860 33.0 2861 17.4 2862 33.0 2863 38.7 2864 33.9 2865 60.6 2866 39.9 2867 27.1 2868 59.0 2869 40.0 2870 76.2 2871 88.0 2872 60.1 2873 101.8 2874 113.8 2875 111.6 2876 120.1 2877 125.1 2878 125.1 2879 179.2 2880 161.3 2881 165.1 2882 131.4 2883 130.6 2884 138.5 2885 196.2 2886 126.9 2887 168.9 2888 176.7 2889 159.4 2890 173.0 2891 165.5 2892 177.3 2893 130.5 2894 140.3 2895 140.3 2896 132.2 2897 105.4 2898 149.4 2899 200.3 2900 125.2 2901 145.5 2902 131.4 2903 129.7 2904 136.9 2905 167.5 2906 141.9 2907 140.0 2908 121.3 2909 169.7 2910 173.7 2911 176.3 2912 125.3 2913 144.1 2914 108.2 2915 144.4 2916 150.0 2917 161.1 2918 106.7 2919 99.8 2920 73.8 2921 65.2 2922 85.7 2923 64.5 2924 63.9 2925 88.7 2926 91.8 2927 82.6 2928 59.3 2929 91.0 2930 69.8 2931 62.2 2932 61.3 2933 49.8 2934 57.9 2935 42.2 2936 22.4 2937 56.4 2938 35.6 2939 48.9 2940 57.8 2941 35.5 2942 31.7 2943 16.1 2944 17.8 2945 28.0 2946 35.1 2947 22.5 2948 25.7 2949 44.0 2950 18.0 2951 26.2 2952 24.2 2953 29.9 2954 31.1 2955 14.0 2956 14.5 2957 15.6 2958 14.5 2959 14.3 2960 11.8 2961 21.1 2962 9.0 2963 10.0 2964 11.5 2965 4.4 2966 9.2 2967 4.8 2968 5.5 2969 11.8 2970 8.2 2971 14.4 2972 1.6 2973 0.9 2974 17.9 2975 13.3 2976 5.7 2977 7.6 2978 8.7 2979 15.5 2980 18.5 2981 12.7 2982 10.4 2983 24.4 2984 51.3 2985 22.8 2986 39.0 2987 41.2 2988 31.9 2989 40.3 2990 54.8 2991 53.4 2992 56.3 2993 70.7 2994 66.6 2995 92.2 2996 92.9 2997 55.5 2998 74.0 2999 81.9 3000 62.0 3001 66.3 3002 68.8 3003 63.7 3004 106.4 3005 137.7 3006 113.5 3007 93.7 3008 71.5 3009 116.7 3010 133.2 3011 84.6 3012 90.1 3013 112.9 3014 138.5 3015 125.5 3016 121.6 3017 124.9 3018 170.1 3019 130.5 3020 109.7 3021 99.4 3022 106.8 3023 104.4 3024 95.6 3025 80.6 3026 113.5 3027 107.7 3028 96.6 3029 134.0 3030 81.8 3031 106.4 3032 150.7 3033 125.5 3034 106.5 3035 132.2 3036 114.1 3037 107.4 3038 98.4 3039 120.7 3040 120.8 3041 88.3 3042 99.6 3043 116.4 3044 109.6 3045 97.5 3046 95.5 3047 80.8 3048 79.7 3049 46.0 3050 61.1 3051 60.0 3052 54.6 3053 77.4 3054 83.3 3055 72.7 3056 48.7 3057 65.5 3058 67.3 3059 46.5 3060 37.3 3061 45.8 3062 49.1 3063 39.3 3064 41.5 3065 43.2 3066 51.1 3067 40.9 3068 27.7 3069 48.0 3070 43.5 3071 17.9 3072 31.3 3073 29.2 3074 24.5 3075 24.2 3076 42.7 3077 39.3 3078 40.1 3079 36.4 3080 21.9 3081 8.7 3082 18.0 3083 41.1 3084 15.3 3085 4.9 3086 10.6 3087 30.2 3088 22.3 3089 13.9 3090 12.2 3091 12.9 3092 14.4 3093 10.5 3094 21.4 3095 13.6 3096 16.8 3097 10.7 3098 4.5 3099 3.4 3100 11.7 3101 12.1 3102 9.7 3103 6.0 3104 2.4 3105 0.9 3106 1.7 3107 10.1 3108 3.3 3109 2.1 3110 9.3 3111 2.9 3112 3.2 3113 3.4 3114 0.8 3115 0.5 3116 1.1 3117 2.9 3118 4.1 3119 0.8 3120 1.3 3121 1.4 3122 0.7 3123 0.8 3124 2.9 3125 2.9 3126 3.2 3127 0.0 3128 4.3 3129 4.8 3130 4.1 3131 10.8 3132 13.2 3133 18.8 3134 15.4 3135 8.0 3136 8.7 3137 13.6 3138 16.1 3139 19.6 3140 25.2 3141 23.5 3142 21.6 ================================================ FILE: time series regression/autocorelation, mov avg etc/decomposition.py ================================================ # Import modules import requests import statsmodels.api as sm import io import pandas as pd # Load Dataset DATA_URL = "http://robjhyndman.com/tsdldata/data/nybirths.dat" fopen = requests.get(DATA_URL).content ds = pd.read_csv(io.StringIO(fopen.decode("utf-8")), header=None, names=["birthcount"]) print(ds.head()) # Add time index date = pd.date_range("1946-01-01", "1959-12-31", freq="1M") ds["Date"] = pd.DataFrame(date) ds = ds.set_index("Date") # decompose dataset res = sm.tsa.seasonal_decompose(ds.birthcount, model="multiplicative") resplot = res.plot() ================================================ FILE: time series regression/autocorelation, mov avg etc/doubleExponentialSmoothing.py ================================================ # Load modules from __future__ import print_function import os import pandas as pd import numpy as np from matplotlib import pyplot as plt # Read dataset into a pandas.DataFrame beer_df = pd.read_csv( "datasets/quarterly-beer-production-in-aus-March 1956-June 1994.csv" ) # Display shape of the dataset print("Shape of the dataframe:", beer_df.shape) beer_df.head() # Rename the 2nd column beer_df.rename( columns={ "Quarterly beer production in Australia: megalitres. March 1956 ? June 1994": "Beer_Prod" }, inplace=True, ) # Remove missing values missing = (pd.isnull(beer_df["Quarter"])) | (pd.isnull(beer_df["Beer_Prod"])) print("Number of rows with at least one missing values:", missing.sum()) beer_df = beer_df.loc[~missing, :] print("Shape after removing missing values:", beer_df.shape) # Function for Sigle exponential smoothing def double_exp_smoothing(x, alpha, beta): yhat = [x[0]] # first value is same as series for t in range(1, len(x)): if t == 1: F, T = x[0], x[1] - x[0] F_n_1, F = F, alpha * x[t] + (1 - alpha) * (F + T) T = beta * (F - F_n_1) + (1 - beta) * T yhat.append(F + T) return yhat beer_df["DEF"] = double_exp_smoothing(beer_df["Beer_Prod"], 0.4, 0.7) ### Plot Single Exponential Smoothing forecasted value fig = plt.figure(figsize=(5.5, 5.5)) ax = fig.add_subplot(2, 1, 1) beer_df["Beer_Prod"].plot(ax=ax) ax.set_title("Beer Production") ax = fig.add_subplot(2, 1, 2) beer_df["DEF"].plot(ax=ax, color="r") ax.set_title("Double Smoothing Forecast") plt.savefig("plots/ch2/B07887_03_14.png", format="png", dpi=300) # Single vs Double Forecast value # Function for Sigle exponential smoothing def single_exp_smoothing(x, alpha): F = [x[0]] # first value is same as series for t in range(1, len(x)): F.append(alpha * x[t] + (1 - alpha) * F[t - 1]) return F beer_df["Single_Exponential_Forecast"] = single_exp_smoothing(beer_df["Beer_Prod"], 0.4) ### Plot Single Exponential Smoothing forecasted value f, axarr = plt.subplots(2, sharex=True) f.set_size_inches(5.5, 5.5) beer_df["Beer_Prod"].iloc[:153].plot(color="b", linestyle="-", ax=axarr[0]) beer_df["DEF"].iloc[:153].plot(color="r", linestyle="--", ax=axarr[0]) axarr[0].set_title("Actual Vs Double Smoothing Forecasting") beer_df["Beer_Prod"].iloc[:153].plot(color="b", linestyle="-", ax=axarr[1]) beer_df["Single_Exponential_Forecast"].iloc[:153].plot( color="r", linestyle="--", ax=axarr[1] ) axarr[1].set_title("Actual Vs Single Smoothing Forecasting") # Plot single and double exponential smoothing fig = plt.figure(figsize=(5.5, 5.5)) ax = fig.add_subplot(2, 1, 1) beer_df["Single_Exponential_Forecast"].plot(ax=ax) ax.set_title("Single Exponential Smoothing") ax = fig.add_subplot(2, 1, 2) beer_df["DEF"].plot(ax=ax, color="r") ax.set_title("Double Smoothing Forecast") plt.savefig("plots/ch2/B07887_03_14.png", format="png", dpi=300) ================================================ FILE: time series regression/autocorelation, mov avg etc/simpleExponentialSmoothing.py ================================================ # Load modules from __future__ import print_function import os import pandas as pd import numpy as np from matplotlib import pyplot as plt # Load Dataset ibm_df = pd.read_csv("datasets/ibm-common-stock-closing-prices.csv") ibm_df.head() # Rename the second column ibm_df.rename(columns={"IBM common stock closing prices": "Close_Price"}, inplace=True) ibm_df.head() # Function for Sigle exponential smoothing def single_exp_smoothing(x, alpha): F = [x[0]] # first value is same as series for t in range(1, len(x)): F.append(alpha * x[t] + (1 - alpha) * F[t - 1]) return F ibm_df["SES"] = single_exp_smoothing(ibm_df["Close_Price"], 0.8) ### Plot Single Exponential Smoothing forecasted value fig = plt.figure(figsize=(5.5, 5.5)) ax = fig.add_subplot(2, 1, 1) ibm_df["Close_Price"].plot(ax=ax) ax.set_title("IBM Common Stock Close Prices during 1962-1965") ax = fig.add_subplot(2, 1, 2) ibm_df["SES"].plot(ax=ax, color="r") ax.set_title("Single Exponential Smoothing") plt.savefig("plots/ch2/B07887_02_14.png", format="png", dpi=300) # Plot the forecasted values using multiple alpha values # Calculate the moving averages using 'rolling' and 'mean' functions ibm_df["SES2"] = single_exp_smoothing(ibm_df["Close_Price"], 0.2) ibm_df["SES6"] = single_exp_smoothing(ibm_df["Close_Price"], 0.6) ibm_df["SES8"] = single_exp_smoothing(ibm_df["Close_Price"], 0.8) # Plot the curves f, axarr = plt.subplots(3, sharex=True) f.set_size_inches(5.5, 5.5) ibm_df["Close_Price"].iloc[:45].plot(color="b", linestyle="-", ax=axarr[0]) ibm_df["SES2"].iloc[:45].plot(color="r", linestyle="--", ax=axarr[0]) axarr[0].set_title("Alpha 0.2") ibm_df["Close_Price"].iloc[:45].plot(color="b", linestyle="-", ax=axarr[1]) ibm_df["SES6"].iloc[:45].plot(color="r", linestyle="--", ax=axarr[1]) axarr[1].set_title("Alpha 0.6") ibm_df["Close_Price"].iloc[:45].plot(color="b", linestyle="-", ax=axarr[2]) ibm_df["SES8"].iloc[:45].plot(color="r", linestyle="--", ax=axarr[2]) axarr[2].set_title("Alpha 0.8") plt.savefig("plots/ch2/B07887_02_15.png", format="png", dpi=300) ================================================ FILE: time series regression/autocorelation, mov avg etc/tripleExponentialSmoothing.py ================================================ # Load modules from __future__ import print_function import os import pandas as pd import numpy as np from matplotlib import pyplot as plt # read the data from into a pandas.DataFrame wisc_emp = pd.read_csv("datasets/wisconsin-employment-time-series.csv") # Let's find out the shape of the DataFrame print("Shape of the DataFrame:", wisc_emp.shape) # Let's see first 10 rows of it wisc_emp.head() # plot the wisconsin employment dataset wisc_emp.plot() # Capture seasonality component def initialize_T(x, seasonLength): total = 0.0 for i in range(seasonLength): total += float(x[i + seasonLength] - x[i]) / seasonLength return total initialize_T(wisc_emp["Employment"], 12) # Initialize seasonal trend def initialize_seasonalilty(x, seasonLength): seasons = {} seasonsMean = [] num_season = int(len(x) / seasonLength) # Compute season average for i in range(num_season): seasonsMean.append( sum(x[seasonLength * i : seasonLength * i + seasonLength]) / float(seasonLength) ) # compute season intial values for i in range(seasonLength): tot = 0.0 for j in range(num_season): tot += x[seasonLength * j + i] - seasonsMean[j] seasons[i] = tot / num_season return seasons initialize_seasonalilty(wisc_emp["Employment"], 12) # Triple Exponential Smoothing Forecast def triple_exp_smoothing(x, seasonLength, alpha, beta, gamma, h): yhat = [] S = initialize_seasonalilty(x, seasonLength) for i in range(len(x) + h): if i == 0: F = x[0] T = initialize_T(x, seasonLength) yhat.append(x[0]) continue if i >= len(x): m = i - len(x) + 1 yhat.append((F + m * T) + S[i % seasonLength]) else: obsval = x[i] F_last, F = ( F, alpha * (obsval - S[i % seasonLength]) + (1 - alpha) * (F + T), ) T = beta * (F - F_last) + (1 - beta) * T S[i % seasonLength] = ( gamma * (obsval - F) + (1 - gamma) * S[i % seasonLength] ) yhat.append(F + T + S[i % seasonLength]) return yhat # Triple exponential smoothing wisc_emp["TES"] = triple_exp_smoothing(wisc_emp["Employment"], 12, 0.4, 0.6, 0.2, 0) ### Plot Single Exponential Smoothing forecasted value fig = plt.figure(figsize=(5.5, 5.5)) ax = fig.add_subplot(2, 1, 1) wisc_emp["Employment"].plot(ax=ax) ax.set_title("Beer Production") ax = fig.add_subplot(2, 1, 2) wisc_emp["TES"].plot(ax=ax, color="r") ax.set_title("Triple Smoothing Forecast") plt.savefig("plots/ch2/B07887_03_14.png", format="png", dpi=300)